@import "https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap";
:root {
  --content-width: 1216px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width)  + (var(--container-offset) * 2));
  --font-family: "Inter", sans-serif;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --color-white: #fff;
  --color-black: #000;
  --color-dark-900: #2c2c2e;
  --color-blue-50: #005fdd0e;
  --color-blue-100: #005fdd1f;
  --color-blue-200: #2da7df;
  --color-blue-400: #005fdd;
  --color-blue-700: #002e6b;
  --color-gray-400: #f2f2f2;
  --color-gray-600: #7b7b7b;
  --filter-blue-40: brightness(0) saturate(100%) invert(23%) sepia(67%) saturate(4858%) hue-rotate(207deg) brightness(93%) contrast(101%);
  --filter-dark-900: brightness(0) saturate(100%) invert(18%) sepia(4%) saturate(340%) hue-rotate(202deg) brightness(92%) contrast(98%);
  --radius-main: 8px;
  --gradient-white: linear-gradient(90deg, #fff 30%, #fff0 100%);
  --gradient-dark: linear-gradient(180deg, #0000 0%, #000 125.65%);
  --arrow-next-icon: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5855 6.39792L8.52297 11.4604C8.41742 11.566 8.27427 11.6253 8.125 11.6253C7.97573 11.6253 7.83258 11.566 7.72703 11.4604C7.62148 11.3549 7.56219 11.2117 7.56219 11.0624C7.56219 10.9132 7.62148 10.77 7.72703 10.6645L11.8298 6.56245H0.8125C0.663316 6.56245 0.520242 6.50318 0.414753 6.39769C0.309263 6.29221 0.25 6.14913 0.25 5.99995C0.25 5.85076 0.309263 5.70769 0.414753 5.6022C0.520242 5.49671 0.663316 5.43745 0.8125 5.43745H11.8298L7.72703 1.33542C7.62148 1.22987 7.56219 1.08671 7.56219 0.937447C7.56219 0.788179 7.62148 0.645026 7.72703 0.539478C7.83258 0.43393 7.97573 0.374634 8.125 0.374634C8.27427 0.374634 8.41742 0.43393 8.52297 0.539478L13.5855 5.60198C13.6378 5.65422 13.6793 5.71626 13.7076 5.78454C13.7359 5.85283 13.7504 5.92603 13.7504 5.99995C13.7504 6.07387 13.7359 6.14706 13.7076 6.21535C13.6793 6.28364 13.6378 6.34567 13.5855 6.39792Z' fill='%23000'/%3E%3C/svg%3E%0A");
  --arrow-down-icon: url("data:image/svg+xml,%3Csvg width='19' height='12' viewBox='0 0 19 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.55658 0.666615C9.32277 0.665263 9.091 0.710078 8.87455 0.798488C8.6581 0.886897 8.46122 1.01716 8.29522 1.18182L1.18898 8.28806C1.02333 8.45371 0.891936 8.65035 0.80229 8.86678C0.712645 9.0832 0.666504 9.31517 0.666504 9.54942C0.666504 9.78368 0.712645 10.0156 0.80229 10.2321C0.891936 10.4485 1.02333 10.6451 1.18898 10.8108C1.35462 10.9764 1.55127 11.1078 1.76769 11.1975C1.98412 11.2871 2.21608 11.3333 2.45033 11.3333C2.68459 11.3333 2.91655 11.2871 3.13298 11.1975C3.3494 11.1078 3.54605 10.9764 3.71169 10.8108L9.55658 4.93036L15.4192 10.5798C15.5827 10.7616 15.7818 10.9076 16.0043 11.0088C16.2267 11.1101 16.4677 11.1643 16.712 11.1682C16.9564 11.1721 17.199 11.1255 17.4245 11.0313C17.65 10.9372 17.8537 10.7975 18.0228 10.6211C18.1919 10.4446 18.3228 10.2352 18.4073 10.0058C18.4917 9.77648 18.528 9.53218 18.5137 9.28819C18.4995 9.04421 18.435 8.80579 18.3244 8.58785C18.2138 8.3699 18.0594 8.17713 17.8709 8.02158L10.7646 1.16405C10.4398 0.850817 10.0078 0.672968 9.55658 0.666615Z' fill='%23000'/%3E%3C/svg%3E%0A");
}

.checkbox__field:checked + .checkbox__content:after {
  opacity: 1;
}

.checkbox__field:focus + .checkbox__content:before {
  outline: 1px solid var(--color-gray-100);
  outline-offset: 1px;
}

.checkbox__field:disabled + .checkbox__content {
  opacity: .4;
  pointer-events: none;
}

html, body {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

.page {
  height: var(--vh);
  font-family: var(--font-family);
  font-weight: var(--fw-400);
  letter-spacing: 0;
  color: var(--color-dark-900);
  background-color: var(--color-white);
  font-optical-sizing: auto;
  font-size: clamp(16px, 1vw, 20px);
  font-style: normal;
  line-height: 1.5;
}

.page__body {
  min-width: 320px;
  min-height: var(--vh);
}

.page.open {
  overflow: hidden;
}

.container {
  padding: 0 var(--container-offset);
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.site-container {
  min-height: var(--vh);
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  display: grid;
}

.main--top {
  padding-top: var(--header-height);
}

.overlay {
  position: relative;
}

.overlay:before {
  content: "";
  z-index: 1;
  background: var(--gradient-white);
  position: absolute;
  inset: 0;
}

@media only screen and (max-width: 992px) {
  .overlay:before {
    background-color: var(--color-white);
    opacity: .7;
  }
}

.background {
  background-color: var(--color-blue-50);
}

.arrow {
  align-items: center;
  display: flex;
  position: relative;
}

.arrow:after {
  content: "";
  width: 14px;
  height: 11px;
  background-image: var(--arrow-next-icon);
  filter: var(--filter-blue-40);
  margin-left: 12px;
  display: block;
}

#form-request {
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  margin: auto;
  transition-property: opacity, visibility;
  transition-duration: .2s;
  position: fixed;
  inset: 0;
}

#form-request:before {
  content: "";
  background-color: var(--color-black);
  opacity: .3;
  position: absolute;
  inset: 0;
}

#form-request iframe {
  z-index: 1;
  width: 90%;
  height: calc(var(--vh)  - 60px);
  max-width: 980px;
  border: none;
  margin: 30px auto;
  position: absolute;
  left: 0;
  right: 0;
}

