/* 1.250 - Major Third - https://typescale.com */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Varela&display=swap");
* {
  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;
  background: #fff9ec;
  color: #072f46;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

img {
  display: block;
}

main {
  display: block !important;
}

h1,
h2,
h3,
h4,
blockquote,
small {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 2.25em;
}
@media (min-width: 480px) {
  h1 {
    font-size: 3.375em;
  }
}

h2 {
  font-size: 2em;
}
@media (min-width: 480px) {
  h2 {
    font-size: 2.25em;
  }
}

h3 {
  font-size: 1.5em;
  /* 	@include breakpointMobile(768px) {
  	font-size: 2.25em;
  } */
}

h4,
blockquote {
  font-size: 1em;
  /* 	@include breakpointMobile(768px) {
  	font-size: 1.5em;
  } */
}

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

small {
  font-size: 0.64em;
  letter-spacing: 6px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  small {
    font-size: 0.8em;
  }
}

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

.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}
@media (min-width: 1366px) {
  .container {
    padding: 0 4rem;
  }
}

.image-fluid {
  width: 100%;
  height: auto;
}

.image-responsive {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding-top: 2rem;
  background: transparent;
  z-index: 9999;
  transition: background 400ms ease-in-out;
}
@media (max-width: 480px) {
  .navbar {
    padding-top: 1rem;
  }
}
.navbar.active {
  transition: background 400ms ease-in-out;
  background: #fff9ec;
}
.navbar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
}
@media (max-width: 480px) {
  .navbar__wrapper {
    padding-bottom: 1rem;
  }
}
.navbar.active .navbar__wrapper {
  border-bottom: none;
}
.navbar__logo img {
  width: 170px;
}
.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: 100%;
    top: 0;
    left: 0;
    font-size: 2.441em;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #fff9ec;
    padding: 15rem 0 0;
    gap: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 480px) {
  .navbar__menu.active {
    padding: 7.5rem 0;
    gap: 5rem;
  }
}
@media (max-width: 991px) {
  .navbar__menu li {
    display: inline-block;
    width: 80%;
    /* padding-bottom: 2rem; */
  }
}
.navbar__menu li a {
  color: #072f46;
  transition: color 300ms ease-in-out;
  font-weight: 500;
}
.navbar__menu li a:hover {
  color: #5e6c82;
}
.navbar__hamburger {
  display: none;
}
@media (max-width: 991px) {
  .navbar__hamburger {
    display: block;
    background: none;
    border: none;
    outline: none;
    z-index: 9999;
    cursor: pointer;
  }
  .navbar__hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px auto;
    transition: all 500ms ease-in-out;
    color: #5e6c82;
    background: #5e6c82;
  }
  .navbar__hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .navbar__hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.hero {
  font-size: 1rem;
  padding: 10rem 0 5rem;
}
@media (min-width: 769px) {
  .hero {
    padding: 17.5rem 0 5rem;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero__content h1 {
  color: #5e6c82;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 4rem;
}
@media (min-width: 769px) {
  .hero__content h1 {
    margin-bottom: 2rem;
    margin-top: 0;
  }
}
@media (min-width: 769px) {
  .hero__content h1 {
    text-align: left;
  }
}
@media (max-width: 470px) {
  .hero__content h1 br {
    display: none;
  }
}
.hero__wrapper {
  display: block;
}
@media (min-width: 769px) {
  .hero__wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
  }
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  text-align: center;
}
@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    text-align: left;
  }
}
@media (min-width: 769px) {
  .hero__actions {
    justify-content: flex-start;
  }
}
.hero figure {
  flex: 0 0 35%;
  /* padding: 1rem 5rem 1rem 5rem; */
}
@media (min-width: 769px) {
  .hero figure {
    padding-left: 2rem;
  }
}

.program {
  font-size: 1rem;
  padding: 10rem 0 5rem;
}
.program h2 {
  color: #5e6c82;
}
.program__content {
  width: 100%;
  margin: 2rem 0 4rem;
}
@media (min-width: 769px) {
  .program__content {
    width: 75%;
  }
}
.program__wrapper {
  display: block;
}
@media (min-width: 480px) {
  .program__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 769px) {
  .program__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.program__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media (min-width: 480px) {
  .program__card {
    margin-bottom: 0;
  }
}
.program__card__image img {
  width: 75px;
}
@media (min-width: 480px) {
  .program__card__image img {
    width: 100px;
  }
}
@media (min-width: 991px) {
  .program__card__image img {
    width: 125px;
  }
}
.program__card h3 {
  color: #5e6c82;
  font-weight: 500;
  margin-bottom: 1rem;
}
.program__card p {
  padding-right: 5rem;
}
@media (min-width: 480px) {
  .program__card p {
    padding-right: 0;
  }
}

.benefits {
  font-size: 1rem;
  padding: 10rem 0 5rem;
}
.benefits h2 {
  color: #5e6c82;
  margin-bottom: 4rem;
}
@media (min-width: 769px) {
  .benefits h2 {
    text-align: left;
  }
}
@media (max-width: 470px) {
  .benefits h2 br {
    display: none;
  }
}
.benefits__wrapper {
  display: block;
}
@media (min-width: 599px) {
  .benefits__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 991px) {
  .benefits__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}
.benefits__card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 599px) {
  .benefits__card {
    margin-bottom: 0;
  }
}
.benefits__card figure {
  flex: 0 0 15%;
  padding-right: 1rem;
}
@media (min-width: 599px) {
  .benefits__card figure {
    flex: 0 0 20%;
  }
}
.benefits__card__content {
  flex: 0 0 80%;
  text-align: left;
}
.benefits__card__content h3 {
  color: #5e6c82;
  font-weight: 600;
}

