font-face {
  font-family: "Roboto";
  src:
    url("/assets/fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf")
      format("truetype-variations"),
    url("/assets/fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf")
      format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
font-face {
  font-family: "Roboto";
  src:
    url("/assets/fonts/Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf")
      format("truetype-variations"),
    url("/assets/fonts/Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf")
      format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --font-default: "Outfit", sans-serif;
  --font-heading: "Outfit", sans-serif;
  --font-secondary: "Roboto", sans-serif;
  --black: #000000;
  --dark: #0e2769;
  --dark-secondary: #1e3373;
  --dark-thirdly: #022a4d;
  --dark-fourthly: #12395c;
  --overlay-color: rgba(30, 51, 115, 0.3);
  --white: #ffffff;
  --color-primary: #001134;
  --color-secondary: #ff571d;
  --color-style-two: #b700c4;
  --color-style-three: #ff9b0d;
  --color-heading-dark: #0e0e0e;
  --color-heading-light: #ffffff;
  --color-paragraph: #0e0e0e;
  --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
  --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
  --bg-gray: #eff6fe;
  --bg-shade: #0011340a;
  --iti-border-color: #ccc;
  --bg-gradient: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  --bg-gradient-secondary: linear-gradient(
    0deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  --bg-gradient-two: linear-gradient(
    90deg,
    var(--color-style-two) 0%,
    var(--color-style-three) 100%
  );
  --bs-light-rgb: 248, 249, 50;
  --text-light: #ffffff;
  --text-default: #0e0e0e;
  --icon-color: #98bcdc;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  min-height: 100%;
  overflow-x: hidden;
  min-width: 360px;
}

body {
  min-width: 290px;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
table,
th,
td,
tr,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

ul,
li {
  list-style: none;
}

.wrapper {
  height: 100%;
}

section[id] {
  scroll-margin-top: 80px;
}

img {
  border: none;
  outline: none;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

label {
  display: inline-block;
  font-weight: normal;
  max-width: 100%;
}

a {
  outline: none;
  text-decoration: none;
  /* color: var(--color-heading); */
}

a img {
  border: none;
}

a:active {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
  opacity: 1;
}

a:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a:hover {
  outline: none;
  text-decoration: none;
  opacity: 1;
}

.color-style-two a:hover {
  color: var(--color-style-three);
}

button {
  outline: medium none;
}

iframe {
  border: none;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eeeeee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.42857143;
}

input {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

input:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

select:focus {
  outline: none;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--color-paragraph);
}

body.no-scroll {
  overflow: hidden !important;
}

.h2,
.h3,
.h4 {
  color: var(--color-heading);
  font-weight: normal;
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: 0;
  font-weight: 600;
}

section {
  display: flex;
  flex-direction: column;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  overflow: visible;
}

.btn-primary {
  display: block;
  color: var(--white);
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 30px;
  min-width: max-content;
  border-radius: 10px;
  border: none;
  letter-spacing: 1px;
  background: var(--color-secondary);
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-secondary {
  display: block;
  position: relative;
  color: var(--color-secondary);
  margin-top: 3px;
  height: max-content;
  letter-spacing: 1px;
}

.btn-secondary {
  position: relative;
  color: var(--color-secondary);
  margin-top: 3px;
  font-size: 18px;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: var(--color-secondary);
  transition: all 0.3s ease-in-out;
}

.btn-secondary:hover::before {
  transform: translateX(-50%) scale(1.05);
}

.preheading {
  position: relative;
  display: block;
  color: var(--color-secondary);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 80px;
  white-space: nowrap;
}

.preheading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-secondary);
}

.heading {
  color: var(--color-primary);
  font-size: 3.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.description {
  color: var(--text-default);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
  display: block;
  line-height: 1.3;
}

.sticky {
  position: fixed;
  top: 0px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 8px 25px 0px;
  animation: 0.4s ease 0s 1 normal forwards running navbarFadeIn;
}

.contact-widget {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
}

.contact-widget__icon {
  width: 30px;
  aspect-ratio: 1/1;

  background-color: var(--white);

  mask-size: 60%;

  -webkit-mask-size: contain;
  mask-size: contain;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  mask-position: center;
}

.contact-widget__link,
.contact-widget__link:visited {
  color: var(--text-default);
  font-size: 1.125rem;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.contact-widget__link:hover {
  color: var(--color-secondary);
}

/* PARTNERS BLOCK */
.partners {
  background-color: var(--bg-shade);
}
.partners.partners_background {
  background-color: var(--color-primary);
}

.partners__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 3% 4%;
}
.partners__logo {
  max-width: 10%;
}
.partners__img {
  object-fit: contain;
}

@media screen and (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
  .heading {
    font-size: 3rem;
  }
}

@media screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  .preheading {
    font-size: 20px;
  }
  .heading {
    font-size: 2.75rem;
  }
  .description {
    font-size: 17px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  .heading {
    font-size: 2.25rem;
  }
  .partners__logo {
    max-width: 12%;
  }
}

@media screen and (max-width: 767px) {
  .partners__container {
    justify-content: center;
    max-width: 540px;
  }
}

@media screen and (max-width: 579px) {
  .partners__logo {
    max-width: 20%;
  }
  .partners {
    padding: 5% 7%;
  }
}

/* START IMAGE-BLOCK STYLES */
.image-block_background {
  background-color: var(--bg-shade);
}

.image-block__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
  margin-top: 80px;
  margin-bottom: 80px;
}
.image-block__container.image-block_reversed {
  flex-direction: row-reverse;
}
.image-block__container.image-block_reversed .image-block__content {
  padding-left: 2rem;
}

.image-block__content {
  width: 50%;
  position: relative;
  overflow: visible;
}

.image-block__image {
  width: 100%;
  max-width: 43%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 17px 48px 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 17px 48px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 17px 48px 10px rgba(0, 0, 0, 0.15);
}

.image-block__badge {
  position: absolute;
  display: flex;
  align-items: center;
  column-gap: 20px;
  bottom: 30px;
  left: 0;
  background: var(--color-secondary);
  padding: 10px 27px;
  border-radius: 15px;
  color: var(--white);
  font-family: var(--font-secondary);
}

.image-block__badge-text-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}
.image-block__badge-digit {
  display: block;
  font-size: 3rem;
  font-weight: 100;
}
.image-block__badge-text {
  display: block;
  font-weight: 400;
}
.image-block__badge-text:first-of-type {
  font-weight: 200;
}
.image-block__badge-text:nth-of-type(2) {
  font-size: 1.25rem;
}

.image-block__content {
  padding-left: 80px;
}

.image-block__preheading,
.benefits__preheading {
  position: relative;
  display: block;
  color: var(--color-secondary);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 80px;
  white-space: nowrap;
}

.image-block__preheading::before,
.benefits__preheading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-secondary);
}

