@font-face {
  font-family: "American Typewriter";
  src: url("../fonts/dehinted-AmericanTypewriter.ttf");
}
body {
  font-family: Poppins, sans-serif;
  color: #003366;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FDF6EC;
  color: #003366;
  padding: 27px 10%;
}
@media (max-width: 1500px) {
  .header-top {
    flex-wrap: wrap;
    padding: 27px 8%;
  }
}

.header-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-title img {
  width: 80px;
  border: 5px solid #D7C69B;
  border-radius: 50%;
}
@media (max-width: 1500px) {
  .header-title img {
    width: 65px;
  }
}

.header-title h2 {
  font-size: 28px;
  line-height: 38px;
  text-transform: capitalize;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1500px) {
  .header-title h2 {
    order: 1;
    font-size: 25px;
  }
}
@media (max-width: 500px) {
  .header-title h2 {
    font-size: 22px;
    width: 200px;
  }
}

.header-list {
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  max-width: 572px;
  width: 44%;
}
@media (max-width: 1500px) {
  .header-list {
    font-size: 16px;
    order: 3;
    width: 70%;
    margin: 20px auto 0;
  }
}
@media (max-width: 992px) {
  .header-list {
    flex-direction: column;
    justify-content: start;
    gap: 24px;
    position: absolute;
    visibility: hidden;
    top: 70px;
    right: 0;
    width: 350px;
    height: 270px;
    padding: 50px;
    background: #FDF6EC;
    z-index: 100;
  }
}
@media (max-width: 500px) {
  .header-list {
    top: 100px;
    width: 100%;
  }
}

.header-item {
  padding: 0 10px;
  white-space: nowrap;
  transition-duration: 0.5s;
}

.header-item:hover {
  color: #fe8255;
  text-decoration: underline;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1500px) {
  .header-action {
    order: 2;
  }
}
@media (max-width: 992px) {
  .header-action {
    flex-direction: column;
    align-items: start;
    position: absolute;
    visibility: hidden;
    top: 340px;
    right: 0;
    width: 350px;
    height: 150px;
    padding: 0 50px;
    background: #FDF6EC;
    z-index: 100;
  }
}
@media (max-width: 500px) {
  .header-action {
    top: 370px;
    width: 100%;
  }
}

.visible {
  visibility: visible;
  transition: 0.3s;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-call img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 5px solid #D7C69B;
}

.header-call p {
  line-height: 20px;
  font-weight: 700;
}

.header-book a {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  color: #FFFFFF;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  background: #fe8255;
  border: none;
  border-radius: 25px;
  padding: 8px 24px;
  white-space: nowrap;
  transition-duration: 0.5s;
}

.header-book a:hover {
  background: #003366;
}

.header-burger {
  display: none;
  width: 26px;
  height: 26px;
  background: #FDF6EC;
  border: none;
}
@media (max-width: 992px) {
  .header-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    order: 3;
  }
  .header-burger:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 26px;
    background: #003366;
    top: 3px;
    right: 0;
    transition: 0.3s;
  }
  .header-burger:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 26px;
    background: #003366;
    bottom: 3px;
    transition: 0.3s;
  }
}

.header-line {
  height: 3px;
  width: 26px;
  background: #003366;
  transform: scale(1);
}

.header-burger.active .header-line {
  transform: scale(0);
}

.header-burger.active:before {
  width: 26px;
  top: 44%;
  transform: rotate(-45deg);
}

.header-burger.active:after {
  bottom: 45%;
  transform: rotate(45deg);
}

.header-bottom {
  font-family: Poppins, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background: #D7C69B;
  padding: 92px 13%;
  margin-top: -1px;
}
@media (max-width: 1500px) {
  .header-bottom {
    padding: 70px 10%;
  }
}
@media (max-width: 992px) {
  .header-bottom {
    padding: 50px 10%;
  }
}
@media (max-width: 500px) {
  .header-bottom {
    padding: 30px 10%;
  }
}

