:root {
  --logoPink: #e00070;
  --lightPink: #ffd3e1;
  --darkPink: #b00058;
  --millerPink: #ff99b9;
  --logoBlue: #1487c8;
  --logoGreen: #4fad31;
  --logoGrey: #bbaeb7;
  --pumpkin: #f47c2e;
  --canary: #ffea00;
  --darkCanary: #cfbe00;
  --lapis: #0057a3;
  --lightLapis: #2498fd;
  --mantis: #7bc86c;
  --brandies: #006bff;
  --deepSky: #08c2ff;
  --celeste: #bcf2f6;
}

* {
  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: 1.3rem;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 25px;
  background-color: var(--lapis);
  text-decoration: none;
  text-align: center;
}

.custom-btn:hover {
  cursor: pointer;
  background-color: var(--lightLapis);
  transition: 0.2s ease;
}

.caveat-brush-regular {
  font-family: "Caveat Brush", serif;
  font-weight: 400;
  font-style: normal;
}
h1,
h1 span,
h2,
h3,
h4,
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.3rem;
  font-size: 1.1rem;
}

.app-container {
  width: 1150px;
  margin: 0 auto;
}

.banner {
  display: flex;
}

.logo-wrapper {
  padding: 10px 0;
  flex: 1 1 50%;

  position: relative;
}

.logo-wrapper img {
  border-radius: 10px;
  border: 2px solid var(--logoPink);
}

.right-banner-wrapper {
  flex: 0 0 50%;

  display: flex;
}

.phone-wrapper {
  flex: 0 0 55%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-wrapper a {
  position: relative;
  color: var(--lapis);
  text-decoration: none;
  font-weight: 500;
}

.phone-wrapper i {
  color: var(--lapis);
  padding: 5px;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-btn {
  font-weight: bold;
  color: white;
  font-size: 0.8rem;
  padding: 10px 10px;
  border-radius: 25px;
  background-color: var(--lapis);
  border: none;
  text-decoration: none;
  text-align: center;
}

.nav-btn:hover {
  cursor: pointer;
  background-color: var(--lightLapis);
  transition: 0.3s ease;
}

.banner-logo {
  width: 160px;
  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(--logoBlue);
  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%;
  top: 0;
  align-self: flex-start;
  top: 43px;
  border-radius: 7px;
  min-width: 95%;
  padding: 10px;
}

.custom-dropdown-content a {
  color: var(--logoBlue);
  text-decoration: none;
}
.custom-dropdown-content a:hover {
  color: var(--logoPink);
  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(--logoPink);
  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(--logoPink);
  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(--logoPink);
}

.active {
  color: var(--logoPink) !important;
}

.active::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}

.custom-dropdown-content:hover ~ a {
  background-color: #1487c8;
}

.block {
  height: 200px;
  padding: 0 5%;
  background-color: var(--canary);
  display: flex;
  align-items: center;
}

.block h3 {
  font-size: 2.8rem;
  text-align: center;
  color: var(--lapis);
}

.map {
  margin-top: 30px;
  margin-bottom: 10px;
}

footer {
  background-color: var(--canary);
  display: flex;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.3rem;
  padding: 10px 20px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 35px;
  background-color: var(--lapis);
  border: none;
  text-decoration: none;
  text-align: center;
}

.footer-btn:hover {
  cursor: pointer;
  background-color: var(--lightLapis);
  transition: 0.2s ease;
}

footer .flex1 {
  flex-basis: 33%;
  color: black;
  padding: 20px;
  gap: 20px;
}

footer .flex1 h5 {
  color: var(--logoBlue);
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.flex-1-btn-wrapper {
  display: flex;

  position: relative;
}

.contact-us-btn-wrapper {
  flex-basis: 60%;
}

.socials-wrapper {
  position: relative;
  display: flex;
  align-items: end;
  flex-basis: 40%;
  justify-content: flex-end;
  column-gap: 10px;
}

.social-btn {
  background-color: var(--lapis);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
  color: white;
}

.social-btn:hover {
  background-color: var(--lightLapis);
}

.social-btn i {
  font-size: 1.8rem;
}

footer .flex2 {
  flex-basis: 66%;
  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: 50%;
  color: black;
  font-size: 0.9rem;
}

.flex2 .contact-wrapper i {
  margin-right: 15px;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--logoBlue);
}
.flex2 .contact-wrapper p {
  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: 50%;
}
.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: var(--lapis);
  background-color: white;
}
.prospectus-btn:hover {
  background-color: var(--lapis);
  color: white;
}

.TC-btn {
  color: white;
  background-color: var(--lapis);
}
.TC-btn:hover {
  color: var(--lapis);
  background-color: white;
}

.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(--lapis); /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-message {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: var(--logoBlue);
}

@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;
  }

  .flex-1-btn-wrapper {
    width: 60%;
  }

  .socials-wrapper {
    justify-content: flex-start;
  }
}
@media (max-width: 700px) {
  #navbar {
    display: none !important;
  }

  #navbarMobile {
    display: block;
  }
  .banner .logo-wrapper img {
    width: 120px;
  }
  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;
  }

  .flex-1-btn-wrapper {
    width: 100%;
    flex-direction: column-reverse;
  }

  .socials-wrapper {
    margin-top: 20px;
    justify-content: space-evenly;
  }

  .socials-wrapper .social-btn {
    width: 85px;
    height: 85px;
  }
  .socials-wrapper .social-btn i {
    font-size: 3.1rem;
  }

  footer .flex2 .downloads-wrapper {
    width: 100%;
    margin-bottom: 60px;
    margin-top: 0px;
  }

  .right-banner-wrapper .phone-wrapper {
    display: none;
  }
  .right-banner-wrapper .btn-wrapper {
    flex-basis: 100%;
  }

  .nav-btn {
    padding: 10px 5px;
    font-size: 0.8rem;
  }
}
