* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Work Sans", sans-serif;
}

p {
  font-size: 18px;
  font-weight: 300;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 70px;
  background: linear-gradient(
    180deg,
    rgba(0, 52, 120, 1) 0%,
    rgba(0, 23, 54, 1) 100%
  );

  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  display: block;
  height: 32px;
}

.header__nav-list {
  display: flex;
  gap: 32px;
}

.header__nav-list li a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.header__nav-list li a:hover {
  opacity: 0.8;
}

.hero {
  position: relative;
  background-image: url("15.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero .p,
.hero .h1 {
  color: #fff;
}

.iti__country-list {
  max-width: 420px;
}

.section__wrapper {
  position: relative;
  z-index: 1;
  padding: 80px 68px;
}

.hero__wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 60px;
}

.hero__content {
  width: 100%;
  max-width: 640px;
}

.hero__title {
  font-size: 42px;
  line-height: 100%;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero__accent {
  font-weight: 700;
}

.hero__text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  max-width: 560px;
}

.hero__form {
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: flex-end;
}

.form__base {
  background: linear-gradient(180deg, #ffffff 0%, #adcee0 100%);
  padding: 24px;
  border-radius: 8px;
}

.form__title {
  color: rgba(0, 52, 120, 1);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}

.form__base-btn {
  background: linear-gradient(180deg, #013579 0%, #0181e0 100%);
  transition: 0.3s all ease-in-out;
}
.form__base-btn:hover {
  background: #fff;
  color: #013579;
}

.about__content {
  box-shadow: 0px 0px 16px 0px rgba(0, 52, 120, 0.16);
  border-radius: 8px;
}

.about__header {
  position: relative;
  background: rgba(0, 52, 120, 1);
  border-radius: 8px 8px 0 0;
  padding: 32px 24px;
}

.about__header::before {
  position: absolute;
  content: "";
  bottom: 10px;
  left: 10px;
  width: 76px;
  height: 68px;
  background-image: url("About.svg");
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.3;
}

.about__title {
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  text-align: center;
}

.about__footer {
  padding: 40px 32px;
}

.about__text {
  color: rgba(0, 52, 120, 1);
  text-align: center;
}

.energy {
  position: relative;
  background-image: url("2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

.divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.energy__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 48px;
}

.energy__content {
  max-width: 460px;
}

.energy__title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 18px;
}

.energy__text {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}

.energy__slider {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.energy__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 28px 40px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  min-height: 140px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.energy__card-text {
  color: #01468d;
  font-size: 18px;
  font-weight: 400;
}

.energy__arrow {
  position: relative;
  z-index: 2;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  border: none;
  background-color: rgba(245, 251, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.energy__arrow--prev {
  position: relative;
  background-image: url("Vector.svg");
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 16px;
  transform: rotate(180deg);
}

.energy__arrow--next {
  position: relative;
  background-image: url("Vector.svg");
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 16px;
}

.energy__dots {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.energy__dot {
  width: 22px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.2s ease, width 0.2s ease;
}

.energy__dot--active {
  background-color: #fff;
  width: 38px;
}

.steps__header {
  margin-bottom: 32px;
}

.steps__title {
  font-size: 42px;
  font-weight: 300;
  color: rgba(0, 52, 120, 1);
  margin-bottom: 12px;
}

.steps__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(0, 52, 120, 1);
}

.steps__grid {
  /*display: grid;*/
  /*grid-template-areas:*/
  /*"a a a"*/
  /*"b c c"*/
  /*"b c c";*/
  display: flex;
  gap: 24px 32px;
  margin-top: 28px;
}

.step-card {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 52, 120, 0.12);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform, box-shadow;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 52, 120, 0.22);
}

.step-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;
  color: #ffffff;
}

.step-card__header1 {
  position: relative;
  background: rgba(0, 52, 120, 0.8);
}
.step-card__header1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  background-image: url("steps1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.step-card__header2 {
  position: relative;
  background: rgba(0, 52, 120, 0.8);
}
.step-card__header2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  background-image: url("steps2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.step-card__header3 {
  position: relative;
  background: rgba(0, 52, 120, 0.8);
}
.step-card__header3::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  background-image: url("steps2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.step-card__header4 {
  position: relative;
  background: rgba(0, 52, 120, 0.8);
}
.step-card__header4::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  background-image: url("steps1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.step-card__badge {
  position: absolute;
  left: 5px;
  top: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
}

.step-card__title {
  font-size: 24px;
  font-weight: 300;
}

.step-card__body {
  padding: 38px 16px;
}

.step-card__text {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: rgba(0, 52, 120, 1);
}

.why {
  background-image: url("13.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.why__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 40px;
}

.why__title-block {
  max-width: 100%;
}

.why__title {
  font-size: 42px;
  font-weight: 300;
}

.why__content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.why__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.why__line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7px;
  background: rgba(58, 61, 68, 1);
  border-radius: 999px;
}

.why__circle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 7px solid rgba(58, 61, 68, 1);
  background: rgba(174, 207, 225, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
body
  > main
  > section.why
  > div
  > div.why__content
  > div.why__timeline
  > div:nth-child(2) {
  border: 7px solid rgba(121, 131, 139, 1);
}

.why__items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 520px;
  min-height: 100%;
}

.why__item-title {
  font-size: 24px;
  font-weight: 400;
}

.why__item-text {
  font-size: 16px;
  font-weight: 300;
  max-width: 520px;
}

.faq__wrapper {
  display: flex;
  justify-content: center;
}

.faq__title {
  font-size: 18px;
  font-weight: 500;
  color: #808da7;
  margin-bottom: 18px;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  background: rgba(245, 251, 255, 1);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(230, 239, 244, 1);
}

.faq-item__header {
  width: 100%;
  padding: 24px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-item__question {
  text-align: left;
  font-size: 24px;
  font-weight: 300;
  color: rgba(0, 52, 120, 1);
}

.faq-item__toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #c6d9ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #8cacce;
  transition: background-color 0.25s ease, color 0.25s ease,
    transform 0.25s ease;
}

.faq-item__content {
  padding: 0 18px 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.faq-item__answer {
  padding-bottom: 16px;
  font-size: 18px;
  font-weight: 300;
  color: rgba(0, 52, 120, 1);
}

.faq-item:hover {
  background: #edf5fe;
  box-shadow: 0 6px 14px rgba(0, 52, 120, 0.12);
}

.faq-item--active {
  background: #edf5fe;
}

.faq-item--active .faq-item__content {
  max-height: 200px;
  opacity: 1;
}

.faq-item--active .faq-item__toggle {
  background-color: #8cacce;
  color: #ffffff;
  transform: rotate(180deg);
}

.hero--second {
  background-image: url("rob1.jpg");
  background-size: cover;
  background-color: #D7D7D7;
  border-top: 3px solid rgba(0, 52, 120, 1);
  border-bottom: 3px solid rgba(0, 52, 120, 1);
  padding: 6rem 0
}

.second--title {
  display: none;
}

.hero--second .divider {
  display: none;
}

@media (max-width: 700px) {
  .hero--second {
    background-image: url("test.png");
  }
  
  .hero--second .divider {
    display: block;
  }
  
  .second--title {
    display: flex;

  }
  
  .second--title h2 {
        color: white;
    text-align: center;
  }
  
}

.hero--second .hero__wrapper {
  justify-content: space-around;
}

.hero.hero--second .hero__content p,
.hero.hero--second .hero__content h2 {
  color: rgba(0, 52, 120, 1) !important
}

.hero.hero--second .hero__form .form__base {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #adcee0 0%, #fff 100%);
}

.hero.hero--second .hero__form .form__title {
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
}

.logo__link {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  gap: 1rem
}

.footer__logo {
  color: white;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  gap: 1rem
}

.hero__title--second,
.hero__text--second {
  color: #ffffff;
}

.hero__title--second {
  max-width: 520px;
}

.hero__text--second {
  max-width: 520px;
  margin-top: 12px;
}

.footer {
  background: linear-gradient(119.14deg, #0189c1 0%, #013579 60.08%);
  color: #ffffff;
}

.footer__wrapper {
  padding-top: 48px;
  padding-bottom: 32px;
}

.footer__top {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer__brand {
  min-width: 160px;
  margin-bottom: 28px;
}

.footer__logo img {
  height: 32px;
  display: block;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 32px;
  width: 100%;
}

.footer__col-title {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__list a {
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer__list a:hover {
  opacity: 1;
}

.footer__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__badges img {
  display: block;
  height: 56px;
  object-fit: contain;
}

.footer__divider {
  margin-top: 24px;
  margin-bottom: 12px;
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.45);
}

.footer__bottom {
  display: flex;
  justify-content: flex-start;
}

.footer__legal {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.9;
}

.header__burger {
  display: none;
  width: 32px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  margin-bottom: 6px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__burger span:last-child {
  margin-bottom: 0;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  transform: translateY(-100%);
  background: linear-gradient(180deg, #ffffff 0%, #adcee0 100%);
  color: #ffffff;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.mobile-menu--open {
  transform: translateY(0);
}

.mobile-menu__top {
  background: linear-gradient(180deg, #013579 0%, #011837 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 16px 20px;
}

.mobile-menu__logo img {
  height: 28px;
  display: block;
}

.mobile-menu__close {
  border: none;
  background: transparent;
  font-size: 26px;
  color: #ffffff;
  cursor: pointer;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

.mobile-menu__list a {
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 52, 120, 1);
}

@media (max-width: 768px) {
  .header {
    padding: 10px 20px;
  }

  .hero--second {
    background-size: cover;
  }

  .why__timeline {
    height: -webkit-fill-available !important;
  }

  .steps__grid {
    flex-direction: column;
  }

  .header__nav-list {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .nav__right {
    display: none;
  }
}

.footer__legal a {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer__cols {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    row-gap: 24px;
  }

  .footer__middle {
    flex-direction: column;
    align-items: flex-start;
  }
  .why__items {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .footer__wrapper {
    padding-inline: 24px;
  }

  .footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .footer__cols {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .footer__badges {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }

  .footer__middle {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .faq-item__header {
    padding-inline: 14px;
  }

  .faq-item__question {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .why__content {
    flex-direction: row;
    align-items: flex-start;
  }

  .why__wrapper {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .why__content {
    flex-direction: row;
  }

  .why__title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .why__circle {
    width: 56px;
    height: 56px;
  }

  .why__item-title {
    font-size: 17px;
  }

  .why__item-text {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .steps__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .steps__title {
    font-size: 26px;
  }

  .steps__subtitle {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .energy__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .energy__slider {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .energy__title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .energy__wrapper {
    gap: 32px;
  }

  .energy__card {
    padding: 22px 24px;
  }

  .energy__card-text {
    font-size: 16px;
  }

  .energy__arrow {
    min-width: 32px;
    min-height: 32px;
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 12px 32px;
  }

  .section__wrapper {
    padding: 50px 32px 60px;
  }

  .hero__wrapper {
    gap: 40px;
  }

  .hero__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 20px;
  }

  .header__nav-list {
    gap: 18px;
    font-size: 14px;
  }

  .section__wrapper {
    padding: 40px 20px;
  }

  .about__header::before {
    bottom: -10px;
    left: -10px;
  }

  .hero__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__form {
    max-width: 100%;
    justify-content: center;
  }

  .form__base {
    max-width: 380px;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .header__nav-list {
    display: none;
  }

  .hero__title {
    font-size: 30px;
  }

  .hero__text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .footer__wrapper {
    padding-inline: 20px;
  }

  .footer__top {
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
  }

  .footer__col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .footer__col-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 14px 0;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .footer__col-title::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-bottom: 5px;
    border-left: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
  }

  .footer__list {
    display: none;
    padding: 0 0 12px 20px;
    gap: 10px;
  }

  .footer__col--open .footer__list {
    display: flex;
  }

  .footer__col--open .footer__col-title::before {
    transform: rotate(135deg);
  }

  .footer__middle {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__badges {
    justify-content: center;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}
