@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --bg-light-blue: #eef6fe;
    --bg-dark-blue: #0c2744;
    --text-secondary: #4a4a4a;
    --blue: #215088;
    --blue-transparency: rgba(0, 43, 93, 0.6);
    --accent-blue: #57a3f3;
    --red: #942125;
    --white: #fff;
}

html{
    scroll-behavior: smooth;
}

body * {
    font-family: "Roboto", serif;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1400px;
    width: calc(100% - 60px);
    margin: 0 auto;
}

.page {
    position: relative;
}

.header {}

.header__top {
    background-color: var(--bg-light-blue);
    padding: 10px 0;
}

.headerTop__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo {}

.logo__link {
    display: flex;
    /* max-width: 260px; */
    width: 100%;
}

.logo__img {
    /* max-height: 90px; */
    height: 50px;
    width: auto;
    object-fit: contain;
}

.headerTop__right {
    display: flex;
    align-items: center;
    gap: 50px;
}

.headerTop__btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.headerTop__btn {
    text-decoration: none;
    color: var(--blue);
    font-weight: 500;
    transition: 500ms all;
    position: relative;
    padding: 5px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 5px;
}

.headerTop__btn:after {
    content: "";
    clear: both;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-blue);
    transition: 500ms all;
    transform: translateX(-100%);
}

.headerTop__btn:hover {
    color: var(--accent-blue);
}

.headerTop__btn:hover:after {
    transform: initial;
}

.language {
    position: relative;
}

.language__currnet {
    color: var(--blue);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.language__currnet:after {
    content: "";
    clear: both;
    position: absolute;
    top: 7px;
    right: -13px;
    width: 6px;
    height: 6px;
    border-bottom: 1px solid var(--blue);
    border-right: 1px solid var(--blue);
    transform: rotate(45deg);
}

.line {
    height: 20px;
    width: 1px;
    background-color: #bec8d1;
}

.language__currnet-icon path {
    stroke: var(--blue);
}

.language__sub {
    position: absolute;
    width: 100%;
    top: 120%;
    background-color: #fff;
    z-index: 5;
    padding: 50px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    width: 85px;
    right: -25px;
    padding: 22px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid #bec8d1;
    border: 1px solid #ededed;
    border-radius: 3px;
}

.languageSub__link {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: var(--blue);
    font-size: 16px;
    font-weight: 500;
    transition: 500ms all;
}

.languageSub__link:hover {
    color: var(--accent-blue);
}

.languageSub__link-active {
    color: var(--accent-blue);
}

.languageSub__link-icon {
    max-width: 20px;
    border: 1px solid #ededed;
}

.language:hover .language__sub {
    opacity: 1;
    visibility: visible;
}

.header__bottom {
    padding: 20px 0 16px 0;
    background-color: var(--white);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    border-bottom: 1px solid var(--bg-light-blue);
}

.headerBottom__content {
    display: flex;
    justify-content: space-between;
}

.nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu__li {
    position: relative;
}

.menu__link {
    text-decoration: none;
    color: var(--bg-dark-blue);
    font-weight: 500;
    font-size: 16px;
    transition: 500ms all;
    overflow: hidden;
    padding-bottom: 5px;
    position: relative;
    display: block;
}

.menu__link:after {
    content: "";
    clear: both;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-blue);
    transform: translateX(-100%);
    transition: 500ms all;
}

.menu__li:hover .menu__link {
    color: var(--accent-blue);
}

.menu__li:hover .menu__link:after {
    transform: initial;
}

.headerBottom__btnWrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.headerBottom__btn {
    border: 1px solid var(--blue);
    height: 50px;
    display: flex;
    align-items: center;
    max-width: 230px;
    width: 100%;
    justify-content: center;
    color: var(--blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: var(--white);
    transition: 500ms all;
}

.headerBottom__btn:hover {
    background-color: var(--blue);
    color: var(--white);
}

.menu__li-sub{
    margin-right: 15px;
}

.menu__li:nth-last-of-type(){
    margin-right: 0px;
}

.menu__li-sub:after {
    content: "";
    clear: both;
    position: absolute;
    top: 3px;
    right: -14px;
    width: 5px;
    height: 5px;
    border-bottom: 2px solid var(--bg-dark-blue);
    border-right: 2px solid var(--bg-dark-blue);
    transform: rotate(45deg);
    transition: 500ms all;
}

.menu__li-sub:hover:after {
    border-color: var(--accent-blue);
}

.menu__sub {
    position: absolute;
    width: 100%;
    top: 140%;
    background-color: #fff;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    width: 200px;
    right: -70px;
    padding: 30px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid #bec8d1;
    border: 1px solid #ededed;
    border-radius: 3px;
}

.menu__li-sub:hover .menu__sub {
    opacity: 1;
    visibility: visible;
}

.menuSub__li {}

.menuSub__link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: 500ms all;
}

