:root {
  --white: #ffffff;
  --orange: #0E5FA8;
  --orange2: #4187c5;
  --dark-gray: #1E2637;
  --blue: #1C6896;
  --light-gray: #F7F7F7;
  --gray: #636363;
  --gray-h2: #434343;
  --large-screen: 1472px;
  --tablet-screen: 740px;
  --mobile-screen: 320px;
  --padding: 16px;
  --padding-top: 50px;
}

.service {
  overflow: hidden;
}

@media (min-width: 740px) {
  .top-full--reversed .top-full__container {
    padding-top: 0;
    padding-bottom: 0;
  }
  .top-full--reversed .top-full__left {
    padding-top: 72px;
    padding-bottom: var(--padding-top);
  }

  .top-full--reversed .top-full__right img {
    left: 0;
    right: auto;
    height: calc(100% + 65px);
    max-width: unset;
    width: auto;
    max-height: 549px
  }
}

@media (min-width: 1000px) {
  .top-full--reversed .top-full__right img {
    height: 549px;
  }
}

@media (min-width: 740px) {
  :root {
    --padding-top: 70px;
  }
}
@font-face {
  font-family: "Clear Sans";
  src: local("ClearSans"), url("../fonts/ClearSans.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clear Sans";
  src: local("ClearSans-Bold"), url("../fonts/ClearSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.container {
  width: 100%;
  padding-left: var(--padding);
  padding-right: var(--padding);
  margin: 0 auto;
}
@media (min-width: 1472px) {
  .container {
    max-width: var(--large-screen);
  }
}

.container-inside {
  padding-top: 36px;
  padding-bottom: 36px;
}

@media (min-width: 1472px) {
  .container-inside {
    padding-bottom: 50px;
  }
}
.btn {
  border: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

html {
  min-height: 100vh;
  font-size: 16px;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-size: 16px;
  line-height: 130%;
  color: var(--dark-gray);
  font-family: "Clear Sans", "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--white);
}

main {
  flex-grow: 1;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

input {
  margin: 0;
  padding: 0;
  background-color: transparent;
  font-size: inherit;
  font-family: inherit;
  color: var(--dark-gray);
  border: 0;
  cursor: pointer;
}
input:hover, input:focus {
  outline: none;
}

.visually-hidden:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.h1 {
  position: relative;
  margin: 0;
  padding-bottom: 24px;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 120%;
  color: var(--gray-h2);
}
.h1 span {
  color: var(--blue);
}
.h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100px;
  height: 2px;
  background-color: var(--orange);
}

.h2 {
  position: relative;
  padding-bottom: 24px;
  margin: 0;
  font-family: "Clear Sans", "Roboto", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 120%;
  color: var(--gray-h2);
}
.h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100px;
  height: 2px;
  background-color: var(--orange);
}

.head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service_head{
  padding-top: 50px;
}

.head__link,
.readmore {
  display: flex;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.36;
  color: var(--orange);
  text-transform: uppercase;
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}
.head__link:hover, .head__link:focus,
.readmore:hover,
.readmore:focus {
  color: var(--blue);
}

.gray {
  background-color: var(--light-gray);
}

.container-inside {
  padding-bottom: 50px;
}

@media (min-width: 740px) {
  .h1 {
    font-size: 2.375rem;
  }

  .h2 {
    font-size: 1.75rem;
  }

  .head {
    margin-bottom: 30px;
  }
}
@media (min-width: 1000px) {
  .h1 {
    font-size: 3.125rem;
  }

  .h2 {
    font-size: 2.25rem;
  }
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Clear Sans";
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn--main,
.btn--small {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.36;
  color: var(--white);
  background-color: var(--orange);
}
.btn--main:hover, .btn--main:focus,
.btn--small:hover,
.btn--small:focus {
  background-color: var(--orange2);
}

.btn--main {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 50px;
  padding-right: 50px;
}

.btn--small {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 50px;
  padding-right: 50px;
}

.btn--second {
  padding-top: 13px;
  padding-bottom: 14px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: var(--dark-gray);
  border: 1px solid var(--dark-gray);
}
.btn--second:hover, .btn--second:focus {
  color: var(--white);
  background-color: var(--dark-gray);
}

.btn--arr {
  width: 64px;
  height: 64px;
  z-index: 3;
  color: var(--dark-gray);
  background-color: var(--white);
  transition: background-color 0.3s ease-in-out;
}
.btn--arr svg {
  width: 24px;
  height: 24px;
  fill: none;
}
.btn--arr:hover, .btn--arr:focus {
  background-color: var(--light-gray);
}

.btn--arr-left {
  transform: scale(-1, 1);
}

.tel {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  color: var(--white);
  text-decoration: none;
}

.tel__svg {
  width: 24px;
  height: 24px;
}

.tel__text {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.35;
}

.header {
  position: relative;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  z-index: 4;
}

.header--scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background-color: var(--white);
}

.header__container {
  display: flex;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header__tel .tel__text {
  display: none;
}

.header__tel.tel,
.header__menu-tel.tel {
  color: var(--blue);
  transition: color 0.3s ease-in-out;
}
.header__tel.tel:hover, .header__tel.tel:focus,
.header__menu-tel.tel:hover,
.header__menu-tel.tel:focus {
  color: var(--orange);
}

.header__tel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-right: 16px;
}

.header__tel-wrapper.opened .header__tel-wrapper-inside {
  height: auto;
  max-height: 1000px;
}
.header__tel-wrapper.opened .header__tel-toggler {
  transform: rotate(180deg);
}

.header__tel-wrapper-tels {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 30px;
  padding-left: 30px;
}

.header__tel-wrapper-inside {
  position: absolute;
  top: 82px;
  right: 50%;
  height: 0;
  max-height: 0;
  background-color: var(--white);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.15);
  transform: translate(50%, 0);
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.header__tel-wrapper-inside .header__tel {
  margin-right: 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.34;
}
.header__tel-wrapper-inside .header__mail {
  padding-top: 24px;
  font-size: 1.125rem;
  line-height: 1.34;
  color: var(--dark-gray);
  text-decoration: none;
  border-top: 1px solid rgba(30, 38, 55, 0.2);
  transition: color 0.3s ease-in-out;
}
.header__tel-wrapper-inside .header__mail:hover, .header__tel-wrapper-inside .header__mail:focus {
  color: var(--blue);
}

.header__tel-toggler {
  transition: transform 0.3s ease-in-out;
}
.header__tel-toggler svg {
  fill: none;
  color: var(--blue);
}

.header__menu-mail {
  font-size: 1.125rem;
  line-height: 1.34;
  color: #1E2637;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.header__menu-mail:hover, .header__menu-mail:focus {
  color: var(--blue);
}

.header__btn {
  display: none;
}

.header__wrapper {
  position: absolute;
  top: 82px;
  right: 0;
  max-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 24px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
}

.header__menu--bottom {
  order: -1;
}

.header__toggler {
  gap: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375;
  color: var(--white);
  background-color: var(--orange);
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
  position: relative;
}
@media (min-width: 465px){
  .header__toggler{
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 14px;
    padding-right: 24px;
    gap: 23px;
  }
}
.header__toggler:hover, .header__toggler:focus {
  background-color: var(--orange2);
}

.header__toggler-close {
  display: none;
  flex-shrink: 0;
}

.header__back {
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  display: none;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(30, 38, 55, 0.2);
}
.header__back span {
  display: block;
  width: 16px;
  height: 16px;
  transform: scale(-1, 1);
}
.header__back span svg {
  fill: none;
}

.header.opened .header__toggler {
  background-color: var(--orange2);
}
.header.opened .header__toggler-close {
  display: block;
}
.header.opened .header__toggler-menu {
  display: none;
}
.header__toggler-menu{
  flex-shrink: 0;
}
.header.opened .header__wrapper {
  height: auto;
  transform: translateX(0);
  overflow-y: auto;
}

.sub-opened .header__back {
  display: flex;
}

.header__logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.header__tel-wrapper--menu .header__menu-tel:first-child{
  display: flex;
}

@media (max-width: 739px) {
  .header__tel-wrapper--menu {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    row-gap: 12px;
  }
  .header__tel-wrapper--menu .header__tel-toggler {
    display: none;
  }
  .header__tel-wrapper--menu .header__tel-wrapper-inside {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
  }
  .header__tel-wrapper--menu .header__tel-wrapper-inside {
    height: auto;
    max-height: unset;
    box-shadow: none;
  }
  .header__tel-wrapper--menu .header__tel-wrapper-tels {
    padding: 0;
    row-gap: 12px;
  }
}

.header__tel-wrapper--mobile{
  display: none;
}

@media (min-width: 465px){
  .header__tel-wrapper--mobile {
    display: flex;
  }
}

@media (min-width: 1000px) {
  .header__wrapper {
    display: flex;
    position: relative;
    align-items: center;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    padding: 0;
    transform: translateX(0);
    box-shadow: none;
    overflow: initial;
    overflow-y: initial;
  }

  .header__menu--bottom {
    display: none;
  }

  .header__tel {
    display: none;
  }

  .header__toggler {
    margin-right: 35px;
  }

  .header__tel-wrapper--mobile {
    display: none;
  }

  .header__tel-wrapper--menu {
    position: relative;
  }

  .header__tel-wrapper-inside {
    top: 43px;
    right: 0;
    width: 200px;
    transform: translate(0, 0);
  }
  .header__tel-wrapper-inside .tel__text {
    display: block;
    font-size: 1.125rem;
  }
  .header__tel-wrapper-inside .tel__svg {
    display: none;
  }

  .header__menu-mail {
    padding-top: 24px;
    border-top: 1px solid rgba(30, 38, 55, 0.2);
  }

  .header__menu--bottom {
    display: block;
    position: absolute;
    top: 70px;
    left: -248px;
    z-index: 2;
    max-height: calc(100vh - 85px);
    background-color: var(--white);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(-200%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
  }

  .opened .header__menu--bottom {
    transform: translateX(0);
    left: -248px;
  }

  .header.opened .header__wrapper {
    overflow-y: initial;
  }
}
@media (min-width: 1000px) {
  .header__wrapper {
    flex-grow: 1;
    justify-content: space-between;
  }

  .header__menu-tel .tel__text {
    display: block;
    font-size: 1.125rem;
    white-space: nowrap;
  }
}

@media (min-width: 1000px) {
  .header__logo {
    margin-right: 1%;
  }
}

@media (min-width: 1050px) {
  .header__logo {
    margin-right: 3%;
  }
}

@media (min-width: 1100px) {
  .header__logo {
    margin-right: 5%;
  }
}
@media (min-width: 1200px) {
  .header__tel-wrapper{
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .header__tel-wrapper--menu .header__menu-tel:first-child{
    display: none;
  }
}
@media (min-width: 1450px) {
  .header__btn {
    display: flex;
    white-space: nowrap;
  }
}
/*@media (min-width: 1270px) {*/
/*  .header__logo {*/
/*    margin-right: 70px;*/
/*  }*/
/*}*/
@media (min-width: 1472px) {
  .header__toggler {
    margin-right: 50px;
  }

  .header__menu--bottom {
    left: -500px;
  }

  .opened .header__menu--bottom {
    transform: translateX(0);
    left: -289px;
  }
}
.footer {
  margin-top: auto;
  color: var(--white);
  background-color: var(--dark-gray);
}

.footer__wrapper {
  padding-top: 34px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 24px;
}

.footer__logo {
  width: 95px;
  height: auto;
}

.footer__adress {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375;
}
.footer__adress svg {
  flex-shrink: 0;
}

.footer__wrapper--bottom {
  position: relative;
}
.footer__wrapper--bottom::before, .footer__wrapper--bottom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  display: block;
  width: calc(100% - 32px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.footer__wrapper--bottom .container {
  padding-top: 16px;
  padding-bottom: 24px;
}

.footer__security {
  font-size: 0.75rem;
  line-height: 1.34;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.footer__security:hover, .footer__security:focus {
  color: var(--orange);
}

.footer__logo img {
  width: 100%;
}

@media (min-width: 740px) {
  .footer__logo {
    width: 160px;
    height: auto;
  }

  .footer__adress {
    font-size: 1.125rem;
  }

  .footer__wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (min-width: 1000px) {
  .footer__wrapper {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 50px;
         column-gap: 50px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.menu {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu__link {
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.menu__link:hover, .menu__link:focus {
  color: var(--blue);
}

.menu__item--actions .menu__link {
  font-weight: 700;
  color: var(--orange);
}

.menu__item{
  border-bottom: 2px solid transparent;
  position: relative;
}

.menu__item:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: white;
  transition: left 0.3s ease-in-out, width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.menu__item:hover, .menu__item:focus{
  border-bottom: transparent;
}

.menu__item:hover:before, .menu__item:focus:before{
  width: 100%;
  left: 0;
  background-color: var(--blue);
}

.menu__item:hover{
  color: var(--blue);
  border-color: var(--blue);
}

@media (min-width: 1000px) {
  .menu {
    /*display: none;*/
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 1470px) {
  .menu {
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
}
@media (min-width: 1000px) {
  .menu {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }

  .menu__link {
    font-size: 1.125rem;
  }
}
.menu-service__list,
.menu-service__list-sub {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-service__link {
  font-size: 14px;
  line-height: 130%;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.menu-service__link:hover, .menu-service__link:focus {
  color: var(--blue);
}

.menu-service__list > .menu-service__item > .menu-service__link {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 16px;
  font-weight: 700;
}

.menu-service__list > .menu-service__item:last-child > .menu-service__link{
  padding-bottom: 0;
}

.menu-service__list-sub > .menu-service__item {
  border-bottom: 1px solid rgba(30, 38, 55, 0.2);
}
.menu-service__list-sub > .menu-service__item .menu-service__link {
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--dark-gray);
  transition: color 0.3s ease-in-out;
}
.menu-service__list-sub > .menu-service__item .menu-service__link:hover, .menu-service__list-sub > .menu-service__item .menu-service__link:focus {
  color: var(--blue);
}

.menu-service__sub {
  position: absolute;
  top: 25px;
  right: 0;
  display: block;
  width: 16px;
  height: 16px;
  color: var(--dark-gray);
}
.menu-service__sub svg {
  fill: none;
}

.sub-opened .menu-service > .menu-service__list > .menu-service__item > .menu-service__link {
  display: none;
}

.menu-service__list-sub {
  display: none;
}

.menu-service__list-sub.opened {
  display: grid;
}
@media (min-width: 1180px) {
  .menu-service {
    padding: 24px;
  }
}
@media (min-width: 740px) {
  .menu-service__sub {
    display: none;
  }

  .menu-service__list {
    /*display: grid;*/
    /*grid-template-columns: 1fr 1fr;*/
    /*-moz-column-gap: 16px;*/
    /*     column-gap: 16px;*/
    /*row-gap: 16px;*/
  }

  .menu-service__list-sub {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-service__list > .menu-service__item > .menu-service__link {
    padding-top: 0;
    padding-bottom: 12px;
  }

  .menu-service__list-sub > .menu-service__item:last-child {
    border-bottom: 0;
  }
}
.menu-service__svg {
  color: var(--orange);
}

@media (min-width: 1000px) {
  .menu-service__list {
    /*display: grid;*/
    /*grid-template-columns: 1fr 1fr 1fr;*/
  }
}

.socials {
  display: grid;
  grid-template-columns: repeat(auto-fill, 24px);
  gap: 24px;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--orange);
  transition: background-color 0.3s ease-in-out;
}
.social__link svg {
  width: 16px;
  height: 16px;
}
.social__link:hover, .social__link:focus {
  background-color: var(--orange2);
}

@media (min-width: 740px) {
  .socials {
    -moz-column-gap: 38px;
         column-gap: 38px;
    grid-template-columns: repeat(auto-fill, 36px);
  }

  .social__link {
    width: 36px;
    height: 36px;
    justify-self: flex-end;
  }
  .social__link svg {
    width: 24px;
    height: 24px;
  }
}
.props {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
  padding: 0;
  row-gap: 16px;
  list-style: none;
}
.props li {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
}

.props__prop-name {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.375;
  color: var(--gray);
}

.props__prop-prop {
  font-weight: 700;
  font-size: 1rem;
  line-height: 130%;
  color: var(--blue);
}

/**
 * Swiper 7.0.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 4, 2021
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.carousel {
  position: relative;
  box-sizing: border-box;
}

.carousel *, .carousel *:before, .carousel *:after {
  box-sizing: inherit;
}

.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: flex;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  -webkit-animation: fancybox-rotate 2s linear infinite;
          animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
          animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  -webkit-animation: 0.15s ease backwards fancybox-fadeIn;
          animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  -webkit-animation: 0.15s ease both fancybox-fadeOut;
          animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  -webkit-animation: 0.15s ease both fancybox-fadeIn;
          animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  -webkit-animation: 0.1s ease both fancybox-fadeOut;
          animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  -webkit-animation: 0.2s ease both fancybox-zoomInUp;
          animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  -webkit-animation: 0.15s ease both fancybox-zoomOutDown;
          animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  -webkit-animation: 0.15s ease both fancybox-throwOutUp;
          animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  -webkit-animation: 0.15s ease both fancybox-throwOutDown;
          animation: 0.15s ease both fancybox-throwOutDown;
}

@-webkit-keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__image {
  transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::-webkit-backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

.projects-block__wrapper {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-top);
}

.projects-block__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 25px;
}

@media (min-width: 740px) {
  .projects-block__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (min-width: 1000px) {
  .projects-block__list {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
.project-short {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background-color: var(--white);
}

.project-short__wrapper {
  display: flex;
}

.project-short__gallery {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.project-short__description {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  padding-left: var(--padding);
  padding-right: var(--padding);
  padding-bottom: 24px;
}

.project-short__name {
  z-index: 1;
  padding: 16px;
  margin: 0;
  margin-left: -16px;
  margin-right: -16px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375;
  color: var(--white);
  text-decoration: none;
  background-color: var(--blue);
}

.project-short__props {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
  padding: 0;
  row-gap: 16px;
  list-style: none;
}
.project-short__props li {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
}

.project-short__prop-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375;
  color: var(--blue);
}

.project-short__prop-prop {
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--gray);
}

.project-short__short {
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--gray);
}
.project-short__short p {
  margin: 0;
}

.project-short__img-wrap {
  flex-basis: 100%;
  flex-shrink: 0;
  position: relative;
  padding-top: 107.5%;
  overflow: hidden;
}
.project-short__img-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 101%;
  min-height: 101%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.project-short__pagination {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding-top: 22px;
  padding-bottom: 23px;
  padding-left: 19px;
  padding-right: 18px;
  font-size: 1rem;
  color: var(--gray);
  line-height: 120%;
  background-color: var(--white);
  bottom: unset;
  width: auto;
}

.project-short__right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 67px;
  height: 67px;
}

.project-short__left {
  position: absolute;
  right: 67px;
  bottom: 0;
  width: 67px;
  height: 67px;
}

@media (min-width: 500px) and (max-width: 739px) {
  .project-short {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-short__name {
    transform: translateX(-53px);
    width: calc(100% + 85px);
  }

  .project-short__description {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .project-short__wrapper {
    height: 100%;
  }

  .project-short__btn {
    justify-self: flex-start;
    margin-top: auto;
  }
}
@media (min-width: 740px) {
  .project-short__name {
    font-size: 1.125rem;
    line-height: 1.33;
  }
}
@media (min-width: 1000px) {
  .project-short {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-short__name {
    transform: translateX(-53px);
    width: calc(100% + 85px);
  }

  .project-short__description {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .project-short__wrapper {
    height: 100%;
  }

  .project-short__btn {
    justify-self: flex-start;
    margin-top: auto;
  }
}
.clients-block {
  padding-bottom: 50px;
}

.clients-block__list {
  overflow: hidden;
  margin-right: -16px;
  width: calc(100% + 16px);
}

.clients-block__wrapper {
  display: flex;
}

.clients-block__wrapper.swiper-wrapper{
  height: unset;
}

@media (min-width: 740px) {
  .clients-block {
    padding-bottom: 70px;
  }
}
.clients-block__item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 68px;
  padding: 10px;
  text-decoration: none;
}

@media (min-width: 740px) {
  .clients-block__item {
    width: 198px;
    height: 113px;
  }
}
.services-block__container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.services-block__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 24px;
  align-items: flex-start;
}

.services-item {
  position: relative;
}

.services-item__head {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  padding-left: 36px;
  padding-right: 16px;
  height: 96px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375;
  color: var(--dark-gray);
  background-color: var(--light-gray);
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.services-item__head img {
  max-height: 100%;
}
.services-item__head svg {
  color: var(--orange);
  transition: color 0.3s ease-in-out;
}

.services-item__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.services-item__list li {
  position: relative;
  display: flex;
  padding-left: 20px;
}
.services-item__list li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--orange);
}

.cut .services-item__head {
  position: relative;
  padding-top: 67%;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  display: block;
}
.cut .services-item__head img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.cut .services-item__head:hover .service-item__name, .cut .services-item__head:focus .service-item__name {
  /*top: 0;*/
  color: var(--orange);
}

.cut .service-item__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: calc(100% - 57px);
  padding: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.34;
  text-align: center;
  color: #636363;
  background-color: rgba(99, 99, 99, 0.4);
  transition: top 0.4s ease-in-out, color 0.4s ease-in-out;
}

.cut .services-item__wrapper {
  display: none;
}

.services-item__link {
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.services-item__link:hover, .services-item__link:focus {
  color: var(--blue);
}

.services-item {
  transition: box-shadow 0.3s ease-in-out;
}
.services-item:hover, .services-item:focus {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.services-item:hover .services-item__head, .services-item:focus .services-item__head {
  color: var(--white);
  background-color: var(--orange);
}
.services-item:hover svg, .services-item:focus svg {
  color: var(--white);
}

.services-item__wrapper {
  max-height: 0;
  padding: 0;
  z-index: 2;
  background-color: var(--white);
  overflow: hidden;
}

@media (min-width: 740px) {
  .services-item {
    max-height: unset;
  }

  .services-block__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 30px;
    grid-template-rows: auto;
    grid-auto-flow: dense;
  }

  .services-item__wrapper {
    max-height: unset;
  }

  .services-item__head {
    -moz-column-gap: 24px;
         column-gap: 24px;
    padding-left: 26px;
    padding-right: 24px;
    column-gap: 24px;
    height: 98px;
  }
  .services-block__head{
    margin-bottom: 50px;
  }
}
@media (min-width: 1000px) {
  .services-block__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cut  .service-item__name {
    padding: 14px;
    align-items: center;
  }
}
.part .services-item__more {
  display: none;
}
.part .services-item__wrapper {
  max-height: unset;
}
.part .services-item__list {
  padding-top: 24px;
  padding-left: 36px;
  padding-right: 36px;
  padding-bottom: 36px;
}
@media (min-width: 740px) {
  .part .services-item__more {
    display: block;
    padding-top: 24px;
    font-size: 0.875rem;
    line-height: 130%;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
    color: var(--gray);
  }
  .part .services-item__list {
    max-height: 230px;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  .part .services-item.opened .services-item__list {
    max-height: 1000px;
  }
}

.advantages-block__container {
  padding-bottom: 50px;
}

.advantages-block__main--en, .advantages-block__main--ru{
  padding-top: 50px;
}

.service_container{
  padding-bottom: 50px;
}

.advantages-block__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  counter-reset: div;
}

.advantages-block__item:before {
  content: "0" counter(div) ".";
  counter-increment: div;
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--gray);
}

@media (min-width: 500px) {
  .advantages-block__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 740px) {
  .advantages-block__list {
    gap: 30px;
  }
}
@media (min-width: 1000px) {
  .advantages-block__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.advantages-item {
  position: relative;
  padding: 30px;
  background-color: var(--white);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}

.advantages-item__svg {
  color: var(--blue);
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.advantages-item__name {
  margin: 0;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.36;
  color: var(--blue);
}

.advantages-item__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--gray);
}
.advantages-item__text p {
  margin: 0;
}

.about-block__container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-block__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 26px;
       column-gap: 26px;
  row-gap: 24px;
}

.about-block__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 36px;
  grid-column: span 2;
}
.about-block__content p {
  margin: 0;
}

.about-block__text {
  font-size: 1rem;
  line-height: 130%;
  color: var(--dark-gray);
}

.about-block__img {
  position: relative;
  padding-top: 125%;
  overflow: hidden;
}
.about-block__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}

@media (min-width: 740px) {
  .about-block__text {
    font-size: 1.125rem;
  }

  .about-block__content {
    row-gap: 50px;
  }
}
@media (min-width: 1000px) {
  .about-block__container {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .about-block__wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (min-width: 1472px) {
  .about-block__wrapper {
    position: relative;
  }

  .about-block__wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -50px;
    display: block;
    width: 100px;
    height: 168px;
    background-image: url("../img/circles2.png");
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(0, -50%);
  }
}
@media (min-width: 1560px) {
  .about-block__wrapper::after {
    left: -50px;
  }
}
.counters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 24px;
}

.counters__count {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: flex-start;
  align-content: flex-start;
  text-align: center;
}

.counters__num {
  margin: 0;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 130%;
  text-align: center;
  color: var(--orange);
}

.counters__remark {
  margin: 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 130%;
  text-align: center;
  color: var(--dark-gray);
}

@media (min-width: 740px) {
  .counters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: space-between;
  }
}
.hero-slide__name {
  margin-bottom: 24px;
}

.hero-slide__text {
  margin-bottom: 36px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 130%;
  color: var(--gray);
}

.hero-slide__btn {
  width: 100%;
}

.hero-slide__content {
  padding-bottom: 24px;
}

.hero-slide__img {
  position: relative;
  padding-top: 109%;
  width: 100%;
  max-width: 571px;
  overflow: hidden;
}
.hero-slide__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.hero-slider__readmore{
  display: inline;
  width: fit-content;
  margin: 20px auto 0 auto;
}
.hero-slide__btn {
  width: unset;
  display: unset;
}
.hero-slider__btn-wrapper{
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
}
@media (min-width: 740px) {
  .hero-slider__btn-wrapper{
    flex-direction: row;
    align-items: center;
  }
  .hero-slider__readmore{
    margin: 0 0 0 40px;
  }
}
@media (min-width: 550px) {
  .hero-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: var(--gap);
         column-gap: var(--gap);
  }

  .hero-slide__content {
    margin-bottom: 0;
  }

  .hero-slide__text {
    font-size: 1.125rem;
    margin-bottom: 50px;
  }
}
@media (min-width: 740px) {
  .hero-slide {
    grid-template-columns: 2fr 1fr;
  }
}
@media (min-width: 1200px) {
  .hero-slide {
    grid-template-columns: 1fr 571px;
  }

  .hero-slide__content {
    position: relative;
  }
  .hero-slide__content:before {
    content: "";
    position: absolute;
    bottom: 210px;
    right: -190px;
    z-index: -1;
    display: block;
    width: 431px;
    height: 256px;
    background-image: url("../img/circles.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .advantages-block__main--en{
    padding-top: 100px;
  }
  .advantages-block__main--ru{
    margin-top: 137px;
  }
}
.hero-slider {
  padding-top: 24px;
  --gap: 26px;
}

.hero-slider__slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

.hero-slider__wrapper {
  display: flex;
}

.hero-slider__slide {
  flex-basis: 100%;
  flex-shrink: 0;
}

.hero-slider__left {
  position: absolute;
  bottom: 0;
  left: 0;
}

.hero-slider__right {
  position: absolute;
  bottom: 0;
  left: 64px;
}

.hero-slider__pagination {
  --width: 100vw - 80px;
  position: absolute;
  right: 0;
  left: unset;
  z-index: 2;
  padding-top: 22px;
  padding-bottom: 23px;
  padding-right: 16px;
  padding-left: 19px;
  font-size: 1rem;
  line-height: 120%;
  color: var(--gray);
  background-color: var(--white);
  bottom: calc(var(--width) * 0.9);
  width: auto;
}

@media (min-width: 550px) {
  .hero-slider__pagination {
    bottom: auto;
    top: 0;
    z-index: 2;
  }

  .hero-slider__left {
    left: auto;
    right: calc(50% - var(--gap) / 2 - 64px);
  }

  .hero-slider__right {
    left: auto;
    right: calc(50% - var(--gap) / 2 - 128px);
  }
}
@media (min-width: 740px) {
  .hero-slider {
    padding-top: 50px;
  }

  .hero-slider__left {
    right: calc(33.3333333333% - var(--gap) / 3 - 64px);
  }

  .hero-slider__right {
    right: calc(33.3333333333% - var(--gap) / 3 - 128px);
  }
}
@media (min-width: 1200px) {
  .hero-slider {
    --gap: 50px;
    margin-bottom: -137px;
  }

  .hero-slider__left {
    right: 507px;
  }

  .hero-slider__right {
    right: 443px;
  }
}
@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeout {
  -webkit-animation: fadeout 0.4s ease-in-out;
          animation: fadeout 0.4s ease-in-out;
}

.fadein {
  -webkit-animation: fadein 0.4s ease-in-out;
          animation: fadein 0.4s ease-in-out;
}

.popup {
  position: fixed;
  top: -10000px;
  left: 50%;
  z-index: 1;
  width: calc(100% - 32px);
  max-width: 700px;
  transform: translate(-50%, -50%);
  background-color: var(--blue);
  background-image: url("../img/form-bg.png");
  background-position: center;
  background-size: cover;
}

[data-popup=callback] .popup {
  max-width: 404px;
}

.popup-overlay {
  position: fixed;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 12;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-overlay.opened {
  top: 0;
}

.popup.opened {
  top: 50%;
}

.popup__wrapper {
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 36px;
  padding-bottom: 36px;
  width: 100%;
  height: 100%;
}

.popup--success .popup__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  justify-items: center;
}

.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--white);
}
.popup__close svg {
  width: 14px;
  height: 14px;
}

.popup__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 20px;
  margin-bottom: 24px;
  color: var(--white);
}

.popup__name {
  margin: 0;
  padding-bottom: 24px;
  position: relative;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 120%;
  color: #434343;;
}
.popup__name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: var(--orange);
}

.popup__remark {
  margin: 0;
  font-size: 16px;
  line-height: 130%;
  color: #434343;;
}
.popup__remark p {
  margin: 0;
}
.popup__remark p + .popup__phones {
  padding-top: 12px;
}

.popup--success .popup__remark {
  text-align: center;
}

.popup__svg {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.popup__body {
  display: grid;
  grid-auto-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.popup__body .popup__name::after {
  left: 50%;
  transform: translateX(-50%);
}

.popup__message {
  margin: 0;
  padding-top: 20px;
  margin-bottom: 50px;
  color: var(--white);
  text-align: center;
}
.popup__message a {
  display: block;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease-in-out;
}
.popup__message a:hover, .popup__message a:focus {
  color: var(--orange);
}

@media (min-width: 740px) {
  .popup__wrapper {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .popup__name {
    font-size: 2.25rem;
    line-height: 120%;
  }

  .popup__head {
    margin-bottom: 24px;
  }

  .popup__remark {
    font-size: 1.125rem;
  }
}
.comment-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 24px;
}

.comment-form__label {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 8px;
}

.comment-form__label.mistake .comment-form__input {
  border-color: red;
}

.comment-form__name {
  order: -1;
  font-size: 0.75rem;
  line-height: 1;
  color: #636363;
}

.comment-form__input,
.comment-form__text {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1;
  color: black;
  border: 1px solid #1E2637;
  transition: border-color 0.3s ease-in-out;
}
.comment-form__input:hover, .comment-form__input:focus, .comment-form__input:focus-within,
.comment-form__text:hover,
.comment-form__text:focus,
.comment-form__text:focus-within {
  border-color: var(--dark-gray);
  outline: none;
}

.comment-form__text {
  background-color: transparent;
}

.comment-form__label--checkbox {
  grid-template-columns: 24px 1fr;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 0;
  padding-right: 0;
}
.comment-form__label--checkbox input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid var(--orange);
}
.comment-form__label--checkbox input:checked {
  border-color: var(--orange);
  background-image: url("../img/tick.svg");
  background-size: 14px 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.comment-form__label--checkbox span {
  font-size: 0.75rem;
  line-height: 1;
  color: #636363;
}
.comment-form__label--checkbox span a {
  color: var(--orange);
  transition: color 0.3s ease-in-out;
}
.comment-form__label--checkbox span a:hover, .comment-form__label--checkbox span a:focus {
  color: var(--orange2);
}

.comment-form__btn {
  padding-top: 14px;
  padding-bottom: 14px;
}

@media (min-width: 600px) {
  .comment-form--colls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 20px;
         column-gap: 20px;
  }

  .comment-form__label--text {
    grid-column: 2;
    grid-row-start: 1;
    grid-row-end: 4;
    grid-template-rows: auto 1fr;
  }
}
@media (min-width: 1000px) {
  .comment-form--colls {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.page-top {
  background-image: url(../img/bg-top.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-top__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: flex-start;
  row-gap: 24px;
  padding-top: 60px;
  padding-bottom: 50px;
}

.page-top__text {
  margin: 0;
  font-size: 1rem;
  line-height: 130%;
  color: var(--gray);
}

@media (min-width: 740px) {
  .page-top__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 20px;
         column-gap: 20px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .page-top__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .page-top__container {
    grid-template-columns: 615px 1fr;
  }
}
.top-full__container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 24px;
  padding-top: 60px;
  padding-bottom: var(--padding-top);
}

.top-full__left {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 24px;
}
.top-full__left button{
  width: fit-content;
}

.top-full__text {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 16px;
  margin: 0;
  font-size: 1rem;
  line-height: 130%;
  color: var(--gray);
}
.top-full__text p {
  margin: 0;
}
.top-full__text h2 {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.34;
  color: var(--dark-gray);
}
.top-full__text p + h2 {
  padding-top: 8px;
}
.top-full__text ul {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.top-full__text ul li {
  position: relative;
  padding-left: 20px;
}
.top-full__text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--orange);
}

.top-full__date {
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--gray);
}

.top-full__price {
  margin: 0;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375;
  color: var(--dark-gray);
}

.top-full__right {
  position: relative;
}
.top-full__right img {
  width: 100%;
  height: auto;
  max-height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-full__props {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-top: 16px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: var(--white);
}

.top-full__action .top-full__right::before {
  display: none;
}

.top-full__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 16px;
}

@media (min-width: 740px) {
  .top-full__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 24px;
         column-gap: 24px;
  }

  .top-full__props {
    bottom: auto;
    top: 372px;
  }

  .top-full__container {
    padding-top: 72px;
  }

  .top-full__text {
    font-size: 1.125rem;
  }

  .top-full__price {
    margin-bottom: 25px;
  }
}
@media (min-width: 1000px) {
  .top-full__container {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }

  .top-full__right {
    height: 100%;
  }
  .top-full__right img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 470px;
  }
  .top-full__right::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -320px;
    z-index: -1;
    display: block;
    width: 431px;
    height: 256px;
    background-image: url("../img/circles.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }

  .top-full--project .top-full__right::before {
    bottom: auto;
    top: 243px;
  }

  .top-full__text ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
  .top-full__action .top-full__right img {
    position: relative;
  }
}
@media (min-width: 1200px) {
  .top-full__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 571px);
  }
}
.bread {
  width: 100%;
  z-index: 2;
  position: relative;
}

.bread .container {
  position: relative;
}

.bread__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 45px;
  overflow-x: auto;
  width: 100%;
  padding-top: 24px;
  padding-left: var(--padding);
  padding-right: var(--padding);
}

.bread__list {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  width: calc(100% - 32px);
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin: 0;
  padding: 0;
}

.bread__item {
  position: relative;
}
.bread__item:not(:last-child):after {
  content: "/";
  position: absolute;
  top: 5px;
  right: -14px;
  font-size: 0.75rem;
  line-height: 1;
}

.bread__link {
  font-size: 0.75rem;
  line-height: 1;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: var(--gray);
  text-decoration: underline;
}

.bread__link--last {
  color: var(--dark-gray);
  text-decoration: none;
}

.services-list__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 24px;
  padding-top: 24px;
  padding-bottom: 50px;
}

