/* ===========================
   BASE SCSS RESET
   =========================== */
* *,
* *::before,
* *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
}
* ul,
* ol {
  list-style: none;
}
* a {
  text-decoration: none;
  color: inherit;
}
* table {
  border-collapse: collapse;
  border-spacing: 0;
}
* article,
* aside,
* details,
* figcaption,
* figure,
* footer,
* header,
* hgroup,
* main,
* menu,
* nav,
* section {
  display: block;
}
* body {
  line-height: 1;
}
* blockquote,
* q {
  quotes: none;
}
* button,
* input,
* select,
* textarea {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
* html,
* body {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}
* html {
  height: 100%;
}
* main {
  width: 100%;
  height: 100%;
  max-width: 2560px;
}

/* ===========================
   VARIABLES
   =========================== */
@keyframes spin {
  from {
    translate: 0;
  }
  to {
    translate: -100%;
  }
}
/* ===========================
   NAVIGATION
   =========================== */
nav {
  font-family: "Inter", sans-serif;
  position: fixed;
  display: flex;
  z-index: 100;
  width: 100%;
  height: 90px;
  background-color: white;
  border-bottom: 4px solid #FF9924;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}
nav .logo-block {
  flex: 1;
  display: flex;
  align-items: center;
}
nav .logo-block img {
  margin-left: 25px;
  height: 120px;
  top: 23px;
  position: relative;
}
nav .nav-block {
  flex: 1;
  display: flex;
  justify-content: space-around;
}
nav .nav-block .navigation {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 15px;
}
nav .nav-block .navigation a {
  overflow: visible;
  padding: 10px;
  border-radius: 15px 15px 0 0;
  max-height: 52px;
  font-weight: 600;
}
nav .nav-block .navigation a.is-active {
  background-color: #FF9924;
  font-weight: bold;
  color: white;
}
nav .nav-block .language-changer {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  max-width: 120px;
}
nav .nav-block .language-changer form {
  border: 1px solid;
  padding: 5px;
  border-radius: 20px;
}
nav .nav-block .language-changer p {
  color: #949494;
}

.autors {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #797979;
}

footer {
  display: flex;
  height: 300px;
  width: 100%;
  background-color: #E8E8E8;
  font-family: "Jura", sans-serif;
}
footer .left-block {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  flex: 2;
}
footer .left-block h1 {
  font-size: 36px;
  font-weight: 600;
  padding-bottom: 20px;
}
footer .center-block {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 1;
}
footer .right-block {
  display: flex;
  flex: 2;
}
footer .right-block .feedback-form {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 2;
  font-size: 25px;
  gap: 20px;
}
footer .right-block .first-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 65%;
}
footer .right-block .first-block input {
  background-color: white;
  border: 1px solid black;
  border-radius: 10px;
  padding: 5px 5px 5px 15px;
  font-size: 15px;
}
footer .right-block .first-block input::placeholder {
  font-size: 15px;
}
footer .right-block .first-block .lg-button {
  display: flex;
  width: 300px;
  height: 54px;
  border-radius: 27px;
  justify-content: center;
  align-items: center;
  font-family: "Jura", sans-serif;
  font-size: 22px;
  font-weight: 600;
  background-color: #FFD261;
}
footer .right-block .second-block textarea {
  background-color: white;
  border: 1px solid black;
  border-radius: 10px;
  height: 105px;
  padding: 10px;
  width: 350px;
  resize: none;
  font-size: 15px;
}
footer .right-block .second-block textarea::placeholder {
  font-size: 15px;
}

.navigation-compensator {
  position: relative;
  width: 100%;
  height: 90px;
}

.AutoDrive {
  color: #FF9924;
}

/* ===========================
   BODY
   =========================== */
body {
  font-family: "Inter", sans-serif;
}

.image-block-1 {
  display: flex;
  width: 100%;
  height: 708px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Jura", sans-serif;
}
.image-block-1 .text-block {
  width: auto;
  flex: 2;
  color: white;
  padding: 8% 0 0 13%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.image-block-1 .text-block h1 {
  font-size: 80px;
  color: #FF9924;
  font-weight: 600;
}
.image-block-1 .text-block p {
  margin-left: 20px;
  font-size: 24px;
  font-weight: 500;
}
.image-block-1 .button-block {
  display: flex;
  flex-direction: column;
  width: auto;
  flex: 1;
  justify-content: center;
  padding-bottom: 150px;
  gap: 20px;
}
.image-block-1 .button-block a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 27px;
  font-size: 22px;
  font-weight: 600;
  width: 300px;
  height: 54px;
  background-color: #FFD261;
}

.why-we-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../img/backgrounds/why-we-back.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 577px;
  width: 100%;
}
.why-we-block .infinite-line-block {
  width: 90%;
  position: absolute;
  justify-self: center;
  top: -23%;
  height: 354px;
  display: flex;
  align-items: center;
}
.why-we-block .infinite-line-block .carousel {
  display: flex;
  scrollbar-width: none;
  overflow-x: auto;
}
.why-we-block .infinite-line-block .carousel::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}
.why-we-block .infinite-line-block .carousel .group {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 15s infinite linear;
  height: 390px;
}
.why-we-block .infinite-line-block .carousel .group .card {
  margin-right: 10px;
  height: 290px;
  width: 335px;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.why-we-block .infinite-line-block .carousel .group .card .card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 103%;
  z-index: 1;
  object-fit: cover;
}
.why-we-block .infinite-line-block .carousel .group .card .card-btn {
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.why-we-block .infinite-line-block .carousel .group .card p {
  position: relative;
  color: white;
  top: 175px;
  max-width: 95%;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  z-index: 4;
  height: fit-content;
}
.why-we-block h1 {
  display: flex;
  align-items: end;
  height: 84%;
  color: #FFDAAF;
  font-size: 200px;
  font-weight: 900;
  overflow: hidden;
}

.image-block-2 {
  position: relative;
  height: 770px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.image-block-2 .cards-block {
  position: absolute;
  top: -82px;
  width: 100%;
  padding: 0 18%;
  display: flex;
  justify-content: space-around;
}
.image-block-2 .cards-block .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 420px;
}
.image-block-2 .cards-block .card .card-icon {
  width: 165px;
  height: 165px;
}
.image-block-2 .cards-block .card .card-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  color: white;
}
.image-block-2 .cards-block .card .card-text h3 {
  font-size: 24px;
  font-weight: 900;
}
.image-block-2 .cards-block .card .card-text h1 {
  font-size: 40px;
  font-weight: 600;
  color: #FFBB00;
}
.image-block-2 p {
  position: relative;
  top: 240px;
  width: 100%;
  padding-left: 150px;
  padding-right: 150px;
  text-align: center;
  color: white;
  font-size: 25px;
  font-weight: 600;
  font-family: "Jura", sans-serif;
}
.image-block-2 .lg-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: relative;
  gap: 20px;
  top: 380px;
}
.image-block-2 .lg-buttons .lg-button {
  display: flex;
  width: 300px;
  height: 54px;
  border-radius: 27px;
  justify-content: center;
  align-items: center;
  font-family: "Jura", sans-serif;
  font-size: 22px;
  font-weight: 600;
  background-color: #FFD261;
}
.image-block-2 .students-say {
  position: absolute;
  text-align: center;
  color: white;
  font-weight: 900;
  font-size: 64px;
  bottom: 0;
  border-radius: 5px;
  padding: 15px;
  background-color: #634C00;
  left: 50%;
  transform: translate(-50%);
}

