@font-face {
    font-family: "San Francisco";
    src:
      url("../fonts/SFUIDisplay-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Lucida Grande";
    src:
      url("../fonts/LucidaGrande.ttf") format("truetype");
}
@font-face {
    font-family: "Roberto";
    src:
      url("../fonts/Roberto-regular.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto";
    src:
      url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Renogare";
    src:
      url("../fonts/RenogareSoft-Regular.ttf") format("truetype");
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    touch-action: manipulation;
}
body{
    margin: 0;
    font-family: "San Francisco", "Lucida Grande", Roboto, Renogare, Roberto, Arial, sans-serif;
}
header{
    width: 100%;
    display: table;
    margin: auto;
    padding: 10px 40px 0 40px;
}
.logo{
    height: 4vh;
    display: inline-block;
    vertical-align: middle;
    align-items: center;
}
.logo-link {
    display: flex;
    text-decoration: none;
    color: white;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem
}
.navbar{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    min-height: 6vh;
}
.nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    gap: 0px;
    z-index: 1;
}
.nav-item{
    list-style: none;
    vertical-align: middle;
    padding :0 20px
}
.nav-link{
    display: inline-block;
    text-decoration: none;
    color: white;
    vertical-align: middle;
    font-size: 1.2rem;
}
.nav-link:hover{
    color: #e9e9e9;
}
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
}
.dropdown{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dropdown-content{
    position: absolute;
    display: none;
    width: 100%;
    list-style: none;
    margin-top: 23px;
    padding: 10px 0 0 10px;
    left: 7px;
}
.dropdown-content li{
    margin-bottom: 10px;
}
.dropdown-content li a{
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    display: block;
}
.dropdown-content li a:hover{
    color: #e9e9e9;
}
.dropdown:hover .dropdown-content{
    display: inline;
}
@media(max-width:920px){
    .hamburger{
        display: block;
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        display: block;
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        column-gap: 0;
        background-color: #32CCFE;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: 0.3s;
        padding-top: 5vh;
    }
    .nav-item {
        margin: 15px 0;
        display: block;
    }
    .nav-link{
        font-size: 1.3rem;
        color: white !important;
    }

    .nav-menu.active{
        left: 0;
    }

    .dropdown-content{
        position: relative;
        display: inline;
        left: 20px;
        background-color: transparent !important;
    }
    .dropdown{
        float: none;
        padding: 0;
    }
    .dropdown a.nav-link{
        margin-left: 17px;
    }
    .dropdown-content li a{
        margin: 10px auto 0 auto;
        font-size: 1.1rem;
        display: block;
        left: 50px;
        width: 50px;
        color: white !important;
    }
    .bar.active{
        background-color: #ffffff !important;
    }
}

/*Section mobile

.hamburger.mobile{
    display: block;
}

.hamburger.mobile.active .bar:nth-child(2){
    opacity: 0;
}
.hamburger.mobile.active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
}
.hamburger.mobile.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu.mobile {
    display: block;
    position: fixed;
    left: -100%;
    top: 0;
    gap: 0;
    column-gap: 0;
    background-color: #32CCFE;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: 0.3s;
    padding-top: 5vh;
}
.nav-item.mobile {
    margin: 15px 0;
    display: block;
}
.nav-link.mobile{
    font-size: 1.3rem;
    color: white !important;
}

.nav-menu.mobile.active{
    left: 0;
}

.dropdown-content.mobile{
    position: relative;
    display: inline;
    left: 20px;
    background-color: transparent !important;
}
.dropdown.mobile{
    float: none;
    padding: 0;
}
.dropdown-content.mobile li a{
    margin: 10px auto 0 auto;
    font-size: 1.1rem;
    display: block;
    left: 50px;
    width: 50px;
    color: white !important;
}
.bar.active{
    background-color: white;
}

End section mobile*/

.knowmore-yellow{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 200px;
    min-height: 50px;
    width: 10vw;
    height: 3.5vh;
    background-color: #FFE401;
    color: black;
    border-radius: 50px;
    border: none;
    font-family: "San Francisco", "Lucida Grande", Roboto, Renogare, Roberto, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    margin: 20px auto;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}
.knowmore-blue{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 200px;
    min-height: 50px;
    width: 10vw;
    height: 3.5vh;
    background-color: #32CCFE;
    color: black;
    border-radius: 50px;
    border: none;
    font-family: "San Francisco", "Lucida Grande", Roboto, Renogare, Roberto, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    margin: 20px auto;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}
.knowmore-grey{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 200px;
    min-height: 50px;
    width: 10vw;
    height: 3.5vh;
    background-color: #212121;
    color: white;
    border-radius: 50px;
    border: none;
    font-family: "San Francisco", "Lucida Grande", Roboto, Renogare, Roberto, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 20px auto;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}
.foot{
    background-color: #0f0f0f;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8vh 8vw;
    gap: 3vw;
    font-family: "San Francisco", "Lucida Grande", Roboto, Renogare, Roberto, Arial, sans-serif;
}
.foot-content{
    color: white;
    min-width: 300px;
    margin-bottom: 50px;
    width: 40%;
}
.foot-newsletter{
    color: white;
    min-width: 300px;
    width: 40%;
}
@media(max-width:320px){
    .foot-newsletter{
        min-width: 250px;
    }
    .foot-content{
        min-width: 250px;
    }
}
.foot-title{
    font-size: 1.7rem;
    margin-bottom: 10px;
}
.foot-subtitle{
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.foot-desc{
    font-size: 1.1rem;
    text-align: justify;
}
.foot-social{
    margin-bottom: 30px;
}
.foot-social a{
    margin-right: 15px;
    color: white;
    text-decoration: none;
}
.foot-newsletter .foot-desc{
    margin-bottom: 20px;
}
.foot-inputcont{
    background-color: #6e6e6e;
    padding: 3px 15px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 60%;
    display: inline-block;
}
.foot-input{
    background-color: transparent;
    border: none;
    font-size: 1rem;
    height: 35px;
    color: white;
    width: 100%;
}
.foot-input:-webkit-autofill,
.foot-input:-webkit-autofill:hover,
.foot-input:-webkit-autofill:focus,
.foot-input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: white;
}
.foot-input:focus{
    outline: none;
}
.foot-btn{
    display: inline-block;
    padding: 2px 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    min-width: 100px;
    max-width: 120px;
    width: 25%;
    font-size: 1.1rem;
    height: 41px;
    border: none;
    background-color: #FFE401;
    cursor: pointer;
}
.foot-input-wrapper{
    display: flex;
}
.foot-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 0.8; /* Firefox */
}
  
.foot-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: white;
}
  
.foot-input::-ms-input-placeholder { /* Microsoft Edge */
    color: white;
}