.services-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  text-decoration: none;
  transition: box-shadow 0.3s ease-in-out;
}
.services-list__item:hover, .services-list__item:focus {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.services-list__item:hover .services-list__name, .services-list__item:focus .services-list__name {
  color: var(--white);
  background-color: var(--orange);
}

.services-list__img {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  width: 100%;
  aspect-ratio: 328/184;
  background-color: var(--white);
}

.services-list__name {
  padding: 24px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375;
  text-align: center;
  color: var(--dark-gray);
  background-color: var(--light-gray);
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

@media (min-width: 740px) {
  .services-list__container {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .services-list__img {
    aspect-ratio: 448/264;
  }

  .services-list__name {
    padding-top: 36px;
    padding-bottom: 37px;
    padding-left: 35px;
    padding-right: 35px;
    font-size: 1.125rem;
    line-height: 1.34;
  }
}
.service-text__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-top);
}

@media (min-width: 1472px) {
  .service-text__text {
    position: relative;
  }

  .service-text__text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -50px;
    display: block;
    width: 100px;
    height: 168px;
    background-image: url("../img/circles2.png");
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(0, -50%);
  }
}
@media (min-width: 1560px) {
  .service-text__text::after {
    left: -50px;
  }
}
.services__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-top);
}

.services__container--dark {
  padding-top: 36px;
  padding-bottom: 36px;
}

