/*************
Fonts
*************/

@font-face {
    font-family: Euclid;
    font-weight: 400;
    src: url(/assets/fonts/Euclid-Circular-A-Regular.ttf);
}

@font-face {
    font-family: Euclid;
    font-weight: 600;
    src: url(/assets/fonts/Euclid-Circular-A-SemiBold.ttf);
}

@font-face {
    font-family: Euclid;
    font-weight: 700;
    src: url(/assets/fonts/Euclid-Circular-A-Bold.ttf);
}

/*************
General 
*************/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: Euclid;
    margin: 0;
    position: relative;
}

body *::selection {
    color: black;
    background: rgb(222 132 255 / 50%);
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

.button {
    padding: 10px 14px;
    color: white;
    border-radius: 6px;
    background-color: #6E37EF;
    font-weight: 600;
    align-items: center;
    font-size: 15px;
    display: flex;
    width: max-content;
    cursor: pointer;
    position: relative;
    min-width: 145px;
    text-align: center;
    justify-content: center;
    border: none;
    outline: none;
    transition: 0.3s;
}

.button.center {
    margin: 0 auto;
}

.button.long {
    min-width: unset;
    width: 100%;
}

.button.thick {
    padding: 22px 36px;
}

.button.hover:hover {
    transform: scale(1.02) translate(0px, -3px);
}

.buttonDots {
    margin-left: 14px;
    background-color: #5928CE;
    width: 45px;
    height: 23px;
    border-radius: 26px;
    display: grid;
    grid-template-columns: repeat(3, 6px);
    column-gap: 4px;
    align-items: center;
    justify-content: center;
}

.buttonDot {
    position: relative;
}

.buttonDot {
    width: 6px;
    height: 6px;
    background: #FFFFFF;
    opacity: 0.3;
    border-radius: 100%;
    animation-name: pulse;
    animation-duration: 1.2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transition: 0.25s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    20% {
        transform: scale(1.3);
        opacity: 1;
    }

    40% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.buttonDot:nth-child(1) {}

.buttonDot:nth-child(2) {
    animation-delay: 0.25s
}

.buttonDot:nth-child(3) {
    animation-delay: 0.50s
}

.link {
    font-weight: 600;
    font-size: 16px;
    line-height: 198%;
    color: #7241E5;
    display: flex;
    align-items: center;
}

.link>svg {
    margin-left: 7px;
    transition: 0.3s;
}

.link:hover>svg {
    margin-left: 11px;
}

.container {
    max-width: 1080px;
    margin: auto;
}

.sectionTitle {
    font-weight: 700;
    font-size: 50px;
    line-height: 48px;
    margin-top: 0;
}

.description {
    font-size: 16px;
    line-height: 198%;
    color: #5F6C89;
    margin-bottom: 14px;
}

@media(max-width: 800px) {
    .sectionTitle {
        font-size: 37px;
        line-height: initial;
    }
}

/*************
Header
*************/


#header {
    position: absolute;
    width: 100%;
    z-index: 1;
    transition: 0.3s;
}

#header.scrolled {
    background-color: white;
    box-shadow: rgb(0 0 0 / 4%) 0px 4px 4px;
}

#headerInner {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#headerLink {}

#headerLinkLogo {
    width: auto;
    height: 55px;
    display: block;
}

#headerNav {
    display: flex;
    align-items: center;
}

.headerNavItem {
    font-size: 15px;
    margin-right: 30px;
}

.headerNavItem:hover {
    text-decoration: underline;
}

#headerNavButton {}

@media(max-width: 800px) {
    #header {
        position: fixed;
    }

    #headerLinkLogo {
        height: 48px;
    }

    .headerNavItem {
        display: none;
    }

    #headerNavButton {
        font-size: 12px;
        min-width: auto;
        padding: 6px 12px;
    }
}


/*************
Footer
*************/
#footer {
    padding: 60px 20px 40px;
}

#footerLinebreak {
    height: 2px;
    background-color: #E9E9E9;
    border: none;
    margin: 0 0 33px;
}

#footerCopyright {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footerCopyrightText {
    font-weight: normal;
    font-size: 15px;
    line-height: 19px;
}

#footerCopyrightImage {
    width: auto;
    height: 40px;
    margin-left: 10px;
}