body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  color: #2c3e50;
  width: 100%;
  font-size: 15px;
  overflow-x: hidden;
  line-height: 1.6;
}

html {
  scroll-behavior: auto !important;
}

p {
  margin-bottom: 1rem;
}
p a {
  text-decoration: underline;
}

a,
a:hover {
  text-decoration: none;
  color: #00cae9;
}

a {
  text-decoration-skip-ink: none;
}

ol,
ul {
  padding-left: 23px;
  line-height: 1.6;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5 {
  line-height: 1.15;
}

.h1,
h1 {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1;
  color: #2c3e50;
}

.h2,
h2 {
  font-size: 40px;
  font-weight: 500;
}

.h3,
h3 {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 500;
}

.h4,
h4 {
  line-height: 1.4;
  font-size: 20px;
  font-weight: 400;
}

.h5,
h5 {
  line-height: 1.5;
  font-size: 18px;
  font-weight: 400;
}

.h6,
h6 {
  line-height: 1.6;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.point-events-none {
  pointer-events: none;
}

.text-primary {
  color: #00cae9 !important;
}

.description {
  line-height: 1.4;
  font-size: 22px;
  font-weight: 300;
}

.preview {
  font-size: 15px;
}

.info {
  font-size: 14px;
}

.step {
  height: 42px;
  width: 42px;
  box-shadow: 0 0 0 4px #082D51;
  z-index: 4;
  display: block;
  border-radius: 50%;
  font-size: 24px;
  color: #00cae9;
  text-align: center;
  line-height: 42px;
  margin: -5px 15px 0 0;
  border: 2px solid #00cae9;
  position: relative;
}
.step.done {
  background: #00cae9;
  color: #fff;
}
.step.done .step-number {
  opacity: 0;
}
.step.done .step-check:before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0.4em;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  animation: checkbox-check 500ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
}
.step .step-check {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.step-loader {
  width: 80px;
  height: 80px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease 1s;
  left: -19px;
  top: 132px;
  border-radius: 50%;
  border: 3px solid;
  border-color: rgba(7, 95, 100, 0.9) rgba(7, 95, 100, 0.9) transparent transparent;
  animation: rotation 1s linear infinite;
}
.step-loader.loading {
  opacity: 0.7;
  visibility: visible;
}
.step-loader:after, .step-loader:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 2px solid;
  border-color: transparent transparent rgb(0, 196, 204) transparent;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.step-loader:before {
  width: 58px;
  height: 58px;
  border: 2px solid;
  border-color: rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.5) transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 10px;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 10px;
    height: 20px;
    border-color: #fff;
    transform: translate3d(0, -20px, 0) rotate(45deg);
  }
}
.table {
  text-align: center;
  color: #2c3e50;
}
.table thead th {
  padding: 20px 10px;
  font-size: 24px;
  font-weight: 500;
}
.table tbody tr td:first-child {
  text-align: left;
}
.table tbody td {
  padding: 15px 10px;
}

.checkbox {
  position: relative;
  margin: 0 auto;
  height: 30px;
  width: 30px;
  display: block;
  cursor: pointer;
}

.checkbox input {
  opacity: 0;
  height: 30px;
  width: 30px;
}

.checkbox input:checked ~ .checkmark {
  background-image: url("/images/icon-check-square.svg");
}

.checkbox .checkmark {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  pointer-events: none;
  background-image: url("/images/icon-uncheck-square.svg");
}