.services__item {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--dark-gray);
  text-decoration: none;
  background-color: var(--white);
  cursor: pointer;
  border: 1px solid var(--dark-gray);
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  white-space: nowrap;
}

.services__list-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  width: 100%;
  overflow-y: auto;
  border: 1px solid var(--dark-gray);
}
.services__list-btn svg {
  fill: none;
  transition: transform 0.3s ease-in-out;
}
.services__list-btn:hover, .services__list-btn:focus {
  color: var(--white);
  background-color: var(--dark-gray);
}

.services__list {
  position: relative;
  z-index: 2;
}

.services__list-btn.gray {
  border: 1px solid var(--light-gray);
}
.services__list-btn.gray:hover, .services__list-btn.gray:focus {
  color: var(--white);
  background-color: var(--orange);
}

.services__list-inside {
  padding-top: 12px;
  padding-bottom: 12px;
  max-height: 276px;
  display: flex;
  overflow-x: scroll;
  gap: 16px;
}

.services__list-wrapper {
  width: 100%;
  transition: max-height 0.3s ease-in-out;

  max-height: 66px;
  position: relative;
  top: auto;
  left: auto;
  overflow-y: hidden;
  overflow-x: auto;
}

.services__list.opened .services__list-btn svg {
  transform: rotate(180deg);
}

