@charset "utf-8";

/*------------------------------|| fonts||----------------------------------*/
@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Light.eot");
  src:
    url("../fonts/Aeonik-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Aeonik-Light.woff2") format("woff2"),
    url("../fonts/Aeonik-Light.woff") format("woff"),
    url("../fonts/Aeonik-Light.ttf") format("truetype"),
    url("../fonts/Aeonik-Light.svg#Aeonik-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Regular.eot");
  src:
    url("../fonts/Aeonik-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Aeonik-Regular.woff2") format("woff2"),
    url("../fonts/Aeonik-Regular.woff") format("woff"),
    url("../fonts/Aeonik-Regular.ttf") format("truetype"),
    url("../fonts/Aeonik-Regular.svg#Aeonik-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Medium.eot");
  src:
    url("../fonts/Aeonik-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Aeonik-Medium.woff2") format("woff2"),
    url("../fonts/Aeonik-Medium.woff") format("woff"),
    url("../fonts/Aeonik-Medium.ttf") format("truetype"),
    url("../fonts/Aeonik-Medium.svg#Aeonik-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Bold.eot");
  src:
    url("../fonts/Aeonik-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Aeonik-Bold.woff2") format("woff2"),
    url("../fonts/Aeonik-Bold.woff") format("woff"),
    url("../fonts/Aeonik-Bold.ttf") format("truetype"),
    url("../fonts/Aeonik-Bold.svg#Aeonik-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/*------------------------------|| fonts end ||----------------------------------*/

body,
html {
  font-family: var(--sitefonts);
  color: var(--black);
  line-height: 24px;
  font-size: 16px;
  scroll-behavior: smooth;
}

html.menuhidden body {
  overflow-y: hidden;
}

p a,
p span a,
ul li a,
ol li a {
  color: var(--black);
  display: inline-block;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
  letter-spacing: 0px;

  &:last-child {
    margin-bottom: 0;
  }

  &:has(+ *) {
    margin-bottom: 30px;
  }

  a {
    color: var(--black);
    line-height: normal;
    border-bottom: 2px solid var(--black);
    display: inline;

    &:hover {
      color: var(--cement-grey);
    }
  }
}

p>a[href^="tel:"] {
  display: inline-block;
}

p>strong {
  font-style: italic;
}

/* .menuoverlay {
  position: relative;
  transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
}

.menuoverlay:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0.8;
  margin: auto;
  z-index: 2;
}

.menuoverlay .header-right .btnlist .btn-lightblue {
  background: transparent;
  color: #ffff;
  border-color: #fff;
}

.menuoverlay .header-right .btnlist a img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(241deg) brightness(103%) contrast(103%);
} */

/* -------------- Common ul li ---------------- */
ul {
  margin-left: 0;
  margin-bottom: 0;
  list-style: none;

  &:has(+ *) {
    margin-bottom: 30px;
  }
}

ul.twocollist {
  column-count: 2;
}

main ul>li,
main ul.wp-block-list>li {
  position: relative;
  font-family: var(--sitefonts);
  padding-left: 28px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 15px;
  list-style: none;

  &:last-child {
    margin-bottom: 0;
  }
}

main ul:not([class])>li:after,
main ul.wp-block-list>li:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 6px;
  width: 13px;
  height: 11px;
  background: transparent url(../images/icon/right-tick.svg) no-repeat center;
  background-size: contain;
}

main ul>li>strong,
main ul>li>span,
main ul.wp-block-list>li>strong,
main ul.wp-block-list>li>span {
  font-weight: bold;
  display: inline-block;
  width: 100%;
}

main ul>li a {
  color: var(--sitetext);
}

main ul>li a:hover {
  color: var(--cement-grey);
  /* border-bottom: 1px solid var(--cement-grey); */
  text-decoration: underline;
}

main ul:not([class])>li:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 6px;
  width: 13px;
  height: 11px;
  background: transparent url(../images/icon/right-tick.svg) no-repeat center;
  background-size: contain;
}

ol li,
ol.wp-block-list li {
  counter-increment: item-counter;
  padding-left: 10px;
}

ol li::marker {
  content: counter(item-counter) ".";
  font-size: 18px;
  font-weight: 500;
}

/*  */

p span {
  color: initial;
}

/* --------------------- select option --------------------- */
::-ms-expand {
  display: none;
}

::-moz-selection {
  color: #fff;
  background: #515151;
}

::selection {
  color: #fff;
  background: #515151;
}

/*-----FORM CONTROL-----*/
::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0%;
  color: #7b7b7b;
  text-transform: none;
  background: transparent;
}

:-ms-input-placeholder,
textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0%;
  color: #7b7b7b;
  background: transparent;
  text-transform: none;
}

:-ms-input-placeholder,
textarea::placeholder {
  font-family: var(--sitefonts);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  color: #7b7b7b;
  background: transparent;
  text-transform: none;
}

/*  ------------ Select Option ------------ */
input:invalid {
  box-shadow: none;
}

form {
  display: inline-block;
}

.form-control,
form input[type="text"],
form input[type="email"],
form select,
form textarea,
form input[type="number"],
form input[type="tel"],
form input[type="file"],
textarea {
  width: 100%;
  padding: 10px 15px;
  min-height: 46px;
  font-family: var(--sitefonts);
  font-size: 14px;
  font-weight: normal;
  color: #7b7b7b;
  background: #fff;
  border-radius: 2px;
  margin-bottom: 0;
  border: 0;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

form textarea {
  resize: none;
  min-height: 80px;
  overflow: hidden;
  overflow-y: auto;
  margin: 0;
  vertical-align: bottom;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="file"]:focus {
  border-color: var(--white);
}

select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../images/icon/select-arrow-grey.svg) no-repeat right 16px center / 0.8em var(--white);
  padding: 10px 15px;
  padding-right: 2em;
  font-size: 14px;
  font-weight: normal;
  color: #7b7b7b;
  border-radius: 2px;
  text-transform: none;
}