#form-request.open {
  opacity: 1;
  visibility: visible;
}

.logo {
  width: 100%;
  max-width: 325px;
  margin-right: 20px;
}

.logo img {
  width: 100%;
}

@media only screen and (max-width: 475px) {
  .logo {
    width: 85%;
  }
}

.hidden {
  display: none !important;
}

.sr-only {
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  width: 1px !important;
  height: 1px !important;
  white-space: nowrap !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  border: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
}

.dis-scroll {
  width: 100%;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  overscroll-behavior: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

h1, h2, h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: var(--fw-600);
  text-transform: capitalize;
  color: var(--color-black);
  font-size: clamp(1.875rem, 1.4107rem + 2.3214vi, 3.5rem);
  overflow: hidden;
}

h1 {
  font-size: clamp(1.875rem, 1.4107rem + 2.3214vi, 3.5rem);
}

h2, .title {
  margin-bottom: 24px;
  font-size: clamp(1.75rem, 1.3929rem + 1.7857vi, 3rem);
  line-height: 1.2;
}

.title--sec {
  font-size: clamp(1.5rem, 1.0536rem + 1.6071vi, 2.5rem);
}

h3 {
  font-size: 24px;
}

.header {
  z-index: 10;
  border-radius: var(--radius-main);
  width: 100%;
  max-width: 1344px;
  background-color: var(--color-white);
  margin: 0 auto;
  padding: 16px 0;
  transition-property: transform, padding;
  transition-duration: .15s;
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
}

.header.hide {
  transform: translateY(calc(-100% - 30px));
}

@media only screen and (max-width: 992px) {
  .header {
    top: 0;
  }
}

.header button.formsapp-popup-button, .header .btn {
  padding: 10px 16px !important;
}