.process {
  font-size: 1rem;
  padding: 10rem 0 5rem;
}
.process h2 {
  color: #5e6c82;
  margin-bottom: 4rem;
}
.process__content {
  width: 100%;
  margin: 2rem 0 4rem;
}
@media (min-width: 769px) {
  .process__content {
    width: 75%;
  }
}
.process__card {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 991px) {
  .process__card {
    margin-bottom: 2rem;
  }
}
.process__card figure {
  flex: 0 0 10%;
}
.process__card__content {
  flex: 0 0 90%;
}
.process__card__content h3 {
  color: #5e6c82;
  font-weight: 500;
  margin-bottom: 1rem;
}
.process__card__content p {
  padding-right: 5rem;
}
@media (min-width: 480px) {
  .process__card__content p {
    padding-right: 0;
  }
}

.about {
  font-size: 1rem;
  padding: 10rem 0 5rem;
}
.about h2 {
  color: #5e6c82;
}
.about__wrapper {
  display: block;
  align-items: center;
  flex: 1;
}
@media (min-width: 769px) {
  .about__wrapper {
    display: flex;
    align-items: center;
    flex: 1;
  }
}
.about figure {
  padding-right: 2rem;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about__content h2 {
  color: #5e6c82;
}
.about__content h3 {
  color: #5e6c82;
}
.about__content q {
  font-style: italic;
}

.contact {
  font-size: 1rem;
  padding: 5rem 0 5rem;
}
@media (min-width: 480px) {
  .contact {
    padding: 10rem 0 15rem;
  }
}
.contact h2 {
  color: #5e6c82;
  text-align: center;
}
@media (min-width: 769px) {
  .contact h2 {
    text-align: left;
  }
}
@media (max-width: 470px) {
  .contact h2 br {
    display: none;
  }
}
.contact h3 {
  padding: 2rem 0;
}
.contact__wrapper {
  display: block;
}
@media (min-width: 769px) {
  .contact__wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
  }
}
.contact figure {
  flex: 0 0 35%;
  padding: 0 2rem 2rem;
}
@media (min-width: 480px) {
  .contact figure {
    padding: 0 5rem 2rem;
  }
}
@media (min-width: 769px) {
  .contact figure {
    padding: 1rem;
  }
}
.contact__content {
  text-align: center;
}
@media (min-width: 769px) {
  .contact__content {
    text-align: left;
  }
}
.contact__social {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 769px) {
  .contact__social {
    align-items: flex-start;
    gap: 1rem;
  }
}
.contact__social__icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__social__icons img {
  width: 40px;
}
.contact__social__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 480px) {
  .contact__social__contacts {
    flex-direction: row;
  }
}
.contact__social__contacts a {
  color: #072f46;
  transition: all 0.2s ease-in-out;
  font-weight: 600;
}
.contact__social__contacts a:hover {
  color: #5e6c82;
}

.footer {
  font-size: 1rem;
  padding: 1.25rem 0;
  text-align: center;
}
.footer p {
  line-height: 2;
}

.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: #5e6c82;
}

.button-primary {
  text-decoration: none;
  display: inline-block;
  border-radius: 0.75rem;
  font-size: 1em;
  font-weight: 300;
  color: #ffffff;
  background: #5e6c82;
  border: 1px solid #5e6c82;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.button-primary:hover {
  color: #5e6c82;
  background: #fff9ec;
  border: 1px solid #5e6c82;
}

.button-secondary {
  text-decoration: none;
  display: inline-block;
  border-radius: 0.75rem;
  font-size: 1em;
  font-weight: 300;
  color: #5e6c82;
  background: #fff9ec;
  border: 1px solid #5e6c82;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.button-secondary:hover {
  color: #ffffff;
  background: #5e6c82;
  border: 1px solid #5e6c82;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #fff9ec;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #fff9ec;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: #072f46;
}