@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&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');

body{
    overflow-x: hidden; 
}

html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1490px; 
}

.row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

a{
    text-decoration: none;
}

.col100{
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 15px;
}

.col50{
    max-width: 50%;
    flex: 0 0 50%;
    padding: 0 15px;
}

.col25{
    max-width: 25%;
    flex: 0 0 25%;
    padding: 0 15px;
}

.col40{
    max-width: 40%;
    flex: 0 0 40%;
    padding: 0 15px;
}

.col60{
    max-width: 60%;
    flex: 0 0 60%;
    padding: 0 15px;
}

.col20{
    max-width: 20%;
    flex: 0 0 20%;
    padding: 0 15px;
}

.col30{
    max-width: 30%;
    flex: 0 0 30%;
    padding: 0 15px;
}

img{
    max-width: 100%;
    height: auto;
    /* display: block; */
}

/* ----------------------------------- */

/* Go-to Top icon */

.box-top{
    width: 50px;
    height: 50px;
    background-color: rgba(81, 163, 23, 0.275);
    border-radius: 15px;
    border: 2px solid rgba(49, 0, 226, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}

.box-top a{
    display: inline-block;
    text-decoration: none;
}

.up-icon:hover{
    color: yellow;
}

.up-icon{
    font-size: 30px;
    color: blue;
    transition: all 0.4s ease-in-out;
}

/* =================================================================================== */

.sub-header{
    background-color: #0D0D0D;
    text-align: center;
    padding: 10px 0;
}

.sub-header-para{
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

/* =================================================================================== */

/* Navbar */

.main-header{
    width: 100%;
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.main-nav .container{
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1750px;
}

.main-nav{
    background: transparent;
    padding: 10px 0;
}

.nav-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 10px 0; */
}

.nav-logo a {
    display: block;
    width: 312px;
}

.nav-links{
    margin: 0;
    padding: 0;
}

.nav-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 55px;
    list-style-type: none;
}

.nav-links a{
    display: inline-block;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    position: relative;
}

.nav-links li a.active::after{
    content: "\25CF";
    position: absolute;
    color: #FFFFFF;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 16px;
}

.nav-links li a.dot-hov:hover::after{
    content: "\25CF";
    position: absolute;
    color: #000000;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 16px;
}

.nav-links li a.dot-hov::after {
  transition: all 0.5s ease-in-out;
}

.nav-links li a:hover{
    color: #000000;
}

.nav-toggle{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 78px;
}

.nav-icons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.nav-icons a{
    display: inline-block;
    color: #FFFFFF;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: all 0.5s ease-in-out;
}

.nav-icons a:hover{
    color: #000000;
}

.nav-icons a .cart{
    color: #FFFFFF;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: all 0.5s ease-in-out;
}

.nav-icons .cart:hover{
    color: #000000;
}

.nav-divider{
    width: 1px;
    height: 44px;
    background-color: #BDBDBD;
}

/* =================================================================================== */

/* ********* Toggle-Bar ********** */

.toggle-bar{
    display: none;
    color: #000000;
    font-size: 16px;
    position: absolute;
    right: 0%;
    top: 40%;
}

/* =================================================================================== */

/* Banner */

.banner{
    background: url(../images/Mask\ group-living-room.png)no-repeat center center;
    background-size: 100% 100%;
    min-height: 870px;
    position: relative;
}

.banner-row{
    text-align: center;
    position: absolute; 
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.banner-row .col100 h1{
    font-family: "Amiri", serif; 
    font-weight: 700;
    font-style: normal;
    font-size: 68px;
    margin-bottom: 5px;
    color: #0D0D0D;
}

.banner-row .col100 p{
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 1.57;
    margin-bottom: 20px;
    color: #5E5E5E;
}

.banner-row .col100 a{
   display: inline-block;
}

.banner-row .col100 .btn{
    padding: 12px 40px;
    background-color: #95A986;
    color: #0D0D0D;
    font-size: 18px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    border-radius: 25px;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
}

.banner-row .col100 .btn:hover{
    background-color: #7e9d66;
    color: #FFFFFF;
}

/* =================================================================================== */

/* About Us */

.about-us{
    background-color: #FFFFFF;
    padding: 100px 0 50px 0;
}

.cmn-row{
   justify-content: space-between;
   align-items: center;
}

.sub-heading{
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    color: #95A986;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.main-heading{
    font-size: 45px;
    font-weight: 400;
    font-family: "Amiri", serif;
    font-style: normal;
    color: #0D0D0D;
    text-transform: uppercase;
    line-height: 1.3;
}

.para{
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 1.57;
    color: #5E5E5E;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-img img{
    max-width: 100%;
    height: auto;
}

.about-img{
    display: flex;            
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding-left: 120px;
}

.heading-line img{
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* =================================================================================== */

/* Advantages */

.advantages{
    background-color: #FFFFFF;
    padding: 50px 0;
    text-align: center;
}

.advantages .container .row{
    flex-direction: row;
}

.advantages-row{
    justify-content: space-between;
    align-items: center;
}

.adv-heading{
    margin-bottom: 20px;
}

h3{
    font-size: 24px;
    font-family: "Amiri", serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    color: #2C2C2C;
}

.adv-box img{
    max-width: 100%;
    height: auto;
    margin: 20px;
    transition: all 0.5s ease-in-out;
}

.adv-box img:hover {
    filter: brightness(100%) saturate(250%);
}

/* =================================================================================== */

/* Our Mission */

.mission{
    background-color: #F6F6F6;
    padding: 50px 0 50px 0;
}

.mission-img{
    position: relative;
    padding: 60px 0;
}

.mission_img2{
    position: absolute;
    top: 525px;
    left: 560px;
    transform: translate(-50%, -50%);
}

.mission-img img{
    max-width: 100%;
    height: auto;
}

/* =================================================================================== */

/* Footer */

footer{
    background-color: #FFFFFF;
}

.footer-upper{
    padding: 50px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);  
}

.foot-row-up{
    justify-content: space-between;
}

.footer-heading{
    font-size: 24px;
    font-family: "Amiri", serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    text-transform: uppercase;
    color: #0D0D0D;
    margin: 20px 0;

    position: relative; 
    display: inline-block; 
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 60px;
    height: 2px;
    background-color: black;
    transition: all 0.5s ease-in-out;
}

.footer-heading:hover::after {
    width: 100%;
    background-color: #8bcd55;
}

.footer-para{
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5625;
    color: #5E5E5E;
    text-transform: capitalize;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 120px;
}

.f-links ul li{
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2.5;
    list-style-type: none;
}

.f-links ul li a{
    color: #5E5E5E;
    transition: all 0.5s ease-in-out;
}

.f-links ul li a:hover{
    color: #8bcd55;
}

.f-social a{
    display: inline-block;
    color: #0D0D0D;
    font-size: 20px;
    transition: all 0.5s ease-in-out;
}

.f-social a:hover{
    color: #170996;
    transform: scale(1.2);
}

.f-social ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.f-social ul li{
    list-style-type: none;
}

.subscribe-form {
  display: flex;
  flex-direction: column;  
  gap: 15px;        
  width: 439px;
  height: 54px;
}

.subscribe-form input[type="email"] {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #868686;
  border-radius: 30px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-transform: capitalize;
  outline: none;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
}

.subscribe-form input[type="email"]:hover::placeholder {
  color: #0D0D0D;
  font-weight: 400;
}

.subscribe-form input[type="submit"]{
  align-self: flex-start;
  padding: 14px 20px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #95A986;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  color: #0D0D0D;
  width: 184px;
  height: 54px;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
}

.subscribe-form input[type="submit"]:hover {
  background-color: #7e9d66;
  color: #FFFFFF;
}

.footer-bottom{
    background-color: #FFFFFF;
    padding: 30px 0;
    text-align: center;
}

.last-text{
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2.2;
    color: #5E5E5E;
}

.last-text a{
    color: #5E5E5E;
    transition: all 0.5s ease-in-out;
}

.last-text a:hover{
    color: #2C2C2C;
    text-decoration: underline #8bcd55;
}

/* =================================================================================== */
/* =================================================================================== */









