:root {
  --nexa-family: "Nexa", Arial, sans-serif;
  --primary: #ee4424;
  --primary-dk: #d92705;
  --secondary: #2f2b2a;
  --yellow: #ffcb0c;
  --lt-black: #5a616e;
  --black: #000;
  --white: #fff;
  --gray-lt: #ccc;
  --gray-lt2: #999;
  --gray-soft: #f9f9f9;
  --transition: all 0.3s ease
}

@font-face {
  font-family: "Nexa";
  src: url("../fonts/nexa_light-webfont.woff2") format("woff2"), url("../fonts/nexa_light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Nexa";
  src: url("../fonts/nexa_bold-webfont.woff2") format("woff2"), url("../fonts/nexa_bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "Nexa";
  src: url("../fonts/nexa-book.woff2") format("woff2"), url("../fonts/nexa-book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

*,
:after,
:before {
  box-sizing: border-box
}

body {
  margin: 0;
  padding: 10px;
  min-width: 360px;
  color: var(--lt-black);
  font: 400 15px/1.5 var(--nexa-family)
}

@media (min-width:1024px) {
  body {
    font-size: 16px
  }
}

@media (max-width:767px) {
  body.nav-active {
    overflow: hidden
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--nexa-family);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 20px;
  color: var(--secondary)
}

.h1,
h1 {
  font-size: 32px;
  color: var(--primary)
}

@media (min-width:768px) {

  .h1,
  h1 {
    font-size: 40px
  }
}

@media (min-width:1024px) {

  .h1,
  h1 {
    font-size: 50px
  }
}

@media (min-width:1200px) {

  .h1,
  h1 {
    font-size: 60px
  }
}

.h1:last-child,
h1:last-child {
  margin-bottom: 0
}

.h2,
h2 {
  font-size: 26px;
  line-height: 1.217
}

@media (min-width:768px) {

  .h2,
  h2 {
    font-size: 34px
  }
}

@media (min-width:1024px) {

  .h2,
  h2 {
    font-size: 40px
  }
}

@media (min-width:1200px) {

  .h2,
  h2 {
    font-size: 46px
  }
}

.h2:last-child,
h2:last-child {
  margin-bottom: 0
}

.h3,
h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.166
}

@media (min-width:768px) {

  .h3,
  h3 {
    font-size: 20px
  }
}

@media (min-width:1024px) {

  .h3,
  h3 {
    font-size: 22px
  }
}

@media (min-width:1200px) {

  .h3,
  h3 {
    font-size: 24px
  }
}

.h4,
h4 {
  font-size: 17px;
  font-weight: 600
}

@media (min-width:768px) {

  .h4,
  h4 {
    font-size: 19px
  }
}

@media (min-width:1024px) {

  .h4,
  h4 {
    font-size: 21px
  }
}

.h5,
h5 {
  font-size: 14px;
  font-weight: 600
}

@media (min-width:768px) {

  .h5,
  h5 {
    font-size: 16px
  }
}

@media (min-width:1024px) {

  .h5,
  h5 {
    font-size: 18px
  }
}

p {
  margin: 0 0 15px
}

p:last-child {
  margin-bottom: 0
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block
}

.text-input {
  color: var(--black);
  background: var(--white);
  font: 400 14px/20px var(--nexa-family);
  padding: 7px 16px;
  text-align: left;
  height: 41px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: var(--transition);
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease
}

.text-input::placeholder {
  color: var(--gray-lt);
  opacity: 1
}

.text-input:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.07)
}

textarea.text-input {
  height: 100px;
  resize: none
}

.btn {
  font: 700 14px/20px var(--nexa-family);
  padding: 9px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--white);
  background-color: transparent;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  min-width: 112px
}

@media (min-width:768px) {
  .btn {
    font-size: 16px
  }
}

@media (min-width:1200px) {
  .btn {
    font-size: 18px;
    gap: 15px;
    padding: 9px 22px
  }
}

.btn:hover {
  color: var(--white);
  background-color: var(--secondary)
}

.btn .icon {
  flex-shrink: 0
}

.btn.btn-primary {
  background-color: var(--primary)
}

.btn.btn-primary:hover {
  background-color: var(--primary-dk)
}

.btn.btn-secondary {
  background-color: var(--secondary)
}

.btn.btn-secondary:hover {
  background-color: var(--black)
}

.btn.btn-white {
  color: var(--white);
  border-color: var(--white)
}

.btn.btn-white:hover {
  border-color: var(--secondary);
  background-color: var(--secondary)
}

.btn.btn-white-outline {
  color: var(--white);
  border-color: var(--white)
}

.btn.btn-white-outline:hover {
  color: var(--secondary);
  border-color: var(--secondary);
  background-color: transparent
}

.btn.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  min-width: inherit
}

@media (min-width:1024px) {
  .btn.btn-sm {
    padding: 6px 12px
  }
}

@media (min-width:1200px) {
  .btn.btn-sm {
    font-size: 14px;
    padding: 6px 15px
  }
}

@media (min-width:1440px) {
  .btn.btn-sm {
    font-size: 16px;
    padding: 6px 20px
  }
}

.btn[disabled] {
  color: var(--gray-lt2);
  background: var(--gray-lt);
  pointer-events: none
}

.btn.btn-icon:after {
  width: 13px;
  height: 19px;
  content: "";
  background-image: url('data:image/svg+xml,<svg width="13" height="19" viewBox="0 0 13 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.48471 0.000488281C7.43699 0.00270931 7.39042 0.0159071 7.34863 0.0390554C7.30684 0.0622037 7.27095 0.0946788 7.24376 0.133956L0.0566071 10.4452C0.0237677 10.4921 0.00442078 10.5471 0.00067184 10.6042C-0.0030771 10.6613 0.00891557 10.7184 0.0353447 10.7692C0.0617738 10.82 0.101627 10.8626 0.150567 10.8923C0.199507 10.922 0.255658 10.9377 0.312911 10.9377H5.28545L4.68898 18.4142C4.66536 18.7296 5.07285 18.8749 5.25592 18.6174L12.4443 8.30616C12.4771 8.25926 12.4964 8.20426 12.5002 8.14713C12.5039 8.09 12.4919 8.03293 12.4655 7.98215C12.4391 7.93136 12.3992 7.88879 12.3503 7.85908C12.3014 7.82937 12.2452 7.81365 12.1879 7.81363H7.21541L7.81188 0.337109C7.8151 0.292938 7.80892 0.248584 7.79373 0.20698C7.77855 0.165376 7.7547 0.127469 7.72378 0.0957633C7.69285 0.0640578 7.65555 0.039276 7.61434 0.0230557C7.57313 0.00683553 7.52894 -0.00163494 7.48471 0.000488281Z" fill="%23FFCB0C"/></svg>');
  background-size: 100% 100%
}

.btn.btn-icon[disabled]:after {
  background-image: url('data:image/svg+xml,<svg width="13" height="19" viewBox="0 0 13 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.48471 0.000366211C7.43699 0.00258724 7.39042 0.015785 7.34863 0.0389333C7.30684 0.0620816 7.27095 0.0945567 7.24376 0.133833L0.0566071 10.4451C0.0237677 10.492 0.00442078 10.547 0.00067184 10.6041C-0.0030771 10.6612 0.00891557 10.7183 0.0353447 10.7691C0.0617738 10.8199 0.101627 10.8624 0.150567 10.8921C0.199507 10.9219 0.255658 10.9376 0.312911 10.9376H5.28545L4.68898 18.4141C4.66536 18.7295 5.07285 18.8748 5.25592 18.6173L12.4443 8.30604C12.4771 8.25914 12.4964 8.20414 12.5002 8.14701C12.5039 8.08988 12.4919 8.03281 12.4655 7.98202C12.4391 7.93124 12.3992 7.88867 12.3503 7.85896C12.3014 7.82925 12.2452 7.81353 12.1879 7.81351H7.21541L7.81188 0.336987C7.8151 0.292815 7.80892 0.248462 7.79373 0.206858C7.77855 0.165254 7.7547 0.127347 7.72378 0.0956412C7.69285 0.0639357 7.65555 0.0391539 7.61434 0.0229337C7.57313 0.00671346 7.52894 -0.00175701 7.48471 0.000366211Z" fill="%23999999"/></svg>')
}

.slick-slider {
  position: relative;
  user-select: none
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0
}

.slick-list:focus {
  outline: none
}

.slick-list.dragging {
  cursor: pointer
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  transform: translate3d(0, 0, 0)
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block
}

.slick-loading .slick-track {
  visibility: hidden
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none
}

[dir=rtl] .slick-slide {
  float: right
}

.slick-slide img {
  display: block
}

.slick-slide.slick-loading img {
  display: none
}

.slick-slide.dragging img {
  pointer-events: none
}

.slick-initialized .slick-slide {
  display: block
}

.slick-loading .slick-slide {
  visibility: hidden
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent
}

.slick-arrow.slick-hidden {
  display: none
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  font-size: 0;
  line-height: 0
}

@media (min-width:768px) {
  .slick-dots {
    margin-top: 35px
  }
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  border: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  display: block;
  border-radius: 4px;
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center
}

.slick-dots li button:before {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  content: "";
  display: block;
  border-radius: 100%;
  transition: 0.3s
}

.slick-dots li button:hover:before {
  background: var(--primary)
}

.slick-dots li.slick-active button:before {
  width: 11px;
  height: 11px;
  background: var(--primary)
}

.slick-arrow {
  width: 36px;
  height: 36px;
  background: var(--secondary);
  padding: 0;
  position: absolute;
  top: -80px;
  border: 2px solid var(--secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition)
}

@media (min-width:768px) {
  .slick-arrow {
    width: 50px;
    height: 50px
  }
}

@media (max-width:767px) {
  .slick-arrow {
    display: none !important
  }
}

@media (max-width:767px) {
  .slick-arrow svg {
    transform: scale(0.7)
  }
}

.slick-arrow:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary)
}

.slick-arrow.slick-next {
  right: 15px
}

.slick-arrow.slick-prev {
  right: 75px
}

.slick-arrow.slick-disabled {
  pointer-events: none;
  opacity: 0.5
}

.wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column
}

.container {
  max-width: 1220px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto
}

@media (min-width:1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px
  }
}

.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
  padding: 20px 0
}

@media (min-width:1024px) {
  .header {
    padding: 45px 0 38px
  }
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1250px;
  position: relative
}

@media (min-width:1200px) {
  .header .container {
    gap: 20px
  }
}

@media (min-width:1440px) {
  .header .container {
    gap: 25px
  }
}

.header .logo {
  width: 120px;
  display: block
}

@media (min-width:1024px) {
  .header .logo {
    width: 135px
  }
}

@media (min-width:1200px) {
  .header .logo {
    width: 160px
  }
}

.header .logo a {
  display: block
}

.header .logo img {
  width: 100%;
  height: auto;
  display: block
}

.header .head-right {
  display: flex;
  align-items: center;
  gap: 15px
}

@media (min-width:1024px) {
  .header .head-right {
    gap: 10px
  }
}

@media (max-width:767px) {
  .header .head-right .btn.btn-secondary {
    display: none
  }
}

@media (max-width:1023px) {
  .header .head-right .btn.btn-secondary {
    font-size: 14px
  }
}

@media (max-width:1023px) {
  .header .head-right .btn.btn-white-outline {
    font-size: 14px
  }
}

.nav-opener {
  position: relative;
  width: 24px;
  height: 20px;
  border-top: 2px solid var(--white);
  transition: var(--transition);
  display: none
}

.nav-active .nav-opener {
  border-top: none
}

@media (max-width:1023px) {
  .nav-opener {
    display: block
  }
}

@media (max-width:767px) {
  .nav-active .nav-opener {
    border-top-color: var(--white)
  }
}

.nav-opener:after,
.nav-opener:before {
  background: var(--white);
  left: 0;
  right: 0;
  top: 6px;
  height: 2px;
  content: "";
  position: absolute;
  transition: var(--transition)
}

.nav-active .nav-opener:after,
.nav-active .nav-opener:before {
  top: 10px;
  transform: rotate(45deg);
  background: var(--white)
}

.nav-opener:after {
  top: 14px
}

.nav-active .nav-opener:after {
  transform: rotate(-45deg)
}

.nav-opener.nav-close {
  position: absolute;
  right: 20px;
  top: 20px
}

.nav-holder {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

@media (max-width:1023px) {
  .nav-holder {
    padding: 65px 0 40px;
    width: 300px;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--primary);
    position: fixed;
    display: block;
    transition: var(--transition);
    transform: translate(100%, 0);
    overflow: auto;
    border-radius: 16px 0 0 16px
  }

  .nav-active .nav-holder {
    z-index: 3;
    transform: none;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2)
  }
}

.resize-active .nav-holder {
  transition: none
}

.nav-holder .btn.btn-secondary {
  font-size: 16px;
  width: calc(100% - 48px);
  margin: 25px auto 0;
  padding: 8px 10px;
  display: flex
}

@media (min-width:768px) {
  .nav-holder .btn.btn-secondary {
    display: none
  }
}

.menu {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  font: 400 16px/1.5 var(--nexa-family)
}

@media (min-width:1024px) {
  .menu {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center
  }
}

@media (min-width:1200px) {
  .menu {
    font-size: 15px
  }
}

@media (min-width:1440px) {
  .menu {
    font-size: 16px
  }
}

.menu li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15)
}

@media (min-width:1024px) {
  .menu li {
    border-bottom: 0;
    padding: 0 7px;
    display: flex;
    align-items: center;
    gap: 3px
  }
}

@media (min-width:1200px) {
  .menu li {
    padding: 0 9px;
    gap: 4px
  }
}

@media (min-width:1440px) {
  .menu li {
    padding: 0 11px
  }
}

.menu li a {
  text-decoration: none;
  transition: var(--transition);
  display: block;
  color: var(--white);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px
}

@media (min-width:1024px) {
  .menu li a {
    padding: 10px 0;
    position: relative
  }
}

.menu li .drop-opener {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 44px;
  cursor: pointer
}

@media (min-width:1024px) {
  .menu li .drop-opener {
    position: static;
    width: auto;
    height: auto
  }
}

.menu li .drop-opener:before {
  width: 13px;
  height: 8px;
  content: "";
  transition: var(--transition);
  background-image: url('data:image/svg+xml,<svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.89959 7.55805L0.20595 1.86438C-0.0686499 1.58978 -0.0686499 1.14459 0.20595 0.870015L0.870022 0.205943C1.14415 -0.0681879 1.58844 -0.0687154 1.86322 0.204771L6.39679 4.71711L10.9303 0.204771C11.2051 -0.0687154 11.6494 -0.0681879 11.9235 0.205943L12.5876 0.870015C12.8622 1.14461 12.8622 1.58981 12.5876 1.86438L6.89399 7.55805C6.61939 7.83262 6.17419 7.83262 5.89959 7.55805Z" fill="%23ffffff"/></svg>');
  background-size: 100% 100%
}

@media (min-width:1024px) {
  .menu li .drop-opener:before {
    width: 8px;
    height: 5px;
    margin-top: 3px;
    background-image: url('data:image/svg+xml,<svg width="10" height="6" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.89959 7.55805L0.20595 1.86438C-0.0686499 1.58978 -0.0686499 1.14459 0.20595 0.870015L0.870022 0.205943C1.14415 -0.0681879 1.58844 -0.0687154 1.86322 0.204771L6.39679 4.71711L10.9303 0.204771C11.2051 -0.0687154 11.6494 -0.0681879 11.9235 0.205943L12.5876 0.870015C12.8622 1.14461 12.8622 1.58981 12.5876 1.86438L6.89399 7.55805C6.61939 7.83262 6.17419 7.83262 5.89959 7.55805Z" fill="%23ffffff"/></svg>')
  }
}

@media (min-width:1200px) {
  .menu li .drop-opener:before {
    width: 10px;
    height: 6px
  }
}

