/* @import "./fontawesome.min.css"; */

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist/Urbanist-ExtraBold.woff2') format('woff2'),
    url('../fonts/Urbanist/Urbanist-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist/Urbanist-Bold.woff2') format('woff2'),
    url('../fonts/Urbanist/Urbanist-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist/Urbanist-Light.woff2') format('woff2'),
    url('../fonts/Urbanist/Urbanist-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist/Urbanist-Regular.woff2') format('woff2'),
    url('../fonts/Urbanist/Urbanist-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist/Urbanist-ExtraLight.woff2') format('woff2'),
    url('../fonts/Urbanist/Urbanist-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist/Urbanist-SemiBold.woff2') format('woff2'),
    url('../fonts/Urbanist/Urbanist-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist/Urbanist-Medium.woff2') format('woff2'),
    url('../fonts/Urbanist/Urbanist-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist/Urbanist-Thin.woff2') format('woff2'),
    url('../fonts/Urbanist/Urbanist-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist/Urbanist-MediumItalic.woff2') format('woff2'),
    url('../fonts/Urbanist/Urbanist-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist/Urbanist-Black.woff2') format('woff2'),
    url('../fonts/Urbanist/Urbanist-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

a {
  font-family: var(--font-urbanist);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

a:focus-visible {
  border: none;
  outline: none;
}

input,
input:focus,
input:focus-visible,
button:focus,
button:focus-visible {
  outline: none;
  border: none;
}

ul {
  font-family: var(--font-urbanist);
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
figure,
ol,
ul,
dl {
  font-family: var(--font-urbanist);
  margin: 0;
  padding: 0;
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

:focus {
  outline: 0;
}

img {
  display: block;
  width: 100%;
}

text,
input {
  padding: 10px;
}

textarea {
  padding: 10px;
  width: 100% !important;
}

:root {
  --font-urbanist: 'Urbanist';
  --black: #000000;
  --nero-black: #272727;
  --gray: #525252;
  --dark-grey: #5D5D5D;
  --lucky-gray: #797979;
  --azure-blue: #0D4972;
  --sky-blue: #9CD6EF;
  --alice-blue: #E5F7FF;
  --silver-sand: #C8C4C4;
  --philippine-silver: #B5B5B5;
  --light-gray: #DADADA;
  --very-light-gray: #E0E0E0;
  --off-white: #FDFDFD;
  --smoke-white: #F8F8F8;
  --white: #fff;
}



.container {
  width: 100%;
  max-width: 1460px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Navbar */
nav {
  position: relative;

}

nav.scrolled {
  position: fixed;
  top: 0px;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
  z-index: 99;
}


.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 18px 0px; */
}

.navbar-toggler {
  display: none;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: end;
  gap: 120px;
}

.navbar-collapse ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.navbar-collapse ul li a {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--lucky-gray);
  padding: 37px 0px;
  border-bottom: 2px solid var(--white);
}

.navbar-collapse ul li:hover a,
.navbar-collapse ul li.current-menu-item a {
  color: var(--azure-blue);
  border-bottom: 2px solid var(--azure-blue);
}

.cta-btn {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--azure-blue);
  background-color: var(--sky-blue);
  padding: 19px 20px;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--sky-blue);
  transition: 0.5s all ease-in-out;
}

.cta-btn:hover {
  background-color: transparent;
  border: 1px solid var(--azure-blue);

}

.navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background-color: transparent;
  border: 0px;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--azure-blue);
  border-radius: 10px;
}

.navigation .close_btn {
  display: none;
}

.breadcrumbs.container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  vertical-align: middle;
  color: var(--lucky-gray);

}

.breadcrumbs.container span a {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  vertical-align: middle;
  color: var(--lucky-gray);
}

.breadcrumbs.container span>span {
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--azure-blue);
  vertical-align: middle;
}


@media screen and (max-width : 1300px) {
  .navbar-collapse {
    gap: 40px;
  }

  .navbar-collapse ul {
    gap: 20px;
  }

  .navbar-collapse {
    gap: 30px;
  }
}

@media screen and (max-width : 1199px) {
  .navbar-collapse ul li a {
    font-size: 16px;
    line-height: 20px;
  }

  .cta-btn {
    gap: 8px;
    padding: 16px 15px;
  }

}

@media screen and (max-width : 1024px) {
  .navigation {
    padding: 18px 0px;
  }

  .navbar-toggler {
    display: flex;
  }

  .navbar-collapse,
  .navbar-collapse ul {
    display: none;
  }

  .navbar-collapse.open-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 999;
    justify-content: start;
    align-items: start;
    padding: 40px 20px;
  }

  .navbar-collapse.open-nav ul {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .navbar-collapse ul li a {
    padding: 0px;
  }

  .navigation .navbar-collapse.open-nav .cta-btn {
    margin: 0 auto;
  }

  .navigation .close_btn.open-nav {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
  }

  .navbar-brand {
    width: 100%;
  }

  .navbar-brand img {
    width: auto;
  }

  .navbar-collapse {
    width: auto;
  }

  .navigation {
    gap: 20px;
  }
}

@media screen and (max-width : 768px) {
  .cta-btn {
    font-size: 16px;
    padding: 12px 16px;
  }
}

/* section comman  */

.primary_btn {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
  background-color: var(--azure-blue);
  padding: 17px 36px;
  border-radius: 5px;
  border: 1px solid var(--azure-blue) !important;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.primary_btn:hover {
  color: var(--azure-blue);
  background-color: transparent;
  border: 1px solid var(--azure-blue);
}

.secondary_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  background-color: var(--white);
  padding: 17px 36px;
  border-radius: 5px;
  border: 1px solid var(--white);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.secondary_btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/wp-content/uploads/2025/05/arrow-up-right_black.svg");
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotate(0);
  transition: 0.3s ease-in-out;

}

.secondary_btn:hover::after {
  transform: rotate(45deg);
}

.section_heading {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.section_heading h2 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: var(--black);
}

.section_heading span {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 11px;
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: var(--azure-blue);
  /* text-transform: uppercase; */
  text-align: center;
}

.section_heading span::before,
.section_heading span::after {
  content: "";
  border: 1px solid var(--azure-blue);
  display: block;
  width: 136px;
}


@media only screen and (max-width : 1024px) {
  .primary_btn {
    padding: 14px 24px;
  }

  .secondary_btn {
    padding: 14px 26px;
  }
}


@media screen and (max-width : 768px) {

  .primary_btn,
  .secondary_btn {
    padding: 12px 22px;
  }

  .section_heading h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .section_heading span {
    font-size: 20px;
    line-height: 24px;
  }

  .section_heading span::before,
  .section_heading span::after {
    width: 80px;
  }

}

@media screen and (max-width : 575px) {
  .section_heading {
    gap: 20px;
    margin-bottom: 24px;
  }

  .section_heading h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .primary_btn,
  .secondary_btn {
    padding: 10px 15px !important;
    font-size: 14px;
    line-height: 20px;
  }

  .section_heading span {
    font-size: 18px;
    line-height: 22px;
  }

  .section_heading span::before,
  .section_heading span::after {
    max-width: 30px;
    width: 100%;
  }
}


/* banner section */

.main-banner {
  background: linear-gradient(90.02deg, #E2F6FF -115.78%, #FFFFFF 100.19%);
}

.banner_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 60px 0px;
}