.comments-container {
  background-image: url("../img/backgrounds/comments_background.svg");
  width: 100%;
  height: 700px;
}
.comments-container .text-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  justify-self: center;
  top: 80px;
  gap: 20px;
}
.comments-container .text-block h3 {
  width: 80%;
  font-size: 18px;
  font-weight: 300;
}
.comments-container .text-block p {
  width: 80%;
  color: #949494;
  font-size: 16px;
  text-decoration: underline;
}
.comments-container .comments-block {
  top: 50px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.comments-container .comments-block .card-wrapper {
  max-width: 2100px;
  margin: 0 60px 35px;
  padding: 20px 10px;
  overflow: hidden;
}
.comments-container .comments-block .card-wrapper .swiper-button-prev, .comments-container .comments-block .card-wrapper .swiper-button-next {
  color: #FF9924;
}
.comments-container .comments-block .card-wrapper .swiper-pagination-bullet {
  background: #FF9924;
}
.comments-container .comments-block .card-wrapper .swiper-pagination-bullet-active {
  background: #ff7f00;
}
.comments-container .comments-block .card-list .card-item .card-link {
  user-select: none;
  display: flex;
  background-color: white;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}
.comments-container .comments-block .card-list .card-item .card-link:hover {
  border-color: #FF9924;
}
.comments-container .comments-block .card-list .card-item .card-link .first-block {
  min-width: 220px;
  padding: 20px;
}
.comments-container .comments-block .card-list .card-item .card-link .second-block {
  max-width: 70%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comments-container .comments-block .card-list .card-item .card-link .second-block img {
  height: 40px;
  margin-left: 10px;
  margin-right: auto;
}
.comments-container .comments-block .card-list .card-item .card-link .card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.comments-container .comments-block .card-list .card-item .card-link .badge {
  color: #FF9924;
  padding: 8px 16px;
  margin: 16px 0 18px;
  background: #fff4dd;
  font-weight: 500;
  width: fit-content;
  border-radius: 50px;
}
.comments-container .comments-block .card-list .card-item .card-link .card-title {
  font-size: 16px;
  color: black;
  font-weight: 300;
}
.comments-container .comments-block .card-list .card-item .card-link .card-button {
  height: 35px;
  width: 35px;
  color: #FFD261;
  border-radius: 50%;
  margin: 30px 0 5px;
}

.about-first-block {
  background-repeat: no-repeat;
  background-size: cover;
  height: 355px;
  width: 100%;
  display: flex;
}
.about-first-block h1 {
  font-size: 100px;
  font-weight: 700;
  color: white;
  align-self: center;
  padding-left: 15%;
}

.about-second-block {
  padding: 50px 50px;
  display: flex;
}
.about-second-block h1 {
  position: absolute;
  font-size: 55px;
  font-weight: 600;
  left: 0;
  top: 0;
}
.about-second-block .text-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 90px 50px 50px;
  height: 100%;
  font-weight: 200;
}

.about-third-block {
  height: 481px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: white;
  font-weight: 300;
}
.about-third-block h1 {
  width: 100%;
  font-size: 40px;
  text-align: center;
}
.about-third-block p {
  text-align: center;
  max-width: 540px;
  max-height: 144px;
}
.about-third-block .left-block {
  width: 35%;
  height: 342px;
  border: 3px solid white;
  border-right: 1.5px solid white;
  background: none;
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-third-block .right-block {
  width: 35%;
  height: 342px;
  border: 3px solid white;
  border-left: 1.5px solid white;
  background: none;
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-fourth-block {
  height: 1090px;
  width: 100%;
}
.about-fourth-block .first-about-fourth-block-block {
  background-color: #FFF1EB;
  font-size: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130px;
  width: 100%;
  font-weight: 700;
}
.about-fourth-block .second-about-fourth-block-block {
  height: 960px;
  width: 100%;
}
.about-fourth-block .second-about-fourth-block-block .comments-block {
  position: relative;
  top: 50px;
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper {
  position: relative;
  max-width: 2100px;
  margin: 0 60px 35px;
  padding: 20px 10px;
  overflow: hidden;
  height: 900px;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper .swiper-button-prev, .about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF9924;
  border: 3px solid rgba(82, 82, 82, 0.103);
  padding: 14px;
  border-radius: 50px;
  width: 64px;
  height: 64px;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper .swiper-button-prev.swiper-button-prev, .about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper .swiper-button-next.swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translate(-50%, -50%);
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper .swiper-button-prev.swiper-button-next, .about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper .swiper-button-next.swiper-button-next {
  position: absolute;
  top: 50%;
  left: 97%;
  transform: translate(-50%, -50%);
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper .swiper-button-prev:after, .about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper .swiper-button-next:after {
  display: none;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper .swiper-button-prev svg, .about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper .swiper-button-next svg {
  width: 24px;
  height: 24px;
  stroke: #FF9924;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper .swiper-pagination-bullet {
  background: #FF9924;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-wrapper .swiper-pagination-bullet-active {
  background: #ff7f00;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link {
  user-select: none;
  display: flex;
  background-color: white;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
  height: 850px;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link:hover {
  border-color: #FF9924;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .first-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  padding: 20px;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .first-block img {
  border-radius: 80px;
  width: 491px;
  height: 720px;
  object-fit: cover;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .centre-changer-block {
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 70px;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .second-block {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .second-block .cv-line {
  background-color: #FF9924;
  height: 2px;
  width: 100%;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .second-block .cv-second-block-text-block {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .second-block .cv-second-block-text-block h1 {
  font-size: 24px;
  font-weight: 600;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .second-block .cv-second-block-text-block p {
  font-size: 18px;
  font-weight: 300;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .second-block .cv-second-block-images-block {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .second-block .cv-second-block-images-block img {
  margin-left: 10px;
  margin-right: auto;
  transition: all 0.3s ease;
  filter: brightness(0.6);
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .second-block .cv-second-block-images-block img.active-image {
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  filter: brightness(1);
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .second-block .cv-second-block-images-block img:not(.active-image) {
  height: 165px;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .badge {
  color: #FF9924;
  padding: 8px 16px;
  margin: 16px 0 18px;
  background: #fff4dd;
  font-weight: 500;
  width: fit-content;
  border-radius: 50px;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .card-title {
  font-size: 16px;
  color: black;
  font-weight: 300;
}
.about-fourth-block .second-about-fourth-block-block .comments-block .card-list .card-item .card-link .card-button {
  height: 35px;
  width: 35px;
  color: #FFD261;
  border-radius: 50%;
  margin: 30px 0 5px;
}

.contact-container {
  width: 100%;
  height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 20px;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact-container h1 {
  font-size: 40px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 12px;
  text-decoration-thickness: 4px;
  text-decoration-color: #FF9924;
}
.contact-container h2 {
  font-family: "Jura", sans-serif;
  font-size: 36px;
  font-weight: 700;
}
.contact-container p {
  font-family: "Jura", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.contact-container .table-block {
  display: flex;
  flex-direction: column;
  width: 1043px;
  height: 516px;
  border: 3px solid #FF9924;
}
.contact-container .table-block .first-block {
  display: flex;
  height: 342px;
}
.contact-container .table-block .first-block .contact-socials-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 370px;
  gap: 23px;
  padding: 28px;
  border-right: 3px solid #FF9924;
  border-bottom: 3px solid #FF9924;
}
.contact-container .table-block .first-block .contact-socials-block h2 {
  text-align: center;
}
.contact-container .table-block .first-block .contact-socials-block .contact-socials {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-container .table-block .first-block .contact-email-feedback-block {
  padding: 30px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 25px;
  border-bottom: 3px solid #FF9924;
}
.contact-container .table-block .first-block .contact-email-feedback-block .contact-feedback-form {
  display: flex;
  height: 100%;
  gap: 10px;
}
.contact-container .table-block .first-block .contact-email-feedback-block .contact-feedback-form .input-feedback-form {
  display: flex;
  flex: 1;
  flex-direction: row;
  gap: 25px;
}
.contact-container .table-block .first-block .contact-email-feedback-block .contact-feedback-form .input-feedback-form input {
  width: 100%;
  height: 30px;
  border: 1px solid black;
  padding: 5px 12px;
  border-radius: 7px;
  font-size: 16px;
}
.contact-container .table-block .first-block .contact-email-feedback-block .contact-feedback-form .input-feedback-form button {
  display: flex;
  width: 200px;
  height: 54px;
  border-radius: 27px;
  justify-content: center;
  align-items: center;
  font-family: "Jura", sans-serif;
  font-size: 22px;
  font-weight: 600;
  background-color: #FFD261;
}
.contact-container .table-block .first-block .contact-email-feedback-block .contact-feedback-form .input-feedback-form textarea {
  resize: none;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  border-radius: 7px;
  padding: 13px;
  font-size: 16px;
}
.contact-container .table-block .second-block {
  display: flex;
  height: 177px;
  justify-content: space-around;
  align-items: center;
}
.contact-container .table-block .second-block .contact-number-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.contact-container .table-block .second-block .contact-number-block h2 {
  font-size: 32px;
  font-weight: 700;
}
.contact-container .table-block .second-block .contact-number-block .contact-number {
  width: 350px;
  height: 48px;
  border-radius: 24px;
  background-color: #FFE8D2;
  display: flex;
  align-items: center;
}
.contact-container .table-block .second-block .contact-number-block .contact-number p {
  justify-self: center;
  flex: 1;
  text-align: center;
  font-weight: 700;
}
.contact-container .table-block .second-block .contact-number-block .contact-number .contact-copy-btn {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background-color: #FFF3DE;
  border: 1px solid black;
  justify-self: end;
  background-image: url("../img/btns/copy-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.booking-container {
  width: 100%;
  height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  flex: 1;
}
.booking-container p {
  font-family: "Jura", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.booking-container h2 {
  font-family: "Jura", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.booking-container .booking-form {
  min-width: 500px;
}
.booking-container .info-form-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  max-width: 520px;
}
.booking-container .info-form-block .info-form-item {
  display: flex;
  position: relative;
  gap: 10px;
  flex-direction: column;
}
.booking-container .info-form-block .info-form-item select {
  border: 3px solid #FF9924;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 500;
  background-color: white;
  color: black;
  border: 3px solid #FF9924;
  padding: 5px 10px;
  border-radius: 10px;
}
.booking-container .info-form-block .info-form-item .select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-container .info-form-block .info-form-item input {
  border: 3px solid #FF9924;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 500;
}
.booking-container .info-form-block .info-form-item textarea {
  border: 3px solid #FF9924;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 500;
  resize: none;
  height: 245px;
}
.booking-container .data-form-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}
.booking-container .data-form-block .calendar {
  display: flex;
  gap: 10px;
}
.booking-container .data-form-block .calendar input {
  border: 3px solid #FF9924;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 500;
  background-color: white;
  color: black;
}
.booking-container .data-form-block .calendar select {
  border: 3px solid #FF9924;
  padding: 5px 10px;
  border-radius: 10px;
}
.booking-container .data-form-block .md-button {
  display: flex;
  width: 200px;
  height: 54px;
  border-radius: 27px;
  justify-content: center;
  align-items: center;
  font-family: "Jura", sans-serif;
  font-size: 22px;
  font-weight: 600;
  background-color: #FFD261;
  margin-left: auto;
}

/* ===========================
   FLASH MESSAGES OVERLAY
   =========================== */
.messages {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.messages .message {
  width: 600px;
  height: 300px;
  background: #ffffff;
  color: #000000;
  border: 8px solid #95ffb0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  font-size: 30px;
}
.messages .message + .message {
  margin-left: 12px;
}

/*# sourceMappingURL=style.css.map */