nav.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav.menu ul li {
  list-style: none;
}
nav.menu ul li a {
  color: #2c3e50;
  text-decoration: underline;
}
nav.menu ul li a:hover {
  color: #00cae9;
  text-decoration: none;
}
nav.menu.main-menu > ul > li {
  display: inline-block;
  padding: 0 40px 0 20px;
}
nav.menu.main-menu > ul > li > a {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 50px;
  text-decoration: none;
  text-align: left;
  display: inline-block;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
}
nav.menu.main-menu > ul > li > a:hover, nav.menu.main-menu > ul > li > a:hover span,
nav.menu.main-menu > ul > li > a > strong {
  color: #00cae9;
}
nav.menu.main-menu > ul > li > a.active:before {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 40px;
  left: 0;
  background: #00cae9;
}
nav.menu.main-menu > ul > li.active > a > span {
  color: #00cae9;
}
nav.menu.main-menu > ul > li.has-children > a:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 6px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6" fill="none"><path d="M0.919922 0.999999L4.91992 5L8.91992 1" stroke="%232c3e50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: cover;
  margin-left: 10px;
  transition: transform 0.3s;
}
nav.menu.main-menu > ul > li:hover > a:after {
  transform: rotate(180deg);
}
nav.menu.main-menu > ul > li.has-children:hover > ul {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0.3s;
}
nav.menu.main-menu > ul > li.has-children > ul {
  background: #fff;
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.15);
  flex-wrap: wrap;
  width: 100%;
  height: 550px;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: calc((100% - 1500px) / 2);
  padding-right: calc((100% - 1500px) / 2);
  margin: 0 auto;
  text-align: left;
  list-style: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 95%;
  z-index: 10;
  border: 0;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: all ease 0.2s;
}
nav.menu.main-menu > ul > li.has-children > ul li {
  margin-bottom: 15px;
}
nav.menu.main-menu > ul > li.has-children > ul li.submenu-title > a {
  text-decoration: none;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: #00c4cc;
}
nav.menu.main-menu > ul > li.has-children > ul li.submenu-title > ul {
  margin-top: 20px;
}
nav.menu.footer-menu > ul {
  display: flex;
  justify-content: space-between;
}
nav.menu.footer-menu > ul > li > a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
  border: 0 !important;
  color: #fff;
}
nav.menu.footer-menu > ul > li > a:hover {
  color: #fff;
  text-decoration: none;
}
nav.menu.footer-menu > ul li {
  margin-bottom: 15px;
  line-height: 1;
}
nav.menu.footer-menu > ul li ul li a:hover {
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}
nav.menu.footer-menu > ul a {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  border-bottom: 1px solid #fff;
  text-decoration: none;
  transition: all ease 0.2s;
}

nav.mobile-menu {
  display: block;
  position: fixed;
  right: 0;
  width: 280px;
  max-width: 100%;
  height: 100%;
  padding: 0 15px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  z-index: 99;
  transform: translate3d(111%, 0, 0);
  transition: all ease 250ms;
}
nav.mobile-menu ul li {
  margin: 15px 0;
}
nav.mobile-menu ul li a {
  font-weight: 600;
  font-size: 22px;
  text-decoration: none;
}
nav.mobile-menu ul li .button-custom {
  font-size: 16px;
  padding: 16px 25px;
}

.button-custom {
  display: inline-block;
  text-decoration: none;
  border-radius: 50px;
  text-align: center;
  font-size: 17px;
  padding: 18px 35px;
  vertical-align: top;
  font-weight: 500;
  line-height: 18px;
  transition: all ease 0.2s;
  background: none;
  border: 0;
  position: relative;
}
.button-custom.button-custom-main {
  border: none;
  transition: 0.3s;
  background-size: 250% auto;
  color: #fff;
  background-image: linear-gradient(to right, #00cae9, #03649c 51%, #00cae9);
}
.button-custom.button-custom-main:hover {
  background-position: right center;
}
.button-custom.button-custom-outline {
  border: 1px solid #00cae9;
  color: #00cae9;
}
.button-custom.button-custom-outline:not(.button-collapse):hover {
  background: #00cae9;
  color: #fff;
}
.button-custom.button-custom-outline:not(.button-collapse):hover svg path {
  fill: #fff;
}
.button-custom.button-custom-light {
  background: transparent;
  background-image: none;
}
.button-custom.button-custom-light:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(to right, #00e5ff, #38b4fc);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: 0.5s;
}
.button-custom.button-custom-light:after {
  content: "";
  bottom: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 100%;
  height: 15px;
  width: 90%;
  position: absolute;
  filter: blur(20px);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.5s;
  transform: scaleY(0);
  transition-delay: 0.1s;
  background-image: linear-gradient(90deg, #00cae9, #03649c);
}
.button-custom.button-xl {
  font-size: 18px;
  padding: 24px 30px;
  min-width: 200px;
}
.button-custom.button-xxl {
  font-size: 18px;
  padding: 24px 30px;
  min-width: 250px;
}
.button-custom.button-md {
  min-width: 200px;
  padding: 18px 25px;
  font-size: 15px;
}

.button-menu {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 70px;
  height: 70px;
  background: none;
  border: 0;
  z-index: 999;
  transition: all ease 0.5s;
}
.button-menu .hamburger {
  width: 100%;
  height: 100%;
  text-align: center;
}
.button-menu .hamburger svg {
  width: 70px;
  height: 70px;
  cursor: pointer;
}
.button-menu .hamburger svg path {
  fill: none;
  stroke: #2c3e50;
  stroke-width: 24px;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
}
.button-menu .hamburger svg path#top, .button-menu .hamburger svg path#bottom {
  stroke-dasharray: 240px 950px;
}
.button-menu .hamburger svg path#middle {
  stroke-dasharray: 240px 240px;
  transition: all 0.3s ease;
}