.banner_content .banner_left {
  width: 100%;
  max-width: 666px;
}

.banner_left .banner_heading span.sub-title {
  display: inline-block;
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--azure-blue);
  padding: 9px 29px;
  border-radius: 30px;
  background-color: var(--white);
  margin-bottom: 15px;
}


.banner_left .banner_heading h1 {
  font-family: var(--font-urbanist);
  font-weight: 800;
  font-size: 48px;
  line-height: 59px;
  color: var(--black);
  margin-bottom: 16px;
}

.banner_left .banner_heading h1 span {
  color: var(--azure-blue);
}

.banner_left .banner_heading p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 20px;
  line-height: 31px;
  color: var(--dark-grey);
  margin-bottom: 33px;
}

.banner_btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.banner_content .banner_right {
  width: 100%;
  max-width: 722px;
  border: 13px solid var(--white);
  border-radius: 20px;
  box-shadow: -6px 4px 11px 0px rgba(0, 0, 0, 0.05);
}

.banner_content .banner_right .slide_item {
  position: relative;
  overflow: hidden;
}

.banner_content .banner_right .slide_item .banner_slide_image {
  /* border-radius: 12px; */
  position: relative;
  padding-top: 81.467%;
}

.banner_content .banner_right .slide_item .banner_slide_image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.banner_content .banner_right .slide_item .banner_slide-content {
  position: absolute;
  inset: 0px;
  display: flex;
  align-items: end;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  padding: 30px;
  border-radius: 12px;
}

.banner_content .banner_right .slide_item .banner_slide-content h3 {
  font-family: var(--font-urbanist);
  font-weight: 800;
  font-size: 35px;
  line-height: 52.62px;
  color: var(--white);
  max-width: 565px;
  width: 100%;
}

.banner_slide_list .slick-list.draggable {
  border-radius: 12px;
}


.banner_slide_list .slick-next {
  right: -25px;
  padding: 15px;
  background-color: var(--white);
  width: 53px;
  height: 53px;
  z-index: 1;
  border-radius: 5px;
}

.banner_slide_list .slick-prev {
  left: -25px;
  padding: 15px;
  background-color: var(--white);
  width: 53px;
  height: 53px;
  z-index: 1;
  border-radius: 5px;

}

.banner_slide_list .slick-next:before {
  content: "";
  display: block;
  background-image: url('/wp-content/uploads/2025/05/arrow-left_blue.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}

.banner_slide_list .slick-prev:before {
  content: "";
  display: block;
  background-image: url('/wp-content/uploads/2025/05/arrow-left_blue.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;

}

.slick-next:focus::before,
.slick-next:hover::before {
  background-image: url('/wp-content/uploads/2025/05/arrow-left_white.svg');
  transform: rotate(0deg);
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  background-color: var(--azure-blue) !important;
}

.slick-prev:focus::before,
.slick-prev:hover::before {
  background-image: url('/wp-content/uploads/2025/05/arrow-left_white.svg');
  transform: rotate(180deg);
}


.banner_slide_list .slick-dots {
  display: none;
}



@media only screen and (max-width : 1280px) {
  .banner_content .banner_right {
    max-width: 640px;
    width: 100%;
  }
}

@media only screen and (max-width : 1199px) {
  .banner_content .banner_right {
    width: 50%;
  }

  .banner_left .banner_heading h1 {
    font-size: 41px;
    line-height: 50px;
  }

  .banner_left .banner_heading p {
    font-size: 18px;
    line-height: 24px;
  }

  .banner_content .banner_right .slide_item .banner_slide-content h3 {
    font-size: 30px;
    line-height: 36px;
  }
}



@media only screen and (max-width : 991px) {
  .banner_left .banner_heading h1 {
    font-size: 31px;
    line-height: 40px;
  }

  .banner_left .banner_heading p {
    font-size: 18px;
    line-height: 20px;
  }

  .banner_content .banner_right .slide_item .banner_slide-content h3 {
    font-size: 28px;
    line-height: 35px;
  }
}


@media only screen and (max-width : 768px) {
  .banner_content {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 40px;
  }

  .banner_content .banner_left,
  .banner_content .banner_right {
    max-width: 100%;
    width: 100%;
  }

  .cmn_banner_heading h1 {
    font-size: 35px !important;
    line-height: 42px !important;
  }

  .banner_content .banner_right .slide_item .banner_slide-content h3 {
    font-size: 24px;
    line-height: 30px;
  }
}

@media only screen and (max-width : 575px) {
  .banner_left .banner_heading p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 24px;
  }

  .banner_slide_list .slick-prev {
    left: -26px;
    padding: 9px;
    width: 40px;
    height: 40px;
  }

  .banner_slide_list .slick-next {
    right: -26px;
    padding: 9px;
    width: 40px;
    height: 40px;
  }
}


/* what we do section */

.wwd_section {
  padding: 60px 0px;
  background-color: var(--off-white);
}

.wwd_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.wwd_list .wwd_item {
  max-width: calc((100% / 3) - 14px);
  width: 100%;
}

.wwd_list .wwd_item .wwd_image {
  position: relative;
  padding-top: 68.364%;
  border-radius: 10px;
}

.wwd_list .wwd_item .wwd_image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.wwd_content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background-color: var(--white);
  border-radius: 10px;
  max-width: 95%;
  width: 100%;
  margin: -65px auto 0;
}

.wwd_content .wwd_content_inner h3 {
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: var(--black);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 2px dashed rgba(229, 229, 229, 1)
}

.wwd_content .wwd_content_inner p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: var(--lucky-gray);
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.wwd_content a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--azure-blue);
}

.wwd_content a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/wp-content/uploads/2025/05/arrow-up-right_blue.svg");
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotate(0);
  transition: 0.3s ease-in-out;
}

.wwd_content a:hover::after {
  transform: rotate(45deg);
}

@media only screen and (max-width : 1280px) {
  .wwd_content .wwd_content_inner h3 {
    min-height: 73px;
  }
}

@media only screen and (max-width : 1024px) {
  .wwd_content .wwd_content_inner h3 {
    font-size: 20px;
    line-height: 24px;
    min-height: 61px;
  }

  .wwd_content {
    margin: -50px auto 0;
  }
}


@media only screen and (max-width : 768px) {
  .wwd_list .wwd_item {
    max-width: calc((100% / 2) - 10px);
    width: 100%;
  }
}

@media only screen and (max-width : 575px) {
  .wwd_section {
    padding: 40px 0px;
  }

  .wwd_list .wwd_item {
    max-width: 100%;
    width: 100%;
  }

  .wwd_content .wwd_content_inner h3 {
    min-height: unset;
  }
}

/* about section */

.about_section {
  padding: 60px 0px;
}



.about_main .about_content {
  display: flex;
  align-items: start;
  gap: 20px;
}

.about_main .about_content .about_left,
.about_main .about_content .about_right {
  width: 100%;
  max-width: 50%;
}

.about_content .about_left .left_inner_text h2,
.about_content .about_right .about_right_inner h2 {
  display: inline-block;
  position: relative;
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 32px;
  line-height: 43px;
  color: var(--black);
  width: max-content;
  margin-bottom: 20px;
}

.about_content .about_left .left_inner_text h2:after,
.about_content .about_right .about_right_inner h2::after {
  content: "";
  position: absolute;
  border-bottom: 10px solid var(--sky-blue);
  left: 0;
  right: 0;
  bottom: 9px;
  z-index: -1;
}

