*,
::after,
::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    font-family: 'Poppins', sans-serif;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #4B7BBE;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #245BAA;
}

.border-top {
    background-image: url(../../assets/img/border-top.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 5px;

}

header {
    max-width: 1300px;
    margin: auto;

}

nav {
    display: flex;
    align-items: center;
    padding: 25px 0 20px 0;
}

a {
    color: #000;
    text-decoration: none;
    transition: .5s all;
}

a:hover {
    color: #1F3566;
}

#menu {
    display: contents;
    z-index: 2;
}

#menu-mobile {
    display: none;
}

.nav-links {
    display: flex;
    gap: 31px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-link a:hover {
    text-shadow: 0 .5rem 1rem rgba(0, 0, 0, .25) !important;
    color: #1F3566;
}

.nav-separate {
    border-left: 1px solid #E0E0E0;
    height: 70px;
    margin: auto 24px;
}

.nav-contacts {
    display: flex;
    gap: 20px
}

.nav-contact {
    display: flex;
}

.nav-contact img {
    margin-right: 13px;
}

.nav-contact a {
    font-weight: bold;
    font-size: 13px;
    white-space: nowrap;
}

.logo {
    margin-right: 25px;
}

.hamburger-btn {
    display: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    flex-wrap: wrap;
    gap: 0px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    padding: 12px 16px;
    z-index: 1;
    border-radius: 3px;
    z-index: 3;
}

.dropdown:hover .dropdown-content {
    display: flex;
    opacity: 1 !important;
    transition: .5s all;
    visibility: visible;
}

.dropdown-content a,
.dropdown-content div {
    width: 100%;
    padding: 7px;
    transition: .5s all;
    white-space: nowrap;
    color: #111;
}

.dropdown-content a:hover,
.dropdown-content .two-level-menu:hover {
    color: #fff;
    border-radius: 3px;
    background-color: #1F3566;
}

.two-level-menu {
    position: relative;
}

.dropdown-content-two-level {
    display: none;
    flex-wrap: wrap;
    gap: 0px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    padding: 12px 16px;
    z-index: 1;
    border-radius: 3px;
    z-index: 3;
    left: 90%;
    top: 0;
}

.two-level-menu:hover .dropdown-content-two-level {
    display: flex;
    opacity: 1 !important;
    transition: .5s all;
    visibility: visible;
}

footer {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 285px;
    margin-top: -285px;
}

.footer-content {
    display: flex;
    max-width: 1300px;
    border-left: 5px solid #245BAA;
    margin: 110px auto 70px auto;
    padding: 0 0 0 63px;
    gap: 80px;
}

.footer-company {
    width: 40%;
}

.footer-description {
    margin: 30px auto 35px auto;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-socials {
    display: flex;
    gap: 18px;
    transform: translateY(8px);
}

.footer-menu {
    display: grid;
    grid-template-columns: 2fr 2fr 3fr;
    gap: 30px;
    width: 60%;
}

.footer-column-name {
    font-weight: 500;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-separate {
    width: 15px;
    border-bottom: 1px solid #828282;
    margin: 21px 0 31px 0;
}

.footer-nav-items {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #BDBDBD;
}

.footer-nav-items a {
    color: #BDBDBD;
}

.footer-nav-items a:hover {
    color: #fff;
}

.footer-nav-items ul {
    list-style-type: square;
    padding-inline-start: 18px;
}

.footer-nav-items ul li {
    margin-bottom: 10px;
}

.footer-nav-items ul li:last-child {
    margin-bottom: 0px;
}

.footer-nav-services ul li:last-child {
    margin-bottom: 10px;
}

.footer-copyrights {
    display: flex;
    max-width: 1300px;
    margin: 110px auto auto auto;
    padding-bottom: 23px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #BDBDBD;
}

.footer-privace {
    color: #BDBDBD;
}

.footer-privace:hover {
    color: #fff;
    cursor: pointer;
}

.footer-copy {
    margin-left: auto;
    text-align: right;
}

.footer-social-media a img {
    transition: .5s all;
}

.footer-social-media a:hover img {
    filter: brightness(0) invert(1);
}

.slider {
    position: relative;
}

.slider-bg {
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 700px;
    display: flex;
    align-items: center;
}

.slider-content {
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

.slider-header {
    display: flex;
    align-items: center;
}

.slider-separate {
    width: 5px;
    height: 160px;
    background-color: #4B7BBE;
}

.slider-titles {
    padding-left: 40px;
}

.title-slider {
    font-size: 52px;
    line-height: 64px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin: 0;
    font-weight: 300;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.subtitle-slider {
    font-size: 52px;
    line-height: 64px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin: 0;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.description-slider {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin: 30px 0;
    width: 35%;
}

.button-slider {
    display: inline-flex;
    align-items: center;
    border: 1px solid #FFFFFF;
    color: #fff;
    padding: 7px 15px;
    font-weight: 500;
    font-size: 13px;
}

.button-slider:hover {
    background-color: #6FCF97;
    border: 1px solid #6FCF97;
    color: #fff;
}

.button-slider img {
    width: 25px !important;
    margin-right: 18px;
}

.button-slider:hover img {
    filter: invert(0);
}

.slider-dots {
    display: flex;
    gap: 20px;
    position: absolute;
    z-index: 2;
    top: 83%;
}

.slider-dot {
    border: 1px solid #4B7BBE;
    width: 10px;
    height: 10px;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.slider-dot.active {
    background-color: #fff !important;
    border: 1px solid #fff !important;
}

section {
    position: relative;
}

.about-us {
    display: flex;
    align-items: center;
    /*margin-bottom: 17px !important;*/
}

.about-us-left {
    width: 50%;
}

.about-us-right {
    display: none;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 90px 0;
}

.person-container {
    max-width: 1300px;
    margin: auto;
    padding: 90px 0;
}

.container-contact {
    position: relative;
    padding: 0;
}

.section-header {
    display: flex;
    align-items: center;
}

.section-separate {
    width: 5px;
    height: 80px;
    background-color: #4B7BBE;
    margin-top: 10px;
}

.section-titles {
    padding-left: 40px;
}

.title-section {
    font-size: 52px;
    line-height: 64px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin: 0 0 12px 0;
    font-weight: 300;
    transform: translateX(-6px);
}

.subtitle-section {
    font-size: 13px;
    line-height: 19.5px;
    color: #828282;
    margin: 0;
    font-weight: 500;
    transform: translateY(2px);
    text-transform: uppercase;
}

.subtitle-section-other {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #333333;
    transform: translateY(-20px);
    text-transform: unset;
    margin: 0;
}

.about-us-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 38px auto;
}

.button-primary {
    display: inline-flex;
    align-items: center;
    border: 1px solid #333;
    color: #333;
    padding: 7px 20px;
    font-weight: 700;
    font-size: 13px;
}

.button-primary:hover {
    background-color: #333;
    border: 1px solid #333;
    color: #fff;
}

.button-primary img {
    width: 25px !important;
    margin-right: 18px;
    filter: invert(1);
}

.button-primary:hover img {
    filter: invert(0);
}


.about-us-photo {
    background-size: cover;
    background-repeat: no-repeat;
    height: 631px;
    width: 850px;
    position: absolute;
    right: 0;
    top: -139px;
    z-index: 2;
}

.img-fluid {
    max-width: 100%;
}

.bg-grey {
    background-color: #fafafa;
}

.grey-bar {
    position: absolute;
    top: 0;
    right: 0;
    height: 500px;
    width: 200px;
    background-color: #fafafa;
}

.section-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0 0 0;
    gap: 100px;
}

.number-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 36%;
}

.number-content:first-child {
    width: 37%;
}

.number-content:last-child {
    width: 27%;
}

.number-icon {
    margin-right: 15px;
}

.number-counter {
    font-size: 52px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.number-description {
    font-size: 13px;
    text-transform: uppercase;
    line-height: 20px;
    font-weight: bold;
    width: 50%;
}

.categories {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
}

.white-bar {
    background-color: #fff;
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.category-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 490px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.category-content {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 47px;
    z-index: 3;
    transition: .5s all;
}

.category-subtitle {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 4px;
}

.category-title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 10px;
}

.category-description {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
}

.category-details {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: .5s all;
}

.category-details ul {
    padding-inline-start: 17px;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
}

.category-details li {
    line-height: 30px;
}

.category-details li a {
    position: relative;
    left: 16px;
    color: #fff;
}

.category-details li a:hover {
    text-decoration: underline;
}

.photo-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 40%;
    width: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.category-mask-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background: #1F3566;
    opacity: 0;
    transition: .5s all;
}

.active-category .category-mask-hover {
    height: 100%;
    opacity: 0.8;
}

.category:hover .category-mask-hover {
    height: 100%;
    opacity: 0.8;
}

.active-category .category-content {
    margin-bottom: 30px;
}

.category:hover .category-content {
    margin-bottom: 30px;
}

.active-category .category-details {
    opacity: 1;
    height: auto;
    margin-top: 120px;
}

.category:hover .category-details {
    opacity: 1;
    height: auto;
    margin-top: 120px;
}

.border-category {
    height: 30px;
    width: 100%;
}

.border-category-color-1 {
    background-color: #1F3566;
}

.border-category-color-2 {
    background-color: #18488A;
}

.border-category-color-3 {
    background-color: #245BAA;
}

.border-category-color-4 {
    background-color: #4B7BBE;
}

.news-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
    gap: 20px;
}

.news-big {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /*min-height: 400px;*/
    height: 100%;
    display: flex;
    align-items: flex-end;
    transition: .5s all;
}

.news-content {
    z-index: 3;
    padding: 22px 34px;
}

.news-date {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.news-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    transition: .5s all;
}

.news-button {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    color: #4B7BBE;
}

.news-button img {
    margin-left: 16px;
    transition: .5s all;
}

.news-big:hover {
    transform: scale(1.03);
}

.news-big:hover .news-button img {
    margin-left: 24px;
}

.news-small {
    display: flex;
    gap: 20px;
    align-items: baseline;
}

.news-right {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
}

.news-small-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 145px;
    min-width: 200px;
    margin-right: 20px;
    transition: 0.5s all;
}

.news-small-bg:hover {
    transform: scale(1.03);
}

.news-date-small {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    color: #828282;
    margin-bottom: 5px;
}

.news-title-small {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #333333;
    margin-bottom: 6px;
}

.news-button-small {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    color: #4B7BBE;
}

.news-button-small img {
    margin-left: 16px;
    transition: .5s all;
    filter: invert(1);
}

.news-small:hover .news-title-small {
    color: #4B7BBE;
}

.news-small:hover .news-button-small img {
    margin-left: 24px;
}

.team-container {
    padding-bottom: 0;
}

.team {
    position: relative;
    padding: 60px 0 30px 0px;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.team-item {
    position: relative;
    z-index: 3;
}

.person-bg {
    position: relative;
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
    min-height: 490px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    transition: .5s all;
}

.person-bg:hover {
    background-size: 110%;
}

.person-bg .photo-second-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background: #1F3566;
    opacity: 0;
    transition: .5s all;
}

.person-bg:hover .photo-second-mask {
    height: 43%;
    opacity: 0.8;
}

.person-content {
    z-index: 3;
    padding: 27px 18px;
    transition: .5s all;
}

.person-bg:hover .person-content {
    margin-bottom: 50px;
}

.person-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #FFFFFF;
    margin-bottom: 5px;
    word-spacing: 10000000px;
}

.person-subtitle {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    color: #E0E0E0;
    height: 40px;
}

.arrow-right-link {
    position: absolute;
    top: 50%;
    right: -85px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    width: 85px;
    background-color: #245BAA;
    margin: 0;
    border-radius: 0;
    z-index: 3;
}

.arrow-right-link img {
    margin-left: 0;
    transition: .5s all;
}

.arrow-right-link:hover img {
    margin-left: 16px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
    padding-top: 117px;
    background-color: #FAFAFA;
    padding: 90px 100px;
    position: relative;
    z-index: 3;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 52px;
    line-height: 63px;
    color: #333333;
    margin: 0 0 30px 0;
}

.contact-icons {
    display: flex;
    align-items: center;
    gap: 28px;
}

.contact-address {
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    color: #000000;
}

.form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    z-index: 2;
}

