* {
  margin: 0;
  padding: 0;
}

@font-face {
    font-family: 'Advercase Demo';
    src: url('../font/AdvercaseDemo-Regular.woff2') format('woff2'),
        url('../font/AdvercaseDemo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --light: #fff;
  --dark: #000000;
  --main: #faeae2;
  --main: rgba(216, 162, 94, 0.3);
  --secondary: #141414;
  --bg: #a76a6a;
  --bg1: #f5ebeb;
  --bg1: #f4f4f4;
  --font1: 'Advercase Demo';
}

body {
  scroll-behavior: smooth;
  background-color: #fff;
  letter-spacing:2px;
  font-family:var(--font1);
}

section {
  padding: 120px 0;
  overflow: hidden;
}

a,
a:hover,
a:focus {
  transition-duration: 500ms;
  text-decoration: none;
  color: var(--dark);
  outline: 0 solid transparent;
}

a:hover {
  text-decoration: none;
}

::selection {
  color: rgb(189, 133, 117);
  background-color: #000000;
}

ul,
ol,
p {
  padding: 0;
  margin: 0px;
  list-style: none;
  font-size:14px;
}

.header-part {
  margin-bottom: 1.5rem;ab
}

.title-sec {
    font-size: 35px;
    font-weight: 400;
    font-family: var(--font1);
    text-transform: capitalize;
    line-height: 48px;
    letter-spacing: 3px;
    word-spacing: 0.3rem;
    color: var(--bg);
    padding-bottom: 0.581rem;
}

.sub-title {
      font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    text-transform: capitalize;
    font-family: var(--font1),sans-serif;
    letter-spacing: 2px;
}

.bg-next {
  background-color: var(--bg1);
}

/**-------top-header---------**/
.top-header {
  background-color: var(--secondary);
  padding: 5px 0;
}

.top-number {
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: var(--light);
}

.top-number a {
     margin-left: 10px;
    font-size: 13px;
    letter-spacing: 2px;
}
.top-number i {
  font-size: 18px;
}

.top-number a span {
  text-transform: capitalize;
}

.top-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.top-social-links a {
  margin: 0 8px;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.top-social-links a:hover {
  transform: scale(1.1);
}

.top-social-icon {
  display: flex;
  justify-content: space-around;

}

.top-email {
      font-size: 12px;
    display: flex;
    justify-content: flex-end;
    text-align: center;
    align-items: center;
    font-family: var(--font1);
    letter-spacing: 1.5px;
    color: var(--light);
}

.top-email a {
  display: inline-block;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-family:var(--font1);
  text-transform:lowercase;
}

.top-email i {
  padding-right: 10px;
  font-size: 18px;
  color: var(--light);
}

/***-------header-bottom------*****/

/*--------header---------*/
header {
  background-color: var(--light);
  box-sizing: border-box;
  padding: 0.4rem 0;
  position: relative;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

.comp-logo img {
  width: 115px;
  object-fit: contain;
  margin-top: -20px;
  margin-bottom: -7px;
}

.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-menu li {
  display: inline-block;
  position: relative;
}

.nav-menu li a {
  font-family: var(--font1);
  text-transform: capitalize;
  display: block;
  padding: 30px 10px;
  font-weight: 400;
  color: var(--bg);
}

.nav-menu li.drop-menu {
  position: relative;
  display: block;
  padding-right: 10px;
}

.drop-content {
  position: absolute;
  top: 150px;
  width: 260px;
  height: 400px;
  display: none;
  background-color: var(--light);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  z-index: 999;
  overflow: auto;
  border-radius: 0px 0px 8px 8px;
}

.drop-menu:hover .drop-content {
  display: block;
  top: 100%;
}

.drop-content li {
  display: block;
  transition: all 1.8s ease;
  box-shadow: 0px 0px 1px var(--bg);
}

.drop-content li a {
      color: var(--dark);
    font-family: var(--font1);
    display: block;
    width: 100%;
    padding: 12px 10px;
    transition: all 0.4s ease;
    font-size: 12px;
}

.drop-content li a:hover {
  color: var(--bg);
}

.drop-content::-webkit-scrollbar {
  width: 7px;
  color: var(--bg1);
  background-color: var(--dark);
}

.drop-content::-webkit-scrollbar-thumb {
  color: var(--bg1);
  background-color: var(--bg1);
  border-radius: 5px;
}

.click-btn {
  position: absolute;
  right: 0;
  top: 35%;
  cursor: pointer;
}


/*----sticky-header----------*/

/* sticky-header */
#navbar-sec.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  animation: slide-down 1s ease-in-out;
  box-shadow: 0px 0px 1px var(--dark);
}

#navbar-sec.sticky .nav-sec>li>a {
  color: var(--dark);
}

@keyframes slide-down {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

#navbar-sec.sticky .nav-sec>li>a:hover {
  color: var(--bg1);
}
#navbar-sec.sticky .comp-logo img{
  margin: 0;
}
/* --------- */
.header-btn {
  display: flex;
  justify-content: flex-end;
  text-align: flex-end;
}
.enq-number{
    color:var(--main);
}
.btn-sec {
  text-transform: capitalize;
  font-family: var(--font1);
  background-color: var(--secondary);
  padding: 10px 20px;
  border-radius: 4px;
  color: var(--light);
  position: relative;
  transition: all 0.1s ease;

}