@media (min-width:1024px) {

  .menu li.has-dropdown.active>.drop-opener:before,
  .menu li.has-dropdown.current-menu-item>.drop-opener:before,
  .menu li.has-dropdown.current-menu-parent>.drop-opener:before,
  .menu li.has-dropdown:hover>.drop-opener:before {
    width: 10px;
    height: 6px;
    margin-top: 3px;
    background-image: url('data:image/svg+xml,<svg width="10" height="6" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.89959 7.55805L0.20595 1.86438C-0.0686499 1.58978 -0.0686499 1.14459 0.20595 0.870015L0.870022 0.205943C1.14415 -0.0681879 1.58844 -0.0687154 1.86322 0.204771L6.39679 4.71711L10.9303 0.204771C11.2051 -0.0687154 11.6494 -0.0681879 11.9235 0.205943L12.5876 0.870015C12.8622 1.14461 12.8622 1.58981 12.5876 1.86438L6.89399 7.55805C6.61939 7.83262 6.17419 7.83262 5.89959 7.55805Z" fill="%23000000"/></svg>')
  }
}

.menu li.active>a,
.menu li.current-menu-item>a,
.menu li.current-menu-parent>a,
.menu li.drop-active>a,
.menu li:hover>a {
  opacity: 0.7
}

@media (min-width:1024px) {

  .menu li.active>a,
  .menu li.current-menu-item>a,
  .menu li.current-menu-parent>a,
  .menu li.drop-active>a,
  .menu li:hover>a {
    opacity: 1;
    color: var(--black)
  }
}

@media (min-width:1024px) {
  .menu li:hover>ul {
    opacity: 1;
    visibility: visible
  }
}

@media (max-width:1023px) {
  .menu li.drop-active>.drop-opener:before {
    transform: rotate(180deg)
  }
}

@media (min-width:1024px) {
  .menu li.drop-active>a {
    color: var(--white)
  }
}

@media (min-width:1024px) {
  .menu li.drop-active>ul {
    display: none;
    opacity: 0;
    visibility: hidden
  }
}

@media (min-width:1024px) {
  .menu li.drop-active:hover>a {
    color: var(--primary)
  }
}

@media (min-width:1024px) {
  .menu li.drop-active:hover>ul {
    opacity: 1;
    visibility: visible
  }
}

.menu li>ul {
  list-style: none;
  padding: 0 25px 4px;
  margin: 0;
  display: none
}

@media (min-width:1024px) {
  .menu li>ul {
    display: block !important;
    position: absolute;
    left: -10px;
    top: 100%;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    padding: 12px 20px;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(3px)
  }
}

.menu li>ul>li {
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 0
}

@media (min-width:1024px) {
  .menu li>ul>li {
    border-top: none
  }
}

.menu li>ul>li>a {
  padding: 10px;
  color: var(--white)
}

@media (min-width:1024px) {
  .menu li>ul>li>a {
    color: var(--secondary);
    padding: 8px 0
  }
}

@media (max-width:1023px) {
  .menu li>ul>li>a {
    font-size: 14px
  }
}

.menu li>ul>li>a:hover {
  opacity: 0.7
}

@media (min-width:1024px) {
  .menu li>ul>li>a:hover {
    opacity: 1;
    color: var(--primary)
  }
}

.menu li>ul>li.active>a,
.menu li>ul>li.current-menu-item>a {
  opacity: 0.7
}

@media (min-width:1024px) {

  .menu li>ul>li.active>a,
  .menu li>ul>li.current-menu-item>a {
    opacity: 1;
    color: var(--primary)
  }
}

.header-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 24px;
  gap: 15px
}

@media (min-width:1024px) {
  .header-info {
    padding: 0;
    position: absolute;
    right: 20px;
    top: -35px;
    gap: 20px;
    flex-direction: row
  }
}

@media (min-width:1200px) {
  .header-info {
    gap: 33px
  }
}

.header-info .contact-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #fff
}

@media (min-width:1024px) {
  .header-info .contact-list {
    gap: 20px;
    width: auto;
    align-items: center;
    flex-direction: row
  }
}

@media (min-width:1200px) {
  .header-info .contact-list {
    gap: 30px
  }
}

.header-info .contact-list li {
  margin: 0;
  gap: 6px
}

.header-info .contact-list li .icon svg {
  max-height: 12px
}

.header-info .contact-list li .icon svg path {
  fill: #fff
}

@media (max-width:1023px) {
  .header-info .contact-list li a:hover {
    color: #ffcb0c
  }
}

.header-info .social-networks {
  padding: 2px 0 0;
  width: 100%
}

@media (min-width:1024px) {
  .header-info .social-networks {
    width: auto
  }
}

@media (min-width:1024px) {
  .header-info .social-networks li a {
    width: 12px;
    height: 12px
  }
}

@media (max-width:1023px) {
  .header-info .social-networks li a:hover {
    color: #ffcb0c
  }
}

.main {
  position: relative;
  width: 100%;
  overflow: hidden
}

@media (min-width:768px) {
  .main {
    overflow: hidden
  }
}

.visual-block {
  width: 100%;
  position: relative;
  margin-bottom: 35px;
  border-radius: 16px;
  padding-bottom: 15px;
  overflow: hidden;
  min-height: 440px;
  background: linear-gradient(118deg, #faecc0 8%, #ffc9bf 15%, #79ace4 32%, #6595c9 60%, #6595c9 100%)
}

@media (min-width:768px) {
  .visual-block {
    padding-bottom: 0;
    margin-bottom: 0;
    border-radius: 20px;
    overflow: visible
  }
}

@media (min-width:1024px) {
  .visual-block {
    border-radius: 24px
  }
}

@media (min-width:1440px) {
  .visual-block {
    min-height: 650px;
    height: calc(100vh - 20px)
  }
}

.visual-block .visual-image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 16px
}

@media (min-width:768px) {
  .visual-block .visual-image {
    border-radius: 20px
  }
}

@media (min-width:1024px) {
  .visual-block .visual-image {
    border-radius: 24px
  }
}

@media (min-width:1440px) {
  .visual-block .visual-image {
    position: static;
    height: 100%;
    display: flex;
    align-items: flex-end
  }
}

.visual-block .visual-image img,
.visual-block .visual-image picture {
  width: 100%;
  height: auto;
  display: block
}

@media (min-width:1440px) {

  .visual-block .visual-image img,
  .visual-block .visual-image picture {
    object-fit: cover;
    object-position: center top
  }
}

@media (min-width:1500px) {

  .visual-block .visual-image img,
  .visual-block .visual-image picture {
    height: 100%
  }
}

.visual-block .visual-holder {
  display: flex;
  flex-direction: column
}

@media (min-width:1440px) {
  .visual-block .visual-holder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
  }
}

.visual-block .container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column
}

.visual-block .textbox {
  padding: 120px 0 85px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  flex-grow: 1;
  max-width: 400px;
  min-height: 420px
}

@media (min-width:768px) {
  .visual-block .textbox {
    justify-content: flex-start;
    padding: 150px 0 190px;
    max-width: 450px;
    min-height: 550px
  }
}

@media (min-width:1024px) {
  .visual-block .textbox {
    justify-content: center;
    max-width: 570px;
    min-height: 750px
  }
}

@media (min-width:1200px) {
  .visual-block .textbox {
    min-height: 838px
  }
}

@media (min-width:1400px) {
  .visual-block .textbox {
    padding: 177px 0 190px
  }
}

.visual-block .textbox h1 {
  color: var(--white);
  margin-bottom: 10px
}

@media (min-width:768px) {
  .visual-block .textbox h1 {
    letter-spacing: -1px
  }
}

@media (min-width:1024px) {
  .visual-block .textbox h1 {
    letter-spacing: -2px
  }
}

.visual-block .textbox p {
  margin: 0 0 21px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.25)
}

.visual-block .textbox p:last-child {
  margin-bottom: 0
}

.visual-block .search-form {
  width: 100%;
  max-width: 650px;
  position: relative;
  margin-top: 30px
}

@media (min-width:768px) {
  .visual-block .search-form {
    margin-top: 50px;
    margin-bottom: -75px
  }
}

.visual-block .search-form .text-input {
  height: 44px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  backdrop-filter: blur(3px);
  padding-left: 45px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white)
}

@media (min-width:768px) {
  .visual-block .search-form .text-input {
    height: 56px;
    padding-left: 55px
  }
}

.visual-block .search-form .text-input::placeholder {
  color: var(--white)
}

.visual-block .search-form .btn-search {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  padding: 0;
  background: transparent
}

@media (min-width:768px) {
  .visual-block .search-form .btn-search {
    left: 20px;
    width: 24px;
    height: 24px
  }
}

.visual-block .search-form .btn-search svg {
  width: 100%;
  height: auto;
  display: block
}

.visual-block .postmeta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.25)
}

.visual-block .postmeta li {
  padding: 0 7px 0 0;
  display: flex;
  align-items: center;
  gap: 6px
}

.visual-block .postmeta li:before {
  width: 1px;
  height: 12px;
  background: var(--white);
  content: "";
  display: none
}

.visual-block .postmeta li+li:before {
  display: block
}

.visual-block .postmeta li:nth-child(2):before {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  margin: 0 1px
}

.visual-block .social-links {
  list-style: none;
  padding: 17px 0 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.visual-block .social-links li a {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition)
}

.visual-block .social-links li a:hover {
  color: var(--secondary)
}

.visual-block.visual-inner {
  min-height: inherit;
  margin-bottom: 35px;
  background: linear-gradient(128deg, #faecc0 8%, #ffc9bf 15%, #79ace4 32%, #6595c9 60%, #6595c9 100%)
}

@media (min-width:768px) {
  .visual-block.visual-inner {
    margin-bottom: 54px
  }
}

@media (min-width:1440px) {
  .visual-block.visual-inner {
    height: auto;
    max-height: 690px
  }
}

.visual-block.visual-inner .visual-image {
  height: 100%
}

@media (min-width:1440px) {
  .visual-block.visual-inner .visual-image {
    position: static;
    height: auto;
    max-height: inherit;
    display: block
  }
}

.visual-block.visual-inner .visual-image img {
  height: 100%;
  object-fit: cover;
  object-position: right top;
  min-width: 640px
}

@media (min-width:768px) {
  .visual-block.visual-inner .visual-image img {
    object-position: center top
  }
}

.visual-block.visual-inner .textbox {
  justify-content: center;
  max-width: 100%;
  align-items: center;
  color: var(--white);
  padding: 120px 0 85px
}

@media (min-width:768px) {
  .visual-block.visual-inner .textbox {
    min-height: 375px;
    padding: 85px 0
  }
}

@media (min-width:1024px) {
  .visual-block.visual-inner .textbox {
    max-width: 100%;
    min-height: 520px;
    padding: 120px 0 85px
  }
}

.visual-block.visual-inner h1,
.visual-block.visual-inner h2 {
  color: var(--white);
  letter-spacing: normal;
  margin: 0 0 20px;
  text-align: center
}

@media (min-width:1440px) {
  .visual-block.visual-inner .h2 {
    font-size: 48px
  }
}

.visual-block.visual-inner .h3 {
  font-size: 21px;
  margin: 0 0 12px
}

@media (min-width:768px) {
  .visual-block.visual-inner .h3 {
    font-size: 26px
  }
}

@media (min-width:1024px) {
  .visual-block.visual-inner .h3 {
    font-size: 30px
  }
}

@media (min-width:1200px) {
  .visual-block.visual-inner .h3 {
    font-size: 36px
  }
}

.visual-block.visual-inner p {
  font-weight: 700;
  max-width: 740px;
  margin: 0 auto 20px;
  text-align: center
}

@media (min-width:1200px) {
  .visual-block.visual-inner p {
    font-size: 18px
  }
}

@media (max-width:767px) {
  .visual-block.visual-inner p br {
    display: none
  }
}

.visual-block.visual-inner .btn-wrap {
  padding-top: 23px
}

.visual-content {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 15px
}

@media (min-width:1024px) {
  .visual-content {
    flex-direction: row
  }
}

@media (min-width:1200px) {
  .visual-content {
    gap: 24px
  }
}

.advance-box {
  padding: 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  width: 100%
}

@media (min-width:768px) {
  .advance-box {
    padding: 20px;
    border-radius: 20px
  }
}

@media (min-width:1024px) {
  .advance-box {
    width: 45%;
    margin-bottom: 15px;
    border-radius: 24px
  }
}

@media (min-width:1200px) {
  .advance-box {
    padding: 30px;
    width: 49.3%;
    margin-bottom: 22px
  }
}

.advance-box .text-holder {
  flex-grow: 1;
  min-width: 0
}

.advance-box .h3 {
  margin: 0 0 10px;
  line-height: 1
}

@media (min-width:1440px) {
  .advance-box .h3 {
    font-size: 28px
  }
}

.advance-box p {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01rem;
  margin: 0
}

@media (max-width:479px) {
  .advance-box p {
    font-size: 12px
  }
}

.advance-box .video-box {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 14px;
  overflow: hidden
}

@media (min-width:768px) {
  .advance-box .video-box {
    width: 110px;
    height: 110px
  }
}

@media (min-width:1200px) {
  .advance-box .video-box {
    width: 120px;
    height: 120px
  }
}

.advance-box .video-box:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  background: rgba(0, 0, 0, 0.2)
}

.advance-box .video-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center
}

.advance-box .button-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 100%;
  border: 0;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  transition: var(--transition);
  box-shadow: 0 0 0 10px rgba(255, 203, 12, 0.2);
  animation: pulseShadow 1.5s infinite
}

@media (min-width:1200px) {
  .advance-box .button-play {
    width: 52px;
    height: 52px
  }
}

.advance-box .button-play img {
  width: 12px;
  height: 14px
}

@media (min-width:1200px) {
  .advance-box .button-play img {
    width: 14px;
    height: 16px
  }
}

.advance-box .button-play:hover {
  background: var(--primary)
}

@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 203, 12, 0.4)
  }

  50% {
    box-shadow: 0 0 0 15px rgba(255, 203, 12, 0)
  }

  to {
    box-shadow: 0 0 0 0 rgba(255, 203, 12, 0)
  }
}

.discover-block {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 32px
}

@media (min-width:768px) {
  .discover-block {
    margin-right: -20px;
    margin-top: -154px
  }
}

@media (min-width:1024px) {
  .discover-block {
    margin-top: -164px
  }
}

@media (min-width:1200px) {
  .discover-block {
    margin-top: -207px
  }
}

.discover-block .discover-holder {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative
}

@media (min-width:768px) {
  .discover-block .discover-holder {
    padding: 15px;
    border-radius: 20px;
    border-top-right-radius: 0;
    flex-direction: row;
    margin-left: auto;
    width: 480px
  }
}

@media (min-width:1024px) {
  .discover-block .discover-holder {
    padding: 20px;
    padding-right: 0;
    border-radius: 24px;
    border-top-right-radius: 0
  }
}

@media (min-width:1200px) {
  .discover-block .discover-holder {
    padding: 24px;
    padding-right: 0;
    gap: 20px;
    width: 575px
  }
}

.discover-block .discover-holder:after,
.discover-block .discover-holder:before {
  content: "";
  position: absolute;
  z-index: 1;
  background: transparent;
  width: 30px;
  height: 30px;
  border-bottom-right-radius: 16px;
  box-shadow: 5px 5px 0 5px var(--white);
  display: none
}

@media (min-width:768px) {

  .discover-block .discover-holder:after,
  .discover-block .discover-holder:before {
    display: block;
    border-bottom-right-radius: 20px
  }
}

@media (min-width:1024px) {

  .discover-block .discover-holder:after,
  .discover-block .discover-holder:before {
    border-bottom-right-radius: 24px
  }
}

.discover-block .discover-holder:after {
  bottom: 100%;
  right: 0
}

.discover-block .discover-holder:before {
  bottom: 46px;
  right: 100%
}

@media (min-width:1440px) {
  .discover-block .discover-holder:before {
    bottom: 47px
  }
}

.discover-block .btn {
  position: absolute;
  bottom: 100%;
  right: 15px;
  margin-bottom: 13px;
  padding-top: 8px;
  padding-bottom: 8px
}

@media (min-width:1024px) {
  .discover-block .btn {
    min-width: 200px
  }
}

.discover-block .advance-box {
  width: 100%;
  border: 1px solid rgba(136, 136, 136, 0.3);
  margin: 0
}

@media (min-width:768px) {
  .discover-block .advance-box {
    max-width: 550px;
    height: 170px
  }
}

@media (min-width:1024px) {
  .discover-block .advance-box {
    border-radius: 20px
  }
}

