*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

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

img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

ul {
  list-style: none;
}

body * {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  line-height: inherit;
  text-align: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@font-face {
  font-family: "GolosText-Regular";
  src: url("../fonts/GolosText-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "GolosText-Medium";
  src: url("../fonts/GolosText-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "GolosText-SemiBold";
  src: url("../fonts/GolosText-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "GolosText-Bold";
  src: url("../fonts/GolosText-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "GolosText-ExtraBold";
  src: url("../fonts/GolosText-ExtraBold.ttf") format("truetype");
}
body {
  font-size: 16px;
  color: #3B3B3B;
  line-height: normal;
  font-family: "GolosText-Medium";
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #EEF3F9;
}
body.lock {
  overflow: hidden;
}

body > main {
  flex-grow: 1;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .container {
    max-width: 1152px;
  }
}
@media (max-width: 1279px) {
  .container {
    max-width: 896px;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: 640px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 480px;
    padding: 0 15px;
  }
}

header {
  padding: 24.5px 0 25.5px;
  background-color: #fff;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  transition: all 0.3s;
}
header.active__header {
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1279px) {
  header {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  header {
    padding: 25px 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
  }
}

.header__cnt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .header__cnt nav {
    display: none;
  }
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo {
  display: block;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .header-logo {
    width: 35px;
  }
  .header-logo img {
    width: 100%;
    height: auto;
  }
}

.header__description {
  flex: 1 1 auto;
  font-size: 13px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  line-height: normal;
  color: #818181;
}
@media (max-width: 767px) {
  .header__description {
    display: none;
  }
}

.header__list {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1279px) {
  .header__list {
    gap: 20px;
  }
}
.header__list a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #3655A7;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  font-family: "GolosText-Medium";
}
@media (max-width: 1279px) {
  .header__list a {
    font-size: 14px;
  }
}

.header__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .header__burger {
    display: flex;
  }
}
.header__burger img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mob__menu-close {
  cursor: pointer;
  margin-left: auto;
}

.mob__menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: #3655A7;
  position: fixed;
  top: 0;
  right: -2000px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: all 0.5s;
  z-index: 110;
  padding: 20px 15px 50px;
}
.mob__menu.active-mob__menu {
  right: 0;
}
.mob__menu::-webkit-scrollbar-track {
  background-color: #3655A7;
}
.mob__menu::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #EEF3F9;
}
.mob__menu::-webkit-scrollbar {
  width: 6px;
}

.mob__menu-cnt {
  display: flex;
  flex-direction: column;
  gap: 80px;
  color: #fff;
  line-height: normal;
}

.mob-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.mob-list a {
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
}

.about-mob {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-mob h2 {
  margin: 0;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "GolosText-Bold";
}
.about-mob p {
  margin: 0;
  font-weight: 500;
  font-family: "GolosText-Medium";
  font-size: 13px;
}
.about-mob a img {
  width: 95px;
  height: auto;
}

.mob-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.mob-info .mob-info-title {
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  margin-bottom: 0;
}
.mob-info .mob-info-value {
  font-size: 16px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  margin-top: 10px;
}

main {
  margin-top: 115px;
}
@media (max-width: 1279px) {
  main {
    margin-top: 95px;
  }
}
@media (max-width: 767px) {
  main {
    margin-top: 91.36px;
  }
}

section + section {
  margin-top: 150px;
}
@media (max-width: 1023px) {
  section + section {
    margin-top: 100px;
  }
}

.main-section {
  background-image: url("../images/main-bg-pc.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
}
@media (max-width: 767px) {
  .main-section {
    background-image: url("../images/main-bg-mob2.png");
    background-size: 767px 900px;
    background-color: #fff;
    position: relative;
  }
}
@media (max-width: 500px) {
  .main-section {
    background-size: cover;
  }
}

.inner-main {
  position: relative;
  padding: 104.5px 0 100.5px;
}
@media (max-width: 1279px) {
  .inner-main {
    padding: 80px 0;
  }
}
@media (max-width: 1023px) {
  .inner-main {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .inner-main {
    position: static;
  }
}

.inner-main-text {
  max-width: 585px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1279px) {
  .inner-main-text {
    max-width: 440px;
  }
}
@media (max-width: 1023px) {
  .inner-main-text {
    max-width: 360px;
  }
}
@media (max-width: 1023px) {
  .inner-main-text {
    max-width: 320px;
  }
}
@media (max-width: 500px) {
  .inner-main-text {
    max-width: 100%;
  }
}

.inner-main-title {
  margin-bottom: 0;
  color: #fff;
  font-size: 110px;
  font-weight: 700;
  font-family: "GolosText-Bold";
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1279px) {
  .inner-main-title {
    font-size: 80px;
  }
}
@media (max-width: 1023px) {
  .inner-main-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .inner-main-title {
    color: #3655A7;
  }
}
@media (max-width: 500px) {
  .inner-main-title {
    max-width: 320px;
  }
}
@media (max-width: 359px) {
  .inner-main-title {
    font-size: 55px;
  }
}
.inner-main-title span {
  font-size: 37px;
}
@media (max-width: 1279px) {
  .inner-main-title span {
    font-size: 27px;
  }
}
@media (max-width: 1023px) {
  .inner-main-title span {
    font-size: 20px;
  }
}
@media (max-width: 359px) {
  .inner-main-title span {
    font-size: 18px;
  }
}

.inner-main-description {
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  line-height: normal;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
  margin-bottom: 0;
  max-width: 560px;
}
.inner-main-description br {
  display: none;
}
@media (max-width: 1023px) {
  .inner-main-description br {
    display: block;
  }
}
@media (max-width: 1279px) {
  .inner-main-description {
    font-size: 15px;
  }
}
@media (max-width: 1023px) {
  .inner-main-description {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .inner-main-description {
    color: #3655A7;
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .inner-main-description {
    max-width: 320px;
  }
}

.inner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: #ED1B2E;
  border-radius: 50px;
  padding: 19.5px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: "GolosText-Bold";
  line-height: normal;
  transition: all 0.3s;
  max-width: 580px;
  margin-top: 40px;
  white-space: nowrap;
}
@media (max-width: 1279px) {
  .inner-btn {
    padding: 15px;
    font-size: 15px;
    margin-top: 20px;
  }
}
@media (max-width: 1023px) {
  .inner-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .inner-btn {
    max-width: 320px;
    margin-top: 395px;
  }
}
@media (max-width: 500px) {
  .inner-btn {
    margin: 395px auto 0;
  }
}
@media (max-width: 359px) {
  .inner-btn {
    font-size: 13px;
    padding: 10px 14px;
  }
}
.inner-btn .icon {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .inner-btn .icon {
    width: 25px;
    height: 25px;
  }
}
.inner-btn .icon svg {
  width: 100%;
  height: 100%;
}
.inner-btn .icon svg path {
  transition: all 0.3s;
}

.inner-main-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 613px;
}
@media (max-width: 1279px) {
  .inner-main-img {
    width: 500px;
  }
}
@media (max-width: 1023px) {
  .inner-main-img {
    width: 380px;
    right: -55px;
    bottom: 0;
  }
}
@media (max-width: 1023px) {
  .inner-main-img {
    width: 360px;
  }
}
@media (max-width: 767px) {
  .inner-main-img {
    right: max(0px, (100vw - 480px) / -2);
  }
}
@media (max-width: 500px) {
  .inner-main-img {
    right: 0;
    max-width: 360px;
  }
}
.inner-main-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-title {
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
  font-family: "GolosText-SemiBold";
  color: #2B2B2B;
  margin-bottom: 30px;
}
.page-title.page-title-policy {
  text-align: left;
}
@media (max-width: 1023px) {
  .page-title.page-title-policy {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .page-title.page-title-policy {
    font-size: 25px;
    margin-bottom: 60px;
  }
}
.page-title.page-title-inter {
  text-align: left;
  margin-bottom: 40px;
}
.page-title.page-title-inter br {
  display: none;
}
@media (max-width: 1023px) {
  .page-title.page-title-inter {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .page-title.page-title-inter br {
    display: block;
  }
}
@media (max-width: 767px) {
  .page-title.page-title-inter {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
.page-title.about-page-title {
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .page-title.about-page-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .page-title.about-page-title {
    font-size: 25px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1023px) {
  .page-title {
    font-size: 30px;
    text-align: left;
    margin-bottom: 20px;
  }
}

.about-main {
  display: flex;
  gap: 20px;
}
@media (max-width: 1023px) {
  .about-main {
    flex-direction: column-reverse;
  }
}

.about-main-img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.about-main-img,
.about-main-text {
  width: 50%;
}
@media (max-width: 1023px) {
  .about-main-img,
  .about-main-text {
    width: 100%;
  }
}

.about-main-text {
  border-radius: 15px;
  background-color: #3655A7;
  padding: 40px 35px;
  color: #fff;
  line-height: normal;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .about-main-text {
    padding: 40px 20px;
  }
}

.about-main-title {
  font-size: 30px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
}
@media (max-width: 1023px) {
  .about-main-title {
    font-size: 25px;
  }
}

.about-main-description {
  font-size: 16px;
  font-weight: 400;
  font-family: "GolosText-Regular";
  margin-bottom: 55px;
  margin-top: 10px;
}
.about-main-description span {
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  margin-bottom: 30px;
}

.about-main-btn {
  text-align: center;
  background-color: #00AEEF;
  border-radius: 50px;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  color: #fff;
  margin-top: auto;
  display: block;
  width: 100%;
}

.target {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 30px 30px 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
}
@media (max-width: 1439px) {
  .target {
    padding: 30px;
  }
}
@media (max-width: 1023px) {
  .target {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    padding: 40px 20px;
  }
}

.target-left {
  max-width: 405px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1279px) {
  .target-left {
    max-width: 300px;
  }
}
@media (max-width: 1023px) {
  .target-left {
    max-width: 100%;
  }
}
.target-left .page-title {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .target-left .page-title {
    font-size: 25px;
  }
}

.tag {
  background-color: #EEF3F9;
  text-align: center;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  color: #3655A7;
  margin-bottom: 20px;
}
.tag.tag-blue {
  background-color: rgba(54, 85, 167, 0.1);
  width: -moz-fit-content;
  width: fit-content;
}

.target-description {
  font-size: 16px;
  font-weight: 400;
  font-family: "GolosText-Regular";
  margin-bottom: 40px;
  color: #3B3B3B;
}
@media (max-width: 1023px) {
  .target-description {
    margin-bottom: 30px;
  }
}

.target-btn {
  border-radius: 50px;
  background-color: #3655A7;
  text-align: center;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 15px 60px;
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  color: #fff;
  line-height: normal;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .target-btn {
    width: 100%;
  }
}

.target-right {
  padding: 30px 20px;
  background-color: #EEF3F9;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
  width: 100%;
  border-radius: 10px;
  transition: all 0.5s ease;
}
@media (max-width: 1279px) {
  .target-right {
    max-width: 500px;
  }
}
@media (max-width: 1023px) {
  .target-right {
    max-width: 100%;
    padding: 20px 15px;
  }
}

.target-item {
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  background-color: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
  gap: 15px;
}
@media (max-width: 1023px) {
  .target-item {
    gap: 10px;
  }
}
.target-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #3655A7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: all 0.5s ease;
}
@media (max-width: 1023px) {
  .target-item .icon {
    width: 35px;
    height: 35px;
  }
}
.target-item .icon svg {
  width: 30px;
  height: 30px;
}
@media (max-width: 1023px) {
  .target-item .icon svg {
    width: 20px;
    height: 20px;
  }
}
.target-item .icon svg path {
  transition: all 0.5s ease;
}
.target-item .target-text {
  flex: 1 1 auto;
}
.target-item .target-text-title,
.target-item .target-text-description {
  transition: all 0.5s ease;
  color: #2B2B2B;
}
.target-item .target-text-title {
  font-size: 25px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  margin-bottom: 10px;
}
@media (max-width: 1279px) {
  .target-item .target-text-title {
    font-size: 20px;
  }
}
@media (max-width: 1023px) {
  .target-item .target-text-title {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.target-item .target-text-description {
  font-size: 20px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  margin: 0;
}
@media (max-width: 1279px) {
  .target-item .target-text-description {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .target-item .target-text-description {
    font-size: 14px;
  }
}
.target-item:hover {
  background-color: #3655A7;
}
.target-item:hover .target-text-title {
  color: #fff;
}
.target-item:hover .target-text-description {
  color: #fff;
}
@media (max-width: 1023px) {
  .target-item:hover .target-text-description {
    color: rgba(255, 255, 255, 0.7);
  }
}
.target-item:hover .icon {
  background-color: #fff;
  width: 70px;
  height: 70px;
}
@media (max-width: 1023px) {
  .target-item:hover .icon {
    width: 50px;
    height: 50px;
  }
}
.target-item:hover .icon svg path {
  fill: #3655A7;
  stroke: #3655A7;
}

.more-target {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 15px;
  flex: 0 0 auto;
  margin-top: 10px;
  margin-left: 10px;
}
@media (max-width: 1023px) {
  .more-target {
    margin-top: 7px;
    margin-left: 7px;
    gap: 10px;
  }
}
.more-target .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #3655A7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: all 0.5s ease;
}
.more-target .icon svg {
  width: 30px;
  height: 30px;
}
@media (max-width: 1023px) {
  .more-target .icon svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 1023px) {
  .more-target .icon {
    width: 35px;
    height: 35px;
  }
}

.more-target-text {
  color: #3655A7;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  font-size: 25px;
  margin: 0;
  flex: 1 1 auto;
}
@media (max-width: 1279px) {
  .more-target-text {
    font-size: 20px;
  }
}
@media (max-width: 1023px) {
  .more-target-text {
    font-size: 16px;
  }
}

.soc-wrapper .page-title {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1023px) {
  .soc-wrapper .page-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .soc-wrapper .page-title {
    font-size: 25px;
  }
}
.soc-wrapper .page-title br {
  display: none;
}
@media (max-width: 1023px) {
  .soc-wrapper .page-title br {
    display: block;
  }
}

.soc {
  display: flex;
  align-items: stretch;
  gap: 30px;
}
@media (max-width: 1023px) {
  .soc {
    gap: 10px;
  }
}

.soc-link {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  border-radius: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: "GolosText-Bold";
}
@media (max-width: 767px) {
  .soc-link {
    font-weight: 600;
    font-family: "GolosText-SemiBold";
  }
}

.soc-link-max {
  background: linear-gradient(90deg, #467BFF 0%, #2758F9 25%, #3C38EB 50%, #6E2FE1 75%, #954DE2 100%);
}

.soc-link-vk {
  background-color: #0079FF;
}

.contacts-wrapper .page-title {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1023px) {
  .contacts-wrapper .page-title {
    margin-bottom: 20px;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .contacts-wrapper .page-title {
    font-size: 25px;
  }
}
.contacts-wrapper .page-title br {
  display: none;
}
@media (max-width: 1023px) {
  .contacts-wrapper .page-title br {
    display: block;
  }
}

.contacts {
  display: flex;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .contacts {
    gap: 10px;
  }
}

.contacts-item {
  width: calc((100% - 40px) / 3);
  padding: 40px 30px 55px;
  background-color: #fff;
  border-radius: 15px;
}
@media (max-width: 1279px) {
  .contacts-item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 1023px) {
  .contacts-item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contacts-item {
    padding: 40px 20px;
  }
}

.contacts-item-title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  font-family: "GolosText-Medium";
  color: #3655A7;
}

.contacts-item-value {
  color: #2B2B2B;
  margin: 0;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  line-height: normal;
}

.contact-form {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.form-img {
  width: 530px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 1279px) {
  .form-img {
    display: none;
  }
}

.form-block {
  background-color: #3655A7;
  padding: 52px 35px;
  border-radius: 15px;
  max-width: 730px;
  width: 100%;
}
@media (max-width: 1439px) {
  .form-block {
    max-width: 600px;
    padding: 43px 35px;
  }
}
@media (max-width: 1279px) {
  .form-block {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .form-block {
    padding: 40px 20px;
  }
}
.form-block .page-title {
  color: #fff;
  margin-bottom: 10px;
  text-align: left;
}
@media (max-width: 767px) {
  .form-block .page-title {
    font-size: 25px;
    text-align: center;
  }
}
.form-block .page-title br {
  display: none;
}
@media (max-width: 767px) {
  .form-block .page-title br {
    display: block;
  }
}

.form-description {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .form-description {
    text-align: center;
  }
}
.form-description br {
  display: block;
}
@media (max-width: 767px) {
  .form-description br {
    display: none;
  }
}

.from-row + .from-row {
  margin-top: 10px;
}

.from-row {
  display: flex;
  width: 100%;
  align-items: stretch;
}
@media (max-width: 767px) {
  .from-row {
    flex-direction: column;
  }
}
.from-row.from-row-2 {
  gap: 10px;
}
.from-row.from-row-2 .form-field {
  width: 50%;
}
@media (max-width: 767px) {
  .from-row.from-row-2 .form-field {
    width: 100%;
  }
}

.form__row-file {
  margin-top: 20px;
}

.form-row-check {
  margin-top: 20px;
  margin-bottom: 20px;
}

.description {
  margin-top: 10px;
}
.description p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  font-family: "GolosText-Regular";
  color: rgba(255, 255, 255, 0.5);
}

.form-field {
  width: 100%;
}
.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background-color: #3655A7;
  padding: 15px 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  transition: all 0.3s;
}
.form-field input::-moz-placeholder, .form-field textarea::-moz-placeholder {
  color: #EEF3F9;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #EEF3F9;
}
.form-field input.error,
.form-field textarea.error {
  border-color: red;
  background-color: rgba(237, 27, 46, 0.2);
}
.form-field textarea {
  border-radius: 15px;
  resize: none;
  min-height: 120px;
}

.file__box {
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 140%;
  font-family: "GolosText-Medium";
  color: #fff;
}
.file__box input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 0 !important;
  height: 100%;
}

.label__file {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.label__file span {
  transition: all 0.3s;
}
.label__file svg {
  margin-right: 5px;
  width: 20px;
  height: 20px;
}
.label__file svg path {
  transition: all 0.3s;
}
.label__file.error {
  color: red;
}
.label__file.error svg path {
  fill: red;
}

.file__list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.file__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px 5px 10px;
  border: 1px solid rgba(245, 244, 245, 0.4);
  border-radius: 15px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #EEF3F9;
  gap: 10px;
}

.file-delete {
  width: 30px;
  height: 24px;
  cursor: pointer;
  margin-left: 5px;
  flex-direction: 0 0 auto;
}

.file-name {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  display: block;
  flex: 1 1 auto;
}

.file__error {
  color: red;
  font-size: 14px;
  font-family: "GolosText-Regular";
  margin-top: 10px;
  display: none;
}

.check__item {
  display: inline-flex;
  position: relative;
}
.check__item input {
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  top: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}
.check__item .check__control-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s;
  background-color: #3655A7;
  border-radius: 7.5px;
}

.check__control-form svg {
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 16px;
  height: 16px;
}

.check__label-form {
  color: #fff;
  font-family: "GolosText-Regular";
  font-size: 14px;
  transition: all 0.3s;
}
.check__label-form br {
  display: block;
}
.check__label-form a {
  color: #fff;
  font-family: "GolosText-Regular";
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: #fff;
  display: inline;
}

.check__item input:checked ~ .check__control-form svg {
  opacity: 1;
}

.check__item input:checked ~ .check__control-form {
  background-color: #fff;
}

input[type=checkbox].error + .check__control-form {
  border: 1px solid #f00;
}

.form-btn {
  background-color: #ED1B2E;
  cursor: pointer;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
}

.bread__crumbs-box {
  margin: 50px 0 70px;
}
@media (max-width: 1023px) {
  .bread__crumbs-box {
    margin: 30px 0 40px;
  }
}

.bread__crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.bread__crumbs a {
  color: #B5B5B5;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 16px;
  font-family: "GolosText-SemiBold";
  text-decoration: none;
}
.bread__crumbs a:last-of-type {
  color: #2B2B2B;
}
.bread__crumbs span {
  margin: 5px 15px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #B5B5B5;
}

.policy h3,
.policy p {
  color: #2B2B2B;
  font-weight: 500;
  font-family: "GolosText-Medium";
  font-size: 16px;
}
.policy h3 {
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 16px;
}
.policy a {
  color: #3655A7;
  text-decoration: underline;
}
.policy ul {
  list-style: disc;
  margin-left: 30px;
}

.initiatives-wrapper .page-title {
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .initiatives-wrapper .page-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .initiatives-wrapper .page-title {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

.initiatives-desc {
  max-width: 580px;
  color: #2B2B2B;
  font-size: 16px;
  font-weight: 400;
  font-family: "GolosText-Regular";
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .initiatives-desc {
    margin-bottom: 50px;
  }
}

.block__item {
  transition: all 0.3s ease;
  padding: 15px 30px;
  border-top: 1px solid #3655A7;
  border-bottom: 1px solid #3655A7;
}
@media (max-width: 1023px) {
  .block__item {
    padding: 10px 0;
  }
}
.block__item:has(.block-active) {
  padding: 40px 30px;
}
@media (max-width: 1023px) {
  .block__item:has(.block-active) {
    padding: 20px 0;
  }
}

.block__item + .block__item {
  border-top: none;
}

.block__open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.block__open-title {
  width: calc(100% - 50px);
  color: #3655A7;
  font-size: 16px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
}

.block__open-btn {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.block__open-btn .open {
  display: block;
}
.block__open-btn .close {
  display: none;
}
.block__open-btn svg {
  width: 100%;
  height: 100%;
}

.block-active .block__open-btn .open {
  display: none;
}
.block-active .block__open-btn .close {
  display: block;
}

.block__cnt-wrapper {
  display: none;
  margin-top: 10px;
}
.block__cnt-wrapper p {
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  color: #2B2B2B;
}
.block__cnt-wrapper p + p {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .block__cnt-wrapper .text {
    display: none;
  }
}

.initiatives-video {
  margin-bottom: 20px;
  width: 160px;
  height: 284px;
  display: block;
  position: relative;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .initiatives-video {
    margin-bottom: 0;
  }
}

.initiatives-video-poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.initiatives-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.initiatives-video-play img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inter {
  background-image: url("../images/inter-pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  padding: 85px;
  border-radius: 20px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .inter {
    padding: 30px;
  }
}
@media (max-width: 1023px) {
  .inter {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .inter {
    background-image: url("../images/inter-mob.png");
    background-position: bottom;
    padding: 40px 20px 430px;
  }
}
.inter::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("../images/inter-flag-pc.png");
  background-position: 100px bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1279px) {
  .inter::after {
    background-position: 180px bottom;
  }
}
@media (max-width: 767px) {
  .inter::after {
    background-image: url("../images/inter-flag-mob.png");
    background-position: right bottom;
  }
}

.inter-img {
  position: absolute;
  z-index: 2;
  width: 544px;
  right: 97px;
  bottom: 0;
}
@media (max-width: 1279px) {
  .inter-img {
    width: 400px;
    right: 50px;
  }
}
@media (max-width: 1023px) {
  .inter-img {
    right: 10px;
    width: 300px;
  }
}
@media (max-width: 767px) {
  .inter-img {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
  }
}
.inter-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.inter-left {
  position: relative;
  z-index: 3;
  color: #fff;
}
.inter-left .page-title {
  text-align: left;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 1023px) {
  .inter-left .page-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .inter-left .page-title {
    font-size: 25px;
  }
}
.inter-left .page-title br {
  display: none;
}
@media (max-width: 767px) {
  .inter-left .page-title br {
    display: block;
  }
}
.inter-left .tag {
  background-color: rgba(255, 255, 255, 0.2);
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
}

.inter-desc {
  max-width: 440px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .inter-desc {
    max-width: 290px;
  }
}

.inter-btn {
  text-align: center;
  border-radius: 50px;
  background-color: #ED1B2E;
  padding: 15px 50px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  color: #fff;
}

.inters {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inters-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.inters-item p {
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
}

.inters-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
}

@media (max-width: 767px) {
  .inter-wrapper .page-title {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .inter-wrapper .container {
    padding: 0;
  }
}

.poster {
  border-radius: 15px;
  background-image: url("../images/interview-bg-pc.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 80px 110px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .poster {
    padding: 80px 40px;
    background-size: cover;
  }
}
@media (max-width: 1023px) {
  .poster {
    padding: 40px 20px 310px;
    background-position: 90% bottom;
  }
}
@media (max-width: 767px) {
  .poster {
    padding: 40px 20px 310px;
    background-position: right -160px;
    background-image: url("../images/interview-bg-mob.png");
  }
}
@media (max-width: 500px) {
  .poster {
    background-position: right bottom;
  }
}
.poster h3 {
  font-size: 25px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  margin-bottom: 10px;
}
.poster h3 br {
  display: none;
}
@media (max-width: 1023px) {
  .poster h3 br {
    display: block;
  }
}
@media (max-width: 1279px) {
  .poster h3 {
    font-size: 23px;
    max-width: 470px;
  }
}
@media (max-width: 1023px) {
  .poster h3 {
    max-width: unset;
  }
}
.poster p {
  font-size: 16px;
  font-weight: 400;
  font-family: "GolosText-Regular";
  max-width: 635px;
}
@media (max-width: 1279px) {
  .poster p {
    font-size: 14px;
    max-width: 470px;
  }
}
@media (max-width: 1279px) {
  .poster p br {
    display: none;
  }
}
.poster img {
  position: absolute;
  right: 192px;
  bottom: 0;
  width: 243px;
  height: auto;
}
@media (max-width: 1279px) {
  .poster img {
    right: 150px;
  }
}
@media (max-width: 1023px) {
  .poster img {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 245px;
  }
}

.section-inter {
  margin-top: 150px;
}
@media (max-width: 1023px) {
  .section-inter {
    margin-top: 100px;
  }
}

.inter-block + .inter-block {
  margin-top: 80px;
}
@media (max-width: 1023px) {
  .inter-block + .inter-block {
    margin-top: 60px;
  }
}

.inter-item {
  padding: 20px 45px 20px 30px;
  position: relative;
}
.inter-item.inter-item-white {
  background-color: #fff;
  border-radius: 20px 20px 20px 0;
}
.inter-item.inter-item-white p {
  color: #3655A7;
}
.inter-item.inter-item-white img {
  left: 0;
}
.inter-item.inter-item-blue {
  background-color: #3655A7;
  border-radius: 20px 20px 0 20px;
}
.inter-item.inter-item-blue p {
  color: #fff;
}
.inter-item.inter-item-blue img {
  right: 0;
}
@media (max-width: 1023px) {
  .inter-item {
    padding: 20px 25px 20px 20px;
  }
}
.inter-item p {
  font-size: 20px;
  font-weight: 500;
  font-family: "GolosText-SemiBold";
}
@media (max-width: 1279px) {
  .inter-item p {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .inter-item p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .inter-item p {
    font-size: 14px;
  }
}
.inter-item p + p {
  margin-top: 10px;
}
.inter-item img {
  position: absolute;
  bottom: -25px;
}

.inter-item + .inter-item {
  margin-top: 44px;
}
@media (max-width: 1023px) {
  .inter-item + .inter-item {
    margin-top: 40px;
  }
}

.inter-item-img {
  display: flex;
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 1279px) {
  .inter-item-img {
    align-items: flex-start;
  }
}
@media (max-width: 1023px) {
  .inter-item-img {
    flex-direction: column;
    gap: 10px;
  }
}
.inter-item-img.reverce {
  flex-direction: row-reverse;
}
@media (max-width: 1023px) {
  .inter-item-img.reverce {
    flex-direction: column;
  }
}
@media (max-width: 1023px) {
  .inter-item-img {
    margin-top: 40px;
  }
}
.inter-item-img .interview-img {
  width: 540px;
  height: auto;
  flex: 0 0 auto;
  border-radius: 20px;
}
@media (max-width: 1279px) {
  .inter-item-img .interview-img {
    width: 350px;
  }
}
@media (max-width: 1023px) {
  .inter-item-img .interview-img {
    width: 100%;
  }
}
.inter-item-img .inter-item {
  flex: 1 1 auto;
  padding: 20px 35px 20px 20px;
}
@media (max-width: 1023px) {
  .inter-item-img .inter-item {
    padding: 20px;
  }
}

.inter-item-img + .inter-item {
  margin-top: 44px;
}
@media (max-width: 1023px) {
  .inter-item-img + .inter-item {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .about-wrapper .container {
    padding: 0;
  }
}

.about {
  background-color: #FEFEFE;
  padding: 70px 50px;
  border-radius: 15px;
  color: #3655A7;
  position: relative;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url("../images/aboutbg-pc.png");
  overflow: hidden;
}
@media (max-width: 1439px) {
  .about {
    background-position: 0 bottom;
  }
}
@media (max-width: 1279px) {
  .about {
    padding: 50px 30px;
  }
}
@media (max-width: 1023px) {
  .about {
    padding: 40px 30px 405px;
    background-position: right bottom;
  }
}
@media (max-width: 500px) {
  .about {
    background-position: right 290px;
  }
}

.about-left {
  position: relative;
  max-width: 550px;
}
@media (max-width: 1279px) {
  .about-left {
    max-width: 450px;
  }
}
@media (max-width: 1023px) {
  .about-left {
    max-width: 100%;
  }
}
.about-left h3 {
  margin-bottom: 0;
  font-size: 41px;
  font-weight: 700;
  font-family: "GolosText-Bold";
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .about-left h3 {
    font-size: 35px;
  }
}
@media (max-width: 1023px) {
  .about-left h3 {
    font-size: 25px;
  }
}
.about-left h2 {
  font-weight: 700;
  font-family: "GolosText-Bold";
  text-transform: uppercase;
  font-size: 74px;
  margin-bottom: 16px;
}
@media (max-width: 1279px) {
  .about-left h2 {
    font-size: 60px;
  }
}
@media (max-width: 1023px) {
  .about-left h2 {
    font-size: 44px;
  }
}

.about-left-top {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .about-left-top {
    gap: 20px;
    margin-bottom: 30px;
  }
}

.about-top-logo {
  width: 88px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023px) {
  .about-top-logo {
    width: 64px;
  }
}

.about-top-right {
  width: 581px;
  height: auto;
}
@media (max-width: 1023px) {
  .about-top-right {
    width: 202px;
  }
}
.about-top-right img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-desc-1 {
  font-size: 25px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  margin-bottom: 41px;
  position: relative;
}
.about-desc-1 span {
  margin-right: 2px;
  display: inline-block;
}
.about-desc-1::before {
  content: "";
  position: absolute;
  width: 37px;
  height: 2px;
  background-color: #3655A7;
  bottom: 0;
  left: -50px;
}
@media (max-width: 1279px) {
  .about-desc-1::before {
    left: -30px;
    width: 20px;
  }
}
@media (max-width: 1279px) {
  .about-desc-1 {
    font-size: 20px;
  }
}
@media (max-width: 1023px) {
  .about-desc-1 {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.about-desc-1 span {
  font-style: italic;
  font-weight: 700;
  font-family: "GolosText-Bold";
  text-transform: uppercase;
}

.about-desc-2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .about-desc-2 {
    font-size: 15px;
  }
}
@media (max-width: 1023px) {
  .about-desc-2 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .about-desc-2 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .about-desc-2 br.show {
    display: block;
  }
}
@media (max-width: 415px) {
  .about-desc-2 br.show {
    display: none;
  }
}

.about-desc-3 {
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
}
@media (max-width: 1279px) {
  .about-desc-3 {
    font-size: 15px;
  }
}
@media (max-width: 1023px) {
  .about-desc-3 {
    font-size: 14px;
  }
}

.about-bg {
  width: 612px;
  position: absolute;
  bottom: 0;
  right: 50px;
}
@media (max-width: 1439px) {
  .about-bg {
    width: 500px;
  }
}
@media (max-width: 1279px) {
  .about-bg {
    width: 400px;
    right: 20px;
  }
}
@media (max-width: 1023px) {
  .about-bg {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
  }
}
@media (max-width: 767px) {
  .about-bg {
    width: 320px;
  }
}
.about-bg img {
  width: 100%;
  height: auto;
}

.about-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.about-info h2 {
  flex: 0 0 auto;
}
@media (max-width: 1023px) {
  .about-info {
    flex-direction: column;
  }
}

.about-info-right {
  width: 585px;
  padding-left: 30px;
  border-left: 5px solid #3655A7;
}
@media (max-width: 1023px) {
  .about-info-right {
    width: 100%;
    padding-left: 20px;
  }
}
.about-info-right h4 {
  font-size: 25px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  margin-bottom: 10px;
  color: #3655A7;
}
@media (max-width: 1023px) {
  .about-info-right h4 {
    font-size: 20px;
  }
}
.about-info-right p {
  color: #2B2B2B;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: "GolosText-Regular";
}

@media (max-width: 767px) {
  .about-text-img-wrapper .container {
    padding: 0;
  }
}

.about-text-img {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 1279px) {
  .about-text-img {
    align-items: flex-start;
  }
}
@media (max-width: 1023px) {
  .about-text-img {
    flex-direction: column;
  }
}
.about-text-img.reverce {
  flex-direction: row-reverse;
}
@media (max-width: 1023px) {
  .about-text-img.reverce {
    flex-direction: column;
  }
}
.about-text-img img {
  width: 520px;
  height: auto;
  border-radius: 15px;
  flex: 0 0 auto;
}
@media (max-width: 1279px) {
  .about-text-img img {
    width: 400px;
  }
}
@media (max-width: 1023px) {
  .about-text-img img {
    width: 100%;
  }
}
.about-text-img .text-block {
  background-color: #00AEEF;
  color: #fff;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  flex: 1 1 auto;
}
@media (max-width: 1023px) {
  .about-text-img .text-block {
    width: 100%;
    padding: 40px 20px;
  }
}
.about-text-img .tag-blue {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.about-text-img .tag-blue br {
  display: none;
}
@media (max-width: 1023px) {
  .about-text-img .tag-blue {
    margin: 0 auto 20px;
  }
  .about-text-img .tag-blue br {
    display: block;
  }
}
.about-text-img .text {
  margin-top: auto;
}
.about-text-img .text p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  font-family: "GolosText-Medium";
}
@media (max-width: 1023px) {
  .about-text-img .text p {
    font-size: 14px;
  }
}
.about-text-img .text p + p {
  margin-top: 15px;
}

.awards {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .awards {
    gap: 10px;
  }
}

.awards-item {
  border-radius: 15px;
  background-color: #3655A7;
  padding: 40px 30px;
  color: #fff;
  width: calc((100% - 40px) / 3);
}
@media (max-width: 1279px) {
  .awards-item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 1023px) {
  .awards-item {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .awards-item {
    width: 100%;
  }
}
.awards-item h3 {
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
}
.awards-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
}
@media (max-width: 1023px) {
  .awards-item p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .slider-text-wrapper .container {
    padding: 0;
  }
}

.ed-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 15px;
}
@media (max-width: 767px) {
  .ed-title {
    flex-direction: row-reverse;
    padding-left: 15px;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
}
.ed-title .page-title.about-page-title {
  margin: 0;
}
@media (max-width: 767px) {
  .ed-title .page-title.about-page-title {
    flex: 1 1 auto;
  }
}
.ed-title img {
  width: 55px;
  height: auto;
}
@media (max-width: 767px) {
  .ed-title img {
    flex: 0 0 auto;
  }
}

.slider-text-block + .slider-text-block {
  margin-top: 40px;
}

.slider-text-block {
  display: flex;
  align-items: stretch;
  gap: 30px;
}
.slider-text-block.reverce {
  flex-direction: row-reverse;
}
@media (max-width: 1023px) {
  .slider-text-block.reverce {
    flex-direction: column;
  }
}
@media (max-width: 1279px) {
  .slider-text-block {
    gap: 15px;
  }
}
@media (max-width: 1023px) {
  .slider-text-block {
    flex-direction: column;
    gap: 20px;
  }
}
.slider-text-block .swiper {
  flex: 0 0 auto;
  width: 540px;
  height: 390px;
}
@media (max-width: 1279px) {
  .slider-text-block .swiper {
    width: 400px;
    height: 350px;
  }
}
@media (max-width: 1023px) {
  .slider-text-block .swiper {
    width: 100%;
  }
}
.slider-text-block .swiper a {
  display: block;
  width: 100%;
  height: 100%;
}
.slider-text-block .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.slider-text-block .swiper-button-prev,
.slider-text-block .swiper-button-next {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ED1B2E;
}
.slider-text-block .swiper-button-prev::after,
.slider-text-block .swiper-button-next::after {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
.slider-text-block .swiper-button-prev {
  left: 20px;
}
@media (max-width: 1023px) {
  .slider-text-block .swiper-button-prev {
    left: 15px;
  }
}
.slider-text-block .swiper-button-next {
  right: 20px;
}
@media (max-width: 1023px) {
  .slider-text-block .swiper-button-next {
    right: 15px;
  }
}

.slider-text {
  background-color: #fff;
  border-radius: 15px;
  color: #2B2B2B;
  padding: 50px 35px;
  flex: 1 1 auto;
}
.slider-text br {
  display: none;
}
@media (max-width: 1279px) {
  .slider-text br {
    display: block;
  }
}
@media (max-width: 1023px) {
  .slider-text br {
    display: none;
  }
}
@media (max-width: 1023px) {
  .slider-text {
    width: 100%;
    padding: 40px 20px;
  }
}
.slider-text p {
  font-size: 16px;
  font-weight: 400;
  font-family: "GolosText-Medium";
}
@media (max-width: 1023px) {
  .slider-text p {
    font-size: 14px;
  }
}
.slider-text p + p {
  margin-top: 15px;
}

.blue-poster {
  display: flex;
  justify-content: flex-end;
  background-color: #3655A7;
  border-radius: 15px;
  position: relative;
  padding: 125px 105px;
  margin-bottom: 20px;
}
@media (max-width: 1439px) {
  .blue-poster {
    padding: 125px 80px;
  }
}
@media (max-width: 1279px) {
  .blue-poster {
    padding: 100px 40px;
  }
}
@media (max-width: 1023px) {
  .blue-poster {
    padding: 40px 20px 330px;
  }
}
@media (max-width: 480px) {
  .blue-poster {
    margin-left: -15px;
    width: calc(100% + 30px);
  }
}

.blue-poster-text {
  max-width: 635px;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  position: relative;
  z-index: 2;
}
@media (max-width: 1439px) {
  .blue-poster-text {
    font-size: 22px;
    max-width: 570px;
  }
}
@media (max-width: 1279px) {
  .blue-poster-text {
    font-size: 20px;
    max-width: 490px;
  }
}
@media (max-width: 1023px) {
  .blue-poster-text {
    font-size: 18px;
    text-align: center;
    max-width: 100%;
  }
}

.blue-poster-img {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 680px;
}
@media (max-width: 1279px) {
  .blue-poster-img {
    width: 550px;
  }
}
@media (max-width: 1023px) {
  .blue-poster-img {
    left: 50%;
    transform: translateX(-50%);
    max-width: 360px;
    width: 100%;
  }
}
.blue-poster-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: -10px;
}
@media (max-width: 1279px) {
  .gallery {
    margin: -5px;
  }
}

.gallery-item {
  margin: 10px;
  display: flex;
  height: 310px;
}
@media (max-width: 1279px) {
  .gallery-item {
    margin: 5px;
    height: 280px;
  }
}
@media (max-width: 1023px) {
  .gallery-item {
    height: 230px;
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-item-big {
  width: calc(50% - 20px);
}
@media (max-width: 1279px) {
  .gallery-item-big {
    width: calc(50% - 10px);
  }
}
@media (max-width: 1023px) {
  .gallery-item-big {
    width: calc(100% - 10px);
  }
}

.gallery-item-small {
  width: calc(25% - 20px);
}
@media (max-width: 1279px) {
  .gallery-item-small {
    width: calc(25% - 10px);
  }
}
@media (max-width: 1023px) {
  .gallery-item-small {
    width: calc(50% - 10px);
  }
}

@media (max-width: 1023px) {
  .gallery-item-1 {
    order: 1;
  }
}

@media (max-width: 1023px) {
  .gallery-item-2 {
    order: 2;
  }
}

@media (max-width: 1023px) {
  .gallery-item-3 {
    order: 3;
  }
}

@media (max-width: 1023px) {
  .gallery-item-4 {
    order: 5;
  }
}

@media (max-width: 1023px) {
  .gallery-item-5 {
    order: 6;
  }
}

@media (max-width: 1023px) {
  .gallery-item-6 {
    order: 4;
  }
}

.timeline-title {
  margin-bottom: 40px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  font-size: 25px;
  color: #3655A7;
}
.timeline-title br {
  display: none;
}
@media (max-width: 1023px) {
  .timeline-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .timeline-title br {
    display: block;
  }
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
}
.timeline .line {
  position: absolute;
  left: 77px;
  top: 0;
  width: 5px;
  background-color: #3655A7;
  z-index: 1;
}
@media (max-width: 767px) {
  .timeline .line {
    display: none;
  }
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .timeline-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.timeline-item.center {
  align-items: center;
}

.mb-35 {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .mb-35 {
    margin: 0;
  }
}

.timeline-year {
  width: 155px;
  flex-shrink: 0;
  border-radius: 50px;
  background-color: rgba(54, 85, 167, 0.1);
  color: #3655A7;
  font-size: 25px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 5;
}
@media (max-width: 767px) {
  .timeline-year {
    width: 100%;
  }
}
.timeline-year span {
  position: relative;
  z-index: 5;
  background-color: rgba(54, 85, 167, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .timeline-year span br {
    display: none;
  }
}
.timeline-year::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #EEF3F9;
  border-radius: 50px;
  width: 100%;
  height: calc(100% + 20px);
  z-index: 1;
}

.timeline-item:last-child .timeline-year::after {
  display: none;
}

.timeline-content {
  flex: 1;
}
.timeline-content p {
  margin: 0;
  font-size: 16px;
  color: #2B2B2B;
  font-weight: 400;
  font-family: "GolosText-Regular";
}
@media (max-width: 767px) {
  .timeline-content p {
    font-size: 14px;
  }
}
.timeline-content p + p {
  margin-top: 15px;
}

footer {
  padding: 50px 0;
  background-color: #3655A7;
  color: #fff;
  margin-top: 150px;
}
@media (max-width: 1023px) {
  footer {
    margin-top: 100px;
  }
}
@media (max-width: 500px) {
  footer {
    padding: 50px 0 90px;
  }
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer-top {
    justify-content: center;
    gap: 10px;
  }
}

.footer-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 310px;
}
@media (max-width: 767px) {
  .footer-left {
    align-items: center;
    flex: none;
  }
}
.footer-left h2 {
  margin: 0;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 800;
  line-height: normal;
  font-family: "GolosText-Bold";
}
@media (max-width: 1279px) {
  .footer-left h2 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .footer-left h2 {
    text-align: center;
    font-size: 20px;
  }
}
.footer-left p {
  margin: 0;
  font-weight: 500;
  font-family: "GolosText-Medium";
  font-size: 13px;
  line-height: normal;
}
@media (max-width: 767px) {
  .footer-left p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer-left .footer-left-link {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer-logo {
    width: 52px;
  }
  .footer-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.footer-list {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1439px) {
  .footer-list {
    gap: 20px;
  }
}
@media (max-width: 1279px) {
  .footer-list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 1023px) {
  .footer-list {
    display: none;
  }
}
.footer-list a {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  font-family: "GolosText-Medium";
}
@media (max-width: 1439px) {
  .footer-list a {
    font-size: 15px;
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 20px;
  max-width: 290px;
}
.footer-info p {
  line-height: normal;
}
@media (max-width: 767px) {
  .footer-info {
    display: none;
  }
}

.footer-info-title {
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  margin-bottom: 0;
}
@media (max-width: 1279px) {
  .footer-info-title {
    font-size: 14px;
  }
}

.footer-info-value {
  font-size: 20px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
  margin-top: 10px;
}
@media (max-width: 1279px) {
  .footer-info-value {
    font-size: 16px;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 50px;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 530px;
  width: 100%;
}
@media (max-width: 767px) {
  .footer-bottom {
    align-items: center;
  }
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 14px;
  font-family: "GolosText-Regular";
}
@media (max-width: 767px) {
  .footer-bottom p {
    text-align: center;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .footer-links {
    align-items: center;
    margin-top: 30px;
  }
}
.footer-links a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 14px;
  font-family: "GolosText-Regular";
}
@media (max-width: 767px) {
  .footer-links a {
    text-align: center;
  }
}

.fancybox__content {
  background: transparent;
}
@media (max-width: 767px) {
  .fancybox__content {
    padding: 10px;
  }
}

.popup.fancybox__content {
  max-width: 630px;
  width: 100%;
  padding: 60px 35px;
  text-align: center;
  border-radius: 15px;
  background-color: #3655A7;
  color: #fff;
}
@media (max-width: 767px) {
  .popup.fancybox__content {
    max-width: 330px;
    padding: 130px 20px;
  }
}

.popup.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: 0;
  right: -56px;
  color: #fff;
}
@media (max-width: 767px) {
  .popup.fancybox__content > .carousel__button.is-close {
    top: 20px;
    right: 10px;
  }
}

.popup__title {
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
}
@media (max-width: 1023px) {
  .popup__title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .popup__title {
    font-size: 25px;
    max-width: 290px;
    margin: 0 auto 10px;
  }
}

.popup-description {
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  max-width: 450px;
  margin: 0 auto;
}
.popup-description br {
  display: none;
}
@media (max-width: 767px) {
  .popup-description {
    max-width: 260px;
  }
  .popup-description br {
    display: block;
  }
}

.cookies {
  position: fixed;
  right: 0;
  bottom: 44px;
  z-index: 50;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  max-width: 460px;
  padding: 30px 20px;
  background-color: #fff;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 16px 72px 0 rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .cookies {
    max-width: 360px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}

.cookies__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  font-family: "GolosText-Regular";
}
.cookies__wrap a {
  color: #00AEEF;
  font-weight: 500;
  font-family: "GolosText-Medium";
  text-decoration: underline;
}

.cookies__btn {
  width: 100%;
}
.cookies__btn .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #00AEEF;
  border-radius: 50px;
  padding: 15px;
  font-size: 16px;
  color: #fff;
  font-family: "GolosText-Medium";
  text-decoration: none;
}

.cookies.is-active {
  opacity: 1;
  pointer-events: auto;
}

.fixed-btn-main {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #ED1B2E;
  border-radius: 50px;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  line-height: normal;
  transition: all 0.3s;
  max-width: 230px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
}
.fixed-btn-main.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.fixed-btn-main .icon {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s;
}
.fixed-btn-main .icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  .fixed-btn-main {
    right: 30px;
    bottom: 30px;
  }
  .fixed-btn-main span {
    display: none;
  }
}

.fixed-btn-inner {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #ED1B2E;
  border-radius: 50px;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "GolosText-Medium";
  line-height: normal;
  transition: all 0.3s;
  max-width: 230px;
  white-space: nowrap;
}
.fixed-btn-inner .icon {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s;
}
.fixed-btn-inner .icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  .fixed-btn-inner {
    right: 30px;
    bottom: 30px;
  }
  .fixed-btn-inner span {
    display: none;
  }
}

.footer-logo {
  width: 95px;
  height: auto;
}
@media (max-width: 1023px) {
  .footer-logo {
    width: 85px;
  }
}
.footer-logo img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */