/* 
* Base CSS
* -----------------------------------------------------
*/

:root {

    /* ================= Colors ================= */
    --primary-color: #685d6c;
    --primary-color-light: #7b717e;
    --primary-color-dark: #423447;
    --secondary-color: ;
    --tertiary-color: ;
    --text-color: #1D1D1B;
    --body:#F9F9F9;


    --swiper-pagination-color: #595477;
    --swiper-pagination-bullet-size: 12px;
    --swiper-pagination-bullet-width: 12px;
    --swiper-pagination-bullet-height: 12px;
    --swiper-pagination-bullet-inactive-color: none;
    --swiper-pagination-bullet-inactive-opacity: 0.2;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-navigation-size: 52px !important;
}

.swiper-pagination-bullet {
    border: 3px solid #595477;
    border-radius: 50%;
}
.swiper-button-next,
.swiper-button-prev{
    color: var(--primary-color-dark) !important;
}

* {
    box-sizing: border-box;
}

form input[type="checkbox"] {
    appearance: none;
    background-color: none;
    cursor: pointer;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 10px;
    height: 10px;
    border: 0.5px solid #1D1D1B;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

form input[type="checkbox"]::before {
    content: "";
    width: 6px;
    height: 6px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #1D1D1B;
}

form input[type="checkbox"]:checked::before {
    transform: scale(1);
}

body select,
body  input,
body button,
body textarea {
    outline: none;
    border: none;
    background: none;
}

body input {
    color: var(--text-color);
    font-family: 'Graphik';
    font-weight: 300;
    font-size: 14px;
}

body section,
body header {
    position: relative;
    padding: 80px 0;
    background-color: var(--body);
}

body button,
body a.button {
    font-family: 'Graphik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: auto;
    letter-spacing: 0;
}


body h1 {
    color: #0E2842;
    font-family: 'Graphik', sans-serif;
    font-weight: 600;
    font-size: 45px;
    line-height: auto;
    letter-spacing: 0;
}

body h2 {
    color: var(--text-color);
    font-family: 'Graphik', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 58px;
    letter-spacing: 0.03em;
}

body a,
body a:hover {
    color: inherit;
    text-decoration: none;
}

body p {
    color: inherit;
    font-family: 'Graphik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.03em;
}

@media(max-width:998px) {
    body section,
        body header {
            padding: 20px 0;
        }
    body h1 {
            font-size: 36px;
        }
    body h2 {
            font-size: 32px;
            line-height: 48px;
        }
}

@media(max-width:480px) {
   
                  body h1 {
                      font-size: 28px;
                  }
        body h2 {
                font-size: 24px;
                line-height: 42px;
            }
}