.header-bottom p {
  font-size: 36px;
  line-height: 44px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 1500px) {
  .header-bottom p {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .header-bottom p {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 500px) {
  .header-bottom p {
    font-size: 18px;
  }
}

.header-bottom-btn {
  font-family: Poppins, sans-serif;
  color: #FFFFF0;
  background: #003366;
  border: none;
  border-radius: 25px;
  padding: 12px 48px;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  text-transform: uppercase;
  text-align: center;
  transition-duration: 0.5s;
}
@media (max-width: 500px) {
  .header-bottom-btn {
    font-size: 18px;
    line-height: 20px;
  }
}

.header-bottom-btn:hover {
  background: #fe8255;
}

.methods {
  font-family: "American Typewriter", sans-serif;
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../imgs/methods.png") no-repeat;
  background-size: 100%;
  margin-top: 50px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 10%;
}

.text-title {
  font-size: 40px;
  line-height: 60px;
  font-weight: 600;
  text-align: right;
  display: flex;
  justify-self: right;
  max-width: 70%;
}
@media (max-width: 992px) {
  .text-title {
    font-size: 30px;
    line-height: 50px;
  }
}
@media (max-width: 640px) {
  .text-title {
    font-size: 24px;
    line-height: 30px;
    width: 90%;
    margin-top: 30px;
  }
}

.text-subtitle {
  font-size: 26px;
  line-height: 40px;
  font-weight: 700;
  padding: 20px;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .text-subtitle {
    font-size: 20px;
    line-height: 30px;
    margin-top: 20px;
  }
}
.text-subtitle:first-letter {
  font-size: 40px;
  font-weight: 600;
  padding: 0 5px;
  color: #FFFFFF;
  background: #fe8255;
  border-radius: 15px;
}

.methods-list {
  font-size: 20px;
  line-height: 25px;
  list-style: disc;
  margin-top: 20px;
}

.methods-list li {
  margin-top: 15px;
}

.text-frame {
  font-size: 22px;
  line-height: 32px;
  font-weight: 300;
  border-radius: 30px;
  border: 2px #fe8255 solid;
  padding: 20px;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .text-frame {
    font-size: 18px;
    line-height: 20px;
    text-align: justify;
  }
}

.methods-content {
  padding: 30px 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 992px) {
  .methods-content {
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .methods-content {
    padding: 50px 0 50px;
    gap: 30px;
  }
}

.methods-item {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 30px;
  border: 2px #fe8255 solid;
  padding: 40px 20px;
  width: 20%;
}
@media (max-width: 992px) {
  .methods-item {
    width: 45%;
  }
}
@media (max-width: 640px) {
  .methods-item {
    width: 320px;
  }
}

.methods-icon {
  position: absolute;
  top: -15px;
  right: 30px;
  background: white;
  width: 50px;
  padding: 0 5px;
}

.methods-fact {
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  margin: 0 auto;
}

.city {
  background-image: url("../imgs/london.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 100px 0;
}

.city-container {
  font-family: "American Typewriter", sans-serif;
  width: 100%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0 10%;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.city .text-subtitle {
  font-weight: 500;
}

.grey {
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../imgs/diamond.png");
  background-size: cover;
  background-attachment: fixed;
  font-family: "American Typewriter", sans-serif;
}

.about_us {
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("../imgs/diamond.png");
  background-size: cover;
  background-attachment: fixed;
}

.about_us-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 10px 130px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 640px) {
  .about_us-container {
    padding: 50px 0 50px;
    gap: 15px;
  }
}

.about_us-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  border: 5px #fe8255 solid;
  padding: 20px;
  width: 30%;
}
@media (max-width: 992px) {
  .about_us-item {
    width: 45%;
  }
}
@media (max-width: 640px) {
  .about_us-item {
    width: 320px;
  }
}

.about_us-counter {
  font-size: 40px;
  color: #003366;
}
@media (max-width: 992px) {
  .about_us-counter {
    font-size: 36px;
  }
}
@media (max-width: 640px) {
  .about_us-counter {
    font-size: 28px;
  }
}

.about_us-fact {
  font-size: 30px;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .about_us-fact {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .about_us-fact {
    font-size: 18px;
    margin-top: 20px;
  }
}

.contact {
  display: flex;
  margin-top: -3px;
  background: #003366;
  position: relative;
}

.contact-content {
  width: 50%;
  padding: 30px 5% 30px 12.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1500px) {
  .contact-content {
    width: 750px;
  }
}
@media (max-width: 1050px) {
  .contact-content {
    width: 100%;
    padding: 30px 10%;
  }
}

.contact-title {
  font-size: 42px;
  font-weight: 400;
  line-height: 58px;
  color: #FFFFF0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  max-width: 385px;
}

.contact-form input {
  height: 51px;
  border: none;
  border-radius: 10px;
  padding: 0 24px;
  background: #FFFFF0;
}

.error {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: white;
  visibility: hidden;
}

.contact-form textarea {
  height: 200px;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  resize: none;
  background: #FFFFF0;
}

.contact-form button {
  width: 180px;
  height: 50px;
  background: #D7C69B;
  color: #003366;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-top: 20px;
  cursor: pointer;
  text-align: center;
  transition-duration: 0.5s;
}

.contact-form button:hover {
  background: #fe8255;
  color: white;
}

.static-submit-title {
  display: none;
  justify-content: space-around;
  align-items: center;
}
.static-submit-title.active {
  display: flex;
}

.loader {
  display: none;
  position: relative;
  box-sizing: border-box;
  line-height: 1.75;
  margin-left: -25px;
}
.loader.active {
  display: inline-block;
}
.loader::after {
  content: "";
  width: 5px;
  height: 5px;
  background: currentColor;
  position: absolute;
  bottom: 10px;
  right: -8px;
  box-sizing: border-box;
  animation: animloader 1s linear infinite;
  border-radius: 3px;
}

@keyframes animloader {
  0% {
    box-shadow: 10px 0 #D7C69B, 20px 0 #D7C69B;
  }
  50% {
    box-shadow: 10px 0 #003366, 20px 0 #D7C69B;
  }
  100% {
    box-shadow: 10px 0 #003366, 20px 0 #003366;
  }
}
.contact-popup {
  display: block;
  width: 350px;
  padding: 50px 0;
  background: #D7C69B;
  font-size: 22px;
  font-weight: 400;
  line-height: 35px;
  color: #003366;
  text-align: center;
  visibility: hidden;
  position: absolute;
  bottom: 300px;
  left: 50%;
  margin-left: -175px;
}
@media (max-width: 500px) {
  .contact-popup {
    width: 80%;
    left: 10%;
    margin-left: 0;
  }
}

.contact-img {
  width: 50%;
}
@media (max-width: 1500px) {
  .contact-img {
    overflow: hidden;
  }
}
@media (max-width: 1050px) {
  .contact-img {
    display: none;
  }
}

.contact-img img {
  width: 100%;
}
@media (max-width: 1500px) {
  .contact-img img {
    height: 100%;
    object-fit: cover;
  }
}

.swiper1 {
  height: 848px;
}
@media (max-width: 992px) {
  .swiper1 {
    height: 500px;
  }
}
@media (max-width: 500px) {
  .swiper1 {
    height: 350px;
  }
}

.swiper2 {
  width: 100%;
  height: 700px;
  background: #fff;
}
@media (max-width: 992px) {
  .swiper2 {
    height: 500px;
  }
}

.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  background: url("../imgs/slider2.jpg") top;
  background-size: cover;
}
@media (max-width: 650px) {
  .parallax-bg {
    background: url("../imgs/slider.jpg") center;
    background-size: cover;
  }
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.swiper-slide .title {
  font-size: 41px;
  font-weight: 300;
  color: #FFFFF0;
  margin-left: 50px;
}
@media (max-width: 992px) {
  .swiper-slide .title {
    font-size: 34px;
    max-width: 400px;
  }
}
@media (max-width: 500px) {
  .swiper-slide .title {
    font-size: 28px;
  }
}

.swiper-slide .text {
  font-size: 24px;
  max-width: 800px;
  line-height: 1.2;
  color: #FFFFF0;
  margin: 50px;
}
@media (max-width: 992px) {
  .swiper-slide .text {
    font-size: 18px;
    max-width: 400px;
  }
}
@media (max-width: 500px) {
  .swiper-slide .text {
    margin: 30px;
  }
}

.slide-1 {
  background: url("../imgs/oksana.jpg") top;
  background-size: cover;
}

.slide-2 {
  background: url("../imgs/girl.jpg") center;
  background-size: cover;
}

.slide-3 {
  background: url("../imgs/island.jpg") center;
  background-size: cover;
}

.swiper-content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%);
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 992px) {
  .swiper-content {
    top: 40%;
    gap: 10px;
  }
}

.swiper-title {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: "DM Serif Display", serif;
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 700;
  line-height: 99px;
  color: #003366;
  text-align: center;
}
@media (max-width: 992px) {
  .swiper-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .swiper-title {
    font-size: 30px;
    line-height: 35px;
  }
}

.swiper-line {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 20px;
  font-family: "DM Serif Display", serif;
  text-transform: uppercase;
  font-size: 52px;
  font-weight: 700;
  line-height: 60px;
  color: #003366;
}
@media (max-width: 992px) {
  .swiper-line {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 500px) {
  .swiper-line {
    padding: 10px;
    font-size: 20px;
    line-height: 25px;
  }
}

.swiper-btn {
  font-family: Poppins, sans-serif;
  color: #FFFFFF;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  background: #fe8255;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  text-transform: uppercase;
  text-align: center;
  width: fit-content;
  transition-duration: 0.5s;
}
@media (max-width: 992px) {
  .swiper-btn {
    font-size: 20px;
    line-height: 22px;
  }
}
@media (max-width: 500px) {
  .swiper-btn {
    padding: 10px 15px;
    font-size: 16px;
    line-height: 18px;
  }
}

.swiper-btn:hover {
  background: #003366;
}

@media (max-width: 500px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.swiper-button-next:after {
  color: #003366;
}

.swiper-button-prev:after {
  color: #003366;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: #003366;
}

footer {
  background: #D7C69B;
}

.footer {
  padding: 50px 10%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  color: #003366;
}
@media (max-width: 1050px) {
  .footer {
    padding: 30px 10%;
  }
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  width: 392px;
  gap: 30px;
}
@media (max-width: 1200px) {
  .footer-nav {
    width: 300px;
  }
}

.footer-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  transition-duration: 0.5s;
}
@media (max-width: 500px) {
  .footer-title {
    font-size: 24px;
  }
}

.footer-list {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  white-space: nowrap;
  transition-duration: 0.5s;
}
@media (max-width: 500px) {
  .footer-list {
    font-size: 14px;
  }
}

.footer-title:hover,
.footer-list li:hover,
.footer-contacts-item:hover {
  color: #fe8255;
}

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

.footer-contacts-item {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition-duration: 0.5s;
}
@media (max-width: 500px) {
  .footer-contacts-item {
    font-size: 14px;
    gap: 18px;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.footer-social img {
  width: 28px;
}

.footer-icon {
  width: 42px;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #003366;
  border-top: 1px solid #003366;
  padding: 20px;
  text-align: center;
}

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