/* UNIVERSAL */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --first-color: #0D0D0D;
    --second-color: #95A986;
    --third-color: #FFFFFF;
    --fourth-color: #5E5E5E;
    --fifth-color: #2C2C2C;
    --sixth-color: #F6F6F6;
    --seventh-color: #000000;
    --eighth-color: #AEAEAE;
}
::-webkit-scrollbar{
    display: none;
}
/* COMMON CLASSES */
.container{
    max-width: 1460px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}
section img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
img{
    max-width: 100%;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
body{
    font-family: "Poppins", sans-serif;
}
h1, .heading-1{
    font-family: "Amiri", serif;
    font-size: 68px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--first-color);
    line-height: 1.2;
    margin-bottom: 35px;
}
h2, .heading-2{
    font-family: "Amiri", serif;
    font-size: 45px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--first-color);
    line-height: 1.2;
    margin-bottom: 2px;
}
h6, .heading-6{
    font-family: "Amiri", serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--fifth-color);
    line-height: 1.2;
    margin-bottom: 1px;
}
span{
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--second-color);
    line-height: 1.2;
    letter-spacing: 5px;
    margin-bottom: 6px;
}
p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--fourth-color);
    margin-bottom: 35px;
}
/* HEADER SECTION */
.header-sec{
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
    width: 100%;
}
.header-top{
    background-color: var(--first-color);
    color: var(--third-color);
    text-align: center;
    text-transform: capitalize;
    padding-block: 5px;
    width: 100%;
}
.header-sec .container{
    max-width: 1720px;
}
.navbar{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-block: 21px;
}
.nav-logo{
    display: block;
    width: 312px;
}
.nav-logo img{
    width: 100%;
}
.nav-links{
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
}
.nav-links li {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 56px;
}
.nav-links li a{
    color: var(--third-color);
    position: relative;
}
.nav-links li a::after{
    content: '';
    height: 6px;
    width: 6px;
    background-color: var(--third-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    transition: all 0.4s ease-in-out;
    display: none;
}
.nav-links li a:hover::after{
    display: block;
}
.nav-right{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: var(--third-color);
}
.nav-icon{
    margin-right: 44px;
}
.search{
    margin-right: 22px;
}
.nav-cart{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.nav-cart span{
    font-weight: 700;
    text-transform: capitalize;
    color: var(--third-color);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}
.menu-btn{
    color: var(--third-color);
    cursor: pointer;
    display: none;
}
.nav-links.active{
    display: flex;
}
/* BANNER SECTION */
.banner-sec{
    background: url(../images/banner-bg.png) no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.banner-child{
    background-color: var(--third-color);
    border: none;
    border-radius: 20px;
    padding: 76px 59px 75px 60px;
    max-width: 793px;
    text-align: center;
    margin: auto;
    width: 100%;
}
.banner-child .cmn-btn{
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    color: var(--first-color);
    background-color: var(--second-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 29px 38px 28px 39px;
    border: none;
    border-radius: 60px;
    transition: all 0.4s ease-in-out;
}
.banner-child .cmn-btn:hover{
    background-color: var(--first-color);
    color: var(--third-color);
}
/* ABOUT SECTION */
.about-sec{
    padding: 111px 0 151px;
}
.about-child{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 -50px;
}
.about-left, .about-right{
    flex-basis: 50%;
    padding: 0 50px;
}
.about-right{
    display: flex;
    gap: 24px;
}
.about-text .symbol{
    width: 65px;
    margin-bottom: 21px;
}
.about-text{
    width: 85%;
}
.about-text span{
    display: block;
}
.about-text p{
    text-transform: capitalize;
}
.abt-1, .abt-2{
    overflow: hidden;
}
.abt-1 img{
    width: 425px;
}
.abt-2 img{
    width: 303px;
}
.about-right{
    align-items: center;
}
/* CARD SECTION */
.card-sec{
    padding-bottom: 133px;
}
.card-child{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.card-child a{
    display: block;
    flex-basis: calc(25% - 30px);
}
.card-head{
    text-align: center;
}
.card-head span{
    display: block;
    margin-bottom: 19px;
}
.card-head h2{
    margin-bottom: 20px;
}
.card-head .symbol-2{
    width: 105px;
    margin: 0 auto 52px;
}
.cmn-card{
    max-width: 230px;
    text-align: center;
    margin: 0 auto;
}
.card-image{
    margin-bottom: 32px;
}
.card-image img{
    width: 111px;
}
/* MISSION SECTION */
.mission-sec{
    background-color: var(--sixth-color);
    padding-block: 100px;
}
.mission-child{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 -65px;
}
.mission-left, .mission-right{
    flex-basis: 50%;
    padding: 0 65px;
}
.mission-left{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    min-height: 634px;
    position: relative;
}
.mission-left .image-1{
    /* width: 641px; */
}
.mission-left .image-1 img{
    width: 100%;
}
.mission-left .image-2{
    /* width: 326px; */
    position: absolute;
    right: 0;
    bottom: 0;
}
.mission-left .image-2 img{
    width: 100%;
    border: 5px solid var(--third-color);
    border-top-left-radius: 30px;
}
.mission-text{
    width: 90%;
}
.mission-text h2{
    margin-bottom: 30px;
}
.mission-text .symbol{
    width: 65px;
    margin-bottom: 25px;
}
/* FOOTER SECTION */
.footer-sec{
    padding-top: 64px;
}
.footer-child{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-1{
    width: 30%;
    padding: 0 20px;
}
.footer-2, .footer-3, .footer-4{
    width: 20%;
    padding: 0 20px;
}
.cmn-footer{
    margin-bottom: 58px;
}
.footer-head{
    text-transform: uppercase;
    font-family: "Amiri", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--first-color);
    margin-bottom: 39px;
    position: relative;
}
.footer-head::after{
    content: '';
    height: 1px;
    width: 60px;
    background-color: var(--first-color);
    position: absolute;
    left: 0;
    bottom: -19px;
}
.footer-1 p{
    margin-bottom: 20px;
}
.footer-links li{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 9px;
    text-transform: capitalize;
}
.footer-links li a{
     color: var(--fourth-color);
}
.footer-medias{
    display: flex;
    align-items: center;
}
.footer-medias li{
    margin-right: 36px;
}
.footer-medias li a{
    color: var(--first-color);
}
.footer-title{
    border-top: 1px solid var(--seventh-color);
    padding-block: 21px;
    text-align: center;
}
.footer-title p{
    font-size: 18px;
    font-weight: 400;
}
.footer-title p a{
    color: var(--fourth-color);
}
.email-input{
    border: 1px solid rgba(134, 134, 134, 0.5);
    border-radius: 60px;
    width: 100%;
    padding: 15px 23px;
    outline: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--eighth-color);
    margin-bottom: 13px;
}
.email-input::placeholder{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--eighth-color);
    text-transform: capitalize;
}
input[type='submit']{
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--first-color);
    padding: 21px 45px 20px;
    border: none;
    border-radius: 60px;
    background-color: var(--second-color);
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
input[type='submit']:hover{
    background-color: var(--first-color);
    color: var(--third-color);
}