.services__list.opened .services__list-wrapper {
  max-height: 2000px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.services__cat,
.services__list-btn-text2 {
  display: none;
}

@media (min-width: 740px) {
  .services__list {
    display: flex;
    align-content: center;
    align-items: center;
  }

  .services__list.opened {
    align-items: flex-start;
  }

  .services__list.opened .services__list-wrapper {
    max-height: 2000px;
    box-shadow: none;
  }

  .services__list.opened .services__list-inside {
    flex-wrap: wrap;
    padding-bottom: 0;
    margin: 0;
  }

  .services__container--dark {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .services__list.opened .services__list-btn {
    position: absolute;
    bottom: -43px;
    right: 0;
    border-left: 0;
  }

  .services__list-btn {
    border: 0;
    order: 1;
    align-self: flex-start;
    -moz-column-gap: 8px;
         column-gap: 8px;
    flex-shrink: 0;
    width: auto;
    white-space: nowrap;
    border-left: 1px solid rgba(99, 99, 99, 0.5);
  }
  .services__list-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    transform: rotate(-90deg);
  }
  .services__list-btn:hover, .services__list-btn:focus {
    background-color: transparent;
    color: var(--blue);
  }

  .services__list-btn-text {
    display: none;
  }

  .services__list-btn-text2 {
    display: block;
  }

  .services__list-inside {
    max-height: unset;
    padding-top: 0;
    padding-bottom: 22px;
    margin-bottom: -22px;
    overflow-x: unset;
  }

  .services__item:last-child {
    border-bottom: 1px solid var(--dark-gray);
  }

  .services__item {
    padding: 15px;
  }

  .services__item.gray {
    background-color: var(--light-gray);
    border: 1px solid var(--light-gray);
  }
  .services__item.gray:hover, .services__item.gray:focus {
    color: var(--white);
    background-color: var(--orange);
  }

  .service__services .services__list-wrapper {
    max-height: unset;
  }

  .service__services .services__list-inside {
    flex-wrap: wrap;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .service__services .services__list-btn {
    display: none;
  }
}

.services__item:hover, .services__item:focus, .services__item--active {
  color: var(--white);
  background-color: var(--orange);
}

@media (min-width: 1000px) {
  .services__list-inside {
    gap: 24px;
  }

  .services__cat {
    display: block;
    padding-bottom: 10px;
    margin-right: 60px;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 120%;
    color: var(--gray-h2);
  }
}
.feedback__container {
  padding-top: 50px;
}

.prices {
  padding-top: 36px;
  padding-bottom: var(--padding-top);
}

.prices__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 36px;
}

.prices__search {
  justify-content: flex-end;
  display: flex;
}
.prices__search + .prices__list {
  padding-top: 36px;
}

@media (min-width: 740px) {
  .prices__list {
    row-gap: 50px;
  }
}
.prices-block {
  transition: box-shadow 0.3s ease-in-out;
}

.prices-block.opened {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.prices-block.opened .prices-block__arr {
  transform: rotate(180deg);
}
.prices-block.opened .prices-block__list {
  max-height: 3000px;
}

.prices-block__list {
  max-height: 0;
  overflow: hidden;
}

.prices-block__head {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.prices-block__name {
  font-weight: 700;
  margin-right: auto;
}

.prices-block__svg {
  color: var(--orange);
}

.prices-block__arr {
  fill: none;
  transition: transform 0.3s ease-in-out;
}

.prices-block__item {
  position: relative;
}
.prices-block__item:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 16px;
  width: calc(100% - 32px);
  height: 1px;
  background-color: rgba(30, 38, 55, 0.2);
}

@media (min-width: 740px) {
  .prices-block__head {
    padding: 24px;
  }

  .prices-block__item:not(:last-child):after {
    left: 24px;
    width: calc(100% - 48px);
  }
}
.prices-item {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
}

.prices-item__name {
  margin: 0;
  font-size: 1rem;
  line-height: 130%;
}

.prices-item__price {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375;
}

.prices-item__btn {
  width: 100%;
}

@media (min-width: 600px) {
  .prices-item {
    grid-template-columns: 1fr auto auto;
    -moz-column-gap: 24px;
         column-gap: 24px;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
  }

  .prices-item__price {
    text-align: right;
  }
}
@media (min-width: 740px) {
  .prices-item__price {
    font-size: 1.125rem;
    line-height: 1.34;
  }
}
@media (min-width: 1000px) {
  .prices-item {
    -moz-column-gap: 70px;
         column-gap: 70px;
  }
}
.feedback__container {
  padding-top: 50px;
}

.feedback__h2 {
  color: #434343;
}
.feedback__h2::after {
  background-color: var(--orange);
}

.feedback__wrapper {
  padding-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 50px;
  margin-left: -16px;
  margin-right: -16px;
  width: calc(100% + 32px);
  background-color: var(--blue);
  background-image: url(../img/form-bg.png);
  background-position: center;
  background-size: cover;
}

.feedback__text {
  margin: 0;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 130%;
  color: #636363;
}
.feedback__text p {
  margin: 0;
}

@media (min-width: 1000px) {
  .feedback__container {
    padding-bottom: 50px;
  }

  .feedback__wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 600px);
    -moz-column-gap: 50px;
         column-gap: 50px;
    padding: 50px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 1200px) {
  .feedback__wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 769px);
    -moz-column-gap: 50px;
         column-gap: 50px;
    padding: 50px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .feedback__wrapper .comment-form--colls {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }

  .feedback__text {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 86px;
  }
  .feedback__text::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100px;
    height: 60px;
    background-image: url("../img/circles3.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.projects-list__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 50px;
  padding-top: 36px;
  padding-bottom: var(--padding-top);
}

.projects-list__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 25px;
}

