/* [project]/src/index.scss.css [app-client] (css) */
@font-face {
  font-family: Aptos;
  src: url("../media/aptos-light.c0aa9d10.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Aptos;
  src: url("../media/aptos-semibold.f2627622.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

:root {
  --black: #000;
  --white: #fff;
  --btn-primary: #c8ae82;
  --text-primary: #c7ae83;
  --text-secondary: #ecead8;
  --text-tertiary: #161f48;
  --border: #e1c683;
  --sandy-brown: #d2a047;
  --link-text: #ae8132;
  --pale-beige: #f3f1ec;
  --text-blue: #151e3b;
  --beige: #c8ae83;
  --light-ivory: #fffef6;
  --light-salmon: #e4d2b2;
  --dark-blue: #1c2e5e;
  --dark-gray: #555b77;
  --seafoam-green: #1f6a95;
  --chathams-blue: #174489;
  --light-gray: #d9d9d9;
  --golden-brown: #d2a04782;
  --navy-blue: #151e3b99;
  --accent-dark-blue: #294574;
  --primary-gold: #8a5c0c;
  --pastel-blue: #bbe0f5;
  --black-opacity: #00000008;
  --shadow-black-soft: #0000000d;
  --card-border: #0003;
  --table-head: #f5efe6;
  --table-border: #dfdfdf;
  --card-primary: #ec651b;
  --text-gray: #969faa;
  --privacy-link: #0b7bec;
  --cyprus: #050b20;
}

* {
  box-sizing: border-box;
}

:root {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: Aptos;
}

#root {
  width: 100dvw;
  max-width: 1920px;
  margin: auto;
}

a {
  cursor: pointer;
  text-decoration: none;
}

p {
  margin: 0;
}

html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body::-webkit-scrollbar {
  display: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: Aptos;
}

/* [project]/src/components/Navbar/Navbar.module.scss.module.css [app-client] (css) */
.Navbar-module-scss-module__N8yoJa__navbar {
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0px 4px 4px 0px var(--shadow-black-soft);
  justify-content: space-between;
  align-items: center;
  padding: .2rem 8rem;
  display: flex;
  position: sticky;
  top: 0;
}

.Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__navLinks {
  align-items: center;
  gap: 59px;
  list-style: none;
  display: flex;
}

.Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__navLinks li {
  cursor: pointer;
  color: var(--link-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
}

.Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__navLinks li .Navbar-module-scss-module__N8yoJa__active {
  font-weight: 700;
}

.Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__navLinks li a {
  color: var(--link-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__navLinks li a.Navbar-module-scss-module__N8yoJa__active {
  font-weight: 700;
}

.Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__loginButton {
  background-color: var(--btn-primary);
  color: var(--white);
  cursor: pointer;
  border: none;
  border-radius: 10px;
  justify-content: center;
  align-self: center;
  align-items: center;
  gap: 6px;
  width: 191px;
  height: 52px;
  font-size: 20px;
  display: flex;
}

.Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__hamburger {
  cursor: pointer;
  display: none;
}

.Navbar-module-scss-module__N8yoJa__mobileMenu {
  z-index: 1000;
  background: linear-gradient(240.75deg, #ec651b 7.15%, #174489 59.74%);
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding: 6.2rem 3.4rem 2.3rem;
  transition: right .4s ease-in-out;
  display: flex;
  position: fixed;
  top: 0;
  right: -100%;
}

.Navbar-module-scss-module__N8yoJa__mobileMenu.Navbar-module-scss-module__N8yoJa__open {
  right: 0;
}

.Navbar-module-scss-module__N8yoJa__mobileMenu .Navbar-module-scss-module__N8yoJa__closeIcon {
  cursor: pointer;
  align-self: flex-end;
}

.Navbar-module-scss-module__N8yoJa__mobileMenu .Navbar-module-scss-module__N8yoJa__mobileMenuContent {
  flex-direction: column;
  justify-content: space-between;
  align-self: flex-start;
  height: 100%;
  display: flex;
}

.Navbar-module-scss-module__N8yoJa__mobileMenu .Navbar-module-scss-module__N8yoJa__mobileMenuContent .Navbar-module-scss-module__N8yoJa__menuLinks {
  letter-spacing: 2px;
  color: var(--white);
  flex-direction: column;
  gap: 36px;
  padding: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 100%;
  list-style: none;
  display: flex;
}

.Navbar-module-scss-module__N8yoJa__mobileMenu .Navbar-module-scss-module__N8yoJa__mobileMenuContent .Navbar-module-scss-module__N8yoJa__menuLinks li a {
  color: var(--white);
  letter-spacing: 2px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
}

.Navbar-module-scss-module__N8yoJa__mobileMenu .Navbar-module-scss-module__N8yoJa__mobileMenuContent .Navbar-module-scss-module__N8yoJa__loginButton {
  background-color: var(--btn-primary);
  color: var(--white);
  cursor: pointer;
  border: none;
  border-radius: 10px;
  align-self: self-start;
  width: 191px;
  height: 52px;
  font-size: 1rem;
}

.Navbar-module-scss-module__N8yoJa__mobileMenu .Navbar-module-scss-module__N8yoJa__mobileMenuContent img {
  vertical-align: middle;
}

@media (max-width: 1360px) {
  .Navbar-module-scss-module__N8yoJa__navbar {
    padding: .2rem 3rem;
  }

  .Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__navLinks {
    gap: 50px;
  }
}

@media (max-width: 1200px) {
  .Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__navLinks {
    gap: 20px;
  }
}

@media (max-width: 1040px) {
  .Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__navLinks {
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .Navbar-module-scss-module__N8yoJa__navbar {
    height: 60px;
    padding: 0 26px;
  }

  .Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__logo {
    width: 113px;
    height: auto;
  }

  .Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__navLinks, .Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__loginButton {
    display: none;
  }

  .Navbar-module-scss-module__N8yoJa__navbar .Navbar-module-scss-module__N8yoJa__hamburger {
    display: block;
  }
}

/* [project]/src/components/Footer/Footer.module.scss.module.css [app-client] (css) */
.Footer-module-scss-module__wcgw9G__footer {
  border-style: solid;
  border-width: 1px 0;
  border-color: var(--pale-beige);
  position: relative;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container {
  background-color: var(--text-tertiary);
  justify-content: space-around;
  padding: 45px 0;
  display: flex;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper {
  flex-direction: column;
  display: flex;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__logo {
  width: fit-content;
  margin-bottom: 25px;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper {
  flex-direction: column;
  gap: 15px;
  max-width: 542px;
  display: flex;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper .Footer-module-scss-module__wcgw9G__contactInfo {
  flex-direction: row;
  gap: 10px;
  display: flex;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper .Footer-module-scss-module__wcgw9G__contactInfo .Footer-module-scss-module__wcgw9G__icon {
  align-self: flex-start;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper .Footer-module-scss-module__wcgw9G__contactInfo .Footer-module-scss-module__wcgw9G__info {
  color: var(--pastel-blue);
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper .Footer-module-scss-module__wcgw9G__contactInfo .Footer-module-scss-module__wcgw9G__info .Footer-module-scss-module__wcgw9G__address {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper .Footer-module-scss-module__wcgw9G__contactInfo .Footer-module-scss-module__wcgw9G__info .Footer-module-scss-module__wcgw9G__address a {
  color: var(--pastel-blue);
  cursor: pointer;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper .Footer-module-scss-module__wcgw9G__contactInfo .Footer-module-scss-module__wcgw9G__info .Footer-module-scss-module__wcgw9G__email a {
  color: var(--pastel-blue);
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper .Footer-module-scss-module__wcgw9G__contactInfo .Footer-module-scss-module__wcgw9G__info .Footer-module-scss-module__wcgw9G__cin {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__linksWrapper {
  color: var(--pastel-blue);
  text-transform: uppercase;
  align-items: center;
  gap: 40px;
  height: fit-content;
  font-size: 14px;
  font-weight: 700;
  line-height: 15px;
  display: flex;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__linksWrapper a, .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__linksWrapper .Footer-module-scss-module__wcgw9G__links a {
  color: var(--pastel-blue);
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__linksWrapper .Footer-module-scss-module__wcgw9G__links .Footer-module-scss-module__wcgw9G__linkedInIcon {
  display: none;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__copyright {
  background: var(--black);
  width: 100%;
  color: var(--white);
  text-align: center;
  letter-spacing: .05em;
  margin: 0;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__scrollToTop {
  display: none;
}

@media (max-width: 1360px) {
  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container {
    padding: 17px 0 31px;
  }

  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__linksWrapper {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 71px;
  }
}

@media (max-width: 768px) {
  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container {
    flex-direction: column;
    padding: 35px 16px 58px;
  }

  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper {
    gap: 14px;
  }

  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper .Footer-module-scss-module__wcgw9G__contactInfo {
    gap: 13px;
  }

  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper .Footer-module-scss-module__wcgw9G__contactInfo .Footer-module-scss-module__wcgw9G__info {
    gap: 20px;
  }

  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper .Footer-module-scss-module__wcgw9G__contactInfo .Footer-module-scss-module__wcgw9G__info .Footer-module-scss-module__wcgw9G__email {
    padding-bottom: 56px;
  }

  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__wrapper .Footer-module-scss-module__wcgw9G__contactWrapper .Footer-module-scss-module__wcgw9G__contactInfo .Footer-module-scss-module__wcgw9G__info .Footer-module-scss-module__wcgw9G__cin {
    padding-bottom: 15px;
  }

  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__linksWrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin: 0;
  }

  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__linksWrapper .Footer-module-scss-module__wcgw9G__links {
    width: 100%;
    position: relative;
  }

  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__linksWrapper .Footer-module-scss-module__wcgw9G__links .Footer-module-scss-module__wcgw9G__linkedInIcon {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }

  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__linksWrapper .Footer-module-scss-module__wcgw9G__links .Footer-module-scss-module__wcgw9G__linkedInIcon img {
    width: 53px;
    height: 53px;
  }

  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__container .Footer-module-scss-module__wcgw9G__linksWrapper .Footer-module-scss-module__wcgw9G__linkedInIcon {
    display: none;
  }

  .Footer-module-scss-module__wcgw9G__footer .Footer-module-scss-module__wcgw9G__scrollToTop {
    background: var(--card-primary);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(-50%)translateY(-50%);
  }
}

/*# sourceMappingURL=src_0a5a82f4._.css.map*/