html {
  color: #000;
  /*background: #FFF;*/
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  font-size: 100%;
}

legend {
  color: #000;
}

:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1;
  /* fix for Chrome */
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
  }
}

.nav {
  display: flex;
  height: 77px;
  padding: 0 32px;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 9;
}
.header-container{
  border: 1px solid #000;
}


.nav.drop {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #dbdbdb88;
    /* -webkit-animation: fadeIn linear 3s forwards; */
    /* animation: fadeIn linear 3s forwards; */
    -webkit-animation: fadeInLight linear 3s forwards;
    animation: fadeInLight linear 3s forwards;
}

.nav.drop-light {
  backdrop-filter: blur(0px);
  /* border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #dbdbdb88; */
  background-color: transparent;
  -webkit-animation: fadeInLight linear 3s forwards;
  animation: fadeInLight linear 3s forwards;
}

.nav .nav-links {
  width: 260px;
  display: flex;
  justify-content: space-between;
}

.nav img {
  height: 36px;
}

.nav a {
  text-decoration: unset;
  font-weight: 500;
  color: #000;
}

.nav.ghost a {
  color: #FFF;
}

.nav .contact-btn {
  height: 32px;
  width: 86px;
  border-radius: 100px;
  text-align: center;
  background-color: #459ADF;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 32px
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999999;
  padding: 24px 32px;
}

footer .footer-terms a {
  color: #999;
  text-decoration: none;
  font-weight: 500;
}

footer .footer-terms a:first-child {
  margin-right: 32px
}

@media (max-width: 580px) {
  .nav {
    padding: 0 12px;
    height: 38px;
  }

  .nav .contact-btn {
    height: 16px;
    width: 43px;
    font-size: 7px;
    line-height: 16px;
  }

  .nav img {
    height: 24px;
  }

  .nav .nav-links {
    display: flex !important;
    font-size: 10px !important;
    width: 40% !important;
    justify-content: space-between;
  }

  footer {
    font-size: 12px;
    padding: 12px;
  }

  footer .footer-terms a:first-child {
    margin-right: 5px
  }
}

@keyframes linearGradient {
  0% {
    background: linear-gradient(269.19deg, #019CE5 7.56%, #1E20A5 57.77%, #601882 88.43%);
  }

  100% {
    background: linear-gradient(269.19deg, color(display-p3 0.271 0.604 0.875) 7.56%, color(display-p3 0.118 0.125 0.620) 57.77%, color(display-p3 0.345 0.118 0.490) 88.43%);
  }
}

@keyframes fadeIn {
  0% {
    border-bottom-width: 0;
    backdrop-filter: none
  }

  100% {
    border-bottom-width: '1px';
    backdrop-filter: blur(20px)
  }
}

@keyframes fadeInLight {
  0% {
    border-bottom-width: 0;
    backdrop-filter: none;
    background-color: transparent
  }

  100% {
    border-bottom-width: '1px';
    backdrop-filter: blur(20px);
    background-color: #33333352
  }
}