@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kdam+Thmor+Pro&family=Montserrat:ital,wght@0,100..900;1,100..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&family=Raleway:ital,wght@0,100..900;1,100..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@font-face {
    font-family: PP Neue Montreal;
    src: url('../fonts/ppneuemontreal-bold.woff') format('woff');
}

:root {
    --whiteBackGround: #F2F3F3;
    --blackBackGround: #0C0D0D;

    --whiteFontTitle: rgba(255, 255, 255, 0.9);
    --blackFontTitle: rgba(0, 0, 0, 0.9);

    --whiteFontText: rgba(255, 255, 255, 0.8);
    --blackFontText: rgba(0, 0, 0, 0.8);


    --paddingLeftRight: 0 5%;
}

.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
    text-align: center;
    padding: var(--paddingLeftRight);
}

.divOverLayer {
    position: absolute;
    background: radial-gradient(ellipse 150% 95% at 50% 0%,
            #f2f3f300 75%, #f2f3f3);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.terms {
    margin: 5% 12%;
    border: solid 2px rgba(0, 0, 0, .5);
    padding: 0px 4%;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: 52px 0;

    h2 {
        font-family: "PP Neue Montreal", sans-serif;
        color: #01CB76;
        font-size: clamp(1rem, 1rem + 2vw, 1.4rem);
        line-height: 120%;
        text-align: start;
        margin-bottom: 24px;
    }

    p {
        font-family: "Inter", sans-serif;
        font-size: clamp(0.88rem, 0.9rem + 0.4vw, 1rem);
        color: var(--blackFontText);
        line-height: 140%;
        text-align: start;
    }
}

@media (max-width:768px) {
    .terms {
        margin: 5% 4%;
    }
}