:root {
  /* new root */
  --mainText: #74482a;
  --secondaryText: #a17e61;
  --buttonSelect: #dbc9b8;
  --darkText: #362925;
  --backgroundBlock: #855832;
}

* {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

.custom-btn {
  font-weight: bold;
  display: inline-block;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 25px;
  background-color: var(--secondaryText);
  text-decoration: none;
  text-align: center;
}

.custom-btn:hover {
  cursor: pointer;
  background-color: var(--buttonSelect);
  transition: 0.2s ease;
}

.caveat-brush-regular {
  font-family: "Caveat Brush", serif;
  font-weight: 400;
  font-style: normal;
}
h1,
h1 span,
h2,
h2 span,
h3,
h3 span,
h4,
h4 span,
h5 {
  font-family: "Caveat Brush", serif;
  font-weight: 400;
  font-style: normal;
}

p {
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  line-height: 1.5rem;
  font-size: 1rem;
}

.app-container {
  width: 1150px;
  margin: 0 auto;
}

.banner {
  padding: 15px 0;
  display: flex;
}

.logo-wrapper {
  padding: 10px 0;
  flex: 1 1 30%;

  position: relative;
}

.logo-wrapper img {
  width: 90%;
}

.right-banner-wrapper {
  flex: 0 0 68%;
  padding: 0 10px;

  display: flex;
}

.phone-wrapper {
  flex: 0 0 40%;

  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.phone-wrapper a {
  position: relative;
  color: var(--secondaryText);
  text-decoration: none;
  font-weight: 500;
}

.phone-wrapper i {
  color: var(--secondaryText);
  padding: 5px;
}

.socials-wrapper {
  flex: 0 0 20%;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-btn {
  font-weight: bold;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: var(--secondaryText);
  border: none;
  text-decoration: none;
  text-align: center;
}

.nav-btn:hover {
  cursor: pointer;
  background-color: var(--buttonSelect);
  transition: 0.3s ease;
}

.banner-logo {
  width: 250px !important;
  position: relative;
  left: 15%;
}

.nav {
  height: 75px;

  background-color: #f8f8f8;
  display: flex;
  justify-content: stretch;
}

#navbarMobile {
  padding-top: 15px;
  padding-bottom: 15px;
  display: None;
  position: relative;
}

.nav-mobile-btn {
  position: relative;
  top: 50% !important;
  left: 50%;
  transform: translateX(-50%);
}

.nav .custom-nav-link-wrapper {
  flex: 1 2;

  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-nav-link-wrapper a,
.custom-nav-link-wrapper .dropbtn {
  text-decoration: none;
  width: 100%;

  padding: 10px 0;
  display: inline-block;
  position: relative;
}

.custom-dropdown {
  width: 100%;
}

.custom-nav-link-wrapper .custom-nav-link,
.dropbtn {
  color: var(--mainText);
  font-size: 1rem;
  font-weight: bold;
  transition: 0.15s ease-in;
  width: 100%;
  text-align: center;
}

.custom-dropdown {
  position: relative;
}

.dropbtn {
  border: none;
  background-color: inherit;
  padding: 10px 0;
}

.dropbtn:hover,
.custom-dropdown {
  cursor: pointer;
}

/* dropdown stuff */

.custom-dropdown-content {
  display: none;
  background-color: #f8f8f8;
  position: absolute;
  z-index: 20;
  left: 5%;
  align-self: flex-start;
  top: 44px;
  border-radius: 7px;
  min-width: 95%;
  padding: 10px;
}

.custom-dropdown-content a {
  color: var(--mainText);
  text-decoration: none;
}
.custom-dropdown-content a:hover {
  color: var(--secondaryText);
  text-decoration: none;
}

.custom-dropdown:hover .custom-dropdown-content {
  display: block;
}

.custom-dropdown-content:hover {
  display: block;
}

/* Animated lines */
.custom-nav-link {
  display: inline-block;
  position: relative;
  padding: 10px 0;
}

.custom-nav-link:hover {
  color: var(--secondaryText);
  transition: 0.1s ease-in;
}
.custom-nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--secondaryText);
  transition: transform 0.25s ease-out;
}

.custom-nav-link:hover::after {
  transform: scaleX(1);
}

.custom-nav-link::after {
  transform-origin: bottom center;
}

.custom-nav-link:hover::after {
  transform-origin: bottom center;
}

.active .custom-nav-link {
  color: var(--secondaryText);
}

.active {
  color: var(--secondaryText) !important;
}

.active::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}

.custom-dropdown-content:hover ~ a {
  background-color: var(--mainText);
}