.menuSub__li:hover .menuSub__link {
    color: var(--accent-blue);
}

.sliderBlock {
    min-height: 600px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    display: flex;
    align-items: center;
    position: relative;
}

.sliderBlock::after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    opacity: 0.8;
}

.sliderBlock__content {
    max-width: 900px;
    padding: 50px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.sliderBlock__title {
    color: var(--bg-light-blue);
    font-size: 40px;
    font-weight: bold;
    line-height: 140%;
    text-transform: uppercase;
}

.sliderBlock__textWrap {
    margin-top: 20px;
}

.sliderBlock__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    color: #eef6fe;
}

.sliderBlock__btnWrap {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
}

.sliderBlock__btn2 {
    color: var(--swiper-theme-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 500ms all;
    border: 1.5px solid var(--accent-blue);
    height: 50px;
    padding: 0 30px;
    color: var(--accent-blue);
}

.sliderBlock__btn2-icon path {
    stroke: var(--accent-blue);
    transition: 500ms all;
}

.sliderBlock__btn2:hover {
    color: var(--white);
    background-color: var(--accent-blue);
}

.sliderBlock__btn2-icon {
    transition: 500ms all;
}

.sliderBlock__btn2:hover .sliderBlock__btn2-icon {
    transform: translateX(5px);
}

.sliderBlock__btn2:hover .sliderBlock__btn2-icon path {
    stroke: var(--white);
}

.sliderBlock__btn {
    top: 45%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--bg-light-blue);
    background-color: var(--white);
    cursor: pointer;
    transition: 500ms all;
}

.sliderBlock__btn path {
    stroke: var(--bg-dark-blue);
    transition: 500ms all;
}

.sliderBlock__btn-prev {
    left: 10px;
}

.sliderBlock__btn-next {
    right: 10px;
}

.sliderBlock__btn:hover {
    background-color: var(--accent-blue);
}

.sliderBlock__btn:hover path {
    stroke: var(--white);
}

.companyProfileSection {
    padding: 70px 0 110px;
}

.companyProfile {}

.main__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.mainHeader__title {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--blue);
    line-height: 140%;
}

.mainHeader__title span {
    color: var(--accent-blue);
}

.companyProfile__content {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.companyProfile__left {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

/* .companyProfile__left .sliderBlock__btnWrap{

} */

.companyProfile__textWrap {}

.companyProfile__text {
    color: var(--blue);
    font-size: 23px;
    line-height: 140%;
}

.large-first-letter::first-letter {
    -webkit-initial-letter: 3;
    initial-letter: 3;
    color: var(--accent-blue);
    font-weight: bold;
    margin-right: .75em;
}

.companyProfile__right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.companyProfile__imgWrap {
    position: relative;
    display: flex;
}

.companyProfile__img {
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.companyProfile__imgWrap:after {
    content: "";
    clear: both;
    position: absolute;
    top: -50px;
    left: 80px;
    width: 90%;
    height: 90%;
    border: 15px solid var(--accent-blue);
}

.companyProfile__imgWrap:before {
    content: "";
    clear: both;
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 20%;
    height: 28%;
    border: 12px solid var(--blue);
    z-index: 2;
}

.companyNewsSection {
    padding: 70px 0;
    background-color: var(--bg-light-blue);
    position: relative;
}

.companyNews {}

.companyNews__content {
    margin-top: 50px;
    width: calc(100% + (100vw - 1417px) / 2);
}

.companyNewsSection__bg {
    position: absolute;
    max-width: 700px;
    bottom: 20px;
    left: 20px;
    opacity: 0.3;
}

.companyNews {
    position: relative;
    z-index: 1;
}

.w-240 {
    width: 340px !important;
}

.news__link {
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
    min-height: 391px;
}

.newsLink__imgWrap {
    display: flex;
    border-radius: 9px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 220px;
}

.newsLink__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 500ms all;
}

.newsLink__content {
    background-color: var(--white);
    padding: 20px 20px 60px;
    box-sizing: border-box;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    position: relative;
    overflow: hidden;
    margin-top: -6px;
    transition: 500ms all;
}

.newsLink__titleWrap {}

.newsLink__title {
    color: var(--accent-blue);
    font-size: 20px;
    line-height: 140%;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: 500ms all;
}

.newsLink__textWrap {
    margin-top: 10px;
    min-height: 59px;
}

.newsLink__text {
    font-size: 14px;
    line-height: 140%;
    font-weight: 500;
    color: var(--blue-transparency);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.newsLink__btnWrap {}

.newsLink__btn {
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    right: -35px;
    bottom: -35px;
    transition: 500ms all;
}

.newsLink__btn-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 15px;
    left: 14px;
}

.newsLink__btn-icon path {
    stroke: var(--white);
}

.news__link:hover .newsLink__content {
    background-color: var(--accent-blue);
}

.news__link:hover .newsLink__title {
    color: var(--white);
}

.news__link:hover .newsLink__btn {
    background-color: var(--blue);
}

.news__link:hover .newsLink__img {
    transform: scale(1.05);
}

.mainHeader__btnWrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.mainHeader__btn {}

.newsSlider__btnWrap {
    display: flex;
    gap: 5px;
}

.mainHeader__right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.newsSlider__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--white);
    border: 1px solid var(--blue-transparency);
    cursor: pointer;
    transition: 500ms all;
}

