html,body {
    height: 100%;
    font-family: Gilroy, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F2F5FA;
}

body.overflow {
    position: relative;
    padding-right: 8px;
    overflow: hidden;
}

body.overflow:before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 98;
    background: rgba(0, 0, 0, 0.85);
    transition: .45s ease-in;
}

::-webkit-scrollbar {
    width: 8px;               /* ширина scrollbar */
}
::-webkit-scrollbar-track {
    background: #F2F5FA;        /* цвет дорожки */
}
::-webkit-scrollbar-thumb {
    background-color: #D5D8DE;    /* цвет плашки */
    border-radius: 20px;       /* закругления плашки */
}

header {
    flex: 0 0 auto;
}

main {
    flex: 1 0 auto;
}

footer {
    flex: 0 0 auto;
    padding: 40px 0 163px;
}

@media screen and (min-width: 1400px) {
    .container {
        max-width: 1254px;
    }
}

/*footer*/
.footer-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.footer-nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.footer-nav__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    text-align: left;
    color: #05131F;
    margin-bottom: 16px;
}

.footer-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-nav ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #05131F;
    text-decoration: none;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-info .copyright {
    width: 100%;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    color: #05131F;
    margin-bottom: 16px;
}

.footer-info .link {
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    text-align: left;
    color: #05131F;
    text-decoration: none;
}

.footer-info .devs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 8px 8px 14px;
    margin-top: 30px;
    background-color: #fff;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.footer-info .devs__link {
    margin-left: 12px;
}

.footer-info .devs__link svg path {
    transition: .12s ease-in;
}

.footer-info .devs__link:hover svg path {
    stroke: #1B87E3;
}

.white-bg .footer-info .devs {
    background-color: #F2F5FA;
}

.white-bg .footer-info .devs__link svg rect {
    fill: #fff;
}
/*end footer*/

.burger {
    display: none;
}

.mobile-projects {
    display: none;
}

img {
    max-width: 100%;
}

a {
    transition: .12s ease-in;
}

a:not(.button):hover {
    color: #1B87E3;
}

.light-blue-bg {
    background-color: #EBF5FF;
}

.white-bg {
    background-color: #fff;
}

.blue-bg {
    background: #F2F5FA;
}

/*buttons*/
.button {
    display: inline-block;
    padding: 14px 24px;
    background-color: #3186D4;
    border: none;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    transition: .12s ease-in;

    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #FFFFFF;
    text-decoration: none;
}

.button:disabled {
    opacity: 0.6;
}

.button:not(:disabled):hover {
    color: #FFFFFF;
    background-color: #297DCA;
}

.button.grey {
    color: #05131F;
    background-color: #F2F5FA;
}

.button.grey:not(:disabled):hover {
    color: #05131F;
    background-color: #E8EDF5;
}

.button.toggle {
    color: #05131F;
    background-color: transparent;
}

.button.toggle:hover, .button.toggle.active {
    color: #2E9FFF;
    background-color: #65B8FF1F;
}
/*end buttons*/

/*modals*/
@media screen and (min-width: 920px) {
    .modal-dialog {
        max-width: 800px;
    }
}
@media screen and (min-width: 576px) {
    .modal-dialog.xs {
        max-width: 340px;
    }
}

.modal-content {
    padding: 38px 40px;
    border: none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.xs .modal-content {
    padding: 30px;
}

.xs .modal-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: center;
}

.xs .modal-footer .button {
    text-align: center;
}

.modal-content .close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.modal-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    color: #000000;
}

.modal-content p:last-child {
    margin-bottom: 0;
}

.modal-content p + ul {
    margin-top: -1rem;
    padding-left: 15px;
    list-style: '– ';
}

