:root {
  --primary: #002245;
  --background: #ebebe8;
  --border: #d4d4d4;
  --button-light: #d9f0ff;
  --button: #1414d2;
  --button-dark: #0b0b77;
  --light: #999999;
  --dark: #161616;
  --span: #6db7f7;
}

.primary {
  color: var(--primary);
}

.light {
  color: var(--light);
  font-weight: 300 !important;
}

.blight {
  color: var(--button-light);
}

.button {
  color: var(--button-dark);
}

.bg-primary {
  background-color: var(--primary) !important;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--button-dark);
  color: white;
}

/* Scrollbar width */
/* ::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--button);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--button-dark);
} */

.center {
  text-align: center;
}

.button {
  color: var(--button);
}

.w-full,
.w100 {
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Source Sans Pro", Arial, sans-serif;
}

/* summary, */
h1,
h2,
h3,
b {
  font-weight: 700;
  line-height: 1.2;
}

h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.5;
}

i,
p,
li,
label,
input,
textarea,
select,
option {
  list-style: none;
  font-weight: 500;
  line-height: 1.5;
}

option:checked {
  background: var(--background);
}

details {
  border: 3px solid var(--primary);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3 ease;
  cursor: pointer;
}

details:hover {
  background-color: var(--backgrounds);
}

details[open] {
  background-color: var(--background);
}

summary {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

summary::marker {
  content: "";
}

summary::before {
  content: "▸";
  margin-right: 8px;
  transition: 0.2s;
}

details[open] summary::before {
  content: "▾";
}

span {
  color: var(--button);
}

input,
textarea,
select {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--dark);
  background: none;
}

input[type="range"],
input[type="checkbox"] {
  accent-color: var(--button);
  height: auto;
  cursor: pointer;
}

input:focus,
textarea:focus,
select:focus {
  outline: 1px solid var(--button);
}

input[type="range"]:focus,
input[type="checkbox"]:focus {
  outline: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  line-height: 0;
}

a:hover {
  color: var(--span);
  text-decoration: underline;
  text-underline-offset: 3px;
}

img {
  width: 100%;
}

hr {
  border: none;
  height: 1px;
  background-color: var(--dark);
}

form {
  /* border: 3px solid var(--primary); */
  /* border-radius: 5px; */
  padding: 30px 20px;
  width: 100%;
  background-color: white;
  color: var(--dark);
}

.form-error {
  color: red;
}

.form-success {
  color: var(--button-dark);
}

.small {
  font-size: 13px;
  font-weight: 450;
}

.smallest {
  font-size: 11px;
  font-weight: 500;
}

.gap0 {
  gap: 0 !important;
}

.gap40 {
  gap: 40px !important;
}

.flex {
  display: flex;
  gap: 20px;
}

.flex-center {
  display: flex;
  align-items: center;
  gap: 20px;
}

.flex-center-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.flex-col-center-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.flex1 {
  flex: 1;
}

.flex2 {
  flex: 2;
}

.flex3 {
  flex: 3;
}

.fa-circle {
  color: rgb(0, 168, 0);
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 60px 110px;
}

.container.lg {
  padding: 30px 110px;
}

.container.md {
  padding: 18px 110px;
}

.container.sm {
  padding: 12px 110px;
}

.btn {
  padding: 12px 25px;
  border: 2px solid var(--button);
  border-radius: 20px;
  background: var(--button);
  color: white;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--button-dark);
  border: 2px solid var(--button-dark);
}

.btn.hollow {
  background: none;
  color: var(--button);
}

.btn.hollow:hover {
  color: var(--button-dark);
  background: none;
}

.btn-left img {
  width: 40px;
  border-radius: 50%;
}

.btn-right b {
  color: var(--button);
  font-weight: 700;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.ml10 {
  margin-left: 10px;
}

.hamburger-open,
.hamburger-close {
  display: none;
  position: fixed;
  right: 10px;
  top: 5px;
  z-index: 99999999;
  color: var(--button);
  font-size: 40px;
  transition: transform 0.3s ease;
}

/* initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(-55px);
  transition: all 0.6s ease;
}

.reveal-anti {
  opacity: 0;
  transform: translateY(55px);
  transition: all 0.6s ease;
}

/* when visible */
.reveal.active,
.reveal-anti.active {
  opacity: 1;
  transform: translateY(0);
}

.nav-top {
  background-color: var(--primary);
  justify-content: space-between;
}

body {
  color: var(--dark);
  background: white;
  padding-bottom: 0;
}

/* Navbar  */
.nav {
  z-index: 999;
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
}

/* .nav.active {
  width: calc(100% - 200px);
  background-color: var(--background);
} */

.nav-inner {
  justify-content: space-between;
  transition: transform 0.9s ease;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
}

.nav-left img {
  width: 47px;
}

.nav-left ul {
  gap: 25px;
}

.nav-left ul li {
  font-weight: 650;
}

.nav-left ul li::after {
  content: "⌵";
  margin-left: 5px;
}

/* footer */
.footer {
  background-color: black;
  color: white;
}

.footer .btn {
  background-color: white;
}

.footer-top {
  justify-content: space-between;
}

.footer-center span {
  padding: 5px 10px;
  display: inline-block;
  color: var(--span);
}

.footer-bottom {
  justify-content: space-between;
}

.footer-bottom img {
  width: 150px;
}

.call-btn {
  display: none;
}

/* Mobile and Tablets (1023px) */
@media (max-width: 900px) {
  body {
    font-size: 13px;
    padding: 0px;
  }

  .container {
    padding: 20px 10px !important;
  }

  .container.sm,
  .container.md {
    padding: 10px !important;
  }

  .grid2,
  .grid3,
  .grid4 {
    grid-template-columns: repeat(1, 1fr);
  }

  .flex,
  .flex-center,
  .flex-center-center {
    flex-direction: column;
  }

  .flex1,
  .flex2,
  .flex3 {
    flex: none;
  }

  .btn,
  .btn-hollow {
    width: 100%;
    flex-direction: row;
  }

  h1 {
    font-size: 23px;
  }

  h3 {
    font-size: 20px;
  }

  .hamburger-open {
    display: block;
  }

  summary {
    font-size: 15px;
  }

  form {
    padding: 20px;
  }
  /* Navbar  */
  .nav {
    z-index: 999;
    position: fixed;
    width: 100%;
  }

  .nav-top {
    gap: 0px;
    text-align: center;
  }

  .nav-inner {
    height: 60px;
    overflow: hidden;
    align-items: start;
  }

  .nav-left img {
    width: 40px;
  }

  .nav-center,
  .nav-center2 {
    text-align: center;
    margin: 10px auto;
  }

  .nav-inner .nav-center li {
    margin-right: 0;
  }

  .nav-right {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }

  .nav-left ul {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  .nav-left {
    align-items: start;
    width: 100%;
  }

  .nav-left i {
    font-size: 35px;
    margin-top: 28px;
  }

  .nav-left h2 {
    margin-top: 20px;
  }

  /* Footer  */
  .footer-top ul {
    flex-direction: row;
  }

  .footer-center span {
    font-size: 11px;
  }

  .extra {
    display: none;
  }

  .timeline::after {
    width: 0px;
  }

  .timeline .left::before,
  .timeline .right::before {
    display: none;
  }

  input[type="checkbox"],
  input[type="radio"] {
    width: auto !important;
  }

  .call-btn{
    background-color: var(--button);
    color: white;
    padding: 10px;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    bottom: 0 ;
    z-index: 9999999999999;
    width: 100%;
  }
}
