/* UNIVERSAL */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --first-color: #18212D;
    --second-color: #EAE4EA;
    --third-color: #E5DCE5;
    --fourth-color: #AA6AAA;
    --fifth-color: #FFFFFF;
    --sixth-color: #717175;
    --seventh-color: #EFEEED;
    --eighth-color: #BEBEBE;
    --ninth-color: #CFC6D3;
    --tenth-color: #EAE3EA;
    --eleventh-color: #EEF0F8;
    --twelfth-color: #EEEEEE;
    --thirteenth-color: #8A737D;
    --fourteenth-color: #1F201C;
}
::-webkit-scrollbar{
    display: none;
}
/* COMMON CLASSES */
.container{
    max-width: 1398px;
    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: "DM Sans", sans-serif;
}
.cmn-btn{
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 16px 14px;
    color: var(--first-color);
    background-color: var(--second-color);
    border: 1px solid var(--third-color);
    border-radius: 50px;
    transition: all 0.4s ease-in-out;
}
.cmn-btn:hover{
    background-color: var(--fourth-color);
    color: var(--fifth-color);
}
h1, .heading-1{
    font-family: "Open Sans", sans-serif;
    font-size: 54px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 22px;
    line-height: 1.2;
    color: var(--first-color);
}
h2, .heading-2{
    font-family: "Open Sans", sans-serif;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 82px;
    line-height: 1.2;
    color: var(--first-color);
}
h5, .heading-5{
    font-family: "Open Sans", sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--first-color);
}
p{
    font-size: 16px;
    font-weight: 400;
    color: var(--sixth-color);
    line-height: 1.4;
    margin-bottom: 30px;

}
/* HEADER-SECTION */
.header-sec{
    padding: 18px 0 19px;
    position: sticky;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--fifth-color);
    width: 100%;
    box-shadow: 0 0 0 rgba(0,0,0,0.8);
    z-index: 999;
}
.navbar{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.nav-logo{
    display: block;
    width: 224px;
    position: absolute;
    top: 10px;
}
.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: capitalize;
    margin-right: 45px;
}
.nav-links li a{
    color: var(--first-color);
    position: relative;
    transition: all 0.4s ease-in-out;
}
.nav-links li a:hover{
    color: var(--fourth-color);
}
.nav-links li a::after{
    content: '';
    height: 2px;
    width: 0;
    background-color: var(--fourth-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    transition: width 0.4s ease-in-out;
}
.nav-links li a:hover::after{
    width: 100%;
}
.menu-btn{
    cursor: pointer;
    color: var(--first-color);
    display: none;
}
.nav-links.active{
    display: flex;
}
/* BANNER SECTION */
.banner-sec{
    background: url(../images/banner-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 130vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: 1px solid var(--seventh-color);
    border-radius: 20px;
}
.banner-child{
    text-align: center;
    margin: auto;
    height: 536px;
    padding-top: 48px;
}
.banner-text{
    width: 60%;
    margin: auto;
}
.banner-child .cmn-btn{
    background-color: var(--fourth-color);
    color: var(--fifth-color);
    padding: 20px 24px;
    margin-bottom: 36px;
}
.banner-child .cmn-btn:hover{
    background-color: var(--first-color);
}
.banner-image{
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 13px 15px 0 15px;
}
.banner-image img{
    height: 536px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.banner-text p{
    color: var(--sixth-color);
}
/* ABOUT SECTION */
.about-sec{
    padding: 81px 0 51px;
}
.about-child{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 -50px;
}
.about-left, .about-right{
    flex-basis: 35%;
    padding: 0 50px;
}
.image-left{
    max-width: 475px;
}
.image-right{
    max-width: 440px;
}
.image-left img, .image-right img{
    width: 100%;
}
.image-right{
    margin-bottom: 72px;
}
.text-right .cmn-btn{
    background-color: var(--fourth-color);
    color: var(--fifth-color);
    padding: 15px 41px 15px 42px;
    border: none;
}
.text-right .cmn-btn:hover{
    background-color: var(--first-color);
}
.about-right p{
    color: var(--sixth-color);
}
/* CARD SECTION */
.card-sec{
    background: linear-gradient(rgba(207, 198, 211, 0.52), rgba(207, 198, 211, 0.51), rgba(207, 198, 211, 0.87), rgba(207, 198, 211, 1));
    padding-block: 100px;
    border: 0.5px solid var(--eighth-color);
}
.card-head{
    text-align: center;
    width: 65%;
    margin: 0 auto 47px;
}
.card-head h2{
    margin-bottom: 0;
}
.card-row, .outer-col{
    display: flex;
    gap: 20px;
}
.row-top{
    margin-bottom: 20px;
}
.outer-col{
    flex-basis: 50%;
}
.inner-col{
    flex-basis: 50%;
}
.row-top .outer-left .inner-right, .row-bottom .outer-right .inner-left{
    padding: 57px 29px 30px 28px;
    background-color: var(--second-color);
    border-radius: 10px;
    cursor: pointer;
    max-width: 360px;
}
.row-top .outer-left .inner-right .card-link, .row-bottom .outer-right .inner-left .card-link{
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    max-width: 360px;
}
.row-top .outer-right .inner-right, .row-bottom .outer-left .inner-left{
    background-color: var(--fourth-color);
    padding: 57px 24px 30px 28px;
    border-radius: 10px;
    cursor: pointer;
}
.card-image{
    overflow: hidden;
    max-width: 360px;
    width: 100%;
    max-height: 360px;
}
.row-top .outer-left .inner-left img, .row-top .outer-right .inner-left img, .row-bottom .outer-left .inner-right img, .row-bottom, .outer-right, .inner-right img{
    object-fit: cover;
    height: 100%;
}
.pink-card{
    max-width: 360px;
    width: 100%;
    text-align: left;
}
.brown-card{
    max-width: 360px;
    width: 100%;
    text-align: left;
}
.pink-card h3, p, a{
    color: var(--fifth-color);
}
.pink-card a{
    text-transform: capitalize;
}
.brown-card p{
    color: var(--sixth-color);
}
.brown-card a{
    color: var(--first-color);
}
/* FOOTER SECTION */

.footer-sec{
    background-color: var(--first-color);
    padding-top: 123px;
    position: relative;
}
.footer-child{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cmn-footer{
    width: 25%;
    padding: 0 15px;
    margin-bottom: 40px;
}
.footer-logo{
    display: block;
    width: 195px;
}
.footer-head{
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--fifth-color);
    text-transform: capitalize;
    margin-bottom: 48px;
    position: relative;
}
.footer-head::after{
    content: '';
    height: 1px;
    width: 52px;
    background-color: var(--fifth-color);
    position: absolute;
    left: 0;
    bottom: -16px;
}
.footer-links li{
    font-size: 16px;
    font-weight: 400;
    color: var(--fifth-color);
    margin-bottom: 24px;
    text-transform: capitalize;
}
.footer-links li a{
    color: var(--fifth-color);
    transition: color 0.4s ease-in-out;
}
.footer-links li a:hover{
    color: var(--fourth-color);
}
.footer-medias{
    display: flex;
    align-items: center;
}
.footer-medias li{
    padding: 13px;
    background-color: var(--tenth-color);
    margin-right: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
.footer-medias li:hover{
    background-color: var(--fourth-color);
}
.footer-medias li a{
    color: var(--first-color);
}
form{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.email-input{
    border: 1px solid var(--eleventh-color);
    border-radius: 50px;
    background-color: transparent;
    padding: 17px 14px 18px;
    height: 46px;
    width: 100%;
    outline: none;
    color: var(--fifth-color);
    font-size: 16px;
    font-weight: 300;
}
.email-input::placeholder{
    font-size: 16px;
    font-weight: 300;
    color: var(--fifth-color);
    text-transform: capitalize;
}
input[type='submit']{
    background: url(../images/submit-icon.png) no-repeat;
    background-color: var(--fourth-color);
    background-position: center;
    background-size: 25px;
    padding: 14px 22px;
    border-radius: 50px;
    cursor: pointer;
    margin-left: 6px;
}
.footer-title{
    text-align: center;
    border-top: 1px solid var(--twelfth-color);
    padding: 17px 0 16px;
}
.footer-title p{
    font-size: 14px;
    font-weight: 400;
    color: var(--fifth-color);
}
.footer-title a{
    transition: color 0.4s ease-in-out;
}
.footer-title a:hover{
    color: var(--fourth-color);
}
.footer-float{
    background-color: var(--thirteenth-color);
    height: 127px;
    max-width: 945px;
    width: 100%;
    border-radius: 6px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
    padding: 38px 50px 39px 35px;
    display: flex;
    justify-content: space-between;
}
.footer-float h2{
    color: var(--fifth-color);
    text-transform: capitalize;
}
.footer-float .cmn-btn{
    color: var(--fourteenth-color);
    padding: 16px 35px 17px 34px;
    border-radius: 29px;
}
.footer-float .cmn-btn:hover{
    background-color: var(--first-color);
    color: var(--fifth-color);
    border-color: #18212D;
}
.footer-float img{
    position: relative;
    top: 15px;
    left: 25px;
}