.modal-header {
    padding: 0;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.modal-body {
    padding: 0;
    margin-top: 30px;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.empty-header .modal-body {
    margin-top: 0;
}

.modal-footer {
    padding: 0;
    margin-top: 30px;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.modal-footer>* {
    margin: 0;
}

.modal-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    text-align: left;
    color: #05131F;
}

.modal-subtitle {
    margin-top: 22px;

    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #05131F;
}

.modal-overflow-content {
    max-height: 45vh;
    padding-right: 10px;
    overflow: auto;
}
/*end modals*/

/*header small logo*/
.header-small-logo {
    margin: 30px 0 40px;
}
/*end header small logo*/

/*fixed nav*/
.fixed-nav-container {
    position: fixed;
    z-index: 2;
    bottom: 10px;
    left: 15px;
    right: 15px;
    text-align: center;
}

.fixed-nav .logo a {
    text-decoration: none;
}

.fixed-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    padding: 20px 20px 20px 30px;
    background: #FFFFFF;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
}

.fixed-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.fixed-nav ul a {
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.0037em;
    text-align: left;
    color: #111111;
    text-decoration: none;
}

.fixed-nav ul a:not(.button):hover {
    color: #1B87E3;
}
/*end fixed nav*/

/*tabs*/
.tabs-controls {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
}

.tabs-controls .button {
    padding: 10px 16px;
    
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
}
/*end tabs*/

/*logo grid*/
.logo-grid {
    padding: 80px 0;
}

.logo-grid .title {
    margin-bottom: 30px;

    font-size: 36px;
    font-weight: 700;
    line-height: 46.8px;
    text-align: left;
    color: #05131F;
}

.logo-grid .logo-container {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-grid .logo-container .item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: calc(100% / 4 - 12px);
    height: 140px;
    background: #F2F5FA;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.logo-grid .logo-container img {
    height: auto;
    max-height: 70%;
    max-width: 70%;
    object-fit: cover;
    transition: .3s ease-out;
}
.logo-grid .logo-container .item:hover img {
    transform: scale(1.15);
    transition: .3s ease-out;
}
/*end logo grid*/

/*swiper slider*/
.slider-button-prev, .slider-button-next {
    position: absolute;
    top: calc(50% - 12px);
    z-index: 1;
}
.slider-button-prev {
    left: 15px;
}
.slider-button-next {
    right: 15px;
}
/*end swiper slider*/

/*big slider*/
.big-slider {
    overflow: hidden;
}

.big-slider .swiper {
    width: 100%;
    height: 600px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.big-slider .swiper-pagination {
    top: 26px;
    left: 40px;
    right: 40px;
    bottom: unset;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 5px;
    width: calc(100% - 80px);
}

.big-slider .swiper-pagination .swiper-pagination-bullet {
    flex: 1 1 auto;
    height: 4px;
    margin: 0;
    border-radius: 10px;
    /*background: rgba(255, 255, 255, 0.26);*/
    background: linear-gradient(to right, #fff 50%, rgba(255, 255, 255, 0.26) 50%) right;
    background-size: 200% 100%;
    opacity: 1;
}

.big-slider .swiper-pagination .swiper-pagination-bullet-active{
    background-position: left;
    transition: background-position 4s linear;
}

.big-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.big-slider .swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.3) 100%);
}

.big-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big-slider .swiper-slide p {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 26px;
    margin: 0;

    font-size: 20px;
    font-weight: 400;
    line-height: 29px;
    text-align: left;
    color: #FFFFFF;
    text-shadow: 0 0 10px #0000001F;
}
/*end big slider*/

/*medium slider*/
.medium-slider-container {
    position: relative;
    margin: 80px 0;
}

.medium-slider-container .title {
    margin-bottom: 30px;

    font-size: 36px;
    font-weight: 700;
    line-height: 45px;
    text-align: left;
    color: #05131F;
}

.medium-slider {
    position: relative;
}

.medium-slider .slider-button-next {
    right: -43px;
}

.medium-slider .slider-button-prev {
    left: -43px;
}

.medium-slider .slider-button-next svg path, .medium-slider .slider-button-prev svg path {
    stroke: #05131F;
}
/*end medium slider*/

/*index first block*/
.first-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    min-height: 100vh;
    padding: 40px 0;
    background: url("../img/first-block-bg-min.jpg") center no-repeat, #2f5579;
    background-size: cover;
}

.first-block .title {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
}

.first-block .title h1 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;

    font-size: 104px;
    font-weight: 700;
    line-height: 98px;
    letter-spacing: 0.01em;
    text-align: center;
    color: #EAF1F8;
}