.about_content .about_left .left_inner_text p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: var(--lucky-gray);
  margin-bottom: 18px;
}


.about_content .about_left_list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about_content .about_left_list .about_left_item {
  max-width: calc((100% / 2) - 10px);
  width: 100%;
  background-color: var(--alice-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 34px 30px;
  border-radius: 20px;
}

.about_content .about_left_list .about_left_item h4 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: var(--azure-blue);
  text-align: center;
}

.about_content .about_left_list .about_left_item p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--nero-black);
  text-align: center;
}

.about_right_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about_right_list .about_right_item {
  display: flex;
  gap: 20px;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 24px;
}

.about_right_list .about_right_item .abt_right_image {
  width: 100%;
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--smoke-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_right_list .about_right_item .abt_right_image img {
  width: 100%;
  max-width: 35px;
  height: 35px;
}


.about_right_list .about_right_item .abt_right_content {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 13px;
}

.about_right_list .about_right_item .abt_right_content h4 {
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: var(--black);
}

.about_right_list .about_right_item .abt_right_content p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--lucky-gray);
}


@media only screen and (max-width : 1024px) {
  .about_content .about_left .left_inner_text p {
    font-size: 20px;
    line-height: 24px;
  }

  .about_content .about_left_list .about_left_item p {
    font-size: 16px;
    line-height: 20px;
  }

  .about_content .about_left_list .about_left_item h4 {
    font-size: 24px;
    line-height: 29px;
  }

}

@media only screen and (max-width : 768px) {
  .about_main .about_content {
    flex-direction: column;
  }

  .about_main .about_content .about_left,
  .about_main .about_content .about_right {
    max-width: 100%;
    width: 100%;
  }
}

@media only screen and (max-width : 575px) {
  .about_section {
    padding: 40px 0px;
  }

  .about_content .about_left .left_inner_text h2,
  .about_content .about_right .about_right_inner h2 {
    font-size: 24px;
    line-height: 45px;
    margin-bottom: 12px;
  }

  .about_content .about_left .left_inner_text p {
    font-size: 18px;
    line-height: 22px;
  }

  .about_right_list .about_right_item .abt_right_content h4 {
    font-size: 20px;
    line-height: 24px;
  }

  .about_content .about_left .left_inner_text p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media only screen and (max-width : 480px) {
  .about_content .about_left_list .about_left_item {
    max-width: 100%;
    width: 100%;
  }

  .about_right_list .about_right_item {
    flex-direction: column;
    gap: 12px;
  }
}

/* machine_section */

.machine_section {
  padding: 60px 0px;
}

.machine_section .section_heading {
  box-sizing: border-box;
}

.machine_content h4 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  vertical-align: middle;
  margin-top: 16px;
}

.machine_slide_list {
  margin-bottom: 33px;
}

.machine_slide_list .slick-slide {
  display: block;
  /* width: 100% !important; */
}

.machine_slide_list .slick-track {
  display: flex;
  gap: 10px;
}

.machine_item {
  padding: 16px;
  border-radius: 10px;
  background-color: var(--white);
}

.machine-image {
  position: relative;
  padding-top: 65.179%;
  border-radius: 10px;
}

.machine-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.machine_slide_list {
  position: relative;
}

/* Common styles */
.machine_slide_list .slick-prev,
.machine_slide_list .slick-next {
  position: absolute;
  bottom: -90px;
  padding: 15px;
  background-color: var(--smoke-white);
  width: 53px;
  height: 53px;
  z-index: 1;
  border-radius: 5px;
  top: unset;
}

/* Center-based arrow positioning */
.machine_slide_list .slick-prev {
  left: 50%;
  transform: translateX(-63px);
  /* 53px/2 + 30px gap */
}

.machine_slide_list .slick-next {
  left: 50%;
  transform: translateX(10px);
  /* 30px gap from center */
}

.machine_slide_list .slick-next:before {
  content: "";
  display: block;
  background-image: url('/wp-content/uploads/2025/05/arrow-left_blue.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}

.machine_slide_list .slick-prev:before {
  content: "";
  display: block;
  background-image: url('/wp-content/uploads/2025/05/arrow-left_blue.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
}

.slick-next:focus::before,
.slick-next:hover::before {
  background-image: url('/wp-content/uploads/2025/05/arrow-left_white.svg');
  transform: rotate(0deg);
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  background-color: var(--azure-blue) !important;
}

.slick-prev:focus::before,
.slick-prev:hover::before {
  background-image: url('/wp-content/uploads/2025/05/arrow-left_white.svg');
  transform: rotate(180deg);
}

.machine_slide_list .slick-dots {
  display: none;
}

.machine_slide_list .slick-list.draggable {
  margin-bottom: 33px;
}


@media screen and (max-width : 991px) {
  .machine_content h4 {
    font-size: 20px;
    line-height: 24px;
  }
}

@media screen and (max-width : 768px) {
  .machine_content h4 {
    font-size: 18px;
    line-height: 22px;
  }

  .machine_section .section_heading {
    padding: 0px 20px;
  }
}

@media screen and (max-width : 575px) {

  .machine_section {
    padding: 40px 0px 60px;
  }

  .machine_slide_list .slick-list.draggable {
    margin-bottom: 20px;
  }

  .machine_content h4 {
    font-size: 16px;
    line-height: 20px;
  }

  .machine_slide_list .slick-prev,
  .machine_slide_list .slick-next {
    bottom: -70px;
    padding: 10px;
    width: 43px;
    height: 43px;
  }

  .machine_slide_list .slick-prev {
    transform: translateX(-53px);
  }

  .machine_slide_list .slick-track {
    gap: 0px;
  }
}

/* Testimonial section */

.testimonial {
  position: relative;
  background-image: url('http://maxtekk.wp.demoproject.info/wp-content/uploads/2025/05/slide1-scaled.png');
  background-position: center;
  min-height: 400px;
  background-size: cover;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
  margin-top: 60px;
}

.testimonial::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #00000080;

}

.testimonial_main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  gap: 20px;
}

.testimonial_head {
  max-width: 580px;
  width: 100%;
}

.testimonial_head h2 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: var(--white);
  margin-bottom: 16px;
}

.testimonial_head p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: var(--white);
}


.customer_review {
  max-width: 700px;
  width: 100%;
  margin-bottom: -220px;
}

.customer_item {
  background-color: var(--smoke-white);
  padding: 40px;
  min-height: 320px;
  height: auto;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}


.customer_item .review_content p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--black);
}

