﻿:root {
    --z-index-main-header:700;
    --background-white: #ffffff;
    --white: #ffffff;
    --text-primary:#101010;
    --text-primary-active: #428BF4;
    --text-info-primary: #428BF4;
    --button-primary: #428BF4;
    --button-text-primary: #428BF4;
    --nav-text-primary: #101010;
    --nav-text-primary-active: #428BF4;
    --nav-active-background: rgba(241, 241, 241, 0.55);
    --background-primary: #428BF4;
    --border-primary: #f1f1f1;
    --button-background-primary: #428BF4;
    --footer-background-primary: #040b1f;
    --footer-text-primary: #ffffff;
    --footer-info-primary: #428BF4;
    --container-title-size: 1.6rem;
    font-size: 16px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
h1 {
    color: var(--text-primary);
}

::placeholder {
    color: #B6BABF;
}
.button-primary-default {
    border: none;
    background-color: #ffffff;
    color: var(--text-info-primary);
    letter-spacing: 1.2px;
    font-size: 1rem;
    padding: 0.4rem 1.5rem;
    border-radius: 100px;
}

.button-primary {
    border: none;
    background-color: var(--button-background-primary);
    color: var(--white);
    font-size: 1rem;
    padding: 0.4rem 1.5rem;
    border-radius: 100px;
}

.button-primary-l_g {
    background: linear-gradient(0deg, #7D6295, #C7B2CC);
    border-radius: 100px;
    color: #ffffff;
    width: max-content;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
}

.section-title  {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    padding-bottom: 3rem;
}

.section-title .child-title {
    color: #666666;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.8rem;
}

@media (max-width: 1800px) {
    :root {
        font-size: 14.5px;
    }
}

@media (max-width: 1600px) {
    :root {
        font-size: 12.8px;
    }
}

@media (max-width: 1300px) {
    :root {
        font-size: 10.7px;
    }
}

@media (max-width: 1200px) {
    :root {
        font-size: 9.2px;
    }
}

@media (max-width: 992px) {
    :root {
        font-size: 8.05px;
    }
}



@media (max-width: 768px) {
    :root {
        font-size: 2px;
    }
}


@media (max-width: 505px) {
    :root {
        font-size: 1.04px;
    }
}