.news-slider {
    position: relative;
    padding: 0 84px;
}

.news-slider .news-item {

}

.news-slider .news-item span {
    display: block;
    margin-bottom: 8px;

    font-size: 16px;
    font-weight: 400;
    line-height: 21.12px;
    text-align: left;
    color: #D4E0EA;
}

.news-slider .news-item p {
    margin: 0;

    font-size: 20px;
    font-weight: 500;
    line-height: 28.8px;
    text-align: left;
    color: #D4E0EA;
    text-transform: uppercase;
}

.news-slider-btn {
    margin-top: 40px;
    text-align: center;
}

.news-slider-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #D4E0EA;
    text-decoration: none;
}

.news-slider-btn a svg path {
    transition: .12s ease-in;
}

.news-slider-btn a:hover svg path {
    stroke: #1B87E3;
}
/*end index first block*/

/*index about text*/
.about-text {
    padding: 100px 0;
}

.about-text .title {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;

    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    color: #05131F;
}

.numbers-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1110px;
    margin: 60px auto 20px;
}

.numbers-row .item {
    flex: 1 1 33.3%;
}

.numbers-row .item p {
    font-size: 140px;
    font-weight: 700;
    line-height: 157px;
    letter-spacing: -0.0024em;
    text-align: left;
    /*color: #64B5FF;*/
    color: transparent;

    /*animated*/
    background-color: #64B5FF;
    background-image: url("../img/number-bg-animated-1.svg");
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    animation: numberAnimate 60s linear infinite;
}
@keyframes numberAnimate {
    0% {
        background-position-x: 1468px;
        background-position-y: 0;
    }
    100% {
        background-position-x: 0;
        background-position-y: 0;
    }
}

.numbers-row .item span {
    display: block;
    margin-top: 16px;

    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    color: #05131F;
}
/*end index about text*/

/*index map*/
.index-map {
    position: relative;
}

.index-map .title {
    position: absolute;
    top: 120px;
    width: 100%;
    z-index: 1;

    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    color: #05131F;
}

.index-map-overflow {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.index-map-scroll {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    transition: top .5s, left .5s ease-out, transform .5s;
}

.index-map .map-img {
    max-width: 120%;
    height: auto;
    max-height: 90vh;
}

.index-map .map-img g path {
    transition: .5s ease-out;
}

.index-map .map-img.loading g path {
    fill: #DCEEFE;
    stroke: #BBD7F0;
    transition: .5s ease-out;
}

.index-map .map-img g.show {
    cursor: pointer;
}

.index-map .map-img g.show:hover path {
    transition: .3s ease-out;
}
.index-map .map-img g.show:hover path, .index-map .map-img g.show.focus path {
    fill: #9BCFFF;
    transition: .3s ease-out;
}

.index-map .map-img g:not(.show) rect {
    display: none;
}
/*end index map*/

/*index about*/
.index-about {
    position: relative;
    padding: 70px 0;
    background-image: url("../img/index-about-bg-min.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
}

.index-about .text {
    width: 100%;
    max-width: 580px;
}

.index-about .text .title {
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    text-align: left;
    color: #05131F;
}

.index-about .text .content {
    margin-top: 40px;
}

.index-about .text .content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    text-align: left;
    color: #05131F;
}

.index-about .text .content p:last-child {
    margin-bottom: 0;
}

.index-about .flight-block {
    width: 100%;
    max-width: 280px;
    padding: 14px 22px;
    margin-left: auto;
    margin-top: -50px;
    background-color: #F1F5FBCC;
    backdrop-filter: blur(10px);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;

    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: #111111;
}
/*end index about*/

/*index services*/
.index-services {
    padding: 60px 0;
}

.index-services .title {
    margin: 0;

    font-size: 56px;
    font-weight: 700;
    line-height: 69px;
    text-align: center;
    color: #05131F;
}

.index-services .tabs {
    margin-top: 40px;
}

.index-services .item {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.services-item {
    width: 100%;
    max-width: calc(50% - 5px);
    padding: 30px;
    background-color: #F2F5FA;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.services-item .item__img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 16px;
    margin-bottom: 24px;
    background-color: #fff;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    overflow: hidden;
}

.services-item .item__img img {
    max-width: 28px;
    object-fit: cover;
}

.services-item .item__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    color: #05131F;
}

.services-item .item__content {
    margin-top: 14px;
}

.services-item .item__content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    color: #05131FCC;
}