.newsSlider__btn:hover {
    background-color: var(--blue-transparency);
}

.newsSlider__btn-img path {
    stroke: var(--blue-transparency);
    transition: 500ms all;
}

.newsSlider__btn:hover .newsSlider__btn-img path {
    stroke: var(--white);
}

.newsSlider__btn-prev {}

.newsSlider__btn-img {}

.newsSlider__btn-next {}

.news__link-more {
    background-color: var(--accent-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 500ms all;
}

.newsLinkMore__cyrcle {
    background-color: var(--bg-light-blue);
    width: 170px;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--blue);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.news__link-more:hover {
    background-color: var(--blue);
}

.headerTop__btn-icon path {
    stroke: var(--blue);
    transition: 500ms all;
}

.headerTop__btn:hover .headerTop__btn-icon path {
    stroke: var(--accent-blue);
}

.directionSection {
    padding: 70px 0;
    position: relative;
}

.directionSection:after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/points-bg.jpeg);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    filter: grayscale(1);
    opacity: 0.05;
}

.direction {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.direction__block {
    background-color: var(--blue);
    padding: 60px 50px 50px;
    position: relative;
}

.direction__titleWrap {
    position: absolute;
    top: -20px;
    left: 20px;
    background-color: var(--accent-blue);
    padding: 5px 30px;
}

.direction__title {
    color: var(--bg-light-blue);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: bold;
}

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

.direction__elem {
    color: var(--bg-light-blue);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: 500ms all;
}

.direction__elem span {
    color: var(--accent-blue);
    transition: 500ms all;
}

.direction__sub {
    position: absolute;
    width: 100%;
    top: 140%;
    background-color: #fff;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    width: 170px;
    right: -40px;
    padding: 30px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid #bec8d1;
    border: 1px solid #ededed;
    border-radius: 3px;
    cursor: default;
}

.direction__elem:hover .direction__sub {
    opacity: 1;
    visibility: visible;
}

.directionSub__link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 500ms all;
}

/* .directionSub__link:hover {
    color: var(--blue);
} */

.direction__elem:hover {
    color: orange;
}

.direction__elem:hover span {
    color: var(--bg-light-blue);
}

.usefulLinksSection {
    padding: 70px 0;
    background-color: var(--bg-light-blue);
}

.usefulLinks {}

.main__header {}

.mainHeader__title {}

