@import "normalize.css";
* {
  font-family: "Open Sans", sans-serif;
}

.relative {
  position: relative;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html {
  background: #f7f7f7;
}

header {
  position: absolute;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  font-size: 1.1em;
}
header .header-inner {
  margin: auto;
  width: 80vw;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  flex: 0;
  width: 261px;
  height: 64px;
  opacity: 0.5;
}
@media (max-width: 1000px) {
  header .logo {
    width: 163px;
    height: 40px;
  }
}
header nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
header nav ul li {
  margin-left: 40px;
}
@media (max-width: 1200px) {
  header nav ul li {
    margin-left: 20px;
  }
}
header nav ul li a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.05, 1);
  text-shadow: 0 0 8px #171717;
}
header nav ul li a:hover {
  text-shadow: 0 0 8px #ffd229 !important;
  transform: scale(1.1);
}
header nav .close {
  display: none;
}
header .hamburger-menu {
  display: none;
  cursor: pointer;
}
header .hamburger-menu span {
  display: block;
  height: 2px;
  color: #fff;
  margin-bottom: 5px;
  width: 25px;
  background: #fff;
}
@media (max-width: 860px) {
  header .hamburger-menu {
    display: block;
  }
  header .hamburger-menu span {
    background: #fff;
  }
  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    transition: right 0.3s cubic-bezier(0.2, 0.7, 0.05, 1);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5333333333);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
  }
  header nav ul {
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  header nav ul li {
    margin: 10px 0;
  }
  header nav ul li a {
    color: #fff;
  }
  header nav .close {
    display: block;
    position: absolute;
    top: 32px;
    right: 10vw;
    width: 32px;
    height: 32px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    font-size: 32px;
  }
}

.danger {
  position: fixed;
  width: 100%;
  background: #f34605;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 16px;
  z-index: 9999;
  box-shadow: 0 0 4px #000;
  box-sizing: border-box;
}
.danger a {
  color: #fff;
}

