@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: "Prompt", sans-serif;
    background: #FFFFFF;
}

a{
    text-decoration: none;
}

p{
    font-size: 16px;
    font-weight: 350;
    line-height: 25px;
    text-align: left;
}

img{
    max-width: 100%;
}
.region-sidebar-first, .region-sidebar-second, .region-footer, .region-content{
    padding: 0;
}
h4.block-title{
    text-transform: uppercase;
    font-size: 24px;
    line-height: 37.49px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #000;
    margin-bottom: 20px;
}

.cta-button{
    padding: 5px 20px;
    padding-right: 45px;
    border: 1px solid #111111;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 37px;
    transition: background 0.3s ease;
}
.cta-button::after{
    position: absolute;
    content: '';
    background: url('../images/arrow-right-dark.png') no-repeat;
    height: 9px;
    width: 15px;
    right: 25px;
    top: calc(50% - 4.5px);
    transform: translateX(2px);
    transition: transform 0.3s ease;
}
.cta-button.button-hover::before{
    position: absolute;
    content: '';
    height: calc(100% - 2px);
    width: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    right: 1px;
    top: 1px;
    transition: all 0.3s ease;
}
.cta-button.button-hover:hover{
    background: #000;
    color: #fff;
}
.cta-button.button-hover:hover::before{
    background: #53A447;
}
.cta-button.button-hover:hover::after{
    background: url('../images/arrow-right-white.png') no-repeat;
    transform: translateX(15px);
}
.cta-button.button-hover.hovered{
    background: #000;
    color: #fff;
}
.cta-button.button-hover.hovered::after{
    background: url('../images/arrow-right-white.png') no-repeat;
    transform: translateX(15px);
}
.cta-button.button-hover.hovered::before{
    background: #53A447;
}
input:focus, input:focus-visible{
    box-shadow: unset !important;
    border-color: #53A447 !important;
}
#offcanvas-backdrop-layer{
    position: fixed;
    top: 0;
    left: 0;
    z-index: -999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
}
#offcanvas-backdrop-layer.open{
    opacity: 1;
    z-index: 1001;
}

/* ========= Form Inputs =============== */

.form-check-input:checked {
    background-color: #53A447;
    border-color: #53A447;
}

/* =============== Chosen Select Box Styles ================ */

.chosen-container{
    padding: 0;
    border: none;

    .chosen-single{
        height: auto;
        background: transparent;
        padding: 8px 20px;
        line-height: 22px;
        border: 1px solid #8B96A8;
        border-radius: 10px;
        color: #111111;
        display: flex;
        align-items: center;
        justify-content: space-between;

        span{
            text-transform: capitalize;
            font-size: 16px;
            margin-right: 30px;
        }
        
        box-shadow: none;
       
        div{
            display: none;
        }
    }
    .chosen-drop{
        border: 1px solid #8B96A8;
        border-top: none;
        border-radius: 0 0 10px 10px;
        margin: 0;

        .chosen-search{
            position: relative;
            margin-bottom: 5px;
            input{
                padding: 10px;
                border-radius: 8px;
                background: none !important;
                height: 36px;
            }
        }
        .chosen-search::before{
            content: '';
            position: absolute;
            height: 15px;
            width: 15px;
            background: url(../images/search-icon-dark.png) center/contain no-repeat;
            top: 15px;
            right: 10px;
        }

        ul.chosen-results{
            li{
                padding: 10px;
                color: #111111;
                font-size: 16px;
            }
            li.highlighted{
                background: #C5F2BF;
                color: #111111;
            }
        }
    }
}
.chosen-container.chosen-with-drop{
    .chosen-single{
        
        border-radius: 10px 10px 0 0;
        border-bottom: none;
    }
    
}
.chosen-container-active.chosen-with-drop .chosen-single{
    background-image: none;
}

@media screen and (min-width: 768px) and (max-width: 1199px){
    h4.block-title{
        font-size: 22px;
        line-height: 30px;
        letter-spacing: 0.04em;
        margin-bottom: 18px;
    }
}
@media screen and (min-width: 0px) and (max-width: 767px){
    body{
        font-size: 14px;
    }
    p{
        font-size: 14px;
        line-height: 20px;
    }
    h4.block-title{
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    .cta-button{
        padding: 5px 15px;
        padding-right: 35px;
        height: unset;
        font-size: 12px;
    }
    .cta-button::after{
        right: 18px;
    }
    .cta-button.button-hover:hover::after,
    .cta-button.button-hover.hovered::after{
        transform: translateX(11px);
    }
}