/* - - - - - - fonts - - - - - - */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Square+Peg&display=swap");
/* - - - - - - colors - - - - - - */
/* - - - - - - fonts  - - - - - - */
/* - - - - - - mixins - - - - - - */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

p,
span,
a,
li {
  font-size: 0.9vw;
  font-weight: 400;
}
@media (min-width: 769px) and (max-width: 1024px) {
  p,
  span,
  a,
  li {
    font-size: 1.3vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  p,
  span,
  a,
  li {
    font-size: 1.5vw;
  }
}
@media (max-width: 500px) {
  p,
  span,
  a,
  li {
    font-size: 3vw;
  }
}

@keyframes bounce {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0, -0.5vw);
  }
  50% {
    transform: translate(0, 0);
  }
  75% {
    transform: translate(0, 0.5vw);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  width: 100%;
  padding: 0 0 0.5vw 0;
  position: fixed;
  top: 0;
}
@media (max-width: 500px) {
  .header {
    padding: 0 0 1vw 0;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .header {
    padding: 0 0 1.5vw 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header {
    padding: 0 0 1.5vw 0;
  }
}
.header .wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1vw 15vw;
  background-color: transparent;
  overflow: hidden;
  transition: background-color 300ms ease;
}
@media (max-width: 500px) {
  .header .wrapper {
    padding: 3vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .header .wrapper {
    padding: 2vw 5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header .wrapper {
    padding: 1.5vw 5vw;
  }
}
.header .wrapper .logo {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header .wrapper .logo a {
  display: block;
  width: 100%;
}
@media (max-width: 500px) {
  .header .wrapper .logo {
    width: 35%;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .header .wrapper .logo {
    width: 25%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header .wrapper .logo {
    width: 20%;
  }
}
.header .wrapper .links {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  .header .wrapper .links {
    position: fixed;
    top: 9vh;
    z-index: 2;
    left: 0;
    height: 91vh;
    width: 100%;
    margin: 0 auto;
    background-color: #551215;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in-out 0.3s;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .header .wrapper .links {
    position: fixed;
    top: 12vh;
    z-index: 2;
    left: 0;
    height: 88vh;
    width: 100%;
    margin: 0 auto;
    background-color: #551215;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in-out 0.3s;
  }
}
.header .wrapper .links ul {
  list-style: none;
  display: flex;
  gap: 2vw;
}
@media (max-width: 500px) {
  .header .wrapper .links ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .header .wrapper .links ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
@media (max-width: 500px) {
  .header .wrapper .links ul li {
    margin: 4vw 0;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .header .wrapper .links ul li {
    margin: 2vw 0;
  }
}
.header .wrapper .links ul li a {
  text-decoration: none;
  text-transform: capitalize;
  font-size: 1vw;
  color: #ffffff;
  font-weight: 400;
}
.header .wrapper .links ul li a:hover {
  color: #eabb93;
}
@media (max-width: 500px) {
  .header .wrapper .links ul li a {
    font-size: 4.5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .header .wrapper .links ul li a {
    font-size: 2.5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header .wrapper .links ul li a {
    font-size: 1.7vw;
  }
}
.header .wrapper .links ul li.mobile-nav-cta {
  display: none;
}
@media (max-width: 500px) {
  .header .wrapper .links ul li.mobile-nav-cta {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header .wrapper .links ul li.mobile-nav-cta a {
    padding: 2vw 6vw;
    background-color: #eabb93;
    border-radius: 5vw;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 4.5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .header .wrapper .links ul li.mobile-nav-cta {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header .wrapper .links ul li.mobile-nav-cta a {
    padding: 2vw 6vw;
    background-color: #eabb93;
    border-radius: 5vw;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 2.5vw;
  }
}
.header .wrapper label {
  display: none;
}
@media (max-width: 500px) {
  .header .wrapper label {
    display: block;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .header .wrapper label {
    display: block;
  }
}
.header .wrapper label svg {
  color: #ffffff;
  width: 8vw;
  height: 8vw;
}
@media (min-width: 501px) and (max-width: 768px) {
  .header .wrapper label svg {
    width: 6vw;
    height: 6vw;
  }
}
.header .wrapper #mobile-menu {
  display: none;
}
.header .wrapper #mobile-menu:checked ~ .links {
  opacity: 1;
  pointer-events: auto;
  transition: opacity ease-in-out 0.3s;
}
.header .wrapper .nav-cta {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 500px) {
  .header .wrapper .nav-cta {
    display: none;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .header .wrapper .nav-cta {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header .wrapper .nav-cta {
    width: 20%;
  }
}
.header .wrapper .nav-cta a {
  padding: 0.8vw 2vw;
  background-color: #551215;
  border-radius: 5vw;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1vw;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header .wrapper .nav-cta a {
    font-size: 1.8vw;
  }
}
.header .wrapper.scrolled {
  background-color: #551215;
}
.header .wrapper.scrolled label svg {
  color: #eabb93;
}
.header .wrapper.scrolled .nav-cta a {
  background-color: #eabb93;
  color: #1a1a1a;
}

.hero {
  width: 100%;
  height: auto;
  padding: 10vw 10vw 5vw 10vw;
  background: url("../../../assets/images/hero-image.jpg");
  background-size: cover;
  background-position: center -25vw;
  background-repeat: no-repeat;
  background-color: #f8f8f8;
}
@media (max-width: 500px) {
  .hero {
    padding: 10vw 0 0 0;
    background-position: center -50vh;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .hero {
    padding: 10vw 0 0 0;
    background-position: center -60vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 10vw 5vw;
    background-position: center -35vw;
  }
}
.hero .intro {
  width: 100%;
  padding: 5vw 12vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1vw;
  margin-bottom: 20vw;
}
@media (max-width: 500px) {
  .hero .intro {
    padding: 25vw 5vw;
    margin-bottom: 15vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .hero .intro {
    padding: 15vw 5vw;
    margin-bottom: 15vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero .intro {
    padding: 10vw 8vw;
    margin-bottom: 10vw;
  }
}
.hero .intro h1 {
  font-size: 5vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 0.8;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2vw;
}
@media (max-width: 500px) {
  .hero .intro h1 {
    font-size: 9vw;
    line-height: revert;
    margin-bottom: 10vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .hero .intro h1 {
    font-size: 7vw;
    line-height: 0.8;
    margin-bottom: 5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero .intro h1 {
    font-size: 7vw;
    line-height: 0.8;
    margin-bottom: 5vw;
  }
}
.hero .intro h1 span {
  font-family: "Square Peg", cursive;
  font-size: 10vw;
  font-weight: 400;
}
@media (max-width: 500px) {
  .hero .intro h1 span {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 9vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .hero .intro h1 span {
    font-weight: 900;
    font-size: 12vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero .intro h1 span {
    font-weight: 900;
    font-size: 12vw;
  }
}
.hero .intro h2 {
  font-size: 1.1vw;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3vw;
}
@media (max-width: 500px) {
  .hero .intro h2 {
    font-size: 4.5vw;
    margin-bottom: 10vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .hero .intro h2 {
    font-size: 2.5vw;
    margin-bottom: 5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero .intro h2 {
    font-size: 1.8vw;
    margin-bottom: 5vw;
  }
}
.hero .intro .hero-cta a {
  padding: 1vw 3vw;
  background-color: #551215;
  border-radius: 5vw;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5vw;
}
@media (max-width: 500px) {
  .hero .intro .hero-cta a {
    padding: 3vw 7vw;
    font-size: 4.5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .hero .intro .hero-cta a {
    padding: 2vw 7vw;
    font-size: 2.5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero .intro .hero-cta a {
    padding: 2vw 7vw;
    font-size: 1.8vw;
  }
}

#about {
  width: 100%;
  padding: calc(5vw + var(--header-height)) 0 0 0;
}
#about h2.primary-section-title {
  color: #551215;
  text-align: center;
  font-size: 3vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 2vw;
  padding: 0 5vw;
}
@media (max-width: 500px) {
  #about h2.primary-section-title {
    font-size: 8vw;
    padding: 0 5vw;
    text-align: left;
    margin-bottom: 5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #about h2.primary-section-title {
    font-size: 6vw;
    padding: 0 7vw;
    text-align: left;
    margin-bottom: 3vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #about h2.primary-section-title {
    font-size: 4vw;
    padding: 0 7vw;
    margin-bottom: 3vw;
  }
}
#about h3.secondary-section-title {
  color: #eabb93;
  text-align: center;
  font-size: 3vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
@media (max-width: 500px) {
  #about h3.secondary-section-title {
    font-size: 8vw;
    margin-bottom: 3vw;
    padding: 0 5vw;
    text-align: left;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #about h3.secondary-section-title {
    font-size: 6vw;
    margin-bottom: 3vw;
    padding: 0 7vw;
    text-align: left;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #about h3.secondary-section-title {
    font-size: 4vw;
    margin-bottom: 2vw;
    padding: 0 7vw;
  }
}
#about h3.section-subtitle {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.7vw;
  padding: 0 15vw;
  color: #666666;
}
@media (max-width: 500px) {
  #about h3.section-subtitle {
    font-size: 4.5vw;
    padding: 0 5vw;
    text-align: left;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #about h3.section-subtitle {
    font-size: 3.5vw;
    padding: 0 7vw;
    text-align: left;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #about h3.section-subtitle {
    font-size: 2.2vw;
    line-height: 1.5;
  }
}
#about h3.section-subtitle span {
  font-size: inherit;
  font-weight: inherit;
  color: #666666;
  font-weight: 800;
}
#about .content {
  width: 100%;
  padding: 0 5vw;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 4vw;
  flex-wrap: nowrap;
}
@media (max-width: 500px) {
  #about .content {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #about .content {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #about .content {
    padding: 0;
  }
}
#about .content .left {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  #about .content .left {
    width: 100%;
    padding: 0 5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #about .content .left {
    width: 100%;
    padding: 0 7vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #about .content .left {
    padding: 0;
  }
}
#about .content .left p {
  color: #666666;
  margin: 1vw 0;
  font-size: 1.1vw;
  line-height: 1.5;
}
@media (max-width: 500px) {
  #about .content .left p {
    font-size: 4vw;
    margin: 2vw 0;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #about .content .left p {
    font-size: 2.5vw;
    margin: 2vw 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #about .content .left p {
    font-size: 1.7vw;
    margin: 1.5vw 0;
  }
}
#about .content .left .section-cta {
  margin-top: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  #about .content .left .section-cta {
    width: 100%;
    margin-top: 4vw;
    justify-content: flex-start;
    padding-bottom: 10vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #about .content .left .section-cta {
    width: 100%;
    margin-top: 4vw;
    justify-content: flex-start;
    padding-bottom: 10vw;
  }
}
#about .content .left .section-cta a {
  padding: 1vw 5vw;
  background-color: #551215;
  border-radius: 5vw;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.2vw;
}
@media (max-width: 500px) {
  #about .content .left .section-cta a {
    font-size: 4vw;
    padding: 3vw 7vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #about .content .left .section-cta a {
    font-size: 2.5vw;
    padding: 3vw 7vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #about .content .left .section-cta a {
    font-size: 1.8vw;
    padding: 2vw 7vw;
  }
}
#about .content .right {
  width: 45%;
  padding: 0.5vw;
  background-color: #ffffff;
  border-radius: 1vw;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.199);
}
@media (max-width: 500px) {
  #about .content .right {
    width: 100%;
    height: 35vh;
    overflow: hidden;
    border-radius: 0;
    padding: 0;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #about .content .right {
    width: 100%;
    height: 45vh;
    overflow: hidden;
    border-radius: 0;
    padding: 0;
  }
}
#about .content .right img {
  width: 100%;
  border-radius: 0.7vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 500px) {
  #about .content .right img {
    border-radius: 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #about .content .right img {
    border-radius: 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #about .content .right img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

#approach {
  padding: calc(7vw + var(--header-height)) 15vw 7vw 15vw;
  background-color: #551215;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 500px) {
  #approach {
    flex-direction: column;
    padding: calc(10vw + var(--header-height)) 5vw 10vw 5vw;
    gap: 10vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #approach {
    flex-direction: column;
    padding: calc(10vw + var(--header-height)) 7vw 10vw 7vw;
    gap: 10vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #approach {
    padding: calc(7vw + var(--header-height)) 5vw 7vw 5vw;
    gap: 7vw;
  }
}
#approach .left {
  width: 48%;
}
@media (max-width: 500px) {
  #approach .left {
    width: 100%;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #approach .left {
    width: 100%;
  }
}
#approach .left h3.section-title {
  color: #ffffff;
  font-size: 3vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 10vw;
}
@media (max-width: 500px) {
  #approach .left h3.section-title {
    font-size: 6vw;
    margin-bottom: 5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #approach .left h3.section-title {
    font-size: 5vw;
    margin-bottom: 5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #approach .left h3.section-title {
    font-size: 4vw;
    margin-bottom: 7vw;
  }
}
#approach .left .subtitle {
  color: #eabb93;
  font-size: 2vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2vw;
}
@media (max-width: 500px) {
  #approach .left .subtitle {
    font-size: 5vw;
    margin-bottom: 4vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #approach .left .subtitle {
    font-size: 4vw;
    margin-bottom: 3vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #approach .left .subtitle {
    font-size: 3vw;
    margin-bottom: 2.5vw;
  }
}
#approach .left p {
  color: #ffffff;
  font-size: 1.2vw;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 2vw;
}
@media (max-width: 500px) {
  #approach .left p {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #approach .left p {
    font-size: 3vw;
    margin-bottom: 2.5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #approach .left p {
    font-size: 1.7vw;
    margin-bottom: 2vw;
  }
}
#approach .right {
  width: 48%;
}
@media (max-width: 500px) {
  #approach .right {
    width: 100%;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #approach .right {
    width: 100%;
  }
}
#approach .right ul {
  list-style: none;
}
#approach .right ul h3 {
  color: #eabb93;
  font-size: 2vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 2vw;
}
@media (max-width: 500px) {
  #approach .right ul h3 {
    font-size: 5vw;
    margin-bottom: 4vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #approach .right ul h3 {
    font-size: 4vw;
    margin-bottom: 3vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #approach .right ul h3 {
    font-size: 3vw;
    margin-bottom: 2.5vw;
  }
}
#approach .right ul li {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 2vw 0;
}
@media (max-width: 500px) {
  #approach .right ul li {
    margin: 6vw 0;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #approach .right ul li {
    margin: 4vw 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #approach .right ul li {
    margin: 3vw 0;
  }
}
#approach .right ul li .icon {
  width: 5vw;
  height: 5vw;
  margin-right: 2vw;
}
@media (max-width: 500px) {
  #approach .right ul li .icon {
    width: 12vw;
    height: 12vw;
    margin-right: 7vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #approach .right ul li .icon {
    width: 8vw;
    height: 8vw;
    margin-right: 4vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #approach .right ul li .icon {
    width: 6vw;
    height: 6vw;
    margin-right: 3vw;
  }
}
#approach .right ul li .icon img {
  width: 5vw;
  height: 5vw;
}
@media (max-width: 500px) {
  #approach .right ul li .icon img {
    width: 12vw;
    height: 12vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #approach .right ul li .icon img {
    width: 8vw;
    height: 8vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #approach .right ul li .icon img {
    width: 6vw;
    height: 6vw;
  }
}
#approach .right ul li .content {
  line-height: 1.5;
}
#approach .right ul li .content .title {
  font-size: 1.2vw;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #eabb93;
}
@media (max-width: 500px) {
  #approach .right ul li .content .title {
    font-size: 4vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #approach .right ul li .content .title {
    font-size: 3vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #approach .right ul li .content .title {
    font-size: 2vw;
  }
}
#approach .right ul li .content .text {
  font-size: 1.2vw;
  font-weight: 300;
  margin-top: 0.5vw;
}
@media (max-width: 500px) {
  #approach .right ul li .content .text {
    font-size: 4vw;
    margin-top: 1vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #approach .right ul li .content .text {
    font-size: 2.5vw;
    margin-top: 0.7vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #approach .right ul li .content .text {
    font-size: 1.7vw;
    margin-top: 0.5vw;
  }
}