@media (min-width:1200px) {
  .discover-block .advance-box {
    padding: 20px;
    height: 206px
  }
}

.discover-block .advance-box .h3 {
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.discover-block .advance-box .h3 a {
  color: currentColor;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition)
}

.discover-block .advance-box .h3 a:hover {
  color: var(--primary)
}

.discover-block .advance-box p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden
}

@media (min-width:1200px) {
  .discover-block .advance-box p {
    font-size: 16px;
    line-height: 1.4
  }
}

@media (min-width:1200px) {
  .discover-block .advance-box .video-box {
    width: 152px;
    height: 152px
  }
}

.modal-popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: safe center;
  justify-content: safe center;
  padding: 20px;
  z-index: 101;
  overflow: hidden;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s
}

@media (min-width:768px) {
  .modal-popup {
    padding: 30px
  }
}

.modal-popup.modal-slideup {
  opacity: 1;
  visibility: visible
}

.modal-popup.modal-slideup .modal-continer {
  transform: none
}

.modal-popup .modal-close {
  width: 32px;
  height: 32px;
  background: #eef2f2;
  border-radius: 100%;
  position: absolute;
  right: -15px;
  top: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px
}

@media (min-width:768px) {
  .modal-popup .modal-close {
    width: 48px;
    height: 48px;
    right: -20px;
    top: -20px
  }
}

.modal-popup .modal-close:before {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1
}

.modal-popup .modal-close:hover {
  background: #dde0e0
}

.modal-popup .modal-continer {
  width: 100%;
  max-width: 865px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  position: relative;
  transform: translateY(100%);
  transition: 0.35s ease-in-out
}

.modal-popup .modal-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-height: 90vh;
  overflow: auto
}

.modal-popup .modal-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 16px
}

.modal-popup .modal-video:before {
  display: block;
  content: "";
  padding-top: 56.6%
}

.modal-popup .modal-video iframe,
.modal-popup .modal-video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0
}

.section {
  width: 100%;
  position: relative;
  padding: 40px 0
}

@media (min-width:1024px) {
  .section {
    padding: 52px 0
  }
}

.section-header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 25px
}

@media (min-width:768px) {
  .section-header {
    gap: 16px;
    max-width: 775px;
    margin: 0 0 32px
  }
}

.section-header .text-holder {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  min-width: 0
}

@media (min-width:768px) {
  .section-header .text-holder {
    gap: 16px
  }
}

@media (min-width:1024px) {
  .section-header .text-holder {
    gap: 24px
  }
}

.section-header .subtitle {
  font-size: 18px;
  color: var(--primary);
  display: block;
  font-weight: 700;
  flex-shrink: 0
}

@media (min-width:768px) {
  .section-header .subtitle {
    font-size: 20px
  }
}

.section-header h2 {
  margin: 0;
  letter-spacing: -0.5px
}

@media (min-width:768px) {
  .section-header h2 {
    letter-spacing: -1px
  }
}

.section-header h3 {
  line-height: 1.2;
  margin: 0 0 8px
}

@media (min-width:1440px) {
  .section-header h3 {
    font-size: 26px
  }
}

.section-header h3 span {
  color: var(--gray-lt)
}

.section-header p {
  margin: 0;
  letter-spacing: -0.01rem
}

.section-header .btn {
  flex-shrink: 0;
  margin-top: auto
}

.section-header.head-cols {
  max-width: 100%;
  gap: 12px
}

@media (min-width:768px) {
  .section-header.head-cols {
    gap: 15px
  }
}

@media (min-width:1024px) {
  .section-header.head-cols {
    flex-direction: row;
    gap: 40px
  }
}

@media (min-width:1200px) {
  .section-header.head-cols {
    gap: 80px
  }
}

@media (min-width:1440px) {
  .section-header.head-cols {
    gap: 115px
  }
}

.section-header.head-cols .subtitle {
  padding-top: 8px
}

.into-block {
  overflow: hidden;
  padding-top: 0
}

.into-block .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px
}

@media (min-width:1024px) {
  .into-block .container {
    align-items: center;
    flex-direction: row;
    gap: 20px
  }
}

@media (min-width:1200px) {
  .into-block .container {
    gap: 30px
  }
}

.into-block .section-header {
  margin: 0 0 -15px;
  width: 100%
}

.into-block .section-header .subtitle {
  padding-top: 0
}

@media (min-width:1024px) {
  .into-block .section-header.head-cols {
    gap: 30px
  }
}

@media (min-width:1200px) {
  .into-block .section-header.head-cols {
    gap: 36px
  }
}

@media (max-width:767px) {
  .into-block .section-header h3 {
    margin-bottom: 0
  }
}

.into-block .column {
  width: 100%
}

@media (min-width:1024px) {
  .into-block .column {
    width: auto;
    flex: 1;
    max-width: 574px
  }
}

.into-block .column .section-header {
  margin-bottom: 32px
}

@media (min-width:1024px) {
  .into-block .column .stats-list {
    gap: 15px
  }
}

@media (min-width:1200px) {
  .into-block .column .stats-list {
    gap: 20px
  }
}

@media (min-width:1440px) {
  .into-block .column .stats-list {
    gap: 35px
  }
}

.into-block .column h3 {
  margin: 0 0 10px
}

@media (min-width:1024px) {
  .into-block .column h3 {
    letter-spacing: -1px
  }
}

.into-block .column p {
  letter-spacing: -0.01rem
}

@media (min-width:1200px) {
  .into-block .column p {
    line-height: 1.625
  }
}

.into-block .img-holder {
  overflow: hidden;
  position: relative;
  border-radius: 16px
}

@media (min-width:768px) {
  .into-block .img-holder {
    border-radius: 20px
  }
}

@media (min-width:1024px) {
  .into-block .img-holder {
    border-radius: 24px
  }
}

.into-block .img-holder:before {
  content: "";
  display: block;
  padding-top: 66.3%
}

.into-block .img-holder img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.into-block .subcol-holder {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  padding: 15px 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #eee
}

@media (min-width:480px) {
  .into-block .subcol-holder {
    flex-direction: row;
    gap: 10px
  }
}

@media (min-width:768px) {
  .into-block .subcol-holder {
    gap: 15px
  }
}

@media (min-width:1024px) {
  .into-block .subcol-holder {
    gap: 20px
  }
}

.into-block .subcol {
  flex: 1
}

@media (min-width:1024px) {
  .into-block .subcol {
    max-width: 271px
  }
}

@media (max-width:767px) {
  .into-block .subcol p {
    font-size: 14px
  }
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px
}

@media (min-width:768px) {
  .stats-list {
    gap: 40px
  }
}

@media (min-width:1200px) {
  .stats-list {
    gap: 60px
  }
}

.stats-list .numbers {
  font-size: 16px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px
}

@media (min-width:768px) {
  .stats-list .numbers {
    font-size: 18px
  }
}

@media (min-width:1200px) {
  .stats-list .numbers {
    font-size: 20px
  }
}

.stats-list .purecounter {
  font-size: 24px;
  letter-spacing: -1px;
  color: #121c30
}

@media (min-width:768px) {
  .stats-list .purecounter {
    font-size: 30px
  }
}

@media (min-width:1200px) {
  .stats-list .purecounter {
    font-size: 36px
  }
}

.stats-list .subtext {
  display: block;
  color: var(--gray-lt2);
  font-size: 14px
}

@media (min-width:1200px) {
  .stats-list .subtext {
    font-size: 16px
  }
}

.services-block {
  padding-top: 0
}

@media (max-width:1023px) {
  .services-block .section-header {
    max-width: 575px
  }
}

@media (max-width:767px) {
  .services-block .section-header {
    max-width: 100%
  }
}

.services-slider {
  margin: 0 -25px
}

@media (min-width:768px) {
  .services-slider {
    margin: 0 -7px
  }
}

@media (min-width:1200px) {
  .services-slider {
    margin: 0 -15px
  }
}

.services-slider .slick-list {
  padding: 0 40px 0 15px
}

@media (min-width:768px) {
  .services-slider .slick-list {
    padding: 0
  }
}

.services-slider .slick-slide {
  padding: 0 7px;
  height: auto
}

@media (min-width:1200px) {
  .services-slider .slick-slide {
    padding: 0 15px
  }
}

.services-slider .slick-track {
  display: flex
}

.service-box {
  background: #eee;
  overflow: hidden;
  min-height: 320px;
  transition: var(--transition);
  color: var(--secondary);
  padding: 20px;
  position: relative;
  height: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border-radius: 16px
}

@media (min-width:768px) {
  .service-box {
    border-radius: 20px
  }
}

@media (min-width:1024px) {
  .service-box {
    border-radius: 24px
  }
}

@media (min-width:1200px) {
  .service-box {
    padding: 30px;
    border-radius: 30px;
    min-height: 346px
  }
}

.service-box:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  visibility: hidden;
  background: var(--primary);
  transition: var(--transition)
}

.service-box .img-circle {
  position: absolute;
  right: 0;
  top: 0;
  width: 49%;
  max-width: 194px;
  transition: var(--transition);
  opacity: 0
}

.service-box .img-circle img {
  width: 100%;
  height: auto;
  display: block
}

.service-box .icon {
  color: var(--primary);
  transition: var(--transition);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1
}

.service-box .textbox {
  position: relative;
  z-index: 1;
  margin-top: auto;
  min-height: 106px
}

.service-box h3 {
  color: currentColor;
  margin: 0 0 7px
}

@media (min-width:1024px) {
  .service-box h3 {
    letter-spacing: -1px
  }
}

.service-box p {
  letter-spacing: -0.01rem
}

.service-box:hover {
  color: var(--white)
}

.service-box:hover .img-circle {
  opacity: 0.7
}

.service-box:hover .icon {
  color: var(--yellow)
}

.service-box:hover:before {
  opacity: 1;
  visibility: visible
}

.about-block {
  width: 100%;
  overflow: hidden;
  margin-bottom: 34px
}

@media (max-width:767px) {
  .about-block {
    padding-top: 0;
    margin-bottom: 15px
  }
}

.about-block .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column
}

@media (min-width:768px) {
  .about-block .container {
    flex-direction: row;
    gap: 15px
  }
}

@media (min-width:1200px) {
  .about-block .container {
    gap: 30px
  }
}

.about-block .section-header {
  width: 100%
}

@media (min-width:768px) {
  .about-block .section-header {
    width: auto;
    flex: 1;
    max-width: 450px;
    padding: 12px 0 0
  }
}

.about-block .experience-box {
  display: flex;
  align-items: center;
  gap: 20px
}

@media (min-width:1024px) {
  .about-block .experience-box {
    gap: 33px
  }
}

.about-block .numbers {
  font-size: 100px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -1px;
  font-weight: 700;
  display: flex;
  align-items: center
}

@media (min-width:768px) {
  .about-block .numbers {
    font-size: 120px
  }
}

@media (min-width:1024px) {
  .about-block .numbers {
    font-size: 160px
  }
}

@media (min-width:1200px) {
  .about-block .numbers {
    font-size: 199px
  }
}

.about-block .subheading {
  font-size: 20px;
  line-height: 1;
  color: var(--gray-lt2);
  font-weight: 700;
  padding: 15px 0 0
}

@media (min-width:1024px) {
  .about-block .subheading {
    font-size: 22px
  }
}

@media (min-width:1200px) {
  .about-block .subheading {
    font-size: 26px
  }
}

.about-block .about-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--secondary)
}

@media (min-width:768px) {
  .about-block .about-info {
    flex: 1;
    max-width: 574px;
    gap: 32px
  }
}

.about-block .img-holder {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 16px
}

@media (min-width:768px) {
  .about-block .img-holder {
    border-radius: 20px
  }
}

@media (min-width:1024px) {
  .about-block .img-holder {
    border-radius: 24px
  }
}

.about-block .img-holder:before {
  content: "";
  display: block;
  padding-top: 52.3%
}

.about-block .img-holder img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.about-block .img-holder .caption {
  position: absolute;
  right: -10px;
  bottom: 11%;
  color: var(--yellow);
  background: var(--white);
  max-width: 290px;
  border-radius: 16px 0 0 16px
}

@media (min-width:768px) {
  .about-block .img-holder .caption {
    border-radius: 22px 0 0 22px
  }
}

@media (min-width:1024px) {
  .about-block .img-holder .caption {
    border-radius: 28px 0 0 28px;
    max-width: 350px
  }
}

@media (min-width:1200px) {
  .about-block .img-holder .caption {
    max-width: 386px
  }
}

.about-block .img-holder .caption:after,
.about-block .img-holder .caption:before {
  content: "";
  position: absolute;
  right: 10px;
  height: 36px;
  width: 36px;
  background: transparent;
  box-shadow: 18px 0 0 0 white
}

.about-block .img-holder .caption:before {
  top: -35px;
  border-bottom-right-radius: 16px
}

@media (min-width:768px) {
  .about-block .img-holder .caption:before {
    border-bottom-right-radius: 20px
  }
}

@media (min-width:1024px) {
  .about-block .img-holder .caption:before {
    border-bottom-right-radius: 24px
  }
}

.about-block .img-holder .caption:after {
  bottom: -35px;
  border-top-right-radius: 16px
}

@media (min-width:768px) {
  .about-block .img-holder .caption:after {
    border-top-right-radius: 20px
  }
}

@media (min-width:1024px) {
  .about-block .img-holder .caption:after {
    border-top-right-radius: 24px
  }
}

.about-block .img-holder .caption .caption-holder {
  padding: 10px 15px;
  background: var(--primary);
  border-radius: 20px;
  border: 10px solid var(--white)
}

@media (min-width:768px) {
  .about-block .img-holder .caption .caption-holder {
    border-radius: 25px
  }
}

@media (min-width:1024px) {
  .about-block .img-holder .caption .caption-holder {
    border-radius: 30px;
    padding: 10px 20px
  }
}

.about-block .img-holder .caption h3 {
  color: var(--yellow);
  margin: 0;
  line-height: 1.075;
  font-weight: 600
}

@media (min-width:1024px) {
  .about-block .img-holder .caption h3 {
    letter-spacing: -0.5px
  }
}

@media (min-width:1200px) {
  .about-block .img-holder .caption h3 {
    letter-spacing: -1px
  }
}

.about-block .img-holder .caption .subtext {
  font-size: 14px;
  font-weight: 700
}

.about-block .textbox {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px
}

@media (min-width:768px) {
  .about-block .textbox {
    gap: 32px
  }
}

.about-block .textbox p {
  margin: 0;
  letter-spacing: -0.01rem
}

@media (min-width:1200px) {
  .about-block .textbox p {
    font-size: 18px;
    line-height: 1.2
  }
}

.about-block .column {
  width: 100%
}

@media (min-width:768px) {
  .about-block .column {
    width: auto;
    flex: 1;
    max-width: 574px
  }
}

.about-block .column .section-header {
  max-width: 100%;
  margin-bottom: 20px
}

@media (max-width:1023px) {
  .about-block .column .section-header {
    padding-top: 0
  }
}

.about-block .column .img-holder {
  margin: 0 0 30px
}

@media (min-width:768px) {
  .about-block .column .img-holder {
    margin: 0
  }
}

.about-block .column .img-holder:before {
  padding-top: 100%
}

.about-block .column p {
  letter-spacing: -0.01rem;
  margin-bottom: 15px
}

@media (min-width:1200px) {
  .about-block .column p {
    line-height: 1.625;
    margin: 0 0 26px
  }
}

.about-block .ceo-info {
  overflow: hidden
}

@media (min-width:768px) {
  .about-block .ceo-info {
    margin: -5px 0 0
  }
}

.about-block .ceo-info img {
  display: block;
  margin-bottom: 8px
}

.about-block .ceo-info .name {
  display: block;
  font-size: 18px;
  color: var(--primary);
  font-weight: 700
}

@media (min-width:1200px) {
  .about-block .ceo-info .name {
    font-size: 20px
  }
}

@media (min-width:1440px) {
  .about-block .ceo-info .name {
    font-size: 20px
  }
}

.about-block .ceo-info .subtext {
  color: var(--secondary);
  display: block;
  font-weight: 700
}

@media (max-width:767px) {
  .about-block.alt .container {
    flex-direction: column-reverse
  }
}