.services-item .item__content p:last-child {
    margin-bottom: 0;
}
/*end index services*/

/*index logo grid*/
.logo-grid.index {
    padding: 20px 0 40px;
}
/*end index logo grid*/

/*index big slider*/
.index-big-slider {
    padding: 40px 0 60px;
}
/*end index big slider*/

/*index contacts*/
.index-contacts {
    padding: 60px 0 40px;
}

.index-contacts .title {
    margin: 0;

    font-size: 64px;
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    color: #05131F;
}

.contacts-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 34px;
    margin-top: 80px;
}

.contacts-row .item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
}

.contacts-row .item__content span {
    display: block;
    margin-bottom: 4px;

    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-align: left;
    color: #6F8598;
    text-transform: uppercase;
}

.contacts-row .item__content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #05131F;
    margin: 0;
}

.contacts-row .item__content p small {
    display: block;

    font-size: 14px;
    font-weight: 500;
    line-height: 18.48px;
    text-align: left;
}

.contacts-row .item__content a {
    border-bottom: 1px solid #6F8598;

    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #05131F;
    text-decoration: none;
}

.contacts-row .item__content a:hover {
    color: #1B87E3;
    border-color: #1B87E3;
}

.index-map-link {
    display: block;
    width: 100%;
    height: 200px;
    margin-top: 60px;
    background: url("../img/index-map-link-bg.jpg") center bottom no-repeat;
    background-size: cover;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
}
/*end index contacts*/

/*projects block*/
.projects-block {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 460px;
    max-width: 100%;
    padding: 30px 38px;
    background: #fff;

    transform: translate(100vw, 0);
    transition: transform .45s ease-out;
}

.projects-block.show {
    transform: translate(0, 0);
    transition: transform .45s ease-out;
}

.projects-block .close-button {
    position: absolute;
    top: 30px;
    right: 38px;
    cursor: pointer;
}

.project-title {
    padding-right: 25px;
    margin: 0;

    font-size: 28px;
    font-weight: 700;
    line-height: 35px;
    text-align: left;
    color: #05131F;
}

.project-count {
    margin-top: 8px;

    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #05131F;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
    padding-right: 10px;
    overflow: auto;
}

.projects-list .item {
    text-decoration: none;
}

.projects-list .item__img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 160px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.projects-list .item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease-out;
}

.projects-list .item:hover .item__img img {
    transform: scale(1.15);
    transition: .3s ease-out;
}

.projects-list .item__content {
    margin-top: 12px;
}

.projects-list .item__content .name {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #05131F;
}

.projects-list .item__content ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 3px 0 0;
    padding: 0;

    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #05131F;
}

.projects-list .item__content ul li:first-child {
    list-style: none;
}

.projects-list .item__content ul li:not(:first-child) {
    margin-left: 26px;
}

.projects-list .item__content ul li:last-child {
    width: 100%;
    list-style: none;
    margin-top: 3px;
    margin-left: 0;
}

.projects-list .item__content ul li strong {
    font-weight: 500;
}

.project-link {
    margin-top: auto;
}

.project-link .button {
    display: block;
    width: 100%;

    font-weight: 500;
    text-align: center;
}


/*end projects block*/

