body {
    font: 16px/1.5 inter, sans-serif;
    color: #676C86;
    font-weight: 400;
    background: #fff;
}

::-webkit-scrollbar-track {
	position: fixed;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

::-webkit-scrollbar {
	width: 5px;
}
::-webkit-scrollbar-thumb {
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: rgba(143, 143, 143, .3);
}

h1,
h2,
h3, 
h4, 
h5 {
    font-weight: 500;
    margin: 0;
    line-height: 1.3;   
    color: #1E3E62;
}

h1 {
    font-size: 30px;
    margin: 0 0 30px; 
}

h2 {
    font-size: 25px;
    margin-bottom: 30px
}

h3 {
    font-size: 20px;
    margin-bottom: 20px
}

h4 {
    font-size: 19px;
    margin-bottom: 20px
}

h5 {
    font-size: 18px;
    margin-bottom: 20px
}

iframe {
    max-width: 100%;
}

.bold,
strong, 
b {
    font-weight: 700;
}

p {
    margin: 0 0 20px;
}

ul, ol {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

a {
    color: var(--link-color);
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: var(--link-color-hover);
}

section.section--primary a {
    color: var(--link-on-primary-color);
}

section.section--primary a:hover,
section.section--primary a:focus,
section.section--primary a:active {
    color: var(--link-on-primary-color-hover);
}


.aligncenter {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.aligncenter img,
.alignnone img {
    border-radius: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

img.rounded {
    border-radius: 10px;
}

.btn {
    font-size: 20px;
    line-height: 50px;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 10px;
    min-width: 220px;
    height: 60px;
    display: inline-block;
    position: relative;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.btn.primary {
    color: var(--button-primary-color);
    background-color: var(--button-primary-bkg-color);
    border: 2px solid var(--button-primary-border-color);
}

.btn.primary:hover span,
.btn.primary:hover:before {
    position: relative;
    color: var(--button-primary-color-hover);
    z-index: 5;
}

.btn.secondary {
    color: var(--button-secondary-color);
    background: var(--button-secondary-bkg-color);
    border: 2px solid var(--button-secondary-border-color);
}

.btn.secondary:hover {
    background: var(--button-secondary-bkg-color-hover);
    color: var(--button-secondary-color-hover);
    border-color: var(--button-secondary-border-color-hover);
}

.text-component ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.text-component ul li:before {
    content: "\e903";
    font-family: 'local-business' !important;
    font-size: 18px;
    position: absolute;
    top: 0px;
    left: 3px;
    z-index: 4;
    color: var(--check-color);
}

section.section--primary .text-component ul li:before {
    color: var(--check-on-primary-color);
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    font-size: 14px;
    padding: 20px 0;
    align-items: center;
    color: var(--breadcrumb-color);
}

.breadcrumbs span.separator {
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--breadcrumb-color);
    border-left: 2px solid var(--breadcrumb-color);
    transform: rotate(135deg);
}

.breadcrumbs div:last-of-type,
.breadcrumbs div:last-of-type a {
    color: var(--breadcrumb-active-color);
}

.socials-list {
    display: flex;
    gap: 15px
}

.socials-list li  {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: inline-block;
    border: 2px solid var(--social-icon-color);
    text-align: center;
}

.socials-list a {
    display: block;
    height: 40px;
    line-height: 45px;
    color: var(--social-icon-color);
}

.socials-list a:before {
    font-size: 20px;
}

.old_geo_content img {
    display: inline-block;
    margin: 0 20px 20px 0;
}

@media only screen and (min-width: 992px) {
    img.alignright {
        float: right;
        margin: 20px 0 20px 20px;
        border-radius: 10px;
    }
    
    img.alignleft {
        float: left;
        margin: 20px 20px 20px 0;
        border-radius: 10px;
    }
}

@media only screen and (max-width: 991px) {

    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    h4 {
        font-size: 18px;
    }
    
    h5 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 776px) {
    h1 {
        font-size: 26px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    h3 {
        font-size: 19px;
    }
    
    h4 {
        font-size: 18px;
    }
    
    h5 {
        font-size: 18px;
    }

    img.alignright,
    img.alignleft {
        margin: 20px auto;
        border-radius: 10px;
    }

    .breadcrumbs {
        padding-bottom: 0;
    }
    
}