.review_intro {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

.review_intro::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-image: url('/wp-content/uploads/2025/05/Quote-Icon.svg');
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.review_intro .customer_image img {
  max-width: 64px;
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}

.review_intro p {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: var(--black);
}

.customer_review_list .slick-next {
  right: -15px;
  padding: 15px;
  background-color: var(--white);
  width: 53px;
  height: 53px;
  z-index: 1;
  border-radius: 5px;
}

.customer_review_list .slick-next:focus,
.customer_review_list .slick-next:hover,
.customer_review_list .slick-prev:focus,
.customer_review_list .slick-prev:hover {
  background-color: #FFEDED !important;
}

.customer_review_list .slick-next:focus::before,
.customer_review_list .slick-next:hover::before {
  transform: rotate(180deg);
  background-image: url(/wp-content/uploads/2025/05/arrow-left_blue.svg);
}

.customer_review_list .slick-prev:focus::before,
.customer_review_list .slick-prev:hover::before {
  background-image: url(/wp-content/uploads/2025/05/arrow-left_blue.svg);
  transform: rotate(0deg);
}

.customer_review_list .slick-prev {
  left: -25px;
  padding: 15px;
  background-color: var(--white);
  width: 53px;
  height: 53px;
  z-index: 1;
  border-radius: 5px;

}

.customer_review_list .slick-next:before {
  content: "";
  display: block;
  background-image: url('/wp-content/uploads/2025/05/arrow-left_blue.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}

.customer_review_list .slick-prev:before {
  content: "";
  display: block;
  background-image: url('/wp-content/uploads/2025/05/arrow-left_blue.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;

}

.slick-next:focus::before,
.slick-next:hover::before {
  background-image: url('/wp-content/uploads/2025/05/arrow-left_white.svg');
  transform: rotate(0deg);
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  background-color: var(--azure-blue) !important;
}

.slick-prev:focus::before,
.slick-prev:hover::before {
  background-image: url('/wp-content/uploads/2025/05/arrow-left_white.svg');
  transform: rotate(180deg);
}

@media screen and (max-width : 1280px) {
  .customer_review {
    max-width: 620px;
  }
}

@media screen and (max-width : 1199px) {
  .testimonial_head p {
    font-size: 20px;
    line-height: 24px;
  }

  .customer_item .review_content p {
    font-size: 18px;
    line-height: 22px;
  }

  .review_intro::after {
    width: 40px;
    height: 40px;
    bottom: 5px;
  }

}

@media screen and (max-width : 1024px) {
  .testimonial_main {
    flex-direction: column;
    padding: 40px 0px 0px;
  }

  .customer_review {
    max-width: 700px;
  }

  .customer_review {
    margin-bottom: -100px;
  }

  .customer_item {
    min-height: 280px;
    gap: 20px;
  }

  .customer_review_list .slick-prev {
    left: -15px;
  }

  .customer_review_list .slick-next,
  .customer_review_list .slick-prev {
    padding: 4px;
    width: 43px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .testimonial_head h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .review_intro p {
    font-size: 20px;
    line-height: 24px;
  }

  .review_intro .customer_image img {
    max-width: 54px;
    height: 54px;
  }

  .customer_item .review_content p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width : 575px) {
  .testimonial {
    margin-top: 40px;
  }

  .testimonial_head h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .testimonial_head p {
    font-size: 16px;
    line-height: 20px;
  }

  .customer_item {
    padding: 30px;
  }

  .review_intro p {
    font-size: 18px;
    line-height: 22px;
  }

  .review_intro .customer_image img {
    max-width: 44px;
    height: 44px;
  }

  .review_intro::after {
    width: 30px;
    height: 30px;
  }

  .customer_review_list .slick-next,
  .customer_review_list .slick-prev {
    width: 33px;
    height: 33px;
  }

  .customer_review_list .slick-prev:before,
  .customer_review_list .slick-next:before {
    width: 18px;
    height: 18px;
  }
}

/* contact us */
.contact_section {
  background-color: var(--off-white);
  padding: 60px 0;
}

.contact_main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contact_heading h2 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: -1.35px;
  color: var(--azure-blue);
}

.contact_details h5 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: var(--black);
  margin-bottom: 10px;
}

.contact_details p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
}

.contact_details a {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-decoration: underline;
  color: var(--azure-blue);
}

.loaction_info {
  margin-bottom: 34px;
}

.contact_more {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.contact_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  max-width: 700px;
  width: 100%;
}

.contact_right {
  max-width: 582px;
  width: 100%;
  padding: 28px;
  border: 1px solid var(--philippine-silver);
  background-color: var(--white);
}

.contact_right h2 {
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: var(--black);
  margin-bottom: 16px;
}

.contact_right .contact_form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact_right .contact_form form span input,
.contact_right .contact_form form span textarea {
  width: 100%;
  border: 0px;
  border-bottom: 1px solid var(--silver-sand);
  padding: 28px 0px;
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--gray);
}

.contact_right .contact_form form span textarea {
  min-height: 172px;
  max-height: 172px;
  width: 100% !important;
}

.contact_right .contact_form form input.primary_btn {
  width: max-content;
}

.origin_tag h1 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 120px;
  line-height: 144px;
  color: var(--azure-blue);
  -webkit-text-fill-color: var(--white);
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--azure-blue);
}

.contact_right .contact_form form .wpcf7-not-valid-tip {
  padding-top: 8px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  margin: 5px 0px;
}

.contact_more .social_icon {
  display: flex;
  gap: 6px;
}

@media screen and (max-width : 1280px) {
  .origin_tag h1 {
    font-size: 100px;
    line-height: 120px;
  }
}

@media screen and (max-width : 1199px) {
  .origin_tag h1 {
    font-size: 80px;
    line-height: 120px;
  }

  .contact_heading h2 {
    font-size: 40px;
    line-height: 45px;
  }
}

@media screen and (max-width : 1024px) {

  .contact_right h2,
  .contact_heading h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .contact_more {
    margin-bottom: 12px;
  }
}

@media screen and (max-width : 991px) {
  .origin_tag h1 {
    font-size: 70px;
    line-height: 90px;
  }
}