.usefulLinks__content {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.usefulLinks__block {
    flex: 1;
    min-height: 400px;
    position: relative;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.usefulLinksBlock__titleWrap {
    position: relative;
    z-index: 1;
    display: flex;
}

.usefulLinksBlock__title {
    background-color: var(--blue);
    padding: 10px 20px;
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.usefulLinksBlock__menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.usefulLinksBlockMenu__link {
    color: var(--bg-light-blue);
    text-decoration: none;
    font-weight: 500;
    transition: 500ms all;
    line-height: 140%;
    font-size: 16px;
}

.usefulLinksBlockMenu__link:hover {
    color: orange;
}

.bg-1 {
    /* background: url(../img/links-bg-1.webp); */
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}

/* .bg-2 {
    background: url(../img/links-bg-2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-3 {
    background: url(../img/links-bg-3.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-4 {
    background: url(../img/links-bg-4.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} */

.usefulLinks__block:after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(87, 163, 243, 0) 0%, rgb(33 80 136 / 90%) 70%);
}

.footer {}

.footer__top {
    background: var(--bg-dark-blue);
    padding: 50px 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footerTop__content {
    display: flex;
    gap: 140px;
}

.footerTop__col {
    flex: 1;
}

.footerTopCol__titleWrap {}

.footerTopCol__title {
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}

.footerTopCol__menu {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footerTopCol__menu ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footerTopColMenu__link {
    text-decoration: none;
    color: rgb(255 255 255 / 50%);
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    transition: 500ms all;
}

.footerTopCol__menu ul li a {
    text-decoration: none;
    color: rgb(255 255 255 / 50%);
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    transition: 500ms all;
}

.footerTopCol__menu ul li a:hover {
    color: var(--white);
}

.footerTopCol__text {
    color: rgb(255 255 255 / 50%);
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
}

.footerTopColMenu__link:hover {
    color: var(--white);
}

.footer__bottom {
    background-color: var(--blue);
    padding: 20px 0;
}

.footerTop__right {
    display: flex;
    flex: 1;
}

.footerBottom__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {}

.copyright__text {
    color: var(--bg-light-blue);
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}

.policy {}

.policy__link {
    margin-right: 5px;
    padding-right: 8px;
    border-right: 1px solid var(--bg-light-blue);
    color: var(--bg-light-blue);
    text-decoration: none;
    font-size: 14px;
    transition: 500ms all;
}

.policy__link:hover {
    color: rgba(255, 255, 255, 0.5);
}

.policy__link:last-of-type {
    margin-right: initial;
    padding-right: initial;
    border-right: initial;
}

.breadcrumbsSection {
    height: 250px;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark-blue);
    position: relative;
    overflow: hidden;
}

.breadcrumbs {
    position: relative;
    z-index: 1;
}

.breadcrumbs__titleWrap {}

.breadcrumbs__title {
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
}

.breadcrumbs__links {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs__link {
    text-decoration: none;
    font-size: 18px;
    color: var(--bg-light-blue);
    transition: 500ms all;
}

.breadcrumbs__link:hover {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs__line {
    width: 1px;
    height: 17px;
    background-color: var(--white);
    transition: 500ms all;
}

.breadcrumbs__active {
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 17px;
}

.breadcrumbs-bg::after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/about-bg.webp);
    background-repeat: no-repeat;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.breadcrumbs-bg-1::after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/services-bg.webp);
    background-repeat: no-repeat;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.breadcrumbs-bg-2::after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/contacts-bg.webp);
    background-repeat: no-repeat;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.breadcrumbs-bg-3::after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/news-bg.webp);
    background-repeat: no-repeat;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.mainBlockSection {
    padding: 70px 0;
}

.mainBlock {
    display: flex;
    gap: 100px;
    position: relative;
}

.sidebar {
    display: flex;
    max-width: 300px;
    width: 100%;
    align-self: baseline;
    border: 2px solid var(--accent-blue);
    padding: 50px 30px;
    background-color: var(--bg-light-blue);
    position: sticky;
    top: 110px;
    left: 0;
    border-radius: 6px;
}

.sidebar__links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar__link {
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: var(--accent-blue);
    transition: 500ms all;
}

.sidebar__link:hover {
    color: var(--blue);
}

.sidebar__link.active {
    color: var(--blue);
}


.content {
    flex: 1;
}

.h1, .contentRte h1 {
    font-size: 36px;
    color: var(--accent-blue);
    font-weight: bold;
    line-height: 140%;
}

.h2, .contentRte h2 {
    font-size: 32px;
    color: var(--accent-blue);
    font-weight: bold;
    line-height: 140%;
}

.h3, .contentRte h3 {
    font-size: 30px;
    color: var(--accent-blue);
    font-weight: bold;
    line-height: 140%;
}

.h4, .contentRte h4 {
    font-size: 28px;
    color: var(--accent-blue);
    font-weight: bold;
    line-height: 140%;
}

.h5, .contentRte h5 {
    font-size: 26px;
    color: var(--accent-blue);
    font-weight: bold;
    line-height: 140%;
}

.text__wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text, .contentRte p {
    color: var(--bg-dark-blue);
    font-size: 18px;
    line-height: 140%;
    margin-top: 30px;
}

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

.contentRte figure{
    margin-top: 30px;
}

.contentRte figcaption{
    display: none;
}

.contentRte table {
    width: 100% !important;
    margin-top: 50px;
}