.image-block__heading {
  color: var(--color-primary);
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.image-block__description > *,
.square-image-block__description > * {
  color: var(--text-default);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 10px;
  display: block;
}

.image-block__description ul li,
.square-image-block__description ul li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 10px;
}
.image-block__description ul li::before,
.square-image-block__description ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 2px;
  background-color: var(--color-secondary);
}

.image-block__btns-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 60px;
}

.image-block__btn-secondary {
  color: var(--color-primary);
}

.image-block__btn-secondary::before {
  background-color: var(--color-primary);
}

.image-block__btn-secondary::after {
  content: "\2192";
  color: var(--color-primary);
}

@media screen and (max-width: 1399px) {
  .image-block__content {
    padding-left: 40px;
  }
  .image-block__heading {
    font-size: 2.75rem;
  }
}

@media screen and (max-width: 1199px) {
  .image-block__preheading {
    font-size: 1.25rem;
  }
  .image-block__heading {
    font-size: 2.5rem;
  }
  .image-block__description {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 991px) {
  .image-block__preheading {
    display: flow-root;
  }
  .image-block__heading {
    font-size: 2.15rem;
  }
  .image-block__btns-wrapper {
    margin-top: 1, 875rem;
    row-gap: 1, 875rem;
  }
  .image-block__btn-primary {
    padding: 12px 25px;
  }

  .image-block__container {
    display: flow-root;
  }
  .image-block__image {
    float: left;
    max-width: 50%;
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .image-block__badge-digit {
    font-size: 2rem;
  }
  .image-block__badge-text {
    font-size: 1rem;
  }
  .image-block__badge {
    column-gap: 10px;
  }
  .image-block__content {
    display: block;
    clear: none;
    width: auto;
  }
  .image-block__container.image-block_reversed .image-block__content {
    padding-left: 0;
  }

  .image-block__description ul li {
    display: flow-root;
  }
}

@media screen and (max-width: 767px) {
  .image-block__container {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 50px;
  }
  .image-block__images,
  .image-block__content {
    width: 100%;
  }
  .image-block__content {
    padding: 0;
    width: 90%;
  }
  .image-block__image {
    max-width: 80%;
    left: 0;
    margin: 0;
  }
  .image-block__container.image-block_reversed {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 479px) {
  .image-block__heading {
    font-size: 2rem;
  }
  .image-block__image {
    max-width: 97%;
    left: 0;
  }
  .image-block__description > * {
    font-size: 1rem;
  }
}
/* END IMAGE-BLOCK STYLES */

/* START PAGE TITLE BLOCK */
.page-title {
  width: 100%;
  height: 200px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-title__breadcrumbs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.page-title__breadcrumb {
  color: var(--text-light);
  transition: all 0.3s ease-in-out;
  font-size: 1.2rem;
}
.page-title__breadcrumb:hover {
  color: var(--color-secondary);
}

.page-title__breadcrumb:first-of-type::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;

  /* Цвет иконки — теперь вы можете менять его через этот параметр */
  background-color: var(--color-secondary);

  /* Путь к иконке дома (SVG) */
  -webkit-mask-image: url("/assets/icons/home.svg");
  mask-image: url("/assets/icons/home.svg");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.page-title__breadcrumb:not(:last-of-type):after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  vertical-align: middle;

  /* Цвет иконки — теперь вы можете менять его через этот параметр */
  background-color: var(--text-light);

  /* Путь к иконке дома (SVG) */
  -webkit-mask-image: url("/assets/icons/arrow-right.svg");
  mask-image: url("/assets/icons/arrow-right.svg");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-size: contain;
}

@media screen and (max-width: 1399px) {
  .page-title {
    height: 170px;
  }
}
@media screen and (max-width: 1199px) {
  .page-title {
    height: 150px;
  }
}
@media screen and (max-width: 991px) {
  .page-title {
    height: 130px;
  }
  .page-title__breadcrumb {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .page-title {
    height: 120px;
  }
}

/* END PAGE TITLE BLOCK */

/* START BENEFITS BLOCK */
.benefits.benefits_background {
  background-color: var(--bg-shade);
}

.benefits__preheading {
  position: relative;
  display: block;
  color: var(--color-secondary);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 80px;
  white-space: nowrap;
}

.benefits__preheading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-secondary);
}

.benefits__heading {
  color: var(--color-primary);
  font-size: 3.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.benefits__description {
  color: var(--text-default);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 10px;
  display: block;
}

.benefits__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.benefits__cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 40px;
  width: 90%;
  margin-top: 40px;
}

.benefits__card {
  display: flex;
  flex-direction: row;
  align-items: start;
  column-gap: 7%;

  background-color: var(--dark-thirdly);

  padding: 5% 8%;
}

.benefits__card-icon-wrapper {
  position: relative;
  width: 80px;

  background-color: var(--dark-fourthly);
  padding: 4%;
  flex-shrink: 0;
}

.benefits__card-text-wrapper {
  margin-top: 10px;
}

.benefits__card-title {
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 15px;
}

.benefits__card-description {
  color: var(--text-light);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.4rem;
}

@media screen and (max-width: 1199px) {
  .benefits__preheading {
    font-size: 1.25rem;
  }
  .benefits__heading {
    font-size: 3.25rem;
  }
  .benefits__description {
    font-size: 1.125rem;
  }
  .benefits__cards-wrapper {
    width: 98%;
  }
  .benefits__card-icon-wrapper {
    width: 70px;
    padding: 4%;
  }
}

@media screen and (max-width: 991px) {
  .benefits__heading {
    font-size: 2.75rem;
  }
  .benefits__cards-wrapper {
    width: 100%;
  }
  .benefits__card-icon-wrapper {
    width: 80px;
    padding: 5%;
  }
}

@media screen and (max-width: 767px) {
  .benefits__cards-wrapper {
    grid-template-columns: 1fr;
    width: 90%;
    row-gap: 20px;
  }
  .benefits__card {
    padding: 4% 5%;
  }
  .benefits__card-icon-wrapper {
    padding: 3%;
  }

  .benefits__preheading {
    position: relative;
    display: block;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-left: 80px;
    white-space: normal;
  }

  .benefits__preheading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25%;
    width: 60px;
    height: 2px;
    background: var(--color-secondary);
  }
}

@media screen and (max-width: 479px) {
  .benefits__card-icon-wrapper {
    padding: 5%;
  }
}

/* END BENEFITS BLOCK */

/* START - DIGITS CARDS */
.digit-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;

  column-gap: clamp(20px, 2vw, 50px);
  row-gap: 1.5rem;
}
.digit-cards__card {
  width: max-content;
}
.digit-card__number,
.digit-card__text1,
.digit-card__text2 {
  display: block;
  text-align: center;
}
.digit-card__number {
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 3rem;
  color: var(--color-primary);
}
.digit-card__text1 {
  position: relative;
  margin-top: 0.75rem;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--color-primary);
  padding-top: 1rem;
}
.digit-card__text1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2px;
  background-color: var(--color-secondary);
}
.digit-card__text2 {
  margin-top: 0.75rem;
  font-family: "Roboto";
  font-weight: 300;
}
/* END - DIGITS CARDS */

