/* Start custom CSS for html, class: .elementor-element-77a134e *//* =========================================================
   ESCORTS WORLD - PREMIUM FOOTER
   Fixed Website Palette
   #0A2947
   #F3E4C9
   #D3D4C0
   #8B5E3C

   Header NOT INCLUDED
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');


/* ================= BASE ================= */

.ew-footer {
  --ew-navy: #0A2947;
  --ew-cream: #F3E4C9;
  --ew-sage: #D3D4C0;
  --ew-brown: #8B5E3C;
  --ew-white: #ffffff;

  width: 100%;
  margin: 0;
  padding: 0;

  background: var(--ew-navy);
  color: var(--ew-cream);

  font-family: 'Manrope', sans-serif;
  line-height: 1.7;
}

.ew-footer *,
.ew-footer *::before,
.ew-footer *::after {
  box-sizing: border-box;
}

.ew-footer a {
  text-decoration: none;
}

.ew-footer-container {
  width: min(1240px, calc(100% - 50px));
  margin: 0 auto;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.ew-footer-main {
  position: relative;
  padding: 90px 0 75px;
  overflow: hidden;
  background: var(--ew-navy);
}

.ew-footer-main::before {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  right: -250px;
  top: -250px;

  border: 1px solid rgba(243,228,201,.07);
  border-radius: 50%;

  pointer-events: none;
}

.ew-footer-main::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  left: -220px;
  bottom: -250px;

  border: 1px solid rgba(139,94,60,.15);
  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   FOOTER GRID
   ========================================================= */

.ew-footer-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    1.45fr
    .75fr
    .9fr
    1.25fr;

  gap: 65px;
}


/* =========================================================
   BRAND
   ========================================================= */

.ew-footer-brand {
  max-width: 390px;
}

.ew-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 28px;
}

.ew-footer-logo-box {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--ew-brown);

  color: var(--ew-cream);

  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 600;

  transition: .3s ease;
}

.ew-footer-logo:hover .ew-footer-logo-box {
  background: var(--ew-brown);
}

.ew-footer-logo-text {
  display: flex;
  flex-direction: column;
}

.ew-footer-logo-text strong {
  color: var(--ew-cream);

  font-family: 'Cormorant Garamond', serif;
  font-size: 29px;
  font-weight: 600;

  line-height: .9;
}

.ew-footer-logo-text small {
  margin-top: 7px;

  color: var(--ew-brown);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 4px;
}


.ew-footer-brand > p {
  margin: 0 0 30px;

  color: rgba(243,228,201,.68);

  font-size: 14px;
  line-height: 1.9;
}


/* =========================================================
   CONTACT
   ========================================================= */

.ew-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ew-footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--ew-cream);

  font-size: 13px;
  font-weight: 600;

  transition: .3s ease;
}

.ew-footer-contact a:hover {
  color: var(--ew-brown);
}