.contentRte table td,
.contentRte table th {
    border: .0625rem solid #dddee1;
    text-align: center;
}

.contentRte table td {
    transition: background-color .3s ease;
}

.contentRte table td,
.contentRte table th {
    padding: .5rem;
}

.contentRte table tr:first-child th {
    background-color: var(--bg-light-blue);
}

.content ul,
.content ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.content li {
    color: var(--bg-dark-blue);
    font-size: 18px;
    line-height: 140%;
    padding-left: 15px;
    position: relative;
}

.content ul li:after {
    content: "";
    clear: both;
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: var(--accent-blue);
    border-radius: 50%;
}

.content ol li {
    padding: 0;
}

.content ol {
    counter-reset: myOrderedListItemsCounter;
}

.content ol li:before {
    counter-increment: myOrderedListItemsCounter;
    content: counter(myOrderedListItemsCounter)".";
    margin-right: .5em;
    color: var(--accent-blue);
    font-weight: bold;
}

.content a:not([class]) {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.content a:hover {
    text-decoration: none;
}

hr {
    border-color: var(--bg-light-blue);
}

.text-center {
    text-align: center;
}

.imgWrap {
    display: flex;
    justify-content: center;
}

.mainBlockSection {}

.mainBlock {}

.content {}

.contactPage {
    display: flex;
    gap: 50px;
    position: relative;
}

.contactPage__left {
    flex: 1;
}

.contactPage__infoBlock {
    background-color: var(--bg-light-blue);
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.contactPage__info {
    border-bottom: 1px solid var(--accent-blue);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.contactPage__info:last-of-type {
    margin-bottom: initial;
    padding-bottom: initial;
    border-bottom: initial;
}

.contactPageInfo__titleWrap {}

.contactPageInfo__elems {
    /* margin-top: 20px; */
    display: flex;
    gap: 20px;
}

.contactPageInfo__elem {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.contactPageInfo__text {
    color: var(--blue);
    font-size: 15px;
    font-weight: 500;
    line-height: 140%;
}

.contactPage__right {
    flex: 1;
}

.contactForm {
    border: 1px solid var(--blue);
    padding: 40px;
    background-color: var(--blue);
    position: sticky;
    top: 80px;
}

.contactForm__header {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contactFormHeader__title {
    color: var(--bg-light-blue);
}

.contactFormHeader__text {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-blue);
}

.contactForm__content {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contactForm__row {
    display: flex;
    gap: 10px;
}

.contactForm__elem {
    flex: 1;
    position: relative;
}

.input {
    width: 100%;
    height: 40px;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: var(--blue-transparency);
    border: none;
    color: var(--white);
    border: 1px solid transparent;
    transition: 500ms all;
}

.error .input {
    color: #942125;
    border-color: var(--red);
    background-color: #ef9497;
}


.input::placeholder {
    color: var(--white);
}


.error .input::placeholder {
    color: #942125;
}

.input:focus {
    outline: none;
}

.textarea {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: var(--blue-transparency);
    border: none;
    color: var(--white);
}

.error .textarea {
    color: #942125;
    border-color: var(--red);
    background-color: #ef9497;
}

.textarea:focus {
    outline: none;
}

.textarea::placeholder {
    color: var(--white);
}

.error .textarea::placeholder {
    color: #942125;
}

.contactForm__btnWrap {}

.contactForm__btn {
    max-width: initial;
    cursor: pointer;
    background-color: var(--blue);
    border-color: var(--white);
    color: var(--white);
}

.contactForm__btn:focus {
    outline: none;
}

.contactForm__btn:hover {
    background-color: var(--white);
    color: var(--blue);
}

.newsPage {}

.newsPage__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.newsPage .newsLink__content {
    border: 1px solid var(--accent-blue);
    border-top: none;
}

.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.pagination__link {
    text-decoration: none;
    color: var(--accent-blue);
    font-size: 16px;
    font-weight: 500;
    transition: 500ms all;
}

.arrow {
    width: 5px;
    height: 5px;
    display: block;
    border-bottom: 2px solid var(--accent-blue);
    border-right: 2px solid var(--accent-blue);
    transition: 500ms all;
}

.arrow-prev {
    transform: rotate(135deg);
}

.pagination__link:hover {
    color: var(--bg-dark-blue);
}

.pagination__link.active {
    color: var(--bg-dark-blue);
}

.arrow-next {
    transform: rotate(-45deg);
}

.pagination__link:hover .arrow {
    border-color: var(--bg-dark-blue);
}

.newsDetail__img {
    aspect-ratio: 2/1;
    object-fit: cover;
}

.newsDetail__img2 {
    max-height: 450px;
}

.tabs {
    margin-top: 50px;
}

.tabs__header {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tabsHeader__btn {
    height: 40px;
    padding: 0 30px;
    background: no-repeat;
    border: 1px solid var(--blue);
    color: var(--blue);
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 500ms all;
}

.tabsHeader__btn:focus {
    outline: none;
}

.tabsHeader__btn:hover {
    background-color: var(--blue);
    color: var(--white);
}

.tabsHeader__btn.active {
    background-color: var(--blue);
    color: var(--white);
}

.tabs__content {
    margin-top: 70px;
}

.tabsContent__block {
    display: none;
}

.tabsContent__block.active {
    display: block;
}

.active {}

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

.tabsContent__img {}

.item-equipment__table {
    width: 100%;
    margin-top: 50px;
}

.item-equipment__table td,
.item-equipment__table th {
    border: .0625rem solid #dddee1;
    text-align: center;
}

.item-equipment__table td {
    transition: background-color .3s ease;
}

.item-equipment__table td,
.item-equipment__table th {
    padding: .5rem;
}

.item-equipment__table tr:first-child th {
    background-color: var(--bg-light-blue);
}

s {
    display: none;
}

.footer2 {
    background-color: var(--bg-light-blue);
}

.error em {
    color: var(--red);
    font-size: 12px;
    background-color: var(--white);
    padding: 3px 7px;
    font-weight: 500;
    position: absolute;
    width: max-content;
    right: 10px;
    top: -10px;
    border-radius: 3px;
}

.developedBy{
    color: var(--white);
    font-size: 14px;
}

.developedBy a{
    text-decoration: underline;
}

.submenu {
    background: #005194;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: sticky;
    top: 62px;
    left: 0;
    z-index: 2;
}

.submenu .container{
    display: flex;
}

.submenu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submenu ul li a {
    color: #fff;
    text-decoration: none;
}

.submenu ul li::after {
    content: "|";
    color: #ffffff66;
    margin-left: 10px;
}

.submenu ul li:last-child::after {
    content: none;
}

.gallerySection .swiperGallery{
    max-width: 800px;
}

.gallerySection .galleryWrap{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallerySection .swiperGallery{
    height: 600px;
    position: relative;
}

/* .gallerySection .swiper-slide{
    height: 600px;
} */

.gallerySection .swiper-slide img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.gallerySection .swiper-container {
    overflow: visible; 
}

.gallerySection .swiper-slide{
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.gallerySection .swiper-slide.swiper-slide-active {
    opacity: 1;
    visibility: visible;
}

.gallerySection .swiper-slide.swiper-slide-next,
.gallerySection .swiper-slide.swiper-slide-prev{
    opacity: 0;
    visibility: hidden;
}

.contentRte img{
    object-fit: contain;
    height: auto;
    width: 100%;
}

hr{
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #57a3f3;
    margin: 2em 0;
    padding: 0;
    opacity: 0.5;
}

.shippingRoutesTable{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 30px;
}

.shippingRoutesTable__row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 15px;
}

.shippingRoutesTable__row-ports{
    font-size: 12px;
}

.shippingRoutesTable__row-heading{
    background: #57a3f3;
}

.shippingRoutesTable__row-heading>div{
    font-weight: bold;
    color: #fff;
}

.shippingRoutesTable__row>div{
    flex: 1;
    padding: 10px 10px;
}

.shippingRoutesTable__row>div:not(:last-child){
    border-right: 1px solid #57a3f3;
}

.shippingRoutesTable__row-heading>div:not(:last-child){
    border-right: 1px solid #fff;
}

.portList{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.portList__element{
    position: relative;
}

.portList__element:not(:last-child):after{
    content: "";
    width: 10px;
    position: absolute;
    right: -19px;
    height: 1.5px;
    background: #57a3f3;
    top: 50%;
    transform: translateY(-50%);
}

.equipmentTable {
    overflow-x: auto;
}

.equipmentTable table td, .equipmentTable table th{
    vertical-align: middle;
}

.equipmentTable table img{
    max-width: 100px;
    width: 100px;
}

.equipmentTable table thead tr{
    background: #205088;
    color: #fff;
}
.equipmentTable table{
    width: 1000px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
}

.equipmentTable table tr:first-child th{
    background: unset !important;
}

@media(max-width: 1500px) {
    .companyProfile__img {
        max-width: 420px;
    }

    .companyProfile__text {
        font-size: 20px;
    }

    .sliderBlock {
        min-height: 470px;
    }

    .sliderBlock__title {
        font-size: 34px;
    }

    .sliderBlock__textWrap {
        margin-top: 10px;
    }

    .sliderBlock__text {
        font-size: 18px;
    }

    .sliderBlock__btn2 {
        height: 40px;
        font-size: 16px;
    }

    .menu__li:first-of-type .menu__sub {
        right: -110px;
    }

    .companyNews__content {
        width: calc(100% + 30px);
    }

    .usefulLinks__content {
        gap: 10px;
    }

    .usefulLinksBlockMenu__link {
        font-size: 15px;
    }

    .footerTopCol__title {
        font-size: 16px;
    }

    .footerTopCol__menu {
        margin-top: 20px;
    }

    .footerTop__content {
        gap: 100px;
    }

    .companyProfile__img {
        max-width: 350px;
    }

    .newsPage__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 1200px) {
    .usefulLinks__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    }

    .footerTop__content {
        gap: 50px;
    }

    .mainBlock {
        gap: 50px;
    }

    .sidebar {
        max-width: 250px;
        padding: 40px 30px;
    }

    .sidebar__link {
        font-size: 18px;
    }

    .contactPage {
        flex-direction: column;
    }

    .menu{
        gap: 20px;
    }
}

@media(max-width: 1024px) {
    .header__bottom {
        display: none;
    }

    .header__top {
        position: sticky;
        top: 0;
        left: 0;
        z-index: 5;
    }

    .sliderBlock__content {
        padding: 30px 50px;
    }

    .sliderBlock {
        min-height: 400px;
    }

    .companyProfile__content {
        flex-direction: column;
        gap: 80px;
        margin-top: 30px;
    }

    .companyProfileSection {
        padding: 50px 0 90px;
    }

    .mainHeader__title {
        font-size: 26px;
    }

    .companyProfile__text {
        font-size: 18px;
    }

    .large-first-letter::first-letter {
        -webkit-initial-letter: 2;
        initial-letter: 2;
    }

    .companyNewsSection {
        padding: 50px 0;
    }

    .directionSection {
        padding: 50px 0;
    }

    .direction__title {
        font-size: 24px;
    }

    .direction__titleWrap {
        top: -17px;
    }

    .direction__elem {
        font-size: 16px;
    }

    .direction__block {
        padding: 60px 30px 50px;
    }

    .usefulLinksSection {
        padding: 50px 0;
    }

    .usefulLinks__content {
        margin-top: 30px;
    }

    .footerTop__content {
        flex-direction: column;
    }

    .footerTop__left .footerTop__col {
        display: flex;
    }

    .footerTop__left .footerTop__col2 {
        flex: 1;
    }

    .sliderBlock__title {
        font-size: 26px;
    }

    .sliderBlock__text {
        font-size: 16px;
    }

    .sliderBlock__btn {
        width: 45px;
        height: 45px;
    }

    .header__right {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .mobileMenu__btn {
        display: flex;
        width: 30px;
        height: 23px;
        justify-content: space-between;
        flex-direction: column;
    }

    .mobileMenu__btn span {
        background-color: var(--blue-transparency);
        width: 100%;
        height: 3px;
        display: flex;
        border-radius: 3px;
    }

    .mainBlock {
        flex-direction: column;
        gap: 30px;
    }

    .sidebar{
        position: unset;
    }

    .mainBlockSection {
        padding: 50px 0;
    }

    .sidebar {
        max-width: initial;
        box-sizing: border-box;
    }

    .contactPage__infoBlock {
        padding: 30px;
    }

    .contactForm {
        padding: 30px;
    }
}

@media(max-width: 768px) {
    .usefulLinks__content {
        grid-template-columns: 1fr;
    }

    .footerTop__right {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px 20px;
    }

    .copyright__text {
        font-size: 12px;
    }

    .policy__link {
        font-size: 12px;
    }

    .breadcrumbsSection {
        height: 200px;
    }

    .breadcrumbs__title {
        font-size: 30px;
    }

    .breadcrumbs__link {
        font-size: 16px;
    }

    .breadcrumbs__active {
        font-size: 16px;
    }

    .h5 {
        font-size: 22px;
    }

    .h4 {
        font-size: 24px;
    }

    .h3 {
        font-size: 26px;
    }

    .h2 {
        font-size: 28px;
    }

    .h1 {
        font-size: 30px;
    }

    .text {
        font-size: 16px;
    }

    .content li {
        font-size: 16px;
    }

    .content ul li:after {
        top: 7px;
    }

    .contactPageInfo__elems {
        flex-direction: column;
    }

    .contactForm__row {
        flex-direction: column;
    }

    .tabsHeader__btn {
        font-size: 14px;
    }

    .table__scroll {
        width: calc(100% + 30px);
        overflow-x: auto;
    }

    .table__scroll::-webkit-scrollbar {
        display: none;
    }


    .table__scroll {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .table__scroll table {
        width: 710px;
        margin-right: 30px;
    }

    .gallerySection .swiperGallery{
        height: 350px;
        position: relative;
    }

    .shippingRoutesTable__row{
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        gap: 5px;
    }
    
    .shippingRoutesTable__row>div{
        flex: 1;
        padding: 5px 10px;
        font-size: 13px;
    }
    
}

@media(max-width: 576px) {
    .companyProfile__img {
        max-width: 200px;
    }

    .companyProfile__imgWrap:after {
        border: 10px solid var(--accent-blue);
        top: -30px;
        left: 30px;
    }

    .companyProfile__imgWrap:before {
        border: 7px solid var(--blue);
        bottom: -20px;
        left: -20px;
    }

    .mainHeader__title {
        font-size: 20px;
    }

    .companyProfileSection {
        padding: 30px 0 50px;
    }

    .companyProfile__text {
        font-size: 16px;
    }

    .companyProfile__content {
        gap: 60px;
    }

    .companyNewsSection {
        padding: 30px 0;
    }

    .container {
        width: calc(100% - 30px);
    }

    .companyNews__content {
        margin-top: 30px;
        width: calc(100% + 15px);
    }

    .mainHeader__btnWrap {
        margin-top: 30px;
    }

    .w-240 {
        width: 290px !important;
    }

    .directionSection {
        padding: 30px 0;
    }

    .direction__title {
        font-size: 18px;
    }

    .direction__titleWrap {
        padding: 5px 20px;
        top: -14px;
    }

    .direction__elem {
        font-size: 14px;
    }

    .direction__sub {
        right: -30px;
        width: 130px;
        padding: 20px;
    }

    .directionSub__link {
        font-size: 14px;
    }

    .usefulLinksSection {
        padding: 30px 0;
    }

    .footerTop__left .footerTop__col {
        flex-direction: column;
    }

    .footerTop__right {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 40px;
    }

    .footerBottom__content {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .logo__img {
        max-width: 210px;
        max-height: 40px;
    }

    .sliderBlock__btnWrap2 {
        display: none;
    }

    .sliderBlock__content {
        padding: 20px 0px;
    }

    .sliderBlock__title {
        font-size: 18px;
    }

    .sliderBlock__text {
        font-size: 14px;
    }

    .sliderBlock {
        min-height: 310px;
    }

    .language__sub {
        right: -15px;
    }

    .language {
        margin-right: 10px;
    }

    .header__right {
        gap: 30px;
    }

    .text {
        font-size: 14px;
    }

    .text__wrap {
        gap: 15px;
    }

    .breadcrumbs__title {
        font-size: 20px;
    }

    .breadcrumbs__link {
        font-size: 14px;
    }

    .breadcrumbs__active {
        font-size: 14px;
    }

    .breadcrumbsSection {
        height: 150px;
    }

    .h5 {
        font-size: 18px;
    }

    .h4 {
        font-size: 20px;
    }

    .h3 {
        font-size: 22px;
    }

    .h2 {
        font-size: 23px;
    }

    .h1 {
        font-size: 24px;
    }

    .mainBlockSection {
        padding: 30px 0;
    }

    .content li {
        font-size: 14px;
    }

    .content ul li:after {
        top: 5px;
    }

    .sidebar {
        padding: 30px 20px;
    }

    .sidebar__link {
        font-size: 16px;
    }

    .newsPage__content {
        grid-template-columns: 1fr;
    }

    .pagination {
        margin-top: 30px;
        gap: 10px;
    }

    .pagination__link {
        font-size: 14px;
    }

    .contactPage__infoBlock {
        padding: 20px;
    }

    .contactPage {
        gap: 30px;
    }

    .contactForm {
        padding: 20px;
    }

    .contactFormHeader__text {
        font-size: 14px;
        line-height: 140%;
    }

    .contactPageInfo__text {
        font-size: 14px;
    }

    .table__scroll {
        width: calc(100% + 15px);
    }

    .table__scroll table {
        margin-right: 15px;
    }
}