.choose-block {
  background: var(--primary) url("../images/bg-choose.webp") no-repeat center bottom;
  background-size: cover;
  padding: 15px 0;
  color: #fff;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 35px
}

@media (min-width:768px) {
  .choose-block {
    border-radius: 20px;
    margin-bottom: 52px
  }
}

@media (min-width:1024px) {
  .choose-block {
    border-radius: 24px;
    padding: 55px 0 85px
  }
}

@media (min-width:1200px) {
  .choose-block {
    padding: 60px 0 75px
  }
}

@media (min-width:1440px) {
  .choose-block {
    padding: 116px 0
  }
}

.choose-block .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 25px
}

@media (min-width:768px) {
  .choose-block .container {
    gap: 30px
  }
}

@media (min-width:1024px) {
  .choose-block .container {
    flex-direction: row
  }
}

.choose-block .img-holder {
  width: 100%;
  border-radius: 16px;
  position: relative
}

@media (min-width:768px) {
  .choose-block .img-holder {
    border-radius: 20px
  }
}

@media (min-width:1024px) {
  .choose-block .img-holder {
    width: auto;
    flex: 1;
    max-width: 500px;
    border-radius: 24px
  }
}

@media (min-width:1200px) {
  .choose-block .img-holder {
    max-width: 541px
  }
}

.choose-block .img-holder:before {
  content: "";
  display: block;
  padding-top: 118.3%
}

.choose-block .img-holder img,
.choose-block .img-holder picture {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  position: absolute;
  left: 0;
  top: 0
}

@media (min-width:768px) {

  .choose-block .img-holder img,
  .choose-block .img-holder picture {
    border-radius: 20px
  }
}

@media (min-width:1024px) {

  .choose-block .img-holder img,
  .choose-block .img-holder picture {
    border-radius: 24px
  }
}

.choose-block .small-image {
  position: absolute;
  right: -12px;
  bottom: -12px;
  border-radius: 16px 0 16px 0;
  background: var(--primary);
  padding: 10px;
  width: 40.5%
}

@media (min-width:768px) {
  .choose-block .small-image {
    border-radius: 20px 0 20px 0
  }
}

@media (min-width:1024px) {
  .choose-block .small-image {
    bottom: -53px;
    width: 52.5%;
    border-radius: 24px 0 24px 0
  }
}

.choose-block .small-image:after,
.choose-block .small-image:before {
  position: absolute;
  content: "";
  bottom: 53px;
  right: 100%;
  z-index: 1;
  background: transparent;
  width: 30px;
  height: 30px;
  border-bottom-right-radius: 16px;
  box-shadow: 5px 5px 0px 5px var(--primary)
}

@media (min-width:768px) {

  .choose-block .small-image:after,
  .choose-block .small-image:before {
    border-bottom-right-radius: 20px
  }
}

@media (min-width:1024px) {

  .choose-block .small-image:after,
  .choose-block .small-image:before {
    border-bottom-right-radius: 24px
  }
}

.choose-block .small-image:before {
  right: 12px;
  bottom: 100%
}

@media (max-width:1023px) {
  .choose-block .small-image:after {
    bottom: 12px
  }
}

.choose-block .small-image img,
.choose-block .small-image picture {
  border-radius: 12px
}

@media (min-width:768px) {

  .choose-block .small-image img,
  .choose-block .small-image picture {
    border-radius: 16px
  }
}

@media (min-width:1024px) {

  .choose-block .small-image img,
  .choose-block .small-image picture {
    border-radius: 20px
  }
}

.choose-block .small-image .image-wrap {
  position: relative
}

.choose-block .small-image .image-wrap:before {
  content: "";
  display: block;
  padding-top: 118.3%
}

.choose-block .info-column {
  width: 100%
}

@media (min-width:1024px) {
  .choose-block .info-column {
    width: auto;
    flex: 1
  }
}

@media (min-width:1200px) {
  .choose-block .info-column {
    max-width: 574px;
    padding: 27px 0 0
  }
}

.choose-block .section-header {
  margin-bottom: 20px
}

.choose-block .section-header .subtitle {
  color: var(--yellow)
}

.choose-block .section-header h2 {
  color: var(--white)
}

@media (min-width:1200px) {
  .choose-block .section-header h2 {
    padding-right: 12%
  }
}

.features-list {
  list-style: none;
  padding: 0;
  margin: -5px;
  display: flex;
  flex-wrap: wrap
}

@media (min-width:1200px) {
  .features-list {
    margin: -10px
  }
}

.features-list li {
  width: 100%;
  padding: 10px 5px
}

@media (min-width:480px) {
  .features-list li {
    width: 50%
  }
}

@media (min-width:1200px) {
  .features-list li {
    padding: 10px
  }
}

.features-list .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px
}

.features-list h3 {
  color: var(--yellow);
  margin: 0 0 4px
}

@media (min-width:768px) {
  .features-list h3 {
    font-size: 18px
  }
}

.features-list p {
  font-size: 14px;
  line-height: 1.45
}

.success-block {
  overflow: hidden;
  margin: 0 0 20px;
  border-radius: 16px
}

@media (min-width:768px) {
  .success-block {
    border-radius: 20px
  }
}

@media (min-width:1024px) {
  .success-block {
    border-radius: 24px
  }
}

@media (min-width:1440px) {
  .success-block {
    min-height: 980px
  }
}

.success-block .success-holder {
  display: flex;
  gap: 20px;
  flex-direction: column-reverse
}

@media (min-width:768px) {
  .success-block .success-holder {
    flex-direction: row
  }
}

@media (min-width:1024px) {
  .success-block .success-holder {
    gap: 30px
  }
}

@media (min-width:1200px) {
  .success-block .success-holder {
    gap: 58px
  }
}

@media (min-width:1200px) {
  .success-block .section-header {
    margin-bottom: 65px
  }
}

.app-block {
  color: var(--white);
  overflow: hidden;
  background: var(--secondary);
  border-radius: 16px;
  padding-top: 45px;
  padding-bottom: 0
}

@media (min-width:768px) {
  .app-block {
    border-radius: 20px;
    padding-top: 60px
  }
}

@media (min-width:1024px) {
  .app-block {
    border-radius: 24px;
    padding-top: 75px
  }
}

@media (min-width:1200px) {
  .app-block {
    padding-top: 82px
  }
}

.app-block .section-header {
  max-width: 100%;
  text-align: center;
  align-items: center;
  margin-bottom: 45px
}

@media (min-width:768px) {
  .app-block .section-header {
    margin-bottom: 52px
  }
}

.app-block .section-header .subtitle {
  color: var(--yellow)
}

.app-block .section-header h2 {
  color: var(--white)
}

.app-block .section-header p {
  margin-bottom: 5px
}

.app-holder {
  overflow: hidden;
  max-width: 260px;
  height: 426px;
  margin: 0 auto;
  position: relative
}

@media (min-width:768px) {
  .app-holder {
    max-width: 700px;
    height: 426px
  }
}

@media (min-width:1200px) {
  .app-holder {
    max-width: 1044px;
    height: 627px
  }
}

.app-holder .app-frame {
  width: 250px;
  height: 426px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  font-size: 0;
  line-height: 0
}

@media (min-width:1200px) {
  .app-holder .app-frame {
    width: 368px;
    height: 627px
  }
}

.app-holder .app-frame img,
.app-holder .app-frame picture {
  width: 100%;
  height: 100%;
  display: block
}

.app-slider {
  width: 100%;
  max-width: 236px;
  padding: 8px 0 0;
  margin: 0 auto
}

@media (min-width:768px) {
  .app-slider {
    max-width: inherit;
    padding: 6px 0 0;
    margin: 0
  }
}

@media (min-width:1200px) {
  .app-slider {
    padding-top: 12px
  }
}

@media (min-width:768px) {
  .app-slider .slick-list {
    overflow: visible
  }
}

.app-slider .slick-slide {
  overflow: hidden
}

.app-slider .slick-slide.slick-center .img-holder {
  margin: 0;
  transform: scale(1)
}

.app-slider .slick-slide.slick-center .img-holder:before {
  padding-top: 185.5%
}

.app-slider .slick-slide.slick-center .img-holder img,
.app-slider .slick-slide.slick-center .img-holder picture {
  border-radius: 20px 20px 0 0;
  max-height: inherit
}

@media (min-width:1200px) {

  .app-slider .slick-slide.slick-center .img-holder img,
  .app-slider .slick-slide.slick-center .img-holder picture {
    border-radius: 40px 40px 0 0
  }
}

.app-slider .img-holder {
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: scale(0.7);
  transition: var(--transition);
  margin-top: -10px
}

@media (min-width:768px) {
  .app-slider .img-holder {
    margin-top: -25px
  }
}

.app-slider .img-holder:before {
  content: "";
  display: block;
  padding-top: 211%
}

@media (min-width:1200px) {
  .app-slider .img-holder:before {
    padding-top: 204%
  }
}

.app-slider .img-holder img,
.app-slider .img-holder picture {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  max-height: 710px;
  left: 0;
  top: 0;
  border-radius: 20px;
  transition: var(--transition)
}

@media (min-width:1200px) {

  .app-slider .img-holder img,
  .app-slider .img-holder picture {
    border-radius: 30px
  }
}

.cities-column {
  width: 100%;
  flex-shrink: 0
}

@media (min-width:768px) {
  .cities-column {
    width: 240px;
    margin-top: -13px
  }
}

@media (min-width:1024px) {
  .cities-column {
    width: 320px
  }
}

.cities-column .select-wrap {
  width: 100%;
  margin-bottom: 15px
}

.cities-column .nice-select {
  float: none
}

@media (min-width:1024px) {
  .cities-column .nice-select {
    height: 52px;
    font-size: 16px
  }
}

.cities-column .nice-select .list {
  max-height: 282px;
  overflow: auto
}

.city-box {
  border: 1px solid #e0e7ee;
  border-radius: 12px
}

@media (min-width:768px) {
  .city-box {
    border-radius: 16px
  }
}

@media (min-width:1024px) {
  .city-box {
    border-radius: 20px
  }
}

.projects-info {
  list-style: none;
  padding: 0;
  margin: 0
}

.projects-info li {
  padding: 15px;
  border-bottom: 1px solid #e0e7ee
}

@media (min-width:1024px) {
  .projects-info li {
    padding: 17px 25px
  }
}

.projects-info li:first-child,
.projects-info li:last-child {
  border-bottom: 0
}

.projects-info li:first-child {
  padding-bottom: 0
}

.projects-info .city-name {
  display: inline-flex;
  align-items: center;
  background: #ffe4e4;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  padding: 2px 12px;
  gap: 7px
}

.projects-info .city-name:before {
  width: 11px;
  height: 14px;
  content: "";
  background-image: url('data:image/svg+xml,<svg width="11" height="14" viewBox="0 0 11 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.51363 0C2.47289 0 0 2.44542 0 5.45237C0 7.37247 1.02579 9.08879 2.54616 10.067C3.49868 10.941 4.35045 11.6384 4.98699 13.0377L5.27092 13.8438C5.37624 14.0521 5.66017 14.0521 5.72886 13.8438L6.01278 13.0377C6.64932 11.6384 7.49651 10.9772 8.45361 10.067C10.0106 9.08879 10.9998 7.4087 10.9998 5.45237C11.0273 2.44542 8.54978 0 5.51363 0ZM5.51363 7.34077C4.44204 7.34077 3.57195 6.48035 3.57195 5.42067C3.57195 4.36099 4.44204 3.50057 5.51363 3.50057C6.58521 3.50057 7.4553 4.36099 7.4553 5.42067C7.4553 6.47582 6.58521 7.34077 5.51363 7.34077Z" fill="%232F2B2A"/></svg>');
  background-size: 100% 100%
}

.projects-info .title-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 10px
}

.projects-info .title-wrap .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center
}

.projects-info .subtitle {
  color: var(--gray-lt2)
}

@media (min-width:768px) {
  .projects-info .subtitle {
    font-size: 14px
  }
}

@media (min-width:1024px) {
  .projects-info .subtitle {
    font-size: 16px
  }
}

.projects-info .numbers {
  display: block;
  color: var(--secondary);
  font-size: 16px;
  line-height: 1;
  font-weight: 700
}

@media (min-width:1024px) {
  .projects-info .numbers {
    font-size: 18px
  }
}

@media (min-width:1200px) {
  .projects-info .numbers {
    font-size: 20px
  }
}

.projects-info .numbers span {
  color: var(--primary);
  font-size: 14px
}

@media (min-width:1024px) {
  .projects-info .numbers span {
    font-size: 16px
  }
}

.map-block {
  width: 100%;
  padding: 60px 0 10px
}

@media (min-width:768px) {
  .map-block {
    padding: 0;
    width: auto;
    flex-grow: 1;
    min-width: 0
  }
}

@media (min-width:1200px) {
  .map-block {
    margin-top: 52px
  }
}

.map-block img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -1px
}

.map-block .map-holder {
  position: relative;
  max-width: 380px;
  margin: 0 auto
}

@media (min-width:768px) {
  .map-block .map-holder {
    max-width: 570px
  }
}

@media (min-width:1024px) {
  .map-block .map-holder {
    max-width: inherit;
    margin: 0
  }
}

.map-item {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 21px;
  height: 24px;
  transform: scale(0.8)
}

@media (min-width:1024px) {
  .map-item {
    transform: scale(0.9)
  }
}

@media (min-width:1200px) {
  .map-item {
    transform: scale(1)
  }
}

.map-item:hover .map-pin:before {
  width: 24px;
  height: 28px
}

.map-item:hover .city-name {
  color: var(--primary)
}

.map-item .map-pin {
  display: block;
  width: 21px;
  height: 24px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  top: 3px
}

.map-item .map-pin:before {
  width: 20px;
  height: 24px;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url('data:image/svg+xml,<svg width="21" height="24" viewBox="0 0 21 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(%23filter0_d_146_188)"><path d="M10.2592 1C5.70606 1 2 4.49563 2 8.79026C2 11.5368 3.53537 13.9838 5.81195 15.382C7.24143 16.6305 8.51208 17.6292 9.46506 19.6267L9.88861 20.7753C10.0474 21.0749 10.471 21.0749 10.5769 20.7753L11.0004 19.6267C11.9534 17.6292 13.2241 16.6804 14.6535 15.382C16.9831 13.9838 18.4655 11.5868 18.4655 8.79026C18.5184 4.49563 14.8124 1 10.2592 1Z" fill="white"/></g><path d="M10.2593 11.4868C11.8675 11.4868 13.1712 10.2571 13.1712 8.74022C13.1712 7.22333 11.8675 5.99365 10.2593 5.99365C8.65112 5.99365 7.34741 7.22333 7.34741 8.74022C7.34741 10.2571 8.65112 11.4868 10.2593 11.4868Z" fill="%23EE4424"/><defs><filter id="filter0_d_146_188" x="0" y="0" width="20.4661" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_146_188"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_146_188" result="shape"/></filter></defs></svg>');
  background-size: 100% 100%;
  transition: var(--transition)
}

.map-item .line {
  background: #ccc;
  height: 1.1px;
  min-width: 37px;
  flex-shrink: 0;
  position: relative
}

@media (min-width:768px) {
  .map-item .line {
    height: 1px
  }
}

.map-item .city-name {
  white-space: nowrap;
  font-size: 14px;
  color: #666;
  display: block;
  transition: var(--transition);
  margin-top: -2px;
  position: relative
}

.map-item.alt {
  flex-direction: row-reverse
}

.map-item.above,
.map-item.below {
  flex-direction: column-reverse
}

.map-item.above .line,
.map-item.below .line {
  width: 1.1px;
  min-width: inherit;
  min-height: 40px;
  margin-bottom: -5px;
  height: 110px
}

@media (min-width:768px) {

  .map-item.above .line,
  .map-item.below .line {
    width: 1px;
    height: 180px
  }
}

@media (min-width:1024px) {

  .map-item.above .line,
  .map-item.below .line {
    height: 220px
  }
}

.map-item.above .line:before,
.map-item.below .line:before {
  width: 14px;
  height: 1.1px;
  background: #ccc;
  content: "";
  position: absolute;
  right: 0;
  top: 0
}