@media screen and (max-width : 768px) {
  .contact_main {
    flex-direction: column;
  }

  .contact_left,
  .contact_right {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width : 575px) {

  .contact_section {
    padding: 40px 0px;
  }

  .contact_right h2,
  .contact_heading h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .contact_right {
    padding: 16px;
  }

  .contact_right .contact_form form span input,
  .contact_right .contact_form form span textarea {
    padding: 16px 0px;
    font-size: 16px;
    line-height: 20px;
  }
}


/* brand section */

.brand_section {
  padding: 60px 0px;
}

.brand_main .section_heading h2 {
  text-align: start;
}

.brand_main .section_heading span {
  justify-content: start;
}

.brand_main .section_heading span::before {
  display: none;
}

.brand_main .brand_list .slick-track {
  display: flex;
  align-items: center;
}

.brand_main .brand_list .slick-track .brand_image img {
  width: auto;
  margin: 0 auto;
}

.brand_list .slick-next {
  right: 0px;
}

.brand_list .slick-prev {
  left: 0px;
}

.brand_list .slick-next:before {
  display: none !important;
}

.brand_list .slick-prev:before {
  display: none;
}

.brand_list .slick-dots {
  display: none !important;
}


@media only screen and (max-width : 575px) {
  .brand_section {
    padding: 40px 0px;
  }

}

/* ------------- About us ---------------- */


.comman_banner {
  position: relative;
  display: block;
  width: 100%;
}

.comman_banner .cmn_banner_image {
  position: relative;
}

.comman_banner .cmn_banner_image img {
  max-height: 539px;
  min-height: 539px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.cmn_banner_content {
  position: absolute;
  inset: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.cmn_banner_heading {
  text-align: center;
}

.cmn_banner_heading h1 {
  display: inline-block;
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 48px;
  line-height: 64px;
  color: var(--white);
  text-align: center;
}

.cmn_banner_heading h1::after {
  content: "";
  border-bottom: 1px solid var(--white);
  display: block;
  width: 85%;
  margin: 0 auto;
}


/* about content */

.abt_main {
  padding: 60px 0px;
}

.abt_content {
  display: flex;
  /* align-items: center; */
  gap: 20px;
}


.abt_content .abt_left,
.abt_content .abt_right {
  max-width: 50%;
  width: 100%;
}

.abt_images {
  position: relative;
}

.abt_images .abt_item_first img {
  max-width: 80%;
  max-height: 400px;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
  margin-right: auto;
}

.abt_images .abt_item_sedond {
  position: relative;
  border-left: 16px solid var(--white);
  border-top: 16px solid var(--white);
  border-radius: 20px;
  margin-top: -144px;
  max-width: 71%;
  width: 100%;
  margin-left: auto;
}

.abt_images .abt_item_sedond img {
  /* max-width: 480px; */
  max-height: 320px;
  object-fit: cover;
  /* width: 100%; */
  border-radius: 5px 20px 20px 20px;
  margin-left: auto;
}

.abt_images .abt_image_text {
  position: absolute;
  top: 55%;
  left: 15%;
  width: 100%;
  max-width: 223px;
  padding: 32px;
  background-color: var(--alice-blue);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.abt_images .abt_image_text h4 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: var(--azure-blue);
}

.abt_images .abt_image_text p {
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--black);
}


.abt_content .abt_left .section_heading {
  margin-bottom: 20px;
}

.abt_content .abt_left .section_heading h2 {
  text-align: start;
}

.abt_content .abt_left .section_heading span {
  justify-content: start;
}

.abt_content .abt_left .section_heading span::before {
  display: none;
}

.abt_content .abt_left_details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.abt_content .abt_left_details p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: var(--lucky-gray);
}


@media screen and (max-width : 1280px) {
  .abt_images .abt_image_text {
    left: 10%;
  }

  .abt_content .abt_left_details p {
    font-size: 20px;
    line-height: 24px;
  }
}

@media screen and (max-width : 991px) {
  .abt_content {
    flex-direction: column;
  }

  .abt_content .abt_left,
  .abt_content .abt_right {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width : 575px) {

  .abt_main {
    padding: 40px 0px;
  }

  .abt_content .abt_left_details p {
    font-size: 16px;
    line-height: 20px;
  }

  .abt_images .abt_image_text {
    width: auto;
    max-width: unset;
    padding: 22px;
  }
}


@media screen and (max-width : 480px) {
  .abt_images .abt_item_sedond {
    margin-top: -70px;
  }

  .abt_images .abt_image_text {
    left: 5%;
  }

  .abt_images .abt_image_text h4 {
    font-size: 22px;
    line-height: 28px;
  }

  .abt_images .abt_image_text p {
    font-size: 16px;
    line-height: 20px;
  }
}


/* company_info */

.company_info {
  padding: 60px 0px;
}

.company_inner_info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.inner_info_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
  width: 100%;
  max-width: calc((100% / 4) - 15px);
  background-color: var(--alice-blue);
  border-radius: 20px;
  padding: 32px 30px;
}

.inner_info_list h4 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  color: var(--azure-blue);
}

.inner_info_list p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}

@media screen and (max-width : 1024px) {
  .inner_info_list {
    max-width: calc((100% / 2) - 10px);
  }
}

@media screen and (max-width : 575px) {
  .company_info {
    padding: 40px 0px;
  }

  .inner_info_list h4 {
    font-size: 24px;
    line-height: 29px;
  }

  .inner_info_list p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width : 480px) {
  .inner_info_list {
    max-width: 100%;
  }
}


/* techno_main */
.techno_main {
  padding: 60px 0px;
  background-color: var(--off-white);
}



.techno_content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
}

.techno_mask_image {
  -webkit-mask-image: url('/wp-content/uploads/2025/05/map-2.png');
  mask-image: url('/wp-content/uploads/2025/05/map-2.png');
  mask-repeat: no-repeat;
  mask-size: contain;
}

.techno_mask_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 447px;
  max-height: 447px;
}

.techno_content .techno_left {
  position: relative;
  max-width: 566px;
  width: 100%;
  padding: 51px 0px;
}

.techno_content .techno_left::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 4%;
  background-image: url('/wp-content/uploads/2025/05/long_arrow.svg');
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 569px;
  width: 100%;
  height: 169px;
}


.techno_content .techno_right {
  max-width: 840px;
  width: 100%;
}

.techno_rgt_content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.techno_rgt_content p {
  position: relative;
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: var(--lucky-gray);
  padding-left: 56px;
}

.techno_rgt_content p span {
  color: var(--azure-blue);
}

.techno_rgt_content p::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url('/wp-content/uploads/2025/05/smoothcorner.svg');
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width : 1440px) {
  .techno_content .techno_left::after {
    top: 0px;
  }
}

@media screen and (max-width : 1280px) {
  .techno_rgt_content p {
    font-size: 22px;
    line-height: 28px;
  }
}

@media screen and (max-width : 1199px) {
  .techno_content .techno_left::after {
    max-width: 436px;
    width: 100%;
    height: 129px;
  }

  .techno_rgt_content p {
    font-size: 20px;
    line-height: 24px;
  }
}

@media screen and (max-width : 991px) {
  .techno_rgt_content p {
    padding-left: 46px;
    font-size: 18px;
    line-height: 22px;
  }

  .techno_rgt_content p::before {
    width: 24px;
    height: 24px;
  }

  .techno_content .techno_left::after {
    max-width: 350px;
    width: 100%;
    height: 104px;
    top: 40px;
  }
}

@media screen and (max-width : 991px) {
  .techno_content .techno_left::after {
    top: 10px;
  }
}


@media screen and (max-width : 768px) {

  .techno_content {
    flex-direction: column;
  }

  .techno_content .techno_left::after {
    display: none;
  }

  .techno_content .techno_left {
    padding: 0px;
  }
}

@media screen and (max-width : 575px) {
  .techno_main {
    padding: 40px 0px;
  }

  .techno_mask_image img {
    min-height: unset;
  }

  .techno_rgt_content p {
    padding-left: 32px;
    font-size: 16px;
    line-height: 20px;
  }
}

/* mission vision section */

.mission_vision {
  padding: 90px 0px 60px;
}

.mission_vision .mission_vision_main {
  display: flex;
  gap: 40px;
  border: 1px solid var(--very-light-gray);
  border-radius: 20px;
  padding: 0px 30px 40px;
}

.mission_vision .mission_vision_main .mv_box {
  text-align: center;
  max-width: 50%;
  width: 100%;
  margin-top: -40px;
}

.mission_vision .mission_vision_main .mv_box .mv_image {
  display: inline-block;
  border: 1px solid var(--very-light-gray);
  padding: 6px;
  border-radius: 10px;
  width: auto;
  margin-bottom: 52px;
  background-color: var(--white);
}

.mission_vision_main .mv_box .mv_image img {
  display: inline-block;
  max-width: 64px;
  width: 64px;
  margin: 0 auto;
}

.mission_vision_main .mv_box .mv_content {
  position: relative;
  padding: 24px;
  text-align: center;
}

.mission_vision_main .mv_box:first-child .mv_content::after {
  content: "";
  border-right: 1px solid var(--very-light-gray);
  position: absolute;
  display: block;
  height: 168px;
  right: -20px;
  top: 24px;
}


.mission_vision_main .mv_box .mv_content h3 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 32px;
  line-height: 30px;
  text-align: center;
  color: var(--black);
  margin-bottom: 24px;
}