.white-container {
    padding: 56px 60px;
    background-color: #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

/*breadcrumbs*/
.breadcrumbs {
    margin-bottom: 12px;
}
.breadcrumbs ul {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs a {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.0037em;
    text-align: left;
    color: #8F9397;
    text-decoration: none;
}

.breadcrumbs * + span {
    margin-left: 10px;
}

.breadcrumbs span {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.0037em;
    text-align: left;
    color: #8F9397;
}
/*end breadcrumbs*/

.text-block h2 {
    margin-bottom: 30px;

    font-size: 46px;
    font-weight: 700;
    line-height: 57px;
    text-align: left;
    color: #05131F;
}

.text-block p {
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    text-align: left;
    color: #05131F;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.text-block ul, .text-block ol {
    padding-left: 26px;
    margin: 20px 0 30px;

    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #05131F;
}

.link-block {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.link-block a {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #1B87E3;
    text-decoration: none;
    border-bottom: 1px solid rgba(27, 135, 227, 0.4);
}

.img-full-width-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    overflow: hidden;
}

.img-full-width-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*blue items bg block*/
.blue-items-bg-block {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.blue-items-bg-block .item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 20px 10px 10px;
    background: #F2F5FA;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;

    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: #05131F;

}
/*end blue items bg block*/

/*quote block*/
.quote-block {
    width: 100%;
    max-width: 780px;
    margin: 140px auto;
    padding-top: 46px;
    background: url("../img/quote-bg.svg") top center no-repeat;
}

.quote-block__text p {
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
    color: #05131F;
}

.quote-block__text p:last-child {
    margin-bottom: 0;
}

.quote-block__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.quote-block__author .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}

.quote-block__author .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-block__author .content {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: #05131F;
}

.quote-block__author .content span {
    display: block;
    margin-bottom: 2px;

    font-size: 14px;
    font-weight: 500;
    line-height: 17.36px;
    text-align: left;
    color: #8F9397;
}
/*end quote block*/

/*form*/
input, select, textarea {
    width: 100%;
    padding: 20px 18px;
    background: #F2F5FA;
    border: 2px solid #F2F5FA;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;

    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #05131F;
    box-shadow: none;
    outline: none;
    transition: .12s ease-in;

}

input::placeholder, textarea::placeholder {
    color: #80858C;
}

input:hover, select:hover, textarea:hover {
    background: #ECF0F7;
}

input:focus, select:focus, textarea:focus,
input:active, select:active, textarea:active {
    border-color: #8BC8FF;
    background-color: #fff;
}

.form {
    width: 100%;
    max-width: 730px;
    margin: 0 auto;
}

.form .title {
    margin-bottom: 20px;

    font-size: 46px;
    font-weight: 700;
    line-height: 57px;
    text-align: center;
    color: #05131F;
}

.form .subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color: #05131F;
}

.form-container {
    margin-top: 40px;
}

.modal-body .form-container {
    margin-top: 0;
}

.form-container form {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.form-container form .form-group {
    width: 100%;
    max-width: calc(50% - 5px);
}

.form-container form .form-group.full {
    max-width: 100%;
}

.form-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
}

.form-button .button {
    padding: 23px 18px;
    white-space: nowrap;
}

.form-button .policy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #05131F;
}

.form-button .policy a {
    color: #1B87E3;
}
/*end form*/

/*file input*/
.file-input-container {
    position: relative;
}

.file-input-container .descr {
    margin-top: 6px;

    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #80858C;
}

.file-input-container .descr.red {
    color: red;
}

.file-input {
    position: relative;

    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #05131F;
}

.file-input input {
    width: 100%;
    height: 65px;
    padding: 21px 22px;
    background: #fff;
    border: 1px dashed #1B87E3;
    transition: .12s ease-in;
    cursor: pointer;

    color: transparent;
}

.file-input input::-webkit-file-upload-button {
    display: none;
}

.file-input input::file-selector-button {
    display: none;
}

.file-input input:hover {
    background: #1B87E30D;
}

.file-input label {
    position: absolute;
    left: 23px;
    right: 23px;
    top: calc(50% - 11px);

    text-align: center;
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.file-input label .blue {
    color: #1B87E3;
}

.file-input .close {
    position: absolute;
    right: 19px;
    top: calc(50% - 9px);

    display: none;
    cursor: pointer;
}

.file-input.not-empty .close {
    display: inline-block;
}

.file-input.not-empty label {
    text-align: left;
    padding-right: 30px;
}

/*end file input*/

/*form send status*/
.send-form {
    text-align: center;
}

.send-form svg {
    margin-bottom: 14px;
}

.send-form .modal-title {
    text-align: center;
}

.send-form .modal-text {
    margin-top: 22px;
    text-align: center;
}


/*end form send status*/

/*img block*/
.img-block {
    padding: 60px;
    margin: 80px 0;
    background: url("../img/eq-img-block-img.jpg") center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.img-block .title {
    font-size: 36px;
    font-weight: 700;
    line-height: 45px;
    text-align: left;
    color: #fff;
}

.img-block .content {
    margin-top: 24px;

    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #fff;
}

.img-block .content p:last-child{
    margin-bottom: 0;
}
/*end img block*/

/*page img*/
.page-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    overflow: hidden;
}

.page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*end page img*/

/*page status block*/
.status {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 30px;
    margin: 30px 0 40px;
}

.status .place {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #05131F;
}

.status .date {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #80858C;
}
/*end page status block*/

/*about page*/
.white-container h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 67px;
    color: #05131F;
    margin-bottom: 50px;
}

.white-container .link-block {
    margin: 50px 0;
}

.about-competence {
    margin: 80px 0;
}

.about-big-slider {
    margin: 80px 0;
}

.white-container .logo-grid {
    padding: 0;
    margin: 80px 0;
}

.white-container .logo-grid .logo-container {
    gap: 10px;
}
/*end about page*/

/*team page*/
.team-tabs {
    margin-top: 50px;
}

.team-tabs .tabs-controls {
    justify-content: flex-start;
}

.team-tabs .tabs-content .item {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.team-tabs .team-item {
    width: calc(100% / 4 - 23px);
}

.team-tabs .team-item__img {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
}

.team-tabs .team-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-tabs .team-item__content {
    margin-top: 15px;
}

.team-tabs .team-item__content p {
    margin: 0;
    
    font-size: 22px;
    font-weight: 500;
    line-height: 34px;
    text-align: left;
    color: #05131F;
}   

.team-tabs .team-item__content .text p {
    display: block;
    margin-top: 8px;
    margin-bottom: 0;

    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.0014em;
    text-align: left;
    color: #8F9397;
    text-transform: uppercase;
}

.vacancy-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 80px;
}

.vacancy-block .img {
    width: 100%;
    max-width: 280px;
}

.vacancy-block .title {
    margin-bottom: 12px;

    font-size: 36px;
    font-weight: 700;
    line-height: 45px;
    text-align: center;
    color: #05131F;
}

.vacancy-block .text {
    width: 100%;
    max-width: 468px;
    text-align: center;
}

.vacancy-block .text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color: #05131F;
}

.vacancy-block .text .link {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #1B87E3;
}
/*end team page*/

/*contacts page*/
.contacts-page .contacts-row {
    justify-content: flex-start;
    margin-top: 50px;
}

.contacts-page .index-map-link {
    margin-top: 30px;
}

.contacts-page .contact-form {
    margin-top: 80px;
}

.map-modal-text {
    margin-bottom: 30px;
}

.map-modal-text .address-label {
    margin-bottom: 4px;
    
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-align: left;
    color: #6F8598;
    text-transform: uppercase;
}

.map-modal-text .address {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #05131F;
}

.map-modal-text .address p {
    margin: 4px 0 0;

    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: left;
}
/*end contacts page*/

/*projects page*/
.project-item {
    display: block;
    width: calc(100%/3 - 20px);
    text-decoration: none;
    transition: .12s ease-in;
}

.project-item .img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    overflow: hidden;
}

.project-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease-out;
}

.project-item .img .tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
    padding: 4px 8px;
    background: repeating-linear-gradient(285deg, #FFF3DD, #FFF3DD 10px, #F7EBD4 10px, #F7EBD4 20px);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;

    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    text-align: left;
    color: #685634;
}

.project-item .img .tag.done {
    color: #567643;
    background: #DBF5CB;
}

.project-item .img .icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    /*border: 4px solid #FFFFFF4D;*/
    outline: 4px solid transparent;
    background-color: #fff;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    transition: .12s ease-in;
}

.project-item:hover .img img {
    transform: scale(1.15);
    transition: .3s ease-out;
}

.project-item:hover .img .icon {
    outline-color: #FFFFFF4D;
    transition: .12s ease-in;
}

.project-item .content {
    margin-top: 16px;
}

.project-item .content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #05131F;
    margin-bottom: 0;
}

.project-item .content > span {
    display: block;
    margin-top: 12px;

    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: #05131F;
}

.project-item .content span svg {
    margin: 0 8px;
}

.project-item .content span .date {
    font-weight: 400;
}
/*end projects page*/

/*project page*/
.project-page h1 {
    margin-bottom: 30px;
}

.project-page .status .tag {
    padding: 7px 12px;
    background: repeating-linear-gradient(285deg, #FFF3DD, #FFF3DD 10px, #F7EBD4 10px, #F7EBD4 20px);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;

    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: #685634;
}

.project-page .status .tag.done {
    color: #567643;
    background: #DBF5CB;
}

.project-page .big-slider .swiper {
    height: 416px;
}

.project-page .text-block {
    margin: 50px 0 30px;
    max-width: 920px;
}

.project-page .details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 24px 30px;
    background: #F2F5FA;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;

    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #05131F;
}

.project-page .details p {
    margin: 0;
}

.project-page .details p span {
    font-weight: 500;
}
/*end project page*/

/*equipment page*/
.equipment-row {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0 80px;
}

.equipment-row .item {
    display: block;
    width: calc(100%/5 - 24px);
    text-decoration: none;
}

.equipment-row .item .img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /*min-height: 240px;*/
    /*background: #E6EAF1;*/
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    overflow: hidden;
}

.equipment-row .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;transition: .3s ease-out;
}

.equipment-row .item:hover .img img {
    transform: scale(1.15);
    transition: .3s ease-out;
}

.equipment-row .item .img .icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    /*border: 4px solid #FFFFFF4D;*/
    outline: 4px solid transparent;
    background-color: #fff;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    transition: .12s ease-in;
}


.equipment-row .item:hover .img .icon {
    outline-color: #FFFFFF4D;
    transition: .12s ease-in;
}

.equipment-row .item .content {
    margin-top: 16px;

    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    color: #05131F;
}

.equipment-row .item .content p:last-child {
    margin: 0;
}
/*end equipment page*/

/*equipment category page*/
.big-slider + .category-row-container {
    margin-top: 50px;
}
.category-row-container {
    margin-bottom: 30px;
}

.category-row-container + .contact-form {
    margin-top: 80px;
}

.category-row-container .title {
    margin-bottom: 22px;

    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
    text-align: left;
    color: #05131F;
}

.category-row {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.category-row .item {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: calc(100% / 3 - 7px);
    padding: 14px 16px;
    background: #F2F5FA;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;

    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #111111;
    text-decoration: none;
}

.category-row .item:hover {
    color: #111111;
    background: #ECF0F7;
}

.category-row .item svg {
    min-width: 20px;
}
/*end equipment category page*/

/*equipment item page*/
.equipment-item-page .about-competence .content {
    width: 100%;
    max-width: 825px;
}

.equipment-item-page .about-competence .content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #05131F;
}

.equipment-item-page .text-block + .project-slider {
    margin-top: 50px;
}

.step-block {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 30px;
}

.step-block .item {
    width: calc(100%/4);
    padding: 20px;
    background: #F2F5FA;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
}

.step-block .item svg {
    margin-bottom: 12px;
}

.step-block .item p {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: #05131F;
}
/*end equipment item page*/

/*vacancy page*/
.offer {
    margin: 80px 0;
}

.offer .title {
    margin-bottom: 30px;
    
    font-size: 46px;
    font-weight: 700;
    line-height: 57px;
    text-align: left;
    color: #05131F;
}

.offer-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.offer-row .item {
    width: 25%;
}

.offer-row .item:first-child {
    width: 50%;
}

.offer-row .item .img {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    overflow: hidden;
}

.offer-row .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease-out;
}

.offer-row .item:hover .img img {
    transform: scale(1.2);
    transition: .3s ease-out;
}

.offer-row .item .content {
    margin-top: 20px;
}

