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

html {
  scroll-behavior: smooth;
}

.wpcf7-not-valid-tip {
  margin: 10px 0 0 0 !important;
}

::selection {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

:root {
  --primary-color: #e34339;
  --secondary-color: #000;
  --tertiary-color: #fff;
  --bottom-bg-color: #4d4d4d;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

@font-face {
  font-family: inter;
  src: url(../fonts/Inter-Regular.ttf);
}

@font-face {
  font-family: inter-light;
  src: url(../fonts/Inter-Light.ttf);
}

@font-face {
  font-family: inter-medium;
  src: url(../fonts/Inter-Medium.ttf);
}

@font-face {
  font-family: inter-semibold;
  src: url(../fonts/Inter-SemiBold.ttf);
}

@font-face {
  font-family: inter-bold;
  src: url(../fonts/Inter-Bold.ttf);
}

@font-face {
  font-family: inter-extrabold;
  src: url(../fonts/Inter-ExtraBold.ttf);
}

@font-face {
  font-family: firasans;
  src: url(../fonts/FiraSans-Regular.ttf);
}

@font-face {
  font-family: firasans-light;
  src: url(../fonts/FiraSans-Light.ttf);
}

@font-face {
  font-family: firasans-medium;
  src: url(../fonts/FiraSans-Medium.ttf);
}

@font-face {
  font-family: firasans-semibold;
  src: url(../fonts/FiraSans-SemiBold.ttf);
}

@font-face {
  font-family: firasans-bold;
  src: url(../fonts/FiraSans-Bold.ttf);
}

a,
button,
input[type="submit"] {
  transition: all 0.5s;
  text-decoration: none;
  font-family: inter;
  font-size: 16px;
}

button,
input[type="submit"] {
  font-family: inter-semibold;
}

h1,
h2 {
  font-family: inter-semibold;
  margin: 0;
}

h1,
h2 {
  font-size: 36px;
}

h1 span,
h2 span {
  color: var(--primary-color);
}

h3,
h4,
h5,
h6 {
  font-family: inter-semibold;
  margin: 0;
}

p,
li {
  margin-bottom: 0;
  font-size: 16px;
  font-family: inter;
  color: #575757;
}

input,
select,
textarea {
  font-family: inter;
  font-size: 15px;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  height: auto;
}

.custom-margin {
  margin: 70px 0;
}

.padd {
  padding: 70px 0;
}

.margin-sec {
  margin: 0 0 70px 0;
}

.custom-btn {
  padding: 8px 25px;
  overflow: hidden;
  position: relative;
  transition: all 0.6s ease;
  z-index: 1;
  display: inline-block;
  border-radius: 3px;
  color: var(--tertiary-color);
  background: var(--primary-color);
  font-size: 15px;
  font-family: inter;
}

.custom-btn::before {
  transition: all 0.6s ease;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background: var(--secondary-color);
  opacity: 0;
}

.custom-btn:hover {
  color: var(--tertiary-color);
}

.custom-btn:hover::before {
  top: -40%;
  opacity: 1;
}

.subhead {
  padding: 0 45px 0 0;
  display: inline-block;
  position: relative;
  margin: 0 0 10px 0;
  font-family: inter;
  color: var(--primary-color);
}

.subhead::before {
  content: "";
  position: absolute;
  width: 35px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: var(--primary-color);
  border-radius: 5px;
}

.custom-image {
  overflow: hidden;
}

.custom-image::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.5s linear;
  z-index: 1;
}

.custom-image:hover:after {
  height: 250%;
  background: transparent;
}

.header {
  width: 100%;
  padding: 10px 0;
}

.nav {
  width: 100%;
  justify-content: space-between;
}

.logo {
  width: 15%;
}

.logo img {
  width: 100%;
}

.menu {
  /*   width: 50%; */
  width: 85%;
  /*   text-align: center; */
  text-align: right;
}

.menu ul {
  display: inline-block;
}

.menu ul li {
  display: inline-block;
  margin: 0 30px 0 0;
  position: relative;
}

.menu ul li a {
  color: var(--secondary-color);
}

.menu ul li a:hover {
  color: var(--primary-color);
}

.menu ul li.active a {
  color: var(--primary-color);
  font-family: inter-semibold;
}

.menu ul li:last-child {
  margin: 0;
}

ul.sub-menu {
  position: absolute;
  z-index: -1;
  display: flex;
  flex-direction: column;
  width: 250px;
  left: 0;
  opacity: 0;
  border-radius: 0 0 5px 5px;
  display: none;
  padding: 28px 0 0 0;
  animation: slideSubMenu 0.3s ease forwards;
  overflow: hidden;
}

@keyframes slideSubMenu {
  from {
    transform: translateY(5px);
  }

  to {
    transform: translateY(0);
  }
}

ul.sub-menu li {
  margin: 0;
  width: 100%;
  padding: 0;
  display: block;
  cursor: pointer;
  text-align: left;
}

ul.sub-menu li a {
  color: var(--tertiary-color);
  padding: 10px 10px 10px 15px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #ddd;
  background-color: var(--secondary-color);
  color: var(--tertiary-color);
}

ul.sub-menu li:last-child a {
  border-bottom: none;
}

ul.sub-menu li a:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.menu ul li.active ul.sub-menu li a {
  color: var(--tertiary-color);
}

.menu ul li:hover > ul {
  display: flex;
  opacity: 1;
  z-index: 999;
}

.click-btn {
  position: absolute;
  top: 4px;
  right: -15px;
  cursor: pointer;
  font-size: 13px;
}

.menu-info {
  width: 35%;
  display: flex;
  justify-content: flex-end;
  display: none;
}

.menu-info ul {
  display: inline-block;
}

.menu-info ul li {
  margin: 0 20px 0 0;
  display: inline-block;
}

.menu-info ul li:last-child {
  margin: 0;
}

.menu-info ul li i {
  margin: 0 5px 0 0;
  color: var(--primary-color);
  transition: all 0.5s;
}

.menu-info ul li a {
  color: var(--secondary-color);
}

.menu-info ul li a:hover {
  color: var(--primary-color);
}

.menu-info ul li:hover i {
  color: var(--secondary-color);
}

.sticky {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  animation: slidetop 1s ease-in-out backwards;
  background-color: #f3f8ff;
}

@keyframes slidetop {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.mobile-menu {
  display: none;
}

.home-popup .modal-header {
  display: flex;
  justify-content: space-between;
}

.home-popup .modal-header h2 {
  color: var(--secondary-color);
}

.popup-form {
  width: 100%;
}

.popup-form br {
  display: none;
}

.popup-close {
  width: 30px;
  height: 30px;
  font-size: 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-color);
  color: var(--tertiary-color);
  outline: none;
  border: none;
}

.popup-close:hover {
  background: var(--secondary-color);
}

.popup-input {
  width: 100%;
  margin: 0 0 15px 0;
  border: 1px solid rgba(7, 17, 6, 0.1);
  background: var(--tertiary-color);
  border-radius: 4px;
  color: #777c90;
  padding: 10px 10px 10px 20px;
  outline: none;
  transition: all 0.3s ease;
}

.popup-input:focus {
  border-color: var(--primary-color);
}

.popup-label {
  width: 100%;
  margin: 0 0 10px 0;
  font-family: inter-medium;
  font-size: 17px;
  color: var(--primary-color);
}

.popup-file {
  border: 1px solid rgba(7, 17, 6, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
  outline: none;
}

.popup-file:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.file-names {
  border: 1px solid #ffe1df;
  text-align: center;
  display: block;
  font-family: inter;
  margin: 15px 0 0 0;
}

.popup-area {
  width: 100%;
  height: 100px;
  margin: 15px 0 0 0;
  border: 1px solid rgba(7, 17, 6, 0.1);
  background: var(--tertiary-color);
  border-radius: 4px;
  color: #777c90;
  padding: 10px 10px 10px 20px;
  outline: none;
  transition: all 0.3s ease;
}

.popup-area:focus {
  border-color: var(--primary-color);
}

.popup-submit {
  width: 100%;
  border-radius: 5px;
  padding: 10px 0;
  border: none;
  outline: none;
  margin: 15px 0 0 0;
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.popup-submit:hover {
  background: var(--secondary-color);
}

.home-popup .modal-body {
  padding: 10px 15px 15px 15px;
}

.slider-box {
  width: 100%;
  position: relative;
}

.silder {
  width: 100%;
}

.banner {
  width: 100%;
  height: 500px;
  position: relative;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(255, 255, 255) 10%, transparent);
}

.banner-text {
  width: 50%;
}

.banner-text h2 {
  font-size: 45px;
}

.banner-text h2 span {
  display: block;
}

.banner-cont p {
  color: #848484;
  margin: 15px 0 0 0;
}

.banner-cont a {
  margin: 20px 0 0 0;
}

.solution-box {
  width: 100%;
}

.solution-row {
  align-items: center;
}

.solution-imagebox {
  width: 100%;
}

.solution-image {
  width: 100%;
  justify-content: space-between;
  position: relative;
}

.solution-image-one {
  width: 30%;
  height: 370px;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.solution-image-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.solution-image-two {
  width: 67%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.solution-image-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.about-video-box {
  border-radius: 4px;
  width: 150px;
  height: 150px;
  background: var(--secondary-color);
  display: grid;
  place-items: center;
  position: absolute;
  bottom: -15px;
  border-radius: 4px;
  right: 30px;
  z-index: 1;
}

.about-play-btn {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid var(--tertiary-color);
  border-radius: 50%;
  transition: all 0.5s;
}

.about-video-box a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  font-size: 17px;
  color: var(--secondary-color);
  background: var(--tertiary-color);
  border-radius: 50%;
  position: relative;
}

.about-video-box a:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.about-video-box a::before,
.about-video-box a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  animation: ripple-1 2s infinite ease-in-out;
  z-index: -1;
  background: var(--tertiary-color);
  border-radius: 50%;
}

.about-video-box a::before {
  background: rgba(255, 255, 255, 0.378);
}

.about-video-box a::after {
  background: rgba(255, 255, 255, 0.302);
  animation: ripple-2 2s infinite ease-in-out;
  animation-delay: 0.5s;
}

@keyframes ripple-1 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple-2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.solution-image::after {
  content: "";
  width: 125px;
  height: 60px;
  background: var(--secondary-color);
  position: absolute;
  bottom: -15px;
  right: -40px;
  z-index: -1;
}

.solution-text {
  width: 90%;
  margin: 0 0 0 auto;
}

.solution-text p {
  margin: 20px 0 0 0;
}

.solution-text h3 {
  color: var(--primary-color);
  margin: 20px 0 0 0;
}

.why-choose-box {
  width: 100%;
  text-align: center;
}

.why-choose {
  width: 100%;
  margin: 30px 0 0 0;
}

.why-choose-iconbox {
  width: 120px;
  height: 120px;
  transition: all 0.5s;
  border: 1px solid transparent;
}

.why-choose-icon {
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  transition: all 0.5s;
}

.why-choose-icon img {
  width: 55%;
}

.why-choose-icontext {
  width: 100%;
  margin: 20px 0 0 0;
}

.why-choose-icontext h3 {
  font-size: 20px;
  transition: all 0.5s;
}

.why-choose-icontext p {
  margin: 10px 0 0 0;
}

.why-choose-icontext p strong,
.why-choose-icontext p b {
  color: var(--primary-color);
}

.why-choose-icontext ul li {
  margin: 10px 0 0 0;
  list-style-type: square;
  list-style-position: inside;
}

/* .why-choose:hover .why-choose-iconbox {
  border: 1px solid #ea5a4a;
} */

/* .why-choose:hover .why-choose-icon {
  background: #ffefee;
  width: 100px;
  height: 100px;
} */

.why-choose:hover .why-choose-icontext h3 {
  color: #ff6157;
}
/* 
.truncated {
  max-height: 120px;
  overflow: hidden;
}

.truncated p {
  overflow: hidden;
  text-overflow: ellipsis;
}

.expanded {
  transition: all 0.5s ease;
  max-height: unset;
  overflow: none;
}

.expanded p {
  overflow: unset;
  text-overflow: unset;
} */

.about-box {
  width: 100%;
  position: relative;
}

.why-choose a {
  margin: 15px 0 0 0;
  display: inline-block;
  color: var(--secondary-color);
  font-family: inter-semibold;
  cursor: pointer;
}

.why-choose a:hover {
  color: var(--primary-color);
}

.about-box {
  padding-bottom: 120px;
}

.about-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #4d4d4d;
  width: 50%;
  height: 100%;
  z-index: -1;
}

.about-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #f2f2f2;
  width: 50%;
  height: 100%;
  z-index: -1;
}

