body {
  scroll-behavior: smooth;
}

*, *:before, *:after {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 8vw;
}
@media (min-width: 425px) {
  h1 {
    font-size: 9vw;
  }
}
@media (min-width: 600px) {
  h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}

h2 {
  line-height: 1.2;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
}
@media (min-width: 900px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}
@media (min-width: 900px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
@media (min-width: 1200px) {
  p {
    font-size: 1.2rem;
  }
}

button {
  border: 3px solid #2F2F4A;
  color: #2F2F4A;
  border-radius: 32px;
  background-color: transparent;
  height: 3rem;
  max-width: 300px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin: 4px 2px;
  cursor: pointer;
}

body {
  background: #FEFCFB;
  font-family: "Open Sans", sans-serif;
  color: #2F2F4A;
}

header {
  background: #FFF2D2;
}

.nav {
  width: 100%;
  z-index: 100;
}
.nav__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem 0 1rem;
  position: relative;
}
@media (min-width: 425px) {
  .nav__content {
    padding: 2rem 2rem 0 2rem;
  }
}
.nav__logo {
  height: 4rem;
  z-index: 1;
}
@media (min-width: 600px) {
  .nav__logo {
    height: 6rem;
  }
}
.nav__menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  background-color: #FFC168;
  transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(185, 154, 154, 0.05), 0 15px 40px rgba(201, 166, 166, 0.2);
}
.nav__item {
  display: block;
  padding: 0.5rem 3rem;
}
.nav__item:first-of-type {
  margin-top: 6rem;
}
.nav__item:last-of-type {
  margin-bottom: 5rem;
}
.nav__item a {
  text-decoration: none;
  color: #1E1E23;
  opacity: 1;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.nav__item a:hover {
  color: #FF3F47;
}

.menu-btn {
  display: none;
}

.menu-btn:checked ~ .nav__menu {
  width: 80%;
}
@media (min-width: 425px) {
  .menu-btn:checked ~ .nav__menu {
    width: 70%;
  }
}
@media (min-width: 600px) {
  .menu-btn:checked ~ .nav__menu {
    width: 40%;
  }
}

.menu-icon {
  padding-top: 5px;
  width: 2rem;
  height: 2rem;
  display: block;
  z-index: 1000;
  cursor: pointer;
}

.nav-icon {
  background: #EF4522;
  display: block;
  height: 4px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.nav-icon:before {
  background: #EF4522;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 8px;
  transition: all 0.2 ease-out;
}

.nav-icon:after {
  background: #EF4522;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 16px;
  transition: all 0.2 ease-out;
}

.menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}

.menu-btn:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top: 8px;
}

.menu-btn:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top: 8px;
}

.hero {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 2rem 2rem;
  overflow: hidden;
  flex-direction: column-reverse;
  gap: 1.5rem;
}
@media (min-width: 425px) {
  .hero {
    padding: 0rem 2rem 3rem 2rem;
  }
}
@media (min-width: 600px) {
  .hero {
    padding: 0rem 2rem 4rem 2rem;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
@media (min-width: 900px) {
  .hero {
    padding: 0rem 3rem 4rem 3rem;
    gap: 0rem;
  }
}
.hero__desc, .hero__img {
  flex: 1;
}
@media (min-width: 600px) {
  .hero__desc {
    padding-top: 3rem;
  }
}
.hero__title {
  color: #2F2F4A;
  overflow-wrap: break-word;
  max-width: 19ch;
  text-align: center;
}
@media (min-width: 600px) {
  .hero__title {
    text-align: left;
  }
}
.hero__smal {
  padding-top: 0.5rem;
  padding-bottom: 3rem;
  text-align: center;
}
@media (min-width: 600px) {
  .hero__smal {
    text-align: left;
  }
}
.hero__text {
  padding-bottom: 1rem;
  font-size: 1.2rem;
  max-width: 45ch;
  text-align: center;
}
@media (min-width: 425px) {
  .hero__text {
    font-size: 1.5rem;
  }
}
@media (min-width: 600px) {
  .hero__text {
    text-align: left;
    padding-bottom: 2rem;
  }
}
.hero__button {
  width: 100%;
}
.hero__button:hover {
  background-color: #FFC168;
  border-color: #FFC168;
}
@media (min-width: 900px) {
  .hero__button {
    width: 80%;
  }
}
.hero__img img {
  width: 120%;
  max-width: 600px;
  margin-top: 1rem;
  margin-left: -2rem;
  flex: 1;
}
@media (min-width: 425px) {
  .hero__img img {
    width: 100%;
  }
}
@media (min-width: 600px) {
  .hero__img img {
    width: 140%;
    margin-left: -3rem;
    margin-top: 0;
  }
}
@media (min-width: 900px) {
  .hero__img img {
    width: 100%;
    margin-left: 0;
  }
}

main {
  overflow: hidden;
  position: relative;
}
main::after {
  background-color: #FFF2D2;
  content: "";
  width: 100%;
  height: 1%;
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
}

#info {
  max-width: 1200px;
  margin: 0 auto;
}

#offer {
  width: 100%;
  overflow: hidden;
}