.input-group {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    width: 100%;
}

.input-group div {
    width: 100%;
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 11px 18px;
    border: 1px solid #E0E0E0;
    font-family: 'Montserrat', sans-serif;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    margin: 0;
    width: 15px;
    height: 15px;
    min-width: 15px;
    min-height: 15px;
    border: 1px solid #333333;
    border-radius: 0;
    display: grid;
    place-content: center;
    font: inherit;
    color: red;
    display: grid;
    place-content: center;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #1F3566;
    background-color: #1F3566;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

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

.checkbox-input {
    display: flex;
    align-items: center;
}

.rodo-submit {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.rodo-submit label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #828282;
    margin-left: 13px;
}

.rodo-submit button {
    margin-left: auto;
    background-color: transparent;
    transition: .5s all;
    cursor: pointer;
}

.right-blue-square-1 {
    position: absolute;
    right: -30px;
    top: 0;
    background: #4B7BBE;
    height: calc(100% - 30px);
    width: 280px;
    z-index: 2;
    margin-top: 30px;
}

.right-blue-square-2 {
    position: absolute;
    right: -30px;
    top: 0;
    background: #4B7BBE;
    height: calc(100% + 30px);
    width: 280px;
    z-index: 1;
}

.white-bar-vertical {
    position: absolute;
    height: 100%;
    width: 12%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #fff;
}

.news-tag {
    background-color: #6FCF97;
    display: inline-block;
    padding: 5.5px 13.25px;
    margin-bottom: 19px;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff !important;
}

.news-tag-small {
    display: inline-block;
    background-color: #6FCF97;
    color: #fff;
    padding: 5.5px 13.25px;
    font-size: 13px;
    text-transform: uppercase;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 67px 70px 37px 70px;
    width: 100%;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 48px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.subpage-banner {
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 450px;
    display: flex;
    align-items: center;
}

.banner-header {
    align-items: flex-end;
}

.banner-separate {
    height: 95px;
}

.title-slider-banner {
    font-size: 52px;
    line-height: 64px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin: 0;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.description-slider-banner {
    display: flex;
    gap: 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    transform: translateY(3px);
}

.description-slider-banner a {
    color: #fff;
}

.section-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Montserrat', sans-serif;
    margin-top: 70px;
}

.person-icon {
    display: flex;
    color: #fff;
    gap: 11px;
    align-items: center;
    margin: 10px auto 0 auto;
}

.person-bg:hover .photo-second-about-mask {
    height: 60%;
    opacity: 0.8;
}

.person-social-icon {
    position: absolute;
    bottom: 5px;
    right: 10px;
    z-index: 3;
    filter: brightness(0) invert(1);
    transition: .5s all;
}

.person-social-icon:hover {
    filter: none;
}

.about-person {
    display: flex;
    gap: 48px;
}

.about-person-left {
    width: 22%;
}

.about-person-img {
    position: relative;
    display: inline-flex;
}

.about-person-img img {
    max-width: 100%;
}

.about-person-right {
    width: 78%;
}

.about-person-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 50px auto;
}

.about-person-icon {
    display: flex;
    width: 100%;
    color: #333;
    gap: 16px;
    align-items: center;
}

.tab-item {
    cursor: pointer;
    border-top: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
    padding: 39px 0;
}

.tab-title {
    display: flex;
    flex-wrap: wrap;
    gap: 16.5px;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
}

.tab-description {
    height: 0;
    overflow: hidden;
    transition: .5s all;
    padding: 0px;
    opacity: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Montserrat', sans-serif;
}

.tab-description-active {
    height: auto;
    padding-top: 39px;
    opacity: 1;
}

.pin-map {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #245BAA;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    height: 84px;
    width: 84px;
    transition: .5s all;
}

.pin-map:hover {
    background-color: #fff;
}

.pin-map:hover img {
    filter: invert(1);
}

.contact-page {
    display: flex;
}

.contact-page-left {
    padding-top: 90px;
    width: 50%;
}

.contact-page-right {
    background-color: #fafafa;
    width: 50%;
    padding: 90px 56px 79px 56px;
}

.contact-details {
    margin: 69px auto;
}

.contact-details a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

.contact-details-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-details-links .contact-address {
    width: 100%;
}

.contact-details-address {
    margin-top: 45px;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
}

.contact-details-hours {
    font-family: 'Montserrat';
    margin-top: 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.banner-buttons {
    display: flex;
    gap: 19px;
    margin-top: 47px;
}

.button-banner {
    display: inline-flex;
    align-items: center;
    border: 1px solid #FFFFFF;
    color: #fff;
    padding: 7px 15px;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
}

.button-banner-active,
.button-banner:hover {
    background-color: #6FCF97;
    border: 1px solid #6FCF97;
    color: #fff;
}

.news-page .news-container {
    margin-top: 0;
}

.news-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 37px;
    gap: 30px 20px;
}

.new-item-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 225px;
    min-width: 200px;
    margin-bottom: 25px;
    transition: .5s all;
}