.about-text {
  padding: 50px 40px 50px 50px;
  border-radius: 16px;
  background: var(--tertiary-color);
  margin-right: -70px;
  position: relative;
  z-index: 1;
}

.about-text p {
  margin: 20px 0 0 0;
}

.about-text p b {
  font-family: inter-semibold;
  color: var(--secondary-color);
}

.about-text a {
  margin: 20px 0 0 0;
}

.about-image {
  width: 100%;
  height: 425px;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-home-image-box .about-inner-image-box {
  position: relative;
}

.about-iconbox {
  width: 170px;
  height: 170px;
  background: rgba(227, 67, 57, 0.3);
  position: absolute;
  left: 45%;
  top: 260px;
  transform: translateX(-50%);
  z-index: 99;
}

.about-icon {
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  flex-direction: column;
}

.about-icon h2 {
  color: var(--tertiary-color);
  font-size: 58px;
  font-family: inter-extrabold;
  line-height: 1;
}

.about-icon p {
  color: var(--tertiary-color);
  padding: 0 20px;
  text-align: center;
  font-size: 14px;
}

.product-box {
  width: 100%;
  text-align: center;
}

.product-info {
  margin: 15px 0 0 0;
  width: 70%;
}

.product-category {
  width: 100%;
  margin: 20px 0 0 0;
}

.product-category ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.product-category ul li {
  display: inline-block;
  margin: 10px 0 0 0;
}

.product-category ul li a {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  background: #f3f3f3;
  color: var(--secondary-color);
  font-family: inter-medium;
}

.product-category ul li a:hover {
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

.product-category ul li a.active {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.product-row {
  justify-content: space-between;
}

.product-side-box {
  width: 30%;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.5s;
  background: #f2f2f2;
  padding: 40px 50px 25px 30px;
  margin: 30px 0 0 0;
  height: max-content;
  position: sticky;
  top: 80px;
}

.product-side-box:hover {
  border-color: #e23d32;
}

.product-side-image {
  width: 100%;
  text-align: center;
}

.product-side-text {
  width: 100%;
  text-align: left;
  margin: 30px 0 0 0;
}

.product-side-text h3 a {
  color: var(--secondary-color);
  font-size: 24px;
  font-family: inter-bold;
}

.product-side-text h3 a:hover {
  color: var(--primary-color);
}

.product-side-text p {
  margin: 10px 0 20px 0;
  color: #454545;
}

.product-side-text ul li {
  margin: 0 0 10px 0;
  text-align: center;
}

.product-side-text ul li:last-child {
  margin: 0;
}

.product-side-text ul li a {
  width: 100%;
  font-size: 15px;
  font-family: inter-medium;
  width: 100%;
}

.product-side-text ul li a.detail-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.product-side-text ul li a.detail-btn:hover {
  color: var(--tertiary-color);
}

.product-side-text ul li a.detail-btn::before {
  background: var(--primary-color);
}

.product-side-text ul li a.detail-btn:hover::before {
  background: var(--primary-color);
}

.product-side-text ul li a.enquiry-btn {
  background: var(--secondary-color);
}

.product-side-text ul li a.enquiry-btn::before {
  background: var(--primary-color);
}

.product-side-text ul li a.enquiry-btn:hover::before {
  background: var(--primary-color);
}

.product-mini-box {
  width: 69%;
  justify-content: center;
  column-gap: 20px;
}

.product {
  width: 31%;
  text-align: center;
  background: #f2f2f2;
  border-radius: 8px 8px 4px 4px;
  border: 1px solid transparent;
  padding: 40px 0 30px 0;
  margin: 30px 0 0 0;
  transition: all 0.5s;
  position: relative;
  height: fit-content;
}

.product:hover {
  border-color: var(--primary-color);
}

.product-image {
  width: 100%;
}

.product-text {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}

.product-text a {
  width: 100%;
  background: var(--secondary-color);
  color: var(--tertiary-color);
  border-radius: 4px;
  font-size: 20px;
  font-family: inter-medium;
  padding: 5px 0;
  display: inline-block;
}

.product:hover .product-text a {
  background: var(--primary-color);
}

.no-product {
  width: 100%;
  margin: 30px 0 0 0;
  transform: translateY(-50%);
}

.why-sec-box {
  width: 100%;
  background: #4d4d4d;
  position: relative;
}

.why-sec-image {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.why-sec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-sec-text {
  width: 90%;
  margin: 0 0 0 auto;
}

.why-sec-text h2 {
  color: var(--tertiary-color);
}

.why-sec-text p {
  color: var(--tertiary-color);
  margin: 20px 0 0 0;
}

.why-sec-text ul {
  justify-content: space-between;
  margin: 10px 0 0 0;
}

.why-sec-text ul li {
  width: 48%;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 20px;
  border-radius: 4px;
  transition: all 0.5s;
  background: var(--secondary-color);
  color: var(--tertiary-color);
  margin: 20px 0 0 0;
}

.why-sec-icon {
  width: 50px;
  display: none;
}

.why-sec-icon img {
  transition: all 0.5s;
  width: 100%;
}

.why-sec-icontext {
  width: 100%;
  margin: 10px 0 0 0;
}

.why-sec-icontext h4 {
  font-size: 16px;
  font-family: inter-medium;
}

.why-sec-text ul li:hover {
  background: var(--primary-color);
}

.why-sec-text ul li:hover img {
  filter: brightness(0) invert(1);
}

.history-map-section img {
  width: 100%;
}

.testimonial-box {
  width: 100%;
  background: #f2f2f2;
  max-height: 470px;
}

.testimonial-head-text {
  width: 100%;
}

.testimonial-slider {
  width: 100%;
  margin: 60px 0 0 0;
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

.testimonial-slider.slick-initialized .slick-slide {
  padding: 0 15px 10px 15px;
}

.next-btn,
.prev-btn {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--secondary-color);
  color: var(--tertiary-color);
  z-index: 99;
}

.next-btn,
.prev-btn {
  background: var(--primary-color);
}

.next-btn {
  right: 0;
}

.prev-btn {
  left: 0;
}

.testimonial {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 30px 20px;
  background: var(--tertiary-color);
  transition: all 0.5s;
  min-height: 360px;
}

.testimonial-icon {
  width: 50px;
}

.testimonial-icon img {
  width: 100%;
  transition: all 0.5s;
}

.testimonial-text {
  width: 100%;
  margin: 20px 0 0 0;
}

.testimonial-text p {
  color: var(--secondary-color);
}

.testimonial-client-box {
  width: 100%;
  justify-content: space-between;
  margin: 30px 0 0 0;
}

.testimonial-client {
  width: 56px;
  height: 56px;
}

.testimonial-client img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}

.testimonial-client-text {
  width: calc(100% - 70px);
}

.testimonial-client-text h4 {
  font-size: 21px;
  font-family: inter-medium;
  transition: all 0.5s;
}

.testimonial-client-text h5 {
  font-family: inter-light;
  font-size: 14px;
}

.testimonial:hover {
  border-color: #e9392d;
}

.testimonial:hover .testimonial-client-text h4 {
  color: var(--primary-color);
}

.testimonial:hover .testimonial-icon img {
  filter: invert(29%) sepia(70%) saturate(1500%) hue-rotate(0deg)
    brightness(93%) contrast(97%);
}

.faq-box {
  width: 100%;
  padding: 100px 0 0 0;
}

.faq-head-text {
  width: 100%;
}

.faq-head-text p {
  margin: 20px 0 0 0;
  color: #595959;
}

.faq-text {
  width: 100%;
  margin: 30px 0 0 0;
}

.faq {
  width: 100%;
  margin: 0 0 30px 0;
}

.faq:last-child {
  margin: 0;
}

.question {
  width: 100%;
  padding: 0 0 15px 0;
  border-bottom: 1px solid var(--secondary-color);
  transition: all 0.5s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.question h3 {
  width: calc(100% - 60px);
  font-size: 20px;
}

.toggle-icon {
  width: 40px;
  font-size: 18px;
  color: var(--primary-color);
  text-align: right;
}

.question.active {
  color: var(--primary-color);
  border-color: transparent;
  padding: 0;
}

.answer {
  padding: 15px 0;
  border-bottom: 1px solid var(--secondary-color);
  display: none;
}

.footer {
  width: 100%;
  padding: 70px 0 60px 0;
  background: var(--bottom-bg-color);
}

.footer-box {
  width: 100%;
}

.footer-box h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  font-size: 20px;
  color: var(--tertiary-color);
}

.footer-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.footer-image {
  width: 100%;
}

.footer-image img {
  width: 70%;
}

.footer-image p {
  width: 85%;
  margin: 20px 0 0 0;
  color: var(--tertiary-color);
}

.footer-icon {
  width: 100%;
  margin: 20px 0 0 0;
}

.footer-icon ul {
  display: inline-block;
}

.footer-icon ul li {
  display: inline-block;
  margin: 0 10px 0 0;
}

.footer-icon ul li:last-child {
  margin: 0;
}

.footer-icon ul li a {
  width: 32px;
  height: 32px;
  background: var(--tertiary-color);
  color: var(--secondary-color);
  font-size: 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.footer-icon ul li a:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.footer-second {
  padding: 0 0 0 10%;
}

.footer-link {
  width: 100%;
}

.footer-links ul {
  display: inline-block;
}

.footer-link ul li {
  margin: 0 0 10px 0;
}

.footer-link ul li:last-child {
  margin: 0;
}

.footer-link ul li a {
  position: relative;
  padding: 0 0 0 30px;
  display: inline-block;
  color: var(--tertiary-color);
}

.footer-link ul li a::before {
  position: absolute;
  content: "➤";
  left: 0;
  top: 0;
  color: var(--primary-color);
  transition: 0.5s;
}

.footer-link ul li a:hover {
  color: var(--primary-color);
}

.footer-link ul li a:hover::before {
  color: var(--tertiary-color);
}

.footer-contact {
  width: 100%;
}

.footer-iconbox {
  width: 100%;
  margin: 0 0 10px 0;
}

.footer-iconbox:last-child {
  margin: 0;
}

.foot-icon {
  width: 32px;
  height: 32px;
  font-size: 15px;
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.foot-icontext {
  width: calc(100% - 45px);
  text-align: left;
}

.foot-icontext a {
  color: var(--tertiary-color);
  word-break: break-all;
}

.foot-icontext a:hover {
  color: var(--primary-color);
}

.foot-icontext p {
  color: var(--tertiary-color);
}

.footer-copyright {
  width: 100%;
  border-top: 1px solid #969696;
  padding: 20px 0;
  background: var(--bottom-bg-color);
  text-align: center;
}

.footer-copyright p {
  color: var(--tertiary-color);
}

.footer-copyright p a {
  color: var(--tertiary-color);
  font-family: inherit;
  font-size: inherit;
}

.footer-copyright p a:hover {
  color: var(--primary-color);
}

.scroll_top {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  border: 2px solid var(--tertiary-color);
  transition: all 0.4s;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: #9f9898;
  background-clip: padding-box, border-box;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.scroll_top i {
  background: var(--primary-color);
  color: var(--tertiary-color);
  font-size: 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
}

.scroll_top:hover {
  background: var(--secondary-color);
}

/* index ends */

.about-map-section {
  text-align: center;
}

.inner-banner {
  width: 100%;
  height: 400px;
  position: relative;
}

.inner-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-banner-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(
    140deg,
    #efd7ef 8%,
    #f5f9fc 40%,
    #f8eae1 66%,
    #eaf8f9 91%
  );
  display: flex;
  align-items: center;
  text-align: center;
}

.inner-banner-cont h1 {
  color: var(--primary-color);
  font-size: 45px;
}

.inner-banner-cont h2 {
  color: var(--primary-color);
  font-size: 45px;
}

.inner-banner-cont ol {
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  width: max-content;
  background: var(--secondary-color);
  border-radius: 20px;
  margin: 15px auto 0 auto;
  color: var(--tertiary-color);
}

.inner-banner-cont ol li {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0;
}

.inner-banner-cont ol li:last-child {
  margin: 0;
}

.inner-banner-cont ol .breadcrumb-item + .breadcrumb-item {
  padding: 0;
}

.inner-banner-cont ol .breadcrumb-item.active {
  color: var(--tertiary-color);
}

.inner-banner-cont ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--tertiary-color);
}

.inner-banner-cont ol li a {
  color: var(--tertiary-color);
  font-family: inter-medium;
}

.inner-banner-cont ol li a:hover {
  color: var(--primary-color);
}

/* inner-banner ends */

.product-banner .inner-banner-cont {
  background: transparent;
}

/* product banner css ends */

.product-detail-banner .inner-banner-cont {
  background: transparent;
}

/* product detail banner css ends */

.about-inner-box {
  width: 100%;
}

.about-inner-image-box {
  width: 100%;
}

.about-inner-image {
  width: 100%;
  position: relative;
  background-position: 88% 30px;
  background-repeat: no-repeat;
  background-size: 18% auto;
}

.about-inner-image-one {
  width: 75%;
  height: 420px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-inner-image-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.8s ease;
}

.about-inner-image-two {
  width: 45%;
  height: 230px;
  border-radius: 20px;
  position: absolute;
  right: 40px;
  top: 60%;
  overflow: hidden;
  z-index: 1;
  background: #f2f2f2;
  padding: 30px;
  border: 6px solid var(--tertiary-color);
}

.about-inner-image-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.8s ease;
}

.about-inner-text {
  width: 100%;
}

.about-inner-text p {
  margin: 15px 0 0 0;
}

.about-inner-text ul {
  margin: 15px 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-inner-text ul li {
  margin: 0 0 10px 0;
  position: relative;
  padding: 0 0 0 25px;
  width: 48%;
}

.about-inner-text ul li::before {
  position: absolute;
  top: 3px;
  left: 0;
  content: url(../images/check.png);
}

.feature-box {
  width: 100%;
  text-align: center;
  background: #fff8f8;
}

.feature-box .why-choose {
  margin: 40px 0 0 0;
}

.feature-box .why-choose:hover .why-choose-icon {
  background: var(--tertiary-color);
}

.feature-box .why-choose:hover .why-choose-icon img {
  filter: brightness(0);
}

.mission-box {
  width: 100%;
  background: #f1f1f14a;
}

.mission-text {
  padding: 0 0 0 30px;
  border: none;
}

.vision-text {
  border-right: 1px solid #ddd;
  padding: 0 30px 0 0;
}

.mission-text {
  width: 100%;
}

.mission-icon-head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: center;
}

.mission-icon-head h2 {
  width: calc(100% - 150px);
}

.mission-icon {
  width: 100px;
  margin: 20px 0 0 0;
}

.mission-icon img {
  width: 100%;
}

.mission-text p {
  margin: 20px 0 0 0;
}

.work-box {
  width: 100%;
  text-align: center;
}

.work-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.work {
  width: 24%;
  margin: 40px 0 0 0;
  position: relative;
}

.work-icon {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  position: relative;
  background: #ffb6b0;
}

.work-icon-abso {
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: firasans-bold;
  background: var(--secondary-color);
  border: 4px solid var(--tertiary-color);
  border-radius: 30px;
  width: 44px;
  height: 44px;
  color: var(--tertiary-color);
  transition: all 0.5s ease;
}

.work-icon img {
  width: 65%;
  filter: invert(1);
}

.work-icontext {
  margin: 20px 0 0 0;
  width: 100%;
}

.work-icontext h3 {
  font-size: 24px;
  color: var(--primary-color);
}

.work-icontext p {
  margin: 10px 0 0 0;
}

.work:hover .work-icon {
  background: #fcdcde;
}

.work:hover .work-icon img {
  filter: invert(0);
}

.work:hover .work-icon-abso {
  background: var(--primary-color);
}

.work:nth-child(1)::after,
.work:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 30px;
  transform: translateX(-50%);
  right: -50%;
  width: 150px;
  height: 80px;
  background-image: url(../images/work-bg1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}

.work:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 40px;
  transform: translateX(-50%);
  right: -50%;
  width: 150px;
  height: 80px;
  background-image: url(../images/work-bg2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}

.about-counter-box {
  width: 100%;
  background: #ffccd0;
}

.about-counter {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.about-counter-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--primary-color);
}

.about-counter-icon img {
  width: 65%;
  filter: brightness(0) invert(1);
  text-align: center;
}

.about-counter-icontext {
  width: 100%;
  margin: 10px 0 0 0;
  text-align: center;
}

.about-counter-head-flex {
  color: var(--tertiary-color);
  font-size: 40px;
  font-family: inter-extrabold;
  justify-content: center;
  column-gap: 5px;
  line-height: normal;
}

.about-counter-head-flex h2 {
  color: var(--tertiary-color);
  line-height: normal;
  font-family: inter-extrabold;
}

.about-counter-icontext p {
  margin: 0;
  font-family: inter-semibold;
  color: var(--secondary-color);
}

.gallery-box {
  width: 100%;
  text-align: center;
}

.gallery-row {
  justify-content: center;
  column-gap: 20px;
}

.gallery {
  width: 31%;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 auto;
  background: #f2f2f2;
  margin: 40px 0 0 0;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.8s ease;
}

.gallery:hover img {
  transform: scale(1.2);
}

.gallery::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.5s linear;
}

