body {
  padding: 0;
  margin: 0;
}

body, p {
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

.site-header {
  background: #ffffff;
}
.site-header.fixed {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
.site-header .header-content {
  padding: 0 15px;
}
.site-header .header-content .header-content-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  max-width: 1322px;
  width: 100%;
  margin: 0 auto;
}
.site-header .header-content .header-content-inner .site-branding a {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .site-header .header-content .header-content-inner .site-branding a svg {
    height: 24px;
    width: 77px;
  }
}
.site-header .header-content .header-content-inner .nav-wrapper {
  display: none;
}
@media only screen and (min-width: 992px) {
  .site-header .header-content .header-content-inner .nav-wrapper {
    display: block;
  }
}
.site-header .header-content .header-content-inner .nav-wrapper ul.site-nav-menu {
  display: flex;
  align-items: center;
}
.site-header .header-content .header-content-inner .nav-wrapper ul.site-nav-menu li {
  list-style: none;
  font-size: 16px;
  line-height: 24px;
  color: #3C3C3C;
}
.site-header .header-content .header-content-inner .nav-wrapper ul.site-nav-menu li.current-menu-item a {
  color: #0B9CAB;
  background: #F3FAFB;
}
.site-header .header-content .header-content-inner .nav-wrapper ul.site-nav-menu li:hover a {
  color: #0B9CAB;
  background: #F3FAFB;
}
.site-header .header-content .header-content-inner .nav-wrapper ul.site-nav-menu li a {
  color: #3C3C3C;
  padding: 8px 24px;
  transition: all 0.3s;
  border-radius: 40px;
  font-weight: 600;
}
.site-header .header-content .header-content-inner .header-right a {
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
  font-weight: 600;
  display: none;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .site-header .header-content .header-content-inner .header-right a {
    display: flex;
  }
}
.site-header .header-content .header-content-inner .header-right a div {
  background: #0B9CAB;
  padding: 9px 20px;
  border-radius: 62px;
}
.site-header .header-content .header-content-inner .header-right a span {
  background: #0B9CAB;
  padding: 9px;
  border-radius: 50%;
  display: inline-flex;
}
.site-header .header-content .header-content-inner .header-right .mobile-menu {
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .site-header .header-content .header-content-inner .header-right .mobile-menu {
    display: none;
  }
}

.header-mobile {
  position: fixed;
  top: 0;
  left: -1000px;
  background: #fff;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 999;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.header-mobile.mobile-canvas {
  left: 0;
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 768px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile .header-mobile-inner {
  height: calc(100% - 48px);
  padding: 24px;
}
.header-mobile .header-mobile-inner .site-branding {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-mobile .header-mobile-inner .site-branding .close {
  cursor: pointer;
}
.header-mobile .header-mobile-inner .nav-wrapper {
  margin-bottom: 16px;
}
.header-mobile .header-mobile-inner .nav-wrapper .site-nav-menu {
  list-style: none;
}
.header-mobile .header-mobile-inner .nav-wrapper .site-nav-menu li {
  list-style: none;
  font-size: 16px;
  line-height: 24px;
  color: #3C3C3C;
  margin-bottom: 16px;
}
.header-mobile .header-mobile-inner .nav-wrapper .site-nav-menu li:last-child {
  margin-bottom: 0;
}
.header-mobile .header-mobile-inner .nav-wrapper .site-nav-menu li.current-menu-item a {
  color: #0B9CAB;
  background: #F3FAFB;
}
.header-mobile .header-mobile-inner .nav-wrapper .site-nav-menu li:hover a {
  color: #0B9CAB;
  background: #F3FAFB;
}
.header-mobile .header-mobile-inner .nav-wrapper .site-nav-menu li a {
  color: #3C3C3C;
  padding: 8px 24px;
  transition: all 0.3s;
  border-radius: 40px;
  font-weight: 600;
  display: block;
  text-align: center;
}
.header-mobile .header-mobile-inner .header-mobile-btn a {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
}
.header-mobile .header-mobile-inner .header-mobile-btn a div {
  padding: 9px 10px;
  border-radius: 62px;
  background: #0B9CAB;
  flex: 1;
  text-align: center;
}
.header-mobile .header-mobile-inner .header-mobile-btn a span {
  background: #0B9CAB;
  padding: 9px 10px;
  border-radius: 50px;
  display: inline-flex;
}
@media only screen and (max-width: 767px) {
  .header-mobile .header-mobile-inner .header-mobile-btn a span {
    padding: 11px;
  }
}

.services-wrapper {
  position: relative;
}
.services-wrapper .services-carousel .slick-list {
  padding: 0 0 122px;
}
@media only screen and (max-width: 767px) {
  .services-wrapper .services-carousel .slick-list {
    padding: 0 0 290px;
  }
}
.services-wrapper .services-carousel .services-carousel-item {
  display: flex;
  gap: 15px;
  background: #FAFAFA;
  border-radius: 24px;
  padding: 8px;
  margin-bottom: 24px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .services-wrapper .services-carousel .services-carousel-item {
    flex-direction: column;
    gap: 24px;
    padding: 8px 8px 16px;
  }
}
.services-wrapper .services-carousel .services-carousel-item:last-child {
  margin-bottom: 0;
}
.services-wrapper .services-carousel .services-carousel-item .services-carousel-item-img {
  width: 229px;
  height: 229px;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .services-wrapper .services-carousel .services-carousel-item .services-carousel-item-img {
    width: 100%;
    height: 232px;
  }
}
.services-wrapper .services-carousel .services-carousel-item .services-carousel-item-img img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-wrapper .services-carousel .services-carousel-item .services-carousel-item-text {
  flex: 1;
}
.services-wrapper .services-carousel .services-carousel-item .services-carousel-item-text h4 {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 8px;
  color: #0B0B0B;
  font-weight: 700;
}
.services-wrapper .services-carousel .services-carousel-item .services-carousel-item-text p {
  font-size: 16px;
  line-height: 22px;
  color: #0B0B0B;
  margin-bottom: 24px;
}
.services-wrapper .services-carousel .services-carousel-item .services-carousel-item-text a {
  font-size: 18px;
  line-height: 22px;
  color: #0B0B0B;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
}
.services-wrapper .services-carousel .services-carousel-item .services-carousel-item-text a div {
  border: 1px solid #0B9CAB;
  padding: 18px 38px;
  border-radius: 80px;
}
@media only screen and (max-width: 767px) {
  .services-wrapper .services-carousel .services-carousel-item .services-carousel-item-text a div {
    padding: 11px 18px;
  }
}
.services-wrapper .services-carousel .services-carousel-item .services-carousel-item-text a span {
  border: 1px solid #0B9CAB;
  padding: 18px;
  border-radius: 50px;
  display: inline-flex;
}
@media only screen and (max-width: 767px) {
  .services-wrapper .services-carousel .services-carousel-item .services-carousel-item-text a span {
    padding: 11px;
  }
}
.services-wrapper .blur {
  height: 224px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 84.94%);
  width: 100%;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  transition: opacity 0.3s;
}
.services-wrapper .blur.hidden {
  opacity: 0;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: 582px 540px;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .testimonial-wrapper {
    display: block;
  }
}
.testimonial-wrapper .testimonial-left .testimonial-left-carousel-item {
  position: relative;
  margin: 16px 0;
  cursor: pointer;
}
.testimonial-wrapper .testimonial-left .testimonial-left-carousel-item .testimonial-left-carousel-item-inner {
  padding: 32px 32px;
  border-radius: 5px;
  opacity: 0.3;
  position: relative;
}
.testimonial-wrapper .testimonial-left .testimonial-left-carousel-item .testimonial-left-carousel-item-inner svg {
  position: absolute;
  left: 10px;
  top: -20px;
}
.testimonial-wrapper .testimonial-left .testimonial-left-carousel-item .testimonial-left-carousel-item-inner p {
  font-size: 16px;
  line-height: 26px;
  color: #202020;
}
.testimonial-wrapper .testimonial-left .testimonial-left-carousel-item.slick-center .testimonial-left-carousel-item-inner {
  background: #FAFAFA;
  padding: 32px;
  opacity: 1;
}
.testimonial-wrapper .testimonial-left .testimonial-left-carousel-item:last-child {
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .testimonial-wrapper .testimonial-right {
    margin-top: 30px;
  }
}
.testimonial-wrapper .testimonial-right .testimonial-carousel-right-item {
  background: #FAFAFA;
  border-radius: 48px;
  padding: 16px 16px 32px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .testimonial-wrapper .testimonial-right .testimonial-carousel-right-item {
    padding: 12px 12px 24px;
  }
}
.testimonial-wrapper .testimonial-right .testimonial-carousel-right-item img {
  width: 100%;
  border-radius: 36px;
  margin-bottom: 12px;
}
.testimonial-wrapper .testimonial-right .testimonial-carousel-right-item h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #0B0B0B;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .testimonial-wrapper .testimonial-right .testimonial-carousel-right-item h4 {
    font-size: 20px;
    line-height: 26px;
  }
}
.testimonial-wrapper .testimonial-right .testimonial-carousel-right-item p {
  font-size: 16px;
  line-height: 22px;
  color: #0B0B0B;
}
@media only screen and (max-width: 767px) {
  .testimonial-wrapper .testimonial-right .testimonial-carousel-right-item p {
    font-size: 14px;
    line-height: 20px;
  }
}