#services {
  padding: calc(7vw + var(--header-height)) 15vw 7vw 15vw;
}
@media (max-width: 500px) {
  #services {
    padding: calc(10vw + var(--header-height)) 3vw 10vw 3vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #services {
    padding: calc(10vw + var(--header-height)) 7vw 10vw 7vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #services {
    padding: calc(7vw + var(--header-height)) 5vw 7vw 5vw;
  }
}
#services h3.section-title {
  color: #551215;
  font-size: 3vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1vw;
}
@media (max-width: 500px) {
  #services h3.section-title {
    font-size: 6vw;
    margin-bottom: 5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #services h3.section-title {
    font-size: 5vw;
    margin-bottom: 3vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #services h3.section-title {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#services h3.subtitle {
  color: #666666;
  font-size: 2vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4vw;
}
@media (max-width: 500px) {
  #services h3.subtitle {
    font-size: 5vw;
    margin-bottom: 7vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #services h3.subtitle {
    font-size: 3vw;
    margin-bottom: 3vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #services h3.subtitle {
    font-size: 2.5vw;
    margin-bottom: 5vw;
  }
}
#services .content {
  width: 100%;
}
#services .content ul {
  width: 100%;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.3vw;
}
@media (max-width: 500px) {
  #services .content ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #services .content ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
#services .content ul li {
  width: 49%;
  margin: 1vw 0;
}
@media (max-width: 500px) {
  #services .content ul li {
    width: 100%;
    margin: 5vw 0;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #services .content ul li {
    width: 100%;
    margin: 4vw 0;
  }
}
#services .content ul li .image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 1vw 1vw 0 0;
  margin-bottom: 1.5vw;
}
@media (max-width: 500px) {
  #services .content ul li .image {
    height: 200px;
    border-radius: 5vw 5vw 0 0;
    margin-bottom: 5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #services .content ul li .image {
    height: 300px;
    border-radius: 3vw 3vw 0 0;
    margin-bottom: 4vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #services .content ul li .image {
    height: 250px;
    border-radius: 2vw 2vw 0 0;
    margin-bottom: 3vw;
  }
}
#services .content ul li .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 500px) {
  #services .content ul li .image img {
    width: 100%;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #services .content ul li .image img {
    width: 100%;
  }
}
#services .content ul li .title {
  color: #551215;
  font-size: 1.2vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 1vw;
  padding-right: 3vw;
}
@media (max-width: 500px) {
  #services .content ul li .title {
    font-size: 4vw;
    margin-bottom: 3vw;
    padding-right: 0;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #services .content ul li .title {
    font-size: 2.7vw;
    margin-bottom: 2vw;
    padding-right: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #services .content ul li .title {
    font-size: 2vw;
    margin-bottom: 2vw;
  }
}
#services .content ul li .description * {
  color: #666666;
  font-size: 1.2vw;
  line-height: 1.5;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 500px) {
  #services .content ul li .description * {
    font-size: 4vw;
    margin-bottom: 3vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #services .content ul li .description * {
    font-size: 2.5vw;
    margin-bottom: 2vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #services .content ul li .description * {
    font-size: 1.7vw;
    margin-bottom: 2vw;
  }
}
#services .content ul li .description * strong {
  font-weight: 800;
}

