:root {
    --primary: #1e3a5f;
    --primary-light: #0f172a;
    --secondary: #b4232a;
    --text-color: #7A7A7A;
    --white: #fff;
    --blue: #2271b1;
    --bg: #f0f0f1;
    --body: #5d6778;
    --gray: #f5f6fe;
}

.bg-gray{
    background: var(--gray);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1310px;
    padding: 0 20px;
    margin: auto;
}

.text-white {
    color: var(--white);
}

.bg-white {
    background: var(--white);
}

.bg-secondary {
    background: var(--secondary);
}

.site-description,
.site-title,
.site-header,
.skip-link{
    display: none !important;
}

.p-section{
    padding-block: 20px;
}