.gallery:hover:after {
  height: 250%;
  background: transparent;
}

.gallery-abso {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  transition: all 0.5s;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 1;
}

.gallery-abso a {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  font-size: 25px;
  color: var(--tertiary-color);
  border-radius: 50%;
  background: var(--primary-color);
  transition: all 1s;
  cursor: pointer;
}

.gallery-abso a:hover {
  background: var(--tertiary-color);
  color: var(--secondary-color);
}

.gallery:hover .gallery-abso {
  top: 0;
}

.gallery:hover .gallery-abso a {
  top: 50%;
}

/* about css ends */

.product-detail-box {
  width: 100%;
}

.product-detail-cont {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 60px 40px;
}

.product-detail-row {
  /*   align-items: center; */
}

.product-detail-slider-box {
  position: sticky;
  top: 80px;
}

.product-detail-image {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-repeat: no-repeat;
  background-size: 200%;
  display: none;
  z-index: 2;
}

.product-thumbnailbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-thumbnail {
  cursor: pointer;
  transition: all 0.5s;
  width: 33%;
  height: 100px;
  margin: 10px 0 0 0;
  padding: 0 10px;
}

.product-thumbnail img {
  padding: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border: 2px solid #e2e2e2;
}

.product-thumbnail:hover img {
  border: 2px solid var(--secondary-color);
}