.mission_vision_main .mv_box .mv_content p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 1px;
  text-align: center;
  color: var(--lucky-gray);
}

@media screen and (max-width : 1199px) {
  .mission_vision_main .mv_box .mv_content p {
    font-size: 20px;
    line-height: 24px;
  }

  .mission_vision_main .mv_box .mv_content {
    padding: 16px;
  }
}

@media screen and (max-width : 1024px) {
  .mission_vision .mission_vision_main {
    padding: 0px 20px 30px;
    gap: 20px;
  }

  .mission_vision_main .mv_box:first-child .mv_content::after {
    right: -10px;
  }

  .mission_vision_main .mv_box .mv_content p {
    font-size: 18px;
    line-height: 22px;
  }
}

@media screen and (max-width : 768px) {
  .mission_vision .mission_vision_main {
    flex-direction: column;
    border: 0px;
    padding: 0px;
  }

  .mission_vision .mission_vision_main .mv_box {
    margin-top: 0px;
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--very-light-gray);
    padding: 24px;
    border-radius: 20px;
  }

  .mission_vision_main .mv_box:first-child .mv_content::after {
    display: none;
  }

  .mission_vision_main .mv_box .mv_content {
    padding: 0px;
  }

  .mission_vision .mission_vision_main .mv_box .mv_image {
    margin-bottom: 20px;
  }

  .mission_vision_main .mv_box .mv_content h3 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 16px;
  }

  .mission_vision_main .mv_box .mv_content p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width : 575px) {
  .mission_vision {
    padding: 40px 0px;
  }

  .mission_vision_main .mv_box .mv_content h3 {
    font-size: 24px;
    line-height: 30px;
  }
}


/* QA Section */

.qa_section {
  padding: 60px 0px;
}

.qa_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.qa_item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc((100% / 3) - 14px);
  border-radius: 20px;
}

.qa_item .qa_image {
  position: relative;
  padding-top: 65.75%;
}

.qa_item .qa_image img {
  border-radius: 20px 20px 0px 0px;
  width: 100%;
  position: absolute;
  inset: 0px;
  height: 100%;
  object-fit: cover;
}

.qa_item .qa_info {
  padding: 20px;

}

.qa_item .qa_info h3 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--black);
  margin-bottom: 13px;
}

.qa_item .qa_info p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--lucky-gray);
}


@media screen and (max-width : 991px) {
  .qa_item .qa_info h3 {
    font-size: 20px;
    line-height: 24px;
  }
}

@media screen and (max-width : 768px) {
  .qa_item {
    max-width: calc((100% / 2) - 10px);
  }

  .qa_item .qa_info {
    padding: 14px;
  }
}

@media only screen and (max-width : 575px) {
  .qa_section {
    padding: 40px 0px;
  }

}

@media screen and (max-width : 480px) {
  .qa_item {
    max-width: 100%;
    width: 100%;
  }
}



/* journey */
.journey {
  padding: 60px 0px;
  background-color: var(--off-white);
}

.milestone_content {
  position: relative;
  display: flex;
  gap: 131px 20px;
  flex-wrap: wrap;
}

.milestone_content::after {
  content: "";
  display: block;
  width: 100%;
  border: 1px solid var(--azure-blue);
  position: absolute;
  top: 48.5%;
  left: 0px;
}

.milestone_content .mileston_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.milestone_content .milestone_item {
  width: 100%;
  max-width: calc((100% / 4) - 18px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding: 16px;
  background-color: var(--white);
  box-shadow: 0px 4px 10px 0px #00000005;
  border-radius: 20px;
}

.milestone_content .mileston_list:first-child {
  align-items: end;
}

.milestone_content .mileston_list:last-child {
  align-items: start;
}

.milestone_content .mileston_list:first-child .milestone_item::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 136px;
  transform: rotate(180deg);
  top: 100%;
  left: 30%;
  background-image: url('/wp-content/uploads/2025/05/line-2.svg');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.milestone_content .mileston_list:last-child .milestone_item::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 136px;
  bottom: 100%;
  right: 30%;
  background-image: url('/wp-content/uploads/2025/05/line-2.svg');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.milestone_item h2 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: var(--azure-blue);
}

.milestone_item p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--lucky-gray);
}

.milestone_item strong {
  color: #000000;
}

.milestone_content.mobile_view {
  display: none;
}

@media screen and (max-width : 1359px) {
  .milestone_content::after {
    top: 47%;
  }
}

@media screen and (max-width : 1248px) {
  .milestone_content::after {
    top: 48.5%;
  }

  .milestone_content .mileston_list:last-child .milestone_item::after {
    height: 134px;
  }
}

@media screen and (max-width : 1224px) {
  .milestone_content {
    gap: 130px 20px;
  }

  .milestone_content::after {
    top: 47.1%;
  }
}

@media screen and (max-width : 1148px) {
  .milestone_content::after {
    top: 48.5%;
  }
}


@media screen and (max-width : 1097px) {
  .milestone_content::after {
    top: 47.3%;

  }
}

@media screen and (max-width : 1024px) {
  .milestone_content {
    flex-wrap: nowrap;
    flex-direction: row;
    column-gap: 80px;
  }

  .milestone_content::after {
    top: 0px;
    left: 50%;
    height: 100%;
    width: auto;
  }

  .milestone_content .mileston_list {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 50%;
  }

  .milestone_content .milestone_item {
    max-width: 100%;
  }

  .milestone_content .mileston_list:first-child .milestone_item::after {
    transform: rotate(90deg);
    right: -48px;
    top: 10%;
    left: unset;
    height: 86px;
  }

  .milestone_content .mileston_list:last-child {
    justify-content: center;
  }

  .milestone_content .mileston_list:last-child .milestone_item::after {
    transform: rotate(-90deg);
    right: unset;
    top: 25%;
    left: -47px;
    height: 86px;
  }
}


@media screen and (max-width : 768px) {
  .milestone_content {
    gap: 46px;
  }

  .milestone_content .mileston_list:first-child .milestone_item::after {
    right: -30px;
    height: 50px;
  }

  .milestone_content .mileston_list:last-child .milestone_item::after {
    left: -30px;
    height: 50px;
  }
}

@media screen and (max-width : 575px) {
  .journey {
    padding: 40px 0px;
  }
}

@media screen and (max-width : 480px) {
  .milestone_content {
    display: none;
  }

  .milestone_content.mobile_view {
    display: block;
  }

  .milestone_content::after {
    display: none;
  }

  .milestone_content {
    gap: 50px;
    flex-direction: column;
  }

  .milestone_content .mileston_list {
    width: 100%;
    max-width: 100%;
    gap: 50px;
  }

  .milestone_content .mileston_list:first-child .milestone_item::after {
    transform: rotate(180deg);
    right: unset;
    top: 100%;
    left: 50%;
    height: 50px;
  }

  .milestone_content .mileston_list:last-child .milestone_item::after {
    transform: rotate(-180deg);
    right: unset;
    top: 100%;
    left: 50%;
    height: 50px;
  }

  .milestone_content .mileston_list:last-child .milestone_item:last-child::after {
    display: none;
  }
}

/* ------------- About us end---------------- */

/* ------------- Equipment---------------- */

.equipment_section {
  padding: 60px 0px;
}

.equipment_section .equipment_info h3 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 32px;
  line-height: 43px;
  color: var(--black);
  margin-bottom: 20px;
}

