@font-face {
  font-display: swap;
  font-family: "Lexend";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/lexend-v23-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Lexend";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/lexend-v23-latin-700.woff2") format("woff2");
}
/* lexend-zetta-100 - latin */
@font-face {
  font-display: swap;
  font-family: "Lexend Zetta";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/lexend-zetta-v28-latin-100.woff2") format("woff2");
}
/* lexend-zetta-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Lexend Zetta";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lexend-zetta-v28-latin-regular.woff2") format("woff2");
}
/* lexend-zetta-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Lexend Zetta";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/lexend-zetta-v28-latin-700.woff2") format("woff2");
}
/* lexend-zetta-900 - latin */
@font-face {
  font-display: swap;
  font-family: "Lexend Zetta";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/lexend-zetta-v28-latin-900.woff2") format("woff2");
}

@font-face {
  font-family: "TAN MERINGUE";
  src: url("../fonts/tan_meringue-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Lexend;
  border: none;
  outline: none;
  text-decoration: none;
}
:root {
  --primary-color: #e50064;
  --secondary-color: #fcbd00;
  --blue: #55bfca;
  --text-color: #000000;
  --background: #fff6f1;
}
[class*="grid"] {
  display: grid;
}
.align-center {
  align-items: center;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}
body {
  -webkit-text-size-adjust: 100%;
  background: var(--background);
  overflow-x: hidden;
}

p,
a,
input,
select,
textarea,
button {
  font-size: 1.6rem;
  font-weight: 500;
}
i svg {
  width: unset;
  height: 1.8rem;
  fill: white;
}
section {
  padding: 8rem 0;
}
p {
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: TAN MERINGUE;
  line-height: 1.2;
}
img,
video {
  max-width: 100%;
  pointer-events: none;
}
button {
  cursor: pointer;
  transition: 0.3s;
}
.container {
  max-width: 1240px;
  padding: 0 1.5rem;
  margin: auto;
  width: 100%;
}
.container-max {
  max-width: 1540px;
  width: 100%;
  margin: auto;
  position: relative;
}
/* header */
header {
  position: absolute;
  height: 8rem;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 0 2rem;
}
header .logo img {
  height: 5rem;
}
header .container-max {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.button_container {
  position: fixed;
  right: 2rem;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
.button_container:hover {
  opacity: 0.7;
}
.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #fff;
}
.button_container.active .middle {
  opacity: 0;
  background: #fff;
}
.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #fff;
}
.button_container span {
  background: white;
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 11px;
}
.button_container span:nth-of-type(3) {
  top: 22px;
}

.overlay {
  position: fixed;
  background: var(--blue);
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  z-index: 99;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}
.overlay nav {
  position: relative;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  overflow-y: scroll;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  position: relative;
  height: 100%;
  flex-direction: column;
  gap: 5rem;
  width: fit-content;
  justify-content: center;
  align-items: center;
}
.overlay ul li {
  display: block;
  position: relative;
  opacity: 0;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
  width: 100%;
}
.overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 3px;
  background: #fff;
  transition: 0.35s;
}
header li {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
header li a {
  display: flex !important;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
header li svg {
  width: unset;
  height: 4rem;
  transform: rotate(90deg);
}
header .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  height: 0;
  overflow: hidden;
  transition: 0.3s;
}
li.active .sub-menu {
  max-height: 90rem;
  height: 100%;
  padding-top: 3rem;
  transition: 0.3s;
}
.sub-menu a {
  align-items: center;
  justify-content: center;
}
.sub-menu .ico {
  width: 5rem;
  height: 4rem;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}
.sub-menu .ico svg {
  transform: rotate(0);
}
.sub-menu .ico svg path {
  fill: var(--blue) !important;
}
.overlay nav::-webkit-scrollbar {
  width: 0;
}
.overlay nav ul {
  padding: 5rem 0;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.overlay ul li a {
  font-size: 3rem;
  text-transform: uppercase;
}

main {
  position: relative;
  height: 85rem;
  overflow: hidden;
}
main .bg {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  position: absolute;
  left: 0;
  z-index: -1;
  top: 0;
  height: 100%;
}
main .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
main .bg .left {
  position: relative;
}
main .bg .left::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #e5006367;
  top: 0;
  left: 0;
}
.overlay1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  z-index: 3;
  max-width: 85rem;
}
main .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
}
main .content .frame img {
  width: 100%;
}
main .content .frame {
  max-width: 85rem;
  width: 100%;
  position: relative;
  top: -25rem;
  margin-bottom: -25rem;
  z-index: 1;
}
main .content .logo {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  width: 100%;
}
main .content .frame h1,
main .content .frame h1 small {
  font-family: TAN MERINGUE;
  color: var(--secondary-color);
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 5rem;
  position: absolute;
  left: -10rem;
  top: 50%;
  transform: translateY(-10%);
  letter-spacing: 5px;
  display: block;
}
main button {
  height: 8rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  border-radius: 3rem;
  padding: 0 3rem;
  padding-right: 1rem;
  position: absolute;
  bottom: 13rem;
  right: 16rem;
  cursor: pointer;
}
main button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transition: 0.3s;
}
main button svg path {
  transition: 0.3s;
}
main button:hover svg path {
  fill: var(--primary-color) !important;
}
.pb-0 {
  padding-bottom: 0;
}
.left-side,
.right-side {
  position: relative;
}
.grid-1-a-1 {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.left-side .o2 {
  width: 56%;
  position: relative;
  top: -16rem;
  left: 15rem;
  margin-bottom: -23rem;
}
.left-side .pass {
  position: absolute;
  bottom: -4rem;
  z-index: 3;
}
.right-side .o3 {
  position: relative;
  width: 50%;
  margin-left: auto;
  display: block;
  bottom: -10rem;
  z-index: -1;
}
.right-side .o4 {
  position: relative;
  top: -15rem;
  margin-bottom: -16rem;
  display: block;
  margin-left: auto;
  right: 10rem;
}
.container-max .text-content {
  text-align: center;
  width: 50rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
p {
  font-size: 1.65rem;
  font-weight: 700;
  word-spacing: 2px;
}
.text-content h2 {
  font-size: 4rem;
  color: var(--secondary-color);
}
.text-content p span {
  color: var(--primary-color);
}
.text-content p span.s2 {
  color: var(--secondary-color);
}
.relative {
  position: relative;
}
.l1 {
  position: absolute;
  top: -8rem;
  right: 10rem;
  z-index: -1;
}
.strip {
  position: absolute;
  left: 0;
  top: -20rem;
  max-width: 100rem;
  pointer-events: none;
  z-index: 3;
  width: 100%;
}
.pt-0 {
  padding-top: 0;
}
.video-bg {
  position: relative;
}
.video-bg video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.video-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000bd;
}
.video-bg iframe {
  position: relative;
  display: block;
  z-index: 1;
  max-width: 80rem;
  width: 100%;
  aspect-ratio: 16/9 !important;
  margin: auto;
  border-radius: 2rem;
  border: 2px solid var(--secondary-color);
}
.o3.o32 {
  width: 60% !important;
  margin: auto;
}
.right-side.r2 {
  margin-bottom: -8rem;
  z-index: 2;
}
.pass.pass2 {
  position: absolute;
  left: 8rem;
  width: 16rem;
  z-index: 3;
  bottom: -5rem;
}
.cta-bg {
  background: url("../images/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 20rem 0;
}
.cta-bg .strip3 {
  position: absolute;
  right: 0;
  bottom: -15rem;
  max-width: 267rem;
  width: 116%;
}
.cta-bg .content {
  max-width: 60rem;
  width: 100%;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cta-bg .content h2 {
  font-size: 4rem;
  color: var(--secondary-color);
}
.cta-bg .content p {
  color: white;
  font-weight: 400;
}
.cta-bg .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  gap: 3rem;
}

.cta-bg .flex button.item {
  font-family: "TAN MERINGUE";
  font-size: 2.5rem;
  color: var(--secondary-color);
  padding: 2rem 6rem;
  border: 1px solid var(--i);
  border-radius: 2.5rem;
  font-weight: 400;
  background: transparent;
}
.cta-bg .flex button.item:hover {
  background: var(--i);
  color: white;
}
.strip-wraper {
  position: relative;
}
.line2 {
  position: absolute;
  right: 0;
  z-index: 1;
  width: unset;
  height: 85%;
  top: 10%;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  row-gap: 10rem;
}
.card {
  position: relative;
}
.card .image-frame {
  width: 100%;
  aspect-ratio: 2/1.5;
  border-top-right-radius: 3rem;
  border-top-left-radius: 3rem;
  border: 2px solid black;
  border-bottom: unset;
  transition: 0.3s;
  overflow: hidden;
    max-height: 277px;
    position: relative;
}
.card .image-frame img {
  position: absolute;
  z-index: 1;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}
.card .body {
  background: black;
  padding: 3rem;
  border-bottom-right-radius: 3rem;
  border-bottom-left-radius: 3rem;
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  border-top: 2px solid var(--secondary-color);
}

.card .body :is(h3, p) {
  color: white;
}
.card h3 {
  color: var(--secondary-color) !important;
  font-size: 1.8rem;
}
.card p {
  font-size: 1.4rem;
  font-weight: 100;
}
.card:nth-child(1) .image-frame img {
  top: -20%;
}
.card:nth-child(2) .image-frame img {
  top: -20%;
}
.card:nth-child(3) .image-frame img {
  top: -20%;
}
.card:nth-child(4) .image-frame img {
  top: -15%;
}
.card:nth-child(5) .image-frame img {
  top: -9%;
}
.card:nth-child(6) .image-frame img {
  top: 10%;
}
.card svg {
  width: unset;
  position: absolute;
  height: 3rem;
  bottom: 1.5rem;
  right: 1.5rem;
}
.title {
  text-align: center;
}
.title h2 {
  font-size: 4rem;
  margin-bottom: 10rem;
  color: var(--secondary-color);
  font-weight: 500;
}
.pt-20 {
  padding-top: 20rem;
}
.card:hover .image-frame {
  border-color: var(--secondary-color);
}
.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.buttons button {
  padding: 1.5rem 3rem;
  font-size: 1.5rem;
  border-radius: 5rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}
.buttons a {
  width: fit-content;
}
.buttons button.empty {
  background: unset;
  border: 2px solid var(--primary-color);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem;
  align-items: center;
}
.slider-box {
  position: relative;
  height: 68rem;
}
.slider-box .content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.slider-box .content h2 {
  color: var(--secondary-color);
  font-size: 3rem;
  font-weight: 400;
}
.slider-box .content p span {
  color: var(--primary-color);
}
.slider-box :is(.grid-2, .container) {
  height: 100%;
}
button.btn {
  padding: 1.5rem 3rem;
  color: var(--secondary-color);
  background: var(--primary-color);
  border-radius: 5rem;
}
.slider {
  position: absolute;
  width: 40%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.video-bg .container {
  position: relative;
  z-index: 5;
}
.video-bg .bg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
}
.f-v {
  height: 35rem;
}
.f-v .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}
.f-v .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.f-v .content h2 {
  font-size: 7rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 10px;
}
.f-v .content p {
  color: white;
  font-size: 2rem;
  font-weight: 400;
}
footer {
  padding: 5rem 0;
  background: black;
}
.social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social svg {
  width: unset;
  height: 2.5rem;
}
footer .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
footer form input {
  padding: 2rem 4rem;
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 100%;
  border-radius: 5rem;
}
form .flex {
  gap: 3rem;
}
footer form input::placeholder {
  color: #e50064;
  word-spacing: 3px;
}
footer form button {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 2rem 4rem;
  border-radius: 5rem;
}
.check p {
  color: white;
}
.check p a {
  color: white;
  text-decoration: underline;
}
.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.check input {
  font-size: 5rem;
  width: 2.5rem;
}
.flex.flex-end {
  align-items: flex-end;
}
.flex.flex-end .flex {
  gap: 3rem;
}
.flex.flex-end .flex a {
  color: var(--secondary-color);
}
img.line3 {
  position: absolute;
  bottom: -6rem;
  height: 100%;
  width: unset;
  right: 0;
}
.flex-start {
  align-items: flex-start;
}
.flex-start .right-side.r2 .o1 {
  position: relative;
  bottom: -10rem;
  width: 100%;
}
.flex-start .left-side .o1 {
  position: relative;
  top: -15rem;
}
.strip-wrap-1 {
  position: relative;
}
.strip-wrap-1 .strip5 {
  position: absolute;
  height: 100%;
  left: -20%;
  bottom: 0;
  transform: rotate(-10deg);
}
.p-d-none {
  display: none;
}
main button br {
  display: none;
}
.slick-dots li.slick-active button:before {
  color: var(--blue);
  font-size: 1rem;
}
.slick-dots li button:before {
  color: var(--blue);
}
.slick-slide img {
  margin: 0 1.5rem;
  max-width: 300px;
  width: 100%;
  border-radius: 30px;
}
.r11 img.o1 {
  max-width: unset;
  width: 130%;
  position: relative;
  z-index: -1;
  left: -20%;
}

.r11 .right-side img.o2 {
  max-width: unset;
  width: 124%;
}
.hidden {
  overflow: hidden;
}
footer .logo img {
  height: 4rem;
}
footer form small {
  display: inline-block;
  font-size: 2rem;
  width: fit-content;
  color: white;
  margin-bottom: 2rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  html {
    font-size: 40%;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 62%;
  }
  .container,
  .container-max {
    padding: 0 4rem;
  }
  section {
    padding: 5rem 0;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  main {
    height: 100%;
  }
  main .bg {
    grid-template-columns: 1fr;
  }
  main .bg .right {
    display: none;
  }
  main .content .frame {
    top: -5rem;
    margin-bottom: -5rem;
  }
  main .container {
    padding: 0;
  }
  main .frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 50rem;
  }
  main .frame img {
    position: absolute;
    height: 40rem;
    width: unset;
    object-fit: cover;
    object-position: 73%;
  }
  .container-max .text-content {
    width: unset;
  }
  .cta-bg .flex {
    flex-direction: column;
  }
  main .content {
    width: 100%;
  }
  main .content .logo {
    max-width: 30rem;
  }
  main .overlay1 {
    position: relative;
    width: 100%;
    left: -35%;
    top: -10rem;
    margin-bottom: -10rem;
    pointer-events: none;
    z-index: 1;
  }
  main .content .frame h1,
  main .content .frame h1 small {
    font-size: 2rem;
    left: 3rem;
    transform: unset;
    top: unset;
    bottom: 14rem;
  }
  .grid-1-a-1 {
    display: block;
  }
  .d-none {
    display: none;
  }
  .flex.flex-end .flex {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .flex.flex-end {
    flex-direction: column;
  }
  form .flex {
    flex-direction: column;
    gap: 2rem;
  }
  form button {
    width: 100%;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .buttons {
    align-items: flex-start;
    flex-direction: column;
  }
  .slider-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding-bottom: 0;
  }
  .slider {
    position: static;
    width: 100%;
    transform: unset;
  }
  .text-content h2 {
    font-size: 2rem;
    font-weight: 400;
  }
  .container-max .text-content {
    text-align: left;
  }
  .right-side.r2 {
    position: static;
  }
  .cta-bg .content h2 {
    font-size: 2rem;
  }
  .cta-bg .content {
    justify-content: flex-start;
    text-align: left;
  }
  .cta-bg .flex {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .right-side.r2 .o2 {
    position: absolute;
    bottom: 0;
  }
  .right-side.r2 {
    margin-bottom: 0;
  }
  .right-side.r2 .o3 {
    bottom: -5rem;
    transform: rotateY(-180deg);
    margin: auto;
  }
  .strip-wrap-1 .strip5 {
    width: 100%;
    height: 59%;
    object-fit: contain;
    left: -44%;
    top: -7rem;
    transform: unset;
  }
  .left-side {
    position: static;
  }
  .pass.pass2 {
    display: none;
  }
  .left-side .o2.b-0 {
    position: absolute;
    bottom: 0;
    top: unset;
    margin: unset;
    left: 0;
    width: 30%;
  }
  .p-d-none {
    display: block;
  }
  .left-side .o1.p-d-none.b-0 {
    position: absolute;
    bottom: 0 !important;
    width: 40%;
    right: 0;
    transform: rotateY(-180deg);
    filter: grayscale(1);
    z-index: -1;
  }

  p {
    font-size: 1.4rem;
  }
  .flex-start .right-side.r2 .o1 {
    bottom: 0;
  }
  img.line3 {
    height: 60%;
    top: 40%;
  }
  .f-v .content {
    align-items: flex-start;
    text-align: left;
  }
  .f-v .content h2 {
    font-size: 5rem;
  }
  .f-v {
    height: 50rem;
  }
  .f-v .container {
    justify-content: unset;
  }
  .flex.flex-end {
    align-items: center;
    gap: 5rem;
  }
  .flex.flex-end .flex {
    gap: 2rem;
  }
  .flex.flex-end .flex a {
    font-size: 1.4rem;
  }
  .cta-bg {
    padding: 5rem 0;
  }
  .cta-bg .flex button.item {
    font-size: 1.4rem;
  }
  .pt-20 {
    padding-top: 10rem;
  }
  .cta-bg .strip3 {
    left: -5rem;
    bottom: -5rem;
    width: 100%;
    right: unset;
  }
  .title h2 {
    font-size: 2rem;
  }
  .card {
    width: 100%;
  }
  main button br {
    display: block;
  }
  main button {
    background: unset;
    padding: 0;
    bottom: 0;
    right: 2rem;
    font-size: 2rem;
    width: fit-content;
    text-align: left;
    z-index: 5;
  }
  main button svg {
    position: absolute;
    bottom: 4.5rem;
    right: 0;
    height: 1rem;
    width: unset;
  }
  main button:hover {
    background: unset;
  }
  .card {
    width: 30rem;
    margin: 5rem 1rem;
  }
  .grid-3 {
    display: block;
  }
  .card:nth-child(1) .image-frame img {
    top: -8%;
  }
  .card:nth-child(2) .image-frame img {
    top: -18%;
  }
  .card:nth-child(3) .image-frame img {
    top: -4%;
  }
  .card:nth-child(4) .image-frame img {
    top: -9%;
  }
  .card:nth-child(5) .image-frame img {
    top: -5%;
  }
  .card:nth-child(6) .image-frame img {
    top: 10%;
  }
  .ddd {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .slick-slider img {
    width: 30rem;
  }
  .ddd {
    width: 40%;
  }
  .mp-0 {
    padding-right: 0;
  }
  .l1 {
    top: 0;
    right: 0;
    height: 50%;
  }
  header .container-max {
    padding: 0 2rem;
  }
  .overlay ul li a {
    font-size: 2rem;
  }
  header .logo img {
    height: 4rem;
  }
  header {
    padding: 0;
  }
  .strip {
    top: -8rem;
  }
  footer form small {
    text-align: center;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 55%;
  }
}
