* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: degular, sans-serif;
    font-weight: 400;
    font-style: normal;
}


.bolt_text {
  font-weight: 900;

}

.black_font {
  color: black;
}

/* sidebar */

nav {
  position: fixed;
  padding: 5px;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;

  .nav__logo {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 75px;

    img {
      width: 70%;
      cursor: pointer;
    }

  }

  .nav__menu {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30px;

    svg {
      fill: white;
      cursor: pointer;
    }
  }
}

.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: fixed;
  transition: 0.25s transform;
  z-index: 10000;
  top: 0;

  transform: translateX(100vw);
  width: 300px;
  box-sizing: border-box;
  height: 100vh;
  background: linear-gradient(120deg, rgb(251, 98, 48) 0%, rgb(252, 91, 65) 40%, rgb(252, 120, 79) 60%, rgb(252, 169, 54) 100%);

  ul {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    list-style: none;
    padding-bottom: 30px;

    li {
      font-size: 24px;
      color: white;
      font-weight: 400;
      cursor: pointer;
      position: relative;

      a {
        color: white;
        text-decoration: none;
      }

      &::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 0%;
        height: 2px;
        background-color: white;
        transition: all .5s;
      }

      &:hover::after {
        width: 100%;
      }
    }

    .close-menu {
      align-self: flex-end;
      fill: white;
      width: 10%;
      cursor: pointer;
    }
  }

  .socials-menu {
    position: relative;

    li {
      position: relative;

      &::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 0%;
        height: 2px;
        background-color: white;
        transition: all .5s;
      }

      &:hover::after {
        width: 100%;
      }
    }
  }

  .socials-menu::before {
    content: '';
    position: absolute;
    width: 80%;
    top: -4vh;
    left: 10%;
    height: 20px;
    border-top: solid 2px white;
  }
}

.active {
  transition: 0.25s transform;
  transform: translateX(calc(100vw - 300px)) !important;
}

.collapsed {
  transition: 0.25s transform;
  transform: translateX(-300px);
}

.sections-wrapper {
  width: 100vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: 0.25s transform;

}

/* main-content */

.contact-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  

  background: linear-gradient(120deg, rgb(251, 98, 48) 0%, rgb(252, 91, 65) 40%, rgb(252, 120, 79) 60%, rgb(252, 169, 54) 100%);
 
  .nebula-container {
    max-width: 100%; /* Адаптивная ширина */
    width: 400px; /* Сделаем шире */
    padding: 20px; /* Просторный внутренний отступ */
    background: linear-gradient(135deg, #ffffff, #f3f4f6); /* Современный градиент */
    box-shadow: 0 8px 30px rgba(180, 169, 169, 0.15); /* Выразительная тень */
    border-radius: 20px; /* Закругленные углы */
    margin: 50px 0 50px 0; /* Смещение влево */
    transition: transform 0.3s, box-shadow 0.3s; /* Анимация при наведении */
    font-family: 'Arial', sans-serif; /* Новый шрифт */
    font-size: 14px; /* Размер шрифта */
    color: #333; /* Цвет текста */
}

.nebula-container:hover {
    transform: scale(1.05); /* Легкое увеличение при наведении */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Более выраженная тень */
}

input:focus, textarea:focus {
    outline: none; /* Убираем стандартную обводку */
    border: 2px solid #ff6f00; /* Добавляем современную обводку */
    box-shadow: 0 0 5px rgba(255, 111, 0, 0.5); /* Легкое свечение */
    transition: border-color 0.3s, box-shadow 0.3s; /* Анимация при фокусе */
}

@media (max-width: 480px) {
    .nebula-container {
        width: 100%; /* Уменьшение ширины на маленьких экранах */
        padding: 20px; /* Уменьшение отступов */
    }
}
  .section-wrapper {
    padding: 5vh ;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
  }

  .contact-section__title {
    font-size: 4vh;
    line-height: 4.5vh;
    font-weight: unset;
    color: white;
  }

  .contact-section__copy {
    font-size: 16px;
    line-height: 24px;
    color: white;
  }
  
  .columns-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact__column {
    width: 100%;
    color: white;
    padding-bottom: 15px;
    .column__title {
      font-size: 15px;
      line-height: 18px;
      font-weight: 700;
    }

    p {
      font-size: 15px;
      line-height: 18px;

      a {
        text-decoration: none;
        color: white;
      }

      a:hover {
        border-bottom: 2px solid white;
      }
    }
  }

  footer {
    background-color: #FF3B00;
    box-shadow: inset 0px 25px 30px -13px rgba(0, 0, 0, 0.3);
    display: flex;
    width: 100%;
    font-size: 16px;
    line-height: 16px;
    padding: 10px;

    a {
      text-decoration: none;
    }

    .footer__left {
      width: 50%;
      gap: 10px;

      .footer__email {
        color: white;
      }

      .terms-privacy {
        a {
          color: #dbdbdb;
          opacity: 0.5;
        }

        a:hover {
          opacity: 1;
          border-bottom: 1px solid;
        }
      }
    }

    .footer__right {
      display: flex;
      align-items: flex-start;
      justify-content: start;
      gap: 10px;

      a {
        color: white;
      }

      a:hover {
        text-decoration: underline;
      }
    }
  }
}


.text_aaa {
  color: white;
  font-size: 24px;

}


@media (min-width: 970px) {

  .contact-section {
    height: 135vh;
    
    .contact-section__title {
      font-size: 6vw;
      line-height: 6.5vw;
      display: inline-block;
      width: 60%;
    }

    footer {
      padding: 40px;
      justify-content: space-between;

      .footer__left {
        display: flex;
        gap: 30px;

        p {
          font-size: 24px;
        }

        .terms-privacy {
          a {
            font-size: 24px;
          }
        }
      }

      .footer__right {
        gap: 20px;

        a {
          font-size: 24px;
        }
      }
    }

    .contact-section__copy {
      width: 75%;
      font-size: 24px;
      line-height: 32px;
      margin-bottom: 40px;
    }

    .columns-wrapper {
      width: 100%;
      flex-direction: row;
      align-items: start;
      justify-content: start;


      :nth-child(1) {
        width: 50%;

        p {
          width: 100%;
        }
      }

      :nth-child(2),
      :nth-child(3) {
        width: 30%;
      }
    }

    .contact__column {
      .column__title {
        font-size: 1.5vw;
        line-height: 1.8vw;
      }

      p {
        font-size: 1.4vw;
        line-height: 1.8vw;
      }

    }
  }



}