@import url("null.css");

body {
  font-family: "Roboto", sans-serif;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
}
header.header__page {
  position: static;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.header__logo {
  height: 100%;
  padding: 15px 0;
}
.container {
  max-width: 1260px;
  margin: 0 auto;
  height: 100%;
  padding: 0 30px;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo__pc {
  height: 100%;
}

.header__start {
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: #ffffff8f;
  padding: 6px 30px;
  border-radius: 100px;
  color: #002e5b;
  font-size: 19px;
}

.section__hero {
  padding-top: 100px;
  position: relative;
}
.section__hero::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1;
}
.section__hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
  object-fit: cover;
}

.section__hero__content {
  padding-top: 70px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}

.section__hero__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  max-width: 775px;
}

.section__hero__info h1 {
  line-height: 48px;
  font-size: 40px;
  font-family: Roboto, sans-serif;
  color: #002e5b;
  background-image: linear-gradient(110deg, #083662, #336699);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__hero__info__subtitle {
  font-size: 18px;
  color: #002e5b;
  padding: 9px 18px;
  border-radius: 18px;
  background: #e1f0fa;
}

.section__hero__info__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.section__hero__info__list__item {
  font-size: 20px;
  color: #666677;
  display: flex;
  gap: 14px;
  align-items: center;
}

.section__hero__info__list__item i {
  font-size: 25px;
  color: #08b200;
}

.btn {
  padding: 18px 25px;
  color: #ffffff;
  background-color: #ff9000;
  background-image: linear-gradient(to right, #ff9000 0%, #ffb23f 50%, #ff9000 100%);
  font-size: 19px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.section__hero__disclaimer {
  background: #ffffff;
  box-shadow: 2px 2px 15px 0px rgba(102, 102, 119, 0.15);
  border-radius: 3px;
  padding: 40px;
  border: 1px solid transparent;
  display: flex;
  gap: 30px;
  align-items: center;
  width: 100%;
}

.section__hero__disclaimer__text {

  color: #666677;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section__hero__disclaimer__text h3 {
  color: #0b3b5b;
  font-size: 22px;
  font-weight: 400;
}

.section__hero__disclaimer__text p {
  font-size: 15px;
  line-height: 1.75;
}

.section__participants {
  padding-top: 80px;
}

.section__participants__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.section__participants__content h2 {
  color: #0b3b5b;
  text-align: center;
  font-size: 24px;
}

.section__participants__content h3 {
  color: #0b3b5b;
  font-size: 24px;
  line-height: 42px;
  max-width: 550px;
  text-align: center;
}

.section__participants__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.section__participants__items__item {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.section__participants__items__item h4 {
  color: #0b3b5b;
  font-size: 17px;
}

.section__participants__items__item p {
  font-style: italic;
  color: #666677;
  font-size: 17px;
  line-height: 30px;
}

.section__participants__items__item__img {
  max-width: 320px;
  width: 100%;
  border-radius: 5px;
  height: 140px;    object-fit: cover;
}
.section__about {
  margin-top: 120px;
  padding: 80px 0;
  background-color: #002e5b;
}

.section__about__content {
  display: grid;
  grid-template-columns: minmax(300px, 380px) auto;
  gap: 30px;
}
.section__about__content__img {
  width: 100%;
  max-width: 380px;
  min-width: 300px;
}
.section__about__content__text {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section__about__content__text h2 {
  font-size: 32px;
}
.section__about__content__text p {
  font-size: 17px;
  line-height: 30px;
}
.section__about__content__text__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section__about__content__text__list__item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.section__about__content__text__list__item i {
  font-size: 25px;
}
.section__about__content__text__list__item b {
  font-weight: 500;
}
.section__about__content__text__list__item p {
  font-size: 17px;
}

.section__programs {
  padding: 60px 0;
}

.section__programs__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.section__programs__content__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 790px;
  text-align: center;
}
.section__programs__content__head h2 {
  color: #0b3b5b;
  font-size: 28px;
}
.section__programs__content__head p {
  color: #666677;
  font-size: 18px;
  line-height: 32px;
}
.section__programs__grid {
  display: grid;
  gap: 120px;
}
.section__programs__grid__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.section__programs__grid__item:nth-child(even) > *:first-child {
  order: 2; /* Перший дочірній елемент переміщається на другу позицію */
}

.section__programs__grid__item:nth-child(odd) .section__programs__grid__item__img {
  margin-right: auto;
}

.section__programs__grid__item:nth-child(even) .section__programs__grid__item__img {
  margin-left: auto;
}

.section__programs__grid__item__img {
  width: 100%;
  max-height: 350px;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}
.section__programs__grid__item__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section__programs__grid__item__text h3 {
  font-size: 28px;
  line-height: 36px;
  color: #0b3b5b;
}
.section__programs__grid__item__text p {
  color: #666677;
  font-size: 18px;
  line-height: 32px;
}
.section__disclaimer {
  margin-top: 80px;
  background: -webkit-linear-gradient(top, rgb(0, 46, 91) 0%, rgb(0, 40, 77) 100%);
  position: relative;
  overflow: hidden;
}
.section__disclaimer::before {
  position: absolute;
  left: -20px;
  bottom: -150px;
  width: 100%;
  height: 200px;
  background-color: #fff;
  content: "";
  rotate: 6deg;
}
.section__disclaimer::after {
  position: absolute;
  right: -20px;
  bottom: -150px;
  width: 100%;
  height: 200px;
  background-color: #fff;
  content: "";
  rotate: -6deg;
}

.section__disclaimer__content {
  padding-top: 70px;
  padding-bottom: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 32px;
  font-size: 18px;
  color: #fff;
  max-width: 770px;
  margin: 0 auto;
  gap: 20px;
}

.section__disclaimer__content h2 {
  font-size: 34px;
  line-height: 60px;
}
.section__consult {
  background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 100%);
}

.section__consult__content {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.section__consult__content h2 {
  color: #0b3b5b;
  font-size: 28px;
}
.section__consult__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.section__consult__body__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section__consult__body__list__item {
  display: flex;
  gap: 15px;
}
.section__consult__body__list__item img {
  width: 70px;
  height: 70px;
}
.section__consult__body__list__item__text {
  font-size: 17px;
  line-height: 27px;
  color: #666677;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.section__consult__body__list__item__text h4 {
  color: #0b3b5b;
  font-size: 22px;
}

.section__remark {
  margin-top: 60px;
  background: rgb(247, 247, 247);
}

.section__remark__content {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 18px;
  line-height: 32px;
  color: #666677;
  max-width: 790px;
  margin: 0 auto;
}
.section__remark__content h2 {
  color: #0b3b5b;
  font-size: 28px;
}
.section__remark__list {
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 20px;
}

.section__info {
  padding: 80px 0;
}

.section__info__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.section__info__text h2 {
  color: #0b3b5b;
  font-size: 28px;
}
.section__info__text {
  font-size: 18px;
  line-height: 32px;
  color: #666677;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section__info__img {
  width: 100%;
}
footer {
  background-color: #002e5b;
  padding: 70px 0;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}
footer h5 {
  font-size: 18px;
  color: #fff;
}

.footer__items {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(150px, 250px) minmax(150px, 250px) auto auto;
  gap: 30px;
}
.footer__item {
  display: flex;
  gap: 130px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__logos {
  margin: 0 auto;
  max-height: 125px;
}
.footer__logos__text {
  text-align: center;
}
.footer__item:has(.footer__logos) {
  align-items: center;
}
.footer__link {
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
}
.footer__link:hover {
  color: #3498db;
}
.footer__copy {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.footer__copy a {
  padding-left: 10px;
  position: relative;
}
.footer__copy a::before {
  content: "–";
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
}
.footer__copy a:nth-child(2) {
  padding: 0;
}
.footer__copy a:nth-child(2)::before {
  content: none;
}
.section__page__content {
  padding: 60px 0;
}
.section__page__content h1,
.section__page__content h2,
.section__page__content h3 {
  line-height: 48px;
  font-size: 40px;
  color: #002e5b;
  margin: 15px 0;
}
.section__page__content h2 {
  font-size: 32px;
}
.section__page__content h3 {
  font-size: 24px;
}
.section__page__content p,
.section__page__content ul,
.section__page__content ol {
  color: #666677;
  font-size: 18px;
  line-height: 32px;
}
@media (max-width: 992px) {
  header {
    height: 70px;
  }
  .header__logo {
    padding: 5px 0;
  }

  .header__start span {
    display: none;
  }

  .header__start {
    padding: 6px 10px;
    font-size: 30px;
  }

  .section__hero {
    padding-top: 70px;
  }

  .section__hero__content {
    padding-top: 50px;
  }

  .section__hero__info__subtitle {
    padding: 7px 12px;
    font-size: 14px;
  }

  .section__hero__info {
    gap: 15px;
  }

  .section__hero__info h1 {
    font-size: 26px;
    line-height: 32px;
  }

  .section__hero__info__list__item {
    align-items: flex-start;
    font-size: 16px;
  }

  .section__hero__disclaimer {
    flex-direction: column;
  }
  .section__about__content {
    grid-template-columns: 1fr;
  }
  .section__about__content__img {
    margin: 0 auto;
  }

  .section__about__content__text h2 {
    font-size: 28px;
  }
  .section__about__content__text p {
    font-size: 17px;
    line-height: 30px;
  }
  .section__about__content__text__list {
    gap: 7px;
  }
  .section__about__content__text__list__item {
    align-items: flex-start;
  }
  .section__about__content__text__list__item i {
    margin-top: 6px;
  }
  .section__consult__body {
    grid-template-columns: 1fr;
  }
  .section__consult__body__img {
    margin: 0 auto;
  }
  .section__info__content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .section__programs__grid {
    gap: 80px;
  }
  .section__programs__grid__item:nth-child(odd) .section__programs__grid__item__img {
    margin: 0 auto;
  }
  .section__programs__grid__item:nth-child(even) .section__programs__grid__item__img {
    margin: 0 auto;
  }
  .section__programs__grid__item {
    grid-template-columns: 1fr;
  }
  .footer__item {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .section__hero__disclaimer {
    padding: 16px;
  }
  .section__about__content__img {
    width: 100%;
  }
  .footer__items {
    grid-template-columns: 1fr;
  }
}
.section__thanks {
  padding: 100px 0;
  color: #002e5b;
  text-align: center;
}

.section__thanks__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.section__thanks__content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.section__thanks__content p {
  font-size: 18px;
  line-height: 1.6;
  color: #666677;
}

.section__thanks__content a {
  text-decoration: none;
}

@media (max-width: 992px) {
  .section__thanks {
    padding: 70px 0;
  }

  .section__thanks__content h1 {
    font-size: 36px;
  }

  .section__thanks__content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .section__thanks__content {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .section__thanks__content h1 {
    font-size: 28px;
  }

  .section__thanks__content p {
    font-size: 14px;
  }
}
.section__contact {
  padding: 80px 0;
}
.container {
}
.section__contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #666677;
  font-size: 18px;
  line-height: 32px;
}
.section__contact__content h1 {
  color: #002e5b;
  line-height: 48px;
  font-size: 40px;
}
.section__contact__content__form {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: 1px solid #002e5b;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.section__contact__field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
label {
  color: #002e5b;
}
input {
  background-color: #f5f8fa;
  border-radius: 5px;
  border: 1px solid #666677;
  outline: none;
  padding: 2px 12px;
}
input:focus {
  outline: none;
  border: 1px solid #002e5b;
}
.section__contact__content__form .btn {
  margin-top: 20px;
  padding: 8px 25px;
}
.fa {
}
.fa-long-arrow-right {
}
.loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loader-spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #ff9000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
