@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --babypowder: rgba(253, 255, 252, 1);
    --lightgray: rgba(230, 230, 230, 1);
    --gray: rgba(180, 180, 180, 1);
    --darkgray: rgb(130, 130, 130, 1);
    --raisinblack: rgba(33, 26, 29, 1);
    --primary: rgba(0, 74, 173, 1);
    --secondary: rgba(93, 187, 230, 1);
    --purple: rgba(81, 51, 151, 1);
    --pink: rgba(138, 59, 151, 1);
    --green: rgba(107, 197 ,107 , 1);
    --yellow: rgba(245, 240, 103, 1);
    --orange: rgba(238, 151, 89, 1);
    --red: rgba(230, 68, 68, 1);
    --shadow-gray: 1px 4px 6px var(--gray);
    --shadow-gradient: -1px -1px 4px 0 var(--secondary), 2px 2px 8px 1px var(--pink);
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--raisinblack);
}

strong, b {
    font-weight: bold;
}

em, i {
    font-style: italic;
}

h1 {
    font-size: 40px;
    font-weight: 900;
}

h2 {
    font-size: 36px;
    font-weight: 800;
}

h3 {
    font-size: 32px;
    font-weight: 700;
}

h4 {
    font-size: 24px;
    font-weight: 600;
}

h5 {
    font-size: 20px;
    font-weight: 500;
}

h6 {
    font-size: 15px;
    font-weight: bold;
}

p {
    font-size: 15px;
    font-weight: 400;
}

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

label {
    font-weight: bold;
}

label, input, textarea, select {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
}

input, textarea, select, option {
    color: var(--darkgray);
}

input {
    font-weight: 400;
}

select {
    padding: .5rem;
    border: none;
    border-radius: 1rem;
    background-color: rgb(240, 240, 240);
    text-align: center;
}

select:focus {
    outline: none;
}

input[type='file']::file-selector-button {
    font-family: 'Poppins', sans-serif;
    border-radius: 2rem;
    font-size: 15px;
    border: none;
    background-color: var(--purple);
    color: var(--babypowder);
    padding: .5rem 1rem;
    transition: transform .3s ease;
    cursor: pointer;
}

input[type='file']::file-selector-button:hover {
    transform: scale(1.02);
}

button {
    font-family: "Poppins", sans-serif;
}

input[type="checkbox"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: var(--primary) 2px solid;
    cursor: pointer;
    background-color: var(--babypowder);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

input[type="checkbox"]:hover:not(:disabled) {
    border-color: var(--secondary);
    box-shadow: 0 0 5px var(--secondary);
    background-color: var(--secondary);
}

input[type="checkbox"]::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 14px;
    border: solid var(--babypowder);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
}

input[type="checkbox"]:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

input[type="checkbox"]:checked::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}

input[type="checkbox"]:disabled::after {
    border-color: var(--gray);
}

input:not([type="checkbox"]), textarea, select {
    border: none;
    background-color: var(--lightgray);
    border-radius: 2rem;
    padding: .5rem 2rem;
    justify-content: center;
    transition: box-shadow 0.2s, background-color 0.2s;
}

input:not([type="checkbox"]):focus,
textarea:focus,
select:focus {
    box-shadow: -1px -1px 4px 0 var(--secondary), 2px 2px 8px 1px var(--pink);
    outline: none;
}

.headerbtn span, .clearbtn span {
    position: relative;
    display: flex;
    z-index: 1;
    align-items: center;
    justify-content: center;
}

.clearbtn {
    border: none;
    font-size: 15px;
    font-weight: bold;
    padding: .8rem 2rem;
    background: linear-gradient(to left, #5dbbe6, #004aad);
    border-radius: 2rem;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    text-align: center;
    color: var(--babypowder);
    display: inline-block;
    transition: transform .3s ease;
    overflow: hidden;
}

.clearbtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: var(--primary);
    transition: left .5s ease;
    z-index: 0;
}

.clearbtn:not(:disabled):hover::before {
    left: 0;
}

