@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  /* border: 1px solid green;  */
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: auto;
  color: hsl(222, 47%, 11%);
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

img {
  display: block;
}

main {
  display: block !important;
}

/* 1.250 - Major Third - https://typescale.com */
h1,
h2,
h3,
h4,
blockquote,
small {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: hsl(210, 29%, 24%);
}

h1 {
  font-size: 4.215em;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 480px) {
  h1 {
    font-size: 3.052em;
  }
}

h2 {
  font-size: 3.052em;
}
@media (max-width: 480px) {
  h2 {
    font-size: 2.441em;
  }
}

h3 {
  font-size: 2.441em;
}

h4,
blockquote {
  font-size: 1.953em;
}

h5,
p,
a,
li,
button,
input,
label,
textarea {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  font-size: 1em;
}

html {
  font-size: 16px;
}
@media (max-width: 1366px) {
  html {
    font-size: 14px;
  }
}

::-moz-selection {
  background-color: hsl(46, 65%, 52%);
  color: hsl(47, 43%, 96%);
}

::selection {
  background-color: hsl(46, 65%, 52%);
  color: hsl(47, 43%, 96%);
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 480px) {
  .container {
    padding: 0 2rem;
  }
}

.button {
  display: inline-block;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.cta-primary {
  border: 2px solid hsl(222, 47%, 11%);
  color: hsl(47, 43%, 96%);
  background-color: hsl(222, 47%, 11%);
}
.cta-primary:hover {
  border: 2px solid hsl(46, 65%, 52%);
  background-color: hsl(46, 65%, 52%);
}

.cta-secondary {
  border: 2px solid hsl(222, 47%, 11%);
  color: hsl(210, 29%, 24%);
}
.cta-secondary:hover {
  border: 2px solid hsl(46, 65%, 52%);
  color: hsl(46, 65%, 52%);
}

.cta-tertiary {
  border: 1px solid hsl(220, 9%, 46%);
  background: hsl(47, 43%, 96%);
  color: hsl(222, 47%, 11%);
}
.cta-tertiary:hover {
  border: 1px solid hsl(46, 65%, 52%);
  color: hsl(46, 65%, 52%);
  background: transparent;
}

.cta-info {
  border: 1px solid hsl(220, 9%, 46%);
  color: hsl(47, 43%, 96%);
}
.cta-info:hover {
  border: 1px solid hsl(46, 65%, 52%);
  color: hsl(46, 65%, 52%);
}

.img-flex {
  width: 100%;
  height: auto;
}

.img-grid {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1.5rem 0;
  background-color: rgba(249, 247, 240, 0.95);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  z-index: 9999;
}
.navbar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar__logo img {
  width: 145px;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 991px) {
  .navbar__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    display: none;
    transition: all 500ms ease;
  }
  .navbar__menu.active {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    font-size: 1.5em;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: hsl(47, 51%, 93%);
    padding: 7.5rem 1rem 0;
    gap: 2.5rem;
  }
}
.navbar__menu li a {
  font-size: 1em;
  color: hsl(222, 47%, 11%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar__menu li a:hover {
  color: hsl(46, 65%, 52%);
}
.navbar__menu li:last-child a {
  font-size: 1em;
  text-transform: none;
  background-color: hsl(210, 29%, 24%);
  color: hsl(47, 43%, 96%);
  border: 2px solid hsl(210, 29%, 24%);
}
.navbar__menu li:last-child a:hover {
  border: 2px solid hsl(46, 65%, 52%);
  background-color: hsl(46, 65%, 52%);
  color: hsl(47, 43%, 96%);
}
.navbar__hamburger {
  display: block;
  background: none;
  border: none;
  outline: none;
  z-index: 9999;
  cursor: pointer;
}
@media (min-width: 991px) {
  .navbar__hamburger {
    display: none;
  }
}
.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.navbar__hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 1rem;
  margin: 6px auto;
  transition: all 500ms ease-in-out;
  background: hsl(210, 29%, 24%);
}

.hero {
  font-size: 1rem;
  padding: 15rem 0 5rem;
  background: hsl(47, 51%, 93%);
  height: 100vh;
}
@media (max-width: 991px) {
  .hero {
    height: 130vh;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 12.5rem 0 0;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 125vh;
  }
}
.hero__wrapper {
  display: block;
  text-align: center;
}
@media (min-width: 992px) {
  .hero__wrapper {
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.hero__badge p {
  padding: 0.5rem 0.75rem;
  display: inline-block;
  background: hsl(47, 43%, 96%);
  color: hsl(215, 14%, 34%);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1rem;
  border-radius: 1rem;
  border: 1px solid hsl(46, 65%, 52%);
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.hero__content h1 span {
  color: hsl(46, 65%, 52%);
  font-style: italic;
}
.hero__disclaime p {
  font-size: 1.115em;
  color: hsl(215, 14%, 34%);
  line-height: 1.5;
}
@media (min-width: 992px) {
  .hero__disclaime {
    border-left: 2px solid hsl(46, 65%, 52%);
    padding-left: 1.5em;
  }
}
.hero__image {
  position: relative;
}
@media (min-width: 768px) {
  .hero__image::before {
    content: "";
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 100%;
    height: 100%;
    border: 2px solid hsl(46, 65%, 52%);
    border-radius: 0.75rem;
    opacity: 0.2;
  }
}
.hero__image img {
  position: relative;
  z-index: 1;
  border-radius: 0.75rem;
}
.hero__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .hero__buttons {
    padding-bottom: 0;
    justify-content: flex-start;
  }
}

.communitas {
  font-size: 1rem;
  background: hsl(0, 0%, 100%);
  padding: 10rem 0;
}
.communitas__header h2 {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
}
.communitas__header h2::after {
  content: "";
  position: absolute;
  background: hsl(46, 65%, 52%);
  width: 5rem;
  height: 0.25rem;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}
@media (max-width: 480px) {
  .communitas__header h2::after {
    top: 4.5rem;
  }
}
.communitas__header p {
  font-size: 1.115em;
  text-align: center;
  margin-bottom: 4rem;
}
.communitas__wrapper {
  display: block;
}
@media (min-width: 600px) {
  .communitas__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 991px) {
  .communitas__wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.communitas__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: hsl(47, 51%, 93%);
  border-radius: 0.75rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  margin-bottom: 2.5rem;
}
@media (min-width: 600px) {
  .communitas__card {
    margin-bottom: 0;
  }
}
.communitas__card:hover {
  transform: translateY(-0.5rem);
  background: hsl(222, 47%, 11%);
}
.communitas__card:hover h3 {
  color: hsl(47, 43%, 96%);
}
.communitas__card:hover .communitas__card__icon {
  background: hsl(215, 14%, 34%);
}
.communitas__card:hover .communitas__card__icon svg {
  stroke: hsl(46, 65%, 52%);
  width: 1.5rem;
  height: 1.5rem;
}
.communitas__card:hover .communitas__card__content {
  color: hsl(47, 43%, 96%);
}
.communitas__card:hover .communitas__card__link a {
  color: hsl(46, 65%, 52%);
}
.communitas__card:hover .communitas__card__link svg {
  stroke: hsl(46, 65%, 52%);
}
.communitas__card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(46, 65%, 52%, 0.2);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.communitas__card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.communitas__card h3 {
  font-size: 1.563em;
  font-weight: 500;
}
.communitas__card__content {
  font-weight: 300;
  min-height: 90px;
}
.communitas__card__content ul li {
  line-height: 1.65;
}
.communitas__card__content p {
  line-height: 1.65;
}
.communitas__card__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.communitas__card__link a {
  text-transform: uppercase;
  color: hsl(222, 47%, 11%);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.communitas__card__link svg {
  width: 1rem;
  height: 1rem;
}

.events {
  font-size: 1rem;
  background: hsla(206, 70%, 96%, 0.5);
  border-top: 1px solid hsla(46, 65%, 52%, 0.2);
  border-bottom: 1px solid hsla(46, 65%, 52%, 0.2);
  padding: 10rem 0 7.5rem;
}
@media (min-width: 991px) {
  .events {
    padding: 10rem 0 10rem;
  }
}
.events__wrapper {
  display: block;
}
@media (min-width: 991px) {
  .events__wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
}
.events__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 5rem;
}
@media (min-width: 991px) {
  .events__info {
    margin-bottom: 0;
  }
}
.events__info h2 {
  color: hsl(46, 65%, 52%);
  font-weight: 400;
}
.events__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: hsl(222, 47%, 11%);
  background: hsl(215, 14%, 34%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.events__icon svg {
  stroke: hsl(47, 43%, 96%);
  width: 1.5rem;
  height: 1.5rem;
}
.events__content {
  display: block;
}
@media (min-width: 991px) {
  .events__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
  }
}
.events__card {
  position: relative;
  background: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 4px solid hsl(46, 65%, 52%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2.5rem;
}
@media (min-width: 991px) {
  .events__card {
    margin-bottom: 0;
  }
}
.events__card:hover {
  box-shadow: 0px 8px 5px -4px rgba(0, 0, 0, 0.1);
}
.events__card.alert {
  border-left: 4px solid hsl(347, 77%, 50%);
}
.events__card.alert::after {
  content: "⚠";
  color: hsl(347, 77%, 50%);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5em;
}
.events__card h3 {
  font-size: 1.25em;
  font-weight: 600;
}
.events__card p {
  font-size: 0.875em;
  color: hsl(215, 14%, 34%);
}
.events__card__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.events__card__badge {
  background: hsl(220, 14%, 96%);
  color: hsl(215, 14%, 34%);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  font-size: 0.64em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5em 1em;
  border-radius: 0.5rem;
}
.events__card__date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.events__card__date svg {
  stroke: hsl(220, 9%, 46%);
  width: 0.75rem;
  height: 0.75rem;
}
.events__card__date span {
  color: hsl(220, 9%, 46%);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  font-size: 0.8em;
}

.history {
  font-size: 1rem;
  padding: 10rem 0 5rem;
  background: hsl(47, 51%, 93%);
}
.history__wrapper {
  display: block;
}
@media (min-width: 992px) {
  .history__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 10rem;
  }
  .history__wrapper div:nth-of-type(1) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .history__wrapper div:nth-of-type(2) {
    padding-right: 5rem;
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .history__wrapper div:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .history__wrapper div:nth-of-type(4) {
    padding-left: 5rem;
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.history__content {
  padding: 4.5rem 0 7.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
}
.history__content h3 {
  color: hsl(46, 65%, 52%);
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  font-style: normal;
  margin-bottom: -1rem;
}
.history__content h2 {
  position: relative;
  font-weight: 400;
}
.history__content h2::after {
  content: "";
  position: absolute;
  background: hsl(46, 65%, 52%);
  width: 5rem;
  height: 0.25rem;
  top: 4.5rem;
  left: 0;
}
@media (max-width: 480px) {
  .history__content h2::after {
    top: 4rem;
  }
}
.history__content p {
  font-size: 1.115em;
  line-height: 1.5;
  color: hsl(215, 14%, 34%);
}
.history__image--right {
  position: relative;
}
@media (min-width: 768px) {
  .history__image--right::before {
    content: "";
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 100%;
    height: 100%;
    border: 2px solid hsl(46, 65%, 52%);
    border-radius: 0.75rem;
    opacity: 0.2;
  }
}
.history__image--right img {
  position: relative;
  z-index: 1;
  border-radius: 0.75rem;
}
.history__image--left {
  position: relative;
}
@media (min-width: 768px) {
  .history__image--left::before {
    content: "";
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 100%;
    height: 100%;
    border: 2px solid hsl(46, 65%, 52%);
    border-radius: 0.75rem;
    opacity: 0.2;
  }
}
.history__image--left img {
  position: relative;
  z-index: 1;
  border-radius: 0.75rem;
}

.contact {
  font-size: 1rem;
  padding: 0 0 10rem;
  background: hsl(47, 51%, 93%);
}
@media (min-width: 992px) {
  .contact {
    padding: 10rem 0 10rem;
  }
}
.contact__wrapper {
  display: block;
}
@media (min-width: 992px) {
  .contact__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 4rem;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 0.75rem;
  padding: 2.5rem;
  background: hsl(0, 0%, 100%);
  margin-bottom: 4rem;
}
.contact__form h2 {
  font-size: 1.953em;
  font-weight: 400;
  line-height: 1.5;
}
.contact__form p {
  font-size: 0.9em;
  color: hsl(220, 9%, 46%);
}
@media (min-width: 992px) {
  .contact__form {
    margin-bottom: 0;
  }
}
.contact__form form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact__form__group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact__form__group label {
  font-size: 0.75em;
  font-weight: 600;
  line-height: 2;
  text-transform: uppercase;
  color: hsl(220, 9%, 46%);
}
.contact__form__group input,
.contact__form__group textarea {
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(220, 13%, 91%);
  background: hsl(210, 20%, 98%);
}
.contact__form__group input:focus,
.contact__form__group textarea:focus {
  outline: 2px solid hsl(46, 65%, 52%);
}
.contact__form__group input::-moz-placeholder, .contact__form__group textarea::-moz-placeholder {
  color: hsl(221, 13%, 67%);
}
.contact__form__group input::placeholder,
.contact__form__group textarea::placeholder {
  color: hsl(221, 13%, 67%);
}
.contact__form__group textarea {
  resize: none;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 0.75rem;
  padding: 2.5rem;
  background: hsl(0, 0%, 100%);
  margin-bottom: 4rem;
}
.contact__info h2 {
  font-size: 1.953em;
  font-weight: 400;
}
.contact__info h3 {
  font-size: 1em;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0.25rem;
}
.contact__info a {
  display: inline-block;
  color: hsl(220, 9%, 46%);
}
.contact__info p {
  color: hsl(220, 9%, 46%);
}
.contact__info svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: hsl(46, 65%, 52%);
}
.contact__info__address {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
}
.contact__info__contacts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1075px) {
  .contact__info__contacts {
    flex-direction: row;
    gap: 4rem;
  }
}
.contact__info__contacts > div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
}
.contact__info__schedule {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
}
.contact__info__media {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
}
@media (min-width: 992px) {
  .contact__info {
    margin-bottom: 0;
  }
}
.contact__info__social div {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contact__info__social__link {
  width: 2.25rem;
  height: 2.25rem;
  background: hsl(47, 51%, 93%);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__info__social__link svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: hsl(215, 14%, 34%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__info__social__link:hover {
  background: hsl(210, 29%, 24%);
}
.contact__info__social__link:hover svg {
  stroke: hsl(47, 43%, 96%);
}
.contact__map {
  grid-column: 1/3;
  grid-row: 2/3;
  filter: sepia(20%);
  margin-bottom: 4rem;
}
.contact__map iframe {
  border: none;
  border-radius: 0.75rem;
  width: 100%;
  height: 450px;
}
@media (min-width: 992px) {
  .contact__map {
    margin-bottom: 0;
  }
}
.contact__links {
  grid-column: 1/3;
  grid-row: 3/4;
  padding: 2.5rem;
  background: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
}
.contact__links h2 {
  font-size: 1.953em;
  font-weight: 400;
  margin-bottom: 2rem;
}
.contact__links__wrapper {
  display: block;
}
@media (min-width: 992px) {
  .contact__links__wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.contact__links__wrapper div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .contact__links__wrapper div {
    margin-bottom: 0;
  }
}
.contact__links__wrapper div h3 {
  font-size: 1em;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 2;
}
.contact__links__wrapper div a {
  display: inline-block;
  text-decoration: underline;
  color: hsl(215, 14%, 34%);
}

.cta {
  font-size: 1rem;
  padding: 5rem 0;
  background: hsla(206, 70%, 96%, 0.5);
  border-bottom: 1px solid hsl(222, 25%, 18%);
}
.cta__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cta h2 {
  text-align: center;
  color: hsl(222, 47%, 11%);
  font-weight: 400;
  line-height: 1;
}
.cta p {
  text-align: center;
  color: hsl(222, 47%, 11%);
  font-size: 1.25rem;
  font-weight: 300;
}
@media (max-width: 600px) {
  .cta p br {
    display: none;
  }
}
.cta__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer {
  font-size: 1rem;
  background: hsl(222, 47%, 11%);
  /* border-top: 4px solid $text-primary; */
  padding: 2.5rem 0;
}
.footer p {
  font-weight: 300;
  color: hsl(220, 9%, 46%);
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
}
.footer__wrapper div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .footer__wrapper div {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.footer__wrapper div img {
  width: 145px;
}
@media (max-width: 600px) {
  .footer__wrapper div img {
    width: 150px;
  }
}
.footer__wrapper div h3 {
  color: hsl(47, 43%, 96%);
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 300;
}
.footer__wrapper div ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer__wrapper div ul li a {
  color: hsl(220, 9%, 46%);
}
.footer__links {
  flex-direction: row !important;
}
.footer__links a {
  width: 2.25rem;
  height: 2.25rem;
  background: hsl(222, 25%, 18%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__links a svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: hsl(220, 9%, 46%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__signature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid hsl(222, 25%, 18%);
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  text-align: center;
}
@media (max-width: 599px) {
  .footer__signature {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }
}
.footer__signature p {
  font-size: 0.8em;
  font-weight: 300;
  color: hsl(220, 9%, 46%);
}
.footer__signature a {
  font-size: 0.8em;
  display: inline-block;
  color: hsl(220, 9%, 46%);
  font-weight: 300;
}

.privacy {
  padding: 7rem 0 3.5rem;
}
.privacy__wrapper h1 {
  padding: 1.75rem 0;
  font-size: 3.052em;
}
.privacy__wrapper h2 {
  padding: 1.75rem 0;
  font-size: 1.563em;
}
.privacy__wrapper ul {
  padding: 0.75rem 0;
}
.privacy__wrapper ul li {
  padding: 0.25rem 0;
}
.privacy__wrapper a {
  color: hsl(46, 65%, 52%);
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: hsla(206, 70%, 96%, 0.5);
}

::-webkit-scrollbar {
  width: 10px;
  background-color: hsl(222, 47%, 11%);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: hsl(222, 47%, 11%);
}