#experiences {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 500px) {
  #experiences {
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #experiences {
    flex-direction: column;
    gap: 0;
  }
}
#experiences .left {
  width: 65%;
  padding: 7vw 5vw 5vw 15vw;
  background-color: #e6e6e6;
}
@media (max-width: 500px) {
  #experiences .left {
    width: 100%;
    padding: 10vw 3vw 5vw 3vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #experiences .left {
    width: 100%;
    padding: 10vw 7vw 5vw 7vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #experiences .left {
    padding: 7vw 5vw 5vw 5vw;
  }
}
#experiences .left h3.section-title {
  color: #551215;
  font-size: 2vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 1vw;
}
@media (max-width: 500px) {
  #experiences .left h3.section-title {
    font-size: 6vw;
    margin-bottom: 5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #experiences .left h3.section-title {
    font-size: 5vw;
    margin-bottom: 3vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #experiences .left h3.section-title {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#experiences .left h3.subtitle {
  color: #666666;
  font-size: 1.5vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 2vw;
  padding-right: 20vw;
}
@media (max-width: 500px) {
  #experiences .left h3.subtitle {
    font-size: 4.5vw;
    margin-bottom: 7vw;
    padding-right: 0;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #experiences .left h3.subtitle {
    font-size: 3.5vw;
    margin-bottom: 3vw;
    padding-right: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #experiences .left h3.subtitle {
    font-size: 2.5vw;
    margin-bottom: 5vw;
    padding-right: 0;
  }
}
#experiences .left .content {
  width: 100%;
}
#experiences .left .content ul {
  width: 100%;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2vw;
}
@media (max-width: 500px) {
  #experiences .left .content ul {
    flex-direction: column;
    gap: 1vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #experiences .left .content ul {
    flex-direction: column;
    gap: 3vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #experiences .left .content ul {
    flex-direction: column;
    gap: 2vw;
  }
}
#experiences .left .content ul li {
  width: 45%;
}
@media (max-width: 500px) {
  #experiences .left .content ul li {
    width: 100%;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #experiences .left .content ul li {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #experiences .left .content ul li {
    width: 100%;
  }
}
#experiences .left .content ul li p {
  color: #666666;
  font-size: 1.1vw;
  line-height: 1.5;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 500px) {
  #experiences .left .content ul li p {
    font-size: 4vw;
    margin-bottom: 5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #experiences .left .content ul li p {
    font-size: 2.5vw;
    margin-bottom: 1vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #experiences .left .content ul li p {
    font-size: 1.7vw;
    margin-bottom: 1vw;
  }
}
#experiences .left .content ul li p .title {
  color: #666666;
  font-size: 1.1vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 500px) {
  #experiences .left .content ul li p .title {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #experiences .left .content ul li p .title {
    font-size: 2.5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #experiences .left .content ul li p .title {
    font-size: 1.7vw;
  }
}
#experiences .right {
  width: 35%;
  background-image: url("../../../assets/images/lady-jumbing.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 500px) {
  #experiences .right {
    width: 100%;
    height: 300px;
    background-position: center -30vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #experiences .right {
    width: 100%;
    height: 400px;
    background-position: center -30vw;
  }
}