/* START SQUARE-IMAGE-BLOCK STYLES */
.square-image-block_background {
  background-color: var(--color-primary);
}

.square-image-block__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}
.square-image-block__container.square-image-block_reversed {
  flex-direction: row-reverse;
}
.square-image-block__container.square-image-block_reversed
  .square-image-block__content {
  padding-left: 7%;
}

.square-image-block__content {
  width: 50%;
  position: relative;
  overflow: visible;
  padding-left: max(60px, 6%);
  padding-top: 5%;
  padding-bottom: 5%;
}

.square-image-block__content > * {
  width: 80%;
}

.square-image-block__image {
  width: 50%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 10/8;
  box-shadow: 0 17px 48px 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 17px 48px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 17px 48px 10px rgba(0, 0, 0, 0.15);
}

.square-image-block__preheading {
  position: relative;
  display: block;
  color: var(--color-secondary);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 80px;
  white-space: nowrap;
}

.square-image-block__preheading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-secondary);
}

.square-image-block__heading {
  color: var(--color-heading-light);
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.square-image-block__description {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
}

.square-image-block__description > * {
  color: var(--text-light);
}

.square-image-block__btns-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 60px;
}

.square-image-block__btn-secondary {
  color: var(--color-primary);
}

.square-image-block__btn-secondary::before {
  background-color: var(--color-primary);
}