header {
    box-sizing: border-box;
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8rem;
    background: linear-gradient(to left, #5dbbe6, #004aad);
    color: var(--babypowder);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

#logodesktop {
    display: block;
    width: 200px;
}

#logomobile {
    display: none;
    width: 80px;
}

#logofooter {
    width: 200px;
}

.navlist {
    gap: 3rem;
    display: flex;
    align-items: center;
}

.naveffect {
    position: relative;
    padding: .5rem 0;
}

.naveffect::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 0;
    height: 0.2rem;
    background-color: var(--babypowder);
    transition: all .3s ease;
}

.naveffect:hover::after {
    left: 0;
    width: 100%;
}

.borderbtn {
    border: 0.2rem solid var(--babypowder);
    background-color: transparent;
    font-size: 15px;
    font-weight: bold;
    padding: .8rem 2rem;
    border-radius: 2rem;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    text-align: center;
    color: var(--babypowder);
    display: inline-block;
    transition: transform .3s ease;
    overflow: hidden;
    white-space: nowrap;
}

.borderbtn:hover {
    transform: scale(1.05);
}

footer {
    background: linear-gradient(to left, #5dbbe6, #004aad);
    padding: 2rem 8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footersocialmedia {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.footersocialmedia a img {
    width: 36px;
    min-width: 36px;
    transition: transform .3s ease;
}

.footersocialmedia a img:hover {
    transform: scale(1.1);
}

.menutoggle {
    display: none;
}

.menutoggle img {
    width: 100%;
    max-width: 30px;
    height: auto;
}

.maincontent {
    margin: 10rem 8rem 5rem 8rem;
}

.loadingscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--babypowder);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .5s ease-in-out;
}

#hubspot-messages-iframe-container {
    z-index: 1100 !important;
}

.loadingcontent {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loadinglogo {
    width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.loadingspinner {
    width: 80px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: 
        radial-gradient(farthest-side, var(--primary) 94%, transparent) top/1rem 1rem no-repeat,
        conic-gradient(transparent 30%, var(--primary));
    mask: radial-gradient(farthest-side, transparent calc(100% - 1rem), var(--secondary) 0);
    animation: l13 1.5s infinite linear;
}

.scrolling {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.scrolling.visible {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none !important;
}

@keyframes l13 { 
    100% {
        transform: rotate(1turn);
    }
}

@media screen and (max-width: 1024px) {
    #logodesktop {
        display: none;
    }
    
    #logomobile {
        display: block;
    }

    .navlist {
        background-color: var(--primary);
    }

    .navlist, .navbtn {
       display: none;
    }

    .navlist.active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; 
        align-items: center;
        gap: 3rem; 
        position: fixed;
        padding-top: 9rem;
        top: 5rem;
        right: 0;
        width: 50%;
        height: calc(100vh - 5rem);
        z-index: 2000;
    }

    .navbtn.active {
        right: 0;
        display: flex;
        top: 8rem;
        position: absolute;
        bottom: 2rem;
        width: 50%;
        z-index: 2000;
        justify-content: center;
    }

    .menutoggle {
        display: block;
        position: absolute;
        right: 8rem;
        cursor: pointer;
    }
}

@media screen and (max-width: 768px) {
    #logodesktop {
        display: none;
    }
    
    #logomobile {
        display: block;
    }

    .navlist {
        background-color: var(--primary);
    }

    .navlist, .navbtn {
       display: none;
    }

    .navlist.active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; 
        align-items: center;
        gap: 3rem; 
        position: fixed;
        padding-top: 9rem;
        top: 5rem;
        right: 0;
        width: 50%;
        height: calc(100vh - 5rem);
        z-index: 2000;
    }

    .navbtn.active {
        right: 0;
        display: flex;
        top: 8rem;
        position: absolute;
        bottom: 2rem;
        width: 50%;
        z-index: 2000;
        justify-content: center;
    }

    header {
        padding: 0 2rem;
    }

    .maincontent {
        margin: 8rem 2rem 3rem 2rem;
    }

    .menutoggle {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 2rem;
    }
}