#our-edge {
  padding: calc(7vw + var(--header-height)) 15vw 7vw 15vw;
}
@media (max-width: 500px) {
  #our-edge {
    padding: calc(10vw + var(--header-height)) 3vw 10vw 3vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #our-edge {
    padding: calc(10vw + var(--header-height)) 7vw 10vw 7vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #our-edge {
    padding: calc(7vw + var(--header-height)) 5vw 7vw 5vw;
  }
}
#our-edge h3.section-title {
  color: #551215;
  font-size: 3vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5vw;
}
@media (max-width: 500px) {
  #our-edge h3.section-title {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #our-edge h3.section-title {
    font-size: 5vw;
    margin-bottom: 4vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #our-edge h3.section-title {
    font-size: 4vw;
    margin-bottom: 5vw;
  }
}
#our-edge .content {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 500px) {
  #our-edge .content {
    flex-direction: column;
    gap: 7vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #our-edge .content {
    flex-direction: column;
    gap: 7vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #our-edge .content {
    flex-direction: row;
    gap: 5vw;
  }
}
#our-edge .content .left {
  width: 48%;
  background-image: url("../../../assets/images/luggage@4x.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 500px) {
  #our-edge .content .left {
    display: none;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #our-edge .content .left {
    display: none;
  }
}
#our-edge .content .right {
  width: 48%;
}
@media (max-width: 500px) {
  #our-edge .content .right {
    width: 100%;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #our-edge .content .right {
    width: 100%;
  }
}
#our-edge .content .right ul {
  list-style: none;
}
#our-edge .content .right ul h3.list-title {
  color: #666666;
  font-size: 1.8vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 2vw;
}
@media (max-width: 500px) {
  #our-edge .content .right ul h3.list-title {
    font-size: 4.5vw;
    margin-bottom: 7vw;
    text-align: center;
    color: #eabb93;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #our-edge .content .right ul h3.list-title {
    font-size: 3.5vw;
    margin-bottom: 5vw;
    text-align: center;
    color: #eabb93;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #our-edge .content .right ul h3.list-title {
    font-size: 2.5vw;
    margin-bottom: 4vw;
  }
}
#our-edge .content .right ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 2vw 0;
}
@media (max-width: 500px) {
  #our-edge .content .right ul li {
    flex-direction: row;
    align-items: flex-start;
    margin: 5vw 0;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #our-edge .content .right ul li {
    flex-direction: row;
    align-items: flex-start;
    margin: 5vw 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #our-edge .content .right ul li {
    flex-direction: row;
    align-items: center;
    margin: 3vw 0;
  }
}
#our-edge .content .right ul li .icon {
  margin-right: 1vw;
}
@media (max-width: 500px) {
  #our-edge .content .right ul li .icon {
    margin-right: 3vw;
    width: 30%;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #our-edge .content .right ul li .icon {
    margin-right: 3vw;
    width: 20%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #our-edge .content .right ul li .icon {
    margin-right: 1vw;
    width: 20%;
  }
}
#our-edge .content .right ul li .icon span {
  font-size: 3.5vw;
  color: #e6e6e6;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