select option {
  font-size: 14px;
  font-weight: normal;
  color: #7b7b7b;
  background: #fff;
  text-transform: none;
}

.wpcf7-spinner {
  position: absolute;
  margin: 0;
  right: 0;
}

.form-group {
  padding: 0 5px;
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}

form .form-group label {
  font-family: var(--sitefonts);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: 0px;
  color: var(--black);
  text-align: left;
  display: block;
  margin-bottom: 10px;
}

.wpcf7-form-control-wrap {
  display: block;
  height: 100%;
}

/* form.invalid .row .form-group {
  margin-bottom: 25px;
} */

/* form.invalid .form-group,
form.invalid .row:nth-last-child(2) .form-group {
  margin-bottom: 0;
} */

.checkbxdiv {
  display: flex;
  margin-top: 15px;
  line-height: 1.2;
  align-items: center;
}

.checkbxdiv input[type="checkbox"] {
  margin: 0 15px 0 0;
}

form .form-group .checkbxdiv label {
  margin-bottom: 0;
}

/* --------- Normal Button Style Start --------- */

.btnlist {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  z-index: 3;
  position: relative;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* button, */
.button,
button[type="submit"],
input[type="submit"] {
  font-family: var(--sitefonts);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  min-height: 53px;
  min-width: auto;
  padding: 16px 24px;
  margin: 0;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 100px;
  color: var(--btncolor);
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 0;
  text-decoration: none;
  cursor: pointer;
  text-transform: capitalize;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
}

.btn-white {
  background: var(--white);
  transition: all 0.2s ease-in;
  overflow: hidden;
  z-index: 1;

  &:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }

  &:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: var(--grey);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }

  &:hover {
    color: var(--white);
    border: 1px solid var(--grey);

    &:before {
      top: -35%;
      background-color: var(--grey);
      transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
    }

    &:after {
      top: -45%;
      background-color: var(--grey);
      transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
    }
  }
}

.btn-white-blkoutline {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);

  &:hover {
    border-color: var(--cement-grey);
    background-color: var(--cement-grey);
    color: var(--white);
  }
}

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);

  & img {
    filter: brightness(0) invert(1);
  }

  &:hover {
    background-color: white;
    color: var(--black);

    img {
      filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7500%) hue-rotate(5deg) brightness(105%) contrast(109%);
    }
  }
}

.btn-black-border {
  background: transparent;
  color: var(--black);
  border-color: var(--black);

  & img {
    filter: brightness(0) saturate(100%) invert(6%) sepia(5%) saturate(12%) hue-rotate(314deg) brightness(95%) contrast(99%);
  }
}

.btn-grey {
  background: #a2a9ad;
  color: var(--white);
  border-color: #a2a9ad;

  img {
    filter: brightness(0) invert(1);
  }

  &:hover {
    background-color: white;
    color: var(--black);

    img {
      filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7500%) hue-rotate(5deg) brightness(105%) contrast(109%);
    }
  }
}

.btn-white-border {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  position: relative;
  overflow: hidden;

  & img {
    filter: brightness(0) invert(1);
  }

  &:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }

  &:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: var(--grey);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
}

.btn-white-border:hover {
  background: var(--white);
  border-color: var(--grey);
  color: var(--white);

  &:before {
    top: -35%;
    background-color: var(--grey);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }

  &:after {
    top: -45%;
    background-color: var(--grey);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
}

.action-callbtn {
  display: flex;
  align-items: center;

  .call-icon {
    img {
      transition: 0.5s ease-in-out;
    }
  }

  & .call-info {
    padding-left: 10px;

    & p {
      font-family: var(--sitefonts);
      font-size: clamp(12px,
          12px + (18 - 12) * ((100vw - 375px) / (1920 - 375)),
          18px);
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: 0px;
      margin-bottom: 0;
      color: var(--black);
      transition: 0.5s ease-in-out;

      span {
        color: unset;
      }
    }
  }

  &:hover {
    .call-icon {
      img {
        filter: brightness(0) saturate(100%) invert(24%) sepia(7%) saturate(823%) hue-rotate(155deg) brightness(93%) contrast(88%);
      }
    }

    .call-info {
      p {
        color: var(--cement-grey);
      }
    }
  }
}

.btn-knowmore {
  font-family: var(--sitefonts);
  font-size: 18px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  text-decoration: underline;
}

.btn-knowmore:hover {
  color: var(--contentcolor);
}

.btn-knowmore:hover img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(9%) saturate(323%) hue-rotate(157deg) brightness(89%) contrast(88%);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.btn-learnmore {
  font-family: var(--sitefonts);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black);
  padding: 0 0 0 33px;
  position: relative;
  min-height: auto;
  min-width: auto;
  display: inline-block;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin-block: auto;
    width: 22px;
    height: 2px;
    background-color: var(--black);
  }

  &:hover {
    text-decoration: underline;
    color: var(--cement-grey);

    &:before {
      filter: brightness(0) saturate(100%) invert(23%) sepia(13%) saturate(424%) hue-rotate(155deg) brightness(93%) contrast(88%);
    }
  }
}