.container {
  padding: 6rem 2rem;
  padding-bottom: 1rem;
}
@media (min-width: 600px) {
  .container {
    padding: 4rem 2rem;
    padding-bottom: 0;
  }
}
@media (min-width: 900px) {
  .container {
    padding: 3rem 3rem;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 3rem 3rem;
  }
}

.icard {
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media (min-width: 600px) {
  .icard {
    flex-direction: row;
  }
}
@media (min-width: 900px) {
  .icard {
    padding-top: 1rem;
  }
}
.icard__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  gap: 1rem;
}
@media (min-width: 425px) {
  .icard__content {
    padding: 4rem;
  }
}
@media (min-width: 600px) {
  .icard__content {
    padding: 2rem;
  }
}
@media (min-width: 900px) {
  .icard__content {
    flex-direction: row-reverse;
    align-items: center;
    padding: 3rem;
  }
}
.icard__content--red {
  background-color: #FF6B71;
  position: relative;
  z-index: 1;
}
.icard__content--red:hover {
  z-index: 2;
}
@media (min-width: 1200px) {
  .icard__content--red {
    background-color: transparent;
  }
  .icard__content--red::before {
    background-color: #FF6B71;
    content: "";
    width: 104%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    z-index: -1;
    transform: rotate(-2deg);
  }
}
.icard__content--blue {
  position: relative;
  z-index: 1;
  background-color: #A0E5F0;
}
@media (min-width: 1200px) {
  .icard__content--blue {
    background-color: transparent;
  }
  .icard__content--blue::before {
    background-color: #A0E5F0;
    content: "";
    width: 104%;
    height: 100%;
    display: block;
    position: absolute;
    right: 0;
    z-index: -1;
    transform: rotate(-2deg);
  }
}
.icard__img {
  width: 100%;
}
.icard__img img {
  width: 50%;
  margin: 0 auto;
  display: block;
}
@media (min-width: 900px) {
  .icard__img img {
    width: 80%;
  }
}
@media (min-width: 1200px) {
  .icard__img img {
    width: 70%;
  }
}
.icard__title {
  font-size: 1.5rem;
  text-align: center;
}
@media (min-width: 900px) {
  .icard__title {
    font-size: 1.5rem;
    text-align: left;
  }
}
.icard__text {
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
}
@media (min-width: 900px) {
  .icard__text {
    text-align: left;
  }
}
.icard__desc, .icard__img {
  flex: 1;
}
.icard__button {
  width: 100%;
}
.icard__button--red:hover {
  background-color: #A0E5F0;
  border-color: #A0E5F0;
}
.icard__button--blue:hover {
  background-color: #FF6B71;
  border-color: #FF6B71;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 600px) {
  .about {
    flex-direction: row;
    align-items: center;
    margin-top: 2rem;
  }
}
.about__img {
  flex: 1;
}
@media (min-width: 600px) {
  .about__img {
    flex: 3;
  }
}
.about__img img {
  width: 100%;
}
@media (min-width: 900px) {
  .about__img img {
    width: 90%;
  }
}
.about__desc {
  flex: 1;
}
@media (min-width: 600px) {
  .about__desc {
    flex: 4;
  }
}
@media (min-width: 900px) {
  .about__desc {
    padding-left: 2rem;
  }
}
.about__subtitle {
  padding: 1rem 0;
}

.course_header {
  text-align: center;
  position: relative;
  margin: 2rem 0 1rem 0;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .course_header {
    margin: 6rem 0 4rem 0;
  }
}
@media (min-width: 900px) {
  .course_header {
    margin: 8rem 0 6rem 0;
  }
}
.course_header h2 {
  margin-bottom: 1rem;
}
.course_header::before {
  background-color: #FDEDEE;
  content: "";
  width: 100%;
  height: 200%;
  position: absolute;
  left: 0;
  top: -40%;
  z-index: -1;
  transform: rotate(2deg);
}