.square-image-block__btn-secondary::after {
  content: "\2192";
  color: var(--color-primary);
}

@media screen and (max-width: 1199px) {
  .square-image-block__heading {
    font-size: 3rem;
  }
}

@media screen and (max-width: 1199px) {
  .square-image-block__image {
    aspect-ratio: unset;
  }
  .square-image-block__preheading {
    font-size: 1.25rem;
  }
  .square-image-block__heading {
    font-size: 2.5rem;
  }
  .square-image-block__description {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 991px) {
  .square-image-block__preheading {
    white-space: normal;
  }
  .square-image-block__preheading::before {
    top: 0.6rem;
    transform: translateY(0);
  }
  .square-image-block__heading {
    font-size: 2.15rem;
  }
  .square-image-block__btns-wrapper {
    margin-top: 1, 875rem;
    row-gap: 1, 875rem;
  }
  .square-image-block__btn-primary {
    padding: 12px 25px;
  }
  .square-image-block__description > * {
    font-size: 1rem;
  }
  .square-image-block__container {
    row-gap: 10px;
  }
  .square-image-block__badge-digit {
    font-size: 2rem;
  }
  .square-image-block__badge-text {
    font-size: 0.8rem;
  }
  .square-image-block__badge {
    column-gap: 10px;
  }
  .square-image-block__container.square-image-block_reversed
    .square-image-block__content {
    padding-left: 7%;
    padding-top: 3%;
    padding-bottom: 3%;
  }
  .square-image-block__content > * {
    width: unset;
  }
}

@media screen and (max-width: 767px) {
  .square-image-block__container {
    flex-direction: column-reverse;
    row-gap: 50px;
    padding-top: 4rem;
  }
  .square-image-block__heading {
    font-size: 2rem;
    text-align: center;
  }
  .square-image-block__content {
    align-self: center;
    width: 80%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .square-image-block__description {
    width: 100%;
  }
  .square-image-block__container.square-image-block_reversed {
    flex-direction: column-reverse;
  }
  .square-image-block__image {
    width: 100%;
    aspect-ratio: 10/6;
  }
}

/* END square-image-BLOCK STYLES */

/* START FAQ STYLES */
.faq_background {
  background-color: var(--bg-shade);
}

.faq__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
  margin-top: 80px;
  margin-bottom: 80px;
}
.faq__container.faq_reversed {
  flex-direction: row-reverse;
}
.faq__container.faq_reversed .faq__content {
  padding-left: 2rem;
}

.faq__items,
.faq__content {
  width: 50%;
}

.faq__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.faq__item {
  background-color: #f2f2f2;
  border-radius: 15px;
  cursor: pointer;
}

.faq__item-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 22px 27px;
}

