/* =========================
   RESET
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* =========================
   ROOT VARIABLES
========================= */

:root {
  --header-shrink: 0.9;

  --site-max-width: 1300px;

  --bg-color: #ffffff;
  --bg-gradient: linear-gradient(135deg, #100794, #0e001b);
  --bg-image: url('../../assets/images/desktop.webp');

  --color-text: #444444;
  --color-muted: #6e6e6e;

  --color-primary: #170da0;
  --color-secondary: #2a0061;

  --color-highlight: #00ffbf;

  --color-border: #bebebe;

  --font-main: "Nunito Sans", sans-serif;

  --block-space: 100px;
}

/* =========================
   BASE
========================= */

.mobile {
  display: none;
}

body {
  font-family: var(--font-main);
  font-size: 14px;
}

/* Width container (no vertical spacing here) */
.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0;
  max-height: 100%;
}

.hero {
    position: relative;
  margin-top: -125px;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 25px;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.minhero { 
      position: relative;
  margin-top: -125px;
  background-image: url('../../assets/images/daa.jpeg');
    height: 12vh;
      display: flex;
      width: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}


.frozen {
  display: flex;
  height: 100%;
  width: 100%;
    background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.25) 25%,
    rgba(0, 0, 0, 0) 40%
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 0;

  transform: scale(1);
  animation: heroZoom 10s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* how much it zooms */
  }
}


.row {
  display: flex;
  flex-direction: row;
  max-height: 100%;
}

@media screen and (min-width: 599px) {
  .row {
    width: 100%;
  }

}

@media (max-width: 599px) {
  .row {
    flex-wrap: wrap;
  }
  img {
    border-radius: 0%!important;
  }
  .container {
    padding: 10px;
  }
  h1 {
    line-height: 60px;
  }
}

/* Mobile: < 600px */
@media (max-width: 599px) {
  :root {
    --bg-image: url('../../assets/images/mobile.webp');
  }
}

.col {
  max-height: 100%;
  display: flex;
  flex-direction: column;
}

/* main axis */

.left {
  justify-content: flex-start;
}

.center {
  justify-content: center;
}

.right {
  justify-content: flex-end;
}

.between {
  justify-content: space-between;
}

.around {
  justify-content: space-around;
}

/* cross axis */

.top {
  align-items: flex-start;
}

.middle {
  align-items: center;
}

.bottom {
  align-items: flex-end;
}

.stickdown {
  margin-top: 100%;
}

.short {
  width: 200px !important;
}

.martop {
  margin-top: 20px !important;
}

.marbot {
  margin-bottom: 20px !important;
}

.section {
  margin-bottom: 100px;
}

.padding {
  padding: 20px;
}

.title {
  padding-top: 20px;
  padding-bottom: 20px;
}

.gap {
  gap: 30px !important;
}

.sgap {
  gap: 10px;
}

.wrap { 
  flex-wrap: wrap;
}

/* =========================
   TYPOGRAPHY
========================= */

h1 {
  font-size: 3rem;
  margin: 0;
}

h2 {
  font-size: 2.5rem;
  margin: 0;
}

h3 {
  font-size: 1.5rem;
  margin: 0;
}

h4 {
  font-size: 1rem;
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  margin: 0;
  color: inherit;
  cursor: pointer;
  transition: transform 0.1s ease-in-out;
}

a:hover {
  opacity: 0.8;
}



a img {
  transition: transform 0.2s ease-in-out;
}

a:hover img {
  transform: scale(1.1);
}

a:hover #logo{
    transform: scale(1);
}

a.active {
  font-weight: 800;
}

/* =========================
   ICONS EMBLEM LOGO
========================= */

.minicons {
  height: 20px;
  margin-bottom: -5px;
  transition: opacity .2s ease, transform .15s ease;
  cursor: pointer;
}

.icons {
  height: 25px;
  transition: opacity .2s ease, transform .15s ease;
  cursor: pointer;
}

.bigicons {
  height: 30px;
  margin-right: 10px;
  transition: opacity .2s ease, transform .15s ease;
  cursor: pointer;
}

.logo {
  margin-right: auto;
  margin-left: 20px;
}

#logo {
  height: 60px;

}

#offlogo{
    height: 60px;
}

.navlink {
  font-size: 18px;
  font-weight: 500;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

/* =========================
   FORMS
========================= */

input,
select,
textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 10px;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0px;
  height: 40px;
  width: 100%;
  outline: none;
}

input::placeholder {
  color: #b1b1b1;
}

input[type=checkbox] {
  height: 15px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #cccccc;
  /* neutral, not opinionated */
}

.search {
  color: #fff;
  padding-right: 15px;
  padding-left: 40px;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background-color: transparent;
  max-width: 300px;
}

.divider {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

/* =========================
   HEADER
========================= */

.topbar {

  padding-top: 2px;
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  height: 30px;
  font-size: 12px;
  font-weight: 200;
  z-index: 3;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: transparent;
}

.header.header--scrolled {
  /* From https://css.glass */
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.header.header--scrolled .navbar {
  height: calc(90px * var(--header-shrink));
}

.header.header--scrolled #logo {
  height: calc(60px * var(--header-shrink));
}

.header.header--scrolled .icons {
  height: 23px;
}

.header.header--scrolled .minicons {
  height: 18px;
}



.navbar {
  display: flex;
  align-items: center;
  background-color: #ffffff00;
  height: 90px;
}


/* =========================
   Footer
========================= */

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
  color: var(--color-text);
}

.footer .col {
  gap: 10px;
}

.copyright {
  display: flex;
  align-items: center;
  background-color: #000;
  color: #e5e5e5;
  height: 30px;
  font-size: 12px;
}

.canvas {
  max-height: 100%;
  max-width: 400px;
}

#secure {
  height: 80px;
  margin-top: 20px;
}

#apple {
  height: 40px;
  margin-top: 20px;
}

#android {
    margin-top: 20px;
  height: 40px;
}

/* =========================
   Modal Mobile Menu Hamburger
========================= */


.modal {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(17.3px);
    -webkit-backdrop-filter: blur(17.3px);
    padding: 20px;
    overflow-y: auto;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}


.button4 {
  width: 100%;
  height: 40px;
  position: relative;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  color: #ffffff;
  overflow: hidden;
  transition: transform 0.1s ease-in-out;
}

.button4 .minicons {
  margin-bottom: 2px;
  margin-right: 10px;
}

.button4 span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
  display: inline-flex;
  align-items: center;
  padding: 5px;
}

.button4::before,
.button4::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.button4::before {
  content: "";
  background: #000;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.button4:hover::before {
  transform: translate3d(100%, 0, 0);

}

.button4:hover {
  transform: scale(0.95);
}

.button4:active {
  transform: scale(0.95);
}

.tabs {
  font-weight: 600;
  color: #541081;
}

/* Mobile: < 600px */
@media (max-width: 1310px) {

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
    margin-right: 20px;
  }

}

.g_id_signin {
  margin-left: -10px;
  width: 100%;
}

.form-error {
  display: block;
  color: #e53935;
  font-size: 0.85rem;
  margin-top: 6px;
  min-height: 18px;
}

.password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrap input {
  width: 100%;
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 0.7;
}

.toggle-password:hover {
  opacity: 1;
}

.close-modal {
  transition: transform 0.3s ease;
}

.close-modal:hover {
  transform: rotate(90deg);
}

.remove-modal {
  transition: transform 0.3s ease;
}

.remove-modal:hover {
  transform: rotate(180deg);
}