.btn-sec:hover {
  background-color: transparent;
  color: var(--bg);
  border: 1px solid var(--bg);
}

.btn-sec:after {
  position: absolute;
  content: '';
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  background-color: var(--secondary);
  transition: all 1s ease;
  z-index: -1;
}

.btn-sec:hover:after {
  transform-origin: left;
  transform: scaleX(1);
  border-radius: 4px;
  box-shadow: 0 0 2px 2px var(--main);

}

/**banner***/
.banner {
  position: relative;
}

.ban-img img {
  z-index: 10;
}

.forward-btn,
.back-btn {
  position: absolute;
  top: 40%;
  width: 2rem;
  height: 2rem;
  padding: 1rem;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  background-color: var(--light);
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  color: var(--dark);
  font-weight: 600;
  font-size: 18px;
}

.forward-btn {
  right: 12px;
  bottom: 0;
  background-position: center;
  z-index: 1;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
}

.back-btn {
  left: 18px;
  bottom: 0;
  background-position: center;
  z-index: 1;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
}

.forward-btn:hover,
.back-btn:hover {
  background-color: var(--light);
  transform: scale(1.1);
  color: var(--dark);
  box-shadow: 0px 0px 4px var(--dark);
}

.ban-slide img {
  position: relative;
  z-index: -1;
  height: auto;
}

.banner-inner {
  position: absolute;
  top: 30%;
  left: 8%;
  text-align: start;
  overflow: hidden;
  transition: all 1s ease;
  transform: rotateY(-150deg) translateY(110%);
}

.swiper-slide-active .banner-inner {
  transform: rotateY(0deg) translateY(0px);
}

.inner-title {
  text-transform: capitalize;
  font-family: var(--font1);
  color: var(--dark);
  line-height: 42px;
  font-size: 24px;
}

.p-heading {
  margin: 5px auto 10px;
  font-size: 48px;
  font-weight: 400;
  text-transform: unset;
  font-family: var(--font1);
  text-transform: capitalize;
}

.learn-more-btn {
  display: inline-block;
  padding: 12px 34px;
  color: #ffffff;
  background-color: var(--bg);
  border-color: var(--main);
}

/***-----------swiper-------**/
.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  text-align: center;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  
}

.swiper-slide {
  position: relative;
}

.swiper-page {
  margin: 20px 0 0 0;
  padding-top: 10px;

}

/*********-------th-seciton-------********/
.th-sec {
  background-color: rgba(249, 249, 249, 0.1);
}

.th-item {
  text-align: center;
  margin: 1rem;

}

.th-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg1);
  border: 10px solid var(--light);
  margin-bottom: 2rem;
  overflow: hidden;

}

.th-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.th-img img:hover {
  transform: scale(1.1);
}

.th-name {
     text-align: center;
    font-family: var(--font1);
    font-weight: 400;
    color: var(--bg);
    font-size: 14px;
}