section {
  margin: 0;
}
section.top {
  width: 100vw;
  height: 100vh;
  background-size: cover;
}
section.top .background-video-wrapper {
  position: absolute;
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
  background: url("/static/img/dubai-hero-background.jpg") no-repeat center center/cover;
}
section.top .background-video-wrapper .background-video {
  position: absolute;
  object-fit: cover;
  height: 100vh;
  width: 100vw;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
section.top .background-video-overlay {
  position: absolute;
  height: 100vh;
  width: 100vw;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}
section.top .content-container {
  margin: auto;
  width: 1200px;
  max-width: 80vw;
  padding-top: 30vh;
  display: flex;
  z-index: 1;
}
section.top .content-container .title-container {
  flex: 2;
}
section.top .content-container .title-container h1, section.top .content-container .title-container h2 {
  color: #fff;
  margin-top: 0;
  text-shadow: 1px 3px 40px #000;
}
section.top .content-container .title-container h2 {
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
section.top .content-container .title-container h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5em;
  font-weight: 300;
}
section.top .content-container .call-to-action-container {
  flex: 1;
}
section.top .content-container .call-to-action-container .call-to-action {
  text-align: left;
  width: 400px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.6666666667);
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 1px 3px 40px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.05, 1);
  -webkit-backdrop-filter: blur(40px) saturate(400%);
  backdrop-filter: blur(40px) saturate(400%);
  overflow: hidden;
}
@media (max-width: 1200px) {
  section.top .content-container .call-to-action-container .call-to-action {
    margin: auto 40px;
    width: 300px;
  }
}
section.top .content-container .call-to-action-container .call-to-action hr {
  border: none;
  border-top: 2px solid rgba(0, 0, 0, 0.4666666667);
}
section.top .content-container .call-to-action-container .call-to-action .desc {
  padding: 16px 16px 0;
  display: block;
}
section.top .content-container .call-to-action-container .call-to-action span {
  display: block;
  font-size: 16px;
}
section.top .content-container .call-to-action-container .call-to-action span.starting-price {
  font-size: 1.6em;
  margin-bottom: 40px;
  text-transform: none;
}
section.top .content-container .call-to-action-container .call-to-action span.starting-price .discounted {
  display: inline;
  font-size: 20px;
  opacity: 70%;
  text-decoration: line-through;
}
section.top .content-container .call-to-action-container .call-to-action:hover {
  transform: scale(1.1);
}
section.top .content-container .call-to-action-container .call-to-action .cta {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6666666667);
  -webkit-backdrop-filter: blur(40px) saturate(400%);
  backdrop-filter: blur(40px) saturate(400%);
}
@media (max-width: 800px) {
  section.top .content-container {
    flex-direction: column;
  }
  section.top .content-container .call-to-action-container .call-to-action {
    margin: auto;
    display: block;
    width: auto;
  }
}
section.top.single {
  height: 40vw;
  background-position: center;
}
section.top.single .content-container {
  padding-top: 20vw;
}
@media (max-width: 700px) {
  section.top.single .content-container {
    padding-top: 120px;
  }
}
@media (max-width: 800px) {
  section.top.single {
    min-height: 60vh;
  }
}
@media (max-width: 800px) {
  section.top {
    min-height: 720px;
  }
}
@media (max-width: 600px) {
  section.top .content-container {
    padding-top: 120px;
  }
}
section.split {
  display: flex;
  width: 80vw;
  position: relative;
  margin: 64px auto auto;
  max-width: 1200px;
}
section.split h2, section.split h3, section.split h4 {
  margin: 0;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
}
section.split h2 span, section.split h3 span, section.split h4 span {
  font-family: "Cormorant Garamond", serif !important;
}
section.split h2, section.split h3 {
  display: inline-block;
  padding-bottom: 2px;
  background-image: linear-gradient(to right, #ffc209, #ffd229);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom left;
}
section.split h2 {
  font-size: 42px;
  line-height: 60px;
}
section.split h3 {
  font-size: 32px;
}
section.split h4 {
  font-size: 24px;
}
section.split .left-content {
  padding: 0 32px 32px;
  flex: 1;
  margin-right: 80px;
  margin-bottom: 16px;
  min-height: 100%;
}
section.split .left-content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
section.split .left-content p strong {
  font-weight: 700;
}
section.split .left-content .image {
  margin: 12px 0 0;
}
section.split .left-content .image img {
  max-width: 100%;
  object-fit: contain;
  height: auto;
  width: fit-content;
  border-radius: 4px;
}
section.split .sidebar-content {
  flex: 0 0 380px;
}
section.split .sidebar-content .offer-tour-cards {
  margin-top: 32px;
  padding: 0 0 16px;
}
section.split .sidebar-content .offer-tour-cards h2 {
  margin: 0 20px;
}
section.split .sidebar-content .offer-card {
  margin: 0 4px 16px;
  padding: 0 16px 16px;
}
section.split .sidebar-content .offer-card table {
  width: 100%;
  border-collapse: collapse;
}
section.split .sidebar-content .offer-card table tr {
  text-transform: none;
}
section.split .sidebar-content .offer-card table tr:not(:first-of-type) {
  border-top: 1px solid #dfdfdf;
}
section.split .sidebar-content .offer-card table tr th, section.split .sidebar-content .offer-card table tr td {
  text-align: left;
  font-size: 16px;
  padding: 12px 16px 12px 0;
}
section.split .sidebar-content .offer-card table tr th {
  font-weight: 400;
  text-transform: uppercase;
}
section.split .sidebar-content .offer-card table tr td {
  font-weight: 600;
}
section.split .sidebar-content .offer-card table tr td .discounted {
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.5;
}
section.split .sidebar-content .offer-card table tr td .final-price {
  font-size: 20px;
}
section.split .sidebar-content .offer-card h2 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 42px;
  line-height: 60px;
  font-family: "Cormorant Garamond", serif;
}
@media (max-width: 1366px) {
  section.split {
    width: 90vw;
  }
}
@media (max-width: 960px) {
  section.split {
    display: flex;
    flex-direction: column-reverse;
  }
  section.split h2 {
    font-size: 42px;
  }
  section.split h3 {
    font-size: 34px;
  }
  section.split h4 {
    font-size: 16px;
  }
  section.split .left-content {
    padding: 0;
    margin-right: 0;
  }
  section.split .left-content .image img {
    max-width: 90vw;
  }
}
section .tour {
  flex: 1 0 200px;
  text-decoration: none;
  color: #000;
  display: block;
  position: relative;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  margin-top: 40px;
  margin-bottom: 0;
  transition: all 1s cubic-bezier(0.2, 0.7, 0.05, 1);
}
section .tour.landing {
  margin-top: 140px;
  margin-bottom: -100px;
  animation: slide-up 0.5s cubic-bezier(0.2, 0.7, 0.05, 1) forwards;
}
section .tour.list {
  flex-basis: 280px;
}
section .tour.small {
  animation: none;
  margin: 32px 16px;
}
@keyframes slide-up {
  0% {
    margin-top: 140px;
    margin-bottom: -100px;
  }
  100% {
    margin-top: 40px;
    margin-bottom: 0;
  }
}
section .tour:nth-of-type(1) {
  animation-delay: 0.55s;
}
section .tour:nth-of-type(2) {
  animation-delay: 0.6s;
}
section .tour:nth-of-type(3) {
  animation-delay: 0.65s;
}
section .tour:hover {
  transform: scale(1.02);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.0666666667);
}
section .tour:hover .call-to-action {
  background: #ffd229;
}
@media (max-width: 800px) {
  section .tour {
    flex-basis: unset !important;
  }
  section .tour:hover {
    transform: none;
  }
}
section .tour .cover-container {
  position: relative;
  height: 200px;
}
section .tour .cover-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
section .tour .cover-container .tour-dates {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 12px;
  color: #fff;
  text-shadow: 0 1px 4px #000, 0 1px 4px #000;
  font-size: 1.2em;
  text-align: left;
}
section .tour .title {
  text-align: left;
  margin: 20px;
  font-size: 1.2em;
  font-weight: 500;
  text-transform: uppercase;
}
section .tour .price-container {
  position: relative;
  height: 100px;
}
section .tour .price-container .price {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 20px;
  font-size: 32px;
  font-weight: 400;
  text-decoration: none;
  text-align: right;
  display: block;
  color: #171717;
}
section .tour .price-container .price .discounted {
  display: inline;
  font-size: 20px;
  opacity: 70%;
  text-decoration: line-through;
}
section .tour .separator {
  height: 60px;
  width: 100%;
}
section .tour .call-to-action {
  transition: all 1s cubic-bezier(0.2, 0.7, 0.05, 1);
  margin-top: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  display: block;
  padding: 16px 0;
  background: #ffc209;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 1px 3px 2px rgba(0, 0, 0, 0.0666666667);
}
section .background-image {
  position: absolute;
  bottom: -20vw;
  left: 0;
  max-width: 70vw;
  opacity: 0.1;
  z-index: -1;
}
section .background-image.margin {
  bottom: -30vw;
}
@media (max-width: 1000px) {
  section .background-image {
    max-width: 90vw;
  }
}
section.tours {
  width: 80vw;
  position: relative;
  margin: 64px auto auto;
  max-width: 1200px;
}
section.tours .anchor {
  position: absolute;
  margin-top: -100px;
}
section.tours .content-container {
  position: relative;
  margin: -160px auto 0;
  max-width: 80vw;
  text-align: center;
}
@media (max-width: 1000px) {
  section.tours .content-container {
    max-width: 90vw;
  }
}
@media (max-width: 800px) {
  section.tours .content-container {
    max-width: 80vw;
  }
}
section.tours .content-container h2 {
  font-size: 2em;
}
section.tours .content-container .tours-container {
  display: flex;
  column-gap: 40px;
}
section.tours .content-container .tours-container.list {
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  section.tours .content-container .tours-container {
    column-gap: 20px;
  }
}
@media (max-width: 800px) {
  section.tours .content-container .tours-container {
    flex-direction: column;
  }
}
section.why-travel-with-us .content-container {
  margin: auto;
  width: 800px;
  max-width: 80vw;
  text-align: center;
}
section.why-travel-with-us .content-container.card {
  background: rgba(255, 255, 255, 0.7215686275);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  margin: auto;
  padding: 16px 32px;
  border-radius: 16px;
  width: fit-content;
}
@media (max-width: 800px) {
  section.why-travel-with-us .content-container.card {
    margin: auto;
  }
}
section.why-travel-with-us .content-container.negative-margin {
  margin: -200px auto 0;
}
section.why-travel-with-us .content-container h2 {
  font-size: 2.5em;
  font-family: "Cormorant Garamond", serif;
}
section.why-travel-with-us .content-container p {
  font-size: 16px;
  line-height: 24px;
}
section.why-travel-with-us.mobile-card {
  position: relative;
  margin: 0 74px;
  text-align: center;
}
section .cta-button {
  width: 200px;
  padding: 8px 20px;
  margin-bottom: 20px;
  background: #ffc209;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  cursor: pointer;
  border: none;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  transition: all 1s cubic-bezier(0.2, 0.7, 0.05, 1);
}
section .cta-button:hover {
  background: #ffd229;
  transform: scale(1.02);
}
section .cta-button img {
  height: 18px;
  vertical-align: middle;
}
section.testimonials {
  position: relative;
}
section.testimonials .content-container {
  margin: 100px auto 80px;
  width: 800px;
  max-width: 80vw;
  text-align: center;
}
section.testimonials .content-container h2 {
  font-size: 2.5em;
  font-family: "Cormorant Garamond", serif;
}
section.testimonials .content-container .testimonial-container {
  width: 100%;
  margin: auto;
  overflow: visible;
  position: relative;
  text-align: center;
}
section.testimonials .content-container .testimonial-container .testimonial-container-inner {
  white-space: nowrap;
}
section.testimonials .content-container .testimonial-container .testimonial-container-inner .testimonial {
  width: 100%;
  padding: 20px 40px;
  margin: 10px 0 0;
  box-sizing: border-box;
  white-space: normal;
  vertical-align: top;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  display: inline-flex;
  column-gap: 20px;
  row-gap: 32px;
}
section.testimonials .content-container .testimonial-container .testimonial-container-inner .testimonial .reviewer {
  flex: 0 0 120px;
  text-align: center;
}
section.testimonials .content-container .testimonial-container .testimonial-container-inner .testimonial .reviewer img {
  display: inline-block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #171717;
}
section.testimonials .content-container .testimonial-container .testimonial-container-inner .testimonial .reviewer .reviewer-name {
  display: block;
  color: #333;
}
section.testimonials .content-container .testimonial-container .testimonial-container-inner .testimonial .review {
  flex: 1;
  text-align: left;
  color: #171717;
  font-size: 16px;
  line-height: 24px;
}
section.testimonials .content-container .testimonial-container .testimonial-container-inner .testimonial .review .rating {
  padding-top: 16px;
  display: block;
}
@media (max-width: 800px) {
  section.testimonials .content-container .testimonial-container .testimonial-container-inner .testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  section.testimonials .content-container .testimonial-container .testimonial-container-inner .testimonial .reviewer {
    flex: 1;
  }
}
section.testimonials .content-container .testimonial-container button {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  line-height: 40px;
  border-radius: 24px;
  text-align: center;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  z-index: 2;
  background: transparent;
  transition: background-color 0.4s;
}
section.testimonials .content-container .testimonial-container button:hover {
  background-color: #f1f1f1;
}
section.testimonials .content-container .testimonial-container button#prev_testimonial_button {
  left: -40px;
}
section.testimonials .content-container .testimonial-container button#next_testimonial_button {
  right: -40px;
}
section.bottom {
  background: #171717;
  color: #a0a0a0;
}
section.bottom .content-container {
  margin: auto;
  width: 1200px;
  max-width: 80vw;
  padding: 40px 0;
  display: flex;
  z-index: 1;
  column-gap: 40px;
  row-gap: 80px;
}
section.bottom .content-container .column {
  flex: 1 0 0;
}
section.bottom .content-container .column h3 {
  margin: 0;
  padding: 0 0 20px;
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
}
section.bottom .content-container .column ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 20px;
}
section.bottom .content-container .column ul li {
  margin: 0 0 10px;
}
section.bottom .content-container .column ul li a {
  text-decoration: none;
  color: #a0a0a0;
  font-weight: 500;
}
section.bottom .content-container .column ul li a:hover {
  color: #ffc209;
}
section.bottom .content-container .column.company img {
  width: 100%;
}
section.bottom .content-container .column.company .social-media a {
  display: inline;
  text-decoration: none;
}
section.bottom .content-container .column.company .social-media a img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  transition: transform 200ms ease-in-out;
}
section.bottom .content-container .column.company .social-media a img.small {
  height: 20px;
  width: 20px;
  margin: 2px 0;
}
section.bottom .content-container .column.company .social-media a img.medium {
  margin: 0 8px;
}
section.bottom .content-container .column.company .social-media a img:hover {
  transform: scale(1.2);
}
section.bottom .content-container .column.company p {
  font-size: 0.9em;
  line-height: 1.5;
  color: #777;
}
section.bottom .content-container .column.newsletter label {
  font-size: 0.9em;
  font-style: italic;
  color: #777;
}
section.bottom .content-container .column.newsletter label .newsletter-email-input {
  width: 100%;
  padding: 8px;
  margin: 8px 0 16px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #171717;
  color: #fff;
  line-height: 10px;
}
section.bottom .content-container .column.newsletter label .newsletter-email-input:focus {
  outline: none;
  border-color: #ffc209;
}
section.bottom .content-container .column.newsletter .newsletter-submit {
  border: none;
  cursor: pointer;
}
@media (max-width: 800px) {
  section.bottom .content-container {
    flex-direction: column;
  }
}
section.testimonial-container {
  margin: 64px auto auto;
  max-width: 1200px;
  padding: 0 16px;
}
section.testimonial-container .masonry {
  column-count: 3;
  column-gap: 40px;
}
@media (max-width: 1000px) {
  section.testimonial-container .masonry {
    column-count: 2;
  }
}
@media (max-width: 800px) {
  section.testimonial-container .masonry {
    column-count: 1;
  }
}
section.testimonial-container .masonry .testimonial-card {
  display: inline-block;
  width: 100%;
  margin: 0;
  break-inside: avoid;
  box-sizing: border-box;
  padding: 20px;
  transition: transform 0.3s;
  font-size: 1em;
}
section.testimonial-container .masonry .testimonial-card .testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
}
section.testimonial-container .masonry .testimonial-card .testimonial-header .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
section.testimonial-container .masonry .testimonial-card .testimonial-header .avatar img {
  width: 100%;
  border-radius: 64px;
}
section.testimonial-container .masonry .testimonial-card .testimonial-header .testimonial-text .name {
  font-weight: bold;
  font-size: 1.2em;
}
section.testimonial-container .masonry .testimonial-card .testimonial-header .testimonial-text .stars {
  color: #ffc209;
  margin-top: 6px;
}
section.testimonial-container .masonry .testimonial-card .testimonial-header .testimonial-text .stars img {
  margin-right: -4px;
  height: 20px;
}
section button {
  background-color: #ffc209;
  color: #000;
  padding: 8px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  transition: background 200ms ease-in-out;
}
section button img {
  height: 18px;
}
section button.right {
  margin: auto 0 auto auto;
}
section button:hover {
  background: #ffd229;
}
section button.normal {
  background: #fff;
}
@media (max-width: 800px) {
  section.testimonial-container {
    display: block;
  }
}
section.about-us .team {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
section.about-us .team-member {
  text-align: center;
  margin: 0 auto;
  flex: 1;
  padding: 16px;
}
section.about-us .team-member img {
  width: 100%;
  border-radius: 100px;
  max-width: 100px;
  margin: 8px;
  border: 2px solid #171717;
  transition: transform 300ms ease-in-out;
}
@media (max-width: 800px) {
  section.about-us .team-member {
    width: 100%;
  }
}
section.contact-us-section .contact-us {
  margin: 64px auto auto;
  max-width: 1200px;
  display: flex;
  width: 100vw;
}
section.contact-us-section .contact-us.fit-width {
  width: 100%;
  max-width: 100%;
  margin: auto;
  display: block;
}
section.contact-us-section .contact-us.fit-width .contact-form {
  width: calc(100% - 48px);
  padding-top: 40px;
}
@media (max-width: 800px) {
  section.contact-us-section .contact-us.fit-width .contact-form {
    width: calc(100% - 48px);
  }
}
section.contact-us-section .contact-us .contact-form {
  flex: 3;
  border-radius: 24px;
  background-repeat: repeat;
  background-position: center;
  padding: 24px 24px 42px;
  text-align: left;
}
section.contact-us-section .contact-us .contact-form .counter-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.contact-us-section .contact-us .contact-form .counter {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 10px;
}
section.contact-us-section .contact-us .contact-form .counter button {
  background: none;
  border: none;
  color: #ffc209;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
}
section.contact-us-section .contact-us .contact-form .counter span {
  margin: 0 10px;
  font-size: 18px;
}
section.contact-us-section .contact-us .contact-form p {
  padding: 0;
  margin: 4px 0 32px;
  line-height: 20px;
}
section.contact-us-section .contact-us .contact-form p.big {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 8px;
  margin-bottom: 16px;
}
section.contact-us-section .contact-us .contact-form .form-field {
  margin-bottom: 20px;
}
section.contact-us-section .contact-us .contact-form .form-field.half {
  width: calc(50% - 10px);
}
@media (max-width: 800px) {
  section.contact-us-section .contact-us .contact-form .form-field.half {
    width: 100%;
  }
}
section.contact-us-section .contact-us .contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
section.contact-us-section .contact-us .contact-form .form-row .form-field {
  flex: 1;
  margin-bottom: 0;
}
section.contact-us-section .contact-us .contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: normal;
}
section.contact-us-section .contact-us .contact-form input, section.contact-us-section .contact-us .contact-form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 2px;
  box-sizing: border-box;
}
section.contact-us-section .contact-us .contact-form textarea {
  height: 150px;
  resize: vertical;
}
section.contact-us-section .contact-us .contact-form .form-message {
  margin: 12px 0;
}
section.contact-us-section .contact-us .contact-info {
  flex: 2;
  padding: 24px 24px 42px;
  text-align: left;
}
section.contact-us-section .contact-us .contact-info h2 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  display: inline-block;
  padding-bottom: 2px;
  background-image: linear-gradient(to right, #ffc209, #ffd229);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom left;
}
section.contact-us-section .contact-us .contact-info p {
  padding: 0;
  margin: 4px 0;
  line-height: 20px;
}
section.contact-us-section .contact-us .contact-info p a {
  color: #f34605;
  text-decoration: none;
}
section.contact-us-section .contact-us .contact-info p a:hover {
  text-decoration: underline;
}
@media (max-width: 800px) {
  section.contact-us-section .contact-us {
    display: block;
  }
}

@media (max-width: 800px) {
  .desktop-only {
    display: none;
  }
}

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