.new-item-bg:hover {
    transform: scale(1.03);
}

.new-item:hover .news-title-small {
    color: #4B7BBE;
}

.new-item:hover .news-button-small img {
    margin-left: 24px;
}

.pagination {
    display: flex;
    gap: 20px 10px;
    margin-top: 90px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.arrow-paging {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    color: #245BAA;
    margin: auto 10px;
}

.btn-paging {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid #E0E0E0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #4F4F4F;
}

.btn-paging:hover,
.btn-paging-active {
    background: #245BAA;
    color: #fff;
}

.article-box {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
}

.article {
    width: calc(65% - 24px);
}

.article-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-size: 52px;
    line-height: 53px;
    margin: 0;
    transform: translateY(-7px);
}

.sidemenu {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 24px;
    height: 100%;
    width: calc(35%);
    padding-left: 33px;
    border-left: 1px solid #E0E0E0;
    margin-bottom: 24px;
}

.sidemenu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidemenu-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 10px;
}

.article-details {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 26px auto;
}

.article-date {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    white-space: nowrap;
}

.article-separate {
    height: 1px;
    width: 100%;
    background-color: #E0E0E0;
}

.article-content img {
    max-width: 100%;
}

.article-description {
    margin: 20px auto 40px auto;
}

.article-description p strong {
    font-weight: 700;
    font-size: 17px;
    line-height: 25px;
    color: #000000;
    font-family: 'Poppins' !important;
    font-style: normal !important;
}