@media (min-width:768px) {

  .map-item.above .line:before,
  .map-item.below .line:before {
    height: 1px
  }
}

.map-item.above .city-name,
.map-item.below .city-name {
  right: 56px;
  top: 16px
}

.map-item.below {
  flex-direction: column
}

.map-item.below .line {
  height: 125px
}

@media (min-width:768px) {
  .map-item.below .line {
    height: 140px
  }
}

@media (min-width:1024px) {
  .map-item.below .line {
    height: 160px
  }
}

.map-item.below .line:before {
  top: auto;
  bottom: 0;
  right: auto;
  left: 0
}

.map-item.below .city-name {
  right: auto;
  left: 37px;
  top: auto;
  bottom: 10px
}

.map-item.main-city .map-pin:before {
  width: 23px;
  height: 28px;
  background-image: url('data:image/svg+xml,<svg width="23" height="28" viewBox="0 0 23 28" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(%23filter0_d_133_76)"><path d="M11.3486 1C16.502 1.00012 20.6964 5.19436 20.6367 10.3477C20.6367 13.7034 18.9589 16.5799 16.3223 18.2578C14.7043 19.8158 13.2661 20.9547 12.1875 23.3516L11.708 24.7305C11.588 25.0896 11.1085 25.0897 10.9287 24.7305L10.4492 23.3516C9.37057 20.9548 7.93237 19.7559 6.31445 18.2578C3.73782 16.5799 2 13.6434 2 10.3477C2.00023 5.19429 6.19516 1 11.3486 1ZM11.3486 6.99219C9.52836 6.99219 8.05275 8.46783 8.05273 10.2881C8.05273 12.1084 9.52835 13.584 11.3486 13.584C13.1688 13.5839 14.6445 12.1083 14.6445 10.2881C14.6445 8.4679 13.1688 6.99231 11.3486 6.99219Z" fill="%23EE4424"/></g><defs><filter id="filter0_d_133_76" x="0" y="0" width="22.6375" height="27.9998" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_133_76"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_133_76" result="shape"/></filter></defs></svg>')
}

.map-item.main-city .city-name {
  font-size: 18px;
  color: var(--black);
  font-weight: 700;
  margin-top: 1px
}

.map-item.rawalpindi {
  right: 25%;
  top: 10%
}

@media (min-width:768px) {
  .map-item.rawalpindi {
    right: 28.95%;
    top: 22.8%
  }
}

.map-item.islamabad {
  right: 27.5%;
  top: 16%
}

@media (min-width:768px) {
  .map-item.islamabad {
    right: 26.85%;
    top: 26.8%
  }
}

.map-item.gujarkhan {
  right: 32%;
  top: 18%
}

@media (min-width:768px) {
  .map-item.gujarkhan {
    right: 30.8%;
    top: 30.65%
  }
}

@media (max-width:767px) {
  .map-item.gujarkhan .line {
    height: 95px
  }
}

.map-item.abbottabad {
  right: 30%;
  top: 9%
}

@media (min-width:768px) {
  .map-item.abbottabad {
    right: 26.6%;
    top: 13.2%
  }
}

.map-item.abbottabad .line {
  width: 110px
}

@media (min-width:768px) {
  .map-item.abbottabad .line {
    width: 132px
  }
}

.map-item.peshawar {
  right: 37%;
  top: 16%
}

@media (min-width:768px) {
  .map-item.peshawar {
    right: 39.7%;
    top: 19.5%
  }
}

.map-item.peshawar .line {
  width: 74px
}

.map-item.kallarkahar {
  right: 38%;
  top: 23%
}

@media (min-width:768px) {
  .map-item.kallarkahar {
    right: 35.3%;
    top: 25.5%
  }
}

.map-item.kallarkahar .line {
  width: 90px
}

@media (min-width:768px) {
  .map-item.kallarkahar .line {
    width: 152px
  }
}

.map-item.mianwali {
  right: 40%;
  top: 30%
}

@media (min-width:768px) {
  .map-item.mianwali {
    right: 36.1%;
    top: 32.2%
  }
}

.map-item.mianwali .line {
  width: 130px
}

@media (min-width:768px) {
  .map-item.mianwali .line {
    width: 148px
  }
}

.map-item.khushab {
  right: 38%;
  top: 37%
}

@media (min-width:768px) {
  .map-item.khushab {
    right: 33.7%;
    top: 35.8%
  }
}

.map-item.khushab .line {
  width: 130px
}

@media (min-width:768px) {
  .map-item.khushab .line {
    width: 150px
  }
}

.map-item.gujrat {
  right: 28%;
  top: 24%
}

@media (min-width:768px) {
  .map-item.gujrat {
    right: 27.6%;
    top: 30.8%
  }
}

.map-item.gujrat .line {
  width: 75px
}

@media (min-width:768px) {
  .map-item.gujrat .line {
    width: 89px
  }
}

.map-item.sialkot {
  right: 32%;
  top: 30%
}

@media (min-width:768px) {
  .map-item.sialkot {
    right: 26.1%;
    top: 34%
  }
}

.map-item.sialkot .line {
  width: 50px
}

@media (min-width:768px) {
  .map-item.sialkot .line {
    width: 68px
  }
}

.map-item.gujranwala {
  right: 30%;
  top: 36%
}

@media (min-width:768px) {
  .map-item.gujranwala {
    top: 37.4%
  }
}

.map-item.gujranwala .line {
  width: 45px
}

@media (min-width:768px) {
  .map-item.gujranwala .line {
    width: 98px
  }
}

.map-item.lahore {
  right: 27%;
  top: 41.65%
}

@media (min-width:768px) {
  .map-item.lahore {
    right: 28.95%;
    top: 41.65%
  }
}

.map-item.raiwind {
  right: 33%;
  top: 47%
}

@media (min-width:768px) {
  .map-item.raiwind {
    right: 30.8%;
    top: 45.65%
  }
}

.map-item.raiwind .line {
  width: 75px
}

@media (min-width:768px) {
  .map-item.raiwind .line {
    width: 96px
  }
}

.map-item.kasur {
  right: 36%;
  top: 52%
}

@media (min-width:768px) {
  .map-item.kasur {
    right: 32.2%;
    top: 50.4%
  }
}

.map-item.kasur .line {
  width: 96px
}

.map-item.chunian {
  right: 40%;
  top: 56%
}

@media (min-width:768px) {
  .map-item.chunian {
    right: 33.1%;
    top: 54.7%
  }
}

.map-item.chunian .line {
  width: 60px
}

@media (min-width:768px) {
  .map-item.chunian .line {
    width: 98px
  }
}

.map-item.bahawalpur {
  right: 49%;
  top: 62%
}

@media (min-width:768px) {
  .map-item.bahawalpur {
    right: 48.2%;
    top: 59.8%
  }
}

.map-item.bahawalpur .line {
  width: 60px
}

@media (min-width:768px) {
  .map-item.bahawalpur .line {
    width: 98px
  }
}

.map-item.okara {
  right: 41.75%;
  top: 49%
}

@media (min-width:768px) {
  .map-item.okara {
    top: 52%
  }
}

.map-item.depalpur {
  right: 39.2%;
  top: 62%
}

@media (min-width:768px) {
  .map-item.depalpur {
    top: 63.1%
  }
}

.map-item.depalpur .line {
  height: 55px
}

@media (min-width:768px) {
  .map-item.depalpur .line {
    height: 47px
  }
}

.map-item.depalpur .city-name {
  left: 49px
}

.map-item.karachi {
  top: auto;
  bottom: 10.3%;
  right: 64.3%
}

.map-item.karachi .line {
  display: none
}

.partner-block {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 14px
}

@media (min-width:768px) {
  .partner-block {
    margin: 0 0 8px
  }
}

.partner-block .section-header {
  margin: 0 auto;
  text-align: center
}

.partner-block .section-header .subtitle {
  width: 100%;
  color: var(--gray-lt2)
}

.partner-block.alt {
  margin: 0;
  padding-top: 15px
}

.partner-marquee {
  padding: 35px 0 10px;
  position: relative
}

@media (min-width:768px) {
  .partner-marquee {
    padding: 35px 0
  }
}

.partner-marquee:after,
.partner-marquee:before {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  width: 20%;
  z-index: 1
}

.partner-marquee:before {
  left: 0;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)
}

.partner-marquee:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%)
}

.partner-marquee .js-marquee-wrapper {
  overflow: hidden
}

.partner-marquee .marquee-line {
  display: flex;
  gap: 0;
  width: 100% !important
}

@media (min-width:768px) {
  .partner-marquee .marquee-line {
    gap: 60px;
    margin-right: 60px
  }
}

.partner-marquee .partner-item {
  margin: 0 -10px
}

@media (min-width:768px) {
  .partner-marquee .partner-item {
    margin: 0
  }
}

.partner-marquee .partner-item img {
  max-width: inherit
}

@media (max-width:767px) {
  .partner-marquee .partner-item img {
    transform: scale(0.7)
  }
}

.partner-marquee+.partner-marquee {
  padding: 23px 0 15px
}

.innovation-block {
  width: 100%;
  position: relative;
  background: var(--primary) url("../images/bg-innovation.webp") no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  border-radius: 16px;
  padding: 30px 0;
  color: var(--white);
  margin-bottom: 12px
}

@media (min-width:768px) {
  .innovation-block {
    border-radius: 20px;
    padding: 40px 0;
    margin-bottom: 30px
  }
}

@media (min-width:1024px) {
  .innovation-block {
    border-radius: 24px;
    padding: 50px 0
  }
}

@media (min-width:1200px) {
  .innovation-block {
    padding: 70px 0;
    margin-bottom: 50px
  }
}

@media (min-width:1440px) {
  .innovation-block {
    padding: 100px 0;
    margin-bottom: 75px
  }
}

.innovation-block:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: var(--primary);
  opacity: 0.8
}

.innovation-block .container {
  position: relative;
  z-index: 1
}

.innovation-block .section-header .subtitle {
  color: var(--yellow)
}

.innovation-block .section-header h2 {
  color: var(--white)
}

.innovation-block .innovation-holder {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 4px;
  gap: 30px
}

@media (min-width:768px) {
  .innovation-block .innovation-holder {
    gap: 25px 0
  }
}

.project-box {
  width: 100%
}

@media (min-width:768px) {
  .project-box {
    width: 49%
  }
}

@media (min-width:1440px) {
  .project-box {
    width: 48.7%;
    margin: 0 0 22px
  }
}

.project-box .project-holder {
  padding: 10px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--yellow);
  margin: 0 0 23px
}

@media (min-width:768px) {
  .project-box .project-holder {
    border-radius: 20px
  }
}

@media (min-width:1024px) {
  .project-box .project-holder {
    border-radius: 24px
  }
}

.project-box .img-holder {
  overflow: hidden;
  border-radius: 12px;
  position: relative
}

@media (min-width:768px) {
  .project-box .img-holder {
    border-radius: 15px
  }
}

@media (min-width:1024px) {
  .project-box .img-holder {
    border-radius: 18px
  }
}

.project-box .img-holder:before {
  content: "";
  display: block;
  padding-top: 54.1%
}

.project-box .img-holder img,
.project-box .img-holder picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.project-box .list-stats {
  list-style: none;
  padding: 7px 5px;
  margin: 11px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
  line-height: 1;
  font-size: 14px;
  flex-wrap: wrap
}

@media (min-width:1200px) {
  .project-box .list-stats {
    gap: 15px;
    padding: 7px 15px;
    font-size: 16px
  }
}

@media (min-width:1440px) {
  .project-box .list-stats {
    font-size: 18px;
    gap: 20px
  }
}

.project-box .list-stats li {
  display: flex;
  align-items: center;
  gap: 8px
}

.project-box .list-stats .icon {
  flex-shrink: 0
}

.project-box .list-stats .text {
  padding-top: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.project-box .list-stats .text span {
  font-size: 16px;
  color: var(--primary)
}

.project-box .textbox {
  overflow: hidden
}

.project-box h3 {
  color: var(--white);
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 17px
}

@media (min-width:1440px) {
  .project-box h3 {
    gap: 20px
  }
}

.project-box h3 span {
  padding-left: 7px;
  font-size: 16px;
  letter-spacing: normal;
  border-left: 1px solid var(--white)
}

@media (min-width:1440px) {
  .project-box h3 span {
    padding-left: 10px
  }
}

.project-box p {
  margin: 0 0 22px;
  letter-spacing: -0.01rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2
}

.posts-block {
  margin-bottom: 0
}

@media (min-width:1440px) {
  .posts-block .section-header.head-cols {
    gap: 100px
  }
}

.blogs-slider {
  padding: 9px 0;
  margin: 0 -25px
}

@media (min-width:768px) {
  .blogs-slider {
    margin: 0 -7px
  }
}

@media (min-width:1200px) {
  .blogs-slider {
    margin: 0 -15px
  }
}

.blogs-slider .slick-list {
  padding: 0 25px 0 15px
}

@media (min-width:768px) {
  .blogs-slider .slick-list {
    padding: 0
  }
}

.blogs-slider .slick-slide {
  padding: 0 7px;
  height: auto
}

@media (min-width:1200px) {
  .blogs-slider .slick-slide {
    padding: 0 15px
  }
}

.blogs-slider .slick-track {
  display: flex
}

.blog-post {
  height: 100%;
  padding: 10px;
  border-radius: 16px;
  background: var(--secondary);
  color: var(--white)
}

@media (min-width:768px) {
  .blog-post {
    border-radius: 20px
  }
}

@media (min-width:1024px) {
  .blog-post {
    border-radius: 24px
  }
}

.blog-post .img-holder {
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  background: linear-gradient(128deg, #faecc0 8%, #ffc9bf 15%, #79ace4 32%, #6595c9 60%, #6595c9 100%)
}

.blog-post .img-holder:before {
  content: "";
  display: block;
  padding-top: 70.7%
}

.blog-post .img-holder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 18px
}

.blog-post .textbox {
  overflow: hidden;
  padding: 20px 10px 15px
}

@media (min-width:1200px) {
  .blog-post .textbox {
    padding: 20px 12px
  }
}

@media (min-width:1440px) {
  .blog-post .textbox {
    padding: 20px
  }
}

.blog-post .date {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 14px;
  margin: 0 0 10px
}

.blog-post .date:before {
  width: 13px;
  height: 16px;
  display: block;
  content: "";
  background-image: url('data:image/svg+xml,<svg width="13" height="16" viewBox="0 0 13 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.83333 0.5V2.5M9.16667 0.5V2.5M0.833333 5.22667H12.1667M12.5 4.83333V10.5C12.5 12.5 11.5 13.8333 9.16667 13.8333H3.83333C1.5 13.8333 0.5 12.5 0.5 10.5V4.83333C0.5 2.83333 1.5 1.5 3.83333 1.5H9.16667C11.5 1.5 12.5 2.83333 12.5 4.83333Z" stroke="%23FFCB0C" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  flex-shrink: 0
}

.blog-post h3 {
  color: var(--white);
  transition: 0.3s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 700
}

@media (min-width:1200px) {
  .blog-post h3 {
    letter-spacing: -1px
  }
}

.blog-post h3 a {
  color: currentColor;
  text-decoration: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2
}

.blog-post h3:hover {
  color: var(--yellow)
}

.blog-post p {
  letter-spacing: -0.01rem;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4
}

.testimonials-block {
  overflow: hidden;
  padding-top: 0
}

@media (min-width:768px) {
  .testimonials-block .section-header {
    max-width: 575px
  }
}

@media (min-width:1024px) {
  .testimonials-block .section-header {
    max-width: 640px
  }
}

.testimonials-slider {
  padding: 5px 0;
  margin: 0 -25px
}

@media (min-width:768px) {
  .testimonials-slider {
    margin: 0 -7px
  }
}

@media (min-width:1200px) {
  .testimonials-slider {
    margin: 0 -15px
  }
}

.testimonials-slider .slick-list {
  padding: 0 25px 0 15px
}

@media (min-width:768px) {
  .testimonials-slider .slick-list {
    padding: 0
  }
}

.testimonials-slider .slick-slide {
  padding: 0 7px;
  height: auto
}

@media (min-width:1200px) {
  .testimonials-slider .slick-slide {
    padding: 0 15px
  }
}

.testimonials-slider .slick-track {
  display: flex
}

.testimonials-slider .slick-arrow {
  background-color: #eee;
  border-color: #eee;
  color: var(--secondary)
}

.testimonials-slider .slick-arrow:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary)
}