.faq__item,
.faq__item-question {
  -webkit-user-select: none;
  user-select: none;

  -webkit-tap-highlight-color: transparent;
}

.item-open,
.item-close {
  font-size: 1.5rem;
  font-weight: 300;
}

.item-close {
  display: none;
}

.faq__item.active .item-open {
  display: none;
}

.faq__item.active .item-close {
  display: inline;
}

.faq__content {
  width: 50%;
  position: relative;
  overflow: visible;
  padding-left: 80px;
}

.item-text {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease,
    opacity 0.3s ease;
  padding-left: 27px;
  padding-right: 27px;
  padding-bottom: 0;
  margin: 0;
  opacity: 0;
}

.faq__item.active .item-text {
  max-height: 500px;
  padding-bottom: 25px;
  opacity: 1;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease,
    opacity 0.3s ease;
}

.faq__preheading {
  position: relative;
  display: block;
  color: var(--color-secondary);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 80px;
  white-space: nowrap;
}

.faq__preheading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-secondary);
}

.faq__heading {
  color: var(--color-primary);
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.faq__description {
  color: var(--text-default);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
}

.faq__btns-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 60px;
}

.faq__btn-secondary {
  color: var(--color-primary);
}

.faq__btn-secondary::before {
  background-color: var(--color-primary);
}

.faq__btn-secondary::after {
  content: "\2192";
  color: var(--color-primary);
}

@media screen and (max-width: 1199px) {
  .faq__container {
    flex-direction: column-reverse;
    row-gap: 40px;
  }
  .faq__items,
  .faq__content {
    width: 80%;
  }
  .faq__preheading {
    font-size: 1.25rem;
  }
  .faq__heading {
    font-size: 3.25rem;
  }
  .faq__description {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 1199px) {
  .faq__heading {
    font-size: 2.5rem;
    text-align: center;
  }
  .faq__content {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 991px) {
  .faq__heading {
    font-size: 2.15rem;
  }
  .faq__btns-wrapper {
    margin-top: 1, 875rem;
    row-gap: 1, 875rem;
  }
  .faq__btn-primary {
    padding: 12px 25px;
  }
  .faq__container {
    row-gap: 10px;
  }
  .faq__container.faq_reversed .faq__content {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .faq__container {
    flex-direction: column-reverse;
    row-gap: 10px;
  }
  .faq__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
  }
  .faq__items {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .faq__heading {
    font-size: 2rem;
  }
}
/* END FAQ STYLES */

/* START CONTACTS BLOCK STYLES */
.contacts-block__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.contacts-block__widget-icon {
  background-color: var(--color-secondary);
}
.contacts-block__widget {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-top: 40px;
  padding-left: 20px;
}
.contacts__map {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.contacts-block__content {
  padding-top: 15%;
  padding-bottom: 15%;
}

@media screen and (max-width: 991px) {
  .contacts-block__container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 10px;
  }
  .contacts-block__content {
    padding-top: 5%;
    padding-bottom: 5%;
    place-self: center;
  }
  .contacts-block__widget {
    padding-top: 30px;
    padding-left: 0;
  }
}
/* END CONTACTS BLOCK STYLES */