.blog-posts .elementor-post .elementor-post__card {
  border-radius: 24px 24px 36px 36px;
}
.blog-posts .elementor-post .elementor-post__card .elementor-post__thumbnail__link {
  margin: 0 !important;
}
.blog-posts .elementor-post .elementor-post__card .elementor-post__thumbnail__link .elementor-post__thumbnail {
  border-radius: 24px;
}
@media only screen and (max-width: 767px) {
  .blog-posts .elementor-post .elementor-post__card .elementor-post__thumbnail__link .elementor-post__thumbnail {
    height: 276px;
  }
}
.blog-posts .elementor-post .elementor-post__card .elementor-post__thumbnail__link .elementor-post__thumbnail img {
  border-radius: 24px;
}
.blog-posts .elementor-post .elementor-post__card .elementor-post__badge {
  position: relative;
  margin: 16px 20px 0 !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #6D6D6D;
  border: 1px solid #9D9D9D;
  padding: 4px 12px;
  border-radius: 50px !important;
  display: inline-flex;
  background: transparent !important;
  align-items: center;
  text-transform: capitalize;
  align-self: flex-start;
}
.blog-posts .elementor-post .elementor-post__card .elementor-post__text {
  margin: 0 !important;
  padding: 0 20px 44px !important;
}
.blog-posts .elementor-post .elementor-post__card .elementor-post__text .elementor-post__title {
  margin-top: 8px !important;
}
.blog-posts .elementor-post .elementor-post__card .elementor-post__text .elementor-post__read-more {
  margin: 0;
  position: relative;
  font-size: 18px;
  line-height: 22px;
  color: #0B0B0B;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
}
.blog-posts .elementor-post .elementor-post__card .elementor-post__text .elementor-post__read-more span {
  border: 1px solid #0B9CAB;
  padding: 18px 38px;
  border-radius: 80px;
}
.blog-posts .elementor-post .elementor-post__card .elementor-post__text .elementor-post__read-more:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyMyAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjA4MzMgNy4xNTU1Mkw2IDE3LjIzODkiIHN0cm9rZT0iIzBCMEIwQiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTAuNTgzMyA2LjIzODc0SDE1Ljk5OTlDMTYuNDcxMyA2LjIzODc0IDE2LjcwNyA2LjIzODc0IDE2Ljg1MzUgNi4zODUxOUMxNi45OTk5IDYuNTMxNjMgMTYuOTk5OSA2Ljc2NzMzIDE2Ljk5OTkgNy4yMzg3NFYxMi42NTU0IiBzdHJva2U9IiMwQjBCMEIiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+");
  width: 60px;
  height: 60px;
  content: "";
  position: absolute;
  border: 1px solid #0B9CAB;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-position: center center;
  left: 100%;
}
@media only screen and (max-width: 767px) {
  .blog-posts .elementor-widget-container > .elementor-button-wrapper .elementor-button {
    display: block;
  }
}
.blog-posts .elementor-widget-container > .elementor-button-wrapper .elementor-button .elementor-button-content-wrapper {
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 600;
}
.blog-posts .elementor-widget-container > .elementor-button-wrapper .elementor-button .elementor-button-content-wrapper .elementor-button-text {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .blog-posts .elementor-widget-container > .elementor-button-wrapper .elementor-button .elementor-button-content-wrapper .elementor-button-text {
    width: 100%;
  }
}
.blog-posts .elementor-widget-container > .elementor-button-wrapper .elementor-button .elementor-button-content-wrapper .text {
  background: #0B9CAB;
  padding: 16px 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 62px;
}
@media only screen and (max-width: 767px) {
  .blog-posts .elementor-widget-container > .elementor-button-wrapper .elementor-button .elementor-button-content-wrapper .text {
    flex: 1;
  }
}
.blog-posts .elementor-widget-container > .elementor-button-wrapper .elementor-button .elementor-button-content-wrapper .icon {
  background: #0B9CAB;
  padding: 16px;
  border-radius: 50%;
  display: inline-flex;
}

