* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cabin', sans-serif;
}

.main {
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  background: rgb(208, 255, 191);
  background: linear-gradient(45deg, rgba(208, 255, 191, 1) 0%, rgba(108, 187, 255, 1) 100%);
  grid-column-gap: 24px;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .main {
    grid-template-columns: repeat(2, 1fr);
  }
}

.main-left {
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1025px) {
  .main-left {
    padding: 48px 0 48px 72px;
    align-items: flex-start;
  }
}

.main-right {
  width: 100%;
  height: 100%;
  padding: 24px;
  display: none;
  padding: 24px 72px 24px 0;
}

@media (min-width: 1025px) {
  .main-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

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

.main-left h1 {
  font-size: 4.5rem;
  line-height: 4rem;
  text-align: center;
  padding: 0;
  margin: 0;
  color: #676767;
}

@media (min-width: 576px) {
  .main-left h1 {
    font-size: 6rem;
    line-height: 6rem;
  }
}

@media (min-width: 1025px) {
  .main-left h1 {
    font-size: 8rem;
    line-height: 8rem;
    text-align: left;
  }
}

.main-left h2 {
  font-size: 2rem;
  text-align: center;
  color: #676767;
}

@media (min-width: 1025px) {
  .main-left h2 {
    font-size: 2.5rem;
    text-align: left;
  }
}

.main-left .image-mobile {
  display: block;
  width: 100%;
  height: auto;
  padding: 16px;
  padding-top: 32px;
}

@media (min-width: 1025px) {
  .main-left .image-mobile {
    display: none;
  }
}

.main-left .image-mobile img {
  width: 100%;
  height: auto;
}

.main-left .buttons {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-main,
.btn-main:visited,
.btn-main:active {
  width: 100%;
  max-width: initial;
  font-size: 1.2rem;
  color: #676767;
  padding: 10px 48px;
  border: 2px solid #676767;
  border-radius: 50px;
  transition: all .3s ease-in-out;
}

@media (min-width: 1025px) {

  .btn-main,
  .btn-main:visited,
  .btn-main:active {
    max-width: 400px;
    font-size: 2rem;
    padding: 14px 48px;
  }
}

.btn-main:hover {
  color: white;
  background-color: #676767;
}

.main-left footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
}

@media (min-width: 992px) {
  .main-left footer {
    flex-direction: row;
    justify-content: flex-start;
    gap: 40px;
    padding-top: 0;
  }
}

.main-left footer img {
  width: 100%;
  height: auto;
  max-height: 40px;
}

@media (min-width: 1025px) {
  .main-left footer img {
    width: auto;
	max-height: initial;
    height: 60px;
  }
}

/* Modals */

.modals {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateX(100%);
  padding: 56px 32px 48px 48px;
  transition: all .3s ease-in-out;
}

@media (min-width: 1025px) {
  .modals {
    width: 50vw;
    height: 100vh;
  }
}

.modals.active {
  transform: translateX(0);
}

.modals .btn-close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 18px;
  height: 18px;
  background-image: url("../../assets/img/btn-close-menu.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: none;
  border: none;
}

.modals .content {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 32px;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 24px;
}

@media (min-width: 576px) {
  .modals .content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.modals .content .item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.modals .content .item .image {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1.2;
  padding-bottom: 12px;
  overflow: hidden;
}

.modals .content .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: all .3s ease-in-out;
}

.modals .content .item:hover .image img {
  transform: scale(1.1);
}

.modals .content .item .subtitle {
  font-size: .9rem;
  line-height: 1.1rem;
  color: #676767;
}

/* Animations */

.fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Slide Down */

@keyframes slide-down {
  0% {
    /* transform: translateY(-20%); */
    opacity: .8;
    max-height: 68px;
  }
}

.puff-in-center {
  -webkit-animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
  animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-8-25 22:11:43
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation puff-in-center
 * ----------------------------------------
 */
@-webkit-keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.slide-in-right {
  -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-8-25 22:13:32
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-top {
  -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2023-8-29 16:9:54
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in-up {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-8-26 11:9:52
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-up {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in-bottom {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-8-26 11:9:52
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in-left {
  -webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-12-8 11:51:19
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}