.equipment_section .equipment_info p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: var(--lucky-gray);
  margin-bottom: 18px;
}

@media only screen and (max-width : 1024px) {
  .equipment_section .equipment_info h3 {
    font-size: 28px;
    line-height: 32px;
  }

  .equipment_section .equipment_info p {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width : 768px) {
  .equipment_section .equipment_info h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .equipment_section .equipment_info p {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width : 575px) {
  .equipment_section {
    padding: 40px 0px;
  }
}

@media only screen and (max-width : 480px) {
  .equipment_section .equipment_info h3 {
    font-size: 24px;
    line-height: 29px;
  }

  .equipment_section .equipment_info p {
    font-size: 16px;
    line-height: 20px;
  }
}

/* Features section  */

.feature_section {
  padding: 60px 0px;
}

.feature_detail {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature_detail .feature_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: calc((100% / 2) - 10px);
  padding: 24px;
  border-radius: 20px;
  background-color: var(--off-white);
}

.feature_detail .feature_item .feature_image {
  position: relative;
  padding-top: 56.902%;
  border-radius: 10px;
}

.feature_detail .feature_item .feature_image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.feature_info h3 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: var(--black);
  margin-bottom: 16px;
}

.feature_info p {
  position: relative;
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: var(--lucky-gray);
  margin-bottom: 12px;
  padding-left: 34px;
}


.feature_info p::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0px;
  width: 24px;
  height: 24px;
  background-image: url("/wp-content/uploads/2025/05/send-message.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width : 1024px) {
  .feature_info h3 {
    font-size: 24px;
    line-height: 29px;
  }

  .feature_info p {
    font-size: 18px;
    line-height: 22px;
    padding-left: 26px;
  }

  .feature_info p::after {
    width: 18px;
    height: 18px;
    top: 2px;
  }

  .feature_detail .feature_item {
    padding: 20px;
  }
}


@media screen and (max-width : 768px) {
  .feature_section {
    padding: 40px 0px;
  }

  .feature_info h3 {
    font-size: 20px;
    line-height: 29px;
  }

  .feature_info p {
    font-size: 16px;
    line-height: 20px;
  }
}


@media screen and (max-width : 600px) {
  .feature_detail .feature_item {
    max-width: 100%;
    width: 100%;
    padding: 16px;
  }
}

/* equipments */

.equipments {
  padding: 60px 0px;
  background-color: var(--off-white);
}



.equipment_main .equipment_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.equipment_main .equipment_list .equipment_item {
  width: 100%;
  max-width: calc((100% / 3) - 15px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--white);
  border-radius: 20px;
}

.equipment_list .equipment_image {
  position: relative;
  padding-top: 63.59%;
  border-radius: 10px;
}

.equipment_list .equipment_image img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: inherit;

}

.equipment_info h3 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-transform: capitalize;
  color: var(--black);
  margin-bottom: 16px;
}

.equipment_info p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: var(--lucky-gray);
}


@media screen and (max-width : 1024px) {
  .equipment_main .equipment_list .equipment_item {
    max-width: calc((100% / 2) - 10px);
  }

  .equipment_info p {
    font-size: 18px;
    line-height: 22px;
  }
}

@media screen and (max-width : 768px) {
  .equipment_main .equipment_list .equipment_item {
    padding: 16px;
  }

  .equipment_info h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .equipment_info p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width : 600px) {
  .equipment_main .equipment_list .equipment_item {
    max-width: 100%;
  }
}

@media screen and (max-width : 575px) {
  .equipments {
    padding: 40px 0px;
  }
}

/* Contact Us page */

.connect-us {
  padding: 60px 0px;
}

.connect_inner {
  display: flex;
  gap: 20px;
}

.connect_inner .connect_main {
  max-width: 580px;
  width: 100%;
  padding: 24px;
  background-color: var(--off-white);
  border-radius: 24px;
}


.connect_inner .connect_main .section_heading span {
  justify-content: start;
  text-align: start;
}

.connect_inner .connect_main .section_heading span::before {
  display: none;
}

.connect_inner .connect_main .section_heading h2 {
  text-align: start;
}

.connect_details .connect_info {
  margin-bottom: 40px;
}

.connect_details .connect_info p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
  letter-spacing: 0.36px;
}

.social_connect {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.social_connect .soc_connect_item {
  display: flex;
  align-items: start;
  gap: 20px;
}

.social_connect .soc_connect_item .connect_image {
  padding: 10px;
  max-width: 50px;
  width: 100%;
  background-color: var(--azure-blue);
  border-radius: 50%;
}

.social_connect .soc_connect_item .connect_image img {
  width: 100%;
  max-width: 48px;
}

.social_connect .soc_connect_item .soc_info h4 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 30px;
  line-height: 43px;
  color: var(--black);
  margin-bottom: 8px;
}

.social_connect .soc_connect_item .soc_info a,
.social_connect .soc_connect_item .soc_info p {
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--lucky-gray)
}

.send_msg {
  max-width: 820px;
  width: 100%;
  padding: 24px;
}


.send_msg .section_heading h2 {
  text-align: left;
}

.send_msg .send_msg_form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.send_msg .send_msg_form form .form-group {
  display: flex;
  gap: 20px;
}

.send_msg .send_msg_form form .wpcf7-not-valid-tip {
  padding: 5px 0px;
}

.send_msg_form .form-item label {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
  margin-bottom: 10px;
}

.send_msg_form .form-item {
  width: 100%;
}

.send_msg_form .form-item input {
  width: 100%;
}

.send_msg_form .form-item input,
.send_msg_form .form-item textarea {
  border: none;
  outline: none;
  background-color: var(--off-white);
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--gray);
  width: 100%;
  padding: 16px;
}

.send_msg_form .form-item textarea {
  max-height: 144px;
}

@media screen and (max-width : 1024px) {
  .connect_inner {
    flex-direction: column;
  }

  .connect_inner .connect_main {
    width: 100%;
    max-width: 100%;
  }

  .send_msg {
    max-width: 100%;
    width: 100%;
  }

  .social_connect .soc_connect_item .connect_image {
    padding: 10px;
    max-width: 50px;
  }

  .social_connect .soc_connect_item .connect_image img {
    max-width: 38px;
  }

  .social_connect .soc_connect_item .soc_info h4 {
    font-size: 24px;
    line-height: 30px;
  }

  .social_connect .soc_connect_item .soc_info a,
  .social_connect .soc_connect_item .soc_info p {
    font-size: 18px;
    line-height: 22px;
  }

}

@media screen and (max-width : 768px) {
  .send_msg .send_msg_form form .form-group {
    flex-wrap: wrap;
  }
}

@media screen and (max-width : 575px) {
  .social_connect .soc_connect_item .soc_info h4 {
    font-size: 20px;
    line-height: 24px;
  }

  .social_connect .soc_connect_item .soc_info a,
  .social_connect .soc_connect_item .soc_info p {
    font-size: 16px;
    line-height: 20px;
  }
}


/* Product Page */

.product_main .product_item {
  padding: 60px 0px;
}

.product_main .product_item:nth-child(even) {
  background-color: var(--smoke-white);
}

.product_heading {
  margin-bottom: 40px;
}

.product_heading .section_heading {
  margin-bottom: 30px;
}

.product_heading .product_describe p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 1px;
  text-align: center;
  vertical-align: middle;
  color: var(--lucky-gray);
}