/*********about-us********/
.about-text {
  width: 100%;
  height: 100%;
  text-align: left;
  font-size: 16px;
  font-family: var(--font1);
  height: 100%
}

.about-box {
  height: 100%;
}

.about-box ul,
.about-box li{
    list-style:disc;
    font-family:var(--font1);
  padding-bottom:1rem;
}

.about-heading {
  font-size: 34px;
  margin-bottom: 35px;
  font-family: var(--font1);
  text-transform: capitalize;
  font-weight: 400;
}

.about-box p,
.about-content1 p {
     font-family: var(--font1),sans-serif;
    margin-bottom: 25px;
    text-align: left;
    letter-spacing: 2px;
    font-size: 14px;
    color: var(--dark);
    font-weight: normal;
    line-height: 2;
}

.about-content2 {
  font-family: var(--font1);
  margin-bottom: 50px;
  text-align: left;
  letter-spacing: 1.5px;
  font-size: 14px;
  color: var(--dark);
}

.learn-more {
  padding: 14px 28px;
  background-color: var(--bg);
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
}

/***about-image-section*****/
.about-box {
  width: 100%;
}

.about-img {
     position: relative;
    z-index: 1;
    float: left;
    width: 50%;
    margin-bottom: 9rem;
    padding-right: 4rem;
}
.abt-img{
    margin-bottom:1rem;
    width:40%;
}


.about-img img{
    border-radius:1rem;

}

.about-bg {
  position: absolute;
  top: -55px;
  left: 0px;
  z-index: 10;
  animation: move 8s infinite;
  display: block;

}

@keyframes move {
  0% {
    transform: scale(0.9);
  }

  25% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }

  75% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.9);
  }
}

.about-bg:hover {
  animation: none;
}

/****product-collection*****/
.product-collection {
  margin-top: 20px;
  background-color: var(--bg1);
}

.pc-header {
  margin-bottom: 100px;
}

.pc-title {
  font-size: 20px;
  text-transform: capitalize;
  font-family: var(--font1);
  color: #888888;
}

.pc-heading {
  text-transform: capitalize;
  font-family: var(--font1);
}

.pc-img {
  position: relative;
}

.pc-img:after {
  position: absolute;
  content: '';
  top: -60px;
  left: 10%;
  background-color: var(--bg1);
  height: 100%;
  width: 80%;
  z-index: -1;
  border-radius: 1rem;
}

.pc-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--light);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  position: relative;
  border-radius: 2rem;
}

.pc-img img {
  position: relative;
  transition: all 0.5s ease-in-out;
  width: 100%;
  border-radius: 1rem;
}

.pc-box:hover .pc-img img {
  transform: rotate(4deg);
}