@media (min-width:768px) {
  .testimonials-slider .slick-dots {
    display: none !important
  }
}

.testimonial-box {
  border: 1px solid #eee;
  background: var(--white);
  padding: 15px;
  border-radius: 20px;
  margin: 0;
  width: 100%;
  color: var(--lt-black);
  line-height: 1.5
}

@media (min-width:1200px) {
  .testimonial-box {
    padding: 20px
  }
}

@media (min-width:1440px) {
  .testimonial-box {
    padding: 28px 25px
  }
}

.testimonial-box .stars-icon {
  display: block;
  margin: 0 0 15px
}

.testimonial-box .stars-icon img {
  display: block
}

.testimonial-box q {
  display: block;
  margin: 0 0 15px
}

@media (min-width:1200px) {
  .testimonial-box q {
    margin: 0 0 20px
  }
}

@media (min-width:1440px) {
  .testimonial-box q {
    margin: 0 0 24px
  }
}

.testimonial-box .author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #e8e8e8;
  padding: 15px 0 0;
  font-style: normal
}

@media (min-width:1200px) {
  .testimonial-box .author {
    padding: 20px 0 0
  }
}

.testimonial-box .avatar {
  width: 48px;
  height: 48px;
  background: #eee;
  border-radius: 100%;
  flex-shrink: 0
}

.testimonial-box .avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center
}

.testimonial-box .author-info {
  flex-grow: 1;
  min-width: 0
}

.testimonial-box .name {
  display: block;
  color: var(--secondary);
  line-height: 1.35
}

.testimonial-box .des {
  display: block;
  color: #999;
  font-size: 14px;
  line-height: 1.35
}

.cta-block {
  position: relative;
  padding: 64px 0 0;
  margin: 0 0 55px
}

@media (max-width:767px) {
  .cta-block {
    padding: 30px 0 15px;
    margin: 0 0 35px
  }
}

.cta-block .bg-img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 16px;
  overflow: hidden;
  bottom: 0
}

@media (min-width:768px) {
  .cta-block .bg-img {
    border-radius: 20px
  }
}

@media (min-width:1024px) {
  .cta-block .bg-img {
    border-radius: 24px
  }
}

.cta-block .bg-img:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: #FFCB0C;
  opacity: 60%;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden
}

@media (min-width:768px) {
  .cta-block .bg-img:after {
    border-radius: 20px
  }
}

@media (min-width:1024px) {
  .cta-block .bg-img:after {
    border-radius: 24px
  }
}

.cta-block img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cta-block .box-holder {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 100px
}

@media (max-width:1199px) {
  .cta-block .box-holder {
    gap: 2%
  }
}

@media (max-width:767px) {
  .cta-block .box-holder {
    flex-direction: column;
    gap: 0
  }
}

.cta-block .text-box {
  width: 48.7%;
  color: var(--secondary);
  padding: 64px 0 0
}

@media (max-width:1199px) {
  .cta-block .text-box {
    width: 49%
  }
}

@media (max-width:1023px) {
  .cta-block .text-box {
    width: 49%;
    padding: 0
  }
}

@media (max-width:767px) {
  .cta-block .text-box {
    width: 100%
  }
}

.consultant-form {
  background: #fff;
  border-radius: 30px 30px 0 0;
  padding: 40px 40px 10px;
  width: 37%;
  position: relative
}

@media (max-width:1199px) {
  .consultant-form {
    width: 49%;
    padding: 30px 30px 20px;
    border-radius: 25px 25px 0 0
  }
}

@media (max-width:1023px) {
  .consultant-form {
    padding: 20px;
    border-radius: 20px 20px 0 0
  }
}

@media (max-width:767px) {
  .consultant-form {
    width: 100%;
    border-radius: 16px;
    padding: 15px
  }
}

.consultant-form form {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.consultant-form h3 {
  line-height: 1.25;
  text-align: center
}

.consultant-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  width: 100%
}

@media (min-width:621px) {
  .consultant-form .form-group:last-of-type {
    margin-bottom: 0
  }
}

@media (max-width:620px) {
  .consultant-form .form-group {
    margin-bottom: 10px
  }
}

.consultant-form label {
  font-weight: 500;
  line-height: 1;
  color: var(--secondary);
  font-size: 14px
}

.consultant-form label span {
  margin-left: 0;
  vertical-align: middle
}

.consultant-form .btn {
  display: flex;
  max-width: 200px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  position: relative
}

.consultant-form .btn .overlay-submit {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  border: none
}

.consultant-form:after,
.consultant-form:before {
  position: absolute;
  content: ""
}

@media (max-width:767px) {

  .consultant-form:after,
  .consultant-form:before {
    display: none
  }
}

.consultant-form:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -36px;
  height: 36px;
  width: 36px;
  background: transparent;
  border-bottom-right-radius: 16px;
  box-shadow: 18px 0 0 0 white
}

@media (min-width:768px) {
  .consultant-form:after {
    border-bottom-right-radius: 20px
  }
}

@media (min-width:1024px) {
  .consultant-form:after {
    border-bottom-right-radius: 24px
  }
}

.consultant-form:before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -36px;
  height: 36px;
  width: 36px;
  background: transparent;
  border-bottom-left-radius: 24px;
  box-shadow: -18px 0 0 0 white
}

@media (max-width:480px) {
  .consultant-form {
    border-radius: 14px
  }

  .consultant-form button {
    width: 100%;
    max-width: 100%
  }
}

.consultant-form.quote-form {
  width: 100%;
  background: #F4F4F4;
  border-radius: 24px;
  padding: 40px
}

@media (max-width:1199px) {
  .consultant-form.quote-form {
    padding: 25px
  }
}

@media (max-width:767px) {
  .consultant-form.quote-form {
    padding: 20px
  }
}

@media (max-width:1199px) {
  .consultant-form.quote-form p br {
    display: none
  }
}

.consultant-form.quote-form .group-holder {
  display: flex;
  gap: 32px
}

@media (max-width:1199px) {
  .consultant-form.quote-form .group-holder {
    gap: 10px
  }
}

@media (max-width:620px) {
  .consultant-form.quote-form .group-holder {
    flex-direction: column;
    gap: 10px
  }
}

.consultant-form.quote-form:after,
.consultant-form.quote-form:before {
  display: none
}

.consultant-form.quote-form label {
  font-weight: 600
}

.consultant-form.quote-form .nice-select,
.consultant-form.quote-form input {
  height: 50px
}

.consultant-form.quote-form textarea {
  height: 113px
}

.footer {
  overflow: hidden;
  background-color: var(--secondary);
  color: var(--white);
  padding: 60px 0 20px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 24px
}

@media (min-width:1650px) {
  .footer {
    margin-bottom: 0
  }
}

@media (max-width:1023px) {
  .footer {
    padding: 50px 0 20px;
    font-size: 15px;
    border-radius: 20px
  }
}

@media (max-width:767px) {
  .footer {
    padding: 40px 0 20px;
    font-size: 14px;
    border-radius: 16px
  }
}

.footer .footer-logo {
  width: 160px;
  display: block;
  margin-bottom: 39px
}

@media (max-width:1023px) {
  .footer .footer-logo {
    width: 150px;
    margin-bottom: 30px
  }
}

@media (max-width:767px) {
  .footer .footer-logo {
    width: 130px;
    margin-bottom: 24px
  }
}

.footer .footer-logo a {
  display: block
}

.footer .footer-logo a img {
  width: 100%;
  height: auto;
  display: block
}

.footer .title {
  display: block;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0 0 9px;
  color: var(--gray-lt2)
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
  flex-wrap: nowrap;
  gap: 30px
}

@media (max-width:1023px) {
  .footer-columns {
    gap: 20px;
    margin-bottom: 40px;
    flex-direction: column;
    flex-wrap: wrap
  }
}

@media (max-width:767px) {
  .footer-columns {
    gap: 0;
    margin-bottom: 30px
  }
}

.footer-columns .col {
  width: auto;
  min-width: 240px;
  max-width: 298px;
  margin-bottom: 0
}

@media (max-width:1199px) {
  .footer-columns .col {
    min-width: 230px
  }
}

@media (max-width:1023px) {
  .footer-columns .col {
    width: 100%;
    min-width: unset;
    max-width: 100%
  }
}

@media (max-width:767px) {
  .footer-columns .col {
    margin-bottom: 28px
  }
}

.footer-columns .col.first {
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

@media (max-width:767px) {
  .footer-columns .col.first {
    gap: 10px
  }
}

.footer-columns .text {
  color: var(--gray-lt2)
}

.footer-columns .col-holder {
  display: flex
}

@media (max-width:1023px) {
  .footer-columns .col-holder {
    padding-top: 20px
  }
}

@media (max-width:767px) {
  .footer-columns .col-holder {
    flex-wrap: wrap;
    gap: 20px
  }

  .footer-columns .col-holder .col {
    width: calc(50% - 10px);
    min-width: unset;
    max-width: 100%;
    margin-bottom: 0
  }

  .footer-columns .col-holder .col:last-child {
    width: 100%;
    padding-top: 15px
  }
}

.social-networks {
  list-style: none;
  padding: 5px 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px
}

@media (max-width:1023px) {
  .social-networks {
    gap: 15px
  }
}

.social-networks li a {
  transition: var(--transition);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white)
}

.social-networks li a:hover {
  color: var(--primary)
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-links li {
  position: relative;
  margin-bottom: 16px
}

@media (max-width:1023px) {
  .footer-links li {
    margin-bottom: 12px
  }
}

.footer-links li:last-child {
  margin-bottom: 0
}

.footer-links li a {
  color: var(--white);
  display: inline-block;
  transition: var(--transition);
  text-decoration: none
}

.footer-links li a:hover {
  color: var(--primary)
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px
}

@media (max-width:1023px) {
  .contact-list li {
    gap: 8px;
    margin-bottom: 13px
  }
}

.contact-list li:last-child {
  margin-bottom: 0
}

.contact-list li .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px
}

.contact-list li a {
  color: var(--white);
  display: inline-block;
  transition: var(--transition);
  text-decoration: none;
  word-break: break-word
}

.contact-list li a:hover {
  color: var(--primary)
}

.contact-list li .address {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-list li .address .title {
  margin-bottom: 0
}

.contact-list li .address p {
  margin-bottom: 0;
  line-height: 1.1
}

.copyrights {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #606060;
  padding-top: 15px;
  border-top: 1px solid #3b3837;
  font-size: 14px
}

@media (max-width:767px) {
  .copyrights {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }
}

.copyrights p {
  margin-bottom: 0
}

.copyrights p a {
  color: #606060;
  text-decoration: none;
  transition: var(--transition)
}

.copyrights p a:hover {
  color: var(--primary)
}

.copyrights ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 50px
}

@media (max-width:1023px) {
  .copyrights ul {
    gap: 30px
  }
}

.copyrights li {
  position: relative
}

.copyrights li a {
  color: #606060;
  text-decoration: none
}

.copyrights li a:hover {
  color: var(--primary)
}

.copyrights li+li:before {
  position: absolute;
  background: #606060;
  height: 15px;
  width: 1px;
  content: "";
  left: -25px;
  top: 5px
}

@media (max-width:1023px) {
  .copyrights li+li:before {
    left: -15px
  }
}

.button-whatsapp {
  position: fixed;
  right: 15px;
  bottom: 70px;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 0 0 10px rgba(255, 203, 12, 0.2);
  animation: pulseShadow 1.5s infinite
}

@media (max-width:1023px) {
  .button-whatsapp {
    bottom: 65px;
    padding: 0;
    width: 44px;
    height: 44px;
    min-width: inherit
  }
}

@media (max-width:767px) {
  .button-whatsapp {
    bottom: 15px
  }
}

@media (max-width:1023px) {
  .button-whatsapp span {
    display: none
  }
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.25)
}

@media (min-width:768px) {
  .breadcrumbs {
    text-shadow: none
  }
}

@media (max-width:767px) {
  .breadcrumbs {
    gap: 5px;
    font-size: 14px
  }
}

.breadcrumbs li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px
}

@media (max-width:767px) {
  .breadcrumbs li {
    gap: 5px
  }
}

.breadcrumbs li+li:before {
  content: ">";
  color: var(--white);
  font-size: 22px;
  font-weight: normal
}

@media (max-width:767px) {
  .breadcrumbs li+li:before {
    line-height: 1;
    font-size: 18px
  }
}

.breadcrumbs a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  display: block
}

.breadcrumbs a:hover {
  color: var(--primary)
}

.services-details {
  padding-top: 0
}

@media (max-width:767px) {
  .services-details .container {
    padding-left: 5px;
    padding-right: 5px
  }
}

.services-details .text-holder {
  overflow: hidden;
  margin: 0 0 10px
}

.services-details .subtitle {
  font-size: 18px;
  color: var(--primary);
  display: block;
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 12px
}

@media (min-width:768px) {
  .services-details .subtitle {
    font-size: 20px;
    margin-bottom: 16px
  }
}

@media (min-width:1024px) {
  .services-details .subtitle {
    font-size: 20px
  }
}

.services-details h2 {
  margin: 0 0 15px;
  letter-spacing: -0.5px
}

@media (min-width:768px) {
  .services-details h2 {
    letter-spacing: -1px;
    margin: 0 0 24px
  }
}

.services-details p {
  margin: 0 0 20px;
  letter-spacing: -0.01rem
}

@media (min-width:768px) {
  .services-details p {
    margin: 0 0 24px
  }
}

.services-details .img-holder {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 15px
}

@media (min-width:768px) {
  .services-details .img-holder {
    border-radius: 20px
  }
}

@media (min-width:1024px) {
  .services-details .img-holder {
    border-radius: 24px;
    margin-bottom: 0
  }
}

.services-details .img-holder img {
  width: 100%;
  height: auto;
  display: block
}

.services-details .img-holder.net-metrring {
  max-width: 850px;
  margin: 0 auto 20px
}

.services-details .benefits-holder {
  margin-bottom: 30px
}

.services-details .benefits-holder p:last-child {
  margin-bottom: 10px
}

.services-info {
  padding: 20px 15px;
  color: var(--white);
  background: var(--secondary);
  border-radius: 16px;
  position: relative;
  z-index: 1
}

@media (min-width:768px) {
  .services-info {
    border-radius: 20px;
    padding: 25px
  }
}

@media (min-width:1024px) {
  .services-info {
    border-radius: 30px;
    margin-left: -10px;
    margin-top: -150px;
    border: 10px solid var(--white);
    width: 81.5%
  }
}

@media (min-width:1200px) {
  .services-info {
    margin-top: -192px;
    padding: 30px
  }
}

.services-info:after,
.services-info:before {
  content: "";
  position: absolute;
  height: 36px;
  width: 36px;
  background: transparent;
  display: none
}

@media (min-width:1024px) {

  .services-info:after,
  .services-info:before {
    display: block
  }
}

.services-info:before {
  left: 0;
  bottom: 100%;
  width: 50px;
  margin-bottom: 10px;
  border-bottom-left-radius: 16px;
  box-shadow: -24px 8px 0 0 var(--white)
}

@media (min-width:768px) {
  .services-info:before {
    border-bottom-left-radius: 20px
  }
}

@media (min-width:1024px) {
  .services-info:before {
    border-bottom-left-radius: 24px
  }
}

.services-info:after {
  left: 100%;
  top: 103px;
  margin-left: 10px;
  box-shadow: 5px 5px 0 5px var(--white);
  border-bottom-right-radius: 16px;
  transform: rotate(90deg)
}

@media (min-width:768px) {
  .services-info:after {
    border-bottom-right-radius: 20px
  }
}

@media (min-width:1024px) {
  .services-info:after {
    border-bottom-right-radius: 24px
  }
}

@media (min-width:1200px) {
  .services-info:after {
    top: 146px
  }
}

.services-info h3,
.services-info h4 {
  color: var(--yellow)
}

.services-info h3 {
  margin: -3px 0 26px;
  letter-spacing: -1px
}

@media (max-width:767px) {
  .services-info h3 {
    font-size: 20px
  }
}