.popular-posts .elementor-post .elementor-post__card {
  border-radius: 24px 36px 36px 24px;
  display: flex !important;
  flex-direction: row !important;
}
.popular-posts .elementor-post .elementor-post__card .elementor-post__thumbnail__link {
  margin: 0 !important;
}
.popular-posts .elementor-post .elementor-post__card .elementor-post__thumbnail__link .elementor-post__thumbnail img {
  border-radius: 24px;
}
.popular-posts .elementor-post .elementor-post__card .elementor-post__badge {
  position: relative;
  margin: 16px 20px 0 !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #6D6D6D;
  border: 1px solid #9D9D9D;
  padding: 4px 12px;
  border-radius: 50px !important;
  display: inline-flex;
  background: transparent !important;
  align-items: center;
  text-transform: capitalize;
  align-self: flex-start;
}
.popular-posts .elementor-post .elementor-post__card .elementor-post__text {
  margin: 0 !important;
  padding: 0 20px 44px !important;
}
.popular-posts .elementor-post .elementor-post__card .elementor-post__text .elementor-post__title {
  margin-top: 8px !important;
}
.popular-posts .elementor-post .elementor-post__card .elementor-post__text .elementor-post__read-more {
  margin: 0;
  position: relative;
  font-size: 18px;
  line-height: 22px;
  color: #0B0B0B;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
}
.popular-posts .elementor-post .elementor-post__card .elementor-post__text .elementor-post__read-more span {
  border: 1px solid #0B9CAB;
  padding: 18px 38px;
  border-radius: 80px;
}
.popular-posts .elementor-post .elementor-post__card .elementor-post__text .elementor-post__read-more:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyMyAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjA4MzMgNy4xNTU1Mkw2IDE3LjIzODkiIHN0cm9rZT0iIzBCMEIwQiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTAuNTgzMyA2LjIzODc0SDE1Ljk5OTlDMTYuNDcxMyA2LjIzODc0IDE2LjcwNyA2LjIzODc0IDE2Ljg1MzUgNi4zODUxOUMxNi45OTk5IDYuNTMxNjMgMTYuOTk5OSA2Ljc2NzMzIDE2Ljk5OTkgNy4yMzg3NFYxMi42NTU0IiBzdHJva2U9IiMwQjBCMEIiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+");
  width: 60px;
  height: 60px;
  content: "";
  position: absolute;
  border: 1px solid #0B9CAB;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-position: center center;
  left: 100%;
}
.popular-posts .elementor-widget-container > .elementor-button-wrapper .elementor-button .elementor-button-content-wrapper {
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 600;
}
.popular-posts .elementor-widget-container > .elementor-button-wrapper .elementor-button .elementor-button-content-wrapper .elementor-button-text {
  display: flex;
  align-items: center;
}
.popular-posts .elementor-widget-container > .elementor-button-wrapper .elementor-button .elementor-button-content-wrapper .text {
  background: #0B9CAB;
  padding: 16px 32px;
  display: inline-flex;
  border-radius: 62px;
}
.popular-posts .elementor-widget-container > .elementor-button-wrapper .elementor-button .elementor-button-content-wrapper .icon {
  background: #0B9CAB;
  padding: 16px;
  border-radius: 50%;
  display: inline-flex;
}