.block {
  height: 200px;
  padding: 0 5%;
  background-color: var(--backgroundBlock);
  display: flex;
  align-items: center;
}

.block h2 {
  font-size: 2.8rem;
  text-align: center;
  color: #fff;
}

.insta-wrapper h3 {
  text-align: center;
  margin-top: 30px;
  color: var(--mainText);
  font-size: 3rem;
}

.map {
  margin-top: 30px;
  margin-bottom: 10px;
}

footer {
  background-color: var(--backgroundBlock);
  display: flex;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.3rem;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 35px;
  background-color: var(--secondaryText);
  border: none;
  text-decoration: none;
  text-align: center;
}

.footer-btn:hover {
  cursor: pointer;
  background-color: var(--buttonSelect);
  transition: 0.2s ease;
}

footer .flex1 {
  flex-basis: 40%;
  color: #fff;
  padding: 20px;
  gap: 20px;
}

footer .flex1 h5 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 15px;
}

footer .flex2 {
  flex-basis: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

footer .flex1 p {
  font-size: 0.8rem;
  font-weight: 500;
}

.flex2 .contact-wrapper {
  flex-basis: 70%;
  color: black;
  font-size: 0.9rem;
}

.flex2 .contact-wrapper i {
  margin-right: 15px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
}
.flex2 .contact-wrapper p {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 1rem;
}

.flex2 .location-wrapper {
  display: flex;
  align-items: center;
}

.flex2 .location-wrapper p {
  margin-bottom: 0px;
}
.flex2 .location-wrapper p span {
  display: block;
  padding: 2px 0;
}
.flex2 .downloads-wrapper {
  flex-basis: 25%;
}
.flex2 .downloads-wrapper p {
  font-weight: 500;
  color: black;
  text-decoration: underline;
  font-size: 0.9rem;
}

.downloads-btn {
  display: block;
  margin-top: 20px;
  font-weight: 500;
  font-size: 1rem;
  padding: 15px 20px;
  border-radius: 35px;
  border: none;
  text-decoration: none;
  text-align: center;
}

.prospectus-btn {
  color: #fff;
  background-color: var(--secondaryText);
}
.prospectus-btn:hover {
  background-color: var(--darkText);
  color: white;
}

.TC-btn {
  color: white;
  background-color: var(--darkText);
}
.TC-btn:hover {
  color: #fff;
  background-color: var(--secondaryText);
}

.fine-print {
  padding: 10px 30px;
  text-align: center;
}

small {
  font-family: "Open Sans", serif;
}

.loader {
  border: 7px solid #f3f3f3; /* Light grey */
  border-top: 7px solid var(--mainText); /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.pdf {
  width: 99%;
  height: 1075px;
  margin-bottom: 50px;
}

/* Text and Image global */
.text-and-image {
  display: flex;
}

.text-and-image .text-wrapper {
  flex-basis: 50%;
  box-sizing: border-box;
  padding: 50px 50px 20px 50px;
}

.text-and-image .text-wrapper h2 {
  font-size: 3rem;
  color: var(--mainText);
  margin-bottom: 20px;
}
.text-and-image .text-wrapper h3 {
  color: var(--secondaryText);
  margin-bottom: 20px;
}

.text-and-image .img-wrapper {
  flex-basis: 50%;
  min-height: 400px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-message {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: var(--mainText);
}

@media (max-width: 1150px) {
  .app-container {
    width: 100%;
  }
}

@media (min-width: 1921px) {
  .app-container {
    width: 70%;
  }
}

@media (max-width: 950px) {
  footer {
    display: block;
    padding: 0 40px 30px 40px;
  }
}
@media (max-width: 700px) {
  #navbar {
    display: none !important;
  }

  #navbarMobile {
    display: block;
  }
  .banner .logo-wrapper img {
    width: 130px !important;
  }
  footer .flex2 {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .flex2 .contact-wrapper {
    width: 100%;

    font-size: 0.9rem;
  }

  .footer-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
  }

  footer .flex2 .downloads-wrapper {
    width: 100%;

    margin-bottom: 60px;
    margin-top: 40px;
  }

  .right-banner-wrapper .phone-wrapper {
    display: none;
  }
  .right-banner-wrapper .btn-wrapper {
    flex-basis: 100%;
  }

  .nav-btn {
    padding: 10px 5px;
    font-size: 0.8rem;
  }

  .pdf {
    height: 700px;
  }
}

@media (max-width: 800px) {
  .text-and-image {
    flex-direction: column;
  }

  .text-and-image .img-wrapper {
    min-height: 250px;
  }
}