.article-description p {
    font-family: 'Montserrat' !important;
    font-style: normal !important;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #000000;
}

.article-description ul {
    font-family: 'Montserrat' !important;
    font-style: normal !important;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #000000;
}

.article-separate-similar {
    height: 1px;
    width: 100%;
    background-color: #E0E0E0;
}

.article-questions {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.similar-articles {
    margin-top: 74px;
}

.similar-articles .news-items {
    margin-top: 69px;
}

.alert-info-success {
    color: #000;
    background-color: #6FCF97;
    border: 1px solid #6FCF97;
    position: fixed;
    top: 0px;
    right: 0;
    left: 0;
    padding: 8px 40px;
    z-index: 100;
    font-weight: bold;
    text-align: center;
}

.alert-info-false {
    color: #111;
    background-color: #ff0000;
    border: 1px solid #ff0000;
    position: fixed;
    top: 0px;
    right: 0;
    left: 0;
    padding: 8px 100px;
    z-index: 100;
    font-weight: bold;
    text-align: center;
}

.alert-content {
    display: flex;
    justify-content: center;
    margin: auto;
    align-items: center;
    max-width: 1360px;
    padding: 0 40px;
}

.alert-text {
    color: #000 !important;
    width: 100%;
}

.close-alert {
    background-color: rgba(70, 70, 70, .7);
    transition: .5s all;
    cursor: pointer;
    height: 24px;
    width: 24px;
    margin-left: auto;
}

.close-alert img {
    filter: brightness(0) invert(1);
}

.close-alert:hover {
    background-color: rgb(70, 70, 70);
}

.error_valid {
    margin-left: auto;
}

.error_valid {
    display: block;
    color: #f00;
    font-size: 12px;
    line-height: 16px;
}

.error_valid_input {
    border: 1px solid #f00 !important;
}

.media-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.media-item {
    padding: 20px 23px;
    border: 1px solid #F2F2F2;
    transition: .5s all;
    cursor: pointer;
    position: relative;
    display: flex;
    height: 115px;
}

.media-item-active {
    border-bottom: 0;
    box-shadow: 0 0px 10px rgba(0, 0, 0, .15) !important;
}

.media-content {
    display: flex;
    align-items: center;
}

.media-separator {
    width: 1px;
    height: 40px;
    margin: 0 23px;
    background-color: #E0E0E0;
}

.media-text {
    color: #333333;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 21px;
}

.media-counter {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #828282;
}

.media-more {
    transition: .5s all;
    opacity: 0;
    overflow: hidden;
    margin: 0 auto;
    height: 0;
    transition: .5s all ease-out;
    position: absolute;
    left: -1px;
    right: -1px;
    background-color: #fff;
    z-index: 20;
    border-left: 1px solid #F2F2F2;
    border-right: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .15) !important;
    top: 114px;
}