.offer-row .item .content p {
    margin: 0;

    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
    text-align: left;
    color: #05131F;
}

.offer-row .item .content span {
    display: block;
    margin-top: 12px;

    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    color: #05131F;
}

.vacancy-list-container {
    margin-top: 80px;
}

.vacancy-list-container .title {
    margin-bottom: 30px;

    font-size: 46px;
    font-weight: 700;
    line-height: 57px;
    text-align: left;
    color: #05131F;
}

.vacancy-list  {
    margin-left: -20px;
    margin-right: -20px;
}

.vacancy-list .item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    padding: 20px;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    text-align: left;
    color: #80858C;
    text-decoration: none;
}

.vacancy-list .item p {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #05131F;
    margin: 0;
}

.vacancy-list .item:hover {
    color: #80858C;
    background-color: #F2F5FA;
}

.vacancy-list .item .name {
    width: 50%;
}

.vacancy-list .item .name p {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
}

.vacancy-list .item .name span {
    display: block;
    margin-top: 8px;
}

.vacancy-list .item .item-col {
    width: calc(50%/3);
}

.vacancy-list .item .item-col span {
    display: block;
    margin-bottom: 6px;
}

.vacancy-list .empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

.vacancy-list .empty svg {
    margin-bottom: 16px;
}

.vacancy-list .empty .title {
    margin: 0;

    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #05131F;
}

.vacancy-list .empty .content {
    max-width: 580px;
    margin-top: 16px;

    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
    color: #05131F;
}

.vacancy-list .empty .content p:last-child {
    margin-bottom: 0;
}

.vacancy-list .empty .content a {
    color: #1B87E3;
    text-decoration: none;
    border-bottom: 1px solid rgba(27, 135, 227, 0.4);
}
/*end vacancy page*/

/*vacancy item page*/
.vacancy-item-page h1 {
    margin-bottom: 30px;
}

.vacancy-item-content {
    width: 100%;
    max-width: 825px;
}

.vacancy-basic-info {
    padding: 24px 30px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.vacancy-basic-info .title {
    margin-bottom: 16px;
    
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    text-align: left;
    color: #05131F;
}

.vacancy-basic-info .description {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #05131F;
}

.vacancy-basic-info .description p {
    margin: 0;
}

.vacancy-basic-info .description p:not(:last-child) {
    margin-bottom: 4px;
}

.vacancy-basic-info .button {
    display: inline-block;
    margin-top: 24px;
}

.vacancy-item-content .content {
    margin: 50px 0 80px;
}

.vacancy-item-content .content h3 {
    margin-bottom: 20px;

    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    color: #05131F;
}

.vacancy-item-content .content ul {
    padding-left: 20px;
    list-style-type: "– ";

    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #05131F;
}

.vacancy-item-content .content ul li:not(:last-child) {
    margin-bottom: 10px;
}

.vacancy-item-content .content h3 + ul {
    margin-bottom: 40px;
}

.tag-list {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list .item {
    padding: 8px 10px;
    background: #F2F5FA;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;

    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #05131F;
}

/*end vacancy item page*/

/*vacancy form*/
.vacancy-form {
    margin: 0;
}

.vacancy-form .title {
    margin-bottom: 30px;
    text-align: left;
}

.vacancy-form .subtitle {
    text-align: left;
}

.vacancy-form .form-container {
    margin-top: 30px;
}

/*end vacancy form*/

/*404 page*/
.page-404 {
    text-align: center;
}

.page-404 h1 {
    margin: 20px 0;
}

.page-404 p {
    width: 100%;
    max-width: 630px;
    margin: 0 auto;

    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: center;
    color: #05131F;
}

.page-404 p a {
    color: #1B87E3;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid;
}
/*end 404 page*/

/*loader*/
.loader {
    position: absolute;
    top: calc(50% - 24px);
    left: calc(50% - 24px);

    width: 48px;
    height: 48px;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}
.loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #79BCF5;
    animation: prixClipFix 2s linear infinite ;
}

@keyframes rotate {
    100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}
/*end loader*/

/*sitemap*/
.sitemap ul {
    margin: 10px 0;
}

/*end sitemap*/