@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    min-height: 768px;
    background-image: url( background.avif);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.lexend{
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.container{
    max-width: 1366px;
    width: 100%;
    margin: 0px auto;
}
.header{
    z-index: 1;
    flex-flow: row;
    flex: none;
    place-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    display: flex;
    overflow: hidden;
    width: 100%;
    padding-top: 30px;
}
.header-body{
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    align-items: center;
}
.cta-button{
    cursor: pointer;
    flex-flow: row;
    place-content: center;
    align-items: center;
    gap: 8px;
    width: min-content;
    height: min-content;
    padding: 10px 15px 10px 16px;
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: black;
    color: #ffffff;
    text-decoration: none;
    min-width: 124px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.cta-button:hover{
   opacity: 0.8;
}
.cta-button .icon{
    aspect-ratio: 1;
    height: var(--framer-aspect-ratio-supported, 22px);
    flex: none;
    width: 22px;
    position: relative;
    overflow: visible;
}
.framer-1nhyuwg{
        width: 18px;
    height: 21px;
    position: absolute;
    top: 0;
    left: 2px;
}

.main-nav ul{ 
    padding: 0; 
    margin: 0;
    display: flex;
    flex-direction:row;
    align-items: center;
    gap:15px;
    list-style: none;
}
.main-nav ul li a{ 
    text-decoration: none;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: black;
    padding: 0px 15px;
}
.main-nav ul li:hover a{
    opacity: 0.8;
}
.content-body{
    min-height:85vh;
}

.payment-button{
    cursor: pointer;
    flex-flow: row;
    place-content: center;
    align-items: center;
    font-size: 1.2rem;
    gap: 8px;
    height: min-content;
    padding: 10px 15px 10px 16px;
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: black;
    color: #ffffff;
    text-decoration: none;
    min-width: 124px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.payment-button:hover{
   opacity: 0.8;
}
.footer.main-nav ul li a{
    font-size: 13px;
    font-weight: 300;
    padding: 0;
    position: relative;
}
.footer.main-nav ul li a:after{
    content: "|";
    font-weight: 300;
    position: absolute;
    right: -10px;
    opacity: 0.5;
}
.footer.main-nav ul li:last-child a:after{
    display: none;
}

.footer .container{
    display: flex;
    flex-direction:row;
    align-items: center; 
    justify-content: space-between;
}
.footer p{
    text-decoration: none;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: black;
    font-size: 13px;
    font-weight: 300;
}
.footer p a{ text-decoration: none;color: black;}
.hamburger{display: none;}

@media (max-width: 767px) {
body {
    min-height:auto;
    background-size: auto;
}

.mobile-hide{ display: none;}
.header-body {
    padding: 0px 30px;
}
.menu-mobile{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:8px;
}
.footer .container{
    flex-direction:column;
}
.footer p, .footer nav{ padding: 0px 20px;}
.footer p{  text-align: center;}
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #000000;
  border-radius: 50%;
  z-index: 0;
}
.hamburger__slices {
  position: relative;
  display: grid;
  width: 20px;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: 1fr;
  grid-row-gap: 4px;
}
.hamburger__slice {
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.hamburger:after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000000;
    position: absolute;
    z-index: -1;
    transition: transform 0.5s ease-in-out;
    backface-visibility: hidden;
    transform: perspective(1px) translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}
.hamburger__menu {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out 0.6s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.hamburger--active:after {
  /* transform: scale(100); */
  height: 100%;
width: 100%;
left: 0;
top: 0;
border-radius: 0;
transition: opacity 0.3s ease-in-out 0.6s;
}
.hamburger--active .top {
  transform: rotate(45deg) translateX(3px) translateY(-2px);
  margin-left: -7px;
}
.hamburger--active .middle {
  width: 0;
  margin-left: 50%;
}
.hamburger--active .bottom {
  transform: rotate(-45deg) translateX(10px) translateY(-6px);
  margin-left: -7px;
}
.hamburger--active .hamburger__menu {
  display: flex;
  opacity: 1;
  text-align: center;
}
.hamburger--active .hamburger__menu ul {
  list-style: none outside none;
  padding: 0;
}
.hamburger--active .hamburger__menu li + li {
  padding-top: 2em;
}
.hamburger--active .hamburger__menu a {
  font-size: 20px;
  color: white;
  text-decoration: none;
  font-family: "Lexend", sans-serif;
}


.cta-button {
    gap: 4px;
    padding: 8px;
    min-width: 130px;}
}

@media (max-width: 400px) {
    .header-body {
        padding: 0px 15px;
    }
    .cta-button {
    gap: 4px;
    padding: 8px;
    min-width: 102px;
    font-size: 13px;
    }
    .menu-mobile {
        gap: 4px;
    }
    .footer p, .footer nav {
        padding: 0px 10px;
    }
    .main-nav ul {
        gap: 8px;
    }
    .footer.main-nav ul li a {
    font-size: 11px;
    }
    .footer.main-nav ul li a:after {
    right: -5px;
    top: -1px;
    }
}

