@import url('./font.css');

:root{
    --primary-background: #F6FBFA;
    --primary-color: #053C7F;
    --primary-text-color: #61738a;
    --primary-light-color: #0653b0;
    --primary-dark-color: #043066;
    --primary-foreground: #D9E8E1;
    --highlight-color: #32D3AC;
    --highlight-light-color: #71e1c5;
    --highlight-dark-color: #186a56;
    --border-color: #D6DADE;
    --white: #fff;
    --gray: #718394;
    --cream: #FFFDF9;

    --font-size-base: 15px;
    --typographic-ratio: 1.618;
    --font-size-md: calc(var(--font-size-base) * var(--typographic-ratio));
    --font-size-lg: calc(var(--font-size-md) * var(--typographic-ratio));
    --font-size-xlg: calc(var(--font-size-lg) * var(--typographic-ratio));
}
*{
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
html {
    font-size: 16px;
    overflow-y: scroll;
    scroll-behavior: unset !important;
}
body, ul{
    margin: 0;
    padding: 0;
}
body{
    background-color: var(--primary-background);
    color: var(--primary-color);
    font-family: 'AdobeClean-Regular', sans;
    overflow-x: clip;
    line-height: 1.2;
    font-weight: 400;
}
img{
    max-width: 100%;
    max-height: 100%;
    transform: translate3d(0, 0, 1px);
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: var(--primary-color);
}
p{
    margin: 0;
}
mark, mark span[style]{
    background-color: transparent;
    color: var(--highlight-color);
    padding: 0 !important;
}
.invert mark{
    color: var(--primary-color);
}

@keyframes button-hover {
  0% {
    transform: scale(1);
  }
  12.5% {
    transform: scale(0.95) rotate(1deg);
  }
  25% {
    transform: scale(0.95) rotate(-2deg);
  }
  80% {
    transform: scale(1) rotate(1deg);
  }
  85% {
    transform: scale(1.1) rotate(3deg);
  }
  90%{
    transform: scale(1.1) rotate(-2deg);
  }
  100% {
    transform: scale(1.1) rotate(0deg);
  }
}

.fs-base {
  font-size: clamp(
    calc(1px * var(--base-font-size-min)),
    calc(var(--base-font-size) * 100vw / var(--base-screen-size)),
    calc(1px * var(--base-font-size-max)),
  )
}
.fs-md {
  font-size: calc(var(--font-size-base) * var(--typographic-ratio))
}
.fs-lg {
  font-size: calc(var(--font-size-md) * var(--typographic-ratio))
}



/* Header */

header{
    width: 100%;
    position: fixed;
    z-index: 1000;
    height: 60px;
    box-sizing: content-box;
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid rgba(39, 165, 157, 0.2);
    transition: 800ms all cubic-bezier(.645,.045,.355,1), 0ms border ease-out 800ms, 250ms background ease-out, 250ms padding;
}
.header-content{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    width: 100%;
    column-gap: 20px;
    margin: auto;
    border-radius: 40px;
}
header .logo-container,
header .button-container{
    width: 20rem;
}
header .logo-container,
header .logo-img{
    height: 90%;
    display: flex;
    align-items: center;
}
header .logo-img{
    width: fit-content;
    display: flex;
    align-items: center;
}
header .logo-img .logo-icon{
    height: 100%;
    width: 60px;
    display: flex;
    align-items: center;
    transition: 800ms all cubic-bezier(.645,.045,.355,1), 400ms opacity cubic-bezier(.645,.045,.355,1) 200ms;
}
header .logo-img img{
    display: block;
}
header ul{
    margin: 0 auto;
}
header ul,
header .button-container{
    display: flex;
    font-weight: bold;
    height: fit-content;
    align-items: center;
}
header .button-container{
    display: flex;
    justify-content: end;
    gap: 10px;
}
.header-nav-item{
    position: relative;
}
.header-nav-item > a{
    display: block;
    font-size: 1rem;
    padding: 7px 10px;
    border-radius: 7px;
}
.header-nav-item.activate_hover:hover{
    padding: 100px 0;
}
header.active .header-nav-item:hover > a,
header.active:not(:has(.header-nav-item:hover)) .header-nav-item > a.current{
    color: var(--primary-color) !important;
}
header.active:not(:has(.header-nav-item:hover)) .header-nav-item > a.current{
    transition-delay: 250ms !important;
}
header.active{
    margin: 0 calc((100% - 90rem) / 2);
    width: 90rem;
    height: 60px;
    justify-content: center;
    gap: 30px;
    border-color: transparent;
    transition: 800ms all cubic-bezier(.645,.045,.355,1), 0ms border ease-out 0ms, 250ms background ease-out, 250ms padding;
}
header.active .header-content{
    padding: 15px 12px 15px 15px;
    background-color: var(--primary-color);
    transition: 250ms background ease-out, 250ms padding;
}
header .logo-img .active-icon,
header .logo-img .deactive-icon{
    transition: 250ms opacity;
}
header:has(.header-nav-item.active) .logo-img img:last-child,
header.active .logo-img img:last-child{
    filter: brightness(0%) invert(100%);
}
header .logo-img .active-icon,
header:has(.header-nav-item.active):not(.active) .logo-img .deactive-icon{
    height: 100%;
    width: 100%;
    opacity: 1;
    margin-right: 20px;
}
header.active .logo-img .logo-icon,
header:has(.header-nav-item.active) .logo-img .active-icon,
header:not(:has(.header-nav-item.active)) .logo-img .deactive-icon{
    height: 0;
    width: 0;
    opacity: 0;
    margin-right: 0;
}
header:has(.header-nav-item.active) .header-nav-item a,
header.active .header-nav-item a{
    color: var(--white);
}
header.active .button-container .border-button{
    background-color: var(--white);
}
header.active .border-button:hover{
    color: var(--primary-color) !important;
    background-color: var(--border-color);
}
header.active .border-button svg path{
    stroke: var(--primary-color) !important;
}



/* Header Nav Menu */


header:has(.header-nav-item.active):not(.active) .fill-button{
    color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 5px 20px -7px var(--white);
}
header:has(.header-nav-item.active):not(.active){
    top: 0;
    padding: 10px 0;
    background-color: var(--highlight-color);
    transition: 0ms all, 100ms border ease-out, 250ms background ease-out;
}
.header-nav-menu-wrapper{
    left: 50%;
    position: fixed;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--white);
    box-shadow: 0 2px 8px -3px #053C7F;
    border-radius: 5px;
    width: fit-content;
    top: 96px;
    border-radius: 30px;
    pointer-events: none;
    opacity: 0;
    overflow: hidden;
    transition: 350ms all cubic-bezier(.83,.18,.08,.86);
    opacity: 0;
    /*! transition: 100ms all cubic-bezier(.645,.045,.355,1) */
}
header:has(.header-nav-item.active) .header-nav-menu-wrapper{
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
header.active .header-nav-menu-wrapper{
    top: 85px;
    background-color: var(--primary-color);
}
.header-nav-item.active .header-nav-menu-wrapper{
    opacity: 1;
    pointer-events: unset;
}
.header-nav-menu{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    transition: 250ms all cubic-bezier(.83,.18,.08,.86) 150ms;
    opacity: 0;
}
header:has(.header-nav-item.active) .header-nav-menu{
    opacity: 1;
}
.header-nav-menu .router-side{
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 15px;
}
.header-nav-menu .router-side-title{
    margin-top: 1rem;
    margin-bottom: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}
header.active .header-nav-menu .router-side-title{
    color: var(--white);
}
.header-nav-menu .router-items{
    height: fit-content;
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0;
    align-items: end;
}
.header-nav-menu .router-item{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    padding: 15px 40px 15px 0;
    cursor: pointer;
}
.header-nav-menu .router-item:not(.router-item ~ .router-item){
    margin-top: auto;
}
.header-nav-menu .router-item span{
    position: relative;
    display: flex;
    font-size: 1rem;
    width: 100%;
    white-space: nowrap;
    margin: 0;
    padding-right: 34px;
    color: var(--primary-color);
}
header.active .header-nav-menu .router-item span{
    color: var(--white);
}
.header-nav-menu .router-item span:after,
.header-nav-menu .router-item span:before{
    width: 20px;
    height: 20px;
    top: 0;
}
.header-nav-menu .router-item span:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    background: url('../img/icons/chevron-right.svg');
    background-size: 12px 12px;
    box-sizing: border-box;
    background-position: 5px 4px;
    background-repeat: no-repeat;
    filter: brightness(1);
    transition: 375ms transform cubic-bezier(.5,.1,.29,1.44);
    filter: brightness(0) invert(1);
}
.header-nav-menu .router-item:hover span:after,
.header-nav-menu .router-item:hover span:before{
    transform: translateX(5px);
}
header.active .header-nav-menu .router-item span:after{
    filter: brightness(0) saturate(100%) invert(14%) sepia(41%) saturate(4768%) hue-rotate(204deg) brightness(97%) contrast(96%);
}
.header-nav-menu .router-item span:before{
    content: "";
    position: absolute;
    right: 0;
    border-radius: 100%;
    transition: 375ms transform cubic-bezier(.5,.1,.29,1.44), 250ms box-shadow ease-out;
    background-color: var(--primary-color);
}
.header-nav-menu .router-item:hover span:before{
    transition: 375ms transform cubic-bezier(.5,.1,.29,1.44), 250ms box-shadow ease-out 250ms;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1);
}
header.active .header-nav-menu .router-item:hover span:before{
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .2);
}
header.active .header-nav-menu .router-item span:before{
    background-color: var(--highlight-color);
}
.header-nav-menu .image-side{
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 30px;
    transition: 375ms all cubic-bezier(.83,.18,.08,.86);
}
.header-nav-menu .image-item{
    border-radius: 20px;
    width: 250px;
    height: 100%;
    background-color: rgba(0,0,0,.1);
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px;
    overflow: hidden
}
.header-nav-menu .image-item span,
.header-nav-menu .image-item h3{
    position: relative;
    z-index: 1;
    color: var(--white);
    display: block;
    margin: 0;
}
.header-nav-menu .image-item h3{
    width: fit-content;
    border-bottom: 7px solid var(--highlight-color);
}
.header-nav-menu .image-item span{
    font-weight: 400
}
.header-nav-menu .image-item .text-side{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.header-nav-menu .image-item > img,
.header-nav-menu .image-item:after{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.header-nav-menu .image-item .illustration{
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    transform: translateY(25%);
    transition-duration: 250ms;
    transition-delay: 100ms;
    transition-property: transform, opacity;
    transition-timing-function: cubic-bezier(.83,.18,.08,.86);
    opacity: 0;
}
header:has(.header-nav-item.active) .header-nav-menu .illustration{
    transform: translateY(0);
    opacity: 1;
}
.header-nav-menu .image-item:after{
    content: "";
    background-color: var(--primary-color);
    opacity: .5;
}



.section-wrapper{
    padding: 40px;
    position: relative;
}
main .section-wrapper:first-of-type{
    padding-top: 130px !important;
}
.section-content{
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    height: fit-content;
}
.section-content.flex{
    gap: 40px;
}
.section-content.inner{
    max-width: 1280px;
    margin: 0 auto;
    height: fit-content;
}
.title{
    font-size: 4.5rem;
    line-height: 1.1 !important;
    width: 80%;
    font-weight: bold;
    margin: 20px auto;
    color: var(--primary-color);
}
.title{
    display: block;
}
.title h1{
    display: inline;
}
.medium-title{
    line-height: 1.1;
    font-size: 2.5rem;
    width: 100%;
    margin: 0 auto;
    font-weight: bold;
}
.small-title{
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 20px;
}
.section-title{
    font-size: 1.25rem;
}
.title.invert{
    color: var(--white);
}
.title-description{
    display: block;
    margin-top: 20px !important;
    color: var(--primary-color);
    width: 70%;
    font-size: 1.75rem;
    display: block;
    text-align: center;
}
.gray-text{
    font-size: 1rem;
    margin-top: 10px !important;
    color: var(--gray);
}
.flex{
    display: flex;
}
.q-h-q{
    display: flex;
}
.q-h-q > *:first-child,
.q-h-q > *:last-child{
    width: 25%;
}
.q-h-q > *:nth-child(2){
    width: 50%;
}



/* Newspaper */

.newspaper-wrapper{
    padding-bottom: 0 !important;
}
.newspaper{
    border-radius: 40px;
    background-color: var(--primary-foreground);
    padding: 60px 80px;
}
.newspaper .column{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.newspaper input{
    border-radius: 15px;
    background-color: var(--white);
    color: var(--primary-color);
    outline: none;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%;
    margin: 20px 0;
}
.newspaper input::placeholder{
    color: var(--primary-color);
    opacity: .75;
}
.newspaper .disclaimer{
    font-size: .85rem;
    margin-left: 30px;
    width: 60%;
}
.newspaper .button{
    min-width: fit-content;
    margin-left: auto;
}
.newspaper ul{
    margin: 0 auto;
}
.newspaper-img{
    background-color: var(--white);
    height: 100%;
    max-width: 100%;
    aspect-ratio: 10 / 7;
    border-radius: 20px;
    border: 2px dashed var(--primary-color);
    margin-left: auto;
}



/* Newspaper - Illustration */

.newspaper-illustration{
    --monitor-width: 240px;
    --monitor-height: 128px;
    position: relative;
    width: 100%;
    max-width: 390px;
    aspect-ratio: 10 / 7;
    background-color: #b5c8bf;
    border-radius: 20px;
    margin-left: auto;
}
.newspaper-illustration > *{
    position: absolute;
}
.newspaper-illustration .monitor{
    width: var(--monitor-width);
    height: var(--monitor-height);
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(-100%);
}
.newspaper-illustration .text-bubble-big{
    left: calc((100% - var(--monitor-width)) / 2);
    top: calc(100% - var(--monitor-height));
    z-index: 3;
    transform: translate(-20%, -29%)
}
.newspaper-illustration .text-bubble-big .dot-container{
    position: absolute;
    left: 50%;
    gap: 5px;
    top: calc(50% - 6px);
    transform: translate(-50%, -50%)
}
@keyframes textBubbleDotAnim{
    0%{transform: scale(1) translateY(0%)}
    37.5%{transform: scale(1) translateY(-40%);}
    75%{transform: scale(1) translateY(0%);}
}
.newspaper-illustration .text-bubble-big .dot{
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background-color: white;
    animation: 1s textBubbleDotAnim infinite;
    transform-origin: center;
}
.newspaper-illustration .text-bubble-big .dot:nth-child(2){
    animation-delay: .25s !important;
}

.newspaper-illustration .text-bubble-big .dot:nth-child(3){
    animation-delay: .5s !important;
}
.newspaper-illustration .info{
    position: absolute;
    right: 10%;
    bottom: 150px;
    z-index: 3;
    overflow: visible;
    transition: 500ms all cubic-bezier(.83,.18,.08,.86);
}
.newspaper-illustration .info *{
    overflow: visible;
}
.newspaper-illustration .envelope{
    position: absolute;
    bottom: 160px;
    left: 5%;
    z-index: 3;
    transition: 500ms all cubic-bezier(.63,.16,.27,1.49);
}
.newspaper-illustration .envelope:hover{
    transform: translateY(-15px);
}
.newspaper-illustration .envelope .letter{
    transform: translate(-515.6224840446321px,-159.31605266393046px);
    transition: 600ms all cubic-bezier(.63,.16,.27,1.49);
}
.newspaper-illustration .envelope:hover .letter{
    transform: translate(-515.6224840446321px,-162.31605266393046px);
}
.newspaper-illustration .info:hover .back{
    transform: translate(-232.1642px,-115.679367px);
}
.newspaper-illustration .info:hover{
    transform: translate(10px, 5px);
}
.newspaper-illustration .info .back{
    transform: translate(-222.1642px,-110.679367px);
    transition: 500ms all cubic-bezier(.83,.18,.08,.86);
}



/* Nav Button Container */

.nav-button-container{
    display: flex;
    column-gap: 10px;
    margin: 20px 0;
}
.nav-button-container > *{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid var(--primary-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 250ms all ease-in-out;
}
.nav-button-container > *:hover{
    background-color: var(--primary-color);
}
.nav-button-container > * svg{
    transition: 250ms all ease-in-out;
}
.nav-button-container > *:hover svg{
    filter: brightness(0%) invert(100%);
}



/* Footer */

footer{
    gap: 40px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
footer, .footer-router-side .main, media{
    display: flex;   
}
.footer-router-side, .footer-contact-side{
    padding-top: 40px;
    height: fit-content;
}
.footer-router-side{
    width: 100%;
    height: fit-content;
}
.footer-router-side .main{
    padding-bottom: 40px;
}
.footer-router-side .column{
    width: 100%;
    padding: 0 5px;
}
.footer-router-side h3{
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}
.footer-router-side h4{
    margin: 0;
    font-weight: normal;
}
.footer-router-side a{
    display: block;
    padding: 4px 0;
    font-size: .9rem;
    color: var(--primary-text-color);
}
.footer-router-side a:hover{
    color: var(--primary-color);
}
.footer-router-side .bottom{
    padding: 0 0 40px;
}
.footer-router-side .bottom span{
    display: block;
}
.footer-contact-side .main{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 60%;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.footer-contact-side .main a{
    margin-bottom: auto;
    padding: 5px 60px 5px 5px;
}
.footer-contact-side .main a span{
    white-space: nowrap;
    margin-left: 40px;
    display: block;
}
.footer-contact-side .main > span{
    display: block;
    padding: 10px 0 0;
}
.footer-contact-side .main:after{
    content: "";
    position: absolute;
    display: block;
    left: -40px;
    bottom: 0;
    width: calc(100% + 80px);
    min-width: calc(100% + 80px + (100vw - 1640px) / 2 - 10px);
    height: 1px;
    background-color: var(--border-color);
}
footer .media{
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
    gap: 20px;
}



/* Select Menu */

.input-select{
    position: relative;
    cursor: pointer;
}
.select-menu-trigger{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
:is(.select-menu, .dropdown-menu){
    position: absolute;
    background-color:  #fff;
    top: 125%;
    min-width: 350px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
    padding: 7px;
    width: 100%;
    max-width: calc(100vw - 20px);
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1);
    list-style: none;
    transition: 250ms opacity !important;
    z-index: 2;
    user-select: none;
    cursor: default;
}
.input-select:not(.active) .select-menu,
.dropdown-trigger:not(.active) .dropdown-menu{   
    opacity: 0 !important;
    pointer-events: none;
}
.select-menu ul{
    padding: 0 5px 0 0;
    list-style: none;
    max-height: 25vh;
    overflow-y: auto;
    position: relative
}
.select-menu ul::-webkit-scrollbar,
[data-lenis-prevent]::-webkit-scrollbar{
    background-color: white;
    width: 10px;
    min-width: 10px;
    border-radius: 100px;
}
.select-menu ul::-webkit-scrollbar-thumb,
[data-lenis-prevent]::-webkit-scrollbar-thumb{
    background-color: rgb(178, 251, 215);
    border-radius: 40px;
}
.select-menu li a{
    padding: 7px;
    column-gap: 20px;
    font-size: 1rem;
    border-radius: 9px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.input-select .selected{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.select-menu li a:hover{
    background-color: var(--highlight-color) !important;
    color: var(--white) !important;
}
.input-select.active .select-menu{
    display: block !important;
}



/* Dropdown Box */

.dd-box-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.dd-box-item{
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: 250ms all !important;
    cursor: pointer;
}
.dd-box-container.cream .dd-box-item{
    background-color: var(--cream);
}
.dd-box-container.primary .dd-box-item{
    background-color: #174C8C;
    border-color: var(--border-color);
    color: var(--white);
}
.dd-box-container.primary .dd-box-item,
.dd-box-container.right .dd-box-item{
    border-radius: 20px;
}
.dd-box-item:hover,
.dd-box-item.active{
    border: 1px solid #c2c2c2;
}
.dd-box-container.primary .dd-box-item:hover,
.dd-box-container.primary .dd-box-item.active{
    border-color: var(--white);
}
.dd-box-content{
    --height: 52px;
    height: var(--height);
    margin-left: 52px;
    overflow: hidden;
}
.dd-box-container.right .dd-box-content{
    margin-left: 0 !important;
    --height: 24px;
    will-change: height;
}
.dd-box-item.active .dd-box-content{
    height: auto;
}
.dd-box-item.active{
    height: auto;
    max-height: unset;
}
.dd-box-item h3{
    max-width: 100%;
    line-height: 24px !important;
    font-size: 1.25rem;
    margin: 0 30px 0 0;
}
.dd-box-item:not(.active) h3{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.dd-box-item p,
.dd-box-item span{
    font-size: 1rem;
    line-height: 1.7;
    cursor: text !important;
    color: #58656f;
}
.dd-box-item a{
    color: #4D5E5E;
}
.dd-box-indicator{
    border-radius: 100%;
    border: 1px solid var(--primary-color);
    position: absolute;
    display: flex;
    left: 20px;
    top: 30px;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
}
.dd-box-container.right .dd-box-indicator{
    left: unset;
    right: 20px;
    top: 30px;
}
.dd-box-indicator, .dd-box-indicator > * {
    transition: 250ms all !important;
}
.dd-box-indicator .line-vertical{
    width: 2px;
    height: 15px;
    background-color: var(--primary-color);
    position: absolute;
    transform-origin: center;
}
.dd-box-indicator .line-horizontal{
    width: 15px;
    height: 2px;
    background-color: var(--primary-color);
    align-self: center;
    position: absolute;
}
.dd-box-container.primary > *{
    background-color: var(--white);
}
.dd-box-container.primary .dd-box-indicator{
    border-color: var(--white);
}
.dd-box-container.primary .dd-box-indicator > *{
    background-color: var(--white);
}
.dd-box-container.primary .dd-box-item.active .dd-box-indicator > *{
    background-color: var(--primary-color);
}
.dd-box-item.active .dd-box-indicator > *{
    background-color: var(--white);
}
.dd-box-item.active .dd-box-indicator{
    background-color: var(--primary-color);
}
.dd-box-container.primary .dd-box-item.active .dd-box-indicator{
    background-color: var(--white);
}
.dd-box-item a{
    display: block;
    margin-left: auto;
    width: fit-content;
    text-decoration: underline
}
.dd-box-container .inner{
    color: var(--primary-text-color);
    cursor: auto;
}
.dd-box-container.right .inner{
    margin-top: 20px;
}
.dd-box-container:not(.right) .inner{
    margin-top: 10px;
}



/* Float */

@keyframes float {
    0%{ transform: translateY(var(--float-amount)); }
    50%{ transform: translateY(calc(-1 * var(--float-amount))); }
    100%{ transform: translateY(var(--float-amount)); }
}
.float{
    --float-amount: 10px;
    animation-name: float;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-delay: 0;
}
.floating-item{
    width: 30%;
    min-width: 200px;
    max-width: 400px;
}
.floating-item svg{
    height: fit-content;
}



/* Bigger Picture */

.bp-lock{
    overflow: unset !important;
}
.bp-lock body{
    overflow: unset !important;
}
.bp-x{
    display: none;
}
.bp-img img{
    border-radius: 20px !important;
}
.bp-prev,
.bp-next{
    background-color: var(--highlight-color) !important;
    border-radius: 100% !important;
    padding: 0 !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: content-box !important;
}
.bp-prev{
    margin-left: 20px !important;
}
.bp-next{
    margin-right: 20px !important;
}
.bp-prev:before,
.bp-next:before{
    position: static !important;
    transform: none !important;
    filter: brightness(0) saturate(100%) invert(14%) sepia(41%) saturate(4768%) hue-rotate(204deg) brightness(97%) contrast(96%);
}



/* Explore Cursor */

@keyframes spin {
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
.explore-cursor{
    position: fixed;
    z-index: 50;
    pointer-events: none;
    transform: translate(-50%, -50%);
    will-change: transform;
}
.explore-cursor,
.explore-cursor .text,
.explore-cursor .cursor{
    width: fit-content;
}
.explore-cursor svg{
    overflow: visible;
}
.explore-cursor .text{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    vertical-align: top;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    font-size: .9rem;
    transition: opacity 250ms ease-out 100ms;
}
.explore-cursor .text > div{
    position: absolute !important;
    top: 0;
    left: 0;
}
.explore-cursor .text > div > div{
    display: flex !important;
    font-family: 'HelveticaNeue-Medium';
    align-items: top;
}
.explore-cursor .cursor{
    box-sizing: content-box;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid transparent;
    transition: all 250ms ease-out;
}
.explore-cursor #head{
    transform: rotate(-68deg) scaleX(0);
    transform-origin: center;
    will-change: transform;
    /*transition: .9s all ease-out .1s, 100ms opacity ease-out 150ms;*/
    opacity: 0;
}
.explore-cursor #tail{
    transform: rotate(-68deg) scaleY(0%) translateY(100%);
    transform-origin: center;
    will-change: transform;
    opacity: 0;
}
@keyframes exploreCursorTextAnim{
    0%{transform: scale(.5) translate(-200%, -200%); opacity: 0;letter-spacing: 150px;}
    50%{transform: scale(.5) translate(-200%, -200%); opacity: 0;letter-spacing: 200px;}
    62.5%{transform: scale(.4) translate(-100%, -100%); opacity: .5;letter-spacing: 350px;}
    87.5%{transform: scale(1.05) translate(-10%,-10%); opacity: 1;letter-spacing: 50px;}
    100%{transform: scale(1) translate(0%, 0%); opacity: 1;letter-spacing: 0;}
}
@keyframes exploreCursorTailAnim{
    0%{transform: rotate(-140deg) scaleY(0%) translateY(100%); opacity: 0;}
    15%{transform: rotate(-140deg) scaleY(25%) translateY(50%); opacity: 1;}
    40%{transform: rotate(-126deg) scaleY(100%) translateY(0%)}
    55%{transform: rotate(0deg) scaleY(100%) translateY(0%)}
    56%{transform: rotate(6.8deg) scaleY(100%) translateY(0%)}
    100%{transform: rotate(68deg) scaleY(90%) translateY(0%)}
}
@keyframes exploreCursorHeadAnim{
    0%{transform: rotate(-68deg) scaleX(0%); opacity: 0;}
    30%{transform: rotate(-68deg) scaleX(0%); opacity: 0;}
    55%{transform: rotate(0deg) scaleX(50%); opacity: 0;}
    56%{transform: rotate(6.8deg) scaleX(50%); opacity: .65;}
    100%{transform: rotate(68deg) scaleX(90%); opacity: 1;}
}
.explore-cursor.hover .text{
    opacity: 1;
    animation-name: spin, exploreCursorTextAnim;
    animation-duration: 6s, 1000ms;
    animation-iteration-count: infinite, 1;
    animation-timing-function: linear, ease-out;
    animation-delay: 1000ms, 0ms;
}
/*
.explore-cursor.hover .text:after{
    content: "";
    position: absolute;
    width: 110%;
    height: 110%;
    left: -5%;
    top: -5%;
    border-radius: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .5) 50%, transparent 100%);
    z-index: -1;
}
*/
.explore-cursor.hover .cursor{
    position: relative;
    z-index: 1;
    border-color: rgba(255, 255, 255, .375);
    transition: border 500ms ease-out 1s !important;
}
.explore-cursor.hover #tail{
    transform: rotate(68deg) scaleY(90%) translateY(0%);
    animation: exploreCursorTailAnim 1.25s ease-out;
    animation-iteration-count: 1;
    opacity: 1;
}
.explore-cursor.hover #head{
    transform: rotate(68deg) scaleX(90%) translateY(0%);
    animation: exploreCursorHeadAnim 1.25s ease-out;
    animation-iteration-count: 1;
    opacity: 1;
}



.input-arrow{
    padding-right: 40px !important;
    position: relative;
}
.input-arrow:before{
    width: 30px;
    position: absolute;
    right: 15px;
    transition: 250ms all ease-out ;
}
.input-arrow.active:before{
    transform: rotate(180deg);
}
:is(.chevron-left, .chevron-right, .chevron-up, .chevron-down){
    display: block;
}
:is(.chevron-left, .chevron-right, .chevron-up, .chevron-down):before{
    display: block;
    content: "";
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    transition: 100ms all !important;
    z-index: 1;
}
:is(.chevron-left, .chevron-right, .chevron-up, .chevron-down):before{
    background-image: url(../img/icons/chevron-down.svg);
}
.chevron-right:before{
    transform: rotate(270deg);
}
.chevron-up:before{
    transform: rotate(180deg);
}
.chevron-left:before{
    transform: rotate(90deg);
}
.chevron-down:before{
    transform: rotate(0deg);
}
.container-section-wrapper.big,
.container-section.big{
    padding: 180px;
    border-radius: 50px;
}
.container-section-wrapper{
    margin: 0 !important;
    max-width: unset !important;
}
.container-section-wrapper,
.container-section{
    padding: 60px;
    border-radius: 60px;
}
.container-content{
    padding: 40px;
    border-radius: 40px;
}
:is(.container-section-wrapper, .container-section, .container-content).primary{
    background-color: var(--primary-color);
    color: var(--white);
}
:is(.container-section-wrapper, .container-section, .container-content).light{
    background-color: var(--white);
    color: var(--primary-color);
}
:not(.dd-box-container).cream{
    background-color: var(--cream);
    color: var(--primary-color);
}
.image-side img{
    border-radius: 20px;
}
.image-side:not(:has(*)){
    background-color: #D2DFDE;border-radius: 20px;
    min-height: 400px !important;
}
.text-side{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.text-side > *{
    margin: 0 !important;
}
.text-side span,
.text-side p{
    color: var(--primary-text-color);
}
.container-content .logo-container{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
    opacity: .65;
}
.logo-container img{
    height: 25px;
    max-width: 140px;
}
.logo-container.light img{
    filter: brightness(0) invert(0.9);
}
.card-img,
.bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.card-img img,
.bg-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.owl-stage{
    display: flex;
}
.owl-nav.disabled, .owl-dots.disabled{
    display: none;
}
.content{
    font-size: 1.1rem;
    line-height: 1.25;
}
.content li{
    line-height: 1.25 !important;
}
.content p{
    margin: 0 0 1rem;
    text-align: justify;
    color: var(--primary-text-color);
}
.content span{
    color: var(--primary-text-color);
}
.content :is(h1, h2, h3, h4, h5, b),
.content :is(h1, h2, h3, h4, h5, b) span{
    color: var(--primary-color);
}
.list,
.content ul{
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
}
.list li,
.content li{
    display: inline-block;
    position: relative;
    padding-left: 45px !important;
    padding: 15px 0 0;
    line-height: 1;
    align-items: center;
    color: var(--primary-text-color);
}
.list li:after,
.content li:after{
    content: "";
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 15px;
    left: 12.5px;
    background-image: url(../img/icons/tick.svg);
}
.list.highlight li{
    color: var(--primary-color);
}
.list.circle li{
    padding-right: 20px !important;
}
.list.circle li:after{
    filter: brightness(0%) invert(100%);
}
.list.highlight li:after{
    filter: brightness(0) saturate(100%) invert(69%) sepia(14%) saturate(1757%) hue-rotate(115deg) brightness(98%) contrast(93%);
}
.list.circle li:after{
    top: 20px;
}
.list.circle li:before{
    content: "";
    position: absolute;
    top: 14px;
    left: 7.5px;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    border: 1px solid var(--highlight-color);
}
.list.fill li:before{
    background-color: var(--highlight-color);
}
.star-container{
    display: flex;
    align-items: center;
    gap: 5px;
}
.star-container .star{
    width: 20px;
    height: 20px;
    background-image: url(../img/icons/star.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.star-container .star:not(.active ~ .star){
    filter: brightness(0) saturate(100%) invert(70%) sepia(13%) saturate(1952%) hue-rotate(127deg) brightness(76%) contrast(93%);
}
.breadcrumb{
    display: flex;
    font-size: .9rem;
    color: var(--primary-color);
    flex-wrap: nowrap;
    margin-bottom: 20px;
}
.breadcrumb a{
    display: flex;
    align-items: center;
}
.breadcrumb > *{
    transition: 150ms all ease-out;
}
.breadcrumb > *:hover{
    color: var(--highlight-color);
}
.breadcrumb a:after{
    content: "-";
    display: block;
    margin: 0 10px;
}
.divider-container{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: fit-content;
    justify-content: center;
}
.divider-container > *{
    max-height: 40px;
    max-width: 160px;
    object-fit: contain;
}
.divider-container > *:not(:first-child){
    padding-left: 30px;
}
.divider-container > *:not(:last-child){
    padding-right: 30px;
    border-right: 1px solid var(--border-color);
}
.integration-container a{
    display: flex !important;
    align-items: center;
    justify-content: center;
    filter: grayscale(1);
    opacity: .7;
    transition: 250ms all ease-out;
}
.integration-container a:hover{
    filter: grayscale(0);
    opacity: 1;
}
.border-item{
    border: 1px solid var(--border-color);
}
.button{
    gap: 10px;
    border-radius: 40px;
    padding: 7px 20px;
    height: fit-content;
    border: 1px solid transparent;
    line-height: 20px;
    transition-duration: 250ms !important;
    transition-property: all;
    transition-timing-function: ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}
.button i{
    display: flex;
    height: fit-content;
}
.button div div{
    user-select: none;
}
.button div div .twin{
    position: absolute;
    top: 150% !important;
}
.button:hover div div:not(.twin){
    position: relative;
    transform: translate(0, -150%) !important;
}
.border-button{
    border-color: var(--primary-color);
}
.border-button:hover{
    background-color: var(--primary-color);
    color: var(--primary-background);
}
.border-button:hover svg path{
    transition-duration: 250ms !important;
    transition-property: all;
    transition-timing-function: ease-in-out;
}
.border-button:hover svg path{
    stroke: var(--primary-background);
}
.button:has(.button-avatar){
    padding: 5px 20px 5px 5px;
}
.button-avatar{
    height: 28px;
    aspect-ratio: 1 / 1;
    background-color: var(--border-color);
    margin-right: auto;
    border-radius: 100%
}
.fill-button{
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
    box-shadow: 0 5px 20px -7px var(--highlight-color);
}
.fill-button:hover{
    background-color: var(--highlight-light-color);
    border-color: var(--highlight-light-color);
}
.compact-button{
    width: fit-content;
    color: var(--white);
    background-color: var(--primary-color);
} 
.compact-button span{
    color: var(--white);
}
.compact-button:hover{
    background-color: var(--primary-light-color) !important;
}
.highlight{
    color: #27A59C !important;
}
.bottom-link{
    color: var(--highlight-color);
    display: block;
    margin-top: 20px;
}
.center-text{
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.bold{
    font-weight: bold;
}
.vr{
    background-color: var(--border-color);
    opacity: 1;
    width: 1px;
}
.hr{
    border-top:1px solid var(--border-color);
    width: 100%;
    width: -webkit-fill-available;
}
.sticky{
    position: sticky;
    top: 120px;
}
.flex{
    display: flex;
}
.flex-vertical{
    display: flex;
    flex-direction: column;
}
.align-center{
    align-items: center;
}
.justify-center, .justify-content-center{
    justify-content: center;
}
.gap-20{
    gap: 20px;
}
.full-width,
.full-size{
    width: 100%;
}
.cut-width{
    width: 70%;
}
.half-width{
    width: 50%;
}
.fit-width{
    width: fit-content;
}
.full-height,
.full-size{
    min-height: 100%;
    height: auto;
}
.half-height{
    min-height: 50%;
    height: 50%;
}
.fit-height{
    height: fit-content;
}
.cube{
    aspect-ratio: 1 / 1;
}
[data-text-switcher] ~ .clone::selection{
    color: rgba(255, 0, 0, 0) !important;
    background: #5260CF;
}
[data-text-switcher] ~ .clone::-moz-selection{
    color: rgba(255, 0, 0, 0) !important;
    background: #5260CF;
}
[data-text-switcher] ~ .clone::-webkit-selection{
    color: rgba(255, 0, 0, 0) !important;
    background: #5260CF;
}
.nav-cursor{
    transition: 250ms top ease-out 250ms;
}
.nav-cursor{
    background-color: var(--highlight-color);
    top: 20px !important;
}
header.active .nav-cursor{
    top: 20px !important;
}
span.aos-init{
    display: block;
}