body.menu-open .hamburger svg path#top,
body.menu-open .hamburger svg path#bottom {
  stroke-dashoffset: -650px;
}
body.menu-open .hamburger svg path#middle {
  stroke: transparent;
  stroke-dashoffset: -115px;
  stroke-dasharray: 1px 220px;
}

.social-links {
  position: relative;
}
.social-links a {
  display: inline-block;
  width: 28px;
  height: 28px;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  transition: all ease 0.5s;
}
.social-links a:hover {
  color: #00cae9;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 100px;
}
.slider .slides {
  display: flex;
  transition: transform 0.5s ease;
}
.slider .slide {
  min-width: 100%;
}
.slider button {
  position: absolute;
  bottom: 0px;
  display: block;
  height: 50px;
  width: 50px;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  background: #00cae9;
}
.slider button:hover {
  background: #41D2D5;
}
.slider .prev {
  border-radius: 5px 0 0 5px;
  left: 0px;
}
.slider .next {
  border-radius: 0 5px 5px 0;
  left: 50px;
}

.invert .content,
.invert .content-holder *,
.invert .title a,
.invert .date,
.invert .description,
.invert .info,
.invert .preview,
.invert .table *,
.invert .title {
  color: #fff;
}

.date {
  font-size: 12px;
}

.bg-primary {
  background: #00cae9 !important;
}

.bg-light {
  background: #EFEFF3 !important;
}

.bg-dark {
  background: #082D51 !important;
}

.form-field {
  margin-bottom: 20px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.form-control,
.form-select {
  border-radius: 4px;
}

header.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1950px;
  margin: 0 auto;
  padding: 10px 0 0;
  background: #fff;
  border-bottom: 1px solid #f9f9fb;
  z-index: 99;
  backface-visibility: hidden;
  transition: all 0.8s ease-in-out;
}
header.main-header.sticky {
  position: fixed;
  animation: slide-up 0.7s;
}
header.main-header .logo {
  display: inline-block;
  margin: 6px 0;
}
header.main-header .logo svg {
  width: 170px;
  height: 50px;
}
header.main-header nav.menu {
  margin-top: 26px;
}
header.main-header .button-holder {
  position: absolute;
  right: 20px;
  top: 26px;
}
header.main-header .partners-logo {
  margin-top: 5px;
}

main.main-content {
  padding-top: 125px;
  max-width: 1920px;
  min-height: 800px;
  margin: 0 auto;
}

.useful-pages {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}
.useful-pages .useful-page {
  color: #2c3e50;
  text-decoration: underline;
  position: relative;
  line-height: 1.2;
}
.useful-pages .useful-page .title {
  font-size: 18px;
}
.useful-pages .useful-page .info {
  font-size: 14px;
}
.useful-pages .useful-page:not(:last-child):after {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  right: -15%;
  background: #e1e1e1;
}