.contact-form .gform_validation_errors {
  display: none !important;
}
.contact-form .gform_wrapper form {
  background: #FFFFFF;
  padding: 50px 35px;
  border-radius: 24px;
}
@media only screen and (max-width: 767px) {
  .contact-form .gform_wrapper form {
    padding: 36px 16px;
  }
}
.contact-form .gform_wrapper form .gform_fields {
  display: block !important;
}
.contact-form .gform_wrapper form .gform_fields > .gfield {
  margin-bottom: 32px !important;
}
.contact-form .gform_wrapper form .gfield_label {
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: #0B9CAB;
  margin-bottom: 12px;
}
.contact-form .gform_wrapper form .gfield_radio {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  flex-direction: row !important;
}
.contact-form .gform_wrapper form .gfield_radio .gchoice .gfield-choice-input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.contact-form .gform_wrapper form .gfield_radio .gchoice .gfield-choice-input:checked ~ label {
  background: #0B9CAB;
  border-color: #0B9CAB;
  color: #ffffff;
}
.contact-form .gform_wrapper form .gfield_radio .gchoice label {
  font-size: 16px;
  line-height: 24px;
  color: #787878;
  padding: 10px 20px;
  border: 1px solid #CECECE;
  border-radius: 50px;
  margin: 0;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .contact-form .gform_wrapper form .gfield_radio .gchoice label {
    padding: 4px 16px;
  }
}
.contact-form .gform_wrapper form input[type=text], .contact-form .gform_wrapper form input[type=email] {
  height: 48px !important;
  padding: 0 16px !important;
  border: none !important;
  font-size: 16px !important;
  color: #9D9D9D;
  border-bottom: 2px solid #CECECE !important;
  box-shadow: none;
  border-radius: 0 !important;
}
.contact-form .gform_wrapper form input[type=text]:focus, .contact-form .gform_wrapper form input[type=email]:focus {
  outline: none;
}
.contact-form .gform_wrapper form input[type=text]::placeholder, .contact-form .gform_wrapper form input[type=email]::placeholder {
  color: #9D9D9D;
}
.contact-form .gform_wrapper form textarea {
  height: 138px !important;
  padding: 16px !important;
  font-size: 16px !important;
  color: #9D9D9D;
  border: 2px solid #CECECE !important;
  box-shadow: none;
  border-radius: 12px !important;
  min-block-size: 138px !important;
}
.contact-form .gform_wrapper form textarea:focus {
  outline: none;
}
.contact-form .gform_wrapper form textarea::placeholder {
  color: #9D9D9D;
}
.contact-form .gform_wrapper form .gform_button {
  font-size: 18px !important;
  line-height: 24px !important;
  color: #fff !important;
  font-weight: 700 !important;
  background: #0B9CAB !important;
  padding: 16px !important;
  border-radius: 50px !important;
  width: 100% !important;
  text-align: center !important;
}