.courseR {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 600px) {
  .courseR {
    flex-direction: row;
  }
}
.courseR__desc {
  flex: 1;
}
@media (min-width: 600px) {
  .courseR__desc {
    width: 100%;
    flex: 1;
    padding-right: 2rem;
  }
}
.courseR__img {
  flex: 1;
}
.courseR__img img {
  width: 100%;
  height: 90vw;
  object-fit: cover;
}
@media (min-width: 600px) {
  .courseR__img img {
    height: 250px;
  }
}
@media (min-width: 900px) {
  .courseR__img img {
    height: 310px;
  }
}
@media (min-width: 1200px) {
  .courseR__img img {
    height: 350px;
  }
}
.courseR__textbox {
  position: relative;
  margin-bottom: 5rem;
}
.courseR__textbox::before {
  background-color: #FFF2D2;
  content: "";
  width: 140%;
  height: 110%;
  position: absolute;
  left: -15%;
  top: 10px;
  z-index: -1;
  transform: rotate(2deg);
}
.courseR__title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media (min-width: 900px) {
  .courseR__title {
    font-size: 2rem;
    padding: 2rem 0 1rem 0;
  }
}
.courseR__subtitle {
  padding: 2rem 0 1rem 0;
}
@media (min-width: 900px) {
  .courseR__text2 {
    font-size: 1.2rem;
  }
}

.courseL {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 600px) {
  .courseL {
    flex-direction: row-reverse;
  }
}
.courseL__desc {
  flex: 1;
}
@media (min-width: 600px) {
  .courseL__desc {
    width: 100%;
    flex: 1;
    padding-right: 2rem;
  }
}
.courseL__img {
  flex: 1;
}
.courseL__img img {
  width: 100%;
  height: 90vw;
  object-fit: cover;
}
@media (min-width: 600px) {
  .courseL__img img {
    height: 250px;
  }
}
@media (min-width: 900px) {
  .courseL__img img {
    height: 310px;
  }
}
@media (min-width: 1200px) {
  .courseL__img img {
    height: 350px;
  }
}
.courseL__textbox {
  margin-bottom: 5rem;
  position: relative;
}
.courseL__textbox::before {
  background-color: #FFF2D2;
  content: "";
  width: 140%;
  height: 110%;
  position: absolute;
  left: -15%;
  top: 10px;
  z-index: -1;
  transform: rotate(-2deg);
}
.courseL__title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media (min-width: 900px) {
  .courseL__title {
    font-size: 2rem;
    padding: 2rem 0 1rem 0;
  }
}
.courseL__subtitle {
  padding: 2rem 0 1rem 0;
}
@media (min-width: 900px) {
  .courseL__text2 {
    font-size: 1.2rem;
  }
}

.stars01 {
  height: 90px;
  display: flex;
  justify-content: flex-start;
  padding: 0 3rem;
  display: none;
}
@media (min-width: 600px) {
  .stars01 {
    display: flex;
  }
}
.stars01 > img {
  transform: scaleX(-1);
}

.stars02 {
  height: 90px;
  display: flex;
  justify-content: flex-end;
  padding: 0 3rem;
  display: none;
}
@media (min-width: 600px) {
  .stars02 {
    display: flex;
  }
}

.gallery__desc {
  margin-bottom: 2rem;
}
.gallery__images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.gallery img {
  width: 100%;
}
@media (min-width: 600px) {
  .gallery img {
    width: 48%;
  }
}

.teachers {
  display: flex;
  flex-direction: column;
  background-color: #FFF2D2;
  gap: 2rem;
}
@media (min-width: 600px) {
  .teachers {
    background-color: transparent;
    flex-direction: row;
    padding-top: 1rem;
  }
}
@media (min-width: 900px) {
  .teachers {
    padding-top: 8rem;
  }
}
.teachers__desc {
  flex: 2;
  position: relative;
}
@media (min-width: 900px) {
  .teachers__desc {
    padding-left: 3rem;
  }
  .teachers__desc::before {
    background-color: #FFF2D2;
    content: "";
    width: 130%;
    height: 86%;
    display: block;
    position: absolute;
    left: -15%;
    bottom: -10%;
    z-index: -1;
    transform: rotate(3deg);
  }
}
.teachers__img {
  flex: 3;
}
.teachers__img img {
  width: 100%;
}
@media (min-width: 900px) {
  .teachers__title {
    padding-bottom: 4rem;
  }
}
.teachers__subtitle {
  padding: 1rem 0;
}