.services-info h4 {
  font-size: 16px;
  margin: 0 0 2px
}

@media (min-width:1024px) {
  .services-info h4 {
    font-size: 18px
  }
}

.services-info p {
  font-size: 14px;
  letter-spacing: normal
}

.services-info p a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700
}

.services-info .list-info {
  list-style: none;
  padding: 0 0 2px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}

.services-info .list-info li {
  width: 100%;
  position: relative;
  padding-left: 32px
}

@media (min-width:768px) {
  .services-info .list-info li {
    width: 48.5%;
    margin: 0 0 3px
  }
}

@media (min-width:1200px) {
  .services-info .list-info li {
    padding-left: 40px
  }
}

.services-info .list-info li:before {
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.375 9.6875C19.375 15.0378 15.0378 19.375 9.6875 19.375C4.33723 19.375 0 15.0378 0 9.6875C0 4.33723 4.33723 0 9.6875 0C15.0378 0 19.375 4.33723 19.375 9.6875ZM8.56695 14.817L15.7545 7.62945C15.9985 7.38539 15.9985 6.98965 15.7545 6.74559L14.8706 5.86172C14.6265 5.61762 14.2308 5.61762 13.9867 5.86172L8.125 11.7234L5.38832 8.98668C5.14426 8.74262 4.74852 8.74262 4.50441 8.98668L3.62055 9.87055C3.37648 10.1146 3.37648 10.5104 3.62055 10.7544L7.68305 14.8169C7.92715 15.061 8.32285 15.061 8.56695 14.817Z" fill="%23FFCB0C"/></svg>');
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  left: 0;
  top: 0
}

@media (min-width:1024px) {
  .services-info .list-info li:before {
    top: 2px
  }
}

@media (min-width:1200px) {
  .services-info.small {
    width: 68.5%
  }
}

@media (min-width:1200px) {
  .services-info.small li {
    width: 48%
  }
}

.offer-block {
  padding-top: 0
}

@media (max-width:767px) {
  .offer-block .container {
    padding-left: 5px;
    padding-right: 5px
  }
}

@media (max-width:1023px) {
  .offer-block .section-header {
    margin-bottom: 50px
  }
}

.offer-block .service-box {
  background: var(--white);
  border: 1px solid #eee
}

@media (max-width:767px) {
  .offer-block .service-box {
    min-height: 250px
  }
}

.offer-block .service-box:before {
  display: none
}

@media (max-width:767px) {
  .offer-block .service-box .textbox {
    min-height: 75px
  }
}

.offer-block .service-box:hover {
  color: var(--secondary)
}

.offer-block .service-box:hover .icon {
  color: var(--primary)
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  color: var(--secondary);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 13px
}

@media (min-width:768px) {
  .bullet-list {
    margin: 0 0 38px
  }
}

@media (min-width:1024px) {
  .bullet-list {
    font-size: 18px
  }
}

.bullet-list li {
  position: relative;
  padding-left: 27px
}

@media (min-width:1024px) {
  .bullet-list li {
    padding-left: 30px
  }
}

.bullet-list li:before {
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.375 9.6875C19.375 15.0378 15.0378 19.375 9.6875 19.375C4.33723 19.375 0 15.0378 0 9.6875C0 4.33723 4.33723 0 9.6875 0C15.0378 0 19.375 4.33723 19.375 9.6875ZM8.56695 14.817L15.7545 7.62945C15.9985 7.38539 15.9985 6.98965 15.7545 6.74559L14.8706 5.86172C14.6265 5.61762 14.2308 5.61762 13.9867 5.86172L8.125 11.7234L5.38832 8.98668C5.14426 8.74262 4.74852 8.74262 4.50441 8.98668L3.62055 9.87055C3.37648 10.1146 3.37648 10.5104 3.62055 10.7544L7.68305 14.8169C7.92715 15.061 8.32285 15.061 8.56695 14.817Z" fill="%23EE4424"/></svg>');
  background-size: 100% 100%;
  width: 17px;
  height: 17px;
  content: "";
  position: absolute;
  left: 0;
  top: 3px
}

@media (min-width:1024px) {
  .bullet-list li:before {
    width: 20px;
    height: 20px
  }
}

.bullet-list p {
  color: var(--lt-black);
  font-weight: 400;
  font-size: 15px;
  margin: 0
}

@media (min-width:1024px) {
  .bullet-list p {
    font-size: 16px
  }
}

.tabs-block {
  overflow: hidden;
  max-width: 500px;
  margin: 0 0 30px
}

@media (min-width:768px) {
  .tabs-block {
    margin: 0 0 38px
  }
}

.tabset {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  background: var(--yellow);
  border-radius: 50px;
  font-size: 17px;
  line-height: 1;
  font-weight: 700
}

@media (min-width:768px) {
  .tabset {
    font-size: 20px
  }
}

@media (min-width:1024px) {
  .tabset {
    font-size: 24px
  }
}

.tabset li {
  flex: 1
}

.tabset li a {
  display: block;
  padding: 12px 15px;
  color: var(--secondary);
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
  text-align: center
}

.tabset li.selected>a,
.tabset li:hover>a {
  color: var(--white);
  background: var(--primary)
}

.tabs-holder {
  overflow: hidden;
  width: 100%;
  background: var(--yellow);
  padding: 20px;
  border-radius: 16px
}

@media (min-width:768px) {
  .tabs-holder {
    border-radius: 20px;
    padding: 26px 30px 30px
  }
}

@media (min-width:1024px) {
  .tabs-holder {
    border-radius: 24px
  }
}

.tabs-holder .tab-item {
  opacity: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out, visibility 0.3s ease-in-out
}

.tabs-holder .tab-item.selected {
  opacity: 1;
  height: auto;
  visibility: visible
}

.tabs-holder h3 {
  margin: 0 0 18px
}

.tabs-holder .bullet-list {
  margin: 0
}

.posts-content {
  padding-top: 0
}

@media (max-width:1023px) {
  .posts-content .container {
    padding-left: 5px;
    padding-right: 5px
  }
}

.posts-content .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  align-items: center
}

.posts-content .button-holder {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center
}

@media (min-width:1024px) {
  .posts-content .button-holder {
    margin-top: 52px
  }
}

@media (min-width:1200px) {
  .posts-content .button-holder {
    margin-top: 60px
  }
}

.posts-content .button-holder .btn {
  min-width: 200px
}

.posts-holder {
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

@media (min-width:480px) {
  .posts-holder {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (min-width:768px) {
  .posts-holder {
    padding: 10px 0 0;
    column-gap: 12px;
    row-gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media (min-width:1024px) {
  .posts-holder {
    column-gap: 20px;
    row-gap: 25px
  }
}

@media (min-width:1200px) {
  .posts-holder {
    column-gap: 32px;
    row-gap: 40px
  }
}

@media (max-width:1023px) {
  .posts-holder .blog-post h3 {
    margin: 0 0 12px
  }
}

@media (max-width:1023px) {
  .posts-holder .blog-post .textbox {
    padding: 20px 3px 15px
  }
}

.post-details {
  padding-top: 0
}

.post-details .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}

@media (max-width:1023px) {
  .post-details .container {
    padding-left: 5px;
    padding-right: 5px
  }
}

.post-content {
  width: 100%;
  margin: 0 0 35px
}

@media (min-width:768px) {
  .post-content {
    width: 65.85%;
    margin: 0
  }
}

.post-content .breadcrumbs {
  gap: 9px;
  font-weight: 500;
  margin: 0 0 25px;
  color: var(--gray-lt2);
  justify-content: flex-start
}

@media (min-width:768px) {
  .post-content .breadcrumbs {
    margin: 0 0 36px;
    gap: 12px
  }
}

@media (max-width:767px) {
  .post-content .breadcrumbs {
    font-size: 14px
  }
}

.post-content .breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 9px
}

@media (min-width:768px) {
  .post-content .breadcrumbs li {
    gap: 12px
  }
}

.post-content .breadcrumbs li:before {
  width: 4px;
  height: 4px;
  content: "";
  background: var(--secondary);
  border-radius: 100%;
  position: static;
  display: none
}

.post-content .breadcrumbs li+li:before {
  display: block
}

.post-content .breadcrumbs a {
  display: block;
  color: var(--secondary)
}

.post-content .breadcrumbs a:hover {
  color: var(--primary)
}

.post-content .breadcrumbs span {
  max-width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}

.article-post h2 {
  font-size: 21px;
  margin: 0 0 15px
}

@media (min-width:768px) {
  .article-post h2 {
    font-size: 26px
  }
}

@media (min-width:1024px) {
  .article-post h2 {
    font-size: 30px
  }
}

@media (min-width:1200px) {
  .article-post h2 {
    font-size: 36px
  }
}

.article-post p {
  margin: 0 0 20px;
  clear: both
}

.article-post p a {
  color: var(--primary)
}

.article-post p a:hover {
  text-decoration: none
}

.article-post img {
  border: 4px solid var(--secondary);
  border-radius: 16px;
  margin-bottom: 25px
}

@media (min-width:768px) {
  .article-post img {
    border-radius: 20px;
    border-width: 7px
  }
}

@media (min-width:1024px) {
  .article-post img {
    border-radius: 24px;
    border-width: 10px
  }
}

.article-post .align-left {
  float: left;
  width: 48.6%;
  margin-right: 1.4%
}

.article-post .align-right {
  float: right;
  width: 48.6%;
  margin-left: 1.4%
}

.sidebar {
  width: 100%
}

@media (min-width:768px) {
  .sidebar {
    width: 31.535%
  }
}

.aside-widget {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px
}

@media (min-width:768px) {
  .aside-widget {
    border-radius: 16px;
    padding: 15px
  }
}

@media (min-width:1024px) {
  .aside-widget {
    margin-bottom: 30px;
    border-radius: 20px;
    padding: 20px
  }
}

@media (min-width:1200px) {
  .aside-widget {
    border-radius: 24px;
    padding: 25px 30px 27px
  }
}

.aside-widget:last-child {
  margin-bottom: 0
}

.aside-widget h3 {
  margin: 0 0 15px
}

@media (min-width:768px) {
  .aside-widget h3 {
    margin: 0 0 12px
  }
}

@media (min-width:1024px) {
  .aside-widget h3 {
    margin: 0 0 16px
  }
}

@media (min-width:1200px) {
  .aside-widget h3 {
    margin: 0 0 20px
  }
}

.widget-search {
  position: relative
}

.widget-search .text-input {
  height: 40px;
  border: 1px solid #eee;
  border-radius: 25px;
  outline: none;
  padding-left: 40px;
  color: var(--black);
  font-size: 14px
}

@media (min-width:1024px) {
  .widget-search .text-input {
    font-size: 16px;
    padding-left: 45px
  }
}

.widget-search .text-input:focus {
  outline: none;
  border-color: var(--black)
}

.widget-search .text-input::placeholder {
  color: var(--gray-lt2)
}

.widget-search .btn-search {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--gray-lt2);
  display: flex;
  align-items: center;
  justify-content: center
}

.widget-search .btn-search svg {
  width: 16px;
  height: 16px
}

@media (min-width:1024px) {
  .widget-search .btn-search svg {
    width: 20px;
    height: 20px
  }
}

.related-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px
}

@media (min-width:768px) {
  .related-posts {
    gap: 12px
  }
}

@media (min-width:1024px) {
  .related-posts {
    gap: 16px
  }
}

@media (min-width:1200px) {
  .related-posts {
    gap: 20px
  }
}

.related-posts li {
  display: flex;
  align-items: center;
  gap: 15px
}

@media (min-width:768px) {
  .related-posts li {
    gap: 10px
  }
}

@media (min-width:1024px) {
  .related-posts li {
    gap: 15px
  }
}

@media (min-width:1200px) {
  .related-posts li {
    gap: 20px
  }
}

.related-posts .img-holder {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  flex-shrink: 0;
  width: 65px
}

@media (min-width:768px) {
  .related-posts .img-holder {
    width: 60px
  }
}

@media (min-width:1024px) {
  .related-posts .img-holder {
    width: 75px;
    border-radius: 10px
  }
}

@media (min-width:1200px) {
  .related-posts .img-holder {
    width: 90px
  }
}

.related-posts .img-holder:before {
  content: "";
  display: block;
  padding-top: 100%
}

.related-posts .img-holder a {
  display: block
}

.related-posts .img-holder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0
}

.related-posts .textbox {
  flex-grow: 1;
  min-width: 0
}

.related-posts h4 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--secondary);
  margin: 0 0 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2
}

@media (min-width:768px) {
  .related-posts h4 {
    font-size: 14px
  }
}

@media (min-width:1024px) {
  .related-posts h4 {
    font-size: 16px;
    margin: 0 0 6px
  }
}

.related-posts h4 a {
  color: currentColor;
  text-decoration: none;
  transition: 0.3s
}

.related-posts h4 a:hover {
  color: var(--primary)
}

.related-posts p {
  font-size: 12px;
  color: var(--gray-lt2);
  margin: 0 -5px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px
}

@media (min-width:768px) {
  .related-posts p {
    font-size: 10px
  }
}

@media (min-width:1024px) {
  .related-posts p {
    font-size: 12px;
    gap: 8px
  }
}

.related-posts .time {
  display: inline-flex;
  align-items: center;
  gap: 5px
}

@media (min-width:1024px) {
  .related-posts .time {
    gap: 8px
  }
}

.related-posts .time:before {
  width: 3px;
  height: 3px;
  content: "";
  border-radius: 5px;
  background: var(--gray-lt2)
}

.social-share {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 100%;
  transition: 0.3s;
  color: var(--gray-lt2)
}

.social-share a:hover {
  color: var(--white);
  background: var(--primary)
}

.core-block .section-header {
  max-width: 660px;
  text-align: center;
  align-items: center;
  margin: 0 auto 25px
}

@media (min-width:768px) {
  .core-block .section-header {
    margin-bottom: 32px
  }
}

@media (min-width:1200px) {
  .core-block .benefits-list {
    padding-top: 15px
  }
}

.core-list {
  list-style: none;
  padding: 0;
  margin: 0 -10px 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px
}

@media (min-width:480px) {
  .core-list {
    margin-bottom: 32px
  }
}

