/*============= Font Settings ===============*/

@font-face {
    font-family: poppins-black;
    src: url(../assets/fonts/Poppins/Poppins-Black.ttf);
}

@font-face {
    font-family: poppins-bold;
    src: url(../assets/fonts/Poppins/Poppins-Bold.ttf);
}

@font-face {
    font-family: poppins-extraBold;
    src: url(../assets/fonts/Poppins/Poppins-ExtraBold.ttf);
}

@font-face {
    font-family: poppins-extraLight;
    src: url(../assets/fonts/Poppins/Poppins-ExtraLight.ttf);
}

@font-face {
    font-family: poppins-light;
    src: url(../assets/fonts/Poppins/Poppins-Light.ttf);
}

@font-face {
    font-family: poppins-medium;
    src: url(../assets/fonts/Poppins/Poppins-Medium.ttf);
}

@font-face {
    font-family: poppins-regular;
    src: url(../assets/fonts/Poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: poppins-semibold;
    src: url(../assets/fonts/Poppins/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: poppins-thin;
    src: url(../assets/fonts/Poppins/Poppins-Thin.ttf);
}

/*============= Body ===============*/
html, body {
    max-width: 100%;
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    background-color: #F1EFEC;
}

/*============= Logo ===============*/
#logo{
    float: left;
    font-size: 40px;
    padding-left: 30px;
    font-family: poppins-light;
    
}

#logo a{
    text-decoration: none;
    color: #030303;
}

/*============= Navbar ===============*/

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #F1EFEC;
    height: 8vh;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
  
nav ul li {
    margin-right: 20px;
    display: flex;
    align-items: center;
}
  
nav ul li a {
    text-decoration: none;
    color: #030303;
    padding: 5px 15px;
    display: inline-block;
    font-family: poppins-medium;
}

nav ul li a:hover{
    color: #123458;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 30px;
    height: 4px;
    background: white;
    margin: 5px;
    transition: 0.3s;
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: white;
        text-align: center;
        padding: 10px 0;
        justify-content: center;
        align-items: center;
        height: 35vh;
    }
    nav ul li a {
        padding: 5px 15px;
        font-size: 1.5em;
        line-height: 2em;
        font-family: poppins-medium;
    }
    .loginButton{
        border-radius: 20px;
        font-family: poppins-medium;
        font-size: 1.3em;
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    .burger div {
        width: 30px;
        height: 4px;
        background: #032826;
        margin: 5px;
        transition: 0.3s;
    }
}



  /*============= Hero Section ===============*/

.heroSection{
    height: 90vh;
    width: 100%;
    display: flex;
    background-color: grey;
}

.heroLeft{
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 40px;
    line-height: 5.5em;
}

.heroLeft span{
    margin-top: 30px;
    font-family: poppins-semibold;
    font-size: 4.5em;
    color: #030303;
    margin-bottom: 20px;
}

.heroRight{
    height: 100%;
    width: 50%;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heroRight img{
    max-width: 70%;
    max-height: 70%;
    height: auto;
    display: block;
    transition: transform 800ms ease-in-out;
    animation: floatImage 3s infinite ease-in-out;
}

@media (max-width: 900px) {
    .heroLeft{
        height: 100%;
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-left: 40px;
        line-height: 4em;
    }
    .heroLeft span{
        margin-top: 30px;
        font-size: 3em;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .heroLeft span{
        font-size: 2.5em;
        margin-right: 25px;
    }
    .heroSection{
        height: 60vh;
    }
    .heroRight{
        display: none;
    }
    .heroLeft{
        width: 90%;
    }
}

/*============= Section 2 ===============*/

.sec2{
    height: 60vh;
    width: 100%;
    display: flex;
    background-color: #0b4d4e;
}

.sec2Left{
    height: 100%;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 40px;
    line-height: normal;
}

.sec2Left span{
    padding-left: 10px;
    font-family: poppins-medium;
    font-size: 4em;
    color: white;
    margin-bottom: 10px;
    display: block;
    line-height: 1.1em;
}

.sec2Left h1{
    padding-left: 10px;
    font-family: poppins-light;
    font-size: 1.2em;
    color: white;
    margin-top: 10px;
}

.sec2Left a {
    margin-left: 10px;
    margin-top: 10px;
    text-decoration: none;
    color: #032826;
    background-color: #57ef9d;
    padding: 8px 25px;
    display: inline-block;
    font-family: poppins-medium;
    text-align: center;
    border-radius: 20px;
    font-size: 1em;
  }

.sec2Left a:hover{
    background-color: #032826;
    color: #57ef9d;
  }

.sec2Right{
    height: 100%;
    width: 70%;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec2Right img{
    max-width: 85%;
    max-height: 85%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: 800ms ease-in-out;
}

@media (max-width: 1000px) {
    .sec2{
        flex-direction: column;
        height: 80vh;
    }
    .sec2Right{
        height: 100%;
        width: 100%;
    }
    .sec2Left{
        width: 80%;
    }
    .sec2Left span{
        padding-left: 10px;
        padding-top: 15px;
        font-size: 2.7em;
        margin-bottom: 10px;
        line-height: 1.1em;
    }
    
    .sec2Left h1{
        padding-left: 10px;
        font-size: 1em;
        color: white;
        margin-top: 10px;
    }
}

/*============= Footer ===============*/

.footer{
    height: 25vh;
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    text-align: left;
    background-color: #030303;
}

.footerMenu{
    font-family: poppins-light;
    font-size: 1em;
    margin-right: 40px;
    margin-top: 40px;
    list-style: none;
    line-height: 2.2em;
}

.footerMenu a{
    text-decoration: none;
    color: white;
}

.footerMenu a:hover{
    text-decoration: none;
    color: #318458;
}

@media (max-width: 600px) {
    .footer{
        justify-content: center;
        text-align: center;
    }

}

/*============= Footer Credit & Date ===============*/

.footerCredit{
    height: 8vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #030303;
}

.date{
    font-family: poppins-medium;
    font-size: 1.5em;
    color: #D4C9BE;
}

.footerSingleLetter{
    color: white;
}