footer.main-footer {
  padding: 70px 0 0;
  background: linear-gradient(90deg, #1e5e92 40%, #58c4c6);
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-bottom .h4 {
  font-size: 20px;
  line-height: 20px !important;
}

.results-section {
  display: none;
}
.results-section.active {
  display: block;
}

.factors-section .content-holder {
  border-left: 1px solid #E1E1E1;
  min-height: 600px;
}

.estimate-form-section {
  min-height: 630px;
}

.progress-step {
  display: none;
}

.progress-step.active {
  display: block;
}

.dots {
  display: inline-block;
  margin-left: 1px;
}

.result-container {
  display: none;
}

.result-container.active {
  display: block;
}

.share-button {
  cursor: pointer;
  transition: 500ms all ease-in-out;
  position: relative;
  overflow: hidden;
  color: #03649c;
  background: transparent;
  background-image: none;
}
.share-button:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(to right, #00cae9, #03649c);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: 0.5s;
}
.share-button:hover {
  background: linear-gradient(to right, #00cae9, #03649c);
}
.share-button:hover .text {
  transform: translateY(-100%);
  opacity: 0;
}
.share-button .text {
  transition: 0.3s;
}
.share-button:hover .icons__icon {
  transform: translateY(-80%);
  transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55); /* easeInOutBack */
}
.share-button:hover .icons__icon:hover {
  transition-delay: 0ms !important;
  background: #082D51;
}
.share-button:hover .icons__icon:nth-child(1) {
  transition-delay: 30ms;
}
.share-button:hover .icons__icon:nth-child(2) {
  transition-delay: 60ms;
}
.share-button:hover .icons__icon:nth-child(3) {
  transition-delay: 90ms;
}
.share-button:hover .icons__icon:nth-child(4) {
  transition-delay: 120ms;
}
.share-button:hover .icons__icon:nth-child(5) {
  transition-delay: 150ms;
}

.icons {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  width: 100%;
  padding: 0 30px;
  justify-content: space-around;
}
.icons__icon {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  transform: translateY(70%);
  transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55); /* easeInOutBack */
}
.icons__icon:nth-child(1) {
  transition-delay: 20ms;
}
.icons__icon:nth-child(2) {
  transition-delay: 40ms;
}
.icons__icon:nth-child(3) {
  transition-delay: 60ms;
}
.icons__icon:nth-child(4) {
  transition-delay: 80ms;
}
.icons__icon:nth-child(5) {
  transition-delay: 100ms;
}
.icons__icon svg {
  stroke: #00cae9;
}

.yes-print {
  display: none;
}

/* Alternatively, using @media print to hide elements during printing */
@media print {
  body, html, section {
    margin: 0 !important;
    padding: 0 !important;
    zoom: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }
  @page {
    size: auto;
    margin: 0;
  }
  .no-print {
    display: none !important;
  }
  .yes-print {
    display: block;
  }
  .h1, h1 {
    font-size: 40px;
  }
  main.main-content {
    padding-top: 0;
  }
  main.main-content .container {
    max-width: 100% !important;
  }
  main.main-content .container .col-md-6 {
    width: 50%;
    flex: 0 0 auto;
  }
  main.main-content .container .col-lg-4 {
    width: 33%;
  }
  main.main-content .container .col-lg-4 .h4, main.main-content .container .col-lg-4 h4 {
    font-size: 18px !important;
  }
  main.main-content .container .col-lg-4 .h3, main.main-content .container .col-lg-4 h3 {
    font-size: 24px !important;
  }
  .page-break {
    page-break-before: always;
    break-before: page;
  }
  h1, h2 {
    margin: 0 !important;
    padding: 0 !important;
  }
  .estimate-results-section.py-5,
  .yes-print.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .yes-print .form-select {
    background: #fff !important;
  }
  .yes-print .py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1rem !important;
  }
}
.circles {
  display: block;
  position: absolute;
  right: 22%;
  width: 470px;
  height: 470px;
  top: 120px;
}
.circles .circle {
  position: absolute;
  height: 280px;
  width: 280px;
}
.circles .circle .wrap {
  position: absolute;
  height: 100%;
  width: 100%;
}
.circles .circle .circle-large {
  z-index: 1;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.75);
}
.circles .circle .circle-shadow {
  position: absolute;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: top center;
}
.circles .circle .circle-small {
  position: absolute;
  height: 140px;
  width: 140px;
  border-radius: 50%;
}
.circles .circle .circle-icon {
  position: absolute;
  height: 50px;
  width: 50px;
  top: calc(50% - 25px);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: top center;
}
.circles .circle .circle-text {
  font-size: 18px;
  z-index: 5;
  font-weight: 500;
  color: #2c3e50;
  position: absolute;
}
.circles .circle .circle-text:before {
  content: "";
  width: 140px;
  height: 1px;
  background: #2c3e50;
  position: absolute;
}
.circles .circle .circle-text:after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2c3e50;
  position: absolute;
}
.circles .circle.circle-01 {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.circles .circle.circle-01 .circle-large {
  box-shadow: 15px 2px 20px rgba(0, 0, 0, 0.1), 1px 11px 20px rgba(0, 0, 0, 0.1);
}
.circles .circle.circle-01 .circle-shadow {
  background-image: url("/images/circle-shadow-01.svg");
}
.circles .circle.circle-01 .circle-small {
  top: -80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: linear-gradient(90deg, #5382DF 0%, #00C4CC 100%);
}
.circles .circle.circle-01 .circle-text {
  right: -25%;
  top: 5%;
}
.circles .circle.circle-01 .circle-text:before {
  left: -155px;
  top: 15px;
}
.circles .circle.circle-01 .circle-text:after {
  top: 13px;
  left: -155px;
}
.circles .circle.circle-01 .circle-icon {
  background-image: url("/images/circle-icon-01.svg");
}
.circles .circle.circle-02 {
  bottom: 0;
  right: 0;
}
.circles .circle.circle-02 .circle-large {
  box-shadow: 15px 2px 20px rgba(0, 0, 0, 0.1), 1px 11px 20px rgba(0, 0, 0, 0.1);
}
.circles .circle.circle-02 .circle-shadow {
  background-image: url("/images/circle-shadow-02.svg");
}
.circles .circle.circle-02 .circle-small {
  bottom: -10px;
  right: -50px;
  background: linear-gradient(45deg, #C5E3FF 0%, #4186ED 100%);
}
.circles .circle.circle-02 .circle-icon {
  background-image: url("/images/circle-icon-02.svg");
}
.circles .circle.circle-02 .circle-text {
  right: -55%;
  bottom: 20%;
}
.circles .circle.circle-02 .circle-text:before {
  left: -155px;
  top: 15px;
}
.circles .circle.circle-02 .circle-text:after {
  top: 13px;
  left: -155px;
}
.circles .circle.circle-03 {
  bottom: 0;
  left: 0;
}
.circles .circle.circle-03 .circle-large {
  box-shadow: 15px 2px 20px rgba(0, 0, 0, 0.1);
}
.circles .circle.circle-03 .circle-shadow {
  background-image: url("/images/circle-shadow-03.svg");
}
.circles .circle.circle-03 .circle-small {
  bottom: -10px;
  left: -50px;
  background: linear-gradient(45deg, #45EEF5 0%, #00A1A7 100%);
}
.circles .circle.circle-03 .circle-icon {
  background-image: url("/images/circle-icon-03.svg");
}
.circles .circle.circle-03 .circle-text {
  left: -55%;
  bottom: 20%;
}
.circles .circle.circle-03 .circle-text:before {
  right: -155px;
  top: 15px;
}
.circles .circle.circle-03 .circle-text:after {
  top: 13px;
  right: -155px;
}

@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}
.circles .circle {
  transform: scale(1.05);
  opacity: 0;
  animation: fadeInZoom 1.5s ease forwards;
  animation-delay: 0.2s;
}
.circles .circle:hover {
  transform: scale(1.08);
  transition: transform 0.4s ease;
}
.circles .circle .wrap {
  transform: scale(1.05);
  animation-name: pulse;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.circles .circle .circle-text {
  opacity: 0;
  animation: fadeInZoom 1s ease forwards, opacityAnim;
  animation-delay: 1s;
}
.circles .circle .circle-shadow {
  animation-name: opacityAnim;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.circles .circle .circle-small {
  animation-name: zoomAnim;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.circles .circle.circle-01 .circle-text {
  animation-delay: 0.8s;
}
.circles .circle.circle-02 .circle-text {
  animation-delay: 1s;
}
.circles .circle.circle-03 .circle-text {
  animation-delay: 1.2s;
}
.circles .circle:nth-child(1) .circle-shadow,
.circles .circle:nth-child(1) .circle-small,
.circles .circle:nth-child(1) .wrap {
  animation-delay: 2s;
  animation-duration: 7.8s;
}
.circles .circle:nth-child(2) .circle-shadow,
.circles .circle:nth-child(2) .circle-small,
.circles .circle:nth-child(2) .wrap {
  animation-delay: 0s;
  animation-duration: 5.1s;
}
.circles .circle:nth-child(3) .circle-shadow,
.circles .circle:nth-child(3) .circle-small,
.circles .circle:nth-child(3) .wrap {
  animation-delay: 5s;
  animation-duration: 10.6s;
}

@keyframes pulse {
  0%, 100% {
    z-index: 5;
    transform: scale(1.05);
  }
  50% {
    z-index: 1;
    transform: scale(0.8);
  }
}
@keyframes opacityAnim {
  0%, 100% {
    opacity: 1;
  }
  50% {
    filter: blur(20px);
    opacity: 0.3;
  }
}
@keyframes zoomAnim {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
    filter: blur(50px);
    opacity: 0.55;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.collapse-block {
  display: none;
  transition: all 0.3s ease;
  /* Optional: Smooth icon rotation */
}
.collapse-block.open {
  display: block;
}
.collapse-block .button-collapse svg {
  transition: transform 0.3s ease;
}

.accordion-item {
  margin-bottom: 10px;
  border: none !important;
  border-bottom: 1px solid #E1E1E1 !important;
  border-radius: 0px !important;
}

.accordion-header .arrow {
  position: absolute;
  right: 20px;
  top: 1em;
  display: inline-block;
  transition: transform 0.3s ease;
}

.accordion-item.active .arrow {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-header {
  color: #00cae9;
}

.accordion-header {
  color: #2c3e50;
  display: block;
  position: relative;
  background: transparent;
  padding: 1em 2em 1em 0;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 22px;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1em;
  padding-left: 0;
  color: #2c3e50;
}

.accordion-content p {
  margin: 0 0 1em;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 11067.5439453125px;
    stroke-dasharray: 11067.5439453125px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 11067.5439453125px;
  }
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 11067.5439453125px;
    stroke-dasharray: 11067.5439453125px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 11067.5439453125px;
  }
}
.animate .estimate-decor-elem {
  stroke-width: 1px;
  opacity: 0.75;
  -webkit-animation: animate-svg-stroke-1 1.8s linear 0s both;
  animation: animate-svg-stroke-1 1.8s linear 0s both;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1560px;
  }
  .button-menu {
    display: none;
  }
  footer.main-footer,
  header.main-header {
    max-width: 1920px;
  }
  .py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .banner-image {
    top: -20%;
  }
}
@media (min-width: 1200px) {
  section.estimate-form-section .container {
    min-height: 350px;
  }
  input.form-control,
  select.form-select {
    height: 56px;
  }
  nav.menu.main-menu > ul > li.has-children > ul {
    display: flex !important;
  }
  header.main-header .button-holder {
    position: absolute;
    right: 20px;
    top: 26px;
  }
  .position-xl-absolute {
    position: absolute;
  }
  .button-menu {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .h1, h1 {
    font-size: 55px;
  }
  .h2, h2 {
    font-size: 40px;
  }
  .description {
    font-size: 20px;
  }
  .preview {
    font-size: 16px;
  }
  .button-custom.button-xl {
    font-size: 17px;
    padding: 15px 25px;
    min-width: 135px;
  }
  header.main-header .partners-logo img {
    max-height: 55px;
  }
  .py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }
  .h1, h1 {
    font-size: 50px;
  }
  h2.h1 {
    font-size: 45px;
  }
  .form-label {
    font-size: 13px;
  }
  .factors-section .content-holder {
    min-height: 630px;
  }
  .estimate-decor {
    max-width: 800px;
    max-height: 600px;
  }
  header.main-header nav.menu:before {
    content: "";
    z-index: -1;
    height: 54px;
    width: 2000px;
    max-width: 100%;
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px solid #eeeef1;
    border-bottom: 1px solid #eeeef1;
  }
  header.main-header {
    position: absolute;
    padding: 15px 0 0;
  }
  header.main-header nav.menu {
    margin: 15px 0 0;
    padding: 0;
  }
  nav.menu.main-menu > ul > li > a {
    padding: 18px 0;
  }
  nav.menu.main-menu > ul > li {
    padding: 0 50px 0 0;
  }
  nav.menu.main-menu > ul > li > a.active:before {
    bottom: 51px;
  }
  header.main-header .column-logo {
    width: 40%;
    order: 1;
  }
  header.main-header .column-menu {
    width: 100%;
    order: 3;
  }
  header.main-header .column-partners {
    width: 60%;
    order: 2;
  }
  header.main-header .partners-logo {
    margin-top: 10px;
  }
  header.main-header .button-holder {
    top: 10px;
    right: inherit;
    margin-left: 50px;
    position: relative;
  }
  main.main-content {
    padding-top: 155px;
  }
  .useful-pages .useful-page .image-holder {
    width: 35px;
  }
  .useful-pages .useful-page .title {
    font-size: 16px;
  }
}
@media (max-width: 1600px) {
  .useful-pages .useful-page:not(:last-child):after {
    content: none;
  }
  .banner-image {
    max-width: 95%;
    margin-top: 5%;
  }
  .circles {
    top: 50px;
    right: 10%;
    margin-right: auto;
    margin-left: auto;
    transform: scale(0.8);
  }
}
@media (max-width: 1200px) {
  .share-button {
    background: transparent;
    border: none;
    padding-left: 0;
    padding-right: 0;
  }
  .share-button:hover {
    background: transparent;
    border: none;
  }
  .share-button .text {
    opacity: 0;
  }
  .share-button .icons {
    padding: 0 10px;
  }
  .share-button .icons__icon {
    background: #EFEFF3;
    transform: translateY(-75%);
  }
  .estimate-decor {
    opacity: 0.5;
  }
  .circles {
    right: 0;
    position: relative;
    transform: scale(1);
  }
  .banner-image {
    margin-top: 10%;
    margin-bottom: 50px;
  }
  .banner-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto !important;
  }
  main.main-content {
    padding-top: 100px;
    width: 100%;
    overflow: hidden;
    transition: opacity ease 0.5s;
    min-height: auto;
  }
  body.menu-open {
    height: 100%;
    overflow: hidden;
    background: #000;
  }
  body.menu-open main.main-content {
    opacity: 0.4;
    background: #fff;
  }
  body.menu-open header.main-header nav.menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
  }
  .py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-5.intro-section {
    padding-bottom: 0 !important;
  }
  .banner-image {
    max-width: 100%;
    top: 15%;
  }
  .useful-pages .useful-page {
    width: 50%;
    float: left;
  }
  header.main-header {
    position: absolute;
    padding: 0 0 10px;
  }
  header.main-header .column-menu {
    order: 3;
  }
  header.main-header .button-holder {
    position: relative;
    margin-left: 60px;
    margin-right: 40px;
    right: 20px;
    top: 26px;
  }
  header.main-header nav.menu {
    position: fixed;
    box-shadow: -50px 50px 50px rgba(255, 255, 255, 0.25);
    background-repeat: repeat;
    pointer-events: none;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all ease 0.3s;
    margin: 0;
    width: 350px;
    max-width: 100%;
    right: 0;
    top: 86px;
    height: 100%;
    overflow: auto;
    padding-bottom: 150px;
    z-index: 999;
  }
  nav.menu.main-menu > ul > li.has-children.row-menu.industries > ul:before, nav.menu.main-menu > ul > li.has-children:hover > a:after, nav.menu.main-menu > ul > li.has-children > a:after, nav.menu.main-menu > ul > li > a.active:before {
    content: none;
  }
  nav.menu.main-menu > ul > li {
    display: block;
    margin: 0;
    position: relative;
  }
  nav.menu.main-menu > ul > li > a {
    padding: 20px 25px;
    display: block;
    border-bottom: 1px solid #e1e1e1;
  }
  nav.menu.main-menu > ul > li.has-children > ul li {
    opacity: 1;
    display: block;
    margin-bottom: 0;
    transform: translateX(0);
  }
  nav.menu.main-menu > ul > li.has-children > ul li > a {
    padding: 8px 25px;
    display: block;
  }
  nav.menu.main-menu > ul > li.has-children > ul li.submenu-title > a {
    display: block;
    padding: 20px 25px;
    font-family: "Roboto", sans-serif;
    color: #2c3e50;
    border-bottom: 1px solid #ddd;
    text-transform: none;
    font-size: 16px;
  }
  nav.menu.main-menu > ul > li.has-children.row-menu > ul {
    padding: 15px 0;
  }
  nav.menu.main-menu > ul > li {
    padding: 0;
  }
  nav.menu.main-menu > ul > li.has-children > ul {
    padding: 0;
    height: auto;
    visibility: visible;
    opacity: 1;
    position: relative;
    pointer-events: all;
    box-shadow: none;
  }
  nav.menu.main-menu ul li.has-children {
    transition: none;
  }
  nav.menu.main-menu > ul > li:first-child {
    border-top: 1px solid #ddd;
  }
  nav.main-menu .has-children .arrow {
    cursor: pointer;
    border: 0;
    height: 60px;
    text-align: center;
    padding: 0;
    width: 56px;
    border-radius: 0;
    top: 0;
    right: 0;
    color: #2c3e50;
    border-left: 1px solid #ddd;
    background: 0 0;
    display: block;
    position: absolute;
    font-size: 20px;
    line-height: 56px;
  }
  nav.menu.main-menu > ul > li.has-children.on:hover > a, nav.menu.main-menu > ul > li.has-children.on > a, nav.menu.main-menu > ul > li.has-children > ul li.has-children.on > a {
    color: #00c4cc;
  }
  nav.menu.main-menu > ul > li.has-children:hover > a, nav.menu.main-menu > ul > li > a:hover {
    color: #2c3e50;
  }
  nav.main-menu .has-children .arrow:after {
    content: "\f107";
    font-family: "fontAwesome", sans-serif;
    display: inline-block;
  }
  nav.main-menu .has-children .arrow:before {
    content: "";
    height: 100%;
    width: 1px;
    background: #fff;
    left: 0;
    position: absolute;
    top: 2px;
  }
  nav.menu.main-menu > ul > li.has-children > ul li.submenu-title > ul {
    margin-top: 0;
    padding: 10px 0;
  }
  nav.main-menu .has-children .has-children .has-children ul {
    margin-bottom: 0;
    margin-top: 0;
    padding: 10px 0;
  }
  nav.main-menu .has-children .has-children .arrow:after {
    content: "+";
  }
  nav.main-menu .has-children .has-children.on .arrow:after {
    content: "\f106";
  }
  nav.main-menu .has-children.on > .arrow:after {
    content: "-";
  }
  nav.menu.main-menu > ul > li.has-children.row-menu > ul > li {
    display: block;
    width: 100%;
    padding-right: 0;
    float: none;
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
  }
  nav.menu.main-menu > ul > li > a.active {
    color: #00cae9;
    border-left: 3px solid #00cae9;
  }
  nav.main-menu .has-children ul {
    display: none;
    border-bottom: 1px solid #ddd;
  }
}
@media (max-width: 992px) {
  .h1, h1 {
    font-size: 45px;
  }
  .table {
    font-size: 14px;
  }
  .table thead th {
    font-size: 16px;
  }
  table tbody tr td img {
    max-width: 20px;
  }
  .circles {
    right: 0;
    position: relative;
    transform: scale(0.9);
  }
  header.main-header .partners-logo {
    max-width: 120px;
    margin-top: 27px;
  }
  header.main-header .button-holder {
    position: relative;
    margin-left: 50px;
    margin-right: 20px;
  }
  .button-custom.button-xl {
    font-size: 16px;
    min-width: 120px;
    padding: 15px 30px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
  .h1, h1 {
    font-size: 40px;
  }
  .h2, h2 {
    font-size: 34px;
  }
  .info {
    font-size: 12px;
  }
  .accordion-header {
    font-size: 18px;
  }
  .estimate-decor {
    max-width: 100%;
  }
  .description {
    font-size: 20px;
  }
  .banner-image {
    margin-top: -50px;
  }
  .banner-decor {
    margin-top: -100px !important;
  }
  .circles {
    transform: scale(0.5);
    left: 0;
    right: 0;
  }
  nav.menu.footer-menu > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  .useful-pages .useful-page .title {
    font-size: 14px;
  }
  .table {
    font-size: 13px;
  }
  .table tbody tr td:first-child {
    padding-left: 0;
  }
  table tbody tr td img {
    max-width: 20px;
  }
  .table thead th {
    font-size: 14px;
  }
  .table thead th:first-child {
    width: 150px;
  }
  .factors-section .content-holder {
    padding-right: 0 !important;
  }
  .button-custom.button-xxl {
    font-size: 16px;
    padding: 18px 25px;
    min-width: auto;
  }
}
@media (max-width: 400px) {
  .h1, h1 {
    font-size: 40px;
  }
  .h3, h3 {
    font-size: 24px;
  }
  .table thead th:first-child {
    width: 90px;
  }
  .button-custom.button-xxl {
    padding: 18px 20px;
  }
}

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