@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&family=Frank+Ruhl+Libre:wght@300&family=Lora&family=Martel:wght@200&family=Montserrat:wght@300;400;700&family=Noto+Serif+JP:wght@200&family=Noto+Serif+TC:wght@200&family=Playfair+Display:ital@0;1&family=Prata&family=Vollkorn:ital@1&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html{
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

body{
    min-height: 100vh;
    overflow-x: hidden;
}

header{
    position: relative;
    height: fit-content;
    width: 100%;
    padding: 46px 5% 50px 5%;
    z-index: 1;
}

.navbar_computer{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo{
    height: 40px;
    margin-right: auto;
}

.logo img{
    height: 100%;
    width: auto;
}

.menu{
    list-style: none;
}

.menu li{
    display: inline;
    float: left;
}

.menu li a{
    padding: 6px 16px;
    margin: 0 10px;
    text-decoration: none;
    color: #fff;
    border-radius: 20px;
}
.menu li a:hover{
    transition: background-color .5s ease;
    background-color: #b21005;
    color: #fff;
}
.menu li a.active{
    background-color: #b21005;
    color: #fff;
}

.navbar-list i{
    transition: 0.3s;
}
.navbar-list i.open{
    transform: rotate(-180deg);
}

.navbar-list .list {
    position: absolute;
    width: fit-content;
    height: 0;
    margin-top: 20px;
    padding: 0 10px 0 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border-radius: 10px;
    transition: height 0.2s ease;
    overflow: hidden;
    z-index: -1;
}
.navbar-list .list.open{
    height: 136px;
    padding: 12px 10px 12px 10px;
    animation: discoverlist 0.2s linear forwards;
}
.navbar-list .list.open::before{
    position: absolute;
    content: '';
    top: -32px;
    left: 35px;
    border: 16px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.about-us-list .list.open{
    height: 97px;
    padding: 12px 10px 12px 10px;
    animation: discoverlist 0.2s linear forwards;
}

@keyframes discoverlist{
    80%{
        overflow: visible;
    }
    100%{
        overflow: visible;
    }
}

.navbar-list .list li{
    display: block;
    float: none;
    width: 100%;
    margin:0 0 5px 0;
}

.navbar-list .list li a{
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    text-shadow: 0 0 5px #000;
}

.navbar-list .list li.download a{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-menu {
    position: relative;
    width: 31px;
    height: 31px;
    margin-left: 26px;
}

.option-selected{
    width: auto;
    height: 100%;
    float: right;
    cursor: pointer;
}
.option-selected:hover {
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
}

.language-options {
    list-style: none;
    position: absolute;
    width: 31px;
    height: 0px;
    right: 0;
    margin: 51px 0px;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    transition: height 0.2s ease;
    gap: 8px;
}
.language-options.open{
    height: 100px;
}

.language-options li {
    width: 100%;
    height: 31px;
    cursor: pointer;
}

.language-options .italian-flag {
    background-image: url(images/italy-flag-icon.png);
    background-size: cover;
}
.language-options .italian-flag.active {
    opacity: 0.5;
}

.language-options .english-flag {
    background-image: url(images/uk-flag-icon.png);
    background-size: cover;
}
.language-options .english-flag.active {
    opacity: 0.5;
}

.navbar_smartphone{
    display: none;
}

body{
    background-color: #28282B;
}

.alert{
    display: flex;
    position: absolute;
    right: 50%;
    top: 26px;
    height: fit-content;
    min-width: 420px;
    justify-content: center;
    align-items: center;
    background: #C1F1D6;
    border-radius: 4px;
    border-left: 8px solid #2CCD6D;
    overflow: hidden;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
}

.alert.warning{
    background: #ffdb9b;
    border-left: 8px solid #ffa502;
}

.alert.showAlert{
    opacity: 1;
    pointer-events: auto;
}

.alert.show{
    animation: show_slide 1s ease-in-out forwards;
}

@keyframes show_slide {
    0%{
      transform: translate(50%, -300px);
    }
    100%{
      transform: translate(50%, 0%);
    }
}

.alert.hide{
    animation: hide_slide 1s ease forwards;
}

@keyframes hide_slide {
    0%{
        transform: translate(50%, 0%);
      }
      100%{
        transform: translate(50%, -300px);
      }
}

.alert .fa-circle-check{
    display: block;
    margin-left: 20px;
    color: #28A564;
    font-size: 30px;
}

.alert .fa-exclamation-circle{
    display: none;
    color: #ce8500;
}

.alert.warning .fa-circle-check{
    display: none;
    color: #28A564;
}

.alert.warning .fa-exclamation-circle{
    display: block;
    margin-left: 20px;
    color: #ce8500;
    font-size: 30px;
}

.alert .msg{
    padding: 0 20px;
    font-size: 18px;
    color: #28A564;
    overflow: hidden;
    white-space: nowrap;
}

.alert.warning .msg{
    color: #ce8500;
}

.alert .close-btn{
    height: 100%;
    padding: 20px 18px;
    cursor: pointer;
    background-color: #96EAB7;
    transition: background-color 0.2s ease;
}
.alert .close-btn:hover{
    background-color: #6ce199;
}

.alert.warning .close-btn{
    background-color: #ffd080;
    transition: background-color 0.2s ease;
}
.alert.warning .close-btn:hover{
    background-color: #ffc766;
}

.alert .close-btn .fas{
    color: #28A564;
    font-size: 22px;
    line-height: 40px;
}

.alert.warning .close-btn .fas{
    color: #ce8500;
}

h1{
    position: relative;
    width: 100%;
    margin-top: 30px;
    text-align: center;
    font-size: 4rem;
    color: #fff;
}

.grid{
    display: grid;
    grid-template-columns: 52% 42%;
    grid-template-rows: auto 480px;
    margin: 90px 6% 100px 6%;
    gap: 90px 6%;
}

.card{
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.card.contacts-list{
    display: flex;
    grid-column-start: 1;
    grid-column-end: 3;
    padding: 30px 40px;
    width: auto;
}

.contacts-list ul {
    display: flex;
    list-style: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.contacts-list ul li {
    position: relative;
    padding: 40px;
    display: flex;
    flex-basis: 33%;
    justify-content: center;
}

.contacts-list ul li .icon{
    min-width: 80px;
    height: 80px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.contacts-list ul li .text{
    display: flex;
    margin-left: 40px;
    color: #fff;
    flex-direction: column;
    justify-content: center;
}

.contacts-list ul li .text h3{
    display: flex;
    color: #b21105;
    flex-direction: column;
    text-shadow: 5px #000;
}

.contacts-list ul li .text div{
    display: flex;
    flex-wrap: wrap;
}

.middle-section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    height: 480px;
    margin: 100px 6%;
}

.social{
    display: flex;
    flex-basis: 52%;
    flex-direction: column;
}

.social h2{
    font-size: 3rem;
    color: #fff;
    text-align: center;
    padding: 30px 0 40px 0;
}

.social .buttons_smartphone{
    display: none;
}

.buttons{
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
    justify-content: center;
    align-items: center;
}

.buttons div{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.buttons button{
    position: relative;    
    height: 85px;
    width: 160px;
    left: 46px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 0 10px 10px 0;
    transition: all 0s ease-out;
}
.buttons button:active{
    top: 3px;
}

.buttons button.facebook,
.buttons button.facebook span{
    background: #3b5999;
    border-left: 2px solid #2e4476;
    box-shadow: 0px 6px 0px 0px #2e4476;
}
.buttons button.facebook:active{
    box-shadow: 0px 3px 0px 0px #2e4476;
}

.buttons button.instagram,
.buttons button.instagram span{
    background: #e1306c;
    border-left: 2px solid #c91d56;
    box-shadow: 0px 6px 0px 0px #c91d56;
}
.buttons button.instagram:active{
    box-shadow: 0px 3px 0px 0px #c91d56;
}

.buttons button.youtube,
.buttons button.youtube span{
    background: #de463b;
    border-left: 2px solid #c02b21;
    box-shadow: 0px 6px 0px 0px #c02b21;
}
.buttons button.youtube:active{
    box-shadow: 0px 3px 0px 0px #c02b21;
}

.buttons button.whatsapp,
.buttons button.whatsapp span{
    background: #2DAA43;
    border-left: 2px solid #057318;
    box-shadow: 0px 6px 0px 0px #057318;
}
.buttons button.whatsapp:active{
    box-shadow: 0px 3px 0px 0px #057318;
}

.buttons button span{
    position: absolute;
    height: 85px;
    width: 90px;
    top: 0;
    left: -91px;
    line-height: 85px;
    font-size: 40px;
    display: block;
    font-weight: normal;
    border-radius: 10px 0 0 10px;
}
.buttons button:active span{
    top: -3px;
}

.buttons button.facebook span{
    border-right: 1px solid #2E4476;
}
.buttons button.instagram span{
    border-right: 1px solid #c91d56;
}
.buttons button.youtube span{
    border-right: 1px solid #C02B21;
}
.buttons button.whatsapp span{
    border-right: 1px solid #057318;
}

.buttons button.facebook:active span{
    box-shadow: 0px 6px 0px 0px #2E4476,
                10px 4px 4px rgba(0,0,0,0.3);
}
.buttons button.instagram:active span{
    box-shadow: 0px 6px 0px 0px #c91d56,
                10px 4px 4px rgba(0,0,0,0.3);
}
.buttons button.youtube:active span{
    box-shadow: 0px 6px 0px 0px #C02B21,
                10px 4px 4px rgba(0,0,0,0.3);
}
.buttons button.whatsapp:active span{
    box-shadow: 0px 6px 0px 0px #057318,
                10px 4px 4px rgba(0,0,0,0.3);
}

.map{
    display: block;
    height: 100%;
    width: 100%;
    flex-basis: 42%;
}

.map iframe{
    width: 100%;
    height: 100%;
}

.contact-form{
    margin: 100px 6%;
}

.contact-card form {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    height: 100%;
    padding: 60px;
    gap: 30px 0;
}

.contact-card form .form__left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 15px 0 0;
}

.contact-card h2{
    color: #fff;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card form .input {
    width: 100%;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
    outline: none;
    padding: 10px;
    color: #fff;
    font-size: 1rem;
}

.contact-card .form__left .input {
    margin-top: 30px;
}

.contact-card form .input-box{
    position: relative;
    flex-basis: 10%;
    width: 100%;
}

.input-box label{
    position: absolute;
    top: 51px;
    left: 5px;
    padding: 10px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #fff;
    transition: .3s;
    z-index: -1;
}

.message label{
    top: 21px;
    left: 20px;
}

.input-box .input:focus ~ label,
.input-box .input:not(:placeholder-shown) ~ label {
    top: 17px;
    left: 5px;
    font-size: 0.8rem;
    padding: 5px;
}

.input-box.message .input:focus ~ label,
.input-box.message .input:not(:placeholder-shown) ~ label {
    top: -13px;
    left: 20px;
}

.input-box.message{
    padding-left: 15px;
}

.input-box textarea.input {
    height: 100%;
    resize: none;
    flex-basis: auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.form__bottom{
    position: relative;
    display: flex;
    grid-column-start: 1;
    grid-column-end: 3;
    width: 100%;
    height: fit-content;
    flex-direction: column;
    gap: 30px;
}

.form__bottom .checkbox{
    display: flex;
    color: #fff;
    font-size: 0.9rem;
    text-align: justify;
}

.form__bottom .checkbox input{
    margin-left: 1px;
    margin-right: 15px;
}

.form__bottom .checkbox div{
    color: #fff;
}

.form__bottom .checkbox a{
    color: #fff;
}

.send-btn{
    position: relative;
    display: block;
    width: 100%;
    background-color: #b21105;
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    transition: background-color 0s linear .2s;
}
.send-btn:hover,
.send-btn:focus{
    transition: background-color 0s linear .3s;
    background-color: transparent;
}
.send-btn::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-color: #fff;
    transition: clip-path .5s ease-in-out;
    clip-path: circle(0% at 50% 50%);
}
.send-btn:hover::before,
.send-btn:focus::before{
    clip-path: circle(100% at 50% 50%);
}

.send-btn input{
    width: 100%;
    height: 100%;
    padding: 15px;
    cursor: pointer;
    color: #fff;
    outline: none;
    border: none;
    background-color: transparent;
    text-align: center;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    transition: color .1s ease-in-out .4s;
}
.send-btn:hover input,
.send-btn:focus input{
    color: #28282b;
    transition: color ease-in-out .2s;
}

.container-associated{
    display: flex;
    height: fit-content;
    width: 100%;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 100px;
    justify-content: center;
    align-items: center;
}

.container-associated h3{
    color: #fff;
    text-align: center;
}

.container-associated a {
    background-color: #fff;
    width: fit-content;
    padding: 10px 15px 5px 5px;
    border-radius: 5px;
    transition: scale .1s ease;
}
.container-associated a:hover{
    scale: 1.02;
}

.container-associated img {
    padding-left: 5px;
}

footer{
    background: #151515;
    padding: 20px;
    text-align: center;
}

footer p{
    color: #fff;
}

@media (max-width: 1320px){

    .grid{
        margin-top: 100px;
        grid-template-rows: auto 400px;
        grid-template-columns: 47% 47%;
        gap: 100px 6%;
    }

    .card.contacts-list{
        grid-column-end: 2;
        padding: 30px 70px;
        border: 0px;
    }

    .contacts-list ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contacts-list ul li {
        width: 100%;
        justify-content: flex-start;
        padding: 30px 0 30px 0;
    }
    
    .contacts-list ul li .text{
        width: 100%;
    }

    .map{
        grid-row-start: 1;
        grid-row-end: 2;
        grid-column-start: 2;
        grid-column-end: 3;
    }

    .social{
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-start: 1;
        grid-column-end: 3;
        align-items: center;
    }

    .buttons{
        width: 80%;
    }

}

@media (max-width: 1100px){

    .menu li a{
        margin: 0 5px;
    }

    .language-menu{
        margin-left: 21px;
    }

    .navbar-list .list.open::before{
        left: 30px;
    }
}

@media (max-width: 1050px){

    .menu li a{
        margin: 0 3px;
    }

    .language-menu{
        margin-left: 12px;
    }

    .navbar-list .list.open::before{
        left: 30px;
    }
}

@media (max-width: 991px){

    header{
        padding-top: 30px;
    }

    .navbar_computer{
        display: none;
    }

    .navbar_smartphone{
        display: flex;
        width: 100%;
        height: fit-content;
        justify-content: space-between;
        align-items: center;
    }

    .togglebtn{
        display: flex;
        color: #fff;
        cursor: pointer;
        font-size: 35px;
        width: 31px;
        justify-content: center;
    }
    
    .dropdown_menu{
        position: absolute;
        right: 5%;
        top: 94px;
        width: 300px;
        max-height: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-radius: 10px;
        transition: max-height 0.2s ease;
    }
    .dropdown_menu.open{
        height: fit-content;
        max-height: 517px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown_menu ul{
        position: relative;
        display: block;
        width: 100%;
        list-style: none;
    }

    .dropdown_menu ul li.dropdown_navbar{
        padding: 0;
    }

    .dropdown_menu ul li.dropdown_navbar label{
        padding: 8px 20px;
    }
    .dropdown_menu ul li.dropdown_navbar label.active{
        background-color: #b21005;
    }

    .dropdown_menu ul li.dropdown_navbar ul li{
        padding: 8px 50px;
    }

    .dropdown_menu li ul.dropdown_list{
        height: 0;
        overflow: hidden;
        transition: height 0.2s ease;
    }
    .dropdown_menu li ul.dropdown_list.open{
        height: 138px;
    }

    .dropdown_menu .dropdown_about_us ul.dropdown_list.open{
        height: 92px;
    }

    .dropdown_menu ul li{
        padding: 8px 20px;
        line-height: 40px;
        color: white;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .dropdown_menu ul li.active{
        background-color: #b21005;
    }

    .dropdown_menu ul li label{
        color: white;
        font-size: 18px;
        display: block;
        cursor: pointer;
    }

    .dropdown_menu ul li a{
        color: white;
        text-decoration: none;
        font-size: 18px;
        display: block;
        text-shadow: 0 0 5px #000;
    }

    .dropdown_menu ul ul{
        position: static;
    }

    .dropdown_menu ul ul li{
        line-height: 30px;
        padding-left: 30px;
        border-bottom: none;
    }

    .dropdown_menu ul ul li.download a{
        display: flex;
        align-items: center;
    }

    .dropdown_menu ul ul li.download a i{
        padding: 0;
        margin-top: 0;
        margin-left: 20px;
        font-size: 17px;
        float: auto;
    }

    .dropdown_menu ul ul li a{
        font-size: 17px;
    }

    .dropdown_menu ul li i{
        padding: 0 10px;
        margin-top: 10px;
        font-size: 20px;
        float: right;
        transition: 0.3s;
    }

    .dropdown_menu ul li i.rotate{
        transform: rotate(-180deg);
    }

    .logo{
        height: 35px;
        margin: auto;
    }

    .language-menu{
        margin-left: 0;
        height: 35px;
        width: 35px;
        gap: 10px;
    }

    .language-options{
        margin-top: 61px;
        width: 35px;
    }

    .language-options li{
        height: 35px;
    }

    .alert{
        top: 30px;
    }

    h1{
        font-size: 3.5rem;
        margin-top: 30px;
    }

    .grid{
        grid-template-rows: auto 400px 200px;
        grid-template-columns: 100%;
        gap: 80px;
    }

    .card.contacts-list{
        align-items: center;
        justify-content: space-around;
        padding: 20px 50px;
    }

    .contacts-list ul {
        width: fit-content;
    }
    
    .contacts-list ul li {
        width: 100%;
        justify-content: flex-start;
        padding: 20px 0 20px 0;
    }
    
    .contacts-list ul li .text{
        width: 100%;
    }

    .map{
        grid-row-start: 3;
        grid-row-end: 4;
        grid-column-start: 1;
        grid-column-end: 2;
    }

    .social{
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-start: 1;
        grid-column-end: 2;
    }

    .social h2{
        padding-top: 20px;
        font-size: 2.6rem;
    }

    .form__left h2{
        font-size: 2.6rem;
    }

}

@media (max-width: 767px), (max-height: 370px){

    header{
        padding-top: 25px;
    }

    .dropdown_menu{
        transform-origin: 0 100%;
        left: 0%;
        top: 84px;
        width: 100%;
        max-height: 100dvh;
        height: 100dvh;
        overflow: hidden;
        transition: transform .3s ease;
        transform: scaleY(0);
    }
    .dropdown_menu.open{
        max-height: 100dvh;
        height: 100dvh;
        transform: scaleY(1);
    }

    .dropdown_menu ul {
        display: flex;
        flex-direction: column;
        height: calc(100dvh - 84px);
    }

    .dropdown_menu ul li {
        flex-basis: 14%;
        overflow: hidden;
        transition: none;
    }

    .dropdown_menu ul li.open {
        flex-basis: 44%;
    }

    .dropdown_menu ul .dropdown_about_us.open {
        flex-basis: 35.5%;
    }

    .dropdown_menu ul li a{
        display: flex;
        align-items: center;
        height: 100%;
    }

    .dropdown_menu ul li label{
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown_menu ul li label i{
        margin-top: 0;
    }

    .dropdown_menu ul li label i{
        margin-top: 0;
    }

    .dropdown_menu ul li.open label{
        height: 30%;
    }

    .dropdown_menu ul .dropdown_about_us.open label{
        height: 40%;
    }

    .dropdown_menu ul li.open ul.dropdown_list.open{
        height: 70%;
    }

    .dropdown_menu ul .dropdown_about_us.open ul.dropdown_list.open{
        height: 60%;
    }

    .dropdown_menu ul li.open ul.dropdown_list.open li{
        height: 33.3%;
    }

    .dropdown_menu ul .dropdown_about_us.open ul.dropdown_list.open li{
        height: 50%;
    }

    .logo{
        height: 28px;
        margin: auto;
    }

    .alert{
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: auto auto auto;
        width: 90%;
        top: 25px;
        min-width: 0;
        margin: 0 auto 0 auto;
        justify-content: space-between;
    }

    .alert .msg{
        height: fit-content;
        margin: 20px 0;
        overflow: auto;
        white-space: unset;
    }

    .alert .close-btn{
        display: flex;
        align-items: center;
        max-height: 100%;
    }

    h1{
        font-size: 3rem;
    }

    .grid{
        margin-top: 75px;
        margin-bottom: 75px;
        grid-template-rows: auto auto 300px;
        gap: 75px 10%;
    }
    
    .contacts-list ul li .text{
        margin-left: 20px;
    }

    .social{
        height: fit-content;
        margin-bottom: 6px;
    }

    .social h2{
        padding-top: 0;
        font-size: 2rem;
    }

    .social .buttons{
        display: none;
    }

    .social .buttons_smartphone{
        display: grid;
        width: 100%;
        height: 100%;
        grid-template-columns: 90px 90px;
        grid-template-rows: 90px 90px;
        gap: 50px 15%;
        justify-content: center;
        align-items: center;
    }
    
    .buttons_smartphone div{
        display: flex;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .buttons_smartphone a{
        display: flex;
        position: relative;    
        height: 100%;
        width: 100%;
        color: #fff;
        font-size: 3rem;
        font-weight: 500;
        text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
        cursor: pointer;
        border: none;
        outline: none;
        border-radius: 10px;
        justify-content: center;
        align-items: center;
    }
    
    .buttons_smartphone a.facebook{
        background: #3b5999;
        border-left: 2px solid #2e4476;
        box-shadow: 0px 6px 0px 0px #2e4476;
    }
    
    .buttons_smartphone a.instagram{
        background: #e1306c;
        border-left: 2px solid #c91d56;
        box-shadow: 0px 6px 0px 0px #c91d56;
    }
    
    .buttons_smartphone a.youtube{
        background: #de463b;
        border-left: 2px solid #c02b21;
        box-shadow: 0px 6px 0px 0px #c02b21;
    }
    
    .buttons_smartphone a.whatsapp{
        background: #2DAA43;
        border-left: 2px solid #057318;
        box-shadow: 0px 6px 0px 0px #057318;
    }
    
    .contact-card .form{
        display: flex;
        flex-direction: column;
        padding: 40px;
        gap: 30px;
    }

    .contact-card form .form__left {
        padding: 0;
        font-size: 2rem;
    }

    .form__left h2{
        font-size: 2rem;
        margin-bottom: 0;
    }

    .contact-form{
        margin-top: 75px;
        margin-bottom: 75px;
    }

    .contact-card form .message {
        padding: 0;
        font-size: 2rem;
    }

    .contact-card form .message label{
        left: 5px;
    }

    .input-box.message .input:focus ~ label,
    .input-box.message .input:not(:placeholder-shown) ~ label {
        top: -13px;
        left: 5px;
    }

    .container-associated{
        padding-bottom: 75px;
    }
    
}

@media (max-height: 370px) {

    .dropdown-menu li a{
        font-size: 1rem;
    }

}