.projects-list__head {
  margin-bottom: 0;
}
.projects-list__head .h2::after {
  display: none;
}

@media (min-width: 740px) {
  .projects-list__head {
    margin-bottom: 12px;
  }
  .projects-list__head .h2 {
    font-size: 1.25rem;
  }

  .projects-list__wrapper {
    padding-top: 50px;
  }

  .projects-list__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 50px;
         column-gap: 50px;
    row-gap: 36px;
  }
}
.gallery__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 24px;
  padding-top: 36px;
}

.gallery__item {
  position: relative;
}
.gallery__item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 600px) {
  .gallery__container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
  }

  .gallery__item {
    flex-grow: 1;
    height: 340px;
    max-width: 50%;
  }
  .gallery__item img {
    height: 100%;
  }
}
@media (min-width: 740px) {
  .gallery__container {
    padding-top: 50px;
  }
}
.contacts__top {
  padding-top: 0px;
  margin-bottom: 30px;
}

.contacts__map {
  margin-left: -16px;
  margin-right: -16px;
  height: 440px;
  width: calc(100% + 32px);
}
.contacts__map .map-container {
  width: 100%;
  height: 100%;
}

.contacts__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 30px;
  margin: 0;
  margin-bottom: 50px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  list-style: none;
  border: 1px solid rgba(99, 99, 99, 0.2);
}
.contacts__list p {
  margin: 0;
}
.contacts__list .tel__svg {
  grid-row: span 2;
}