.product_content {
  display: flex;
  /* align-items: center; */
  gap: 20px;
  margin-bottom: 20px;
}

.product_main .product_item:nth-child(even) .product_content {
  flex-direction: row-reverse;
}

.product_content .product_left {
  position: relative;
  max-width: 580px;
  padding-top: 32.817%;
  width: 100%;
  border-radius: 20px;
}

.product_content .product_left img {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 33px;
  max-width: 820px;
  width: 100%;
}

.product_right .product_detail h3 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 32px;
  line-height: 30px;
  vertical-align: middle;
  color: var(--black);
  margin-bottom: 18px;
}

.product_right .product_detail ul {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.product_right .product_detail ul li {
  position: relative;
  padding-left: 34px;
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1px;
  color: var(--lucky-gray);
}

.product_right .product_detail ul li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 3px;
  background-image: url('/wp-content/uploads/2025/05/send-message.svg');
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
}

.product_role {
  padding: 24px 29px;
  background-color: var(--smoke-white);
  border-radius: 20px;
}

.product_main .product_item:nth-child(even) .product_role {
  background-color: var(--white);
}

.product_role .section_heading {
  margin-bottom: 24px;
}

.product_role .product_role_info p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  color: var(--lucky-gray);
}

/* brochure */
.brochure {
  padding: 60px 0px;
}

.brochure_content {
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 30px;
  background: linear-gradient(90.02deg, #E2F6FF -115.78%, #FFFFFF 100.19%);
  border-radius: 20px;
}

.brochure_content .brochure_image {
  max-width: 273px;
  width: 100%;
}

.brochure_content .brochure_image img {
  object-fit: cover;
}

.brochure_detail .section_heading h2 {
  text-align: start;
}

.brochure_detail .brochure_info p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  vertical-align: middle;
  color: var(--lucky-gray);
  margin-bottom: 24px;
}

@media screen and (max-width : 1024px) {

  .product_heading .product_describe p,
  .product_role .product_role_info p {
    font-size: 20px;
    line-height: 24px;
  }

  .product_right .product_detail h3 {
    font-size: 28px;
    line-height: 32px;
  }

  .product_right .product_detail ul li {
    font-size: 18px;
    line-height: 24px;
  }

  .product_right .product_detail ul li::before {
    width: 20px;
    height: 20px;
  }

  .brochure_detail .brochure_info p {
    font-size: 20px;
    line-height: 24px;
  }
}

@media screen and (max-width : 768px) {

  .product_main .product_item,
  .brochure {
    padding: 40px 0px;
  }

  .product_content,
  .product_main .product_item:nth-child(even) .product_content {
    flex-direction: column;
  }

  .product_content .product_left {
    width: 100%;
    max-width: 100%;
    padding-top: 74.145%;
  }

  .brochure_content {
    flex-wrap: wrap;
    gap: 20px;
  }

  .brochure_detail .brochure_info p {
    font-size: 18px;
    line-height: 22px;
  }
}

@media screen and (max-width : 575px) {

  .product_heading .product_describe p,
  .product_role .product_role_info p {
    font-size: 16px;
    line-height: 20px;
  }

  .product_right .product_detail ul li::before {
    width: 12px;
    height: 12px;
    top: 3px;
  }

  .product_right .product_detail ul li {
    font-size: 16px;
    line-height: 20px;
    padding-left: 20px;
  }

  .product_right {
    gap: 20px;
  }

  .product_heading .section_heading {
    margin-bottom: 20px;
  }

  .product_right .product_detail h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .brochure_detail .brochure_info p {
    font-size: 16px;
    line-height: 20px;
  }
}

/* footer */

footer {
  padding-top: 20px;
  background-color: var(--smoke-white);
}

.main-footer .row {
  display: flex;
  align-items: start;
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 56px;
}

.main-footer .row .col {
  max-width: 580px;
  width: 100%;
}

.main-footer .row .col:nth-child(2) {
  max-width: 220px;
  width: 100%;
}

.main-footer .widget .footer_logo img {
  display: block;
  width: 100%;
  max-width: 135px;
}

.main-footer .widget.subscribe {
  margin-bottom: 32px;
}

.main-footer .widget.newsletter .footer-head {
  margin-bottom: 12px;
}

.main-footer .widget.newsletter .footer-head p {
  padding-top: 4px;
}

.main-footer .widget h3 {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: var(--black);
  margin-bottom: 23px;
}

.main-footer .widget p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
  max-width: 580px;
  width: 100%;
}

.main-footer .widget ul {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 14px;
}

.main-footer .widget ul li {
  max-width: 100%;
  width: 100%;
}

.main-footer .widget ul li a {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
}

.footer_map_content img {
  min-height: 200px;
  max-height: 200px;
}


.newsletter_form .form_group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--azure-blue);
}

.newsletter_form .form_group span {
  width: 100%;
}

.newsletter_form .form_group span .wpcf7-not-valid-tip {
  position: absolute;
  padding: 5px 0px;
}

.newsletter_form .form_group span input {
  width: 100%;
}

.newsletter_form .form_group input {
  border: none;
  background-color: transparent;
  padding: 27px 0px;
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--azure-blue);
}

.newsletter_form .form_group input::placeholder {
  color: var(--azure-blue);
}

.newsletter_form .form_group input.wpcf7-form-control.wpcf7-submit {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--azure-blue);
  cursor: pointer;
}


.newsletter_form .wpcf7 form.invalid .wpcf7-response-output,
.newsletter_form .wpcf7 form.unaccepted .wpcf7-response-output,
.newsletter_form .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 30px 0px 0px;
}

.wpcf7-spinner {
  display: none;
}

.main-footer .certificate {
  display: flex;
  gap: 20px;
}

.main-footer .certificate .certi_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.main-footer .certificate .certi_item p {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: var(--black);
  max-width: 200px;
}

.main-footer .certificate .certi_image img {
  width: 100%;
  max-width: 92px;
  object-fit: cover;
  height: 92px;
}

.footer-copyright {
  background-color: var(--azure-blue);
}

.footer-copyright .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  padding: 16px 0px;
}

.footer-copyright .col P {
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
}

.footer-copyright .col.tac-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-copyright .col.tac-content a {
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  vertical-align: middle;
  text-decoration: underline;
  color: var(--white);
  text-decoration-thickness: 1px;
}

@media only screen and (max-width : 1024px) {
  .main-footer .row {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .main-footer .row .col {
    max-width: 100%;
  }
}

@media only screen and (max-width : 768px) {

  .footer-copyright .col P,
  .footer-copyright .col.tac-content a,
  .main-footer .widget p,
  .newsletter_form .form_group input,
  .newsletter_form .form_group input.wpcf7-form-control.wpcf7-submit {
    font-size: 16px;
    line-height: 20px;
  }

  .main-footer .row,
  .main-footer .certificate .certi_item p {
    font-size: 16px;
    line-height: 20px;
  }

  .main-footer .certificate .certi_item p {
    text-align: start;
  }

  .main-footer .certificate .certi_item {
    gap: 20px;
  }
}

@media only screen and (max-width : 575px) {
  .footer-copyright .row {
    justify-content: center;
    gap: 10px;
  }


  .main-footer .certificate {
    flex-wrap: wrap;
  }

  .main-footer .certificate .certi_item {
    flex-direction: row;
  }
}