@media (max-width: 500px) {
  #our-edge .content .right ul li .icon span {
    font-size: 15vw;
    line-height: 1;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #our-edge .content .right ul li .icon span {
    font-size: 10vw;
    line-height: 1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #our-edge .content .right ul li .icon span {
    font-size: 5vw;
    line-height: 1;
  }
}
#our-edge .content .right ul li .content p {
  color: #666666;
  font-family: "Nunito", sans-serif;
  font-size: 1.1vw;
  line-height: 1.5;
  font-weight: 300;
}
@media (max-width: 500px) {
  #our-edge .content .right ul li .content p {
    font-size: 4vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #our-edge .content .right ul li .content p {
    font-size: 2.5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #our-edge .content .right ul li .content p {
    font-size: 1.7vw;
  }
}
#our-edge .content .right ul li .content p span {
  font-size: inherit;
  color: #666666;
  font-weight: 700;
}
#our-edge .content .right .edge-cta {
  margin-top: 4vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 500px) {
  #our-edge .content .right .edge-cta {
    justify-content: center;
    margin-top: 10vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #our-edge .content .right .edge-cta {
    justify-content: center;
    margin-top: 10vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #our-edge .content .right .edge-cta {
    justify-content: flex-start;
    margin-top: 4vw;
  }
}
#our-edge .content .right .edge-cta a {
  padding: 1vw 4vw;
  background-color: #551215;
  color: #ffffff;
  font-size: 1.2vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5vw;
}
@media (max-width: 500px) {
  #our-edge .content .right .edge-cta a {
    font-size: 4vw;
    padding: 3vw 7vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #our-edge .content .right .edge-cta a {
    font-size: 2.5vw;
    padding: 2vw 7vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #our-edge .content .right .edge-cta a {
    font-size: 1.7vw;
    padding: 2vw 7vw;
  }
}

