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

:root {

    /* ================= Colors ================= */
    --primary-color: #1F612C;
    --primary-color-light: ;
    --primary-color-dark: ;
    --secondary-color: #D3CCC4;
    --tertiary-color: ;
    --text-color: #353434;
    --background-color: #F5F5F5;


    --swiper-pagination-color: #1F612C;
    --swiper-pagination-bullet-size: 16px;
    --swiper-pagination-bullet-width: 16px;
    --swiper-pagination-bullet-height: 16px;
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap: 10px;
}

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

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

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

* {
    box-sizing: border-box;
}

button,
input,
select {
    outline: none;
    border: none;
    background: none;
}
body{
    background-color: var(--background-color) !important;
}
body a {
    color: inherit;
    text-decoration: none;
}

body p {
    margin-bottom: 30px;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0.05em;
}

body h2 {
    color: var(--text-color);
    font-family: 'PlayfairDisplay', sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: auto;
}

body h3 {
    color: var(--text-color);
    font-family: 'PlayfairDisplay', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 48px;
    line-height: auto;
}
body h4 {
    color: var(--text-color);
    font-family: 'PlayfairDisplay', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
    line-height: normal;
}@media(max-width: 1400px){
body p {
        font-size: 26px;
    }

    body h2 {
        font-size: 48px;
    }
}
@media(max-width: 998px){
    body p {
            font-size: 24px;
        }
    body h2 {
            font-size: 40px;
        }
    
        body h3 {
            font-size: 28px;
        }
                body h4 {
                    font-size: 24px;
                }
}
@media(max-width: 480px){
    body p {
            font-size: 14px;
        }
    body h2 {
            font-size: 24px;
        }
    
        body h3 {
            font-size: 20px;
        }
                body h4 {
                    font-size: 14px;
                }
}