@font-face {
  font-family: "EudoxusSans-Regular";
  src: url("fonts/EUDOXUS/EudoxusSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "EudoxusSans-ExtraLight";
  src: url("fonts/EUDOXUS/EudoxusSans-ExtraLight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
h1 {
  font-size: 40px;
  line-height: 70px;
  color: #000000;
  font-weight: 400;
}
@media screen and (max-width: 1800px) {
  h1 {
    font-size: 25px;
    line-height: 55px;
  }
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 17px;
    line-height: 42px;
  }
}
@media screen and (max-width: 576px) {
  h1 {
    font-size: 15px;
    line-height: 27px;
  }
}

h2 {
  font-size: 30px;
  line-height: 42px;
  color: #000000;
  font-weight: 400;
}
@media screen and (max-width: 1800px) {
  h2 {
    font-size: 25px;
    line-height: 55px;
  }
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 26px;
    line-height: 50px;
  }
}
@media screen and (max-width: 576px) {
  h2 {
    font-size: 18px;
    line-height: 37px;
  }
}

h3 {
  font-size: 40px;
  line-height: 46px;
  color: #000000;
  font-weight: 400;
}
@media screen and (max-width: 1800px) {
  h3 {
    font-size: 28px;
    line-height: 40px;
  }
}
@media screen and (max-width: 1800px) {
  h3 {
    font-size: 25px;
    line-height: 30px;
  }
}

h4 {
  font-size: 25px;
  line-height: 29px;
  color: #000000;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  h4 {
    font-size: 20px;
    line-height: 28px;
  }
}

h5 {
  font-size: 20px;
  line-height: 32px;
  color: #000000;
  font-weight: 400;
}
@media screen and (max-width: 576px) {
  h5 {
    font-size: 18px;
    line-height: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 23px;
  color: #000000;
  font-weight: 400;
}
@media screen and (max-width: 1800px) {
  h6 {
    font-size: 16px;
    line-height: 16px;
  }
}
@media screen and (max-width: 1200px) {
  h6 {
    font-size: 13px;
    line-height: 16px;
  }
}
@media screen and (max-width: 576px) {
  h6 {
    font-size: 14px;
    line-height: 16px;
  }
}

p {
  font-size: 20px;
  line-height: 32px;
  color: #464646;
  font-weight: 300;
  font-family: "EudoxusSans-ExtraLight";
}
@media screen and (max-width: 1800px) {
  p {
    font-size: 17px;
    line-height: 26px;
  }
}
@media screen and (max-width: 1200px) {
  p {
    font-size: 14px;
    line-height: 21px;
  }
}
@media screen and (max-width: 992px) {
  p {
    font-size: 13px;
    line-height: 21px;
  }
}

a {
  text-decoration: none;
  font-size: 20px;
  line-height: 41px;
  font-weight: 300;
  color: #FBFBFB;
  font-family: "EudoxusSans-ExtraLight";
}
@media screen and (max-width: 1800px) {
  a {
    font-size: 17px;
  }
}
@media screen and (max-width: 1200px) {
  a {
    font-size: 13px;
    line-height: 21px;
  }
}

li {
  list-style: none;
}

.header-logo {
  text-align: center;
}

.header {
  position: relative;
  z-index: 2;
  padding-block: 30px;
  -webkit-animation: fadeIn 0.5s ease-in-out both;
          animation: fadeIn 0.5s ease-in-out both;
}

@media screen and (max-width: 1800px) {
  img.logo {
    max-width: 300px;
  }
}
@media screen and (max-width: 576px) {
  img.logo {
    max-width: 220px;
  }
}

.logo--scroll {
  display: none;
}

.header.active {
  background: #C4C4C4;
  padding-block: 30px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1800px) {
  .header.active {
    padding-block: 18px;
  }
}
.header.active .logo--scroll {
  display: block;
}
.header.active .logo {
  display: none;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}