@font-face {font-family: Alexandria;src: url(./font/Alexandria.woff2);font-display: swap;}

/* Reset & Global */
* {box-sizing: border-box;margin: 0;padding: 0;font-family: Alexandria, Arial;font-weight: 275;font-size: 14px;transition: 0.4s;scroll-behavior: smooth;color: #0E0E0E; text-decoration: none; list-style: none;}
*::-webkit-scrollbar {display: none;}
body {position: relative;background-color: #FAFAFA;}

/* Generic */
.hide {
  display: none !important;
}

.toAnimate {
  opacity: 0;
  transform: translateX(-5%);
}

.animationOn {
  opacity: 1;
  transform: translateX(0%);
}

.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  background-color: #DBDBDB;
  width: fit-content;
  border-radius: 999px;
  gap: 7px;
  color: #545454;
  font-weight: 350;
  position: relative;
  overflow: hidden;
}

.cta_form {
  background-color: #3345E5;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 110%;
  border-radius: 120%;
}

.cta_text {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta_title {
  font-weight: 350;
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
}

.cta_main {
  display: inline-flex;
  color: #545454;
}

.cta_duplicate {
  position: absolute;
  width: fit-content;
  top: 120%;
  color: #FAFAFA;
  display: flex;
}

.cta:hover .cta_form {
  top: 0%;
  border-radius: 0;
}

.cta:hover .cta_main {
  transform: translateY(-20px);
  opacity: 0;
}

.cta:hover .cta_duplicate {
  top: 0%;
}

.ctablue {
  background-color: #3345E5;
}

.ctablue .cta_main {
  color: #FAFAFA;
}

.ctablue .cta_form {
  background-color: #1827AD;
}

.ctawhite {
  background-color: #FAFAFA;
}

.cta.ctawhite .cta_main, .cta.ctawhite .cta_duplicate {
  color: #3345E5;
}

.cta.ctawhite .cta_main svg path, .cta.ctawhite .cta_duplicate svg path {
  fill: #3345E5;
}

.ctawhite .cta_form {
  background-color: #FAFAFA;
}

.ctaouline {
  background-color: transparent;
  border: 1px solid #616161;
}

.ctaouline:hover {
  border: 1px solid #3345E5;
}

.ctaouline:hover .cta_duplicate {
  color: #3345E5;
}

.ctaouline.ctaoulinewhite {
  border-color: #FAFAFA;
}

.ctaouline.ctaoulinewhite:hover .cta_duplicate {
  color: #FAFAFA;
}

.title {
  font-size: 40px;
  margin-bottom: 35px;
  line-height: 110%;
}

.title span {
  line-height: 110%;
}

.title strong {
  font-size: 40px;
  font-weight: 500;
  color: #3345E5;
}

.description {
  color: #616161;
  margin-bottom: 35px;
  font-weight: 225;
  font-size: 16px;
}

.description strong {
  font-weight: 225;
  font-size: 16px;
}

/* Block */
.navigation {
  width: fit-content;
  left: calc(50% - 168.545px);
  position: fixed;
  padding-bottom: 20px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transform: scale(0.8) translateY(50px);
  opacity: 0;
  z-index: 99;
}

.navigation.show {
  pointer-events: all;
  transform: scale(1) translateY(0px);
  opacity: 1;
}

.navigation_content {
  background-color: rgba(62, 62, 62, 0.75);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 14px 20px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.navigation .scrollTop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14px;
  cursor: pointer;
}

.navigation a {
  color: #BFBFBF;
}

.navigation *:hover, .navigation *:hover svg path {
  color: #FAFAFA;
  fill: #FAFAFA;
}