.slick-current .product-thumbnail img {
  border: 2px solid var(--primary-color);
}

.product-detail-text {
  width: 95%;
  margin: 0 0 0 auto;
}

.product-detail-text p {
  margin: 20px 0 0 0;
}

.product-btn-list {
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.product-btn-list li {
  display: inline-block;
}

.product-btn-list li a.detail-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.product-btn-list li a.detail-btn:hover {
  color: var(--tertiary-color);
}

.product-btn-list li a.detail-btn::before {
  background: var(--primary-color);
}

.product-btn-list li a.detail-btn:hover::before {
  background: var(--primary-color);
}

.product-detail-text p strong {
  color: var(--primary-color);
}

.product-detail-text h3 {
  font-size: 25px;
  margin: 30px 0 0 0;
}

.product-detail-inner-text ul li,
.product-detail-inner-text ol li {
  list-style-position: inside;
  color: var(--secondary-color);
}

.product-detail-inner-text ul li {
  list-style-type: square;
  margin: 15px 0 0 0;
}

.product-detail-inner-text ol li {
  list-style-type: decimal;
  margin: 15px 0 0 0;
}

.product-detail-inner-text ul li strong,
.product-detail-inner-text ol li strong {
  color: var(--primary-color);
}

.product-detail-inner-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0 0 0;
  text-align: left;
}