.pc-name {
      padding: 0.5rem;
    font-family: var(--font1);
    font-weight: 500;
    color: var(--bg);
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.pc-name:hover {
  color: var(--bg);
}



/****testimonial*****/
.testimonial {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
  background-color: var(--light);
}


.t-subtitle {
  color: var(--bg2);
}

.testi-box {
  text-align: center;
  display: flex;
  gap: 2rem;
  flex-direction: column;
}

.testi-inner-box {
  display: flex;
}

.testi-box p {
  color: var(--light);
  font-family: var(--font1);
}

.testi-slider {
  margin-top: 50px;
}

.testi-element {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 10px 0;
  color: var(--dark);
}

.t-content {
  color: var(--light);
  font-family: var(--font1);
  padding: 50px 8%;
  position: relative;
  z-index: 10;
  background-color: var(--secondary);
  border-radius: 10px;
  text-align: center;
  margin: auto;
}

.t-content:after {
  position: absolute;
  content: '\f10d';
  font-family: fontAwesome;
  font-size: 40px;
  left: 20px;
  top: 0px;
  color: var(--bg);
  z-index: -1;
  opacity: 0.6;
}

/* .t-content::before {
    position: absolute;
    content: '\f10e';
    font-family: fontAwesome;
    font-size: 40px;
    right: 1%;
    bottom: 0px;
    color: var(--dark);
    z-index: -1;
    opacity: 0.6;
} */


.t-img img {
  margin-right: 20px;
}


.b-slider .slick-dots {
  text-align: center;
  padding-top: 20px;
}

.b-slider .slick-dots button {
  width: 15px;
  height: 15px;
  background-color: var(--dark);
  border-radius: 10%;
  text-indent: -9999px;
  padding: 0;
  border: none;
}

.slick-dots .slick-active button {
  background-color: var(--bg2);
}

.slick-dots {
  text-align: center;
  padding-top: 20px;
}

.slick-dots>li {
  display: inline-block;
  margin: 7px;
}

.slick-dots button {
  width: 12px;
  height: 12px;
  background-color: var(--dark);
  border-radius: 50%;
  text-indent: -9999px;
  padding: 0;
  border: none;
}

.slick-dots .slick-active button {
  background-color: var(--bg1);
}


.t-next.slick-arrow,
.t-back.slick-arrow {
     position: absolute;
    content: '';
    z-index: 1;
    font-size: 22px;
    font-weight: 700;
    border-radius: 100%;
    text-align: center;
    padding: 12px;
    cursor: pointer;
    color: var(--light);
    background-color: #000;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    bottom: 0px;
}

.t-next.slick-arrow:hover,
.t-back.slick-arrow:hover {
  color: var(--bg);
}

.t-next.slick-arrow {
  right: 40%;
}

.t-back.slick-arrow {
  left: 50%;
}

/****testimonial*****
.testi-slider .slick-dots button {
    width: 8px;
    height: 8px;
    background-color: var(--dark);
    border-radius: 10%;
    text-indent: -9999px;
    padding: 0;
    border: none;
    border-radius: 5px;
}

.testi-slider .slick-dots {
    text-align: center;
    padding-top: 20px;
}

.testi-slider ul.slick-dots>li {
    display: inline-block;
    margin: 8px;
    
}

.testi-slider ul.slick-dots .slick-active button {
    background-color: var(--bg2);
    width: 20px;
}


/****------f-section--------*****/
.feature-sec {
  background-color: var(--bg1);
}

.feature-img img {
  border-radius: 10px;
}

.feature-right-img {
  margin-bottom: 1rem;
}

.f-box {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 30px;

}

.f-contain {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  padding-left: 60%;
  height: 100%;
}

.f-c1 {
  text-transform: capitalize;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-style: italic;
  color: gray;

}

.f-c2 {
     text-transform: capitalize;
    font-size: 26px;
    font-family: var(--font1);
    font-style: italic;
    margin-bottom: 2rem;
    font-weight:800;
}

.f-btn1 {
  text-transform: uppercase;
  background-color: var(--bg);
  display: inline-block;
  color: #fff;
  padding: 1rem;
}

.f-btn1:hover {
  color: var(--dark);
}

.f-btn2 {
      text-transform: capitalize;
    background-color: var(--dark);
    display: inline-block;
    color: var(--bg);
    padding: 1rem;
    font-family: var(--font1);
}

.f-btn2:hover {
  color: var(--light);
}

/****f-services*****/
.f-services {
  padding: 30px 0;
  background-color: var(--main);
}

.f-service-box {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.f-icon i {
  background-color: var(--bg);
  padding: 12px;
  border-radius: 50%;
  color: var(--light);
  outline: 3px solid var(--bg);
  border: 3px solid var(--light);
}

.f-s1 {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Robbins", sans-serif;
  margin: 10px 0 5px 0;
  font-weight: 600;
}



/*********products*********/
.our-products {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--main);
}

.product-header {
  margin-bottom: 50px;
}

.product-slider {
  margin: 0 -20px;
}

.product-box {
  border-radius: 5px;
  background-color: #fafafaf3;
  text-align: center;
  position: relative;
  transition: all 0.5s ease-in;
  margin: 20px;
  box-shadow: 0 0 1px var(--bg1);
  overflow: hidden;
  padding: 1rem;
  border-radius: 10px;

}
.product-box .btn-sec{
    margin-top: 1rem;
    display: block;
}

.product-img {
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.product-img img {
  transition: all 0.5s ease;
  height: auto;
  width: 100%;
  border-radius: 10px;
}

.product-img img:hover {
  transform: scale(1.1);
  background-color: #dfd8d846;
  border-radius: 5px;
}

.p-name {
     background-color: rgba(0,0,0,0.5);
    padding: 0.5rem 0.2rem;
    font-size: 0.8rem;
    position: absolute;
    z-index: 1;
    color: var( --bs-light);
    font-family: var(--font1);
    margin-top: 1rem;
    top: 0rem;
    border-radius: 1rem 1rem 0 0;
    right: 1rem;
    left: 1rem;
}

.p-name:hover {
  color: var(--bg);
}

.product-slider {
  position: static;
}

.product-slider .p-back.slick-arrow,
.product-slider .p-next.slick-arrow {
  position: absolute;
  top: 50%;
  background-color: var(--secondary);
  padding: 10px;
  color: var(--light);
  z-index: 9;
  font-size: 16px;
  cursor: pointer;
}

.product-slider .p-back.slick-arrow {
  left: 8px;
}

.product-slider .p-next.slick-arrow {
  right: 8px
}


/***clients*****/
.our-client {
  background-color: var(--main);
  padding: 50px 0;
}

.clients {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1rem;
}

.client-slider {
  border-radius: 1rem;
}

.c1 {
  margin: 1rem;
}

.c1 img {
  opacity: 1;
  transition: all 0.8s ease;
  width: 100%;
}

.c1 img:hover {
  transform: rotateY(360deg);
  opacity: 1;
}

/***why-us****/
.why-us {
  background-color: var(--light);
  position: relative;
  z-index: 9;
  padding-bottom: 140px;
}

.why-dark {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

.why-box {
  display: flex;
  justify-content: center;
  padding: 20px 10px 30px;
  gap: 1rem;
}

.why-content .w-heading {
      font-size: 20px;
    font-family: var(--font1);
    color: var(--bg);
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.why-content p {
  color: var(--dark);
  font-family: var(--font2), sans-serif;
}

.why-right-border {
  border-right: 1px solid var(--dark);
}

.why-left-box {
  padding: 10px;
  padding-top: 80px;
}

.why-border {
  border-bottom: 1px solid var(--dark);
}

.why-content .content-sec {
  margin: 40px auto !important;
  font-family: var(--font1), sans-serif;
  font-size:14px;
}

/***contact-us*****/
.contact-us {
  position: relative;
  background-color: var(--bg1);
}

.contact-heading {
  font-size: 35px;
  font-weight: 700;
  font-family: var(--font1);
  text-transform: capitalize;
  color: var(--bg1);
  margin-bottom: 0 !important;
  margin: 10px auto;
}


.contact-heading {
  color: var(--dark);
  font-size: 45px;
  font-weight: 600;
  font-family: var(--font1);
  text-transform: capitalize;
  margin-bottom: 10px !important;
  display: inline-block;
  position: relative;
}

.contact-title {
  font-size: 20px;
  font-family: var(--font1);
  margin: 0;
  text-transform: capitalize;

}

.contact-content {
  font-size: 16px;
  font-family: var(--font1);
  color: #000;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
  border-radius: 5px;
  z-index: 1;
  margin-bottom: 20px;
  font-style: italic;
}

.c-icon {
  font-size: 16px;
  margin: 10px 20px 0 0;
}

.c-icon a {
  color: var(--light);
  background-color: var(--secondary);
  padding: 5px 8px;
  border-radius: 2px;

}

.contact-box a {
  text-decoration: none;
}

.contact-number {
  margin: 0;
  color: var(--dark)
}

.contact-number a,
.contact-email a {
  color: var(--dark);
}

.address-heading {
  margin: 0;
  font-size: 22px;
  color: var(--main);

}

.number-heading,
.email-heading {
  margin: 0;
}

.social-content-heading {
  font-size: 22px;
  font-family: var(--font1);
  margin: 0;
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  background-color: var(--bg1);
  color: #fff;
  padding: 1px 10px;
  margin: 15px auto;

}

.social-box {
  height: 16px !important;
  width: 32px !important;
  background-color: var(--bg1);
  border: 1px solid;
}

.s-icon img {
  width: 46px;
  padding: 10px;
}

/***form****/
.contact-form {
  box-shadow: 0 0 5px var(--bg-gray);
  z-index: 1;
  background-color: var(--dark);
  padding: 28px;
  border-radius: 10px;
  margin-top: 20px;
  position: relative;

}

.contact-form .input-text {
      display: block;
    outline: none;
    border: none;
    box-shadow: 0 0 1px gray;
    width: 100%;
    padding: 0px 28px;
    font-size: 15px;
    font-weight: 300;
    color: var(--dark);
    height: 50px;
    border-radius: 2px;
    margin: 0 0 10px 0;
    font-family: var(--font1);
}

.contact-form textarea.input-text {
  height: 190px;
  padding-top: 30px;
  padding-bottom: 10px;

}

.contact-btn {
  border-radius: 6px;
  background-color: var(--light);
  color: #000;
  padding: 12px 25px;
  outline: none;
  border: none;
  margin: 5px auto;
  transition: all 0.5s ease;
  font-family:sans-serif;

}

.contact-btn:hover {
  background-color: var(--main);
  color: var(--light);
  border-radius: 5px;

}

.contact-box {
  margin: 20px auto;
  font-style: italic;
  padding: 1rem;
  background-color: var(--light);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.social-media-list {
  position: relative;
  font-size: 22px;
  text-align: center;
  width: 100%;
  margin: 20px auto;
  padding: 0;
  display: flex;
}

.social-media-list li a {
  color: var(--light);
}

.social-media-list li {
  position: relative;
  display: inline-block;
  height: 40px;
  width: 40px;
  margin: 20px 10px 0 0;
  line-height: 40px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--secondary);
  cursor: pointer;
  transition: all .2s ease-in-out;
  z-index:99;
}

.social-media-list li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px var(--secondary);
  transition: all .2s ease-in-out;
  z-index:-1;
}

.social-media-list li:hover {
  background-color: #fff;
}

.social-media-list li:hover:after {
  opacity: 1;
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}

.social-media-list li:hover a {
  color: #000;
}

/**footer**/
footer {
  background-color: var(--main);
  padding: 80px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.about-footer {
  background-color: var(--secondary);
  padding: 1rem;
  position: relative;
  z-index: 9;
}

.about-footer::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 98%;
  z-index: 1;
  width: 100%;
  height: 200%;
  background-color: var(--secondary);
}

.footer-logo img {
  width: 150px;
  margin-bottom: 10px;
}

.footer-content {
     font-family: var(--font1);
    font-size: 13px;
    color: var(--light);
    margin-top: 2rem;
    line-height: 24px;
    font-weight: 100;
}

.footer-heading {
     font-family: var(--font1);
    text-transform: capitalize;
    letter-spacing: 2px;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 1rem;
}

.footer-sec li {
  margin-top: 10px;
}

.footer-sec li a {
     margin-top: 10px;
    font-family: var(--font1),sans-serif;
    color: var(--dark);
    font-size: 14px;
    transition: all 0.5s ease;
    font-weight: 200;
}

a.footer-item {
  text-transform: capitalize;
}

.footer-sec li a:hover {
  color: #000;
}

.footer-sec li span {
  margin-right: 10px;
  color: var(--bg);
}

/***copyright-sec****/
.copyright-sec {
  padding: 10px 0;
  background-color: var(--secondary);
  color: var(--light);
  text-align: center;
  font-weight: 200;
  font-family: serif;
  letter-spacing:1.5px;
}

.copyright-sec a {
  color: var(--light);
}


/***scroll-to-top****/
#scroll-top {
  display: inline-block;
  background-color: var(--dark);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  visibility: hidden;
  z-index: 1000;
}

#scroll-top::after {
  content: "\f062";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
  line-height: 40px;
  color: var(--light);
}

#scroll-top:hover {
  cursor: pointer;
  background-color: var(--bg);
  box-shadow: 0px 0px 2px var(--bg1);
  color: var(--dark);
}