.site-footer {
  background: #F3F3F3;
  padding: 60px 15px;
}
@media only screen and (max-width: 767px) {
  .site-footer {
    padding: 24px 16px;
  }
}
.site-footer .site-footer-inner {
  max-width: 1322px;
  margin: 0 auto;
}
.site-footer .site-footer-inner .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  border-bottom: 1px solid #CECECE;
  padding-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .site-footer .site-footer-inner .footer-content {
    gap: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .site-footer .site-footer-inner .footer-content {
    flex-direction: column;
  }
}
.site-footer .site-footer-inner .footer-content .footer-item {
  width: calc(25% - 12px);
}
@media only screen and (max-width: 1024px) {
  .site-footer .site-footer-inner .footer-content .footer-item {
    width: auto;
  }
}
.site-footer .site-footer-inner .footer-content .footer-item h5 {
  font-size: 24px;
  color: #0B0B0B;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 12px;
}
.site-footer .site-footer-inner .footer-content .footer-item ul li {
  list-style: none;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 12px;
  color: #3C3C3C;
}
.site-footer .site-footer-inner .footer-content .footer-item ul li:last-child {
  margin-bottom: 0;
}
.site-footer .site-footer-inner .footer-content .footer-item ul li a {
  color: #3C3C3C;
}
.site-footer .site-footer-inner .footer-content .footer-item .newsletter-form {
  margin-bottom: 18px;
}
.site-footer .site-footer-inner .footer-content .footer-item .newsletter-form .gform_validation_errors {
  display: none !important;
}
.site-footer .site-footer-inner .footer-content .footer-item .newsletter-form form {
  position: relative;
}
.site-footer .site-footer-inner .footer-content .footer-item .newsletter-form input[type=email] {
  height: 58px;
  padding: 10px 20px;
  color: #6D6D6D;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 600;
  border: 1.5px solid #F3F3F3;
  box-shadow: none;
  background: #fff;
}
.site-footer .site-footer-inner .footer-content .footer-item .newsletter-form input[type=email]::placeholder {
  color: #6D6D6D;
}
.site-footer .site-footer-inner .footer-content .footer-item .newsletter-form .gform-footer {
  margin: 0 !important;
}
.site-footer .site-footer-inner .footer-content .footer-item .newsletter-form .gform-footer button {
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0;
  background: #0B9CAB;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  right: 4px;
}
.site-footer .site-footer-inner .footer-content .footer-item p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #3C3C3C;
}
.site-footer .site-footer-inner .footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .site-footer .site-footer-inner .footer-copyright {
    flex-direction: column;
    gap: 24px;
  }
}
.site-footer .site-footer-inner .footer-copyright .site-branding a {
  display: flex;
}
.site-footer .site-footer-inner .footer-copyright ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-footer .site-footer-inner .footer-copyright ul li {
  list-style: none;
}
.site-footer .site-footer-inner .footer-copyright ul li a {
  font-size: 18px;
  line-height: 26px;
  color: #0B0B0B;
  font-weight: 600;
}
.site-footer .site-footer-inner .footer-copyright .social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-footer .site-footer-inner .footer-copyright .social-links a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #0B9CAB;
  border-radius: 50%;
}

