/******************************/
/**COLORS**/
/******************************/
:root {
  --black: #282829;
  --blue: #2aace2;
  --orange: #f68b20;
  --green: #d7df26;
  --red: #eb1d42;
}
/******************************/
/**FONTS**/
/******************************/
@font-face {
  font-family: "helvetica-neue";
  src: url(../fonts/helvetica-neue-55-roman.otf);
  font-weight: 400;
}
@font-face {
  font-family: "helvetica-neue";
  src: url(../fonts/helvetica-neue-75-bold.otf);
  font-weight: 500;
}
@font-face {
  font-family: "helvetica-neue";
  src: url(../fonts/helvetica-neue-77-bold-cn.otf);
  font-weight: 700;
}
/******************************/
/**BODY**/
/******************************/
* {
  position: relative;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  /*width: -webkit-fill-available;*/
  line-height: 1;
  font-family: "helvetica-neue";
  font-weight: 400;
  color: #000;
  mix-blend-mode: normal;
  /* animation: body-animation 15s ease-in-out infinite; */
}
/******************************/
/**HEADER**/
/******************************/
.header {
  background-color: var(--black);
  padding: 0 4.8rem;
  color: #fff;
  position: relative;
}
.top--flex {
  display: flex;
  gap: 2.4rem;
  justify-content: end;
}
.h-cont {
  font-size: 1.6rem;
}
.header-socials {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}
.head-link:link,
.head-link:visited,
.bottom-nav a:link,
.bottom-nav a:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.3s;
}
.head-link:hover,
.head-link:active,
.bottom-nav a:hover,
.bottom-nav a:active {
  color: #c5c5c5ee;
}
.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  font-size: 2rem;
}
.top-nav {
  padding: 2rem 0 0 0;
}
.hr-nav {
  border-bottom: 2.5px solid #fff;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.bottom-nav {
  padding: 1.8rem 0 3rem 0;
  margin-left: 9rem;
}
.bottom-nav div {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
}
.bottom-nav a {
  font-size: 15px;
}
.logo-img {
  position: absolute;
  top: 14%;
  left: 0.9%;
  z-index: 1;
}
.logo-img img {
  width: 100%;
  height: auto;
  max-width: 250px;
}
.mobile-menu {
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  min-height: 100%;
  height: 100%;
  background: var(--black);
  margin: 0;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  /*  overflow: scroll;*/
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.main-menu {
  margin: 100px 0;
  padding: 0;
}
.main-menu__link {
  border-bottom: 0;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  display: block;
  padding: 20px;
  position: relative;
}
.main-menu__item {
  padding: 0;
  display: block;
  position: relative;
}
.main-menu__link:hover,
.main-menu__link:focus,
.main-menu__link:active {
  border-bottom: 0;
  background: #000;
  color: white;
}
.open-button {
  width: 30px;
  height: 30px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border-bottom: 0;
  z-index: 9999;
  border-bottom: 0;
}
.open-button:hover {
  border-bottom: 0;
}
.open-button span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.open-button.open span {
  background: white;
}
.open-button span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}
.open-button span:nth-child(2) {
  top: 10px;
  transform-origin: left center;
}
.open-button span:nth-child(3) {
  top: 20px;
  transform-origin: left center;
}
.open-button.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -10px;
  left: 8px;
}
.open-button.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.open-button.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
  left: 8px;
}
.lock-scroll {
  overflow: hidden;
}
.bg-container,
.mobile-bg-container {
  background-image: linear-gradient(60deg, #2aace2, #d7df26, #f68b20, #ec1d42);
  background-size: 200% 200%;
  height: 8px;
  animation: bgAnimatedGradient 5s infinite linear;
}
@keyframes bgAnimatedGradient {
  0% {
    background-position: 0 80%;
  }
  50% {
    background-position: 100% 20%;
  }
  100% {
    background-position: 0 80%;
  }
}
.mobile-header,
.mobile-bg-container {
  display: none;
  width: -webkit-fill-available;
}
/******************************/
/**GRID**/
/******************************/
.grid {
  display: grid;
  column-gap: 10px;
  row-gap: 10px;
}
.form-group-input-2 {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.form-group-input-3 {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}
.form-group-input-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}
.form-group-input-6 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
}
.form-group-input-7 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
}
/**************************/
/* FOOTER */
/**************************/
.footer {
  background-color: var(--black);
  position: relative;
  padding: 5.8rem 0;
  width:100%;
}
#footer-t {
  position: absolute;
  top: 0;
  left: 0;
}
#footer-b {
  position: absolute;
  bottom: 0;
  right: 0;
}
.grid--footer {
  grid-template-columns: 1.5fr 1fr;
  color: #fff;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.time {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}
.flex-foot {
  display: flex;
  flex-direction: column;
  gap: 9.6rem;
}
.footer-heading,
.footer-heading span {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  display: block;
}
#signup {
  border: 2px solid #fff;
  border-radius: 10px;
  background: transparent;
  font-size: 1.3rem;
}
.logo-col {
  display: flex;
  gap: 2rem;
}
.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}
.footer-link .social-icon {
  font-size: 3rem;
}
.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.8rem;
  color: #fff;
  transition: all 0.3s;
}
.footer-link:hover,
.footer-link:active {
  color: #c5c5c5ee;
}
.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
  margin-top: auto;
  text-align: end;
}
/******************************/
/**MODAL**/
/******************************/
.bel-modal {
  position: absolute;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.bel-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 20%);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.bel-modal-wrapper {
  position: absolute;
  padding: 10px;
  z-index: 9999;
  top: 14em;
  left: 46%;
  width: 54em;
  margin-left: -16em;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
  border-radius: 20px;
  height: 900px;
  overflow-y: auto;
}
.modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}
.bel-modal.is-open {
  visibility: visible;
}
.bel-modal.is-open .bel-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.bel-modal.is-open .modal-transition {
  transform: translateY(0);
  opacity: 1;
}
.close-bel-modal i {
  font-size: 3em;
  color: red;
}
/******************************/
/**TEXT FONTS**/
/******************************/
@font-face {
  font-family: "bebas";
  src: url("../fonts/text/BebasNeue-Regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: "bunny";
  src: url("../fonts/text/bunny.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "charlotte";
  src: url("../fonts/text/charlotte.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "christmas";
  src: url("../fonts/text/Christmas Handmade.otf");
  font-weight: 400;
}
@font-face {
  font-family: "peach";
  src: url("../fonts/text/Cream Peach.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "dancing";
  src: url("../fonts/text/DancingScript-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "bubble";
  src: url("../fonts/text/Double_Bubble_shadow.otf");
  font-weight: 400;
}
@font-face {
  font-family: "harabara";
  src: url("../fonts/text/Harabara.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "honey";
  src: url("../fonts/text/Honey.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "montserrat";
  src: url("../fonts/text/Montserrat-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "overthinking";
  src: url("../fonts/text/Overthinking.otf");
  font-weight: 400;
}
@font-face {
  font-family: "pacifico";
  src: url("../fonts/text/Pacifico.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "quotes";
  src: url("../fonts/text/Quotes.otf");
  font-weight: 400;
}
@font-face {
  font-family: "remachine";
  src: url("../fonts/text/Remachine.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "sacramento";
  src: url("../fonts/text/Sacramento.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "sans";
  src: url("../fonts/text/Sans.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "saturday";
  src: url("../fonts/text/Saturday.otf");
  font-weight: 400;
}
@font-face {
  font-family: "southern";
  src: url("../fonts/text/Southern.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "stainy";
  src: url("../fonts/text/Stainy.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "ubuntu";
  src: url("../fonts/text/Ubuntu.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "yellowtail";
  src: url("../fonts/text/Yellowtail.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "designer";
  src: url("../fonts/text/Designer.otf");
  font-weight: 400;
}
@font-face {
  font-family: "astonpoliz";
  src: url("../fonts/text/Astonpoliz.otf");
  font-weight: 400;
}
@font-face {
  font-family: "dosis";
  src: url("../fonts/text/Dosis.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "dunkin";
  src: url("../fonts/text/Dunkin.otf");
  font-weight: 400;
}
@font-face {
  font-family: "farmhouse";
  src: url("../fonts/text/Farmhouse.otf");
  font-weight: 400;
}
@font-face {
  font-family: "grill";
  src: url("../fonts/text/Grill.otf");
  font-weight: 400;
}
@font-face {
  font-family: "handuk";
  src: url("../fonts/text/Handuk.otf");
  font-weight: 400;
}
@font-face {
  font-family: "kitchen";
  src: url("../fonts/text/Kitchen.otf");
  font-weight: 400;
}
@font-face {
  font-family: "nolita";
  src: url("../fonts/text/Nolita.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "quicksand";
  src: url("../fonts/text/Quicksand.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "sassy";
  src: url("../fonts/text/Sassy.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "summer";
  src: url("../fonts/text/Summer.otf");
  font-weight: 400;
}
@font-face {
  font-family: "yummy";
  src: url("../fonts/text/Yummy.ttf");
  font-weight: 400;
}
/********************************/
/**********PAGINATION************/
/********************************/
.navigationPagiation {
  display: flex;
  justify-content: center;
}
.page-item {
  font-size: 1.4rem;
}