#scroll-top:active {
  background-color: var(--bg);
  color: var(--dark);
}

#scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.fixed-wtsp {
  position: fixed;
  bottom: 20px;
  left: 0px;
  text-align: start;
  z-index: 999;
    transition: all 2s ease-in-out;
    transform: translateX(-500px);
}

#slide.active{
    transform: translateX(0px);
    display: block;
}
  .fixed-wtsp span{
    display: none;
}

.fixed-wtsp a.phone {
  background-color: #2067b5;
  padding: 8px 20px;
  border-radius: 0px 0px 20px 0px;
  color: #fff;
  font-size: 15px;
  transition: 0.2s;
  margin: 1rem 0;
  display: inline-block;
}

.fixed-wtsp a {
  background-color: #075e54;
  padding: 8px 20px;
  border-radius: 0px 0px 20px 0px;
  color: #fff;
  font-size: 15px;
  transition: 0.2s;
  display: block;
}

/******inner-page*****/


/***innner-page***/
.breadcrump-sec {
  background: url('../image/img/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding: 100px 0;
}

.about-us-page {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  margin: 4px auto;
}

.b-title {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--dark);
  font-family: var(--font1), "Poppins", sans-serif;
  letter-spacing: 2px;

}

.b-links {
  display: inline-flex;
  background-color: var(--bg);
  padding: 10px 20px;
  color: #fff;
  border-radius: 10px;
  font-family: var(--font1);
  font-weight: 800;
}