.media-list {
    list-style: none;
    padding: 0 38px;
    margin: 0;
}

.media-list a {
    transition: .5s all;
}

.media-list a:hover {
    color: #245BAA;
}

.media-item-active .media-more {
    height: auto;
    opacity: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: visible;
}

.media-list li::before {
    content: "\2022";
    color: #245BAA;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 1.5em;
}

.media-list li {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 5px;
}

.media-logo {
    display: flex;
}

.media-logo img {
    min-width: 108px;
}

.categories-business {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    position: relative;
    z-index: 2;

}

.categories-business .category-content {
    margin-bottom: 20px;
}

.categories-business .category-content {
    padding: 0 50px;
}

.categories-business .category-details {
    margin-top: 20px !important;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.categories-business .category-bg {
    height: 600px;
}

.categories-business .border-category {
    height: 15px;
}

.business-items {
    max-width: 1300px;
    margin: auto;
    padding: 90px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 49px 60px;
}

.business-item {
    display: flex;
    gap: 22px;
}

.business-item .text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    width: 100%;
}

.grecaptcha-badge {
    visibility: hidden !important;
}

.services-list-group:hover {
    color: #fff;
    cursor: pointer
}

.news-menu:hover {
    color: #fff;
    cursor: pointer
}


.file-input {
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 20px;
    margin-left: -3px;
}

