@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background-color: #3B5D4F;
}


/* <================================== Navbar Styling Here =================================> */

.navbar{
    width: 100%;
    height: 90px;
    background-color:#273e35;
    display: flex;
    align-items: center;
    padding: 0 50px;
    justify-content: space-between;
    position: relative;
}
.navbar-brand p{
    color: white;
    font-size: 32px;
    font-weight: 600;
    cursor: pointer;
    transition: .5s ease;
}
.navbar-brand p:hover{
    color: rgb(222, 222, 222);
}
.navbar-brand p span{
    font-size: 38px;
}
.links ul{
    list-style: none;
    position: relative;
}
.links ul li{
    display: inline-block;
    padding: 0 20px;
}
.links ul li a{
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: .5s ease;
}
.links ul li a:hover{
    color: rgb(222, 222, 222);
}

.links ul li a::before{
    content: "";
    width: 0px;
    height: 2px;
    background-color: rgb(255, 179, 0);
    position: absolute;
    bottom: -10%;
    transition: .5s ease;
}
.links ul li:nth-child(1) a:hover::before{
    width: 50px;
}
.links ul li:nth-child(2) a:hover::before{
    width: 72px;
}
.links ul li:nth-child(3) a:hover::before{
    width: 68px;
}
.links ul li:nth-child(4) a:hover::before{
    width: 38px;
}
.links ul li:nth-child(5) a:hover::before{
    width: 88px;
}

.user-login-icons i{
    color: white;
    font-size: 20px;
    margin: 0 15px;
    cursor: pointer;
    transition: .5s ease;
}
.user-login-icons i:hover{
    color: rgb(255, 179, 0);
}

/* <================================== Herobox Styling Here =================================> */

.herobox{
    width: 100%;
    height: 85vh;
    background-color: #3B5D4F;
    overflow: hidden;
    position: relative;
}
.main_image{
    width: 45%;
    height: 100%;
    position: absolute;
    right: 5%;
    overflow: hidden;
    z-index: 3;
}
.main_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.background_dot_overlay{
    width: 20%;
    height: 40%;
    overflow: hidden;
    position: absolute;
    right: 4%;
    top: 12%;
    opacity: 15%;
}
.background_dot_overlay img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content_herobox{
    width: 45%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    padding: 0 50px;
}
.content_herobox h1{
    color: white;
    font-weight: 600;
    font-size: 3vw;
    width: 56%;
    position: absolute;
    top: 20%; 
}
.content_herobox p{
    color: rgba(216, 216, 216, 0.752);
    position: absolute;
    top: 45%;
    width: 80%;
}
.content_herobox a.btn_1{
    display: inline-block;
    text-decoration: none;
    color: rgb(28, 28, 28);
    width: 150px;
    height: 50px;
    background-color: rgb(255, 179, 0);
    border: 2px solid rgb(255, 179, 0);
    border-radius: 50px;
    text-align: center;
    padding-top: 11px;
    font-weight: 600;
    position: absolute;
    top: 63%;
    transition: .5s ease;
}
.content_herobox a.btn_1:hover{
    border: 2px solid white;
    background-color: transparent;
    color: white;
}
.content_herobox a.btn_2{
    display: inline-block;
    text-decoration: none;
    color: white;
    width: 150px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50px;
    text-align: center;
    padding-top: 11px;
    font-weight: 600;
    position: absolute;
    top: 63%;
    left: 30%;
    transition: .5s ease;
}
.content_herobox a.btn_2:hover{
    border: 2px solid rgb(255, 179, 0);
    background-color: transparent;
    color: rgb(255, 179, 0);
}

/* <================================== Section_1 Styling Here =================================> */

.section_1{
    width: 100%;
    height: 80vh;
    background-color: white;
    padding: 0 50px;
    position: relative;
}
.content_section_1{
    width: 30%;
    height: 100%;
    position: absolute;
}
.content_section_1 h1{
    width: 70%;
    position: absolute;
    top: 20%;
    font-size: 40px;
    font-weight: 600;
}
.content_section_1 p{
    color: grey;
    position: absolute;
    top: 52%;
    width: 90%;
}
.content_section_1 a{
    display: inline-block;
    text-decoration: none;
    color: white;
    width: 150px;
    height: 50px;
    border: 2px solid rgb(32, 32, 32);
    background-color:rgb(32, 32, 32) ;
    border-radius: 50px;
    text-align: center;
    padding-top: 11px;
    font-weight: 600;
    position: absolute;
    top: 78%;
    transition: .5s ease;
}
.content_section_1 a:hover{
    background-color: transparent;
    color: rgb(32, 32, 32);
}
.products_section_1{
    width: 70%;
    height: 100%;
    position: absolute;
    right: 0%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}
.catalog_1{
    width: 30%;
    height: 70%;
    border-radius: 20px;
    position: relative;
    cursor: pointer;

}
.image_box{
    width: 100%;
    height: 70%;
    position: absolute;
    overflow: hidden;
    z-index: 3;
}
.image_box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    
}
.content_overlay{
    width: 100%;
    height: 80%;
    border-radius: 20px;
    position: absolute;
    bottom: 0%;
    transform-origin: bottom center;
    transform: scaleY(0);
    background-color: rgba(222, 222, 222, 0.859)
}
.content_overlay h1{
    font-size: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 26%;
}
.content_overlay p{
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 17%;
}
.content_overlay i{
    color: white;
    background-color: black;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.57);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5%;
}
.catalog_2{
    width: 30%;
    height: 70%;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}