.b-links a {
  font-size: 18px;
  letter-spacing: 2px;
  padding: 0 5px;
  text-transform: capitalize;
  font-weight: 500;
  text-decoration: none;
  color: var(--light);
}

h1.b-item.active {
  color: var(--dark);
  text-transform: capitalize;
  font-size:20px;
}

span.fa-solid {
  color: var(--light);
  padding: 0 2px;
  font-size: 20px;

}

/****marketing-butoon***/


/****marketing-butoon***/
.market-place {
  position: relative;
  background-color: var(--bg1);
}

a.market-btn {
  display: block;
}

.market-title {
  color: var(--secondary);
}

.marketing-title {
  font-size: 32px;
  text-transform: capitalize;
  font-family: var(--font1);
  font-weight: 600;
  margin: 20px auto;
  line-height: 1.1;
}

a.market-btn {
  padding: 18px 30px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--light);
  text-transform: capitalize;
  font-family: var(--font1);
  font-weight: 400;
  line-height: 1.2;
  font-size:14px;
  margin-top: 40px;
  text-align: center;
  width: 100%;
  flex-wrap: wrap;
  display: block;
}

/* --------------------------- */

@media (max-width:992px) {
  section {
    padding: 60px 0;
  }

  .title-sec {
    font-size: 25px;
  }

  .sub-title {
    font-size: 14px;
  }

  .top-header {
    display: none;
  }

  /* ------------------- */
  .comp-logo img{
    width: 100px;
    margin: 0;
  }
  .toggle-btn {
    margin: 10px;
    cursor: pointer;
    height: 30px;
    width: 30px;
    order: 3;
  }

  .toggle-btn>* {
    background-color: var(--dark);
    display: block;
    height: 3px;
    width: 25px;
    margin: 5px 0;
    transition: all 0.5s ease-in-out;
  }

  .toggle-btn .span2 {
    background-color: var(--bg);
    margin-left: 5px;
  }

  .toggle-btn.active .span1 {
    transform: rotate(45deg) translate(3px, 10px);
  }

  .toggle-btn.active .span2 {
    margin-left: 0;
    opacity: 0;
  }

  .toggle-btn.active .span3 {
    transform: rotate(-45deg) translate(1px, -8px);
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    z-index: 999;
    background-color: var(--bg1);
    flex-direction: column;
    width: 100%;
    left: 0;
    gap: 0;
    display: none;
  }

  .nav-menu>li {
    display: block;
    line-height: 40px;
    width: 100%;
  }

  .nav-menu>li>a {
    font-family: var(--font1);
    text-transform: capitalize;
    display: block;
    padding: 10px 16px;
    font-weight: 300;
    line-height: 30px;
    box-shadow: rgba(99, 99, 99, 0.8) 0px 1px 1px 0px;
  }

  .nav-menu li.drop-menu {
    padding-right: 0;
  }

  .nav-menu>li>a:hover {
    color: var(--bg1);
  }

  .click-btn {
        position: absolute;
    right: 0px;
    top: 1px;
    display: inline-block;
    color: var(--light);
    background-color: var(--secondary);
    padding: 17px 25px;
    line-height: 15px;
  }

  .drop-content {
    position: absolute;
    top: 80px;
    width: 100%;
    height: 300px;
    display: none;
    background-color: var(--light);
    z-index: 999;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: auto;
  }

  .enq-number {
    display: none;
  }

  /* ------------------- */
  .header-btn {
    display: none;
  }

  /* ------------------------- */
  .logo img {
    margin: 0;
    width: 100px;
  }

  /* ------------------------- */
  .ban-slide img {
    height: auto;
  }

  .forward-btn,
  .back-btn {
    position: absolute;
    top: 45%;
    width: 1.6rem;
    height: 1.6rem;
    font-size: 8px;
    padding: 0.8em;
  }

  .forward-btn {
    right: 5px
  }

  .back-btn {
    left: 5px;
  }

  .p-heading {
    font-size: 18px;
  }

  .learn-more-btn {
    padding: 8px 24px;
  }

  .feature-img {
    margin: 1rem 0;
  }
  
  /*----why-us-------*/
  .why-right-border {
    border: none;
    border-bottom: 1px solid var(--gray);
  }


  /* --===============- */
  .about-box {
    margin-top: 0;
  }

  .about-img {
    float: none;
    width: 100%;
    margin-bottom: 2rem;
    padding-right: 0rem;

  }

  .about-heading {
    margin-bottom: 15px;
  }
.about-box p, .about-content1 p {
    letter-spacing: 1.5px;
    font-size: 14px;
}
.about-box ul, .about-box li {
    list-style: disc;
    font-family: var(--font1);
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 14px;
}
  /* -------------- */
  .about-img {
    margin-top: 30px;
    margin-bottom: 3rem;
  }

  .about-bg {
    top: -75px;
  }
    .pc-name{
        font-size:1rem;
    }
  .pc-box {
    margin: 10px auto;
  }

  .pc-img:after {
    position: absolute;
    content: '';
    top: -50px;
    left: -10px;
    opacity: 0.4;
    z-index: -1;
  }

  /* ---------- */
  .t-content {
    text-align: start;
  }

  .contact-form {
    border-radius: 5px;
    padding: 1rem;
  }

  .c-heading-sec {
    margin-top: 2rem;
  }

  .social-media-list {
    margin: 0;
    gap: 1rem;
  }

  .social-media-list li {
    margin: 0;
  }

  .testi-inner-box {
    flex-direction: column;
  }

  /* --------------- */
  .b-title {
    margin-bottom: 1rem;
  }

  /* -------------- */
  .feature-img img {
      height:180px;
}
.f-service-box {
    justify-content: start;
}
  .f-c2 {
    font-size: 15px;
    padding: 0.4rem 0;
  }

  .f-btn1,
  .f-btn2 {
    padding: 0.5rem;
    font-size: 14px;
  }
 .f-contain {
    padding-left: 60%;
}
.t-next.slick-arrow, .t-back.slick-arrow {
    position: absolute;
    content: '';
    z-index: 1;
    font-size: 22px;
    font-weight: 700;
    border-radius: 100%;
    text-align: center;
    padding: 12px;
    cursor: pointer;
    color: var(--dark);
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    align-items: center;
    bottom: 0px;
}
.t-back.slick-arrow {
  left: 33%;
}
  /* ----footer */
  .footer-heading {
    padding: 0;
  }

  .about-footer::after {
    height: 0;
  }

  .about-footer {
    margin-bottom: 1rem;
  }

  ul.footer-sec {
    margin-bottom: 3rem;
  }


  .fixed-wtsp {
    bottom: 5vh;
    left: -1px;
    z-index: 999;
    transition: all 1s ease;
  }
  .fixed-wtsp span{
    display: none;
}
#slide.active{
    transform: translateX(0px);
    display: block;
}

.fixed-wtsp:hover {
    transform: scale(1.1);
  }
}