.file-input div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-input #fileName {
    line-height: 17px;
    padding-top: 5px;
    cursor: pointer;
    font-size: 13px;
}

.file-input img,
.file-input svg {
    vertical-align: middle;
    max-width: 100%;
    width: 44px;
    height: auto;
    cursor: pointer;
    fill: blue;
}

.advert-bg {
    aspect-ratio: 16/6;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.advert-content-2 {
    display: inline-block !important;
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 400px;
}

.advert-content-2-bg {
    background-color: rgba(0, 0, 0, .9);
    padding: 20px;
    color: #fff;
}

.advert-content-2 h3 {
    margin-top: 0;
}

.advert-bg img {
    display: none;
}

.advert-content h3 {
    margin: 0;
}

.subcategories-advert-buttons {
    display: flex;
    margin-bottom: 90px;
    gap: 19px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.subcategories-advert-buttons .button-advert {
    width: 250px;
    border: 1px solid #000;
    text-align: center;
    padding: 7px 15px;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
}

.subcategories-advert-buttons .button-advert:hover,
.subcategories-advert-buttons .button-advert.button-advert-active {
    background-color: #6FCF97;
    border: 1px solid #6FCF97;
    color: #fff;
}

.address-url {
    color: #4B7BBE;
}

.address-url:hover {
    text-decoration: underline;
}

.advert-gallery-bg {
    display: block;
    height: 150px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.advert-title-price {
    display: flex;
    align-items: center;
}

.advert-title-price .advert-price {
    margin-left: auto;
    font-size: 24px;
    font-weight: 500;
    background-color: #6FCF97;
    padding: 7px 15px;
    font-weight: 500;
    color: #fff;
}

.details-table-adverts {
    margin-top: 40px;
}

.details-table-adverts .items {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.details-table-adverts .item-grid {
    display: grid;
    border-bottom: 1px solid #e0e0e0;
    grid-template-columns: 1fr 1fr;
    padding: 10px;
    align-items: center;
}

.details-table-adverts i {
    margin-right: 10px;
}

.light-color {
    color: #404041;
}

.font-weight-bold {
    font-weight: bold;
}

.files-download a {
    display: block;
    margin-bottom: 10px;
    margin-left: 3px;
    color: #4B7BBE;
}

.files-download a:hover {
    text-decoration: underline;
}

.rodo-submit-advert {
    display: block;
    text-align: right;
}

.rodo-submit-advert .checkbox-input {
    padding: 10px 0;
}

.rodo-submit-advert button {
    margin-top: 10px;
}

.contact-advert a {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    margin-right: 20px;
    color: #4B7BBE;
}

.contact-advert a:hover {
    text-decoration: underline;
}

.news-container {
    min-height: 475px;
}

.dropdown-content span {
    cursor: pointer;
}

.details-form-advert {
    padding: 37px 44px 45px 44px;
    background-color: #fafafa;
}

.details-form-advert h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.details-table-adverts .contact-icons {
    margin-bottom: 20px;
}

h3.title-section {
    font-size: 34px;
}

.modal-inner .section-separate {
    margin-top: -10px;
    height: 40px;
}

.contact-advert {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.owl-gallery {
    margin-top: 20px;
}

.owl-photos img,
.owl-photos video {
    aspect-ratio: 5/3;
    object-fit: cover;
}

form small {
    color: #828282;
    font-size: 9px;
}