.catalog_2 .content_overlay h1{
    width: 60%;
    left: 52%;
}
.catalog_3{
    width: 30%;
    height: 70%;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}
.catalog_3 .content_overlay h1{
    width: 60%;
    left: 52%;
}

/* <================================== Section_2 Styling Here =================================> */

.section_2{
    width: 100%;
    height: 100vh;
    background-color: white;
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}
.content_area{
    width: 35%;
    height: 100%;
    position: absolute;
}
.content_area h1{
    position: absolute;
    top: 10%;
}
.content_area p{
    position: absolute;
    top: 19%;
}
.feature_1{
    width: 70%;
    height: 28%;
    position: absolute;
    top: 25%;
}
.image_logo{
    width: 70px;
    height: 70px;
    position: absolute;
    overflow: hidden;
    top: 20%;
}
.image_logo img{
    width: 100%;
    height: 150%;
    object-fit: contain;
    object-position: center;
    transform: rotateY(-180deg);
}
.feature_1 h2{
    position: absolute;
    top: 55%;
    font-size: 18px;
    color: rgb(43, 43, 43);
}
.feature_1 p{
    font-size: 14px;
    position: absolute;
    top: 70%;
    width: 98%;
}
.feature_1:nth-child(4){
    width: 70%;
    height: 28%;
    position: absolute;
    top: 25%;
    left: 85%;
}
.feature_1:nth-child(4) .image_logo{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 35%;
}
.feature_1:nth-child(4) .image_logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.feature_1:nth-child(5){
    width: 70%;
    height: 28%;
    position: absolute;
    top: 55%;
    left: 0%;
}
.feature_1:nth-child(5) .image_logo{
    width: 45px;
    height: 45px;
    position: absolute;
    top: 30%;
}
.feature_1:nth-child(5) .image_logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.feature_1:nth-child(6){
    width: 70%;
    height: 28%;
    position: absolute;
    top: 55%;
    left: 85%;
}
.feature_1:nth-child(6) .image_logo{
    width: 60px;
    height: 60px;
    position: absolute;
    top: 30%;
}
.feature_1:nth-child(6) .image_logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.right_image_part{
    width: 35%;
    height: 100%;
    position: absolute;
    right: 3%;
}
.image_wrapper{
    width: 80%;
    height: 70%;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    border-radius: 10px;
    z-index: 5;
}
.image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image_wrapper_2{
    width: 60%;
    height: 40%;
    overflow: hidden;
    opacity: 30%;
}
.image_wrapper_2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* <================================== Section_3 Styling Here =================================> */

.section_3{
    width: 100%;
    height: 100vh;
    background-color: white;
    position: relative;
    padding: 0 50px;
}
.left_images_area{
    width: 60%;
    height: 100%;
    position: absolute;
}
.dot_image_wrapper{
    width: 30%;
    height: 30%;
    overflow: hidden;
}
.dot_image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.large_image_wrapper{
    width: 50%;
    height: 70%;
    overflow: hidden;
    position: absolute;
    top: 10%;
    left: 10%;
    border-radius: 20px;
}
.large_image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.middle_image_wrapper{
    width: 30%;
    height: 50%;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 40%;
    border-radius: 20px;
}
.middle_image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.small_image_wrapper{
    width: 18%;
    height: 26%;
    overflow: hidden;
    position: absolute;
    left: 63%;
    top: 10%;
    border-radius: 10px;
}
.small_image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.right_text_area{
    width: 40%;
    height: 100%;
    position: absolute;
    right: 3%;
}
.right_text_area h1{
    width: 60%;
    position: absolute;
    top: 15%;
}
.right_text_area p{
    width: 90%;
    position: absolute;
    top: 30%;
}
.point_1{
    width: 50%;
    height: 15%;
    position: absolute;
    top: 51%;
}

.point_1 p{
    font-size: 14px;
}
.point_1:nth-child(4){
    position: absolute;
    top: 51%;
    left: 55%;
}
.point_1:nth-child(5){
    position: absolute;
    top: 62%;
    left: 0%;
}
.point_1:nth-child(6){
    position: absolute;
    top: 62%;
    left: 55%;
}

.right_text_area a{
    display: inline-block;
    text-decoration: none;
    color: white;
    width: 150px;
    height: 50px;
    border: 2px solid rgb(32, 32, 32);
    background-color:rgb(32, 32, 32) ;
    border-radius: 50px;
    text-align: center;
    padding-top: 11px;
    font-weight: 600;
    position: absolute;
    top: 78%;
    transition: .5s ease;
}
.right_text_area a:hover{
    background-color: transparent;
    color: rgb(32, 32, 32);
}

/* <================================== Footer Styling Here =================================> */

.footer{
    width: 100%;
    height: 10vh;
    background-color: #273e35;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer p{
    color: white;
}
.footer a{
    color: white;
    text-decoration: none;
    transition: .5s ease;
}
.footer a:hover{
    color: rgb(255, 179, 0);
}