.contacts__list-name {
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--gray);
}

.contacts__list-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 8px;
  align-items: flex-start;
  margin: 0;
  color: var(--dark-gray);
  text-decoration: none;
}
.contacts__list-item svg {
  margin-top: 5px;
  color: var(--orange);
  grid-row: span 2;
}

.contacts__list-value {
  font-size: 1.125rem;
  line-height: 1.34;
  color: var(--dark-gray);
  transition: color 0.3s ease-in-out;
}

.contacts__img img {
  margin-left: -16px;
  margin-right: -16px;
  width: calc(100% + 32px);
  max-width: unset;
}

.contacts__tel,
.contacts__mail {
  transition: color 0.3s ease-in-out;
}
.contacts__tel:hover .contacts__list-value, .contacts__tel:focus .contacts__list-value,
.contacts__mail:hover .contacts__list-value,
.contacts__mail:focus .contacts__list-value {
  color: var(--blue);
}

@media (min-width: 740px) {

  .contacts__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    -moz-column-gap: 24px;
         column-gap: 24px;
    padding-bottom: 50px;
  }

  .contacts__map {
    margin-left: 0;
    margin-right: 0;
    height: auto;
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .contacts__container {
    grid-template-columns: 495px 1fr;
    -moz-column-gap: 60px;
         column-gap: 60px;
    padding-bottom: 50px;
  }

  .contacts__list {
    margin-bottom: 0;
    padding-left: 42px;
    padding-right: 42px;
    padding-bottom: 36px;
  }

  .contacts__img {
    padding-bottom: 6px;
  }
  .contacts__img img {
    margin-left: -42px;
    margin-right: -42px;
    width: calc(100% + 84px);
    max-width: unset;
  }

  .contacts__list-item {
    grid-template-columns: 36px 1fr;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.page404__wrapper {
  background-image: url("../img/bg3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page404__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  justify-items: center;
  padding-top: 60px;
  padding-bottom: var(--padding-top);
}

.page404__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  justify-items: center;
  max-width: 390px;
}

.page404__h1 {
  margin: 0;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 5rem;
  line-height: 120%;
  text-align: center;
  color: var(--orange);
}

.page404__remark {
  margin: 0;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.37;
  text-align: center;
  color: var(--dark-gray);
}

.page404__text {
  margin: 0;
  margin-bottom: 36px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.04em;
  color: var(--gray);
}

.page404__btn {
  justify-self: center;
}

@media (min-width: 740px) {
  .page404__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    padding-top: 72px;
    padding-bottom: 54px;
  }

  .page404__h1 {
    font-size: 7.5rem;
    line-height: 1;
  }

  .page404__remark {
    font-size: 1.5rem;
    line-height: 1.34;
  }

  .page404__text {
    font-size: 1rem;
  }

  .page404__img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page404__img img {
    max-width: 653px;
  }
}
.search {
  display: flex;
}

.search__container {
  position: relative;
  display: flex;
  flex-basis: 100%;
}

.search__label {
  flex-basis: 100%;
  position: relative;
  background: var(--light-gray);
  border: 1px solid var(--gray);
}

.search__input {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 16px;
  padding-right: 40px;
  font-size: 0.875rem;
}

.search__btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 740px) {
  .search__container {
    max-width: 280px;
  }
}
.pager__list {
  display: flex;
  justify-content: center;
}

