:root {
    --primary-color: #033675;
    --secondary-color: #6FA3EA;
    --background-color: #F2F2F2;
    --gray-color: #A7A7A7;
    --light-gray-color: #CDCDCD;
    --extra-light-gray-color: #F4F4F4;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --danger-color: #E74242;


    --gray-color-1: #D9D9D9;
    --gray-color-2: #CDCDCD;
    --gray-color-3: #A7A7A7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background-color: var(--background-color);
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-start {
    justify-content: flex-start;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-between {
    justify-content: space-between;
}

.w-full {
    width: 100%;
}

.container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    min-height: 90vh;
}

@media (max-width: 1250px) {
    .container {
        width: 992px;
    }
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

.scroll-btn-one {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
}

.scroll-btn-one.active {
    background-color: var(--primary-color);
}

.change-page-ads {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.cards {
    display: flex;
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}