/* ------------------ normal button style end -------------------- */

a {
  text-decoration: none;
  display: inline-block;
}

header nav ul {
  margin-left: 0;
  list-style-type: none;
}

p a:hover,
ul li a:hover,
ol li a:hover {
  color: var(--cement-grey);
}

/* ------------------------ Site Font Headings --------------------- */

[class*="heading-"],
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--sitefonts);
  line-height: 1.09;
  margin-bottom: 28px;
  font-weight: 500;
  text-transform: none;
  position: relative;
  letter-spacing: 0px;
  color: var(--black);
}

.heading-50 {
  font-size: clamp(34px,
      34px + (50 - 34) * ((100vw - 375px) / (1920 - 375)),
      50px);
}

h2,
.heading-46 {
  font-size: clamp(26px,
      26px + (46 - 26) * ((100vw - 375px) / (1920 - 375)),
      46px);
}

h3,
.heading-36 {
  font-size: clamp(22px,
      22px + (36 - 22) * ((100vw - 375px) / (1920 - 375)),
      36px);
}

.heading-30 {
  font-size: clamp(22px,
      22px + (30 - 22) * ((100vw - 575px) / (1920 - 575)),
      30px);
}

.fs-26,
.heading-26 {
  font-size: clamp(18px,
      18px + (26 - 18) * ((100vw - 575px) / (1920 - 575)),
      26px);
}

.heading-20 {
  font-size: clamp(16px,
      16px + (20 - 16) * ((100vw - 375px) / (1920 - 375)),
      20px);
}

/*------------------------------||*FORM ERROR MASSSAGE||----------------------------------*/
.wpcf7 form .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border: 1px solid #f5c812;
  width: 100%;
  display: block;
  color: inherit;
  padding: 11px 12px 11px 45px;
  text-align: left;
  line-height: 1;
  margin: 0 auto 20px;
  font-family: "Barlow";
  font-weight: 500;
  font-size: 12px;
  position: relative;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: url(../images/icon/icon-validation.svg) no-repeat 15px center #fff9df;
}

.wpcf7 form.failed .wpcf7-response-output {
  border: 1px solid #fe0000 !important;
  background: url(../images/icon/validation-cross.svg) no-repeat 15px center #ffdfdf;
  font-size: 14px;
  padding-left: 45px;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: url(../images/icon/validation-tick.svg) no-repeat 15px center #e1ffd9;
  border-color: #498e36;
  font-size: 14px;
  padding-left: 45px;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  margin: 0;
  position: absolute;
  background: #fe0000;
  display: inline-block;
  color: var(--white);
  letter-spacing: 0.2px;
  padding: 2px 4px;
  line-height: 100%;
  bottom: -8px;
  left: 0;
  float: left;
}

.wpcf7-not-valid-tip:before {
  top: -5px;
  margin: 0;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid red;
}

.wpcf7-spinner {
  position: absolute;
  margin: 0;
  right: 0;
}

