* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

:root {

    --color-primary: #5B9FD4;
    --color-secondary: #3D3D3D;
    --color-tertiary: #D5E5F3;
    --color-gray: #585858;
    --color-text: #1A1A1A;
    --color-bg: #F2F2F2;
    --color-highlight: #F26A30;

    --swiper-pagination-color: var(--color-primary);
    --swiper-pagination-bullet-size: 14px;
    --swiper-pagination-bullet-width: 14px;
    --swiper-pagination-bullet-height: 14px;
    --swiper-pagination-bullet-inactive-color: var(--color-tertiary);
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-opacity: 1;
}

form input[type="checkbox"] {
    appearance: none;
    background-color: transparent;
    border: 1px solid white;
    cursor: pointer;
    margin: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

form input[type="checkbox"]::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-image: url(../../assets/images/icons/icon-checkmark.svg);
    background-position: center;
    background-size: contain;
}

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

body section {
    padding-block: 40px;
    background-color: var(--color-bg);
}

@media(min-width:992px) {
    body section {
        padding-block: 80px;
    }
}


body h1 {
    font-family: "PPRightSans", sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
@media(min-width:992px) {
    body h1 {
        font-size: 3.5rem;
        line-height: 67px;
    }
}
body h2 {
    font-family: "PPRightSans", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

@media(min-width:992px) {
    body h2 {
        font-size: 2.9rem;
        line-height: 67px;
    }
}

body h3 {
    font-family: "PPRightSans", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 61.973px;
    margin: 0;
}

body h4{
    color: #3D3D3D;
        font-family: "PPRightSans",sans-serif;
        font-size: 1.5rem;
        font-weight: 500;
}

body h6 {
    font-family: 'GeneralSans', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 350;
    line-height: 14px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
}

body p {
    font-family: 'GeneralSans', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 31px;
}

@media(min-width:992px) {
    body p {
        font-size: 1.2rem;
    }
}