.product-detail-inner-text th {
  font-family: inter-semibold;
  color: var(--secondary-color);
  font-size: 18px;
}

.product-detail-inner-text th,
.product-detail-inner-text td {
  padding: 10px;
  border: 1px solid var(--secondary-color);
  text-align: center;
}

.product-detail-inner-text td {
  color: rgb(87, 87, 87);
}

.product-detail-btn {
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product-brand-list ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-brand-list ul li {
  display: inline-block;
}

.product-brand-list ul li a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--tertiary-color);
  display: grid;
  place-items: center;
  transition: transform 0.4s ease;
}

.product-brand-list ul li a img {
  width: 30px;
}

.product-brand-list ul li a:hover {
  transform: translateY(-5px);
  background: #cecece;
}

/* .product-detail-btn a.purchase-btn.custom-btn {
  background: var(--primary-color);
}

.product-detail-btn a.purchase-btn.custom-btn::before {
  background: var(--secondary-color);
} */

.product-detail-btn a.custom-btn {
  background: var(--secondary-color);
}

.product-detail-btn a.custom-btn::before {
  background: var(--primary-color);
}

.product-slider-box {
  width: 100%;
  text-align: center;
}

.product-slider.slick-initialized .slick-slide {
  padding: 0 15px 0 15px;
}