.hero-card .hero-card-img {
  flex-basis: 145px !important;
}
.hero-card .hero-card-text {
  flex: 1 !important;
}

.recent-project-large-item .recent-project-large-item-text svg path {
  stroke: #0B0B0B;
}

.recent-project-item .recent-project-item-img {
  flex-basis: 229px !important;
}
.recent-project-item .recent-project-item-text {
  flex: 1 !important;
}
.recent-project-item .recent-project-item-text svg path {
  stroke: #0B0B0B;
}

.recent-project-carousel > .swiper {
  padding-bottom: 22px !important;
}
.recent-project-carousel .swiper-pagination {
  left: 0 !important;
  transform: translate(0) !important;
}
.recent-project-carousel .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 4px;
  display: inline-block;
  background: #CECECE;
  margin: 0 5px 0 0 !important;
  border-radius: 7px;
}
.recent-project-carousel .swiper-pagination .swiper-pagination-bullet:hover {
  background: #0B9CAB !important;
}
.recent-project-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 78px;
  background: #0B9CAB;
}

.faq-wrapper .e-n-accordion-item {
  background: #FAFAFA;
  border-radius: 20px;
}
.faq-wrapper .e-n-accordion-item > .elementor-element {
  padding: 16px 48px 36px;
}
.faq-wrapper .e-n-accordion-item .e-n-accordion-item-title {
  position: relative;
  padding: 36px 48px;
  display: block;
}
.faq-wrapper .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-header {
  display: block;
}
.faq-wrapper .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-text {
  position: relative;
  padding-right: 40px;
}
.faq-wrapper .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-text:after {
  position: absolute;
  right: 0;
  top: 50%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMSIgeT0iMSIgd2lkdGg9IjM4IiBoZWlnaHQ9IjM4IiByeD0iMTkiIHN0cm9rZT0iIzBCMEIwQiIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik0yNC44MTE0IDIyLjI3NjJDMjQuODk5OSAyMi4zNjQ4IDI0Ljg5OTkgMjIuNTA5IDI0LjgxMTQgMjIuNTk3NUwyMC4xNiAyNy4yNDc5QzIwLjA3MTUgMjcuMzM2NCAxOS45MjgzIDI3LjMzNjUgMTkuODM5NyAyNy4yNDc5TDE1LjE4OTMgMjIuNTk3NUMxNS4xNDQ5IDIyLjU1MzEgMTUuMTIzIDIyLjQ5NTkgMTUuMTIyOSAyMi40Mzc0QzE1LjEyMjkgMjIuMzc4NyAxNS4xNDQ5IDIyLjMyMDcgMTUuMTg5MyAyMi4yNzYyTDE1LjE4OTMgMjIuMjc1M0MxNS4yNzc5IDIyLjE4NzcgMTUuNDIxNCAyMi4xODgxIDE1LjUwOTYgMjIuMjc2MkwxOC45MTk4IDI1LjY4NzRMMTkuNzczMyAyNi41NDA5TDE5Ljc3MzMgMTIuOTEyQzE5Ljc3MzQgMTIuNzg3IDE5Ljg3NDkgMTIuNjg1NiAxOS45OTk5IDEyLjY4NTRDMjAuMTI1IDEyLjY4NTQgMjAuMjI2NCAxMi43ODY5IDIwLjIyNjQgMTIuOTEyTDIwLjIyNjQgMjYuNTQwOUwyNC40OTExIDIyLjI3NjJDMjQuNTc5NiAyMi4xODggMjQuNzIyOSAyMi4xODc5IDI0LjgxMTQgMjIuMjc2MloiIGZpbGw9IiMwQjBCMEIiIHN0cm9rZT0iIzBCMEIwQiIvPgo8L3N2Zz4=");
  height: 40px;
  width: 40px;
  content: "";
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .faq-wrapper .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-text:after {
    top: 50%;
    transform: translateY(-20px);
  }
}
.faq-wrapper .e-n-accordion-item .e-n-accordion-item-title[aria-expanded=true] {
  padding: 36px 48px 0;
}
.faq-wrapper .e-n-accordion-item .e-n-accordion-item-title[aria-expanded=true]:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMzkiIHk9IjM5IiB3aWR0aD0iMzgiIGhlaWdodD0iMzgiIHJ4PSIxOSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE4MCAzOSAzOSkiIHN0cm9rZT0iIzBCMEIwQiIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik0xNS4xODg2IDE3LjcyMzhDMTUuMTAwMSAxNy42MzUyIDE1LjEwMDEgMTcuNDkxIDE1LjE4ODYgMTcuNDAyNUwxOS44NCAxMi43NTIxQzE5LjkyODUgMTIuNjYzNiAyMC4wNzE3IDEyLjY2MzUgMjAuMTYwMyAxMi43NTIxTDI0LjgxMDcgMTcuNDAyNUMyNC44NTUxIDE3LjQ0NjkgMjQuODc3IDE3LjUwNDEgMjQuODc3MSAxNy41NjI2QzI0Ljg3NzEgMTcuNjIxMyAyNC44NTUxIDE3LjY3OTMgMjQuODEwNyAxNy43MjM4TDI0LjgxMDcgMTcuNzI0N0MyNC43MjIxIDE3LjgxMjMgMjQuNTc4NiAxNy44MTE5IDI0LjQ5MDQgMTcuNzIzOEwyMS4wODAyIDE0LjMxMjZMMjAuMjI2NyAxMy40NTkxTDIwLjIyNjcgMjcuMDg4QzIwLjIyNjYgMjcuMjEzIDIwLjEyNTEgMjcuMzE0NCAyMC4wMDAxIDI3LjMxNDZDMTkuODc1IDI3LjMxNDYgMTkuNzczNiAyNy4yMTMxIDE5Ljc3MzYgMjcuMDg4TDE5Ljc3MzYgMTMuNDU5MUwxNS41MDg5IDE3LjcyMzhDMTUuNDIwNCAxNy44MTIgMTUuMjc3MSAxNy44MTIxIDE1LjE4ODYgMTcuNzIzOFoiIGZpbGw9IiMwQjBCMEIiIHN0cm9rZT0iIzBCMEIwQiIvPgo8L3N2Zz4K");
}

@media only screen and (max-width: 767px) {
  .full-width-btn .full-width-btn-left {
    flex: 1;
  }
  .full-width-btn .full-width-btn-left .elementor-button {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