@media (min-width:768px) {
  .core-list {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media (min-width:1024px) {
  .core-list {
    gap: 20px
  }
}

@media (min-width:1200px) {
  .core-list {
    gap: 32px
  }
}

.core-list li {
  border: 1px solid #eee;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  min-height: 180px;
  padding: 20px
}

@media (min-width:1024px) {
  .core-list li {
    min-height: 220px;
    padding: 30px
  }
}

.core-list h3 {
  margin: 0;
  letter-spacing: -1px
}

.benefits-holder {
  overflow: hidden
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: var(--secondary);
  font-weight: 700
}

@media (min-width:768px) {
  .benefits-list {
    font-size: 16px;
    gap: 15px
  }
}

@media (min-width:1200px) {
  .benefits-list {
    font-size: 18px;
    gap: 20px
  }
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 6px 10px
}

.benefits-list li:before {
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.375 9.6875C19.375 15.0378 15.0378 19.375 9.6875 19.375C4.33723 19.375 0 15.0378 0 9.6875C0 4.33723 4.33723 0 9.6875 0C15.0378 0 19.375 4.33723 19.375 9.6875ZM8.56695 14.817L15.7545 7.62945C15.9985 7.38539 15.9985 6.98965 15.7545 6.74559L14.8706 5.86172C14.6265 5.61762 14.2308 5.61762 13.9867 5.86172L8.125 11.7234L5.38832 8.98668C5.14426 8.74262 4.74852 8.74262 4.50441 8.98668L3.62055 9.87055C3.37648 10.1146 3.37648 10.5104 3.62055 10.7544L7.68305 14.8169C7.92715 15.061 8.32285 15.061 8.56695 14.817Z" fill="%23EE4424"/></svg>');
  background-size: 100% 100%;
  width: 17px;
  height: 17px;
  content: "";
  flex-shrink: 0;
  margin-top: 2px
}

@media (min-width:768px) {
  .benefits-list li:before {
    margin-top: 4px
  }
}

@media (min-width:1024px) {
  .benefits-list li:before {
    width: 20px;
    height: 20px;
    margin-top: 2px
  }
}

@media (min-width:1200px) {
  .benefits-list li:before {
    margin-top: 3px
  }
}

@media (max-width:1023px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }
}

.faq-block {
  padding: 0 0 50px
}

.faq-block .box-holder {
  display: flex;
  gap: 32px;
  align-items: flex-start
}

@media (max-width:1023px) {
  .faq-block .box-holder {
    flex-direction: column;
    overflow: hidden
  }
}

.faq-block .left-col {
  width: 57.25%
}

@media (max-width:1023px) {
  .faq-block .left-col {
    width: 55.25%
  }
}

@media (max-width:1023px) {
  .faq-block .left-col {
    width: 100%
  }
}

.faq-block .left-col .section-header {
  margin-bottom: 40px
}

.faq-block .right-col {
  padding: 40px 40px 27px;
  background: var(--primary);
  color: var(--white);
  border-radius: 24px;
  width: 40.2%;
  position: relative
}

@media (max-width:1199px) {
  .faq-block .right-col {
    padding: 25px;
    width: 42.2%
  }
}

@media (max-width:767px) {
  .faq-block .right-col {
    padding: 20px !important
  }
}

@media (max-width:1023px) {
  .faq-block .right-col {
    width: 100%
  }
}

.faq-block .right-col .text-holder {
  gap: 5px
}

.faq-block .right-col .subtitle {
  color: #FFCB0C
}

.faq-block .right-col h2 {
  font-size: 36px;
  color: currentColor;
  margin-bottom: 10px
}

@media (max-width:767px) {
  .faq-block .right-col h2 {
    font-size: 22px;
    letter-spacing: 0
  }
}

.faq-block .right-col .address {
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 1
}

@media (max-width:480px) {
  .faq-block .right-col .address {
    flex-direction: column
  }
}

@media (min-width:1200px) {
  .faq-block .right-col .address p {
    margin-bottom: 28px
  }
}

.faq-block .right-col .address p:last-child {
  margin-bottom: 0
}

.faq-block .right-col .title {
  text-transform: capitalize;
  display: inline-block
}

.faq-block .right-col .social {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0
}

.faq-block .right-col p a {
  color: currentColor;
  text-decoration: none;
  transition: 0.3s
}

.faq-block .right-col p a:hover {
  text-decoration: underline
}

.faq-block .right-col .right .title:nth-of-type(2) {
  margin-top: 25px
}

@media (max-width:480px) {
  .faq-block .right-col .right .title:nth-of-type(2) {
    margin-top: 0
  }
}

.faq-block .right-col span {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 50%
}

@media (max-width:1023px) {
  .faq-block .right-col span {
    flex: 0 0 50%
  }
}

@media (max-width:480px) {
  .faq-block .right-col span {
    width: 100%
  }
}

.faq-block .right-col .btn-holder {
  position: relative;
  z-index: 1;
  margin-top: 32px
}

.faq-block .right-col .pattern-img {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0
}

@media (max-width:1023px) {
  .faq-block .right-col .pattern-img {
    width: auto;
    left: 50%;
    transform: translate(-50%);
    bottom: -10px
  }
}

.faq-block .right-col .social-networks li a:hover {
  color: var(--secondary)
}

@media (max-width:1199px) {
  .faq-block br {
    display: none
  }
}

.faq-block.contact .subtitle {
  color: var(--white)
}

.faq-block.contact .right-col {
  padding-bottom: 67px
}

@media (max-width:1199px) {
  .faq-block.contact .right-col {
    padding: 25px;
    overflow: hidden
  }
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.accordion .accordion-item {
  background-color: var(--gray-soft);
  border: 1px solid var(--gray-lt);
  border-radius: 10px;
  margin-bottom: 0;
  overflow: hidden
}

.accordion .accordion-item .accordion-header {
  padding: 20px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.accordion .accordion-item .accordion-header h3 {
  font-weight: 600;
  color: var(--secondary);
  margin: 0;
  width: 93%
}

.accordion .accordion-item .accordion-header:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 32px;
  height: 32px;
  background: #FF7960;
  border-radius: 50%;
  transition: transform 0.3s ease;
  transform: translateY(-50%) rotate(0deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center
}

@media (max-width:767px) {
  .accordion .accordion-item .accordion-header:after {
    right: 10px;
    width: 25px;
    height: 25px;
    background-size: 18px
  }
}

.accordion .accordion-item .accordion-content {
  display: none
}

.accordion .accordion-item .accordion-content p {
  padding: 10px 78px 20px 20px;
  line-height: 1.5;
  margin: 0
}

@media (max-width:767px) {
  .accordion .accordion-item .accordion-content p {
    padding: 20px
  }
}

.accordion .accordion-item.active .accordion-header:after {
  transform: translateY(-50%) rotate(-180deg)
}

.map {
  padding: 0 0 52px
}

.map iframe {
  width: 100%;
  border-radius: 24px;
  height: 320px
}

@media (max-width:767px) {
  .map iframe {
    height: 275px
  }
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0;
  border-radius: 24px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #eecc4f 0%, #eecc4f 25%, #e5b70f 100%)
}

@media (min-width:768px) {
  .error-page {
    padding: 180px 0
  }
}

@media (min-width:1200px) {
  .error-page {
    padding: 200px 0;
    min-height: 600px;
    height: calc(100vh - 20px)
  }
}

.error-page .section-header {
  align-items: center;
  margin-bottom: 0;
  position: relative;
  z-index: 1
}

@media (min-width:1200px) {
  .error-page .section-header {
    width: 80%
  }
}

@media (max-width:480px) {
  .error-page .section-header {
    width: 90%
  }
}

.error-page .section-header h1 {
  font-weight: 700;
  line-height: 1;
  margin: 0 0 -15px;
  font-size: 50px
}

@media (min-width:768px) {
  .error-page .section-header h1 {
    font-size: 80px
  }
}

@media (min-width:1024px) {
  .error-page .section-header h1 {
    font-size: 132px
  }
}

.error-page .section-header h2 {
  text-align: center
}

@media (min-width:1200px) {
  .error-page .section-header h2 {
    font-size: 42px
  }
}

.error-page .section-header p {
  color: var(--secondary);
  text-align: center
}

@media (min-width:1024px) {
  .error-page .section-header .btn {
    padding: 17px 30px;
    margin-top: 18px;
    border-radius: 50px;
    display: flex;
    align-items: center
  }
}

.error-page .pattern-img {
  position: absolute;
  bottom: 22px;
  right: 119px;
  width: 15.7%;
  max-width: 238px
}

@media (max-width:1439px) {
  .error-page .pattern-img {
    right: 60px;
    bottom: 15px;
    width: 190px
  }
}

@media (max-width:1199px) {
  .error-page .pattern-img {
    width: 125px;
    right: 15px
  }
}

@media (max-width:1023px) {
  .error-page .pattern-img {
    width: 100px
  }
}

@media (max-width:767px) {
  .error-page .pattern-img {
    width: 75px
  }
}

.projects-block {
  padding-top: 0
}

.projects-block .section-header {
  max-width: 100%
}

.projects-block .filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 20px
}

@media (min-width:768px) {
  .projects-block .filter-bar {
    gap: 12px;
    margin-bottom: 32px
  }
}

@media (min-width:1200px) {
  .projects-block .filter-bar {
    gap: 20px
  }
}

.projects-block .filter-btn {
  font-size: 13px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 6px;
  border: 1px solid #eee;
  background: var(--white);
  color: #444;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: var(--nexa-family)
}

@media (min-width:768px) {
  .projects-block .filter-btn {
    font-size: 15px;
    padding: 10px 15px
  }
}

@media (min-width:1024px) {
  .projects-block .filter-btn {
    padding: 10px 22px;
    font-size: 16px
  }
}

@media (min-width:1200px) {
  .projects-block .filter-btn {
    padding: 10px 30px
  }
}

.projects-block .filter-btn.active,
.projects-block .filter-btn:hover {
  background: #FCDAD3;
  border-color: #FCDAD3;
  color: var(--primary)
}

.projects-block .projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px
}

.projects-block .projects-grid .project-box {
  width: calc(50% - 16px) !important;
  display: block;
  border-radius: 8px;
  margin-bottom: 0
}

@media (max-width:767px) {
  .projects-block .projects-grid .project-box {
    width: 100% !important
  }
}

.projects-block .projects-grid .project-box.hidden {
  display: none !important
}

.projects-block .projects-grid .project-box .textbox {
  padding: 10px
}

.projects-block .projects-grid .project-box h3 {
  color: var(--secondary)
}

.projects-block .projects-grid .project-box h3 span {
  border-left-color: var(--secondary)
}

.projects-block .projects-grid .project-box p {
  color: var(--secondary)
}

.project-detail {
  padding-top: 0
}

.project-detail .subtitle {
  font-size: 20px;
  line-height: normal
}

.project-detail h2 {
  display: flex;
  align-items: center;
  gap: 20px
}

@media (max-width:620px) {
  .project-detail h2 {
    font-size: 26px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0
  }
}

.project-detail h2 span {
  padding-left: 10px;
  font-size: 20px;
  letter-spacing: normal;
  border-left: 1px solid var(--secondary);
  color: var(--secondary);
  line-height: 2
}

@media (min-width:1440px) {
  .project-detail h2 span {
    padding-left: 10px
  }
}

.project-detail .project-box {
  width: 100%;
  margin: 0 0 30px
}

.project-detail .project-box .img-holder:before {
  content: "";
  display: block;
  padding-top: 34%
}

@media (max-width:767px) {
  .project-detail .project-box .img-holder:before {
    padding-top: 50%
  }
}

.project-detail h3 {
  color: var(--secondary)
}

.project-detail .impact-result {
  list-style: none;
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  padding-top: 15px
}

.project-detail .impact-result li {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #EEEEEE;
  border-radius: 24px;
  padding: 16px 20px;
  width: fit-content
}

@media (max-width:1023px) {
  .project-detail .impact-result li {
    width: 48.5%
  }
}

@media (max-width:767px) {
  .project-detail .impact-result li {
    width: 100%
  }
}

.project-detail .impact-result .text {
  flex-direction: column;
  display: flex;
  color: #999999;
  font-size: 14px
}

.project-detail .impact-result strong {
  font-size: 24px;
  color: var(--secondary)
}

.project-detail .impact-result span {
  font-size: 18px;
  color: var(--primary)
}

.project-detail .client-goals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  row-gap: 12px;
  padding-top: 8px
}

.project-detail .client-goals li {
  position: relative;
  font-size: 18px;
  color: var(--secondary);
  font-weight: 700;
  padding-left: 32px;
  width: 100%
}

.project-detail .client-goals li:before {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  z-index: 1
}

.project-detail .client-goals li:after {
  top: 3px;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  position: absolute;
  border-radius: 50%
}

.project-detail .textbox .btn {
  margin-top: 25px
}

.project-detail-slider {
  padding: 15px 0 10px;
  overflow: hidden
}

.project-detail-slider .slick-slider {
  border-radius: 18px;
  overflow: hidden
}

.project-detail-slider .slider-item {
  padding: 0 6px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  display: block !important
}

.project-detail-slider .slider-item.slick-center {
  opacity: 1;
  transform: scale(1)
}

.project-detail-slider .slider-item.video-slide {
  cursor: pointer
}

@media (max-width:767px) {
  .project-detail-slider .slider-item {
    padding: 0
  }
}

.project-detail-slider .img-holder {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 12.2/9;
  background: #f5f5f5
}

.project-detail-slider .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease
}

.project-detail-slider .play-btn {
  position: absolute;
  bottom: 34px;
  right: 36px;
  z-index: 5
}

.project-detail-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  background-color: #FFCB0C;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex !important
}

.project-detail-slider .slick-arrow:before {
  content: "";
  background-image: url("../images/chevron-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 11px;
  height: 18px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.project-detail-slider .slick-arrow.slick-next {
  right: 0;
  border-radius: 50px 0 0 50px
}

.project-detail-slider .slick-arrow.slick-prev {
  left: 0;
  border-radius: 0 50px 50px 0
}

.project-detail-slider .slick-arrow.slick-prev:before {
  transform: translate(-50%, -50%) rotate(-180deg)
}

.modal-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center
}

.modal-popup.modal-slideup {
  display: flex
}

.modal-popup .modal-content {
  position: relative;
  max-width: 1100px
}

.modal-popup .modal-content .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0
}

.modal-popup .modal-content .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

body.modal-active {
  overflow: hidden
}

.nice-select {
  background-color: #fff;
  border: solid 1px #e0e7ee;
  border-radius: 10px;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: flex;
  align-items: center;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto
}

.nice-select:hover {
  border-color: #d0dae5
}

.nice-select.open,
.nice-select:active,
.nice-select:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.07)
}

.nice-select.disabled {
  border-color: #e7ecf2;
  color: #90a1b5;
  pointer-events: none
}

.nice-select.disabled:after {
  border-color: #cdd5de
}

.nice-select.wide {
  width: 100%
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important
}

.nice-select.right {
  float: right
}

.nice-select.right .list {
  left: auto;
  right: 0
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px
}

.nice-select.small:after {
  height: 4px;
  width: 4px
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px
}

.nice-select:after {
  border-bottom: 2px solid #90a1b5;
  border-right: 2px solid #90a1b5;
  content: "";
  display: block;
  height: 8px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 8px
}

.nice-select.open:after {
  transform: rotate(-135deg)
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0)
}

.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 88, 112, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
  background-color: #f6f7f9
}

.nice-select .option.selected {
  font-weight: bold
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #90a1b5;
  cursor: default
}

.no-csspointerevents .nice-select .list {
  display: none
}

.no-csspointerevents .nice-select.open .list {
  display: block
}

.nice-select {
  width: 100%
}

.btn.btn-icon .wpcf7-spinner {
  position: absolute;
  right: -75px
}

.consultant-form.quote-form .wpcf7-response-output {
  background: #fff;
  border-radius: 10px;
  border-color: #eee !important;
  color: #2f2b2a;
  padding: 20px;
  text-align: center
}

.vc_row.home-banner {
  padding: 0 10px !important
}

.consultant-form p input {
  margin: 0 !important
}

.consultant-form p {
  position: relative
}

.consultant-form .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%)
}

.post-content .breadcrumbs span {
  max-width: 350px
}

.wpcf7 form.sent .wpcf7-response-output {
  position: relative
}

.wpcf7 form.sent .wpcf7-response-output:after {
  background: #76DC89;
  content: "";
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute
}

.wpcf7 .wpcf7-response-output {
  padding: 53px 20px 20px;
  text-align: center
}

.wpcf7 form.sent .wpcf7-response-output:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 23px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 2px 2px 0;
  z-index: 1;
  transform: translateX(-50%) rotate(45deg)
}

.wpcf7-form.invalid .wpcf7-response-output {
  position: relative
}

.wpcf7 form.invalid .wpcf7-response-output:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 15px;
  width: 14px;
  height: 2px;
  background-color: #dc3232;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%
}

.wpcf7 form.invalid .wpcf7-response-output:after {
  content: "x";
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-weight: 600;
  position: absolute;
  font-size: 20px
}

.odometer.odometer-auto-theme,
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default,
.odometer.odometer-theme-default .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  position: relative
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: middle;
  visibility: hidden
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0)
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  transition: transform 2s
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  transform: translateY(-100%)
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  transition: transform 2s;
  transform: translateY(0)
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  line-height: 1
}

.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
  text-align: center
}

/* Animated Logo */
.animated-logo {
  width: 120px;
  display: block;
}

@media (min-width: 1024px) {
  .animated-logo {
    width: 135px;
  }
}

@media (min-width: 1200px) {
  .animated-logo {
    width: 160px;
  }
}

.animated-logo a {
  display: block;
}

.animated-logo svg {
  width: 100%;
}

.animated-logo svg path {
  opacity: 0;
  transform: translateY(15px);
  transform-origin: left;
  animation: logoReveal 0.9s ease forwards;
}

.animated-logo svg path:nth-child(1) {
  transform-origin: center center;
  transform-box: fill-box;
  animation: logoRotate 1s ease forwards;
}

.animated-logo svg path:nth-child(2) {
  animation-delay: 0.9s;
}

@keyframes logoRotate {
  from {
    opacity: 0;
    transform: rotate(-360deg) scale(0.8);
  }

  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}