#main-cta {
  padding: 10vw 15vw;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6117647059), rgba(0, 0, 0, 0.662745098)), url("../../../assets/images/travel-beyond-ordinary-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 500px) {
  #main-cta {
    padding: 15vw 10vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #main-cta {
    padding: 12vw 10vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #main-cta {
    padding: 10vw 12vw;
  }
}
#main-cta h3.section-title {
  color: #eabb93;
  font-size: 3vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3vw;
}
@media (max-width: 500px) {
  #main-cta h3.section-title {
    font-size: 6vw;
    margin-bottom: 5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #main-cta h3.section-title {
    font-size: 5vw;
    margin-bottom: 4vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #main-cta h3.section-title {
    font-size: 4vw;
    margin-bottom: 3vw;
  }
}
#main-cta p.cta-content {
  color: #ffffff;
  padding: 0 5vw;
  font-size: 1.3vw;
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 4vw;
}
@media (max-width: 500px) {
  #main-cta p.cta-content {
    font-size: 4vw;
    padding: 0 3vw;
    margin-bottom: 6vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #main-cta p.cta-content {
    font-size: 3vw;
    padding: 0 7vw;
    margin-bottom: 5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #main-cta p.cta-content {
    font-size: 2.2vw;
    margin-bottom: 4vw;
  }
}
#main-cta .cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-cta .cta-button a {
  background-color: #eabb93;
  color: #1a1a1a;
  font-size: 1.5vw;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  padding: 1vw 4vw;
  text-decoration: none;
  border-radius: 5vw;
}
@media (max-width: 500px) {
  #main-cta .cta-button a {
    font-size: 4vw;
    padding: 3vw 7vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #main-cta .cta-button a {
    font-size: 2.5vw;
    padding: 2vw 7vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #main-cta .cta-button a {
    font-size: 1.8vw;
    padding: 2vw 7vw;
  }
}