.product-slider .product {
  width: 100%;
}

.product-slider .product-image {
  width: 100%;
  height: 300px;
}

.product-slider .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* product detail ends */

/* newsletter css */

.about-newsletter-box {
  width: 100%;
}

.about-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eff1ec;
  border-radius: 20px;
  position: relative;
  z-index: 0;
}

.about-newsletter-image {
  width: 30%;
  border-radius: 20px 0 0 20px;
  position: relative;
  overflow: hidden;
  height: 240px;
}

.about-newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
  transition: all 0.8s ease;
}

.about-newsletter-image::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.5s linear;
  z-index: 1;
}

.about-newsletter-image:hover:after {
  height: 250%;
  background: transparent;
}

.about-newsletter-text {
  width: 70%;
  border-radius: 0 20px 20px 0;
  padding: 0 60px 0 80px;
  position: relative;
  height: 100%;
}

.about-newsletter-text h2 {
  font-family: firasans-bold;
}

.about-newsletter-text h2 span {
  color: #ea5a4a;
}

.about-newsletter-text h2 a {
  color: var(--black-color);
  font-size: inherit;
  font-family: inherit;
}

.about-newsletter-text h2 a:hover {
  color: var(--primary-color);
}

.about-newsletter-text p {
  margin: 20px 0 0 0;
}