.pager__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--dark-gray);
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  box-sizing: border-box;
  border: 1px solid transparent;
}
.pager__item:hover, .pager__item:focus {
  color: var(--orange);
}

.pager__item--active {
  color: var(--orange);
  border-color: var(--orange);
}

.pager__item--first,
.pager__item--prev,
.pager__item--next,
.pager__item--last {
  display: none;
}

.page-top--about {
  position: relative;
  overflow: hidden;
}
.page-top--about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
}
.page-top--about img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.page-top--about .page-top__container {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  z-index: 1;
  justify-content: flex-start;
}
.page-top--about .page-top__inside {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 24px;
  max-width: 700px;
  justify-content: flex-start;
}
.page-top--about .page-top__text {
  max-width: 560px;
}

.about-page__counters {
  padding-top: 24px;
}
.about-page__counters .counters {
  gap: 24px;
}
.about-page__counters .counters__count {
  padding-top: 24px;
  padding-bottom: 36px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.15);
}

.about-page__btn {
  justify-self: flex-start;
  align-self: flex-end;
}

@media (min-width: 1000px) {
  .about-page__counters {
    position: relative;
    padding-top: 0;
    z-index: 1;
  }

  .about-page__about .about-block__container {
    padding-top: 160px;
  }

  .about-page__counters .container {
    position: relative;
  }

  .about-page__counters .counters {
    position: absolute;
    top: 0;
    -moz-column-gap: 50px;
         column-gap: 50px;
    left: var(--padding);
    transform: translateY(-50%);
    width: calc(100% - 32px);
  }

  .page-top--about .page-top__container {
    padding-bottom: 260px;
  }
}
@media (min-width: 1200px) {
  .about-page__counters .counters__num {
    font-weight: 700;
    font-size: 4.375rem;
    line-height: 130%;
  }

  .about-page__counters .counters__remark {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 130%;
  }
}
.serts .container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.serts__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 25px;
}

.serts__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  justify-items: center;
  align-content: flex-start;
  padding: 24px;
  row-gap: 20px;
  font-size: 0.875rem;
  line-height: 130%;
  text-align: center;
  color: var(--gray);
  text-decoration: none;
  border: 1px solid rgba(99, 99, 99, 0.2);
}
.serts__item img {
  width: 198px;
}

@media (min-width: 740px) {
  .serts__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1000px) {
  .serts__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    -moz-column-gap: 50px;
         column-gap: 50px;
  }

  .serts .container {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (min-width: 1200px) {
  .serts__list {
    -moz-column-gap: 76px;
         column-gap: 76px;
  }
}
.testimonial {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 12px;
  padding: 24px;
  border: 1px solid rgba(99, 99, 99, 0.2);
}
.testimonial p {
  margin: 0;
}

.testimonial__head {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}

.testimonial__place {
  margin: 0;
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--gray);
}

.testimonial__name {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.34rem;
  color: var(--dark-gray);
}

.testimonial__text {
  font-size: 1.125rem;
  line-height: 130%;
  color: var(--gray);
}
.testimonial__text p {
  margin: 0;
}

.testimonial__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 8px;
}

@media (min-width: 740px) {
  .testimonial__intro {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
  }

  .testimonial__place {
    grid-row: 1;
    grid-column: 1;
  }

  .testimonial__name {
    grid-row: 2;
    grid-column: 1;
  }

  .test__stars {
    grid-row: span 2;
    grid-column: 2;
  }
}
@media (min-width: 1000px) {
  .testimonial {
    padding: 50px;
    row-gap: 24px;
  }

  .testimonial__head {
    -moz-column-gap: 36px;
         column-gap: 36px;
  }
}
.testimonials__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 30px;
  padding-bottom: 50px;
}

.qa__item:not(:first-child) {
  margin-top: -1px;
}

.qa__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 24px;
  font-size: 1.125rem;
  line-height: 1.34;
  color: var(--dark-gray);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 38, 55, 0.2);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.qa__arr {
  path-fill: var(--gray);
  path-transition: fill 0.3s ease-in-out;
}
.qa__arr svg {
  fill: none;
}