.ew-contact-icon {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(139,94,60,.55);

  color: var(--ew-brown);

  font-size: 13px;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.ew-footer-column {
  position: relative;
}

.ew-footer-label {
  display: block;

  margin-bottom: 9px;

  color: var(--ew-brown);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 3px;
}

.ew-footer-column h3 {
  margin: 0 0 22px;

  color: var(--ew-cream);

  font-family: 'Cormorant Garamond', serif;

  font-size: 31px;
  font-weight: 600;

  line-height: 1;
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.ew-footer-column ul {
  list-style: none;

  margin: 0;
  padding: 0;
}

.ew-footer-column li {
  margin-bottom: 9px;
}

.ew-footer-column li a {
  position: relative;

  display: inline-block;

  color: rgba(243,228,201,.68);

  font-size: 13px;
  font-weight: 500;

  transition: .3s ease;
}

.ew-footer-column li a::before {
  content: "";

  position: absolute;

  left: 0;
  bottom: -3px;

  width: 0;
  height: 1px;

  background: var(--ew-brown);

  transition: .3s ease;
}

.ew-footer-column li a:hover {
  color: var(--ew-cream);
}

.ew-footer-column li a:hover::before {
  width: 100%;
}


/* =========================================================
   LOCATION GRID
   ========================================================= */

.ew-footer-location-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 8px 10px;
}

.ew-footer-location-grid a {
  padding: 7px 8px;

  border: 1px solid rgba(243,228,201,.10);

  color: rgba(243,228,201,.68);

  font-size: 11px;
  font-weight: 600;

  transition: .3s ease;
}

.ew-footer-location-grid a:hover {
  border-color: var(--ew-brown);

  background: var(--ew-brown);

  color: var(--ew-white);

  transform: translateY(-2px);
}


.ew-footer-all-locations {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 20px;

  color: var(--ew-brown);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1px;
  text-transform: uppercase;

  transition: .3s ease;
}

.ew-footer-all-locations span {
  font-size: 17px;
  transition: .3s ease;
}

.ew-footer-all-locations:hover {
  color: var(--ew-cream);
}

.ew-footer-all-locations:hover span {
  transform: translateX(5px);
}


/* =========================================================
   LOCATION STRIP
   ========================================================= */

.ew-footer-location-strip {
  background: var(--ew-brown);
}

.ew-footer-strip-inner {
  min-height: 125px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.ew-footer-strip-inner .ew-footer-label {
  margin-bottom: 5px;

  color: rgba(243,228,201,.7);
}

.ew-footer-strip-inner strong {
  display: block;

  color: var(--ew-white);

  font-family: 'Cormorant Garamond', serif;

  font-size: 30px;
  font-weight: 600;
}


.ew-footer-location-button {
  min-height: 48px;

  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  border: 1px solid var(--ew-cream);

  color: var(--ew-cream);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1px;
  text-transform: uppercase;

  transition: .3s ease;
}

.ew-footer-location-button span {
  font-size: 17px;
}

.ew-footer-location-button:hover {
  background: var(--ew-cream);
  color: var(--ew-navy);
}


/* =========================================================
   BOTTOM FOOTER
   ========================================================= */

.ew-footer-bottom {
  background: #08223B;

  border-top: 1px solid rgba(243,228,201,.08);
}

.ew-footer-bottom-inner {
  min-height: 75px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

.ew-footer-bottom p {
  margin: 0;

  color: rgba(243,228,201,.55);

  font-size: 11px;
}

.ew-footer-bottom p strong {
  color: var(--ew-cream);
  font-weight: 700;
}


.ew-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.ew-footer-bottom-links a {
  color: rgba(243,228,201,.55);

  font-size: 11px;

  transition: .3s ease;
}

.ew-footer-bottom-links a:hover {
  color: var(--ew-brown);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .ew-footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 45px;
  }

  .ew-footer-brand {
    max-width: 100%;
  }

  .ew-footer-location-column {
    grid-column: 1 / -1;
  }

  .ew-footer-location-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}


/* =========================================================
   TABLET SMALL
   ========================================================= */

@media (max-width: 800px) {

  .ew-footer-container {
    width: calc(100% - 35px);
  }

  .ew-footer-main {
    padding: 70px 0 60px;
  }

  .ew-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px 35px;
  }

  .ew-footer-brand {
    grid-column: 1 / -1;
  }

  .ew-footer-location-column {
    grid-column: 1 / -1;
  }

  .ew-footer-location-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ew-footer-strip-inner {
    min-height: 150px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

  .ew-footer-container {
    width: calc(100% - 25px);
  }

  .ew-footer-main {
    padding: 60px 0 50px;
  }

  .ew-footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .ew-footer-brand,
  .ew-footer-location-column {
    grid-column: auto;
  }

  .ew-footer-logo-text strong {
    font-size: 27px;
  }

  .ew-footer-brand > p {
    font-size: 13px;
  }

  .ew-footer-column h3 {
    font-size: 29px;
  }

  .ew-footer-location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ew-footer-strip-inner {
    min-height: auto;

    padding: 35px 0;

    flex-direction: column;
    align-items: flex-start;
  }

  .ew-footer-strip-inner strong {
    font-size: 27px;
  }

  .ew-footer-location-button {
    width: 100%;
  }

  .ew-footer-bottom-inner {
    min-height: auto;

    padding: 25px 0;

    flex-direction: column;
    align-items: flex-start;
  }

  .ew-footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

  .ew-footer-location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .ew-footer-location-grid a {
    font-size: 10px;
  }

  .ew-footer-contact a {
    font-size: 12px;
  }

}/* End custom CSS */