@font-face {
  font-family: "Next-ART";
  src: url("./assets/fonts/Next-ART-Bold.otf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("./assets/fonts/NunitoSans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  font-size: 16px;
  background: #F3F5F4;
  color: #18121E;
  font-family: "Nunito Sans", sans-serif;
  display: flex;
  flex-direction: column;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.5s;
  backdrop-filter: blur(6px);
  z-index: -10;
}
body.overlay:before {
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 20;
}
body.overlay .modal {
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s, transform 0.75s;
}

button {
  cursor: pointer;
}

a,
input,
button,
textarea,
select {
  font-family: "Nunito Sans", sans-serif;
}

input {
  padding: 13px 16px;
  border: 1px solid #e1e3e4;
  border-radius: 8px;
  background: transparent;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  max-width: 270px;
  width: 100%;
}
input::placeholder {
  color: #FDFDFD;
}

label {
  color: #FDFDFD;
}
label svg {
  width: 18px;
  height: 18px;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  height: auto;
  max-width: 100%;
}

ul[class],
ol[class] {
  list-style: none;
}

a {
  color: #F2BE22;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  text-decoration: underline;
  color: #1A3E3E;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img:not([alt]),
img[alt=""] {
  filter: blur(10px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  color: #1A3E3E;
  margin-bottom: 1em;
}

h1 {
  font-size: 50px;
  line-height: 1.5;
}

h2 {
  font-size: 32px;
  line-height: 1.2;
}

h3 {
  font-size: 26px;
  line-height: 1.2;
}

h4 {
  font-size: 24px;
  line-height: 1.33;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 18px;
  line-height: 1.11;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

i,
em {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

footer {
  margin-top: auto;
}

.container {
  max-width: 1204px;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  font-weight: 600;
  line-height: 1;
  border-radius: 4px;
  padding: 13px 24px;
  border: 1px solid transparent;
  display: inline-block;
  transition: 0.5s;
}
.btn:hover {
  text-decoration: none;
}
.btn.btn_primary {
  border-color: #1A3E3E;
  background-color: #1A3E3E;
  color: #FDFDFD;
}
.btn.btn_primary:hover {
  background-color: #FDFDFD;
  color: #1A3E3E;
  border-color: #1A3E3E;
}
.btn.btn_lg {
  padding: 17px 37px;
}
.btn.btn_secondary {
  border-color: #FDFDFD;
  background-color: #FDFDFD;
  color: #1A3E3E;
}
.btn.btn_secondary:hover {
  background-color: #1A3E3E;
  color: #FDFDFD;
  border-color: #1A3E3E;
}

.btn-play {
  border-radius: 24px;
  border: none;
  inset: 0;
  position: absolute;
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s;
}
.btn-play span {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(253, 253, 253, 0.6);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: background-color 0.5s;
}
.btn-play svg {
  width: 15px;
  height: 16px;
  color: #1A3E3E;
  transition: color 0.5s;
}
.btn-play:hover {
  background-color: rgba(255, 255, 255, 0.1450980392);
}
.btn-play:hover span {
  background-color: #fdfdfd;
}
.btn-play:hover svg {
  color: #F2BE22;
}

.input-box {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.input-box label {
  cursor: pointer;
  font-size: 12px;
  padding: 9px 0 0 10px;
}
.input-box label.label-icon {
  position: absolute;
  top: 17px;
  right: 15px;
  padding: 0;
}
.input-box:hover .date-input::placeholder {
  color: #F2BE22;
}
.input-box:hover .date-input + label {
  color: #F2BE22;
}

.nice-select {
  color: #fdfdfd;
  height: 52px;
  padding: 0 36px 0 16px;
  border: 1px solid #e1e3e4;
  border-radius: 8px;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  line-height: 52px;
  width: 100%;
  max-width: 270px;
}
.nice-select:after {
  border-bottom: 2px solid #fdfdfd;
  border-right: 2px solid #fdfdfd;
  height: 11px;
  margin-top: -8px;
  right: 19px;
  width: 11px;
}
.nice-select .nice-select-dropdown {
  background-color: rgba(255, 255, 255, 0.1882352941);
  backdrop-filter: blur(6px);
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: rgba(255, 255, 255, 0.1882352941);
  backdrop-filter: blur(6px);
}
.nice-select.open + label {
  opacity: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.close-modal {
  color: #ffffff;
}

.close-modal__svg {
  width: 36px;
  height: 36px;
}

.d-none,
.hidden-select {
  display: none;
}

::selection {
  background-color: #1A3E3E;
  color: #F2BE22;
}

.header {
  margin-bottom: -104px;
  padding: 16px 0;
  z-index: 10;
}
.header .container {
  display: flex;
  align-items: center;
}
.header__logo img {
  height: 72px;
}
.header__mobile-container {
  display: flex;
  align-items: center;
  gap: 38px;
}
.header__mobile-container.show {
  display: flex;
}
.header__nav-list {
  display: flex;
}
.header__nav-link {
  color: #FDFDFD;
  display: inline-block;
  padding: 12px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.14px;
}
.header__nav-link:hover {
  text-decoration: none;
  color: #F2BE22;
}
.header__nav-link:hover svg {
  margin-right: 16px;
}
.header__nav-link:focus, .header__nav-link:focus-visible {
  outline: none;
}

.hamburger {
  margin-left: auto;
  z-index: 10;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after,
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #ffffff;
}

.first-screen {
  display: flex;
  align-items: flex-end;
  padding-bottom: 82px;
  height: max(100vh, 985px);
  max-height: 985px;
  background: url(./assets/img/banner.png) center/cover no-repeat;
}
.first-screen__title {
  color: #FDFDFD;
  font-family: "Next-ART";
  font-weight: 700;
  margin-bottom: 41px;
  letter-spacing: 1px;
}
.first-screen-form {
  display: flex;
  align-items: start;
  gap: 24px;
  padding: 42px 42px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.2);
}
.first-screen .input-box:last-child {
  max-width: 213px;
}

.about {
  background-color: #ffffff;
  padding: 100px 0;
}

.about__container {
  display: flex;
  gap: 120px;
}

.about__media {
  max-width: 480px;
  width: 100%;
  display: flex;
}
.about__media-item {
  width: 350px;
  height: 400px;
  display: flex;
  align-items: stretch;
  position: relative;
}
.about__media-item:last-child {
  margin: 125px 0 0 -220px;
}
.about__media-img {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
}

.template-content {
  padding-top: 62px;
  max-width: 580px;
  width: 100%;
}

.template-top-title {
  color: #F2BE22;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 7px;
}

.template-title {
  color: #18121E;
  font-weight: 800;
  margin-bottom: 38px;
}

.template-description {
  color: #18121E;
  margin-bottom: 40px;
  font-size: 18px;
}

.offers {
  padding: 80px 0 100px;
  background-color: #F3F5F4;
}

.offers__container {
  display: flex;
  gap: 90px;
  align-items: center;
}

.offers__template-content {
  flex: 0 1 580px;
  padding-top: 0;
}

.offers-advanteges {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.offers-advanteges__item {
  display: grid;
  grid-template-areas: "svg title title" "svg description description";
  gap: 4px 23px;
  position: relative;
}
.offers-advanteges__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 128, 0, 0.432);
  border-radius: 4px;
}

.offers-advanteges__item-svg {
  margin: 7px;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 10;
  grid-area: svg;
}

.offers-advanteges__item-title {
  grid-area: title;
  margin: 0;
  color: #18121E;
}

.offers-advanteges__item-description {
  grid-area: description;
  font-size: 14px;
  line-height: 1.42;
  margin: 0;
}

.offers-advanteges__item-svg_green {
  color: #45766A;
}

.offers-advanteges__item-svg_blue {
  color: #6276AA;
}

.offers-advanteges__item-svg_yellow {
  color: #F2BE22;
}

.offers-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1 0 510px;
  max-width: 510px;
}

.image-offers {
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 0 50px 0 50px;
}
.image-offers:nth-child(2) {
  border-radius: 50px 0 50px 0;
}
.image-offers:nth-child(3) {
  border-radius: 50px 0 50px 0;
}
.image-offers:nth-child(4) {
  border-radius: 0 50px 0 50px;
}

.testimonials {
  padding: 80px 0 100px;
  background-color: #ffffff;
}

.modal {
  position: fixed;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 20;
  opacity: 0;
  transition: opacity 0.5s, transform 0.75s, top 0.75s;
}

#close-modal {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10;
  transition: opacity 0.5s, transform 0.3s;
}
#close-modal:hover {
  transform: rotate(180deg);
}

@media (min-width: 1025px) {
  .hamburger,
  #show-program,
  .header__nav-link svg {
    display: none;
  }
  .header__mobile-container {
    display: flex;
    gap: 38px;
    margin-left: auto;
  }
}
@media screen and (max-width: 1199px) {
  .btn.btn_lg {
    padding: 17px 24px;
  }
  .about__container {
    gap: 72px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    padding-top: 11px;
    padding-bottom: 20px;
  }
  .header__logo img {
    height: 44px;
  }
  .header__mobile-container {
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1A3E3E;
    padding: 82px 16px 50px;
    display: none;
  }
  .header__mobile-container .btn {
    max-width: 320px;
    width: 100%;
    margin: auto auto 0;
    border-color: #FDFDFD;
    background-color: #FDFDFD;
    color: #1A3E3E;
  }
  .header__mobile-container .btn:hover {
    background-color: #1A3E3E;
    color: #FDFDFD;
    border-color: #1A3E3E;
  }
  .header__mobile-container .btn:hover {
    background-color: transparent;
    border-color: #FDFDFD;
  }
  .header__nav {
    overflow: auto;
  }
  .header__nav-list {
    flex-direction: column;
  }
  .header__nav-link {
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  .header__nav-link svg {
    display: inline-block;
    width: 6px;
    height: 10px;
    margin-right: 10px;
    transition: 0.3s;
  }
  .container {
    padding: 0 16px;
  }
  .first-screen {
    height: auto;
    min-height: 612px;
    padding-bottom: 50px;
  }
  .first-screen__title {
    font-size: 28px;
    margin-bottom: 31px;
    letter-spacing: 0px;
  }
  .first-screen-form {
    display: none;
  }
  .modal__first-screen-form {
    display: flex;
    flex-direction: column;
    background-color: #1A3E3E;
    border: 1px solid #ffffff;
  }
  .btn.btn_lg {
    padding: 17px 38px;
  }
  .about {
    padding: 50px 0;
  }
  .about__container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .about__media {
    max-width: 100%;
  }
  .about__media {
    justify-content: center;
  }
  .about__media-item {
    width: 358px;
    height: 416px;
  }
  .about__media-item-img {
    width: 100%;
    border-radius: 24px;
  }
  .about__media-item:first-child {
    display: none;
  }
  .about__media-item:last-child {
    margin: 0;
  }
  .template-content {
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .template-content .btn {
    margin: 0 auto;
    padding: 13px 24px;
  }
  .template-top-title {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .template-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .template-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
}
/*# sourceMappingURL=style.css.map */