.about-newsletter-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--tertiary-color);
  border: 6px solid var(--tertiary-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 1;
}

.about-newsletter-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--secondary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-100%, 100%);
  transition: all 0.3s ease-out;
  z-index: -1;
}

.about-newsletter:hover .about-newsletter-icon::before {
  transform: translate(0);
}

/* newsletter css ends */

.contact-box {
  width: 100%;
}

.contact-box-text {
  width: 100%;
  text-align: center;
}

.contact-info {
  margin: 15px auto 0 auto;
  width: 70%;
}

.contact-flex {
  justify-content: space-between;
}

.contact-iconbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 20px;
  background: #ffe1df;
  padding: 40px 30px;
  transition: all 0.5s ease-in-out;
  margin: 40px 0 0 0;
  width: 32%;
}

.contact-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 25px;
  border: 10px solid rgba(227, 67, 57, 0.1);
  background: var(--tertiary-color);
  color: var(--secondary-color);
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
}

.contact-icon::after {
  content: "";
  position: absolute;
  top: 0%;
  height: 0;
  width: 0;
  left: 50%;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: -1;
}

.contact-iconbox:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: var(--tertiary-color);
  border-color: transparent;
}

.contact-iconbox:hover .contact-icon {
  color: var(--tertiary-color);
}

