:root{
    --font-family-body: "Inter", sans-serif;
    --color-black: #000;
    --color-dark: #212529;
    --color-white: #fff;
    --base-transition: all .2s ease-in-out;
    --dark-layer: rgba(0,0,0,0.7);
}
.pos-relative{position: relative;}
.o-hidden{overflow: hidden;}
.w-100{width: 100%}

.gap-5{gap: 5px;}
.gap-14{gap: 14px;}

.row-10{row-gap: 10px;}
.row-14{row-gap: 14px;}
.row-18{row-gap: 18px;}
.row-25{row-gap: 25px;}
.row-30{row-gap: 30px;}

.column-5{column-gap: 5px;}

.mt-15{margin-top: 15px}
.mt-30{margin-top: 30px}

.mb-10{margin-bottom: 10px;}
.mb-30{margin-bottom: 30px;}


.mr-16{margin-right: 16px;}

.br-5{border-radius: 5px;}

.border-1{border: 1px solid var(--color-black)}

.text-center{text-align: center;}

body{
    font-family: var(--font-family-body);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-dark);
}

img{
    max-width: 100%;
}

.social-link{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 27px;
    height: 27px;
    text-decoration: none;
    background: var(--color-white);
    color: var(--color-dark);
    flex-shrink: 0;
}
.social-link.large{
    width: 30px;
    height: 30px;
}
.social-link i{
    margin-bottom: -1px;
}
.social-link.large i:before{
    font-size: 20px;
}
.social-link img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-mb{
    margin-bottom: 25px;
}


.btn{
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    border-radius: 5px;
    transition: var(--base-transition);
    border: 1px solid var(--color-black);
    color: var(--color-white);
    background: var(--color-black);
    text-decoration: none;
    padding: 18px;
    outline: none;
    text-align: center;
}
.btn:hover{
    background: var(--color-white);
    color: var(--color-dark);
}
.btn.btn-s{
    font-size: 14px;
    line-height: 14px;
}
.btn.btn-md{
    font-size: 14px;
    line-height: 14px;
    padding: 22px;
}
.btn.btn-light{
    border-color: var(--color-white);
    background: none;
}
.btn.btn-light:hover{
    background: #FFFFFF9C;
    color: var(--color-dark);
}
.btn.btn-dark{
    border-color: var(--color-dark);
    background: none;
    color: var(--color-dark);
}
.btn.btn-dark:hover{
    background: var(--color-black);
    color: var(--color-white);
}

.btn.btn-light-full{
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}
.btn.btn-light-full:hover{
    border-color: #FFFFFF9C;
    background: #FFFFFF9C;
}


.dropdown-custom {
    position: relative;
}
.dropdown-custom .dropdown-custom-toggle-js{
    width: auto;
    display: flex;
    align-items: center;
}
.dropdown-custom .dropdown-custom-toggle-js .social-link{
    background: var(--color-black);
    color: var(--color-white);
    font-size: 20px;
}

.dropdown-custom-content {
    display: none;
    flex-direction: column;
    padding: 9px;
    border-radius: 5px;
    position: absolute;
    width: max-content;
    right: 0;
    top: calc(100% + 4px);
    z-index: 669;
    row-gap: 10px;
    border: 1px solid var(--color-black);
    background: var(--color-white);
}
.dropdown-custom-content a {
    color: var(--color-dark);
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
}

.open-dropdown .dropdown-custom-content {
    display: flex;
}
.modal-backdrop.show{
    opacity: 1;
}
.modal-backdrop{
    background: var(--color-white);
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, .7);
}

.h1, h1, .h2, h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    color: var(--color-dark);
}
.h2, h2 {
    font-size: 24px;
    line-height: 100%;
}
.dark-text{color: var(--color-dark)}
.light-text{color: var(--color-white)}

.custom-text h2,
.custom-text .h2{
    margin-bottom: 8px;
}
.custom-text p:last-of-type{
    margin-bottom: 0;
}
.custom-text .text + .btn{
    display: flex;
    margin-top: 18px;
    justify-content: center;
}
.custom-text ul{
    padding-left: 28px;
    margin-top: 8px;
    margin-bottom: 8px;
}
.section-divider .divider{
    width: 100%;
    height: 1px;
    background: var(--color-black);
}
.section-divider-top .divider{
    margin-bottom: 25px;
}
.section-breadcrumbs-block + .section-divider .divider{display: none}
.section-breadcrumbs-block + .section-divider {margin-top: 0}
@media screen and (min-width: 768px) {
    .section-mb{
        margin-bottom: 45px;
    }
    .custom-text .text + .btn{
        display: inline-flex;
        padding: 18px 60px;
    }
    .section-divider-top .divider{
        margin-bottom: 22.5px;
    }
    .section-divider-top{
        margin-top: -22.5px
    }
}
@media screen and (min-width: 992px) {
    .section-mb{
        margin-bottom: 55px;
    }
    .section-divider-top .divider{
        margin-bottom: 27.5px;
    }
    .section-divider-top{
        margin-top: -27.5px
    }
}
@media screen and (min-width: 1256px) {
    body{
        font-size: 16px;
    }
    .section-mb{
        margin-bottom: 70px;
    }
    .section-divider-top .divider{
        margin-bottom: 35px;
    }
    .section-divider-top{
        margin-top: -35px
    }
    .btn.btn-s{
        font-size: 20px;
        line-height: 20px;
    }
    .btn.btn-md{
        font-size: 20px;
        line-height: 20px;
        padding: 22px 43px;
    }
    .h1, h1{
        font-size: 48px;
    }
    .h2, h2 {
        font-size: 32px;
    }
    .custom-text h2, .custom-text .h2{
        margin-bottom: 20px;
    }
    .custom-text .text + .btn{
        margin-top: 25px;
    }
}
@media screen and (min-width: 1537px) {
    body{
        font-size: 16px;
    }
    .section-mb{
        margin-bottom: 120px;
    }
    .section-divider-top .divider{
        margin-bottom: 60px;
    }
    .section-divider-top{
        margin-top: -60px
    }
    .h1, h1{
        font-size: 64px;
    }
    .h2, h2 {
        font-size: 40px;
    }
    .inner-container{
        max-width: 1437px;
    }
}

