@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
}

h1,h2,h3,h4, h1 > span, .font-wix {
    font-family: "Wix Madefor Display", sans-serif;
}

/**
    CUSTOM BACKGROUND
**/

.custom-gray-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background: rgb(248, 246, 245);
    background: linear-gradient(-202deg, rgba(248, 246, 245, 1) 0%, rgb(217, 219, 222) 100%);
    height: 100%;
    border-radius: 100% 0 0;
    z-index: -1;
}

.custom-gray-bg-2::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(248, 246, 245);
    background: linear-gradient(-180deg, rgba(248, 246, 245, 1) 0%, rgb(217, 219, 222) 100%);
    border-top-left-radius: 1000px 220px;
    border-top-right-radius: 1000px 220px;
    z-index: -1;
}

/**
    SUBTITLE
**/

.subtitle::before,
.subtitle-small::before {
    content: '';
    position: relative;
    border-radius: 10px;
    background-color: #315D88;
    width: 12px;
    height: 50px;
    margin-right: 15px;
    display: inline-block;
    vertical-align: -40%;
}

.subtitle-small::before{
    height: 40px;
}

.subtitle.red::before,
.subtitle-small.red::before{
    background-color: #A34530;
}

.subtitle.white::before{
    background-color: #fff;
}

/**
    FLOAT ANIMATION
**/

@keyframes float {
    0% {
        transform: translatex(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

.float {
    animation: float 4s ease-in-out infinite;
}