.nav {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.nav__inner {
  width: 100%;
  justify-content: flex-end;
  display: flex;
}

@media only screen and (max-width: 992px) {
  .header .nav__inner {
    z-index: -1;
    padding-top: calc(var(--header-height) * 1.5);
    width: 100%;
    height: calc(var(--vh));
    background-color: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    transition-property: transform;
    transition-duration: .4s;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    transform: translateX(150%);
  }
}

.nav__list {
  align-items: center;
  margin-right: 1.5625rem;
  display: flex;
}

@media only screen and (max-width: 1280px) {
  .header .nav__list {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 992px) {
  .header .nav__list {
    z-index: -1;
    flex-direction: column;
  }
}

.nav__item:not(:last-of-type) {
  margin-right: 24px;
}

@media only screen and (max-width: 1280px) {
  .nav__item:not(:last-of-type) {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 992px) {
  .header .nav__item {
    margin-bottom: 30px;
  }
}

.nav__link {
  white-space: nowrap;
  text-transform: capitalize;
  color: var(--color-black);
  font-size: 16px;
}

.nav__link.true {
  color: var(--color-blue-400);
}

.nav__btns {
  width: 100%;
  max-width: 292px;
  display: flex;
  translate: 8px;
}

.nav__btns .btn {
  white-space: nowrap;
  margin-right: 8px;
  padding: 10px;
}

.nav__btns .btn:first-of-type {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100px;
}

@media only screen and (max-width: 992px) {
  .nav__btns {
    margin: 0 auto;
  }

  .nav--footer {
    flex-direction: column;
  }

  .nav--footer .logo, .nav--footer .nav__list {
    margin-bottom: 20px;
  }

  .nav--footer .nav__inner {
    flex-direction: column;
    align-items: center;
  }
}

[class].btn {
  border: 1px solid var(--color-blue-400);
  border-radius: var(--radius-main);
  width: 100%;
  max-width: 176px;
  font-weight: var(--fw-500);
  text-align: center;
  color: var(--color-blue-400);
  background-color: var(--color-white);
  justify-content: center;
  align-items: center;
  padding: 18px 10px;
  font-size: 18px;
  line-height: 1;
  transition-property: background-color, color, border-color;
  transition-duration: .2s;
  display: flex;
  position: relative;
}

[class].btn--reverse {
  color: var(--color-white);
  background-color: var(--color-blue-400);
}

[class].btn--reverse:hover, [class].btn--reverse:focus {
  border-color: var(--color-blue-400);
  color: var(--color-white);
  background-color: var(--color-blue-400);
}

button.formsapp-popup-button {
  margin: 0 !important;
  padding: 18px 16px !important;
}

.burger {
  --line-height: 2px;
  --buger-size: 20px;
  --move: calc(var(--buger-size) / 3);
  --move-decrement: calc(var(--move) * -1);
  --transition-time: .5s;
  --lines-color: var(--color-black);
  width: calc(var(--buger-size)  + 5px);
  height: var(--buger-size);
  transition: opacity var(--transition-time) ease;
  background-color: #0000;
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.burger span {
  z-index: -1;
  width: 100%;
  height: var(--line-height);
  background-color: var(--lines-color);
  transition: transform var(--transition-time) ease, background-color var(--transition-time) ease .3s;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.burger span:before, .burger span:after {
  content: "";
  width: 100%;
  height: var(--line-height);
  background-color: var(--lines-color);
  animation-duration: .4s;
  animation-timing-function: cubic-bezier(.645, .045, .355, 1);
  animation-fill-mode: forwards;
  position: absolute;
  left: 0;
}

.burger span:before {
  transform: translateY(var(--move-decrement)) rotate(0);
}

.burger span:after {
  transform: translateY(var(--move)) rotate(0);
}

.burger:hover {
  opacity: 1;
}

@media only screen and (max-width: 992px) {
  .burger {
    display: block;
  }
}

.closed.opened span {
  background-color: var(--lines-color);
  transition: background-color .2s;
}

.closed.opened span:before {
  animation-name: toplineburger;
}

.closed.opened span:after {
  animation-name: bottomlineburger;
}

.opened .nav__inner {
  transform: translateX(0);
}

.opened span {
  background-color: #0000;
  transition: background-color .2s;
}

.opened span:before, .opened span:after {
  animation-duration: .2s;
  animation-timing-function: cubic-bezier(.645, .045, .355, 1);
  animation-fill-mode: forwards;
}

.opened span:before {
  animation-name: toplinecross;
}

.opened span:after {
  animation-name: bottomlinecross;
}

.hero {
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero__inner {
  width: 100%;
  min-height: 726px;
  max-width: 560px;
  align-items: center;
  padding: 4.375rem 0;
  display: flex;
}

.hero__content {
  translate: 0 54px;
}

@media only screen and (max-width: 992px) {
  .hero__content {
    translate: 0;
  }
}

.hero .btn {
  max-width: 213px;
}

.hero h1 {
  font-weight: var(--fw-600);
  text-transform: none;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero p {
  margin-bottom: 32px;
  font-size: 20px;
}

.hero > * {
  z-index: 1;
  position: relative;
}

.hero--simple .hero__content {
  translate: 0 68px;
}

@media only screen and (max-width: 768px) {
  .hero--simple .hero__content {
    translate: 0;
  }

  .hero--simple .hero__content p {
    margin: 0;
  }
}

@media (min-width: 1920px) {
  .hero {
    background-position: top;
    background-size: cover;
  }
}

@media only screen and (max-width: 1280px) {
  .hero__inner {
    min-height: 550px;
  }
}

@media only screen and (max-width: 992px) {
  .hero {
    background-position: center;
    background-size: cover;
  }

  .hero__inner {
    min-height: 500px;
    padding-top: 5.625rem;
  }
}

@media only screen and (max-width: 475px) {
  .hero .btn {
    max-width: none;
  }
}

.faq {
  padding: 6.875rem 0 5.4375rem;
}

.faq__item:not(:last-child) {
  margin-bottom: 16px;
}

.faq details {
  border-radius: var(--radius-main);
  background-color: var(--color-blue-50);
  overflow: hidden;
}

.faq details p {
  width: 97%;
  font-size: 16px;
  line-height: 1.6;
}

.faq details[open] summary:before {
  rotate: none;
}

.faq summary {
  font-weight: var(--fw-600);
  letter-spacing: .02em;
  color: var(--color-black);
  cursor: pointer;
  padding: 13px 54px 13px 24px;
  font-size: 18px;
  position: relative;
}

.faq summary:before {
  content: "";
  border-radius: var(--radius-main);
  width: 32px;
  height: 32px;
  background-image: var(--arrow-down-icon);
  filter: var(--filter-blue-40);
  perspective-origin: bottom;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 13px;
  position: absolute;
  top: 10px;
  right: 25px;
  overflow: hidden;
  rotate: 180deg;
}

.faq summary + div {
  padding: 0 24px 15px;
}

.faq h2 {
  text-align: center;
  color: var(--color-blue-400);
  margin: 0 auto 3rem;
}

@media only screen and (max-width: 992px) {
  .faq {
    padding: 3.75rem 0;
  }
}

@media only screen and (max-width: 768px) {
  .faq {
    padding: 2.5rem 0;
  }

  .faq summary:before {
    right: 15px;
  }
}

@media only screen and (max-width: 576px) {
  .faq details p {
    width: 100%;
  }
}

@keyframes toplinecross {
  0% {
    transform: translateY(var(--move-decrement));
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: rotate(45deg);
  }
}

@keyframes bottomlinecross {
  0% {
    transform: translateY(var(--move));
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0)rotate(-45deg);
  }
}

@keyframes toplineburger {
  0% {
    transform: rotate(45deg);
  }

  50% {
    transform: rotate(0);
  }

  100% {
    transform: translateY(var(--move-decrement)) rotate(0);
  }
}

@keyframes bottomlineburger {
  0% {
    transform: translateY(0)rotate(-45deg);
  }

  50% {
    transform: rotate(0);
  }

  100% {
    transform: translateY(var(--move)) rotate(0);
  }
}

.policy {
  color: var(--color-dark-900);
  padding: 11.875rem 0;
}

.policy h1 {
  color: var(--color-blue-400);
  margin: 0 auto 2.9375rem;
  position: relative;
}

.policy h2 {
  letter-spacing: .02em;
  font-size: 30px;
}

.policy ul {
  padding-left: 15px;
}

.policy li {
  letter-spacing: .02em;
  padding-left: 5px;
  font-size: 20px;
  line-height: 1.43;
}

.policy li:not(:last-child) {
  margin-bottom: 3px;
}

.policy li::marker {
  content: "✓";
  margin-right: 5px;
}

.policy p {
  letter-spacing: .02em;
  font-size: 20px;
  line-height: 1.2;
}

.policy p:not(:last-child) {
  margin-bottom: 3.25rem;
}

.policy a {
  color: var(--color-blue-400);
  text-decoration: underline;
}

.footer {
  color: var(--color-white);
  background-color: var(--color-tile-800);
}

.footer__bottom {
  background-color: var(--color-blue-400);
  padding: 22px 0;
}

.footer__bottom .nav__item:not(:last-child) {
  margin-right: 2.9375rem;
}

.footer__inner {
  justify-content: space-between;
  display: flex;
}

.footer button.formsapp-popup-button, .footer .btn {
  padding: 10px 16px !important;
}

.footer .nav__btns {
  max-width: 277px;
}

.footer .nav--footer {
  padding: 3.5625rem 0 3.4375rem;
}

@media only screen and (max-width: 992px) {
  .footer .nav--footer {
    padding: 30px 0;
  }

  .footer .nav__list {
    margin: 0 auto 30px;
  }
}

@media only screen and (max-width: 768px) {
  .footer__inner {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .footer__inner .nav {
    width: max-content;
  }

  .footer__inner > p {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .footer .nav__list {
    flex-direction: column;
  }

  .footer .nav__item:not(:last-child) {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .footer__bottom .nav__item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 15px;
  }
}

.additional {
  padding: 7.625rem 0 5.8125rem;
}

.additional__inner {
  display: flex;
}

.additional__content {
  width: 100%;
  max-width: 493px;
  margin-right: auto;
  padding-block-start: 3.0625rem;
}

.additional__picture {
  border-radius: var(--radius-main);
  overflow: hidden;
}

.additional h2 {
  text-transform: none;
}

.additional p {
  margin-bottom: 24px;
  font-size: 20px;
}

.additional .btn {
  max-width: 162px;
}

.additional--simple {
  padding: 5.375rem 0;
}

.additional--simple .additional__content {
  max-width: 596px;
  padding-top: 0;
  line-height: 1.6;
}

.additional--simple .additional__picture {
  max-width: 493px;
}

.additional--portfolio {
  padding: 7.5rem 0;
}

.additional--portfolio__inner > :nth-child(2n) {
  margin-right: 20px;
}

.additional--portfolio .additional__content {
  align-self: center;
  padding-top: 4px;
}

.additional--portfolio .additional__picture {
  translate: 0 -10px;
}

.additional--reverse .additional__inner {
  flex-direction: row-reverse;
}

.additional--reverse .additional__content {
  margin-left: auto;
  margin-right: 0;
}

@media only screen and (max-width: 1180px) {
  .additional--portfolio, .additional--reverse {
    padding: 3.75rem 0;
  }
}

@media only screen and (max-width: 992px) {
  .additional {
    padding: 3.75rem 0;
  }

  .additional__content {
    max-width: none;
    margin-bottom: 40px;
    margin-right: 20px;
    padding-top: 0;
  }

  .additional__inner {
    flex-direction: column;
    align-items: center;
  }

  .additional--reverse .additional__inner {
    flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  .additional--portfolio, .additional--reverse {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 576px) {
  .additional__content {
    margin-bottom: 30px;
    margin-right: 0;
  }

  .additional__content p {
    margin: 0;
    line-height: 1.3;
  }

  .additional .btn {
    max-width: none;
  }
}

.service {
  border-radius: var(--radius-main);
  height: 100%;
  background-color: var(--color-white);
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.service__content {
  height: 100%;
  flex-direction: column;
  padding: 25px 24px 30px;
  display: flex;
}

.service h3 {
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.service p {
  margin-bottom: 24px;
  font-size: 14px;
}

.service img {
  width: 100%;
}

.service a {
  width: max-content;
  font-weight: var(--fw-500);
  color: var(--color-blue-400);
  border-bottom: 1px solid #0000;
  margin-top: auto;
  font-size: 18px;
}

.service a:hover, .service a:active {
  border-bottom-color: var(--color-blue-400);
}

@media only screen and (max-width: 576px) {
  .service__content {
    padding: 15px;
  }
}

.blog {
  padding: 5.3125rem 0;
}

.blog__header {
  justify-content: space-between;
  margin-bottom: 3.0625rem;
  display: flex;
}

.blog__header a {
  color: var(--color-blue-400);
}

.blog__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

.blog img {
  width: 100%;
}

.blog .title--sec {
  margin-bottom: 0;
  font-size: 36px;
}

.blog .arrow {
  font-size: 18px;
}

.blog--page {
  padding: 5.625rem 0 3.625rem;
}

.blog--page .blog__grid {
  row-gap: 2.5rem;
}

.blog--page h2 {
  margin: 0 auto 29px;
  font-size: 40px;
}

.blog--page > p {
  text-align: center;
  margin-bottom: 2.375rem;
  font-size: 20px;
}

@media only screen and (max-width: 992px) {
  .blog {
    padding: 3.75rem 0;
  }
}

@media only screen and (max-width: 768px) {
  .blog__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 400px;
    margin: 0 auto 1.875rem;
  }
}

@media only screen and (max-width: 576px) {
  .blog__grid {
    grid-auto-rows: auto;
  }
}

.news {
  border-radius: var(--radius-main);
  position: relative;
  overflow: hidden;
}

.news h3 {
  text-transform: none;
  color: var(--color-white);
  padding: 0 30px 24px 24px;
  transition: scale .2s;
  position: absolute;
  bottom: 0;
}

.news a {
  z-index: 1;
  background: var(--gradient-dark);
  position: absolute;
  inset: 0;
}

.news a:hover h3 {
  scale: 1.04;
}

@media only screen and (max-width: 992px) {
  .news {
    height: 100%;
  }

  .news h3 {
    padding: 0 15px 15px;
    font-size: 20px;
  }
}

.contact {
  background-color: var(--color-blue-400);
  padding: 5.375rem 0;
}

.contact__form {
  border-radius: var(--radius-main);
  width: 100%;
  max-width: 800px;
  background-color: var(--color-white);
  margin: 0 auto;
  padding: 2.125rem 2rem 2.0625rem;
  overflow: hidden;
  box-shadow: 0 4px 40px #2b59ff14;
}

.contact label {
  width: 100%;
  display: block;
}

.contact label:not(:last-child) {
  margin-bottom: 16px;
}

.contact input, .contact textarea {
  border-radius: var(--radius-main);
  width: 100%;
  color: var(--color-dark-900);
  background-color: var(--color-gray-400);
  border: none;
  padding: 12px 16px;
  overflow: hidden;
}

.contact textarea {
  min-height: 156px;
  resize: none;
}

.contact h2 {
  color: var(--color-white);
  margin: 0 auto 2.9375rem;
}

.contact .btn {
  padding: 15px 10px;
}

@media only screen and (max-width: 992px) {
  .contact__form {
    width: 95%;
  }
}

@media only screen and (max-width: 768px) {
  .contact {
    padding: 2.5rem 0;
  }

  .contact__form {
    padding: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .contact .btn {
    max-width: none;
  }
}

.contact-page {
  padding: 5.375rem 0 6.875rem;
}

.contact-page__logo {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.contact-page__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  display: grid;
}

.contact-page__item {
  text-align: center;
}

.contact-page__icon {
  border-radius: var(--radius-main);
  width: 100%;
  background-color: var(--color-blue-100);
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  padding: 3.9375rem 0;
  display: flex;
  overflow: hidden;
}

.contact-page__text {
  font-weight: var(--fw-600);
  font-size: 24px;
}

@media only screen and (max-width: 992px) {
  .contact-page {
    padding: 3.125rem 0;
  }

  .contact-page__text {
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .contact-page {
    padding: 2.5rem 0;
  }

  .contact-page__grid {
    grid-template-columns: 1fr;
  }

  .contact-page__logo {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .contact-page__text {
    font-size: 17px;
  }

  .contact-page__icon {
    padding: 30px 0;
  }

  .contact-page__icon img {
    max-width: 90px;
  }
}

.single {
  padding: 6.0625rem 0 4.0625rem;
}

.single__header {
  align-items: flex-start;
  margin-bottom: 24px;
  display: flex;
}

.single__header a {
  text-transform: capitalize;
  filter: var(--filter-dark-900);
  margin-right: 2.625rem;
  padding-top: 5px;
  padding-left: 52px;
  font-size: 18px;
}

.single__header a:after {
  position: absolute;
  left: 13px;
  right: auto;
  scale: -1 1;
}

.single__time {
  letter-spacing: .02em;
  color: var(--color-gray-600);
  font-size: 20px;
}

.single__time time {
  margin-right: 12px;
  position: relative;
}

.single__time time:after {
  content: "";
  width: 3px;
  height: 3px;
  background-color: currentColor;
  border-radius: 50%;
  position: absolute;
  top: 50%;
}

.single h1 {
  text-transform: none;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 1.2;
}

.single h2 {
  font-weight: var(--fw-600);
  letter-spacing: .015em;
  font-size: 30px;
  line-height: 1.25;
}

.single p {
  letter-spacing: .02em;
  font-size: 20px;
  line-height: 1.25;
}

.single ul {
  padding-left: 20px;
}

.single li {
  list-style-type: disc;
}

.single li span {
  font-weight: var(--fw-600);
}

.single > :not(:last-child) {
  margin-bottom: 24px;
}

.single img:first-of-type {
  margin-bottom: 64px;
}

.single img:last-of-type {
  margin-bottom: 48px;
}

@media only screen and (max-width: 992px) {
  .single {
    padding: 3.125rem 0;
  }
}

@media only screen and (max-width: 992px) and (max-width: 768px) {
  .single {
    padding: 20px 0 60px;
  }

  .single__header {
    flex-direction: column;
  }

  .single h1 {
    font-size: 30px;
  }

  .single h2 {
    font-size: 24px;
  }

  .single br {
    display: none;
  }

  .single a {
    margin-bottom: 20px;
    padding-left: 25px;
  }

  .single a:after {
    left: -10px;
  }
}

.services {
  padding: 6.125rem 0 5.9375rem;
}

.services__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
  margin-bottom: 3rem;
  display: grid;
}

.services h2 {
  text-align: center;
  color: var(--color-blue-400);
  margin: 0 auto 2.9375rem;
}

.services .btn {
  max-width: 190px;
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  .services {
    padding: 3.75rem 0;
  }
}

@media only screen and (max-width: 768px) {
  .services__grid {
    max-width: 525px;
    grid-template-columns: 1fr;
    margin: 0 auto 1.875rem;
  }
}

@media only screen and (max-width: 475px) {
  .services .btn {
    max-width: none;
  }
}

.customer {
  padding: 5.4375rem 0;
}

.customer__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  display: grid;
}

.customer__item {
  border-radius: var(--radius-main);
  height: 100%;
  background-color: var(--color-blue-50);
  flex-direction: column;
  padding: 2rem 24px 1.6875rem;
  font-size: 18px;
  display: flex;
  overflow: hidden;
}

.customer h2 {
  margin: 0 auto 3rem;
}

.customer blockquote {
  margin-bottom: 20px;
  line-height: 1.6;
}

.customer cite {
  font-weight: var(--fw-600);
  margin-top: auto;
}

@media only screen and (max-width: 992px) {
  .customer {
    padding: 3.75rem 0;
  }
}

@media only screen and (max-width: 768px) {
  .customer__grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 576px) {
  .customer {
    padding-bottom: 0;
  }
}

.team {
  padding: 5.6875rem 0 3.5rem;
}

.team__grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.375rem;
  margin-bottom: 3rem;
  display: grid;
}

.team__item {
  border-radius: var(--radius-main) var(--radius-main) 0 0;
  flex-direction: column;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.team h2 {
  margin: 0 auto 4.0625rem;
}

.team img {
  width: 100%;
  margin-bottom: 24px;
}

.team h3 {
  margin-bottom: 4px;
}

.team .btn {
  max-width: 190px;
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  .team {
    padding: 3.75rem 0;
  }

  .team__grid {
    max-width: 625px;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }

  .team h2 {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 576px) {
  .team__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.values {
  padding: 5.4375rem 0 6.5625rem;
}

.values__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 4.0625rem 2.0625rem;
  margin-bottom: 3rem;
  display: grid;
}

.values__item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-top: 7.4375rem;
  display: flex;
  position: relative;
}

.values__item:before {
  content: "";
  border-radius: calc(var(--radius-main) * 2);
  width: 96px;
  height: 96px;
  background-image: url("../images/icons/innovation.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 48px;
  background-color: var(--color-blue-100);
  position: absolute;
  top: 0;
}

.values__item img {
  width: 100%;
  margin-bottom: 24px;
}

.values__item h3 {
  font-weight: var(--fw-600);
  letter-spacing: .02em;
  color: var(--color-blue-400);
  margin-bottom: 16px;
}

.values__item--innovation:before {
  background-image: url("../images/icons/innovation.svg");
}

.values__item--integrity:before {
  background-image: url("../images/icons/integrity.svg");
}

.values__item--quality:before {
  background-image: url("../images/icons/quality.svg");
}

.values__item--sustainability:before {
  background-image: url("../images/icons/sustainability.svg");
}

.values__item--customer:before {
  background-image: url("../images/icons/customer.svg");
}

.values__item--teamwork:before {
  background-image: url("../images/icons/teamwork.svg");
}

.values__info {
  border-radius: var(--radius-main);
  background-color: var(--color-blue-50);
  flex-direction: column;
  align-items: center;
  padding: 2.8125rem 15px;
  display: flex;
  overflow: hidden;
}

.values__info h3 {
  color: var(--color-blue-400);
  margin-bottom: 24px;
  font-size: 32px;
}

.values__info li {
  width: max-content;
  margin: 0 auto;
  font-size: 20px;
  list-style-type: disc;
  position: relative;
}

.values__info li::marker {
  color: var(--color-blue-400);
}

.values__info li:not(:last-child) {
  margin-bottom: 17px;
}

.values__info li span {
  font-weight: var(--fw-600);
  color: var(--color-blue-400);
}

.values h2 {
  color: var(--color-blue-400);
  margin: 0 auto 3.0625rem;
}

.values p {
  color: var(--color-gray-600);
  font-size: 18px;
  line-height: 1.6;
}

@media only screen and (max-width: 992px) {
  .values {
    padding: 3.75rem 0;
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .values__list {
    width: 95%;
    padding-left: 20px;
  }

  .values__list li {
    width: 100%;
    text-align: left;
  }

  .values h2 {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 576px) {
  .values {
    padding: 2.5rem 0;
  }

  .values__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .values__list {
    width: 98%;
  }

  .values__item {
    padding-top: 5.625rem;
  }

  .values__item:before {
    width: 70px;
    height: 70px;
    background-size: 36px;
  }
}

.service-list {
  padding: 2.375rem 0 2.3125rem;
}

.service-page {
  padding: 3rem 0;
}

.service-page:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-400);
}

.service-page__item {
  border-radius: var(--radius-main);
  background-color: var(--color-blue-50);
  overflow: hidden;
}

.service-page__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

.service-page__content {
  padding: 24px;
}

.service-page__content h3 {
  margin-bottom: 8px;
}

.service-page__content p {
  font-size: 14px;
  line-height: 1.6;
}

.service-page--double .service-page__grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-page--single .service-page__grid {
  grid-template-columns: 1fr;
}

.service-page h2, .service-page h3 {
  margin-left: 0;
}

.service-page img {
  min-height: 150px;
  width: 100%;
}

.service-page h2 + p {
  margin-bottom: 2.9375rem;
  font-size: 20px;
}

@media only screen and (max-width: 992px) {
  .service-page__grid {
    gap: 15px;
  }

  .service-page__content {
    padding: 24px 15px;
  }
}

@media only screen and (max-width: 768px) {
  .service-page {
    padding: 30px 0;
  }

  .service-page:not(.service-page--double) .service-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-page:not(.service-page--double) .service-page__item:last-child {
    max-width: 360px;
    grid-column: 1 / span 2;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 576px) {
  .service-page--double .service-page__grid, .service-page:not(.service-page--double) .service-page__grid {
    grid-template-columns: 1fr;
  }

  .service-page:not(.service-page--double) .service-page__item:last-child {
    max-width: none;
    grid-column: auto;
  }

  .service-page p {
    font-size: 16px;
  }
}

