/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Volkhov:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem; /*56px*/

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --hue: 152;
  --first-color: #000;
  --first-color-alt:#414141;
  --first-color-light: hsl(var(--hue), 24%, 66%);
  --first-color-lighten: hsl(var(--hue), 24%, 92%);
  --title-color: hsl(var(--hue), 4%, 15%);
  --text-color: hsl(var(--hue), 4%, 35%);
  --text-color-light: hsl(var(--hue), 4%, 55%);
  --body-color: #000;
  --container-color: #ffffff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Red Hat Display', sans-serif;
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html{
  scroll-behavior: smooth;
}

body,
button,
input,
textarea{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body{
  margin: var(--header-height) 0 0 0;
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .4s; /*For animation dark mode*/
}

button{
  cursor: pointer;
  border: none;
  outline: none;
}

h1,h2,h3{
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul{
  list-style: none;
}

a{
  text-decoration: none;
}

img{
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/
body.dark-theme{
  --first-color-dark: hsl(var(--hue), 8%, 20%);
  --title-color: hsl(var(--hue), 4%, 95%);
  --text-color: hsl(var(--hue), 4%, 75%);
  --body-color: hsl(var(--hue), 8%, 12%);
  --container-color: hsl(var(--hue), 8%, 16%);
}

/*========== Button Dark/Light ==========*/
.change-theme{
  color: var(--title-color);
  font-size: 1.15rem;
  cursor: pointer;
}

.nav__btns{
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}

/*========== 
Color changes in some parts of 
the website, in dark theme 
==========*/

.dark-theme .steps__bg,
.dark-theme .questions{
  background-color: var(--first-color-dark);
}

.dark-theme .product__circle,
.dark-theme .footer__subscribe{
  background-color: var(--container-color);
}

.dark-theme .scroll-header{
  box-shadow: 0 1px 4px hsla(var(--hue), 4%, 4%, .3);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section{
  padding: 2.5rem 0 1rem;
}

.section__title,
.section__title-center{
  font-family: 'Volkhov', serif;
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  line-height: 140%;
}

.section__title-center{
  text-align: center;
}

.container{
  max-width: 1100px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid{
  display: grid;
}

.main{
  overflow: hidden; /*For animation*/
}

/*=============== HEADER ===============*/
.header{
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: .4s; /*For animation dark mode*/
}

/*=============== NAV ===============*/
.nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logohe{
  width: 90px;
}
.nav__logo,
.nav__toggle,
.nav__close{
  color: var(--title-color);
}

.nav__logo{
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  transition: .3s;
}

.nav__logo-icon{
  font-size: 1.15rem;
  color: var(--first-color);
}

.nav__logo:hover{
  color: var(--first-color);
}

.nav__toggle{
  display: inline-flex;
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 767px){
  .nav__menu{
    position: fixed;
    background-color: var(--container-color);
    width: 80%;
    height: 100%;
    top: 0;
    right: -100%;
    box-shadow: -2px 0 4px hsla(var(--hue), 24%, 15%, .1);
    padding: 4rem 0 0 3rem;
    border-radius: 1rem 0 0 1rem;
    transition: .3s;
    z-index: var(--z-fixed);
  }
}

.nav__close{
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  cursor: pointer;
}
.about__data{
  padding:20px;
}
.nav__list{
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  column-gap: 3rem;
}

.nav__link{
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: .3s;
}

.nav__link:hover{
  color: var(--first-color);
}

/* Show menu */
.show-menu{
  right: 0;
}

/* Change background header */
.scroll-header{
  box-shadow: 0 1px 4px hsla(var(--hue), 4%, 15%, .1);
}

/* Active link */
.active-link{
  position: relative;
  color: var(--first-color);
}

.active-link::after{
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--first-color);
}

/*=============== HOME ===============*/
.home{
  padding: 3.5rem 0 2rem;
}

.home__container{
  position: relative;
  row-gap: 2rem;
}

.home__img{
  /* width: 200px; */
  justify-self: center;
}
.home__btn{
  display: flex;
  gap: 2rem;
}
.home__title{
  font-family: 'Volkhov', serif !important;
  font-size:3rem;
  line-height: 140%;
  color: #fff;
  margin-bottom: var(--mb-1);
}

.home__description{
  margin-bottom: var(--mb-2-5);
  color: #D6D1D1;
}
.bg__black{
  background-color: #000 !important;
}
.home__social{
  position: absolute;
  bottom: 2rem;
  left: -1rem;
  display: grid;
  justify-items: center;
  row-gap: 3.5rem;
}

.home__social-follow{
  font-weight: var(--font-medium);
  font-size: var(--smaller-font-size);
  color: var(--first-color);
  position: relative;
  transform: rotate(90deg);
}

.home__social-follow::after{
  content: '';
  position: absolute;
  width: 1rem;
  height: 2px;
  background-color: var(--first-color);
  right: -45%;
  top: 50%;
}

.home__social-links{
  display: inline-flex;
  flex-direction: column;
  row-gap: .90rem;
}

.home__social-link{
  font-size: 1rem;
  
  transition: .3s;
}
.hme_brder{
  color: #ffffff;
  border-radius: 30px;
  padding: 5px;
  border: 1px solid #ffffff;
}
.home__social-link:hover{
  transform: translateX(.25rem);
}
.cb{
  background-color: #000 !important;
}
/*=============== BUTTONS ===============*/
.button{
  display: inline-block;
  background-color: var(--first-color);
  color: #FFF;
  padding: 1rem 2rem;
 
  font-weight: var(--font-medium);
  transition: .3s;
}

.button:hover{
  background-color: var(--first-color-alt);
}

.button__icon{
  transition: .3s;
}

.button:hover .button__icon{
  transform: translateX(.25rem);
}

.button--flex{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}
.button--flex:hover {
    letter-spacing: .2px;
}
.button--link{
  color: var(--first-color);
  font-weight: var(--font-medium);
}

.button--link:hover .button__icon{
  transform: translateX(.25rem);
}

/*=============== ABOUT ===============*/
.about__container{
  row-gap: 2rem;
}

.about__img{
  /* width: 280px; */
  justify-self: center;
}

.about__title{
  margin-bottom: var(--mb-1);
}

.about__description{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: var(--mb-2);
}
.abt__desc_bt{
  color: #BABABA;
  font-weight: 300;
  text-align: justify;
  margin-bottom: 10px;
}
.about__details{
  display: grid;
  row-gap: 1rem;
  margin-bottom: var(--mb-2-5);
}

.about__details-description{
  display: inline-flex;
  column-gap: .5rem;
  font-size: var(--small-font-size);
}

.about__details-icon{
  font-size: 1rem;
  color: var(--first-color);
  margin-top: .15rem;
}

/* ==========preloader============*/
.loader_bg{
  position: fixed;
  z-index: 999999;
  background: #000000;
  width: 100%;
  height: 100%;
}

.loader{
  width: 250px;
  height: 250px;
  position: absolute;
  top: calc(50vh - 75px);
  left: calc(50vw - 75px);
  right: calc(50vw - 75px);
}
/*=============== STEPS ===============*/
.tftfll{
  list-style-type: square;
  list-style-position: inside;
}
.ser__car__inner{
  color: #fff;
  font-size: 15px;
}

.steps__container{
  gap: 1.5rem;
  padding-top: 1rem;
}

.steps__title{
  color: #FFF;
}
.service-section .steps__card{
    text-align:left;
}
.steps__card{
  text-align: center;
  background-color: #1D1C1C;
  padding: 2.5rem 3rem 2rem 1.5rem;
  
}
.steps__card p{
    color:#fff;
    text-align:center;
    font-size:15px;
    margin-top:15px;
}
.steps__card-number{
  display: inline-block;
  background-color: var(--first-color-alt);
  color: #FFF;
  padding: .5rem .75rem;
  
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1-5);
  transition: .3s;
}

.steps__card-title{
  font-size: 24px;
  color: #fff;
  margin-bottom: var(--mb-0-5);
}
.section__top__head{
  text-align: center;
  color: #C0C0C0;
  margin-bottom: 20px;
  font-weight: 500;
}
.steps__card-description{
  color: #FFF;
  font-size: var(--small-font-size);
}

.steps__card:hover .steps__card-number{
  transform: translateY(-.25rem);
}

/*=============== PRODUCTS ===============*/
.product__description{
  text-align: center;
}

.product__container{
  padding: 3rem 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.product__card{
  display: grid;
  position: relative;
}

.product__img{
  position: relative;
  width: 120px;
  justify-self: center;
  margin-bottom: var(--mb-0-75);
  transition: .3s;
}

.product__title,
.product__price{
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.product__title{
  margin-bottom: .25rem;
}

.product__button{
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--first-color);
  color: #FFF;
  padding: .25rem;
  border-radius: .35rem;
  font-size: 1.15rem;
}

.product__button:hover{
  background-color: var(--first-color-alt);
}

.product__circle{
  width: 90px;
  height: 90px;
  background-color: var(--first-color-lighten);
  border-radius: 50%;
  position: absolute;
  top: 18%;
  left: 5%;
}

.product__card:hover .product__img{
  transform: translateY(-.5rem);
}
/*=============== BREADCRUMB ===============*/
.breadcrumb{
  background-image: url('../img/bg-gr.png');
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  width: 100%;
  place-items: center;
  display: grid;
  
}
.bg__grey{
  background-color: #1D1C1C;
}
.breadc__desc{
  color: #fff;
  text-align: center;
  width: 60%;
  margin: auto;
}
/*=============== GALLERY ===============*/
.gallery__container{  
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
 gap: 1rem;
}



.mainee{
  position: relative;
}
.suboo{
  position: absolute;
  bottom: 10%;
  left: 10%;
}
/*=============== TESTIMONIALS ===============*/
.testi{
  background-image: url('../img/bgg.png');
  background-size: cover;
  background-repeat: no-repeat;
}
.test__container{
  grid-template-columns: 1fr 1fr;
}
.dots{
  width: 60px;
  margin-top: 30px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sample-slider [class^=swiper-button]{
transform:rotate(90deg);
top: initial;
left: initial;
right: 10px;
margin: 0;
}
.sample-slider .swiper-button-prev{
top:0;
}
.sample-slider .swiper-button-next{
bottom:0;
}

.testi__grd{
  display: grid;
  padding: 2rem;
  gap: 10px;
  text-align: left;
  
}
.brdr{
  box-shadow: rgb(0, 0, 0) 0px 0px 0px 2px inset, rgb(0, 0, 0) 10px 10px 0px -1px, rgb(255, 255, 255) 10px 10px;
}
.ppp{
  margin-bottom: 20px;
}
.hhhh{
  font-weight: 500;
  font-size: 20px;
}
.kkiki{
  font-weight: 400;
}
/*=============== DISCOUNT ===============*/
.tfgf{
  background-image: url('../img/tbg.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.innf{
  padding: 4rem 3rem;
}
.ethop{
  color: #D9D9D9;
  width: 70%;
  text-align: center;
  margin: auto;
  font-weight: 300;
}
.hrr{
  border: 0.5px solid #9C9C9C;
}
.subss{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  justify-content: space-evenly;
}
.yhyh{
padding: 3rem 4rem;
}
.bkk{
  background-color: #000;
}
.bkk:hover{
  background-color: grey;
}
/*=============== CONTACT ===============*/
.contact__container{
  row-gap: 3.5rem;
}

.contact__data{
  display: grid;
  row-gap: 2rem;
}

.contact__subtitle{
  font-size: 23px;
  font-weight: var(--font-medium);
  color: var(--text-color);
  margin-bottom: 20px;
}
.contact__container{
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.contact__description{
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: 10px;
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.contact__icon{
  font-size: 1.25rem;
}

.contact__inputs{
  display: grid;
  row-gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

.contact__content{
  position: relative;
  height: 3rem;
  border-bottom: 1px solid var(--text-color-light);
}

.contact__input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  background: none;

  color: grey;

  
  border: none;
  outline: none;
  z-index: 1;
}

.contact__label{
  position: absolute;
  top: .75rem;
  width: 100%;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  transition: .3s;
}

.contact__area{
  height: 7rem;
}

.contact__area textarea{
  resize: none;
}

/*Input focus move up label*/
.contact__input:focus + .contact__label{
  top: -.75rem;
  left: 0;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*Input focus sticky top label*/
.contact__input:not(:placeholder-shown).contact__input:not(:focus) + .contact__label{
  top: -.75rem;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*=============== MODAL IMAGE // GALLERY ===============*/
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}
/*=============== FOOTER ===============*/
.footer__container{
  row-gap: 3rem;
}

.footer__logo{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: var(--mb-2-5) !important;
  transition: .3s;
  margin:auto;
}

.footer__logo-icon{
  font-size: 1.15rem;
  color: var(--first-color);
}

.footer__logo:hover{
  color: var(--first-color);
}
.footer__link{
  color: #fff;
}
.footer__link:hover {
  color: #888888;
  transition: 1s;
}
.footer__data .active-footer {
  color: #888888;
}
.footer__title{
  color: #ffffff;
  font-size:25px;
  margin-bottom: var(--mb-1-5);
}
.hamsaa{
  font-family: 'Volkhov', serif;
  color: #fff;
  font-size:25px;
  margin-bottom: var(--mb-1-5);
}
.footer__subscribe{
  background-color: var(--first-color-lighten);
  padding: .75rem;
  display: flex;
  justify-content: space-between;
  border-radius: .5rem;
}

.footer__input{
  width: 70%;
  padding: 0 .5rem;
  background: none;
  color: var(--text-color);
  border: none;
  outline: none;
}

.footer__button{
  padding: 1rem;
}

.footer__data{
  display: grid;
  row-gap: .75rem;
}

.footer__information{
  font-size: var(--small-font-size);
  color: #fff;
}

.footer__social{
  display: flex;
  text-align: center;
  column-gap: .95rem;
  justify-content:center;
}

.footer__social-link{
  font-size: 1rem;
  color: grey;
  transition: .3s;
}
.kihh{
  color: #fff;
}
.footer__social-link:hover{
  transform: translateY(-.25rem);
}

.footer__cards{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}
.footer__card{
  width: 35px;
}

.footer__copy{
  text-align: center;
  font-size: var(--smaller-font-size);
  color:#fff;
  border-top: 0.5px solid #C4C4C4;
  padding-top: 1.5rem;
  margin: 1rem 0 1rem;
}

.text-center{
    text-align:center !important;
}
/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  background-color: grey;
  right: 1rem;
  bottom: -30%;
  display: inline-flex;
  padding: .5rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  opacity: .8;
  transition: .4s;
}

.scrollup__icon{
  font-size: 1rem;
  color: #FFF;
}

.scrollup:hover{
  background-color: var(--first-color-alt);
  opacity: 1;
}

/* Show Scroll Up*/
.show-scroll{
  bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  background: hsl(var(--hue), 4%, 53%);
}

::-webkit-scrollbar-thumb{
  background: hsl(var(--hue), 4%, 29%);
  border-radius: .5rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px){
  .container{
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__img{
    /* width: 180px; */
  }
  .home__title{
    font-size: var(--h1-font-size);
  }

  .steps__bg{
    padding: 2rem 1rem;
  }
  .steps__card{
    padding: 1.5rem;
  }

  .product__container{
    grid-template-columns: .6fr;
    justify-content: center;
  }
}

/* For medium devices */
@media screen and (min-width: 576px){
  .steps__container{
    grid-template-columns: repeat(2, 1fr);
  }

  .product__description{
    padding: 0 4rem;
  }
  .product__container{
    grid-template-columns: repeat(2, 170px);
    justify-content: center;
    column-gap: 5rem;
  }

  .footer__subscribe{
    width: 400px;
  }
}

@media screen and (min-width: 767px){
  body{
    margin: 0;
  }

  .nav{
    height: calc(var(--header-height) + 2.2rem);
    column-gap: 3rem;
  }
  .nav__toggle,
  .nav__close{
    display: none;
  }
  .nav__list{
    flex-direction: row;
   
  }
  .nav__menu{
    margin-left: auto;
  }

  .home__container,
  .about__container,
  .questions__container,

  .footer__container{
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home{
    padding: 10rem 0 5rem;
  }
  .home__container{
    align-items: center;
  }
  .home__img{
    /* width: 280px; */
    order: 1;
  }
  .home__social{
    bottom: 10%;
  }

  .questions__container{
    align-items: flex-start;
  }

  .footer__container{
    column-gap: 3rem;
  }
  .footer__subscribe{
    width: initial;
  }
}

/* For large devices */
@media screen and (min-width: 992px){
  .container{
    margin-left: auto;
    margin-right: auto;
  }
  .nav__list{
    flex-direction: row;
    
  }
  .section{
    padding: 5rem 0 1rem;
  }
  .section__title,
  .section__title-center{
    font-size: var(--h1-font-size);
    text-transform: uppercase;
  }
.service-section .steps__container{
     grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
  .home{
    padding: 8rem 0 5rem;
  }
  .home__img{
    /* width: 350px; */
  }
  .home__description{
    padding-right: 7rem;
  }

  .about__img{
    /* width: 380px; */
  }

  .steps__container{
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .steps__bg{
    padding: 3.5rem 2.5rem;
  }
  .steps__card-title{
   font-size: 22PX;
   margin-top: 10px;
  }

  .product__description{
    padding: 0 16rem;
  }
  .product__container{
    padding: 4rem 0;
    grid-template-columns: repeat(3, 185px);
    gap: 4rem 6rem;
  }
  .product__img{
    width: 160px;
  }
  .product__circle{
    width: 110px;
    height: 110px;
  }
  .product__title,
  .product__price{
    font-size: var(--normal-font-size);
  }

  .questions__container{
    padding: 1rem 0 4rem;
  }
  .questions__title{
    text-align: initial;
  }
  .questions__group{
    row-gap: 2rem;
  }
  .questions__header{
    padding: 1rem;
  }
  .questions__description{
    padding: 0 3.5rem 2.25rem 2.75rem;
  }

  .footer__logo{
    font-size: var(--h3-font-size);
  }
  .footer__container{
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .footer__copy{
    margin: 7rem 0 2rem;
  }
}

@media screen and (min-width: 1200px){
  .home__social{
    left: -5rem;
    row-gap: 4.5rem;
  }
  .home__social-follow{
    font-size: var(--small-font-size);
  }
  .home__social-follow::after{
    width: 1.5rem;
    right: -60%;
  }
  .home__social-link{
    font-size: 1.15rem;
  }

  .about__container{
    column-gap: 7rem;
  }

  .scrollup{
    right: 3rem;
  }
}
.footer-link{
  color:#fff;
  text-decoration: none;
}
.footer-link:hover{
  text-decoration: underline;
}
/* ---- whatsapp pop icon & 2 Locations ------- */
.whatsapp-pop-button{
  position: fixed;
    right: 40px;
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 25px;
    color: #ffffff;
    background-color: #48c857;
    transition: 0.3s;
}
.whatsapp-pop-button:hover{
  box-shadow: 0px 0px 9px #0c8b1b;
}
.whatsapp-pop-button.scrolled-down{
  bottom: 100px !important;
}
.map-container{
  display: flex;
  justify-content: space-between;
  gap: 55px;
}
@media screen and (max-width: 576px){
  .map-container{
    flex-direction: column;
  }
}
@media screen and (max-width: 1200px){
  .whatsapp-pop-button{
    right: 8px !important;
  }
}
.desknew-style{
    position: absolute;
    width: 325px;
    background-color: #fff;
    height: 175px;
    left: 0px;
    border-bottom-right-radius: 70%;
    justify-content: center;
}
.desknew-style .logohe {
    width: 130px;
    margin-left: -50px;
}
.nav__item{
    position:relative;
}
.mob-only{
        visibility: hidden;
    }
@media screen and (max-width: 849px){
    .desknew-style{
        width: 250px;
        height: 135px;
        border-bottom-right-radius: 60%;
    }
    .desknew-style .logohe {
        width: 95px;
    }
}
@media screen and (max-width: 767px){
    .mob-only{
        visibility: visible;
    }
    .desknew-style{
        visibility: hidden;
    }
    .nav{
        height: 80px;
    }
}