#contact {
  padding: 10vw 15vw 7vw 15vw;
  background-color: #1a1a1a;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 500px) {
  #contact {
    flex-direction: column-reverse;
    padding: 10vw 3vw 7vw 3vw;
    gap: 7vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact {
    flex-direction: column-reverse;
    padding: 10vw 7vw 7vw 7vw;
    gap: 7vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #contact {
    padding: 10vw 5vw 7vw 5vw;
    gap: 5vw;
  }
}
#contact .left {
  width: 48%;
}
@media (max-width: 500px) {
  #contact .left {
    width: 100%;
    padding: 0 3vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .left {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #contact .left {
    padding: 0;
    width: 35%;
  }
}
#contact .left h3.section-title {
  color: #eabb93;
  font-size: 2.5vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 2vw;
}
@media (max-width: 500px) {
  #contact .left h3.section-title {
    display: none;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .left h3.section-title {
    display: none;
  }
}
#contact .left ul {
  list-style: none;
}
#contact .left ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 1vw 0;
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .left ul li {
    margin: 2vw 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #contact .left ul li {
    margin: 1.5vw 0;
  }
}
#contact .left ul li .label {
  margin-right: 1vw;
}
@media (max-width: 500px) {
  #contact .left ul li .label {
    margin-right: 3vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .left ul li .label {
    margin-right: 3vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #contact .left ul li .label {
    margin-right: 2vw;
  }
}
#contact .left ul li .label img {
  width: 2vw;
}
@media (max-width: 500px) {
  #contact .left ul li .label img {
    width: 7vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .left ul li .label img {
    width: 4vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #contact .left ul li .label img {
    width: 3vw;
  }
}
#contact .left ul li .info {
  color: #666666;
  font-family: "Nunito", sans-serif;
  font-size: 1.2vw;
  line-height: 1.5;
  font-weight: 300;
}
@media (max-width: 500px) {
  #contact .left ul li .info {
    font-size: 4vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .left ul li .info {
    font-size: 2vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #contact .left ul li .info {
    font-size: 1.5vw;
  }
}
#contact .left .logo {
  margin-top: 4vw;
}
@media (max-width: 500px) {
  #contact .left .logo {
    margin-top: 7vw;
    text-align: center;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .left .logo {
    margin-top: 5vw;
  }
}
#contact .left .logo img {
  width: 25vw;
}
@media (max-width: 500px) {
  #contact .left .logo img {
    width: 50vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .left .logo img {
    width: 40vw;
  }
}
#contact .right {
  width: 48%;
}
@media (max-width: 500px) {
  #contact .right {
    width: 100%;
    padding: 0 3vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .right {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #contact .right {
    width: 65%;
  }
}
#contact .right h3.section-title {
  color: #eabb93;
  font-size: 2.5vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 2vw;
  display: none;
}
@media (max-width: 500px) {
  #contact .right h3.section-title {
    display: block;
    font-size: 6vw;
    margin-bottom: 5vw;
    text-align: center;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .right h3.section-title {
    display: block;
    font-size: 4vw;
    margin-bottom: 4vw;
    text-align: center;
  }
}
#contact .right form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1vw;
  padding: 3vw 2vw;
  background-color: #202020;
  border-radius: 1vw;
}
@media (max-width: 500px) {
  #contact .right form {
    padding: 5vw 3vw;
    gap: 5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .right form {
    padding: 4vw 3vw;
    gap: 3vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #contact .right form {
    padding: 3vw 2vw;
    gap: 2vw;
  }
}
#contact .right form input,
#contact .right form textarea,
#contact .right form select,
#contact .right form option {
  padding: 0.8vw;
  font-size: 1vw;
  font-family: "Nunito", sans-serif;
  border: none;
  border-radius: 0.3vw;
  background-color: #333333;
  color: #666666;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 500px) {
  #contact .right form input,
  #contact .right form textarea,
  #contact .right form select,
  #contact .right form option {
    font-size: 3.8vw;
    padding: 3vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .right form input,
  #contact .right form textarea,
  #contact .right form select,
  #contact .right form option {
    font-size: 2vw;
    padding: 2vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #contact .right form input,
  #contact .right form textarea,
  #contact .right form select,
  #contact .right form option {
    font-size: 1.5vw;
    padding: 1.5vw;
  }
}
#contact .right form textarea {
  resize: vertical;
  min-height: 5vw;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#contact .right form p {
  color: #666666;
  font-size: 1vw;
}
@media (max-width: 500px) {
  #contact .right form p {
    font-size: 3.8vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .right form p {
    font-size: 2vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #contact .right form p {
    font-size: 1.5vw;
  }
}
#contact .right form button[type=submit] {
  width: -moz-fit-content;
  width: fit-content;
  align-self: flex-end;
  padding: 0.8vw 3vw;
  background-color: #eabb93;
  color: #1a1a1a;
  font-size: 1.1vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 5vw;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 500px) {
  #contact .right form button[type=submit] {
    font-size: 3.8vw;
    padding: 3vw 7vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #contact .right form button[type=submit] {
    font-size: 2vw;
    padding: 2vw 7vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #contact .right form button[type=submit] {
    font-size: 1.5vw;
    padding: 1.5vw 5vw;
  }
}

