@charset "UTF-8";
/* Base */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}
html.body-overflow {
  overflow-y: hidden !important;
}

body {
  background-color: #E8E9E3;
  color: #202020;
  font-family: "Raleway", sans-serif;
}

.pageCaption {
  padding-top: 100px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .pageCaption {
    margin-bottom: 80px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 568px) {
  .pageCaption {
    margin-bottom: 50px;
    padding-top: 50px;
  }
}
.pageCaption__container {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .pageCaption__container {
    flex-direction: column;
  }
}
.pageCaption__title {
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .pageCaption__title {
    width: 100%;
  }
}
.pageCaption__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 20px;
}
@media screen and (max-width: 1200px) {
  .pageCaption__info {
    width: 100%;
    padding-top: 0;
  }
  .pageCaption__info p {
    max-width: 820px;
  }
}
.pageCaption__tab {
  margin-top: 80px;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1300px) {
  .pageCaption__tab {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .pageCaption__tab {
    overflow-y: scroll;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 568px) {
  .pageCaption__tab {
    gap: 20px;
  }
}
.pageCaption__tab .tab-item {
  padding: 16px 32px;
  min-width: 175px;
  height: 56px;
  border-radius: 30px;
  border: 1px solid #202020;
  color: #202020;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .pageCaption__tab .tab-item {
    min-width: max-content;
  }
}
@media screen and (max-width: 568px) {
  .pageCaption__tab .tab-item {
    padding: 16px 20px;
    min-width: max-content;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.pageCaption__tab .tab-item.tab-itemGray {
  background-color: transparent;
}
.pageCaption__tab .tab-item.tab-itemGray.active {
  background-color: #9FACC4;
}
.pageCaption__tab .tab-item.tab-itemGray:hover {
  background-color: #9FACC4;
}
.pageCaption__tab .tab-item.tab-itemYellow {
  background-color: transparent;
}
.pageCaption__tab .tab-item.tab-itemYellow.active {
  background-color: #DCBB7E;
}
.pageCaption__tab .tab-item.tab-itemYellow:hover {
  background-color: #DCBB7E;
}
.pageCaption__tab .tab-item.tab-itemRed {
  background-color: transparent;
}
.pageCaption__tab .tab-item.tab-itemRed.active {
  background-color: #C49FA2;
}
.pageCaption__tab .tab-item.tab-itemRed:hover {
  background-color: #C49FA2;
}
.pageCaption.pageCaptionSecondary .pageCaption__title {
  width: 100%;
}
.pageCaption.pageCaptionCenter .pageCaption__title {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .pageCaption.pageCaptionCenter {
    margin-bottom: 50px;
  }
}
.pageCaption.pageCaptionSingle .pageCaption__title {
  width: 100%;
}
.pageCaption.pageCaptionSingle .pageCaption__container {
  flex-direction: column;
}
.pageCaption.pageCaptionSingle .pageCaption__description {
  max-width: 750px;
}
.pageCaption.pageCaptionSingle .pageCaption__content {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .pageCaption.pageCaptionSingle .pageCaption__content {
    flex-direction: column;
    gap: 10px;
  }
}
.pageCaption.pageCaptionSingle .pageCaption__label {
  display: inline-flex;
  padding: 16px 32px;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  height: 56px;
  border-radius: 30px;
  border: 1px solid #202020;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #202020;
  align-self: flex-start;
  position: relative;
  top: -20px;
}
@media screen and (max-width: 1024px) {
  .pageCaption.pageCaptionSingle .pageCaption__label {
    top: 0;
  }
}
@media screen and (max-width: 568px) {
  .pageCaption.pageCaptionSingle .pageCaption__label {
    padding: 16px 20px;
    min-width: max-content;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.pageCaption.pageCaptionSingle .pageCaption__label.labelGray {
  background-color: #9FACC4;
}
.pageCaption.pageCaptionSingle .pageCaption__label.labelYellow {
  background-color: #DCBB7E;
}
.pageCaption.pageCaptionSingle .pageCaption__label.labelRed {
  background-color: #C49FA2;
}
.pageCaption.pageCaptionSingle .pageCaption__date {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  color: #202020;
}
.pageCaption.pageContact {
  margin-bottom: 80px;
}
@media screen and (max-width: 568px) {
  .pageCaption.pageContact {
    margin-bottom: 50px;
  }
}
.pageCaption.pageContact .pageCaption__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pageCaption.pageContact .pageCaption__subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  color: #202020;
}

.sectionCaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sectionCaption .btnSmall {
    display: none;
  }
}

.rowPrimary .sectionCaption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.rowPrimary .sectionCaption__description {
  max-width: 560px;
}

p {
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
@media screen and (max-width: 1024px) {
  p {
    line-height: 26px;
  }
}
p img {
  margin-top: 10px;
  margin-bottom: 20px;
}

ul {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul:last-child {
  margin-bottom: 0;
}
ul li {
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  position: relative;
  padding-left: 15px;
}
ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #202020;
  position: absolute;
  left: 0;
  top: 11px;
}

.h1Big {
  color: #0046AE;
  font-family: "Raleway", sans-serif;
  font-size: 96px;
  font-style: normal;
  font-weight: 800;
  line-height: 112px;
}
@media screen and (max-width: 1200px) {
  .h1Big {
    font-size: 72px;
    line-height: 86px;
  }
}
@media screen and (max-width: 868px) {
  .h1Big {
    font-size: 56px;
    line-height: 72px;
  }
}
@media screen and (max-width: 568px) {
  .h1Big {
    font-size: 48px;
    line-height: 56px;
  }
}
@media screen and (max-width: 414px) {
  .h1Big {
    font-size: 42px;
    line-height: 56px;
  }
}

.h1 {
  font-family: "Raleway", sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 800;
  line-height: 88px;
}
@media screen and (max-width: 1024px) {
  .h1 {
    font-size: 56px;
    line-height: 72px;
  }
}
@media screen and (max-width: 568px) {
  .h1 {
    font-size: 48px;
    line-height: 56px;
  }
}
@media screen and (max-width: 414px) {
  .h1 {
    font-size: 36px;
    line-height: 42px;
  }
}

.h2Small {
  font-family: "Raleway", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 52px;
  color: #202020;
}
@media screen and (max-width: 568px) {
  .h2Small {
    font-size: 32px;
    line-height: 42px;
  }
}

.h2middle {
  font-family: "Raleway", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 800;
  line-height: 72px;
  color: #202020;
}
@media screen and (max-width: 568px) {
  .h2middle {
    font-size: 32px;
    line-height: 42px;
  }
}

.h2 {
  font-family: "Raleway", sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 800;
  line-height: 88px;
  color: #202020;
}
@media screen and (max-width: 868px) {
  .h2 {
    font-size: 56px;
    line-height: 72px;
  }
}
@media screen and (max-width: 568px) {
  .h2 {
    font-size: 32px;
    line-height: 42px;
  }
}

.none {
  display: none !important;
}

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

.no-scroll {
  overflow-y: hidden;
}

.container {
  max-width: 1300px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 568px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.rowPrimary {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1300px) {
  .rowPrimary {
    flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 568px) {
  .rowPrimary {
    gap: 30px;
  }
}
.rowPrimary .col50 {
  width: 50%;
}
@media screen and (max-width: 1300px) {
  .rowPrimary .col50 {
    width: 100%;
  }
}

@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url(../fonts/Raleway-Regular.woff) format("woff"), url(../fonts/Raleway-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url(../fonts/Raleway-Medium.woff) format("woff"), url(../fonts/Raleway-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url(../fonts/Raleway-SemiBold.woff) format("woff"), url(../fonts/Raleway-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url(../fonts/Raleway-Bold.woff) format("woff"), url(../fonts/Raleway-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url(../fonts/Raleway-ExtraBold.woff) format("woff"), url(../fonts/Raleway-ExtraBold.woff2) format("woff2");
  font-weight: 800;
  font-style: normal;
}
/* Blocks */
.accordion__item {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #D8D9CE;
  cursor: pointer;
}
@media screen and (max-width: 475px) {
  .accordion__item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.accordion__item:first-child {
  padding-top: 0;
}
.accordion__item:last-child {
  border: none;
  padding-bottom: 0;
}
.accordion__item.active .accordion-btn {
  transform: rotate(-180deg);
}
.accordion__content {
  margin-top: 20px;
}
.accordion-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
}
.accordion-header:hover .accordion-caption {
  color: #0046AE;
}
.accordion-caption {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  color: #202020;
  transition: all 0.3s;
}
@media screen and (max-width: 475px) {
  .accordion-caption {
    font-size: 20px;
    line-height: 28px;
  }
}
.accordion-btn {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0046AE;
  transition: all 0.3s;
}

.btnPrimary {
  height: 64px;
  min-width: 252px;
  padding: 16px 16px 16px 32px;
  gap: 24px;
  background: #0046AE;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  display: flex;
  align-items: center;
  border-radius: 50px;
}
@media screen and (max-width: 568px) {
  .btnPrimary {
    height: 56px;
    width: auto;
    min-width: auto;
    font-size: 16px;
    gap: 16px;
  }
}
@media screen and (max-width: 475px) {
  .btnPrimary {
    padding: 16px 16px 16px 20px;
  }
}
.btnPrimary:hover .ellipse {
  background-color: #202020;
}
.btnPrimary:hover .ellipse .icon svg path {
  fill: #fff !important;
}
.btnPrimary .ellipse {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 568px) {
  .btnPrimary .ellipse {
    width: 42px;
    height: 42px;
  }
  .btnPrimary .ellipse .icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-items: center;
  }
}

.btnSecondary {
  height: 64px;
  min-width: 204px;
  display: flex;
  padding: 16px 32px;
  align-items: center;
  gap: 24px;
  border: 1px solid #202020;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  border-radius: 50px;
  color: #202020;
  align-self: flex-start;
}
.btnSecondary .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 568px) {
  .btnSecondary {
    height: 56px;
    width: auto;
    min-width: auto;
    font-size: 16px;
    gap: 16px;
  }
}
@media screen and (max-width: 475px) {
  .btnSecondary {
    padding: 16px 20px;
  }
}
.btnSecondary:hover {
  background-color: #0046AE;
  color: #fff;
  transition: all 0.3s;
}
.btnSecondary:hover .icon svg path {
  fill: #fff !important;
}

.btnSmall {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 32px;
  min-width: 142px;
  height: 56px;
  border: 1px solid #202020;
  border-radius: 30px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #202020;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 568px) {
  .btnSmall {
    width: auto;
    min-width: auto;
    font-size: 16px;
    gap: 16px;
  }
}
@media screen and (max-width: 475px) {
  .btnSmall {
    padding: 16px 20px;
  }
}
.btnSmall:hover {
  background-color: #0046AE;
  color: #fff;
}
.btnSmall:hover .icon svg path {
  fill: #fff !important;
}
.btnSmall .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btnSmall .icon .icon svg path {
  fill: #202020 !important;
}
.btnSmall.btnWhite {
  color: #fff;
  border: 1px solid #fff;
}
.btnSmall.btnWhite .icon svg path {
  fill: white;
}

.btnBoxMobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .btnBoxMobile {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
}

.checkbox {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  display: block;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  -mz-user-select: none;
  -ms-user-select: none;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-weight: 600;
  max-width: 1080px;
  display: block;
}

.checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  pointer: cursor;
  opacity: 0;
}

.checkbox-link {
  color: #EFCB5E;
  transition: all 0.3s;
}

.checkbox-txt {
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  color: #fff;
}

.checkbox-checkmark {
  height: 24px;
  width: 24px;
  background: #EDEDEE;
  position: absolute;
  border: 1px solid #EDEDEE;
  top: 3px;
  left: 0;
  border-radius: 6px;
}

.checkbox input:checked ~ .checkbox-checkmark {
  background: transparent;
}

.checkbox-checkmark:after {
  content: "";
  display: none;
  position: absolute;
}

.checkbox input:checked ~ .checkbox-checkmark:after {
  display: block;
}

.checkbox-checkmark:after {
  height: 11px;
  width: 6px;
  border: solid #fff;
  position: absolute;
  border-width: 0 2px 2px 0;
  top: 4px;
  left: 8px;
  cursor: pointer;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.footer {
  background-color: #202020;
  margin-top: 180px;
  border-radius: 20px 20px 0px 0px;
}
@media screen and (max-width: 568px) {
  .footer {
    margin-top: 100px;
  }
}
.footer .lenta {
  background-image: url(../images/lenta.svg);
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 130px;
  display: block;
  position: relative;
  top: -57px;
}
@media screen and (max-width: 991px) {
  .footer .lenta {
    height: 100px;
  }
}
@media screen and (max-width: 568px) {
  .footer .lenta {
    height: 80px;
    top: -40px;
  }
}
.footer__container {
  padding-top: 50px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 568px) {
  .footer__container {
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 50px;
  }
}
.footer .footerHeader__nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer .footerHeader__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }
}
.footer .footerHeader__nav .logo-footer {
  width: 165px;
  height: auto;
  margin-right: 80px;
}
.footer .footerHeader__nav .logo-footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer .footerHeader__social {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer .footerHeader__social {
    gap: 20px;
  }
}
@media screen and (max-width: 670px) {
  .footer .footerHeader__social {
    flex-wrap: wrap;
  }
}
.footer .footerHeader__social-nav {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  padding: 16px 32px;
  border: 1px solid #fff;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.3s;
}
@media screen and (max-width: 670px) {
  .footer .footerHeader__social-nav {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 475px) {
  .footer .footerHeader__social-nav {
    width: 100%;
  }
}
.footer .footerHeader__social-nav:hover {
  background-color: #0046AE;
}
.footer .footerBottom__nav {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .footer .footerBottom__nav {
    flex-direction: column;
    gap: 50px;
  }
}
.footer .footerBottom__col70 {
  width: 70%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .footer .footerBottom__col70 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer .footerBottom__col70 {
    flex-direction: column;
    gap: 50px;
  }
}
.footer .footerBottom__col30 {
  width: 30%;
}
.footer .footerBottom__col30 .footerBottom__col {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .footer .footerBottom__col30 {
    width: 80%;
  }
}
@media screen and (max-width: 475px) {
  .footer .footerBottom__col30 {
    width: 100%;
  }
}
.footer .footerBottom__col {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer .footerBottom__col {
    width: 100%;
  }
}
.footer .footerBottom__col:nth-child(2) .footerBottom__list {
  flex-direction: column;
  padding-left: 30px;
  row-gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer .footerBottom__col:nth-child(2) .footerBottom__list {
    padding-left: 0;
  }
}
.footer .footerBottom__col:nth-child(2) .footerBottom__caption {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .footer .footerBottom__col:nth-child(2) .footerBottom__caption {
    padding-left: 0;
  }
}
.footer .footerBottom__caption {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  color: #fff;
  margin-bottom: 30px;
}
.footer .footerBottom__list {
  display: flex;
  column-gap: 50px;
}
@media screen and (max-width: 475px) {
  .footer .footerBottom__list {
    flex-direction: column;
    gap: 20px;
  }
}
.footer .footerBottom__list-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footerBottom__list-item {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  color: #fff;
  transition: all 0.3s;
}
.footer .footerBottom__list-item:hover {
  opacity: 0.5;
}
.footer .footerBottom__form {
  width: 100%;
  display: flex;
}
.footer .footerBottom__form .form-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 64px;
  width: 100%;
}
.footer .footerBottom__form .form-item .form-title {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
}
.footer .footerBottom__form .form-item .form-input {
  padding: 0px 24px;
  padding-bottom: 2px;
  border-bottom: 1px solid #454545;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
}
.footer .footerBottom__form .form-item .form-input::placeholder {
  color: #454545;
}
.footer .footerBottom__form .form-arrow {
  position: relative;
  top: 15px;
  left: -15px;
  width: 16px;
  height: 16px;
}

.header {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
.header.show {
  z-index: 999;
}
@media screen and (max-width: 568px) {
  .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.header .logo {
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .header .logo {
    margin-right: auto;
    margin-left: 30px;
    position: relative;
    top: -5px;
  }
}
@media screen and (max-width: 475px) {
  .header .logo {
    margin-left: 15px;
  }
}
@media screen and (max-width: 340px) {
  .header .logo {
    height: 30px !important;
  }
}
.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .header__nav {
    flex-wrap: wrap;
  }
}
.header__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1200px) {
  .header__list {
    order: 3;
    width: 100%;
    padding-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header__list {
    display: none;
  }
}
.header__item-href {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #202020;
  transition: all 0.3s;
  display: flex;
}
.header__item-href:hover {
  color: #0046AE;
}
.header__item {
  position: relative;
}
.header__item-dropdown {
  position: relative;
  padding-right: 16px;
  transition: all 0.5s;
}
.header__item-dropdown:hover .header__item-list {
  opacity: 1;
  z-index: 1;
  top: 25px;
}
.header__item-dropdown:hover::after {
  transform: rotate(-180deg);
}
.header__item-dropdown::after {
  content: "";
  position: absolute;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><g clip-path="url(%23clip0_16_2672)"><path d="M12.1965 6.47003L11.2565 5.53003L8.19653 8.58336L5.13653 5.53003L4.19653 6.47003L8.19653 10.47L12.1965 6.47003Z" fill="%23202020" style="fill:%23202020;fill:color(display-p3 0.1255 0.1255 0.1255);fill-opacity:1;"/></g></svg>');
  width: 16px;
  height: 16px;
  right: -4px;
  top: 4px;
  transition: all 0.3s;
}
.header__item-list {
  position: absolute;
  border-radius: 15px;
  border: 1px solid #202020;
  padding: 10px 20px;
  background-color: #E8E9E3;
  width: max-content;
  min-width: 100px;
  left: -20px;
  opacity: 0;
  flex-direction: column;
  gap: 5px;
  transition: all 0.5s;
  z-index: -1;
  display: flex;
  top: 30px;
}
.header__feedback {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 475px) {
  .header__feedback {
    gap: 10px;
  }
}
.header .lang {
  position: relative;
}
.header .lang:hover .lang-visible::after {
  transform: rotate(-180deg);
}
.header .lang:hover .lang-overflow {
  opacity: 1;
  z-index: 1;
  top: 25px;
}
.header .lang .lang-visible {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #202020;
  transition: all 0.3s;
  display: flex;
  cursor: pointer;
  position: relative;
  padding-right: 16px;
}
@media screen and (max-width: 375px) {
  .header .lang .lang-visible {
    font-size: 14px;
  }
}
.header .lang .lang-visible:hover {
  color: #0046AE;
}
.header .lang .lang-visible::after {
  content: "";
  position: absolute;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><g clip-path="url(%23clip0_16_2672)"><path d="M12.1965 6.47003L11.2565 5.53003L8.19653 8.58336L5.13653 5.53003L4.19653 6.47003L8.19653 10.47L12.1965 6.47003Z" fill="%23202020" style="fill:%23202020;fill:color(display-p3 0.1255 0.1255 0.1255);fill-opacity:1;"/></g></svg>');
  width: 16px;
  height: 16px;
  right: -4px;
  top: 4px;
  transition: all 0.3s;
}
.header .lang .lang-overflow {
  position: absolute;
  border-radius: 15px;
  border: 1px solid #202020;
  padding: 10px 20px;
  background-color: #E8E9E3;
  min-width: 50px;
  left: -20px;
  opacity: 0;
  flex-direction: column;
  gap: 5px;
  transition: all 0.5s;
  z-index: -1;
  display: flex;
  top: 30px;
}
.header .lang .lang-overflow__item {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #202020;
  transition: all 0.3s;
}
.header .lang .lang-overflow__item:hover {
  color: #0046AE;
}
.header .lang .lang-overflow__item.active {
  opacity: 0.5;
}
.header .lang .lang-overflow__item.active:hover {
  color: #202020;
}
.header__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  min-width: 142px;
  height: 40px;
  border: 1px solid #202020;
  border-radius: 30px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #202020;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 475px) {
  .header__btn {
    min-width: auto;
    padding: 8px 12px;
    font-size: 14px;
  }
}
.header__btn:hover {
  background-color: #0046AE;
  color: #fff;
  border: 1px solid #0046AE;
}
.header__btn:hover .icon svg path {
  fill: #fff !important;
}
.header__btn .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 475px) {
  .header__btn .icon {
    display: none;
  }
}
.header__btn .icon svg path {
  transition: all 0.3s;
}
.header__burger {
  height: 50px;
  width: 26px;
  display: none;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__burger {
    display: flex;
  }
}
.header__burger .burger {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 2px;
  background: #202020;
  margin: auto;
  transition: all 0.5s ease;
}
.header__burger .burger::before, .header__burger .burger::after {
  position: absolute;
  background: #202020;
  top: 0;
  left: 0px;
  content: "";
  height: 2px;
  width: 100%;
  transition: all 0.3s ease;
}
.header__burger .burger:hover .header__burger .burger::after {
  position: absolute;
  background: #202020;
  top: 0;
  left: 4px;
  content: "";
  height: 2px;
  width: 100%;
  transition: all 0.3s ease;
}
.header__burger .burger::before {
  top: -6px;
  transition: all 0.3s ease;
}
.header__burger .burger::after {
  top: 6px;
  transition: all 0.3s ease;
}
.header__burger .burger.active {
  background: transparent;
  transition: all 0.1s ease;
}
.header__burger .burger.active::before {
  top: 0;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  background: #202020;
}
.header__burger .burger.active::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  background: #202020;
}
@media screen and (max-width: 1024px) {
  .header__list {
    height: 100vh;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100px;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: #E8E9E3;
    padding-left: 30px;
    padding-right: 30px;
    gap: 0;
  }
}
@media screen and (max-width: 1024px) and (max-width: 568px) {
  .header__list {
    padding-left: 15px;
    padding-right: 15px;
    top: 65px;
  }
}
@media screen and (max-width: 1024px) {
  .header__list.active {
    display: flex;
  }
  .header__list .header__item {
    height: auto;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #D8D9CE;
    width: 100%;
  }
  .header__list .header__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
  }
  .header__list .header__item .header__item-href {
    font-size: 20px;
  }
  .header__list .header__item .header__item-list {
    opacity: 1;
    z-index: 1;
    position: relative;
    top: 0px;
    left: 0;
    border: 0;
    padding: 0;
    background: transparent;
    min-width: auto;
    gap: 5;
    margin-top: 10px;
  }
  .header__list .header__item .header__item-list .header__item-href {
    font-size: 16px;
  }
  .header__list .header__item-dropdown::after {
    display: none;
    padding-left: 0;
  }
}

.headerWhite {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
.headerWhite .logo {
  height: 40px;
}
.headerWhite .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.headerWhite .header__item-href {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  transition: all 0.3s;
}
.headerWhite .header__item-href:hover {
  color: #888888;
}
.headerWhite .header__item-dropdown {
  position: relative;
  padding-right: 16px;
  transition: all 0.5s;
}
.headerWhite .header__item-dropdown:hover .header__item-list {
  opacity: 1;
  z-index: 1;
  top: 25px;
}
.headerWhite .header__item-dropdown:hover::after {
  transform: rotate(-180deg);
}
.headerWhite .header__item-dropdown::after {
  content: "";
  position: absolute;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><g clip-path="url(%23clip0_19_3439)"><path d="M12.1966 6.47003L11.2566 5.53003L8.19656 8.58336L5.13656 5.53003L4.19656 6.47003L8.19656 10.47L12.1966 6.47003Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/></g></svg>');
  width: 16px;
  height: 16px;
  right: -4px;
  top: 4px;
  transition: all 0.3s;
}
.headerWhite .header__item-list {
  position: absolute;
  border-radius: 15px;
  border: 1px solid #202020;
  padding: 10px 20px;
  background-color: #E8E9E3;
  min-width: 100px;
  left: -20px;
  opacity: 0;
  flex-direction: column;
  gap: 5px;
  transition: all 0.5s;
  z-index: -1;
  display: flex;
  top: 30px;
}
.headerWhite .header__item-list .header__item-href {
  color: #202020;
}
@media screen and (max-width: 1024px) {
  .headerWhite .header__item-list .header__item-href {
    color: #fff;
  }
}
.headerWhite .header__item-list .header__item-href:hover {
  color: #0046AE;
}
.headerWhite .header__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  min-width: 142px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 30px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 475px) {
  .headerWhite .header__btn {
    min-width: auto;
  }
}
@media screen and (max-width: 350px) {
  .headerWhite .header__btn {
    font-size: 14px;
  }
}
.headerWhite .header__btn:hover {
  background-color: #0046AE;
  color: #fff;
  border: 1px solid #0046AE;
}
.headerWhite .header__btn .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 475px) {
  .headerWhite .header__btn .icon {
    display: none;
  }
}
.headerWhite .header__btn .icon svg path {
  fill: #fff !important;
}
.headerWhite .header__burger .burger {
  background: #fff;
}
.headerWhite .header__burger .burger::before, .headerWhite .header__burger .burger::after {
  background: #fff;
}
.headerWhite .header__burger .burger:hover .headerWhite .header__burger .burger::after {
  background: #fff;
}
.headerWhite .header__burger .burger.active {
  background: #202020;
}
.headerWhite .header__burger .burger.active::before {
  background: #fff;
}
.headerWhite .header__burger .burger.active::after {
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .headerWhite .header__list {
    background-color: #202020;
  }
  .headerWhite .header__list .header__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .headerWhite .header__list .header__item:last-child {
    border: none;
  }
}
.headerWhite .lang {
  position: relative;
}
.headerWhite .lang:hover .lang-visible::after {
  transform: rotate(-180deg);
}
.headerWhite .lang:hover .lang-overflow {
  opacity: 1;
  z-index: 1;
  top: 25px;
}
.headerWhite .lang .lang-visible {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  transition: all 0.3s;
  display: flex;
  cursor: pointer;
  position: relative;
  padding-right: 16px;
}
@media screen and (max-width: 350px) {
  .headerWhite .lang .lang-visible {
    font-size: 14px;
    padding-right: 12px;
  }
}
.headerWhite .lang .lang-visible:hover {
  color: #888888;
}
.headerWhite .lang .lang-visible::after {
  content: "";
  position: absolute;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><g clip-path="url(%23clip0_19_3439)"><path d="M12.1966 6.47003L11.2566 5.53003L8.19656 8.58336L5.13656 5.53003L4.19656 6.47003L8.19656 10.47L12.1966 6.47003Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/></g></svg>');
  width: 16px;
  height: 16px;
  right: -4px;
  top: 4px;
  transition: all 0.3s;
}
.headerWhite .lang .lang-overflow {
  position: absolute;
  border-radius: 15px;
  border: 1px solid #202020;
  padding: 10px 20px;
  background-color: #E8E9E3;
  min-width: 50px;
  left: -20px;
  opacity: 0;
  flex-direction: column;
  gap: 5px;
  transition: all 0.5s;
  z-index: -1;
  display: flex;
  top: 30px;
}
.headerWhite .lang .lang-overflow__item {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #202020;
  transition: all 0.3s;
}
.headerWhite .lang .lang-overflow__item:hover {
  color: #0046AE;
}
.headerWhite .lang .lang-overflow__item.active {
  opacity: 0.5;
}
.headerWhite .lang .lang-overflow__item.active:hover {
  color: #202020;
}

.carouselBase {
  margin-bottom: 160px;
}
@media screen and (max-width: 568px) {
  .carouselBase {
    margin-bottom: 130px;
  }
}
.carouselBase .sliderBox {
  margin-top: 80px;
}
@media screen and (max-width: 1300px) {
  .carouselBase .sliderBox {
    margin-top: 50px;
  }
}
@media screen and (max-width: 568px) {
  .carouselBase .sliderBox {
    margin-top: 30px;
  }
}
.carouselBase .sliderBox .slick-track {
  display: flex !important;
  margin: 0 -15px;
}
.carouselBase .sliderBox .slick-list {
  min-width: 100%;
  overflow: inherit !important;
}
.carouselBase .sliderBox .slick-slide {
  margin: 0 15px;
}
.carouselBase .sliderBox__item {
  background: #202020;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 32px 24px;
  gap: 64px;
  color: #fff;
}
.carouselBase .sliderBox__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carouselBase .sliderBox__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.carouselBase .sliderBox__title {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  color: #fff;
}
.carouselBase .sliderBox .prev {
  width: 60px;
  height: 48px;
  background: #fff;
  position: absolute;
  right: 327px;
  top: 95px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 30px 0px 0px 30px;
  border-top: 1px solid #202020;
  border-bottom: 1px solid #202020;
  border-left: 1px solid #202020;
  transition: all 0.3s;
}
@media screen and (max-width: 1300px) {
  .carouselBase .sliderBox .prev {
    top: -100px;
    right: 60px;
  }
}
@media screen and (max-width: 991px) {
  .carouselBase .sliderBox .prev {
    top: auto;
    right: 50%;
    bottom: -80px;
  }
}
.carouselBase .sliderBox .prev svg {
  position: relative;
  right: -5px;
}
.carouselBase .sliderBox .prev:hover {
  background: #0046AE;
}
.carouselBase .sliderBox .prev:hover svg path {
  fill: #fff !important;
}
.carouselBase .sliderBox .next {
  width: 60px;
  height: 48px;
  background: #fff;
  position: absolute;
  right: 267px;
  top: 95px;
  z-index: 1;
  transform: rotate(-180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 30px 0px 0px 30px;
  border-top: 1px solid #202020;
  border-bottom: 1px solid #202020;
  border-left: 1px solid #202020;
  transition: all 0.3s;
}
@media screen and (max-width: 1300px) {
  .carouselBase .sliderBox .next {
    top: -100px;
    right: 0;
  }
}
@media screen and (max-width: 991px) {
  .carouselBase .sliderBox .next {
    top: auto;
    right: calc(50% - 60px);
    bottom: -80px;
  }
}
.carouselBase .sliderBox .next svg {
  position: relative;
  right: -5px;
}
.carouselBase .sliderBox .next:hover {
  background: #0046AE;
}
.carouselBase .sliderBox .next:hover svg path {
  fill: #fff !important;
}

.contactForm {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .contactForm {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 568px) {
  .contactForm {
    margin-bottom: 50px;
  }
}
.contactForm__container {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .contactForm__container {
    flex-direction: column;
    gap: 50px;
  }
}
.contactForm__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .contactForm__info {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .contactForm__info {
    flex-direction: column;
  }
}
.contactForm__form {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .contactForm__form {
    width: 100%;
  }
}
.contactForm__form .form__box {
  margin-top: 0;
}
.contactForm__form .form__row {
  flex-wrap: wrap;
  gap: 30px;
}
.contactForm__form .form__col {
  padding: 0;
  width: calc(50% - 15px);
}
@media screen and (max-width: 568px) {
  .contactForm__form .form__col {
    width: 100%;
  }
}
.contactForm__form .form__col:nth-child(1) {
  padding: 0;
}
.contactForm__form .form__col:nth-child(2) {
  padding: 0;
}
.contactForm__form .form__col:last-child {
  width: 100%;
  margin-bottom: 30px;
}
.contactForm__form .form__col .form-title {
  color: #202020 !important;
}
.contactForm__form .form__col .form-input {
  border-bottom: 1px solid #ddd !important;
  color: #202020 !important;
}
.contactForm__form .form__col .form-input::placeholder {
  color: #888 !important;
}
.contactForm__form .form__btn {
  border: 1px solid #202020;
  margin: 0;
}
.contactForm__form .form__btn:hover {
  background-color: #0046AE;
}
.contactForm__form .form__btn:hover .title {
  color: #fff !important;
}
.contactForm__form .form__btn:hover .icon svg path {
  fill: #fff !important;
}
.contactForm__form .form__btn .title {
  color: #202020;
}
.contactForm__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contactForm__item:hover .title {
  color: #0046AE;
}
.contactForm__item .icon {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactForm__item .icon.iconGray {
  background-color: #9FACC4;
}
.contactForm__item .icon.iconYellow {
  background-color: #DCBB7E;
}
.contactForm__item .icon.iconRed {
  background-color: #C49FA2;
}
.contactForm__item .title {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  color: #202020;
  transition: all 0.3s;
}

.map {
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .map {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 568px) {
  .map {
    margin-bottom: 50px;
  }
}
.map__box {
  margin-top: 80px;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 1300px) {
  .map__box {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 568px) {
  .map__box {
    height: 300px;
    margin-top: 30px;
  }
}

.form {
  background: #0046AE;
  padding: 80px 0px;
  color: #fff;
  margin-bottom: 160px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .form {
    padding: 50px 0px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 568px) {
  .form {
    margin-bottom: 50px;
  }
}
.form .sectionCaption {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form .sectionCaption .h2 {
  color: #fff;
}
.form .sectionCaption__description {
  max-width: 520px;
}
.form .sectionCaption__description p {
  text-align: center;
}
.form__box {
  margin-top: 80px;
}
@media screen and (max-width: 1300px) {
  .form__box {
    margin-top: 50px;
  }
}
@media screen and (max-width: 568px) {
  .form__box {
    margin-top: 30px;
  }
}
.form__row {
  display: flex;
}
@media screen and (max-width: 1300px) {
  .form__row {
    gap: 30px;
  }
}
@media screen and (max-width: 568px) {
  .form__row {
    flex-direction: column;
    gap: 40px;
  }
}
.form__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 50%;
}
@media screen and (max-width: 568px) {
  .form__col {
    width: 100%;
  }
}
.form__col:nth-child(1) {
  padding-left: 30px;
  padding-right: 40px;
}
@media screen and (max-width: 1300px) {
  .form__col:nth-child(1) {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.form__col:nth-child(2) {
  padding-left: 40px;
  padding-right: 30px;
}
@media screen and (max-width: 1300px) {
  .form__col:nth-child(2) {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.form__col .form-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 64px;
}
.form__col .form-item .form-title {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
}
.form__col .form-item .form-input {
  padding: 0px 24px;
  padding-bottom: 2px;
  border-bottom: 1px solid #BFC1B0;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
}
.form__col .form-item .form-input::placeholder {
  color: #BFC1B0;
}
.form__checkbox {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  min-width: 160px;
  height: 56px;
  border: 1px solid #fff;
  border-radius: 30px;
  gap: 16px;
  transition: all 0.3s;
}
.form__btn:hover {
  background-color: #202020;
}
.form__btn .title {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
}
.form__btn .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro {
  min-height: calc(100vh - 130px - 64px);
  margin-bottom: 100px;
}
@media screen and (max-width: 1200px) {
  .intro {
    min-height: 600px;
  }
}
@media screen and (max-width: 768px) {
  .intro {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 568px) {
  .intro {
    margin-bottom: 50px;
  }
}
.intro .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
  gap: 50px;
}
@media screen and (max-width: 568px) {
  .intro .container {
    gap: 30px;
    min-height: 500px;
  }
}
.intro__info {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .intro__info {
    align-items: flex-start;
  }
}
@media screen and (max-width: 568px) {
  .intro__info {
    flex-direction: column;
  }
}
.intro__description {
  max-width: 650px;
}
.intro__ellipse {
  display: flex;
}
.intro__ellipse .ellipseItem {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
}
@media screen and (max-width: 768px) {
  .intro__ellipse .ellipseItem {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }
}
.intro__ellipse .ellipseItem .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .intro__ellipse .ellipseItem .icon {
    width: 28px;
    height: 28px;
  }
}
.intro__ellipse .ellipseItem:nth-child(1) {
  background-color: #9FACC4;
}
.intro__ellipse .ellipseItem:nth-child(2) {
  background-color: #DCBB7E;
  margin-left: -20px;
}
.intro__ellipse .ellipseItem:nth-child(3) {
  background-color: #C49FA2;
  margin-left: -20px;
}
.intro__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .intro__nav {
    gap: 20px;
  }
}
@media screen and (max-width: 568px) {
  .intro__nav {
    gap: 10px;
  }
}
@media screen and (max-width: 375px) {
  .intro__nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
.intro .lenta {
  background-image: url(../images/lenta.svg);
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 130px;
  display: block;
}
@media screen and (max-width: 991px) {
  .intro .lenta {
    height: 100px;
  }
}
@media screen and (max-width: 568px) {
  .intro .lenta {
    height: 80px;
  }
}
@media screen and (max-width: 475px) {
  .intro .lenta {
    margin-top: 30px;
  }
}

.marquee {
  margin-bottom: 160px;
  padding: 50px 0px;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
  height: 130px;
  padding: 20px 0px;
  background: #0046AE;
}
@media screen and (max-width: 768px) {
  .marquee {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 568px) {
  .marquee {
    height: 80px;
    margin-bottom: 50px;
  }
}
.marquee__line {
  display: flex;
  align-items: center;
  gap: 140px;
  overflow: hidden;
  width: 200%;
  animation: marquee 25s linear infinite;
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .marquee__line {
    gap: 80px;
  }
}
@media screen and (max-width: 568px) {
  .marquee__line {
    gap: 56px;
  }
}
.marquee__line .txt {
  font-family: "Raleway", sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 800;
  color: #fff;
  min-width: max-content;
}
@media screen and (max-width: 768px) {
  .marquee__line .txt {
    font-size: 56px;
  }
}
@media screen and (max-width: 568px) {
  .marquee__line .txt {
    font-size: 40px;
  }
}
@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

.news {
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .news {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 568px) {
  .news {
    margin-bottom: 50px;
  }
}
.news__list {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
}
@media screen and (max-width: 1300px) {
  .news__list {
    margin-top: 50px;
  }
}
@media screen and (max-width: 568px) {
  .news__list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .news__list {
    flex-direction: row;
    overflow-y: scroll;
    gap: 30px;
  }
}
@media screen and (max-width: 475px) {
  .news__list {
    gap: 20px;
  }
}
.news__item {
  display: flex;
  gap: 30px;
  width: 100%;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #D8D9CE;
}
@media screen and (max-width: 1024px) {
  .news__item {
    flex-direction: column;
    min-width: 60%;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .news__item {
    min-width: 80%;
  }
}
@media screen and (max-width: 568px) {
  .news__item {
    min-width: 70%;
  }
}
@media screen and (max-width: 475px) {
  .news__item {
    min-width: 90%;
  }
}
.news__item:hover .news__images img {
  transform: scale(1.1);
}
.news__item:hover .news__arrow {
  background-color: #0046AE;
}
.news__item:hover .news__arrow svg path {
  fill: #fff !important;
}
.news__item:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.news__images {
  width: 50%;
  height: 450px;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .news__images {
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 568px) {
  .news__images {
    height: 250px;
  }
}
.news__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.news__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .news__content {
    width: 100%;
  }
}
.news__date {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  color: #202020;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .news__date {
    margin-bottom: 10px;
  }
}
.news__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .news__body {
    gap: 10px;
  }
}
.news__caption {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.news__title {
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
  color: #202020;
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media screen and (max-width: 475px) {
  .news__title {
    font-size: 20px;
    line-height: 28px;
  }
}
.news__arrow {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid #202020;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news__arrow {
    display: none;
  }
}
.news__description {
  max-width: 520px;
}
.news__description p {
  height: 90px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #202020;
}
@media screen and (max-width: 1024px) {
  .news__description p {
    height: 80px;
  }
}
.news__category {
  display: flex;
  padding: 16px 32px;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  height: 56px;
  border-radius: 30px;
  border: 1px solid #202020;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #202020;
  align-self: flex-start;
}
@media screen and (max-width: 1024px) {
  .news__category {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .news__category {
    padding: 16px 16px;
    height: 42px;
    min-width: 100px;
  }
}
.news__category.labelGray {
  background: #9FACC4;
}
.news__category.labelYellow {
  background: #DCBB7E;
}
.news__category.labelRed {
  background: #C49FA2;
}
.news__pagination {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 568px) {
  .news__pagination {
    margin-top: 50px;
  }
}
.news__pagination-list {
  display: flex;
  gap: 10px;
}
.news__pagination-item {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  color: #888888;
  transition: all 0.3s;
}
.news__pagination-item:hover {
  color: #202020;
}
.news__pagination-item.active {
  color: #202020;
}

.otherNews__list {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #D8D9CF;
}
@media screen and (max-width: 768px) {
  .otherNews__list {
    border: none;
    padding-top: 0;
  }
}
@media screen and (max-width: 568px) {
  .otherNews__list {
    flex-direction: column;
    padding-top: 0;
    margin-top: 30px;
    border: none;
  }
}
.otherNews__item {
  width: 50%;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .otherNews__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 568px) {
  .otherNews__item {
    width: 100%;
    gap: 20px;
  }
}
.otherNews__item:hover .otherNews__images img {
  transform: scale(1.1);
}
.otherNews__item:hover .title {
  color: #0046AE;
}
.otherNews__images {
  min-width: 300px;
  width: 300px;
  height: 216px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .otherNews__images {
    min-width: 250px;
    width: 250px;
    height: 180px;
  }
}
@media screen and (max-width: 1200px) {
  .otherNews__images {
    min-width: 100%;
    width: 100%;
    height: 200px;
  }
}
.otherNews__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.otherNews__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .otherNews__content {
    gap: 20px;
  }
}
@media screen and (max-width: 568px) {
  .otherNews__content {
    gap: 10px;
  }
}
.otherNews__content .date {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  color: #202020;
}
.otherNews__content .title {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  color: #202020;
  height: 165px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
@media screen and (max-width: 1200px) {
  .otherNews__content .title {
    font-size: 20px;
    height: auto;
  }
}

@media screen and (max-width: 1300px) {
  .news-page .news__list {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .news-page .news__list {
    flex-direction: column;
    overflow-y: visible;
    gap: 0;
  }
  .news-page .news__item {
    width: 100%;
    min-width: 100%;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #D8D9CE;
  }
}
@media screen and (max-width: 1024px) and (max-width: 568px) {
  .news-page .news__item {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .news-page .news__item:last-child {
    border-bottom: none;
    padding: 0;
    margin: 0;
  }
}

.otherIntro {
  background: #202020;
  padding: 80px 0px 160px 0px;
  border-radius: 20px;
  margin-bottom: 160px;
}
@media screen and (max-width: 1200px) {
  .otherIntro {
    padding: 80px 0px 80px 0px;
  }
}
@media screen and (max-width: 768px) {
  .otherIntro {
    padding: 50px 0px 50px 0px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 568px) {
  .otherIntro {
    margin-bottom: 50px;
  }
}
.otherIntro__images {
  max-width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1100px) {
  .otherIntro__images {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .otherIntro__images {
    height: 420px;
  }
}
@media screen and (max-width: 768px) {
  .otherIntro__images {
    height: 380px;
  }
}
@media screen and (max-width: 568px) {
  .otherIntro__images {
    height: 300px;
  }
}
@media screen and (max-width: 475px) {
  .otherIntro__images {
    height: 260px;
  }
}
.otherIntro__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.otherIntro .h2Small {
  color: #fff;
}
.otherIntro__descriptipn {
  max-width: 830px;
}
.otherIntro__descriptipn p {
  color: #fff;
}
.otherIntro__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 24px;
  gap: 20px;
}
@media screen and (max-width: 1130px) {
  .otherIntro__info {
    flex-direction: column;
  }
}

.sectionDescription {
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .sectionDescription {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 568px) {
  .sectionDescription {
    margin-bottom: 50px;
  }
}
.sectionDescription__container {
  display: flex;
  gap: 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .sectionDescription__container {
    flex-direction: column;
  }
}
@media screen and (max-width: 568px) {
  .sectionDescription__container {
    margin-bottom: 50px;
  }
}
.sectionDescription__container:last-child {
  margin-bottom: 0;
}
.sectionDescription__colTitle {
  width: 300px;
  min-width: 300px;
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .sectionDescription__colTitle {
    width: 100%;
    min-width: 100%;
  }
}
.sectionDescription__colDescription {
  width: 100%;
}
.sectionDescription__colDescription .title {
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  color: #202020;
  display: block;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .sectionDescription__colDescription .title {
    margin-bottom: 28px;
    max-width: 920px;
  }
}
@media screen and (max-width: 568px) {
  .sectionDescription__colDescription .title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 24px;
  }
}
.sectionDescription__colDescription p {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  color: #202020;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .sectionDescription__colDescription p {
    margin-bottom: 20px;
    max-width: 920px;
  }
}
@media screen and (max-width: 568px) {
  .sectionDescription__colDescription p {
    line-height: 26px;
    margin-bottom: 16px;
  }
}
.sectionDescription__colDescription p:last-child {
  margin-bottom: 0;
}
.sectionDescription__colDescription p img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}
.sectionDescription__colDescription .btnSmall {
  display: inline-flex;
}
.sectionDescription__colDescription .btnSmall:hover .title {
  color: #fff;
}
.sectionDescription__colDescription .btnSmall .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0px;
}
.sectionDescription .team__container {
  margin-bottom: 80px;
}
.sectionDescription__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.sectionDescription__grid .grid-item {
  border-radius: 20px;
  width: calc(25% - 23px);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-self: flex-start;
}
@media screen and (max-width: 1024px) {
  .sectionDescription__grid .grid-item {
    width: calc(50% - 23px);
    align-self: normal;
  }
}
@media screen and (max-width: 640px) {
  .sectionDescription__grid .grid-item {
    width: 100%;
  }
}
.sectionDescription__grid .grid-item.grid-item-gray {
  border: 3px solid #9FACC4;
}
.sectionDescription__grid .grid-item.grid-item-gray .grid-item__icon {
  background: #9FACC4;
}
.sectionDescription__grid .grid-item.grid-item-yellow {
  border: 3px solid #DCBB7E;
}
.sectionDescription__grid .grid-item.grid-item-yellow .grid-item__icon {
  background: #DCBB7E;
}
.sectionDescription__grid .grid-item.grid-item-red {
  border: 3px solid #C49FA2;
}
.sectionDescription__grid .grid-item.grid-item-red .grid-item__icon {
  background: #C49FA2;
}
.sectionDescription__grid .grid-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sectionDescription__grid .grid-item__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sectionDescription__grid .grid-item__title {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  color: #202020;
}
.sectionDescription__share {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 330px;
}
@media screen and (max-width: 1024px) {
  .sectionDescription__share {
    padding-left: 0;
  }
}
.sectionDescription__share-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sectionDescription__share-title {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  color: #202020;
}
.sectionDescription__share .icon {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #0046AE;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all 0.3s;
}
.sectionDescription__share .icon:hover {
  background-color: #202020;
}

.sectionImages {
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .sectionImages {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 568px) {
  .sectionImages {
    margin-bottom: 50px;
  }
}
.sectionImages__images {
  max-width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .sectionImages__images {
    height: 420px;
  }
}
@media screen and (max-width: 768px) {
  .sectionImages__images {
    height: 380px;
  }
}
@media screen and (max-width: 568px) {
  .sectionImages__images {
    height: 300px;
  }
}
@media screen and (max-width: 475px) {
  .sectionImages__images {
    height: 260px;
  }
}
.sectionImages__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sectionImages__marqueeStatic {
  min-height: 130px;
  width: 100%;
  background: #0046AE;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 20px;
}
@media screen and (max-width: 568px) {
  .sectionImages__marqueeStatic {
    padding: 10px 0px;
  }
}
.sectionImages__marqueeStatic .title {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 1620px) {
  .sectionImages__marqueeStatic .title {
    font-size: 56px;
  }
}
@media screen and (max-width: 1270px) {
  .sectionImages__marqueeStatic .title {
    font-size: 52px;
  }
}
@media screen and (max-width: 1170px) {
  .sectionImages__marqueeStatic .title {
    font-size: 48px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .sectionImages__marqueeStatic .title {
    font-size: 42px;
  }
}
@media screen and (max-width: 568px) {
  .sectionImages__marqueeStatic .title {
    font-size: 36px;
  }
}
@media screen and (max-width: 475px) {
  .sectionImages__marqueeStatic .title {
    font-size: 32px;
  }
}
.sectionImages .marquee {
  margin-bottom: 0;
  position: relative;
  top: -20px;
}

.team {
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .team {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 568px) {
  .team {
    margin-bottom: 50px;
  }
}
.team__list {
  display: flex;
  gap: 30px;
  margin-top: 80px;
}
@media screen and (max-width: 1300px) {
  .team__list {
    margin-top: 50px;
  }
}
@media screen and (max-width: 568px) {
  .team__list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .team__list {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.team__item {
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - 20px);
  align-self: flex-start;
}
@media screen and (max-width: 1024px) {
  .team__item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 568px) {
  .team__item {
    width: 100%;
  }
}
.team__images {
  width: 100%;
  height: 370px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 50px;
  display: block;
}
@media screen and (max-width: 1150px) {
  .team__images {
    height: 320px;
  }
}
@media screen and (max-width: 1150px) {
  .team__images {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .team__images {
    height: 370px;
  }
}
@media screen and (max-width: 856px) {
  .team__images {
    height: 320px;
  }
}
@media screen and (max-width: 568px) {
  .team__images {
    height: 370px;
  }
}
@media screen and (max-width: 375px) {
  .team__images {
    height: 320px;
  }
}
.team__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team__name {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
@media screen and (max-width: 1150px) {
  .team__name {
    flex-direction: column-reverse;
    gap: 10px;
  }
}
.team__name .name {
  min-width: max-content;
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  color: #202020;
}
.team__name .label {
  padding: 8px 12px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  border-radius: 20px;
  position: relative;
  top: -10px;
  text-align: center;
}
@media screen and (max-width: 1150px) {
  .team__name .label {
    top: 0;
  }
}
.team__name .labelYellow {
  color: #9D6031;
  background-color: #DCBB7E;
}
.team__name .labelRed {
  color: #7F5659;
  background-color: #C49FA2;
}
.team__name .labelGray {
  color: #59627A;
  background-color: #9FACC4;
}
.team__post {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1150px) {
  .team__post {
    margin-top: 10px;
    margin-bottom: 15px;
  }
}

.sectionTeam {
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .sectionTeam {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 568px) {
  .sectionTeam {
    margin-bottom: 50px;
  }
}
.sectionTeam .team__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
}
@media screen and (max-width: 1024px) {
  .sectionTeam .team__list {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.sectionTeam .team__item {
  width: calc(33.3333333333% - 23px);
}
@media screen and (max-width: 1024px) {
  .sectionTeam .team__item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 568px) {
  .sectionTeam .team__item {
    width: 100%;
  }
}

.сhisinauIntro {
  background-color: #202020;
  height: 800px;
  position: relative;
  border-radius: 0px 0px 20px 20px;
  padding-top: 100px;
  color: #fff;
  overflow: hidden;
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .сhisinauIntro {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .сhisinauIntro {
    height: 700px;
  }
}
@media screen and (max-width: 950px) {
  .сhisinauIntro {
    height: 650px;
  }
}
@media screen and (max-width: 868px) {
  .сhisinauIntro {
    height: 600px;
  }
}
@media screen and (max-width: 650px) {
  .сhisinauIntro {
    height: 850px;
  }
}
@media screen and (max-width: 568px) {
  .сhisinauIntro {
    height: 800px;
  }
}
@media screen and (max-width: 420px) {
  .сhisinauIntro {
    height: 750px;
  }
}
.сhisinauIntro .container {
  position: relative;
  height: 700px;
}
@media screen and (max-width: 950px) {
  .сhisinauIntro .container {
    height: 650px;
  }
}
@media screen and (max-width: 868px) {
  .сhisinauIntro .container {
    height: 600px;
  }
}
@media screen and (max-width: 650px) {
  .сhisinauIntro .container {
    height: 850px;
  }
}
@media screen and (max-width: 568px) {
  .сhisinauIntro .container {
    height: 800px;
  }
}
@media screen and (max-width: 420px) {
  .сhisinauIntro .container {
    height: 750px;
  }
}
.сhisinauIntro__caption {
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 950px) {
  .сhisinauIntro__caption {
    padding-top: 100px;
  }
}
@media screen and (max-width: 868px) {
  .сhisinauIntro__caption {
    gap: 30px;
  }
}
@media screen and (max-width: 650px) {
  .сhisinauIntro__caption {
    padding-top: 50px;
  }
}
@media screen and (max-width: 420px) {
  .сhisinauIntro__caption {
    padding-top: 30px;
  }
}
@media screen and (max-width: 400px) {
  .сhisinauIntro__caption {
    padding-top: 10px;
  }
}
.сhisinauIntro__title {
  font-family: "Raleway", sans-serif;
  font-size: 96px;
  font-style: normal;
  font-weight: 800;
  line-height: 112px;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .сhisinauIntro__title {
    font-size: 72px;
    line-height: 86px;
  }
}
@media screen and (max-width: 868px) {
  .сhisinauIntro__title {
    font-size: 56px;
    line-height: 72px;
  }
}
@media screen and (max-width: 568px) {
  .сhisinauIntro__title {
    font-size: 48px;
    line-height: 56px;
  }
}
@media screen and (max-width: 414px) {
  .сhisinauIntro__title {
    font-size: 42px;
    line-height: 56px;
  }
}
.сhisinauIntro__images {
  position: absolute;
  bottom: 0;
  right: 0px;
  height: 650px;
  width: auto;
}
@media screen and (max-width: 1250px) {
  .сhisinauIntro__images {
    right: -100px;
  }
}
@media screen and (max-width: 1200px) {
  .сhisinauIntro__images {
    height: 550px;
    bottom: 100px;
    right: -50px;
  }
}
@media screen and (max-width: 950px) {
  .сhisinauIntro__images {
    right: -150px;
  }
}
@media screen and (max-width: 868px) {
  .сhisinauIntro__images {
    right: -90px;
    bottom: 100px;
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .сhisinauIntro__images {
    right: -140px;
  }
}
@media screen and (max-width: 650px) {
  .сhisinauIntro__images {
    right: 80px;
    height: 420px;
    display: flex;
  }
}
@media screen and (max-width: 580px) {
  .сhisinauIntro__images {
    right: 50px;
  }
}
@media screen and (max-width: 568px) {
  .сhisinauIntro__images {
    right: 20px;
  }
}
@media screen and (max-width: 500px) {
  .сhisinauIntro__images {
    right: 0px;
    bottom: 80px;
  }
}
@media screen and (max-width: 420px) {
  .сhisinauIntro__images {
    right: 0px;
    bottom: 60px;
  }
}
.сhisinauIntro__images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 500px) {
  .сhisinauIntro__images img {
    height: auto;
    object-fit: cover;
  }
}

.sectionDescription .сhisinauDescription h2 {
  margin-bottom: 30px;
}
.sectionDescription .сhisinauSignature {
  display: flex;
  justify-content: flex-end;
  height: 80px;
  width: auto;
}
.sectionDescription .сhisinauSignature img {
  width: 80px;
  width: auto;
  object-fit: contain;
}
.form__row label.required:after {
  content: "* ";
}

.form__col .form-item-select .form-input option {
  color: #000 !important;
}

.alert {
  text-align: center;
  margin: 50px 0 20px;
  font-size: 20px;
}
.alert.alert-success {
  color: #00b04c;
}

.invalid-feedback {
  font-size: 13px;
  color: #ff9595;
}

form .form-response {
  text-align: center;
  font-size: 20px;
  color: #32df5b;
}

.ajax-response-block {
  display: none;
  font-size: 14px;
  margin-top: -15px;
}
.ajax-response-block .success {
  color: #32df5b;
}
.ajax-response-block .error {
  color: #ff9595;
}


.form-item-textarea {
  height: auto !important;
}
.form-item-textarea .form-input {
  padding: 24px !important;
}

.contactForm__form .form__col .form-item .form-title {
  line-height: 22px;
}

.carouselBase .sliderBox__description {
  min-height: 210px;
}

.team__description {
  min-height: 210px;
}
.pageCaption .pageCaption__info {
  width: 100%;
  justify-content: end;
  flex-direction: initial;
}

.footerHeader__social-nav:hover {
  background-color: transparent !important;
}

.social-nav-1 {
  background-color: #E1306C;
}
.social-nav-2 {
  background-color: #3b5998;
}
.social-nav-3 {
  background-color: #00f2ea;
}
.social-nav-4 {
  background-color: #FF0000;
}




.payment {
  margin-bottom: 160px;
}
.payment .team__list {
  justify-content: center;
}
.payment .team__list .team__item {
  width: 50%;
  padding: 40px;
}
.payment .team__list .team__item .team__name {
  margin-bottom: 20px;
}

.payment .team__list .team__item .team__post {
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 5px;
  text-transform: initial;
}
.payment .team__list .team__item .team__post span {
  font-weight: 600;
}
