html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  color: #25282B;
  background-color: #FFF;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.container.header {
  max-width: 1440px;
}
@media screen and (width <= 767px) {
  .container.header {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.container.overlay-info {
  padding-top: 80px;
  margin: 0 auto;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link {
  text-decoration: none;
}

.section-padding {
  padding-bottom: 40px;
}
@media screen and (max-width: 1240px) {
  .section-padding .slider-btns-space {
    padding-bottom: 60px;
  }
}
.section-padding.double {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .section-padding {
    padding-bottom: 50px;
  }
  .section-padding.double {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1240px) {
  .section-padding {
    padding-bottom: 60px;
  }
  .section-padding.double {
    padding-top: 60px;
  }
}

.hide {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.header-fixed {
  position: fixed;
  z-index: 2;
  height: 73px;
  width: 100%;
  background-color: #FFF;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0 0 40px 40px;
}
@media screen and (width <= 867px) {
  .header-fixed {
    border-radius: 0 0 25px 25px;
  }
}
@media screen and (width <= 768px) {
  .header-fixed {
    height: 60px;
  }
}

.header-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
@media screen and (width >= 1354px) {
  .header-block {
    padding: 7px 0;
  }
}

.nav-list {
  display: none;
  margin-bottom: 50px;
}
@media screen and (width >= 660px) {
  .nav-list {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
}
.nav-list.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
  margin-left: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .nav-list.footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width <= 696px) {
  .nav-list.footer {
    gap: 20px 50px;
  }
}
.nav-list .item {
  margin-bottom: 30px;
}
.nav-list .item:last-child {
  margin-bottom: 0;
}
@media screen and (width >= 660px) {
  .nav-list .item {
    margin-bottom: 0;
  }
}
@media screen and (width >= 660px) and (width <= 768px) {
  .nav-list .item {
    margin-left: 20px;
  }
}
@media screen and (width >= 768px) and (width <= 1200px) {
  .nav-list .item {
    margin-left: 30px;
  }
}
@media screen and (width >= 1175px) {
  .nav-list .item {
    margin-left: 100px;
  }
}
.nav-list .item.footer {
  margin: 0;
  display: block;
}
.nav-list .item:first-child {
  margin-left: 0;
}
.nav-list .item .link {
  position: relative;
  padding: 5px;
  color: #25282B;
  font-size: 24px;
}
@media screen and (width >= 660px) {
  .nav-list .item .link {
    font-size: 16px;
  }
}
.nav-list .item .link.footer {
  font-size: 16px;
  color: #FFF;
}
.nav-list .item .link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-in-out;
  border-bottom: 1px solid #2C578F;
}
.nav-list .item .link.footer::after {
  border-color: #FD5;
}
.nav-list .item .link:hover, .nav-list .item .link:focus {
  color: #2C578F;
}
.nav-list .item .link:hover.footer, .nav-list .item .link:focus.footer {
  color: #FD5;
}
.nav-list .item .link:hover::after {
  transform: scaleX(1);
}

.contacts {
  display: none;
  justify-content: flex-start;
}
@media screen and (width >= 980px) {
  .contacts {
    display: block;
    justify-content: flex-start;
  }
}
.contacts .item {
  margin-bottom: 20px;
}
@media screen and (width >= 980px) {
  .contacts .item {
    margin-bottom: 5px;
  }
}
.contacts .item.footer {
  margin-bottom: 30px;
}
.contacts .item:last-child {
  margin-bottom: 0;
}
.contacts .item .link {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 5vw, 18px);
  font-weight: 500;
  color: #FFAC33;
  transition: 250ms;
}
@media screen and (width >= 980px) {
  .contacts .item .link {
    color: #25282B;
    font-size: 14px;
  }
}
.contacts .item .link.footer {
  color: #FFF;
}
.contacts .item .link:hover, .contacts .item .link:focus {
  color: #2C578F;
}
.contacts .item .link:hover.footer, .contacts .item .link:focus.footer {
  color: #FD5;
}

.header-burger-elements:has(.button-header-block.is-open) .contacts .item:last-child {
  margin-bottom: 30px;
}
@media (width >= 660px) {
  .header-burger-elements:has(.button-header-block.is-open) .contacts .item:last-child {
    margin-bottom: 0;
  }
}

.icon-contact {
  fill: #25282B;
  cursor: pointer;
}
.icon-contact:hover {
  fill: #2C578F;
}
.icon-contact.footer {
  fill: #FFF;
}
.icon-contact.footer:hover {
  fill: #FD5;
}
.icon-contact__item {
  margin-right: 8px;
}
@media screen and (width <= 870px) {
  .icon-contact__item {
    display: none;
  }
}
@media screen and (min-width: 1240px) {
  .icon-contact__item {
    margin-right: 10px;
  }
}
.icon-contact__item.envelope {
  width: 16px;
  height: 12px;
}
.icon-contact__item.phone {
  width: 12px;
  height: 18px;
}

.button {
  min-width: 226px;
  padding: 16px;
  text-align: center;
  font-family: inherit;
  border-radius: 12px;
  background-color: #001956;
  color: #FFF;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.button:hover, .button:focus {
  background-color: #FD5;
  color: #000;
  border: 2px solid #000;
}

.btn-burger {
  z-index: 2;
  margin: 0;
  padding: 0;
  margin-left: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media screen and (width >= 660px) {
  .btn-burger {
    display: none;
  }
}

.btn-burger .icon-close {
  opacity: 0;
  transform-origin: center;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.btn-burger.is-open .icon-close {
  z-index: 5;
  opacity: 1;
  transition: 500ms;
  transform: rotate(90deg);
}

.btn-burger .icon-menu {
  opacity: 1;
  transform-origin: center;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.btn-burger.is-open .icon-menu {
  opacity: 0;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}

.btn-burger .icons-mobile-menu:hover,
.btn-burger .icons-mobile-menu:focus {
  fill: #2C578F;
}

.header-burger-elements {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease, opacity 0.1s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 25px;
  background-color: #FFF;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (width >= 660px) {
  .header-burger-elements {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: static;
    max-height: none;
    overflow: visible;
    opacity: 1;
    padding: 0;
  }
}

.header-burger-elements.is-open {
  max-height: 500px;
  opacity: 1;
  box-shadow: 0 2px 2px rgba(179, 178, 178, 0.1);
}

@media screen and (width >= 660px) {
  .button-header-block {
    display: none;
  }
}
.button-header-block.donat-overlay {
  display: none;
}
@media screen and (width >= 768px) {
  .button-header-block.donat-overlay {
    display: block;
  }
}

.desk-join-btn {
  display: none;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .desk-join-btn {
    display: inline-block;
  }
}

.header-burger-elements.is-open .nav-list {
  display: block;
}

.header-burger-elements.is-open .contacts {
  display: block;
}

.header-burger-elements.is-open .button-header-block {
  display: block;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #FFF;
  border-radius: 4px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  transform: translate(-50%, -50%) scale(1);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (width <= 1139px) {
  .modal {
    width: 100%;
    max-width: 450px;
    height: 609px;
  }
}
@media screen and (min-width: 1240px) {
  .modal {
    width: 528px;
    height: 581px;
  }
}

.backdrop {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(47, 48, 58, 0.2);
  opacity: 1;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: scroll;
}
.backdrop.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.backdrop.is-hidden .modal {
  transform: translate(-50%, -50%) scale(0.9);
}

.form-close-btn-position {
  position: absolute;
  top: 0;
  right: 0;
}

.close-form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-top: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: border 250ms cubic-bezier(0.4, 0, 0.2, 1), fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.close-form-btn__icon {
  width: 18px;
  height: 18px;
}
.close-form-btn:hover {
  fill: #2C578F;
}

.modal-content {
  padding: 40px 30px;
}
@media screen and (min-width: 480px) {
  .modal-content {
    padding: 40px;
  }
}
.modal-content #status-cooperation {
  margin: 0;
  margin-top: 12px;
  font-size: 15px;
  text-align: center;
}

.form-paragraph {
  margin: 0;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #25282B;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.form-field label {
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: #757575;
}
.form-field textarea {
  height: 120px;
  padding: 12px 16px;
  border: 1px solid rgba(33, 33, 33, 0.2);
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  resize: none;
}
.form-field textarea:hover, .form-field textarea:focus {
  border: 1px solid #2C578F;
  outline: 1px #2C578F;
}
.form-field textarea::placeholder {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: rgba(117, 117, 117, 0.5);
}

.form-field-input-block {
  position: relative;
}
.form-field-input-block .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.form-field-input-block input {
  width: 100%;
  height: 40px;
  padding-left: 42px;
  font-size: 15px;
  border: 1px solid rgba(33, 33, 33, 0.2);
  border-radius: 4px;
  cursor: pointer;
}
.form-field-input-block input:hover, .form-field-input-block input:focus {
  border: 1px solid #2C578F;
  outline: transparent;
}
.form-field-input-block input:hover + .icon, .form-field-input-block input:focus + .icon {
  fill: #2C578F;
}

.form-field-last {
  margin-bottom: 20px;
}

.block-btn-submit {
  display: flex;
  justify-content: center;
}

.button-hero__form {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.first-title-text {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 600;
  line-height: 1.4;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .first-title-text {
    margin: 0 0 30px;
  }
}
.first-title-text.paragraph {
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 400;
}
.first-title-text.paragraph.br {
  max-width: 800px;
}

.second-title-text {
  display: flex;
  align-items: center;
  margin: 0 0 30px;
  font-size: clamp(26px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.5;
}
.second-title-text.organization {
  font-size: clamp(24px, 3vw, 26px);
  line-height: 1.6;
}
.second-title-text.partners {
  margin-bottom: 50px;
}
.second-title-text.footer {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  text-align: center;
}
@media screen and (width <= 450px) {
  .second-title-text.footer {
    margin: 0 0 20px;
  }
}

.line {
  flex-grow: 1;
  height: 1px;
  margin-left: 30px;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .line {
    margin-left: 50px;
  }
}

.third-title-text {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  color: #25282B;
  font-family: "Montserrat Alternates", sans-serif;
}
.third-title-text.services {
  font-size: clamp(24px, 3vw, 24px);
  margin-bottom: 20px;
  font-weight: 700;
}
.third-title-text.services.projects {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 35px;
}
.third-title-text.members {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.6;
}
.third-title-text.posada {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.8;
}

.paragraph-text {
  margin: 0 0 20px;
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.8;
  color: #25282B;
  font-family: "Montserrat Alternates", sans-serif;
}
.paragraph-text.projects {
  margin-bottom: 35px;
}
.paragraph-text.services {
  margin-bottom: 0;
}
.paragraph-text.questions {
  font-weight: 600;
  margin-bottom: 0;
}
.paragraph-text.questions.active {
  color: #2C578F;
}
.paragraph-text.members {
  margin-bottom: 0;
}

.second-paragraph-text {
  margin: 0 0 20px;
  text-align: center;
  font-size: clamp(16px, 2vw, 16px);
  line-height: 1.8;
}
.second-paragraph-text.testimonials {
  text-align: left;
}
.second-paragraph-text.testimonials.questions {
  margin-bottom: 0;
}
.second-paragraph-text.name {
  text-align: left;
  margin-bottom: 0;
}
.second-paragraph-text.city {
  font-size: clamp(14px, 2vw, 14px);
  margin-bottom: 0;
}
.second-paragraph-text.footer {
  margin-bottom: 0;
  padding-top: 120px;
  color: #FFF;
}

.paragraph-year {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  text-align: center;
  color: #001956;
  font-weight: 500;
  font-size: clamp(48px, 5vw, 40px);
}
@media screen and (width >= 480px) {
  .paragraph-year {
    font-size: clamp(36px, 5vw, 40px);
  }
}

.form-title {
  margin: 0 0 25px;
  font-weight: 600;
  font-size: clamp(20px, 3.5vw, 22px);
  line-height: 1.6;
}

.icon-of-logo-name {
  display: flex;
  align-items: center;
}
@media screen and (width >= 1353px) {
  .icon-of-logo-name {
    margin-bottom: 5px;
  }
}

.logo {
  z-index: 2;
}
.logo .name {
  display: none;
}
@media screen and (width >= 1354px) {
  .logo .name {
    display: block;
    margin-left: 8px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #2C578F;
    text-transform: uppercase;
  }
}
.logo .icon {
  width: 50px;
  height: 50px;
  fill: #2C578F;
  stroke: #FFF;
}
@media screen and (min-width: 768px) {
  .logo .icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (width >= 1354px) {
  .logo .icon {
    width: 45px;
    height: 45px;
  }
}
.logo .form-of-organization {
  display: none;
}
@media screen and (width >= 1354px) {
  .logo .form-of-organization {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 8px;
    font-weight: 500;
    color: #2C578F;
  }
}

.logo-footer .name {
  display: none;
}
@media screen and (width >= 1354px) {
  .logo-footer .name {
    display: block;
    margin-left: 8px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
  }
}
.logo-footer .icon {
  width: 50px;
  height: 50px;
  fill: #FFF;
  stroke: #2C578F;
}
@media screen and (min-width: 768px) {
  .logo-footer .icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (width >= 1354px) {
  .logo-footer .icon {
    width: 45px;
    height: 45px;
  }
}
.logo-footer .form-of-organization {
  display: none;
}
@media screen and (width >= 1354px) {
  .logo-footer .form-of-organization {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 8px;
    font-weight: 500;
    color: #FFF;
  }
}

.overlay {
  align-content: center;
  max-width: 480px;
  height: 550px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(47, 48, 58, 0.4);
  background-image: linear-gradient(to right, rgba(47, 48, 58, 0.7), rgba(47, 48, 58, 0.7)), image-set(url("../../images/overlay-mobile-1x.jpg") 1x, url("../../images/overlay-mobile-2x.jpg") 2x);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .overlay {
    max-width: 1600px;
    height: 600px;
    background-image: linear-gradient(to right, rgba(47, 48, 58, 0.7), rgba(47, 48, 58, 0.7)), image-set(url("../../images/overlay-tablet-1x.jpg") 1x, url("../../images/overlay-tablet-2x.jpg") 2x);
  }
}
@media screen and (min-width: 1240px) {
  .overlay {
    max-width: 1600px;
    height: 700px;
    background-image: linear-gradient(to right, rgba(67, 67, 72, 0.5), rgba(73, 73, 79, 0.5)), image-set(url("../../images/overlay-desktop-1x.jpg") 1x, url("../../images/overlay-desktop-2x.jpg") 2x);
  }
}

.buttons-container {
  display: flex;
}
@media screen and (width >= 768px) {
  .buttons-container .donat-overlay {
    margin-left: 30px;
  }
}

.organization-block {
  display: flex;
  align-items: center;
}
.organization-block .info {
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 50px 0 rgba(53, 65, 91, 0.1);
}
.organization-block img {
  display: none;
  margin-left: 70px;
  border-radius: 20px;
}
@media screen and (width >= 1000px) {
  .organization-block img {
    display: block;
  }
}
.organization-block .button {
  display: block;
  width: 100%;
}

.our-achives {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  justify-items: center;
}

.achive-block {
  position: relative;
  width: 150px;
}

.progress-bar {
  position: absolute;
  bottom: 50px;
  left: 0;
  height: 0.5px;
  background: #001956;
  width: 0%;
  border-radius: 4px;
  transition: width 0.3s;
}

.our-video-block .info-start-of-war {
  max-width: 600px;
}
@media screen and (width >= 900px) {
  .our-video-block .info-start-of-war {
    margin-right: 30px;
  }
}
.our-video-block iframe {
  max-width: 660px;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  border: 1px solid #000;
}
@media screen and (width >= 600px) {
  .our-video-block iframe {
    height: 515px;
  }
}
@media screen and (width >= 900px) {
  .our-video-block {
    display: flex;
    align-items: center;
  }
}

.team-block {
  overflow: hidden;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 50px 0 rgba(53, 65, 91, 0.1);
}
@media screen and (width >= 860px) {
  .team-block .members-cards {
    display: flex;
  }
}

@media screen and (width >= 900px) {
  .team-content {
    display: flex;
    align-items: center;
  }
}
.team-content__info {
  order: 2;
  margin-bottom: 30px;
}
@media screen and (width >= 900px) {
  .team-content__info {
    margin-left: 50px;
    width: 500px;
    margin-bottom: 0;
  }
}

.slide {
  order: 1;
  position: relative;
  z-index: 0;
  height: 50vh;
  color: #fff;
  border: 1px solid #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  cursor: pointer;
  transition: all 500ms ease-in-out;
}
@media screen and (width >= 1000px) {
  .slide {
    height: 70vh;
  }
}
.slide .slide-info {
  position: absolute;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  max-width: 377px;
  transition: opacity 0.1s ease-in 0.1s;
}
@media screen and (width >= 860px) {
  .slide .slide-info {
    opacity: 0;
  }
}
@media screen and (min-width: 480px) {
  .slide .slide-info {
    bottom: 20px;
  }
}
@media screen and (width >= 860px) {
  .slide.active {
    flex: 10;
  }
}
@media screen and (width >= 860px) {
  .slide.active .slide-info {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
  }
}

.member-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  fill: #FFF;
  border-radius: 50%;
  box-shadow: none;
  background-color: #2C578F;
  border: 1px solid #000;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.member-icon:hover, .member-icon:focus {
  fill: #000;
  background-color: #FD5;
}
.member-icon.socials-footer {
  margin-left: 20px;
}
@media screen and (width >= 480px) {
  .member-icon.socials-footer {
    margin-left: 30px;
  }
}
.member-icon.socials-footer .icon-send {
  margin-right: 4px;
}
.member-icon.socials-footer:first-child {
  margin-left: 0;
}

.services-block {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .services-block {
    justify-content: flex-start;
  }
}
.services-block .info {
  padding: 20px;
}
.services-block img {
  border-radius: 0 20px 20px 0;
  width: 100%;
  height: 100%;
}
.services-block .item {
  position: relative;
  flex: 1 1 100%;
  min-width: 280px;
  border: 1px solid #000;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(17, 184, 250, 0.24) 20%, rgba(242, 237, 78, 0.29) 66%);
}
@media screen and (min-width: 768px) {
  .services-block .item {
    flex: 1 1 calc(50% - 15px);
  }
}
@media screen and (min-width: 1240px) {
  .services-block .item {
    flex: 1 1 calc(33.333% - 20px);
  }
}

.icon-arms {
  margin-top: 20px;
  margin-left: 20px;
}

.projects-block .content-block {
  position: relative;
}
.projects-block .content-block video.content {
  max-width: 530px;
  aspect-ratio: 530/483;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.projects-block .content-block iframe.content {
  max-width: 530px;
  aspect-ratio: 530/483;
  height: 483;
  object-fit: cover;
}
.projects-block .content-block.without-margin-one-photo {
  margin-bottom: 80px;
}
@media screen and (width >= 1000px) {
  .projects-block .content-block.one {
    margin-bottom: 80px;
  }
}
.projects-block .content-block:last-child {
  margin-bottom: 50px;
}
@media screen and (width >= 1100px) {
  .projects-block .info {
    display: flex;
    flex-direction: row;
  }
  .projects-block .info.reverse {
    flex-direction: row-reverse;
  }
  .projects-block .info.one-photo {
    align-items: center;
  }
}
.projects-block .content {
  position: absolute;
  margin-bottom: 50px;
  border-radius: 20px;
  border: 1px solid #000;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}
@media screen and (width <= 1099px) {
  .projects-block .content {
    left: 0;
    width: 100%;
    max-width: 530px;
    aspect-ratio: 530/483;
    height: auto;
  }
}
@media screen and (width >= 1100px) {
  .projects-block .content {
    margin-left: 48px;
    margin-bottom: 0;
    top: 0;
    right: 0;
  }
}
.projects-block .content.active {
  position: relative;
  z-index: 1;
  opacity: 1;
}
.projects-block .content.reverse {
  left: 0;
  margin-left: 0;
}
@media screen and (width >= 1100px) {
  .projects-block .content.reverse {
    margin-right: 48px;
  }
}

.arrow-button-block {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: -30px;
}
@media screen and (width >= 1099px) {
  .arrow-button-block.reverse {
    left: 580px;
  }
}

.arrow-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: #FFF;
  cursor: pointer;
}
.arrow-button.left {
  transform: rotate(90deg);
  margin-right: 15px;
}
.arrow-button.right {
  transform: rotate(-90deg);
  margin-left: 15px;
}
.arrow-button:hover, .arrow-button:focus {
  box-shadow: 0 2px 4px rgba(6, 17, 118, 0.08), 0 4px 12px rgba(6, 17, 118, 0.08);
}

.container-points {
  display: flex;
  justify-content: center;
  min-width: 135px;
}

.point {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 10px;
  border: 1px solid #000;
  background-color: #FFF;
}
.point:first-child {
  margin-left: 0;
}
.point.active {
  width: 25px;
  border-radius: 10px;
  background-color: #FD5;
  transition: 250ms;
}
.point.active.reverse {
  background-color: #2C578F;
}

.testimonials-wrapper {
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonials-block {
  flex: 0 0 calc(100% - 10px);
  margin-left: 20px;
  margin-bottom: 30px;
  border-radius: 32px;
  background-color: #F7F8F9;
}
@media screen and (min-width: 768px) {
  .testimonials-block {
    flex: 0 0 calc(50% - 10px);
  }
}
.testimonials-block:first-child {
  margin-left: 0;
}
.testimonials-block .info {
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .testimonials-block .info {
    padding: 30px;
  }
}
.testimonials-block .person {
  display: flex;
  align-items: center;
}
.testimonials-block .person .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 50%;
}

.text-name-city {
  margin-left: 15px;
}

.testimonials-buttons {
  display: flex;
  justify-content: center;
}
.testimonials-buttons .dots {
  width: 17px;
  height: 17px;
  margin-left: 15px;
  border-radius: 50%;
  background-color: #FFF;
  border: 1px solid #000;
  transition: 250ms;
  cursor: pointer;
}
.testimonials-buttons .dots.active {
  background-color: #FD5;
}
.testimonials-buttons .dots.active:hover {
  background-color: #FD5;
}
.testimonials-buttons .dots:first-child {
  margin-left: 0;
}
.testimonials-buttons .dots:hover {
  background-color: #f0e6bd;
}
.testimonials-buttons .dots.mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .testimonials-buttons .dots.mobile {
    display: none;
  }
}

@media screen and (width >= 1000px) {
  .questions-container {
    display: flex;
    justify-content: space-between;
  }
}

.questions-block {
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 50px 0 rgba(53, 65, 91, 0.1);
}
@media screen and (width <= 999px) {
  .questions-block {
    margin-bottom: 40px;
  }
}

.answers-block .item {
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(242, 199, 87, 0.9);
  border-radius: 20px;
  margin-bottom: 20px;
}
@media screen and (width >= 1000px) {
  .answers-block .item {
    width: 700px;
  }
}
.answers-block .item:last-child {
  margin-bottom: 0;
}
.answers-block .item .second-paragraph-text {
  padding: 0 20px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.answers-block .item .second-paragraph-text.active {
  opacity: 1;
}
.answers-block .item .inner-text {
  display: block;
  padding: 10px 0;
  transition: padding 0.3s ease;
}

.question-title {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: transparent;
  border: none;
  border-radius: 20px;
  transition: 250ms;
  padding: 16px;
  cursor: pointer;
}
.question-title .question-arrow-icon {
  fill: #25282B;
  transition: 250ms;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .question-title .question-arrow-icon {
    width: 25px;
    height: 25px;
  }
}
.question-title .question-arrow-icon.active {
  fill: #2C578F;
  transform: rotate(180deg);
}
.question-title:hover, .question-title:focus {
  background-color: #f0e6bd;
}

.our-partners {
  display: grid;
  place-items: center center;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
@media screen and (width <= 390px) {
  .our-partners {
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .our-partners {
    margin-bottom: 50px;
  }
}
.our-partners .item {
  width: 250px;
}
@media screen and (width <= 390px) {
  .our-partners .item {
    width: 235px;
  }
}
.our-partners img {
  width: 250px;
  height: auto;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.our-partners img:hover, .our-partners img:focus {
  transform: translateZ(10px) translateY(-3px);
}
@media screen and (width <= 390px) {
  .our-partners img {
    width: 235px;
  }
}

.form-questions {
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 50px 0 rgba(53, 65, 91, 0.1);
}
@media screen and (width >= 1000px) {
  .form-questions {
    margin-left: 30px;
  }
}
.form-questions #status-question {
  font-size: 16px;
}

#question-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #FD5;
  outline: 1px #FD5;
  border-radius: 5px;
  margin-bottom: 20px;
  cursor: pointer;
}
#question-form textarea {
  width: 100%;
  min-height: 120px;
  padding: 10px;
  border: 1px solid #FD5;
  outline: 1px #FD5;
  border-radius: 5px;
  margin-bottom: 40px;
  resize: none;
  cursor: pointer;
}
#question-form button {
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  padding: 16px;
  font-family: inherit;
  border-radius: 12px;
  background-color: #001956;
  color: #FFF;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
#question-form button:hover, #question-form button:focus {
  background-color: #FD5;
  color: #000;
  border: 2px solid #000;
}

.our-socials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 79, 249, 0.8) 0%, rgba(255, 249, 76, 0.8) 100%);
  border-radius: 30px 30px 0 0;
}
@media screen and (width <= 768px) {
  .our-socials {
    padding: 30px;
  }
}
@media screen and (min-width: 768px) {
  .our-socials {
    padding: 60px 0;
  }
}

.social-links {
  display: flex;
}

.relative-block-for-footer-info {
  position: relative;
}

.footer-block {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #001956;
}
@media screen and (min-width: 768px) {
  .footer-block {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .footer-block__info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.footer-block__info::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #FFF;
}
.footer-block__info .slogan {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #FFF;
}
.footer-block__info__mobile {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .footer-block__info__mobile {
    margin-bottom: 0;
  }
}
.footer-block__info__mobile .slogan {
  font-size: clamp(16px, 2.5vw, 18px);
}
@media screen and (min-width: 768px) and (width <= 1000px) {
  .footer-block__info__mobile .slogan {
    margin-left: 60px;
  }
}
@media screen and (width >= 1001px) {
  .footer-block__info__mobile .slogan {
    margin-left: 100px;
  }
}

.nav-footer-marg {
  margin-left: auto;
}
@media screen and (width >= 1200px) {
  .nav-footer-marg {
    margin-left: 0;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  padding: 8px 13px;
  font-size: 20px;
  background-color: #FD5;
  color: #001956;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  opacity: 0.8;
  z-index: 10;
  transition: opacity 0.3s ease;
}
.scroll-to-top .icon {
  transform: rotate(180deg);
  margin-top: 5px;
}
.scroll-to-top:hover {
  opacity: 1;
}

/*# sourceMappingURL=main.css.map */