#footer {
  padding: 3vw 15vw;
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 500px) {
  #footer {
    flex-direction: column-reverse;
    padding: 5vw 3vw;
    gap: 5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #footer {
    flex-direction: column-reverse;
    padding: 5vw 7vw;
    gap: 5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #footer {
    padding: 3vw 5vw;
    gap: 3vw;
  }
}
#footer .left {
  width: 70%;
}
@media (max-width: 500px) {
  #footer .left {
    width: 100%;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #footer .left {
    width: 100%;
  }
}
#footer .left ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2vw;
  margin-bottom: 1vw;
}
@media (max-width: 500px) {
  #footer .left ul {
    flex-wrap: nowrap;
    gap: 4vw;
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #footer .left ul {
    flex-wrap: nowrap;
    gap: 4vw;
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #footer .left ul {
    flex-wrap: nowrap;
    gap: 3vw;
  }
}
#footer .left ul li a {
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  font-weight: 400;
  transition: color 0.3s ease;
  text-decoration: none;
}
@media (max-width: 500px) {
  #footer .left ul li a {
    font-size: 3.5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #footer .left ul li a {
    font-size: 2vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #footer .left ul li a {
    font-size: 1.5vw;
  }
}
#footer .left ul li a:hover {
  color: #551215;
}
#footer .left p {
  color: #666666;
  font-size: 1vw;
  line-height: 1.5;
  font-weight: 300;
}
@media (max-width: 500px) {
  #footer .left p {
    font-size: 3.5vw;
    text-align: center;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #footer .left p {
    font-size: 2vw;
    text-align: center;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #footer .left p {
    font-size: 1.5vw;
  }
}
#footer .right {
  width: 30%;
}
@media (max-width: 500px) {
  #footer .right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #footer .right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
#footer .right .socials {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 500px) {
  #footer .right .socials {
    justify-content: center;
    gap: 5vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #footer .right .socials {
    justify-content: center;
    gap: 5vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #footer .right .socials {
    justify-content: flex-end;
    gap: 2vw;
  }
}
#footer .right .socials a {
  margin-left: 0.5vw;
}
#footer .right .socials a img {
  width: 2vw;
}
@media (max-width: 500px) {
  #footer .right .socials a img {
    width: 6vw;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  #footer .right .socials a img {
    width: 4vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #footer .right .socials a img {
    width: 3vw;
  }
}

body {
  font-family: "Nunito", sans-serif;
  width: 100%;
  height: auto;
  overflow-x: hidden;
}
body .image-break {
  width: 100%;
  height: 30vw;
  background-image: url("../images/boat.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 500px) {
  body .image-break {
    height: 35vh;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  body .image-break {
    height: 45vh;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  body .image-break {
    height: 60vh;
  }
}
body .image-break img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=main.css.map */