@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", sans-serif;
  color: #fff;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  background: url("./assets/img/png/section1bg.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center top;
}

.container {
  margin: 0 auto;
  padding: 0 19.5%;
}
@media screen and (max-width: 1600px) {
  .container {
    padding: 0 14%;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 10%;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 5%;
  }
}

.header {
  position: sticky;
  top: 0;
  background-color: rgba(16, 16, 29, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 33px 0;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header__menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1000;
    width: 50%;
    min-width: 320px;
    height: 250px;
    background: #3d4050;
    border-radius: 5px;
    transition-duration: 1s;
  }
}
.header__menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 1260px) {
  .header__menu-list {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .header__menu-list {
    height: 100%;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
}
.header__menu-item {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
}
.header__menu-item:hover {
  cursor: pointer;
  color: #43abf0;
}
@media screen and (max-width: 768px) {
  .header__menu-item {
    font-size: 18px;
  }
}
.header__burger {
  width: 25px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header__burger {
    display: flex;
    cursor: pointer;
  }
}
.header__burger span {
  display: block;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

.menu-active {
  right: 0;
  transition-duration: 1s;
  box-shadow: 0 0 9999px 1000px rgba(0, 0, 0, 0.4);
}

.blue {
  color: #42a9ed;
}

.active {
  color: #43abf0;
}

.first-section {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  min-height: 750px;
  padding-top: 103px;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .first-section {
    min-height: auto;
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .first-section {
    padding: 40px 0;
  }
}
.first-section__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 80px;
}
@media screen and (max-width: 1260px) {
  .first-section__container {
    row-gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .first-section__container {
    row-gap: 40px;
  }
}
.first-section__list {
  list-style: none;
  padding-left: 10px;
}
.first-section__list-item {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .first-section__list-item {
    font-size: 16px;
  }
}
.first-section__list li::before {
  content: "– ";
  padding-right: 5px;
}

.h1 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  line-height: 130%;
  width: 70%;
  max-width: 100%;
}
@media screen and (max-width: 1260px) {
  .h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .h1 {
    width: 90%;
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .h1 {
    width: 100%;
    font-size: 28px;
    text-align: center;
  }
}

.color-blue3 {
  color: #3e9cdc;
}

.text-bold {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .text-bold {
    font-size: 18px;
  }
}

.wrap-btn {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  width: 183px;
  height: 43px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
.button--primary {
  background: #3e9cdc;
  color: #fff;
  border: 1px solid #fff;
}
.button--secondary {
  background: #fff;
  color: #000;
  border: 1px solid #6f6d7b;
}

.second-section {
  width: 100%;
  height: auto;
  min-height: 920px;
  padding-top: 120px;
  background: #272733;
  background-image: url("./assets/img/png/section2bg.png");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .second-section {
    min-height: auto;
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .second-section {
    padding: 40px 0;
  }
}
.second-section__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 80px;
}
@media screen and (max-width: 768px) {
  .second-section__container {
    row-gap: 40px;
  }
}

.h2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .h2 {
    width: 90%;
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .h2 {
    width: 100%;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }
}

.gray-text {
  font-weight: 400;
  font-size: 18px;
  color: #bbb;
}
@media screen and (max-width: 768px) {
  .gray-text {
    width: 100%;
    font-size: 16px;
    text-align: center;
  }
}

.steps {
  display: flex;
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.steps__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 14px;
  gap: 20px;
  width: 209px;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .steps__item {
    width: 140px;
    padding: 0 10px;
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .steps__item {
    width: 100%;
  }
}
.steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30%;
  right: -40%;
  width: 120px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: radial-gradient(circle, #fff 60%, transparent 61%) 0 50%, radial-gradient(circle, #fff 60%, transparent 61%) 24px 50%, radial-gradient(circle, #fff 60%, transparent 61%) 48px 50%, radial-gradient(circle, #fff 60%, transparent 61%) 72px 50%, radial-gradient(circle, #fff 60%, transparent 61%) 96px 50%;
  background-repeat: no-repeat;
  background-size: 8px 8px;
}
@media screen and (max-width: 1600px) {
  .steps__item:not(:last-child)::after {
    right: -37%;
  }
}
@media screen and (max-width: 1440px) {
  .steps__item:not(:last-child)::after {
    width: 100px;
    top: 25%;
    right: -30%;
  }
}
@media screen and (max-width: 1260px) {
  .steps__item:not(:last-child)::after {
    display: none;
  }
}
.steps__item-circle {
  width: 100px;
  height: 100px;
  border: 5px solid #286690;
  border-radius: 50%;
  background-color: #3e9cdc;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .steps__item-circle {
    width: 90px;
    height: 90px;
  }
}
.steps__item-text {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .steps__item-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .steps__item-text {
    font-size: 12px;
  }
}

.form {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .form {
    width: 100%;
  }
}
.form__btn {
  width: 370px;
  height: 48px;
  align-self: center;
  margin-top: 30px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form__btn {
    width: 100%;
  }
}

.wrap-input {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1260px) {
  .wrap-input {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .wrap-input {
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .wrap-input:last-child {
    flex-direction: column;
    gap: 15px;
  }
}

.input {
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 10px;
  width: 370px;
  height: 48px;
  background: rgba(255, 255, 255, 0.85);
  outline: none;
}
@media screen and (max-width: 768px) {
  .input {
    width: 100%;
  }
}

.custom-select {
  position: relative;
  width: 370px;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .custom-select {
    width: 100%;
  }
}
.custom-select__selected {
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 10px;
  height: 48px;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #272733;
  transition: background 0.3s, border-color 0.3s;
}
.custom-select__arrow {
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background: url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"><path d="M2 4l4 4 4-4" stroke="black" stroke-width="2" fill="none" stroke-linejoin="round" /></svg>') no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
}
.custom-select__options {
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  height: 180px;
  background: rgb(39, 39, 51);
  border: 1px solid #3d4050;
  border-radius: 3px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 100;
  display: none;
  padding: 0;
  margin: 0;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: #3e9cdc rgb(61, 64, 80);
}
.custom-select__options::-webkit-scrollbar {
  width: 7px;
}
.custom-select__options::-webkit-scrollbar-track {
  background: rgb(61, 64, 80);
  border-radius: 5px;
}
.custom-select__options::-webkit-scrollbar-thumb {
  background-color: #3e9cdc;
  border-radius: 5px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
.custom-select__option {
  padding: 10px;
  color: #fff;
  cursor: pointer;
}
.custom-select__option:hover {
  background: rgba(61, 64, 80, 0.75);
}

.custom-select.open .custom-select__selected {
  background: rgba(61, 64, 80, 0.85);
  border: 1px solid #3d4050;
  color: #fff;
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
  filter: invert(1);
}

.custom-select.open .custom-select__options {
  display: block;
}

.custom-select__option.selected {
  color: #3e9cdc;
}

.range {
  display: flex;
  flex-direction: column;
  width: 70%;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .range {
    width: 100%;
  }
}
.range__label-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.range__label {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1260px) {
  .range__label {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .range__label {
    font-size: 12px;
  }
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  border: 1px solid #fff;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border: 3px solid #286690;
  background: #42a9ed;
  cursor: pointer;
  border-radius: 50%;
  margin-top: -8.5px;
}

input[type=range]::-moz-range-track {
  height: 8px;
  background: #ddd;
  border-radius: 5px;
}

input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #04aa6d;
  cursor: pointer;
  border-radius: 50%;
}

.input-file__custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid #3e9cdc;
  border-radius: 3px;
  padding: 10px;
  width: 370px;
  height: 48px;
  background: #fff;
  cursor: pointer;
}
@media screen and (max-width: 1260px) {
  .input-file__custom {
    width: 240px;
  }
}
.input-file__custom-text {
  font-weight: 600;
  font-size: 15px;
  color: #272733;
}

.input-file input[type=file] {
  display: none;
}

.footer {
  background-color: #3d4050;
  padding: 30px 0;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1260px) {
  .footer__container {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.footer__info {
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}
@media screen and (max-width: 1260px) {
  .footer__info {
    order: 3;
  }
}
.footer__contacts {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__contacts {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.footer__link {
  color: #fff;
  text-decoration: none;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__payment-systems {
  display: flex;
  gap: 15px;
}

.vertical-divider {
  width: 1px;
  height: 100%;
  min-height: 13px;
  border: 1px solid #c3c3c3;
}
@media screen and (max-width: 1260px) {
  .vertical-divider {
    display: none;
  }
}

.payment-system,
.contacts {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 400;
  font-size: 13px;
  color: #c3c3c3;
}
@media screen and (max-width: 768px) {
  .payment-system,
  .contacts {
    gap: 5px;
  }
}

.contacts {
  color: #fff;
}/*# sourceMappingURL=style.css.map */