.guarantee {
  background-color: #FC6374;
  position: relative;
  margin-top: 8rem;
}
@media (min-width: 900px) {
  .guarantee {
    background-color: transparent;
  }
}
.guarantee::before {
  background-color: #FC6374;
  content: "";
  width: 100%;
  height: 70%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 900px) {
  .guarantee::before {
    background-color: transparent;
  }
}
.guarantee::after {
  background-color: #FDEDEE;
  content: "";
  width: 110%;
  height: 100%;
  display: block;
  position: absolute;
  left: -5%;
  top: 5%;
  z-index: -3;
  transform: rotate(-1deg);
}
.guarantee__content {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 600px) {
  .guarantee__content {
    padding: 3rem 2rem;
  }
}
@media (min-width: 900px) {
  .guarantee__content {
    padding: 8rem 2rem;
  }
}
.guarantee__desc {
  padding: 0 1rem;
}
@media (min-width: 900px) {
  .guarantee__desc {
    padding-bottom: 3rem;
    width: 60%;
  }
}
.guarantee__title {
  text-align: center;
  margin-bottom: 3rem;
}
.guarantee__subtitle {
  padding: 1rem 0;
}
.guarantee__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  flex-wrap: wrap;
}
@media (min-width: 600px) {
  .guarantee__list {
    flex-direction: row;
  }
}
@media (min-width: 900px) {
  .guarantee__list::before {
    background-color: #FC6374;
    content: "";
    width: 90%;
    height: 120%;
    display: block;
    position: absolute;
    left: 5%;
    top: -10%;
    z-index: -1;
    transform: rotate(-1deg);
  }
}
.guarantee__card {
  border: 3px solid #FC6374;
  background-color: white;
  border-radius: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  flex-basis: 250px;
  flex-grow: 1;
}
@media (min-width: 1200px) {
  .guarantee__card {
    padding: 4rem 2rem;
  }
}
.guarantee__card > img {
  width: 50%;
  max-width: 150px;
  display: block;
  margin: 0 auto;
}
.guarantee__card > h3 {
  font-size: 1.5rem;
  padding: 2rem 0 0 0;
  font-weight: 700;
}
.guarantee__card > p {
  padding: 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.guarantee__card > p span {
  color: #FC6374;
}
.guarantee__card > small {
  font-size: 1.5rem;
  font-weight: 700;
  color: gray;
  padding: 1rem 0;
  display: block;
}
.guarantee__card .note {
  font-size: 1rem;
  font-weight: 400;
  color: gray;
  padding: 2rem 0 0 0;
  display: block;
}
.guarantee__card .free {
  font-size: 5rem;
  font-weight: 700;
  color: #FC6374;
  padding-top: 1.5rem;
}

.lent {
  position: relative;
}
.lent::before {
  background-color: #FDEDEE;
  content: "";
  width: 200%;
  height: 100%;
  display: block;
  position: absolute;
  left: -5%;
  bottom: 20%;
  z-index: -2;
  transform: rotate(2deg);
}
.lent::after {
  background-color: #E1E7FE;
  content: "";
  width: 200%;
  height: 30%;
  display: block;
  position: absolute;
  left: -5%;
  bottom: -10%;
  z-index: -3;
  transform: rotate(2deg);
}
.lent__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding-bottom: 1rem;
}
@media (min-width: 900px) {
  .lent__content {
    padding-top: 1rem;
    text-align: center;
  }
}
.lent__subtitel {
  padding: 1rem 0 2rem 0;
}
@media (min-width: 900px) {
  .lent__subtitel {
    width: 70%;
    margin: 0 auto;
  }
}
.lent__banner {
  background-color: white;
  text-align: center;
  padding: 2rem;
  margin: 0 auto;
  position: relative;
  border-radius: 1rem;
}
@media (min-width: 600px) {
  .lent__banner {
    padding: 3rem;
  }
}
@media (min-width: 900px) {
  .lent__banner {
    background-color: transparent;
    width: 90%;
  }
  .lent__banner::before {
    background-color: white;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: rotate(-2deg);
    border-radius: 1rem;
  }
}
.lent__banner > h3 {
  font-size: 1.5rem;
}
.lent__banner > small {
  font-size: 1rem;
}
.lent__banner > p {
  font-size: 5rem;
  font-weight: 700;
  color: #FC6374;
  padding-top: 1.5rem;
}
.lent__img {
  width: 100%;
}
@media (min-width: 600px) {
  .lent__img {
    width: 100%;
  }
}
@media (min-width: 900px) {
  .lent__img {
    width: 70%;
  }
}