/* ---------------- SCROLL TOP ---------------- */
.scrollTop {
  position: fixed !important;
  right: 15px;
  bottom: 31px;
  opacity: 0;
  height: 40px;
  width: 40px;
  min-height: 40px;
  z-index: 10;
  text-align: center;
  font-size: 26px !important;
  color: var(--white) !important;
  background: var(--white) !important;
  border-radius: 50%;
  padding: 6px 11px !important;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.scrollTop i {
  color: var(--black);
}

.scrollTop:hover {
  background: var(--cement-grey) !important;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.scrollTop:hover i {
  color: var(--white);
}

.scrolldown {
  cursor: pointer;
}

/* ----------------- select option ----------------- */
input:invalid {
  box-shadow: none;
}

input[type="text"],
input[type="tel"],
input[type="number"] input[type="submit"],
input[type="email"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: var(--sitefonts);
}

textarea.form-control {
  resize: none;
  min-height: 150px;
  overflow: hidden;
  vertical-align: bottom;
  font-size: 18px;
}

.form-wrapper .form-group.width50 .form-control {
  min-width: auto;
}

/* -------------------- Slider Slider Css -------------------- */
.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
  opacity: unset;
}

.slick-next:before,
.slick-prev:before {
  content: none;
  opacity: 1;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  background-color: var(--black);
  border-color: var(--black);

  &:before {
    filter: brightness(0) invert(10);
  }
}

.slick-next:focus i,
.slick-next:hover i,
.slick-prev:focus i,
.slick-prev:hover i {
  color: #ffffff;
}

.slick-next:focus img,
.slick-next:hover img,
.slick-prev:focus img,
.slick-prev:hover img,
.btn_theme:hover img.small-black {
  filter: none;
}

/* slick slider arrows styles  */
.slick-prev,
.slick-next {
  right: -50px;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 38px;
  height: 38px;
  min-width: unset;
  min-height: unset;
  padding: 0;
  background: transparent;
  color: #9e9e9e;
  border: 1px solid #191919;
  opacity: 1;
  z-index: 1;
  border-radius: 100% !important;
  cursor: pointer;
  outline: none;
  clip-path: none;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.slick-prev {
  left: 0;
  width: 20px;
}

.slick-next {
  right: 0;
  width: 20px;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  background: url(../images/icon/slick-left.svg) no-repeat;
  background-size: contain;
}

.slick-next:before {
  background: url(../images/icon/slick-right.svg) no-repeat;
  background-size: contain;
}

/* ------------.slick-dotted -------------*/
.slick-dots {
  bottom: 0;
}

.slick-slider .slick-dots li {
  margin: 0 6px;
  border-radius: 100% !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;

  &:hover {
    background: #fff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
  }
}

.slick-slider .slick-dots li,
.slick-slider .slick-dots li button {
  width: 16px;
  height: 16px;
  min-height: auto;
  background-color: transparent;
}

.slick-slider .slick-dots li::after {
  display: none;
}

.slick-slider .slick-dots li.slick-active {
  background: transparent;

  & button {
    background: var(--white);
    border: 3px solid #646e73;
  }
}

.slick-slider .slick-dots li button {
  padding: 0px;
  background: #646e73;
  border-radius: 100% !important;
  min-width: unset;
}

.slick-slider .slick-dots li button:before {
  content: "";
  width: 16px;
  height: 16px;
  border: 0px;
  background: #646e73;
  opacity: 1;
  border: 3px solid #646e73;
  border-radius: 100%;
  inset: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.slick-slider .slick-dots li button:hover:before,
.slick-slider .slick-dots li button:focus:before,
.slick-slider .slick-dots li.slick-active button:before {
  opacity: 0.2;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.slick-slider .slick-dots li.slick-active button:before {
  /* background-color: var(--themecolor);
    border: 0px solid #313131;
    opacity: 1; */
  content: none;
}

.slick-slider .slick-dots li button:hover:before,
.slick-slider .slick-dots li button:focus:before {
  background-color: var(--themecolor);
  border: 0px solid #313131;
  opacity: 1;
}

.img-content-sec .right-content-side ul li a {
  text-decoration: underline;
}

/* ------------ Utility Classes -------------*/
main {
  margin: 0;
  position: relative;
  z-index: 1;
}

.relative {
  position: relative;
  z-index: 0;
}

.row-reverse {
  flex-direction: row-reverse;
}

.img-wrap {
  position: relative;
  display: inline-block;

  img {
    object-fit: cover;
  }
}

.whitetxt {
  color: var(--white) !important;
}

.lightgreybg {
  background: var(--lightgrey);
  border-radius: 30px 0 30px 0;
}

.fs-26 {
  font-family: var(--sitefonts);
  font-weight: 400;
  line-height: 1.55;
  text-transform: capitalize;
  color: var(--black);
}

.divider {
  border-bottom: 1px solid #ddd;
  margin: 50px 0;
}

/* -----------------------form-section----------------------- */
.row {
  width: calc(100% + 10px);
  float: left;
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.width100 {
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  text-align: center;
}

.width50 {
  width: 50%;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
}

.wid33 {
  width: 33.33%;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  margin: 0;
}

form.form-box {
  display: inline-block;
  width: 100%;
  line-height: 0.8;
  position: relative;
  z-index: 2;
}

.form-box .row .form-group>span {
  display: inline-block;
  top: 12px;
  z-index: 2;
  position: absolute;
  left: 23px;
}

form.form-box>p {
  font-size: 14px;
  letter-spacing: 0;
  font-weight: normal;
  line-height: 1.5;
  max-width: 450px;
  margin-bottom: 0;
  margin-top: -78px;
  position: absolute;
  z-index: 1;
  display: inline-block;
  bottom: 0px;
  width: 100%;
  left: 0;
}

form.form-box input[type="submit"] {
  width: 100%;
}

form.form-box input[type="submit"]:hover {
  background: var(--white);
  color: var(--white);
  border-color: var(--white);
}

/* -------------- Form in Img Content Section ----------------- */
.img-content-sec .right-content-side .row {
  margin-left: -10px;
  margin-right: -10px;
}

.img-content-sec .right-content-side .row .form-group {
  padding: 0 10px;
  margin-bottom: 20px;
}

.img-content-sec .right-content-side .row:nth-last-child(2) .form-group {
  margin-bottom: 0;
}

.img-content-sec .right-content-side .row .form-group input[type="submit"]:hover {
  border-color: var(--black);
}

.container {
  max-width: 1450px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-fluid {
  padding: 0 20px;
}

.container:before,
.container:after {
  display: none;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .sticky {
    position: sticky !important;
    top: 100px;
    align-self: flex-start;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Super large devices (large desktops, 1440px and up) */
@media (min-width: 1440px) {
  .container {
    max-width: 1300px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1550px;
  }
}

/* ----------------- Common Title & Bottom Border ---------------- */
.contact-form-box input[type="submit"] {
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  font-family: var(--sitefonts);
  letter-spacing: 0px;
  color: #e9e9e9;
  border-radius: 5px !important;
  background: var(--blue);
  padding: 6px 30px;
}

/* ********* BREADCRUMB *********  */
ul.woo_breadcums {
  list-style-type: none;
  width: 100%;
  margin-bottom: 50px;
}

ul.woo_breadcums li {
  font-family: var(--sitefonts);
  list-style: none;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0;
  padding-left: 0;
  margin-bottom: 0;

  &::after {
    display: none;
  }

  span {
    font-family: var(--sitefonts);
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

ul.woo_breadcums li a {
  font-family: var(--sitefonts);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  margin: 0 23px 0 0;
  display: inline-block;
  text-decoration: none;
  position: relative;
  z-index: 0;

  &:hover {
    color: var(--cement-grey);
    text-decoration: underline;
  }

  &:after {
    content: "";
    position: absolute;
    top: 5px;
    right: -16px;
    height: 9px;
    width: 7px;
    background: url(../images/icon/breadcrum-arrow.svg) no-repeat;
    background-size: contain;
  }
}

span.breadcrumb_last {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}

.woo_breadcums a:hover::after {
  left: unset !important;
}

/* --------------------||breadcrumb section design end||----------------------- */

/* ------------------ Section Top Bottom Design --------------------- */
.airmax-top-design,
.airmax-bottom-design {
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 59px;
    height: 170px;
    background: url(../images/icon/banner-bottom-design.png) no-repeat;
    background-size: contain;
    transform: translateY(-48px);
  }
}

.airmax-bottom-design {
  &::before {
    top: unset;
    bottom: 0;
    width: 58px;
    height: 152px;
    background: url(../images/icon/airmax-bottom-design.png) no-repeat;
    background-size: contain;
    transform: translateY(104px);
  }
}

/* ---------------------------- Intro Heading Sec ------------------------------ */
.intro-sec {
  & [class*="heading-"] {
    margin-bottom: 15px;
    text-transform: capitalize;
  }

  .heading-sm-title {
    font-family: var(--sitefonts);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 10px;
  }
}

.two-colum-intro-sec {
  text-align: center;
}

@media (min-width: 992px) {
  .two-colum-intro-sec {
    display: flex;
    flex-wrap: wrap;
    text-align: unset;
    justify-content: space-between;

    .column-one {
      max-width: 45%;

      .heading-46 {
        margin-bottom: 0;
      }
    }

    .column-two {
      max-width: 45%;
    }
  }
}

/* @media (min-width: 1440px) {
    .two-colum-intro-sec {

        .column-one {
            max-width: 46%;
        }

        .column-two {
            max-width: 46%;
        }
    }
} */

/* ---------------------------------------- */

.form-group {
  &.btnbox {
    margin-bottom: 0;
  }

  input[type="submit"] {
    min-height: 53px;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: var(--white);
    background: var(--black);
    border-color: var(--black);

    &:hover {
      background: var(--lightgrey);
      color: var(--black);
      border-color: var(--lightgrey);
    }
  }
}

/*------------------------------||wide banner section end||----------------------------------*/

/* ---------------- || Image Content Section || ---------------- */
.img-content-sec.hm-intro {
  .btn-knowmore {
    margin-bottom: 77px;
  }
}

.img-content-sec {
  display: inline-block;
  width: 100%;
  line-height: 0.9;
}

.img-content-sec .img-wrap {
  position: relative;

  & img {
    border-radius: 30px 0 30px 0;
  }
}

.img-content-sec .flex-container {
  justify-content: space-between;
  align-items: center;
}

.intro-sec.img-content-sec .right-content-side {
  max-width: 610px;
}

.img-content-sec .left-img-side {
  width: 620px;

  & img {
    border-radius: 30px 0 30px 0;
  }
}

.img-content-sec .right-content-side {
  width: calc(100% - 620px);
  max-width: 650px;
}

.img-content-sec .flex-container:has(+ .flex-container) {
  margin-bottom: 100px;
}

/* ------------------- || Img Content Sec || ------------------- */

/* ------------------- Our Team Member Img Content Sec ------------------- */
.our-team-member {
  background-color: var(--lightgrey);
  padding: 170px 0 100px;

  .heading-sm-title {
    margin-bottom: 5px;
  }
}

.team-profile {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 66px 35px 35px 110px;
  z-index: 1;

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 4.2%,
        rgba(0, 0, 0, 0.8) 100%);
    border-radius: 0px 0px 30px 0px;
    z-index: -1;
  }

  .member-name,
  .member-designation {
    font-family: var(--sitefonts);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.35;
    text-transform: capitalize;
    color: var(--white);
  }

  .member-designation {
    font-weight: 400;
    font-size: 16px;
  }

  .member-name {
    position: relative;

    &::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: -110px;
      margin-block: auto;
      width: calc(100% - 79%);
      height: 2px;
      background-color: var(--white);
    }
  }
}

/* ------------------- Our Clients --------------------- */
.our-clients {
  .intro-sec {
    p {
      max-width: 935px;
      margin-inline: auto;
    }
  }

  .client-logo .img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* -----------Service Page--------------- */
.two-column-layout {
  .flex-container {
    justify-content: space-between;

    .layout-left-block {
      width: 50%;
      max-width: 660px;

      .heading-46 {
        margin-bottom: 0;
        text-transform: capitalize;
      }

      .heading-26 {
        margin-bottom: 0;
        line-height: 1.55;
        text-transform: capitalize;

        a {
          line-height: normal;
          border-bottom: 2px solid var(--black);

          &:hover {
            color: var(--cement-grey);
            border-bottom-color: var(--cement-grey);
          }
        }
      }
    }

    .layout-right-block {
      width: 50%;
      max-width: 606px;

      p {
        line-height: 1.65;

        a:hover {
          border-bottom: 2px solid var(--cement-grey);
        }
      }
    }
  }
}

.simple-text-sec {
  .simpl-text-wrap {
    max-width: 1200px;
    margin-inline: auto;
  }
}

/* ---------------------------------------- */

/* ------------------- FAQ Section ------------------- */
.faq-sec .intro-sec {
  max-width: 1030px;
  margin-inline: auto;
}

/* ----------------------- Common FAQ Css ----------------------- */
.faq-sec .faq-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.faq-sec .faq-wrapper .faq-left-block {
  text-align: center;
}

@media (min-width: 992px) {
  .faq-sec .faq-wrapper .faq-left-block {
    width: 45%;
    text-align: left;
  }

  .faq-sec .faq-wrapper .faq-right-block {
    width: 45%;
  }
}

@media (min-width: 1440px) {
  .faq-sec .faq-wrapper .faq-left-block {
    width: 41%;
  }

  .faq-sec .faq-wrapper .faq-right-block {
    width: 41%;
  }
}

/* -------------------- Instaram Sec ---------------------- */
.instagram-sec {
  .intro-sec {
    justify-content: space-between;

    .insta-title {
      display: flex;
      align-items: center;
      gap: 10px;

      .heading-46 {
        margin-bottom: 0;
      }
    }

    .insta-btnlist {
      display: flex;
      align-items: center;
      gap: 12px;

      .see-more {
        font-family: var(--fontsites);
        font-weight: 700;
        font-size: 18px;
        line-height: 1.2;
        color: #323232;
      }
    }
  }
}

.instagram-sec .instagram-wraper #sb_instagram,
.instagram-sec .instagram-wraper #sbi_images {
  padding-bottom: 0 !important;
}

@media (min-width: 992px) {
  .instagram-sec {
    & .intro-sec {
      .insta-btnlist {
        &.mobile-inst-btn {
          display: none;
        }
      }
    }
  }
}

/* ------------------------ ||Thanks and Error Page|| ------------------------- */
.thanks-error-page .right-content-side>p {
  margin-bottom: 20px;

  &:last-child {
    margin-bottom: 0;
  }
}

.thanks-error-page .right-content-side>p a:hover {
  border-bottom: 2px solid var(--cement-grey);
}

.thanks-error-page .img-content-sec .left-img-side .img-wrap {
  float: right;
}

.thanks-error-page .right-content-side ul li>a {
  color: var(--black);
  border-bottom: 2px solid var(--black);

  &:hover {
    color: var(--cement-grey);
    border-bottom: 2px solid var(--cement-grey);
  }
}

/* ------------------------||Thanks and error page design end||------------------------------- */

/* ------------------------||responsive section design start||------------------------------- */
@media (min-width: 1921px) {}

@media (max-width: 1800px) {}

@media (max-width: 1700px) {}

@media (max-width: 1599.98px) {

  /* ********* BREADCRUMB *********  */
  ul.woo_breadcums {
    margin-bottom: 30px;
  }

  /* ---------------- || Image Content Section || ---------------- */
  .img-content-sec .left-img-side {
    width: 610px;
  }

  .img-content-sec .right-content-side {
    width: calc(100% - 610px);
    max-width: 580px;
  }

  /* ------------------ Section Top Bottom Design --------------------- */
  .airmax-top-design {
    &::before {
      width: 50px;
      height: 150px;
      transform: translateY(-38px);
    }
  }

  /* ------------------- Our Clients --------------------- */
  .our-clients {
    .client-logo .img-wrap {
      img {
        width: 180px;
      }
    }
  }

  /* -----------Service Page--------------- */
  .two-column-layout {
    .flex-container {
      .layout-left-block {
        max-width: 580px;
      }

      .layout-right-block {
        max-width: 570px;
      }
    }
  }
}

@media (max-width: 1439.98px) {

  /* ---------------- Common Heading CSS ---------------- */
  [class*="heading-"],
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 30px;
  }

  /* ---------------- Commom Ul Li ------------------ */
  main ul>li,
  main ul.wp-block-list>li {
    padding-left: 24px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  /* ********* BREADCRUMB *********  */
  ul.woo_breadcums {
    margin-bottom: 20px;
  }

  /* ------------- Common Button Css ------------- */
  /* button, */
  .button,
  button[type="submit"],
  input[type="submit"] {
    font-size: 16px;
    padding: 12px 12px;
    min-width: 165px;
    min-height: 48px;
    gap: 10px;
  }

  .btnlist {
    gap: 12px;
  }

  .action-callbtn {
    & .call-info {
      padding-left: 6px;
    }
  }

  /* ---------------- Divider ---------------- */
  .divider {
    margin: 35px 0;
  }

  /* ---------------- || Image Content Section || ---------------- */

  .img-content-sec .left-img-side {
    width: 580px;
  }

  .img-content-sec .right-content-side {
    width: calc(100% - 580px);
    max-width: 460px;
  }

  .img-content-sec .flex-container:has(+ .flex-container) {
    margin-bottom: 80px;
  }

  .img-content-sec.hm-intro {
    .btn-knowmore {
      margin-bottom: 50px;
    }
  }

  .intro-sec.img-content-sec .right-content-side {
    width: calc(100% - 530px);
    max-width: 530px;
  }

  .intro-sec.img-content-sec .left-img-side {
    width: 530px;
  }

  /* ------------------ Section Top Bottom Design --------------------- */
  .airmax-top-design {
    &::before {
      width: 45px;
      height: 130px;
      transform: translateY(-32px);
    }
  }

  /* ------------------- Our Team Member Img Content Sec ------------------- */
  .our-team-member {
    padding: 160px 0 80px;
  }

  /* ------------------- Our Clients --------------------- */
  .our-clients {
    .client-logo .img-wrap {
      img {
        width: 180px;
      }
    }
  }

  /* -----------Service Page--------------- */
  .two-column-layout {
    .flex-container {
      .layout-left-block {
        max-width: 510px;
      }

      .layout-right-block {
        max-width: 540px;
      }
    }
  }
}

@media (max-width: 1199.98px) {

  /* ---------------- Common Heading CSS ---------------- */
  [class*="heading-"],
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 15px;
  }

  /* ------------- Common Button Css ------------- */
  /* button, */
  .button,
  button[type="submit"],
  input[type="submit"] {
    padding: 10px;
    gap: 8px;
  }

  .btnlist {
    gap: 8px;
  }

  /* --------------- Common P tag --------------- */
  p {
    line-height: 28px;
    margin-bottom: 18px;
  }

  p {
    &:has(+ *) {
      margin-bottom: 25px;
    }
  }

  /* ---------------- Divider ---------------- */
  .divider {
    margin: 25px 0;
  }

  /* ---------------- || Image Content Section || ---------------- */
  .img-content-sec .left-img-side {
    width: 450px;
  }

  .img-content-sec .right-content-side {
    width: calc(100% - 450px);
    max-width: 440px;
  }

  .img-content-sec .flex-container:has(+ .flex-container) {
    margin-bottom: 60px;
  }

  .img-content-sec.hm-intro {
    .btn-knowmore {
      margin-bottom: 30px;
    }
  }

  .intro-sec.img-content-sec .right-content-side {
    width: calc(100% - 470px);
    max-width: 425px;
  }

  .intro-sec.img-content-sec .left-img-side {
    width: 470px;
  }

  /* ------------------ Section Top Bottom Design --------------------- */
  .airmax-top-design {
    &::before {
      width: 39px;
      height: 110px;
      transform: translateY(-32px);
    }
  }

  .airmax-bottom-design {
    &::before {
      width: 39px;
      height: 110px;
      transform: translateY(75px);
    }
  }

  /* ------------------- Our Team Member Img Content Sec ------------------- */
  .our-team-member {
    padding: 130px 0 70px;
  }

  /* ------------------- Our Clients --------------------- */
  .our-clients {
    .client-logo .img-wrap {
      img {
        width: 160px;
      }
    }
  }

  /* -----------Service Page--------------- */
  .two-column-layout {
    .flex-container {
      .layout-left-block {
        max-width: 430px;
      }

      .layout-right-block {
        max-width: 450px;
      }
    }
  }
}

@media (max-width: 991.98px) {

  /* ---------------- Common Heading CSS ---------------- */
  [class*="heading-"],
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 12px;
  }

  /* ------------------ Divider ------------------ */
  .divider {
    margin: 40px 0;
  }

  /* ---------------- || Image Content Section || ---------------- */
  .img-content-sec .flex-container {
    gap: 30px;
    flex-direction: column-reverse;
  }

  .img-content-sec .left-img-side {
    width: 100%;
    text-align: center;
  }

  .intro-sec.img-content-sec .right-content-side,
  .img-content-sec .right-content-side {
    width: 100%;
    max-width: 100%;
  }

  .hm-intro.img-content-sec .right-content-side .img-wrap {
    width: 100%;
    text-align: center;
  }

  .img-content-sec .flex-container:has(+ .flex-container) {
    margin-bottom: 40px;
  }

  .intro-sec.img-content-sec .left-img-side {
    width: 100%;
    margin-inline: auto;
  }

  /* -------------- Form in Img Content Section ----------------- */

  /* .img-content-sec .right-content-side .row:nth-last-child(2) .form-group {
    margin-bottom: 30px;
  } */

  /* ------------------ Section Top Bottom Design --------------------- */
  .airmax-top-design {
    &::before {
      width: 30px;
      height: 90px;
      transform: translateY(-22px);
    }
  }

  .airmax-bottom-design {
    &::before {
      width: 30px;
      height: 90px;
      transform: translateY(70px);
    }
  }

  /* ---------------------- */
  ul.woo-breadcums li span {
    font-size: 15px;
  }

  ul.woo-breadcums li a {
    font-size: 15px;
    margin: 0px 30px 0 0;
  }

  ul.woo-breadcums li a:after {
    right: -22px;
  }

  ul.woo-breadcums li {
    line-height: 100%;
  }

  /* ------------------ slick-dotted ------------------- */
  .slick-slider .slick-dots li {
    margin: 0 5px;
  }

  .slick-slider .slick-dots li,
  .slick-slider .slick-dots li button {
    width: 14px;
    height: 14px;
  }

  .slick-slider .slick-dots li button:before {
    width: 14px;
    height: 14px;
  }

  /* -------------------- Instaram Sec ---------------------- */
  .instagram-sec {
    & .intro-sec {
      .insta-btnlist {
        &.desk-inst-btn {
          display: none;
        }

        &.mobile-inst-btn {
          justify-content: center;
        }
      }
    }

    .instagram-wraper {
      margin-bottom: 30px;
    }
  }

  /* ------------------- Our Team Member Img Content Sec ------------------- */
  .our-team-member {
    padding: 100px 0 70px;
  }

  /* ------------------- Our Clients --------------------- */
  .our-clients {
    .client-logo .img-wrap {
      img {
        width: 140px;
      }
    }
  }

  /* -----------Service Page--------------- */
  .two-column-layout {
    .flex-container {
      gap: 20px;

      .layout-left-block {
        width: 100%;
        max-width: 100%;
      }

      .layout-right-block {
        width: 100%;
        max-width: 100%;
      }
    }
  }
}

@media (max-width: 767.98px) {

  /* ********* BREADCRUMB *********  */
  ul.woo_breadcums {
    margin-bottom: 20px;
  }

  /* ---------------- Common Button Css ---------------- */
  .mainheader {
    & .header-container {
      & .btnlist {
        & .action-callbtn {
          & .call-icon {
            img {
              width: 16px;
            }
          }
        }
      }
    }
  }

  /* -------------------------------------------------- */
  main.homepg ul>li:after {
    top: 4px;
    width: 20px;
    height: 20px;
  }

  /* --------------- common ul li --------------- */
  ul {
    &:has(+ *) {
      margin-bottom: 20px;
    }
  }

  main ul>li,
  main ul.wp-block-list>li {
    font-size: 16px;
    line-height: 1.1;
    padding-left: 28px;
    margin-bottom: 12px;
  }

  /* ------------- Common Button Css ------------- */
  /* button, */
  .button,
  button[type="submit"],
  input[type="submit"] {
    padding: 10px 12px;
    min-width: 200px;
    gap: 5px;
  }

  /* ---------------- || Image Content Section || ---------------- */
  .img-content-sec .flex-container:has(+ .flex-container) {
    margin-bottom: 30px;
  }

  /* ------------------ Section Top Bottom Design --------------------- */
  .airmax-top-design {
    &::before {
      width: 25px;
      height: 72px;
      transform: translateY(-25px);
    }
  }

  .airmax-bottom-design {
    &::before {
      width: 25px;
      height: 72px;
      transform: translateY(50px);
    }
  }

  /* ------------------ Divider ------------------ */
  .divider {
    margin: 30px 0;
  }

  /* ------------------ Slick Slider Common ------------------ */
  .slick-prev:before,
  .slick-next:before {
    width: 30px;
    height: 30px;
  }

  /* ------------------- Our Team Member Img Content Sec ------------------- */
  .our-team-member {
    padding: 80px 0 40px;
  }

  /* ------------------- Our Clients --------------------- */
  .our-clients {
    .intro-sec.mb-30 {
      margin-bottom: 20px;
    }

    .client-logo .img-wrap {
      img {
        width: 140px;
      }
    }
  }
}

@media (max-width: 575.98px) {

  /* ---------------- Common Heading CSS ---------------- */
  [class*="heading-"],
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 10px;
    line-height: 1.15;
  }

  /* ------------- Common Button Css ------------- */
  .btnlist {
    gap: 12px;
  }

  /* button, */
  .button,
  button[type="submit"],
  input[type="submit"] {
    gap: 5px;
    font-size: 14px;
    padding: 8px 10px;
    min-height: 42px;
    min-width: 145px;
  }

  .action-callbtn {
    & .call-icon {
      display: none;
    }

    & .call-info {
      padding-left: 0;
    }
  }

  /* ------------------ Form Submit Button ---------------- */
  .form-group {
    input[type="submit"] {
      min-height: 45px;
      font-size: 16px;
    }
  }

  /* --------------- Common P tag --------------- */
  p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* ------------- Common Form Css -------------- */
  .form-control,
  input[type="text"],
  input[type="email"],
  select,
  textarea,
  input[type="number"],
  input[type="tel"],
  input[type="file"] {
    min-height: 40px;
    padding: 12px 15px;
  }

  .form-group.width100.submit {
    margin-top: 10px;
  }

  .width50 {
    width: 100%;
  }

  /* ------------ form common css -------------- */
  form .form-group label {
    margin-bottom: 6px;
  }

  .form-control,
  form input[type="text"],
  form input[type="email"],
  form select,
  form textarea,
  form input[type="number"],
  form input[type="tel"],
  form input[type="file"],
  textarea,
  select.form-control {
    width: 100%;
    padding: 10px;
    min-height: 40px;
  }

  textarea.form-control {
    min-height: 80px;
  }

  /* ------------------- Image Content Section -------------------- */
  .img-content-sec .flex-container {
    gap: 20px;
  }

  /* ----------------- Common Intro Sec ------------------- */
  .intro-sec {
    .heading-sm-title {
      font-size: 16px;
      line-height: 1.1;
      margin-bottom: 3px;
    }
  }

  /* ------------------ Divider ------------------ */
  .divider {
    margin: 20px 0;
  }

  /* -------------------- Instaram Sec ---------------------- */
  .instagram-sec {
    & .intro-sec {
      .insta-btnlist {
        .see-more {
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          font-size: 14px;
          font-weight: 400;
          background: var(--black);
          color: var(--white);
          border-color: var(--black);
          padding: 8px 10px;
          min-height: 42px;
          min-width: 145px;
          border-radius: 100px;

          &:hover {
            color: var(--black);
            background-color: var(--white);
            border-color: var(--black);
          }
        }
      }
    }
  }

  /* ------------------- Our Team Member Img Content Sec ------------------- */
  .our-team-member {
    padding: 70px 0 30px;
  }

  /* ---------------- Commom Ul Li ------------------ */
  main ul>li,
  main ul.wp-block-list>li {
    padding-left: 24px;
    margin-bottom: 10px;
  }

  /* ------------------- Our Clients --------------------- */
  .our-clients {
    .intro-sec.mb-30 {
      margin-bottom: 20px;
    }

    .client-logo .img-wrap {
      img {
        width: 130px;
      }
    }
  }
}

@media (max-width: 480px) {
  .btnlist {
    & img {
      display: none;
    }
  }

  /* ------------------- Our Team Member Img Content Sec ------------------- */

  .team-profile {
    padding: 35px 25px 20px 45px;

    & .member-name {
      font-size: 18px;

      &::after {
        left: -45px;
        width: calc(100% - 86%);
      }
    }

    .member-designation {
      font-size: 14px;
    }
  }
}