* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}
html, body {
    width: 100%;
    overflow-x: auto;
  }
  
  .container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
  }
  
  
.header {
  position: absolute;
  top: 0;
  left: 0;
}

.header__menu-container {
  max-width: none;
  width: 100%;
}

.header__container {
  height: auto;
  min-height: 89px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(-90deg, #002e4c 19%, #00497a 54%, #bbbbbb 100%);
}

.header__nav {
  width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 320px;
  position: relative;
  top: 15px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  margin-left: 30px;
}

.header__logo-name {
  width: 230px;
  font-size: 16px;
  color: #000073;
  font-weight: 600;
  padding-top: 10px;
}

.text-uppercase {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.header__logo-img {
  position: relative;
  top: 0;
  width: 87px;
  height: 103px;
  z-index: 2;
}

.header__menu {

  display: flex;
  gap: 30px;
  flex-grow: 1;
  justify-content: end;
  font-weight: 500;
  margin-right: 100px;
  align-items: center;
}

.drop-down-menu ul li {
  position: relative;
  float: left;
}

.drop-down-menu ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  display: block;
  transition: max-height 0.5s ease;
}

.drop-down-menu ul li a:hover {
  color: #5f7cff;
}

.drop-down-menu ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: #00497aa4;
  font-weight: 400;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  border-radius: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.5s ease-out, opacity 0.3s ease-out,
    visibility 0.3s ease-out;
}

.drop-down-menu ul li ul li {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
}

.drop-down-menu ul li ul :hover {
  background: #002e4c;
}

.drop-down-menu ul li:hover > ul {
  max-height: 350px;
  border-radius: 10px;
  opacity: 1;
  visibility: visible;
}

.header__flag {
  width: 50px;
  height: 40px;
  border: none;
  background: linear-gradient(to top, #f5d535 50%, #000073 50%);
}

.header::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #f5d535;
}

.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #1f89cf;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  background-color: #134b70;
  transition: transform 0.5s;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__btn-close {
  position: absolute;
  top: 16px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  fill: transparent;
  background-color: transparent;
  cursor: pointer;
}

.mobile-menu__logo {
  margin: 32px 10px;
  width: 230px;
  gap: 10px;
  font-size: 10px;
  height: 60px;
  display: flex;
}

.mobile-menu__logo-name {
  color: #fff;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fff;
  margin-left: 32px;
}

.mobile-menu__link {
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.menu-btn-open {
  display: none;
}

.mobile-menu__link {
  color: #fff;
}
.section {
  width: 100%;
  padding: 100px 0;
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #cfcfcf;
  padding: 100px 0 100px 100px;
  width: 100%;
}

.hero-section__content {
  display: flex;
  justify-content: space-between;
}

.hero-section__inform {
  width: 48%;
  margin-top: 50px;
}

.hero-section__title {
  font-size: 3vw;
}

.hero-section__title-uppercase {
  text-transform: uppercase;
  color: #134b70;
}

.text-uppercase-blue {
  text-transform: uppercase;
  color: #134b70;
  font-weight: 500;
}

.hero-section__text {
  width: 60%;
  margin: 80px 0;
}

.hero-section__btn {
  font-size: 20px;
  color: #134b70;
}

.hero-section__image {
  width: 560px;
  height: auto;
  object-fit: cover;
  margin: 50px 30px 0 0;
  border-radius: 70px;
  width: 700px;
  height: 480px;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: linear-gradient(
      102.76deg,
      rgba(18, 18, 17, 0.551) 2.03%,
      rgba(18, 18, 17, 0.414) 58.46%,
      rgba(18, 18, 17, 0) 90.36%
    ),
    url(../img/hero/hero-section__img.jpeg);
}

.section-title {
  font-size: 48px;
  color: #134b70;
  text-align: center;
  font-weight: 500;
}

.activity-section__content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px auto;
  max-width: 1400px;
  padding: 0 20px;
}

.activity-sectiona__inform {
  max-width: 320px;
  height: 415px;
  background-color: #9d9b9b;
  border-radius: 50px;
  color: #fff;
  margin: 0 auto;
}

.activity-sectiona__inform-name {
  max-width: 300px;
  font-size: 32px;
  font-weight: 600;
  margin: 5px;
}

.activity-sectiona__inform-text {
  width: 300px;
  padding: 5px;
}

.activity-sectiona__inform-img {
  width: 100%;
  height: 200px;
  border-radius: 50px 50px 0 0;
}

.gallery-section {
  background-color: #e4e2e2;
}

.swiper {
  width: 90%;
  max-width: 1200px;
  position: relative;
  display: flex;
}

.swiper-wrapper {
  display: flex;
  margin: 40px;
}

.swiper-content {
  margin: 0 auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 1;
  width: auto;
  overflow: hidden;
}

.swiper-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide__img {
  width: 350px;
  height: 380px;
  object-fit: cover;
  border-radius: 30px;
}

.swiper-btn-next,
.swiper-btn-prev {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 30px;
  border: 1px solid rgba(0, 0, 0, 0.427);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-btn-next {
  right: 10px;
}

.swiper-btn-prev {
  left: 10px;
}

.partners-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  gap: 20px;
}

.partners-section__row {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.partners-section__link {
  display: block;
  width: 100%;
}
.partners-section__link-sestem {
  cursor: default;
}
.partners-section__row:nth-child(2) {
  justify-content: space-evenly;
  width: 90%;
}

.partners-section__img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 20px 0;
}
.contact-section {
  padding-bottom: 96px;
  margin: 0 auto;
  background-color: #cfcfcf8c;
}