.contact-iconbox:hover:hover .contact-icon::after {
  top: 0%;
  height: 100%;
  width: 100%;
  left: 0%;
}

.contact-icontext {
  width: 100%;
  margin: 15px 0 0 0;
}

.contact-icontext h3 {
  font-size: 25px;
}

.contact-icontext p {
  margin: 10px 0 0 0;
}

.contact-icontext a {
  color: var(--black-color);
  word-break: break-all;
}

.contact-icontext a:hover {
  color: var(--primary-color);
}

.contact-box-form {
  width: 100%;
  padding: 40px 30px;
  border-radius: 15px;
  background: #fff5f5;
  border-top: 10px solid var(--primary-color);
}

.contact-box-form .contact-info {
  width: 100%;
  margin: 15px 0 20px 0;
}

.contact-form br {
  display: none;
}

.form-input {
  width: 100%;
  margin: 20px 0 0 0;
}

.form-input label {
  font-size: 15px;
  font-family: inter-semibold;
  display: block;
  margin: 0 0 10px 0;
  color: var(--primary-color);
}

.form-input input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  outline: none;
  background-color: var(--tertiary-color);
  border-radius: 5px;
  transition: all 0.5s;
  color: #2d2d2d;
}

.form-input input:focus {
  border-color: var(--primary-color);
}

.form-input select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  outline: none;
  background-color: var(--tertiary-color);
  border-radius: 5px;
  transition: all 0.5s;
  appearance: none;
}

.form-input
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  position: absolute;
  top: 50% !important;
  right: 1px;
  width: 20px;
  transform: translateY(-50%) !important;
  height: auto !important;
}

.form-input
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  padding: 9px 10px !important;
  height: auto !important;
  line-height: normal !important;
}

.form-input .select2-container .select2-selection--single {
  height: auto !important;
}

.form-input .select2-container {
  width: 100% !important;
}

.form-input
  .select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.form-input .select2-container--default .select2-selection--single {
  border-radius: 5px !important;
  background-color: var(--tertiary-color) !important;
  border: 1px solid #ddd !important;
  transition: all 0.5s;
}

.form-input .select2-container--default .select2-selection--single:focus {
  border-color: var(--primary-color) !important;
}

.form-input
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  font-size: 14px;
  color: #2d2d2d;
  font-family: poppins;
}

.form-input textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  outline: none;
  background-color: var(--tertiary-color);
  border-radius: 5px;
  transition: all 0.5s;
  color: #2d2d2d;
}

.form-input textarea:focus {
  border-color: var(--primary-color);
}

.form-checkbox {
  width: 100%;
  display: flex;
  align-items: center;
}

.form-checkbox .wpcf7-list-item {
  margin: 0 !important;
}

.form-checkbox input {
  margin: 0 10px 0 0;
  accent-color: var(--secondary-color);
  max-width: max-content;
}

.form-checkbox label {
  font-family: inter-medium;
  color: #454545;
  font-size: 15px;
  margin: 0;
}

.form-input .contact-submit {
  display: inline-block;
  width: max-content;
  padding: 10px 30px;
  border-radius: 4px;
  background: var(--primary-color);
  color: var(--tertiary-color);
  font-size: 18px;
  outline: none;
  border: none;
  border-radius: 5px;
  margin: 0;
}

.contact-submit:hover {
  background: var(--secondary-color);
}

.mapbox {
  width: 100%;
  height: 450px;
}

.mapbox iframe {
  width: 100%;
  height: 100%;
}

/* contact page ends */

.pagination {
  margin: 20px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
}
.pagination {
  display: flex;
}

.pagination.page-numbers.current {
  background: var(--primary-color);
  border: transparent;
}

.pagination .page-numbers {
  display: inline-block;
  color: var(--tertiary-color);
  padding: 5px 10px;
  min-width: 30px;
  background: var(--secondary-color);
  border-right: 1px solid #999;
  transition: all 0.5s;
  cursor: pointer;
  font-family: inter-semibold;
}

.pagination a.page-numbers.next {
  border-left: 1px solid #999;
  border-right: 1px solid #999;
}

.pagination a.page-numbers.prev {
  border-left: 1px solid #999;
  border-right: 1px solid #999;
}

.pagination span {
  display: inline-block;
  color: var(--tertiary-color);
  padding: 5px 10px;
  min-width: 30px;
  background: var(--secondary-color);
  border-right: 1px solid #999;
  transition: all 0.5s;
}

.pagination .page-numbers:hover {
  background: var(--primary-color);
}

.pagination .page-numbers.current {
  background: var(--primary-color);
}

/* pagination css ends */