.media {
  background-color: #E1E7FE;
  position: relative;
}
.media::after {
  background-color: #E1E7FE;
  content: "";
  width: 200%;
  height: 30%;
  display: block;
  position: absolute;
  left: -5%;
  bottom: -10%;
  z-index: -3;
  transform: rotate(2deg);
}
.media__content {
  max-width: 1200px;
  margin: 0 auto;
}
.media__title {
  text-align: center;
}
.media__subtitle {
  padding: 1rem 0 2rem 0;
  text-align: center;
}
@media (min-width: 900px) {
  .media__subtitle {
    width: 70%;
    margin: 0 auto;
    padding: 1rem 0 4rem 0;
  }
}
.media__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 425px) {
  .media__list {
    gap: 1.5rem;
  }
}
@media (min-width: 600px) {
  .media__list {
    flex-direction: row;
  }
}
@media (min-width: 900px) {
  .media__list {
    gap: 2rem;
  }
}
.media__list li {
  display: block;
  text-align: center;
}
.media__list li img {
  width: 100%;
  max-width: 140px;
}
.media__list li p {
  font-family: "Montserrat", sans-serif;
  padding-top: 0.5rem;
  line-height: 1.2;
}

.plus {
  font-size: 3rem;
}

footer {
  background-color: #9692AA;
  position: relative;
  overflow: hidden;
}
footer::after {
  background-color: #E1E7FE;
  content: "";
  width: 200%;
  height: 100%;
  display: block;
  position: absolute;
  left: -10%;
  bottom: 95%;
  z-index: 0;
  transform: rotate(2deg);
}
@media (min-width: 900px) {
  footer::after {
    bottom: 90%;
  }
}

.contact {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.contact__desc {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.contact__col {
  flex-grow: 1;
}
.contact__instagram {
  align-self: flex-end;
  padding: 1rem 0;
}
.contact__instagram__arrow {
  padding-bottom: 4rem;
}
.contact__logo {
  width: 100%;
  max-width: 150px;
}
.contact__title {
  padding-top: 2rem;
}
.contact__subtitle {
  padding: 1rem 0;
}
.contact__subtitle span {
  font-size: 2rem;
}
.contact__content {
  display: flex;
  background-color: #2F2F4A;
  color: white;
  padding: 2rem;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .contact__content {
    flex-direction: row;
  }
}
@media (min-width: 900px) {
  .contact__content {
    padding: 4rem;
    background-color: transparent;
    margin-top: 4rem;
  }
  .contact__content::before {
    background-color: #2F2F4A;
    content: "";
    width: 104%;
    height: 100%;
    display: block;
    position: absolute;
    left: -2%;
    bottom: 1rem;
    z-index: -1;
    transform: rotate(-2deg);
  }
}
.contact__list {
  flex: 1;
  margin-top: 2rem;
}
@media (min-width: 600px) {
  .contact__list {
    margin-top: 0;
  }
}
.contact__list li {
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 600px) {
  .contact__list li {
    flex-direction: row;
  }
}
.contact__vl {
  border-left: 3px solid white;
  margin: 0 8%;
}
@media (min-width: 900px) {
  .contact__vl {
    margin: 0 10%;
  }
}
.contact__slogan {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #D5D5DA;
  padding: 1rem 0;
}
.contact__text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  padding-top: 8px;
}
@media (min-width: 425px) {
  .contact__text {
    font-size: 1.4rem;
  }
}
@media (min-width: 600px) {
  .contact__text {
    padding-top: 0;
    padding-left: 16px;
  }
}
@media (min-width: 900px) {
  .contact__text {
    font-size: 1.6rem;
  }
}
.contact__icon {
  max-width: 32px;
}
@media (min-width: 425px) {
  .contact__icon {
    float: left;
  }
}

.footer_info {
  margin-top: 1rem;
}
.footer_info p {
  font-size: 0.8rem;
}
@media (min-width: 600px) {
  .footer_info p {
    text-align: right;
  }
}

/*# sourceMappingURL=style.css.map */