.contact-section__title {
  color: #201e43;
  font-size: 3vw;
  font-weight: 600;
}

.contact-section__container {
  display: flex;
  gap: 24px;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 0 150px;
  margin: 0 50px;
}

.contact-section__map {
  border: none;
  margin: 0 -24px;
  border-radius: 16px;
  width: 100%;
}
.contact-section__form {
  width: 100%;
}
.contact-section__text {
  padding-bottom: 30px;
}
.contact-section__form-field {
  margin-bottom: 24px;
}
.input__control {
  padding: 16px 42px;
  width: 100%;
  font-size: 16px;
  line-height: 1.17;
  border: 1px solid #201e43;
  border-radius: 8px;
  background-color: transparent;
  resize: none;
}
.visually-hidden {
  position: absolute;
  left: -1000px;
  top: auto;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.contact-section__button {
  display: block;
  width: 238px;
  height: 59px;
  color: #fff;
  background-color: #134b70;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  margin: 0 auto;
  transition: 0.5s ease;
}
.contact-section__button:hover {
  background-color: #cfcfcf8c;
  color: #000073;
  border: 1px solid #002e4c;
  transition: 0.5s ease;
}

.footer {
  position: relative;
  background: linear-gradient(90deg, #b0b0b0 0%, #7fa4cf 30%, #134b70 80%);
}
.footer__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding-top: 30px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footrer__logo-img {
  width: 70px;
  height: auto;
}
.footer__logo-name {
  max-width: 300px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-align: left;
}
.footer-uppercase {
  text-transform: uppercase;
  color: #000073;
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  color: #fff;
  gap: 50px;
}

.footer__menu-list {
  color: #fff;
}
.footer__menu-list:hover {
  text-decoration: underline;
  color: #000073;
}
.footer__address {
  text-align: right;
}
.footer__address-contacts {
  display: flex;
  text-align: left;
  line-height: 2;
  justify-content: center;
}

.footer__address-link {
  color: #fff;
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  transition: opacity 0.3s ease;
}

.footer__address-link:hover {
  opacity: 0.7;
}
.footer__menu-author{
  color: #d8d8d8;
  font-size: 14px;
  margin-top: 50px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
 
  .header__menu {
    display: none;
  }
  .header__logo{
    width: auto;
  }
  .menu-btn-open {
    display: flex;
    align-items: center;
    border: none;
    background: none;
    cursor: pointer;
  }

  .menu-btn-close {
    border: none;
    background: none;
  }

  .drop-down-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .drop-down-menu ul li {
    position: relative;
    flex: 0;
  }

  .drop-down-menu ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    display: block;
  }

  .drop-down-menu ul li a:hover {
    font-weight: 600;
  }

  .drop-down-menu ul li ul {
    position: relative;
    top: 0;
    left: 20px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .drop-down-menu ul li ul li {
    padding: 0;
    border: none;
  }

  .drop-down-menu ul li:hover > ul {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
  }

  .drop-down-menu ul li ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 400;
  } 
  
    .hero-section__image{
      position: relative;
    }
    .footer__container{
      padding: 20px 80px 0 80px;
  }

}

@media screen and (max-width: 767px) {

.contact-section__container{
  margin: 0 10px;
}
  .section-title{
    font-size: 32px;
    padding-bottom: 20px;
  }

  .activity-section__inform-name {
    font-size: 24px;
  }

  .activity-section__inform-text {
    font-size: 14px;
  }
  .contact-section__container {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .contact-section__form {
    width: 100%;
  }
.contact-section__title{
  font-size: 24px;
}
  .contact-section__map {
    width: 90vw;
    height: 200px;
  }
  .contact-section__button{
      width: 70%;
  }

  .footer__container {
    padding: 0;
  }
  .footrer__logo-img {
    height: auto;
  }
  .footer__logo-name{
    font-size: 14px;
  }
  .activity-section__content {
    margin: 10px;
    justify-content: center;
  }

  .activity-sectiona__inform {
    max-width: 280px;
    margin-top: 10px;
    height: 415px;
    background-color: #9d9b9b;
    border-radius: 50px;
    color: #fff;
    margin: 0 auto;
  }
  .activity-sectiona__inform-text {
    width: 100%;
  }
  .activity-sectiona__inform-name {
    font-size: 24px;
  }
  .header__logo {
    margin-left: 10px;
  }
  .header__logo-name {
    width: 100px;
    font-size: 10px;
    padding-top: 0;
  }
  .header__logo-img {
    width: 70px;
    height: auto;
  }
  .hero-section {
    padding: 100px 0 30px 10px;
    height: 100vh;
  }

  .hero-section__inform {
    width: 100%;
  }
  .hero-section__title {
    font-size: 9vw;
  }
  .hero-section__text {
    width: 100%;
  }
  .hero-section__image {
    display: none;
  }

  .footer__nav {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer__container {
    align-items: center;
    padding: 0;
  }
  .footer__logo-name{
    width: 200px;
  }
  .footer__logo{
    justify-content: center;
  }
  .swiper-slide__img {
    max-width: 230px;
    height: 350px;
    margin: 0 auto;
  }

  .swiper-btn-next,
  .swiper-btn-prev {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .footer__menu-author{
    position: absolute;
    bottom: 0;
  }
  .footer__address-contacts{
    text-align: center;
    padding-bottom: 30px;
    
} 
.footer__address-contacts{
  text-align: center;
} 


} 

@media screen and (max-width: 480px) {
  .swiper-btn-next, .swiper-btn-prev{
    display: none;
  }
  .hero-section {
    height: 100vh;
  }
  .activity-section__content{
    padding: 0;
  }
 
}