.qa__text {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.qa__text p {
  margin: 0;
}

.qa__text-inside {
  padding: 24px;
  border: 1px solid rgba(99, 99, 99, 0.2);
}

.qa__item.opened .qa__row {
  color: var(--white);
  background-color: var(--blue);
}
.qa__item.opened .qa__arr {
  transform: rotate(180deg);
  path-fill: var(--white);
}
.qa__item.opened .qa__text {
  max-height: 2000px;
  overflow-y: auto;
}

.qa .container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.page-top__sales {
  background-image: none;
}

.sales__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 36px;
  -moz-column-gap: 33px;
       column-gap: 33px;
}

@media (min-width: 740px) {
  .sales__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.sales-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: flex-start;
  row-gap: 24px;
  padding: 24px;
  text-decoration: none;
  color: var(--gray);
  border: 1px solid rgba(99, 99, 99, 0.2);
  transition: box-shadow 0.3s ease-in-out;
}
.sales-item p {
  margin: 0;
}
.sales-item:hover, .sales-item:focus {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.sales-item:hover img, .sales-item:focus img {
  transform: scale(1.1);
}
.sales-item:hover .sales-item__name, .sales-item:focus .sales-item__name {
  color: var(--orange);
}

.sales-item__content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.sales-item__img {
  overflow: hidden;
}

.sales-item__img img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.sales-item__date {
  margin: 0;
  font-size: 0.875;
  line-height: 130%;
  color: var(--gray);
}

.sales-item__name {
  margin: 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.34;
  color: var(--dark-gray);
  transition: color 0.3s ease-in-out;
}

.sales-item__text {
  margin: 0;
  font-size: 0.875;
  line-height: 130%;
  color: var(--gray);
}

.sales-item__sale {
  margin-top: auto;
  margin-right: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 12px;
  padding-left: 12px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375;
  color: var(--white);
  background-color: var(--orange);
}

@media (min-width: 500px) and (max-width: 739px) {
  .sales-item {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (min-width: 1000px) {
  .sales-item {
    grid-template-columns: 260px minmax(0, 1fr);
    -moz-column-gap: 36px;
         column-gap: 36px;
    padding: 36px;
  }
}
.rating {
  display: grid;
  grid-template-columns: repeat(5, 20px);
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.rating__star {
  width: 20px;
  height: 20px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/htdocs/img/star2.svg");
}

.rating__star.checked {
  background-image: url("/htdocs/img/star.svg");
}

.rating__star.disabled {
  cursor: auto;
}

@media (min-width: 740px) {
  .rating {
    grid-template-columns: repeat(5, 30px);
    -moz-column-gap: 12px;
         column-gap: 12px;
  }

  .rating__star {
    width: 30px;
    height: 30px;
  }
}
.text {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--dark-gray);
}
.text a {
  color: var(--dark-gray);
  transition: color 0.3s ease-in-out;
}
.text a:hover, .text a:focus {
  color: var(--green);
}
.text div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 16px;
}
.text p {
  margin: 0;
}
.text ul,
.text ol {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 16px;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 130%;
  list-style: none;
}
.text ul li {
  position: relative;
  padding-left: 20px;
}
.text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--orange);
}
.text ol {
  counter-reset: li;
}
.text ol li {
  position: relative;
  margin: 0;
  padding: 0;
}
.text ol li:before {
  content: counter(li) ".";
  counter-increment: li;
  padding-right: 0.875rem;
  font-size: 130%;
  font-weight: 700;
  color: var(--orange);
}
.text h3 {
  margin: 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.34;
}
.text h4 {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.34;
}
.text p + h3,
.text ul + p,
.text ol + p {
  padding-top: 8px;
}

.text--colls {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 24px;
}

@media (min-width: 740px) {
  .text p {
    font-size: 1rem;
  }
  .text h3 {
    font-size: 1.25rem;
  }
  .text ul li, .text ol li {
    font-size: 0.875rem;
  }

  .text--colls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (min-width: 1000px) {
  .text--colls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
/*# sourceMappingURL=style.css.map */




.button-img{
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
}

.percent::after{
  content: "%";
}

:root {
  --light-blue:#D8E8F4;
}

.advantages-item--blue {
  color: var(--white);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--orange);
}
.advantages-item--blue .advantages-item__svg {
  display: none;
}
.advantages-item--blue .advantages-item__text {
  font-size: 1.25rem;
  color: var(--white);
}
.advantages-item--blue .advantages-item__name {
  padding-top: 19px;
  margin-bottom: 0;
  font-size: 1.5rem;
  color: var(--white);
}

.advantages-block__item.advantages-item--blue::before {
  display: none;
}

@media (min-width: 1000px) {
  .advantages-block--directions .advantages-block__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .top-full--reversed .top-full__right::before {
    transform: rotate(90deg) translateY(45%);
    left: 0;
    bottom: 60%;
    width: 556px;
    height: 364px;
    background-size: contain;
  }
}
.we-work .container {
  grid-template-columns: minmax(0, 1fr);
  -moz-column-gap: 24px;
  column-gap: 24px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.we-work__blocks {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 32px;
  align-content: flex-start;
}

.h3 {
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--gray);
}

.methods {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 30px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  counter-reset: div;
}

.methods__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 13px;
  padding-left: 65px;
}

.methods__item::after {
  content: "0" counter(div) ".";
  counter-increment: div;
  position: absolute;
  top: 0;
  left: 8px;
  z-index: 1;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--light-blue);
}

.methods__item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -4.5px;
  width: 76px;
  height: 76px;
  background-image: url("/htdocs/img/romb.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.methods__item-ico {
  width: 64px;
  height: 64px;
  display: block;
}

.methods__item-text {
  margin: 0;
  max-width: 280px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.33;
  color: var(--gray);
}

.conditions {
  padding: 35px 42px 42px 42px;
  background: var(--white);
  background-position: center;
  background-size: cover;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.list-ticked {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 36px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.33;
  color: var(--gray);
  list-style: none;
}
.list-ticked li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 12px;
}
.list-ticked li::before {
  content: "";
  position: relative;
  display: block;
  left: 8px;
  top: -8px;
  z-index: 1;
  width: 32px;
  height: 24.5px;
  background-image: url("/htdocs/img/tick-list.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.list-ticked li::after {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  width: 33px;
  height: 33px;
  background-image: url("/htdocs/img/romb.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 600px) {
  .methods {
    grid-template-rows: 1fr 1fr 1fr;
    grid-auto-flow: column;
    align-items: flex-start;
    align-content: flex-start;
  }
}
@media (min-width: 900px) {
  .we-work__blocks {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    -moz-column-gap: 90px;
    column-gap: 90px;
    justify-content: space-between;
  }

  .we-work__right {
    max-width: 446px;
  }
}
@media (min-width: 1200px) {
  .methods {
    -moz-column-gap: 90px;
    column-gap: 90px;
  }

  .we-work__blocks {
    grid-template-columns: minmax(0, 1fr) 446px;
    -moz-column-gap: 160px;
    column-gap: 160px;
    justify-content: space-between;
  }
}

@media (min-width: 1000px) {
  .btn-hide {
    display: none;
  }
}

#popup_success .popup__message{
  color: black;
}

.header_en{
  font-family: 'Clear Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: right;

  color: #434343;
  border-bottom: 2px solid #434343;
}

.services-item--no-shadow:hover, .services-item--no-shadow:focus{
  box-shadow: none;
}

.services-item--no-shadow:hover .services-item__head, .services-item--no-shadow:focus .services-item__head {
  color: unset;
  background-color: unset;
}

.cut .services-item--no-shadow .services-item__head:hover .service-item__name, .cut .services-item--no-shadow .services-item__head:focus .service-item__name {
  color: #636363;
}

.services-item--no-shadow a{
  cursor: unset !important;
}
/*# sourceMappingURL=diateh.css.map */