/*start index*/
img {
    max-width: 100%;
}

.carrier-section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    font-family: Bebas Neue, sans-serif;
}

@media (max-width: 1199px) {
    .carrier-section-title {
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    .carrier-section-title {
        font-size: 29px;
    }
}

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

.color-white {
    color: #fff;
}

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

/*end index*/
/*start section-top*/
.section-top {
    position: relative;
}

.section-top--img {
    margin: 0 auto;
    position: relative;
    max-width: 2560px;
}

.section-top--img img,
.section-top--img picture {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    min-height: 400px;
    max-height: 900px;
}

.section-top--img:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 75%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, #181B1D), to(rgba(24, 27, 29, 0)));
    background: linear-gradient(0deg, #181B1D 20%, rgba(24, 27, 29, 0) 100%);
    opacity: 0.7;
    z-index: 1;
}

@media (max-width: 1199px) {
    .section-top--img:before {
        height: 80%;
    }
}

@media (max-width: 991px) {
    .section-top--img:before {
        height: 100%;
    }
}

@media (max-width: 767px) {
    .section-top--img:before {
        background: -webkit-gradient(linear, left bottom, left top, from(#181B1D), to(rgba(24, 27, 29, 0.1)));
        background: linear-gradient(0deg, #181B1D 0%, rgba(24, 27, 29, 0.1) 100%);
    }
}

@media (max-width: 499px) {
    .section-top--img:before {
        background: -webkit-gradient(linear, left bottom, left top, from(#181B1D), to(rgba(24, 27, 29, 0.2)));
        background: linear-gradient(0deg, #181B1D 0%, rgba(24, 27, 29, 0.2) 100%);
    }
}

.section-top--about {
    width: 100%;
    position: absolute;
    bottom: 10%;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

@media (max-width: 1199px) {
    .section-top--about {
        bottom: 50px;
    }
}

@media (max-width: 991px) {
    .section-top--about {
        bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section-top--about {
        bottom: 10px;
    }
}

@media (max-width: 499px) {
    .section-top--about {
        height: calc(100% - 15px);
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.section-top--about-title {
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
    font-family: Bebas Neue, sans-serif;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.32);
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.section-top--about-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% - 46px);
    width: 92px;
    height: 2px;
    background-color: #fff;
}

@media (max-width: 1199px) {
    .section-top--about-title {
        font-size: 35px;
    }
}

@media (max-width: 499px) {
    .section-top--about-title {
        font-size: 29px;
        padding: 10px;
    }
}

.section-top--about-subtitle {
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.32);
    margin-bottom: 50px;
}

@media (max-width: 1199px) {
    .section-top--about-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 499px) {
    .section-top--about-subtitle {
        display: none;
    }
}

.section-top--about-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .section-top--about-buttons {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 499px) {
    .section-top--about-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.section-top .top-button {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 35px;
    font-size: 15px;
    color: #fff;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.32);
    padding: 16px 39px 17px;
    margin: 0 30px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

.section-top .top-button:hover {
    opacity: 1;
    color: #000;
    background-color: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

@media (max-width: 1199px) {
    .section-top .top-button {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .section-top .top-button {
        margin: 0 15px;
    }
}

@media (max-width: 767px) {
    .section-top .top-button {
        margin: 10px;
    }
}

@media (max-width: 499px) {
    .section-top .top-button {
        margin: 5px;
    }
}

/*end section-top*/
/*start statistic*/
.statistic {
    padding: 40px 0;
}

.statistic-list {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .statistic-list {
        margin-top: 20px;
    }
}

.statistic-list--point {
    padding-left: 24px;
    width: 25%;
    border-right: 1px solid #F1F2F2;
}

@media (max-width: 767px) {
    .statistic-list--point {
        width: 50%;
        border-right: 0;
        padding-left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        margin: 15px 0;
    }
}

.statistic-list--point:first-child {
    padding-left: 0;
}

.statistic-list--point:last-child {
    border-right: 0;
}

.statistic-list--point-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    font-family: Bebas Neue, sans-serif;
}

.statistic-list--point-title .small {
    font-size: 32px;
}

@media (max-width: 1199px) {
    .statistic-list--point-title {
        font-size: 40px;
    }
    .statistic-list--point-title .small {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .statistic-list--point-title {
        font-size: 35px;
    }
}

@media (max-width: 599px) {
    .statistic-list--point-title {
        font-size: 30px;
    }
    .statistic-list--point-title .small {
        font-size: 20px;
    }
}

.statistic-list--point-text {
    font-weight: 500;
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 1199px) {
    .statistic-list--point-text {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .statistic-list--point-text {
        font-size: 16px;
    }
}

@media (max-width: 599px) {
    .statistic-list--point-text {
        font-size: 14px;
    }
}

/*end statistic*/
/*start evp*/
.evp {
    padding: 90px 0;
}

@media (max-width: 1199px) {
    .evp {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .evp {
        padding: 40px 0;
    }
}

/*end evp*/
/*start cards*/
.cards-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 24px -12px 0;
    width: calc(100% + 24px);
}

@media (max-width: 576px) {
    .cards-list {
        margin: 24px 0 0 0;
        width: 100%;
    }
}

.cards-list--point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    margin: 12px;
    width: calc((100% / 3) - 24px);
    height: 240px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1199px) {
    .cards-list--point {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .cards-list--point {
        width: calc((100% / 2) - 24px);
        height: 200px;
        padding: 15px 20px;
    }
}

@media (max-width: 767px) {
    .cards-list--point {
        padding: 15px;
        height: auto;
    }
}

@media (max-width: 576px) {
    .cards-list--point {
        width: 100%;
        margin: 0 0 15px 0;
    }
}

@media (min-width: 768px) {
    .cards-list--point:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 20px;
        background-color: #fff;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, white), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(180deg, white 40%, rgba(255, 255, 255, 0) 100%);
        border-radius: 12px 12px 0 0;
    }
}

.cards-list--point:hover .cards-list--point-ico {
    margin-top: -140px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

.cards-list--point:hover .cards-list--point-text {
    opacity: 1;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

@media (max-width: 991px) {
    .cards-list--point:hover .cards-list--point-ico {
        margin-top: -100px;
    }
}

@media (max-width: 767px) {
    .cards-list--point:hover .cards-list--point-ico {
        margin-top: 0;
        -webkit-transform: none;
        transform: none;
    }
}

.cards-list--point-ico {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background-color: #F1F4F7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 24px;
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

@media (max-width: 991px) {
    .cards-list--point-ico {
        width: 80px;
        height: 80px;
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .cards-list--point-ico {
        margin-bottom: 15px;
        width: 70px;
        height: 70px;
        padding: 17px;
    }
}

.cards-list--point-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    font-family: Bebas Neue, sans-serif;
    text-transform: uppercase;
    margin-bottom: 12px;
}

@media (max-width: 1399px) {
    .cards-list--point-title {
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .cards-list--point-title {
        font-size: 19px;
    }
}

.cards-list--point-text {
    opacity: 0;
    font-size: 16px;
    line-height: 1.2;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

@media (max-width: 1399px) {
    .cards-list--point-text {
        font-size: 15px;
    }
}

@media (max-width: 1199px) {
    .cards-list--point-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .cards-list--point-text {
        opacity: 1;
    }
}

/*end cards*/
/*start worth*/
.worth {
    padding: 90px 0;
}

@media (max-width: 1199px) {
    .worth {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .worth {
        padding: 40px 0;
    }
}

.worth .cards-list--point {
    height: 250px;
}

@media (max-width: 991px) {
    .worth .cards-list--point {
        height: 215px;
    }
}

@media (max-width: 767px) {
    .worth .cards-list--point {
        height: auto;
    }
}

.worth-slogan {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 90px;
}

@media (max-width: 1199px) {
    .worth-slogan {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .worth-slogan {
        margin-bottom: 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.worth-slogan--logo {
    margin-right: 30px;
    max-width: 50%;
}

@media (max-width: 767px) {
    .worth-slogan--logo {
        max-width: inherit;
        margin: 0 auto 40px;
    }
}

.worth-slogan--about {
    max-width: 550px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px 24px;
}

@media (max-width: 991px) {
    .worth-slogan--about {
        padding: 16px 8px 12px 16px;
    }
}

@media (max-width: 767px) {
    .worth-slogan--about {
        width: 100%;
        padding: 15px 15px 15px 15px;
    }
}

.worth-slogan--about-title {
    margin-bottom: 8px;
}

.worth-slogan--about-text {
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 1399px) {
    .worth-slogan--about-text {
        font-size: 25px;
    }
}

@media (max-width: 1199px) {
    .worth-slogan--about-text {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .worth-slogan--about-text {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .worth-slogan--about-text {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .worth-slogan--about-text span {
        margin-right: 6px;
    }
    .worth-slogan--about-text span:last-child {
        margin-right: 0;
    }
}

@media (max-width: 499px) {
    .worth-slogan--about-text {
        font-size: 16px;
    }
}

@media (max-width: 349px) {
    .worth-slogan--about-text {
        font-size: 15px;
    }
}

/*end worth*/
/*start history*/
.history {
    padding: 90px 0;
    position: relative;
}

@media (max-width: 1199px) {
    .history {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .history {
        padding: 40px 0;
    }
}

.history-list {
    margin-top: 60px;
    padding-right: 24px;
    overflow-x: auto;
    max-height: calc(100vh - 180px - 60px);
    width: 51%;
}

.history-list::-webkit-scrollbar {
    width: 5px;
    height: 0;
}

.history-list::-webkit-scrollbar-button {
    background-color: transparent;
    height: 0;
}

.history-list::-webkit-scrollbar-track {
    background-color: #F1F4F7;
    border-radius: 10px;
}

.history-list::-webkit-scrollbar-track-piece {
    background-color: transparent;
}

.history-list::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #519A7C;
    border-radius: 10px;
}

.history-list::-webkit-scrollbar-corner {
    background-color: transparent;
}

.history-list::-webkit-resizer {
    background-color: #666;
}

@media (max-width: 1199px) {
    .history-list {
        margin-top: 40px;
        max-height: calc(100vh - 120px - 40px);
    }
}

@media (max-width: 991px) {
    .history-list {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .history-list {
        max-height: calc(100vh - 80px - 20px);
    }
}

.history-list--point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.history-list--point-wrap {
    margin-bottom: 12px;
}

.history-list--point-date, .history-list--point-about-title {
    padding-right: 36px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    font-family: Bebas Neue, sans-serif;
}

.history-list--point-date {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.history-list--point-about-title {
    margin-bottom: 8px;
    position: relative;
}

.history-list--point-about-title:before {
    content: '';
    position: absolute;
    left: -25px;
    top: 3px;
    width: 15px;
    height: 15px;
    -webkit-box-shadow: 0px 4px 10px rgba(29, 51, 74, 0.1);
    box-shadow: 0px 4px 10px rgba(29, 51, 74, 0.1);
    background-color: #519A7C;
    border: 4px solid #fff;
    border-radius: 50%;
}

.history-list--point-about-text {
    margin-bottom: 24px;
    font-size: 16px;
}

@media (max-width: 499px) {
    .history-list--point-about-text {
        font-size: 14px;
    }
}

.history-list--point-about:last-child .history-list--point-about-text {
    margin-bottom: 0;
}

.history-img {
    position: absolute;
    top: calc(130px + 30px);
    left: calc(51% + 60px);
}

@media (max-width: 991px) {
    .history-img {
        display: none;
    }
}

.history-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: calc(100vh - 180px);
}

@media (max-width: 1199px) {
    .history-img img {
        max-height: calc(100vh - 120px);
    }
}

@media (max-width: 767px) {
    .history-img img {
        max-height: calc(100vh - 80px);
    }
}

/*end history*/
/*start internship*/
.internship {
    background-color: #1D334A;
    position: relative;
}

.internship-feedback {
    background-color: #35475D;
    padding: 32px;
    border-radius: 12px;
    /*max-width: 660px;*/
    margin: 32px auto 50px;
}

@media (max-width: 576px) {
    .internship-feedback {
        padding: 16px;
    }
}

.internship-feedback--form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 499px) {
    .internship-feedback--form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.internship-feedback--form-input {
    margin: 8px;
}

.internship-feedback--form-input._w-100 {
    width: calc(100% - 16px);
}
.internship-feedback--form-input._w-50 {
    width: calc(50% - 16px);
}
.internship-feedback--form-input._w-66 {
    width: calc((( 100% / 3 ) * 2) - 16px);
}
.internship-feedback--form-input._w-33 {
    width: calc(( 100% / 3 ) - 16px);
}
@media (max-width: 1199px) {
    .internship-feedback--form-input._w-100-1199,
    .internship-feedback--form-input._w-50._w-100-1199 {
        width: calc(100% - 16px);
    }
}
@media (max-width: 767px) {
    .internship-feedback--form-input._w-50,
    .internship-feedback--form-input._w-66,
    .internship-feedback--form-input._w-33,
    .internship-feedback--form-input._w-100-1199{
        width: calc(100% - 16px);
    }
}



.internship-feedback--form-input.full {
    width: calc(100% - 16px);
}

.internship-feedback--form-input.half {
    width: calc(50% - 16px);
}

@media (max-width: 499px) {
    .internship-feedback--form-input.half {
        width: calc(100% - 16px);
    }
}


.internship-feedback--form-input input {
    background-color: transparent;
    padding: 15px 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    width: 100%;
    color: #fff;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

.form_file {
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 0;
    color: #3e3971;
    transition: 0.25s;
    min-height: 50px;
}

.form_file:hover {
    border-color: rgba(255, 255, 255, 1);
    color: #fff;
    transition: 0.25s;
}

.form_file input {
    display: none;
}

.form_file label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    cursor: pointer;
}

.form_file label svg {
    margin-right: 8px;
    height: 21px;
    width: auto;
}

.form_file label svg path {
    fill: rgba(255, 255, 255, 0.4);
    transition: 0.25s;
}

.form_file:hover label svg path {
    fill: rgba(255, 255, 255, 1);
    transition: 0.25s;
}

#fileformlabel {
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    line-height: normal;
    font-size: 14px;
    font-weight: 100;
    transition: 0.25s;
}

.form_file:hover #fileformlabel {
    color: rgba(255, 255, 255, 1);
    transition: 0.25s;
}

.internship-feedback--form-input input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.internship-feedback--form-input input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.internship-feedback--form-input input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.internship-feedback--form-input input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.internship-feedback--form-input input:focus-visible {
    outline: none;
}

.internship-feedback--form-input input[type="number"]::-webkit-outer-spin-button, .internship-feedback--form-input input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.internship-feedback--form-input input[type='number'], .internship-feedback--form-input input[type="number"]:hover, .internship-feedback--form-input input[type="number"]:focus {
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: textfield;
}

.internship-feedback--form-input input:hover, .internship-feedback--form-input input:focus {
    border-color: white;
}

.internship-feedback--form-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 15px;
    font-weight: 300;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 576px) {
    .internship-feedback--form-label {
        font-size: 12px;
    }
}

.internship-feedback--form-label a {
    color: rgba(255, 255, 255, 0.4);
}

.internship-feedback--form-label a:hover {
    text-decoration: underline;
    opacity: 1;
}

.internship-feedback--form-label input[type=checkbox] {
    display: none;
}

.internship-feedback--form-label input[type=checkbox] + label,
.internship-feedback--form-label input[type=checkbox] + span {
    position: relative;
    padding-left: 28px;
}

.internship-feedback--form-label input[type=checkbox] + label:before,
.internship-feedback--form-label input[type=checkbox] + span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .internship-feedback--form-label input[type=checkbox] + label,
    .internship-feedback--form-label input[type=checkbox] + span {
        padding-left: 22px;
    }
    .internship-feedback--form-label input[type=checkbox] + label:before,
    .internship-feedback--form-label input[type=checkbox] + span:before {
        width: 16px;
        height: 16px;
    }
}

.internship-feedback--form-label input[type=checkbox]:checked + label:before,
.internship-feedback--form-label input[type=checkbox]:checked + span:before{
    background-color: #1FB66F;
    background-image: url("../img/ico-check.svg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-color: #1FB66F;
}

.internship-feedback--form-button {
    position: relative;
}

@media (max-width: 499px) {
    .internship-feedback--form-button {
        margin-bottom: 10px;
        width: 100%;
    }
}

.internship-feedback--form-button .button-green {
    background: #1FB66F;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.32);
    border: none;
    padding: 17px 35px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

.internship-feedback--form-button .button-green:hover, .internship-feedback--form-button .button-green:disabled {
    background-color: #199259;
}

.internship-feedback--form-button .button-green:active {
    background-color: #136d43;
}

@media (max-width: 499px) {
    .internship-feedback--form-button .button-green {
        width: 100%;
    }
}

.internship-feedback--form-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    margin: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(100% - 16px);
}

@media (max-width: 499px) {
    .internship-feedback--form-footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.js-btn-submit.js-disabled:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.main-footer-form{
    display: flex;
    flex-wrap: wrap;
}
.inputsFolder {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.inputsFolder .main-footer-form__field {
    width: calc(100% - 12px);
}
.internship-feedback--form-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
}

.internship-feedback--form-wrap .main-footer-form__button{
    width: 100%;
    max-width: 300px;
}

.main-footer-form__field.form-textarea{
    width: 50%;
}
.main-footer-form__field .textarea{
    height: 100%;
}

.internship-feedback--form-labe .label-agreement{
    display: flex;
}
.main-footer-form__button{
    margin-bottom: 0;
}
.internship-feedback--form-wrap .label-agreement {
    display: flex;
}
.label-agreement i{
    font-style: normal;
}

@media (max-width: 991px){
    /*.inputsFolder .main-footer-form__field {*/
    /*    width: calc(100% - 10px);*/
    /*}*/
    .internship-feedback--form-wrap .main-footer-form__button{
        max-width: 250px;
    }
}

@media (max-width: 767px){
    .inputsFolder,
    .inputsFolder .main-footer-form__field,
    .main-footer-form__field.form-textarea {
        width: 100%;
    }
    .internship-feedback--form-wrap{
        flex-direction: column;
        margin-top: 0;
    }
    .internship-feedback--form-wrap .main-footer-form__button{
        max-width: 100%;
        margin-top: 15px;
    }
}

.internship-feedback--form-label.error input[type=checkbox] + label:before,
.internship-feedback--form-label.error input[type=checkbox] + span:before,
.form_file.error,
input.error,
.input.error{
    border-color: red;
}

.internship-feedback--form-label.trembling {
    -webkit-animation: 1.2s ease-in-out 0s normal none running trembling-animation;
    animation: 1.2s ease-in-out 0s normal none running trembling-animation;
}



@-webkit-keyframes trembling-animation {
    0%, 50%, 100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    10%, 30% {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }
    20%, 40% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
}

@keyframes trembling-animation {
    0%, 50%, 100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    10%, 30% {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }
    20%, 40% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
}

/*end internship*/
/*start map*/
.map {
    padding: 90px 0 0;
}

@media (max-width: 1199px) {
    .map {
        padding: 60px 0 0;
    }
}

@media (max-width: 767px) {
    .map {
        padding: 40px 0 0;
    }
}

.map-about {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 32px 4px 42px 4px;
    margin-top: 30px;
    background: #FCFDFF;
    -webkit-box-shadow: 0px 4px 10px rgba(29, 51, 74, 0.1);
    box-shadow: 0px 4px 10px rgba(29, 51, 74, 0.1);
    border-radius: 12px;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (max-width: 991px) {
    .map-about {
        margin-top: 20px;
        padding: 5px 32px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .map-about {
        padding: 5px 16px;
    }
}

@media (max-width: 339px) {
    .map-about {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.map-about--point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 24px;
    border-right: 1px solid #F1F2F2;
}

@media (max-width: 991px) {
    .map-about--point {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid #F1F2F2;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .map-about--point:last-child {
        border: none;
    }
}

@media (max-width: 767px) {
    .map-about--point {
        padding: 16px 0;
    }
}

.map-about--point:last-child {
    border-right: 0;
}

.map-about--point-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    font-family: Bebas Neue, sans-serif;
    text-transform: uppercase;
    margin-right: 10px;
}

.map-about--point-title .small {
    font-size: 32px;
    font-family: inherit;
}

@media (max-width: 1199px) {
    .map-about--point-title {
        font-size: 40px;
    }
    .map-about--point-title .small {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .map-about--point-title {
        font-size: 35px;
    }
}

@media (max-width: 599px) {
    .map-about--point-title {
        font-size: 30px;
    }
    .map-about--point-title .small {
        font-size: 20px;
    }
}

@media (max-width: 339px) {
    .map-about--point-title {
        margin-right: 5px;
    }
}

.map-about--point-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6;
}

@media (max-width: 1199px) {
    .map-about--point-text {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .map-about--point-text {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 599px) {
    .map-about--point-text {
        font-size: 14px;
    }
}

@media (max-width: 374px) {
    .map-about--point-text {
        font-size: 13px;
    }
}

.map-area {
    margin-top: -120px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 820px;
}

@media (max-width: 1399px) {
    .map-area {
        margin-top: -120px;
    }
}

@media (max-width: 1199px) {
    .map-area {
        margin-top: -6vw;
        height: 735px;
    }
}

@media (max-width: 991px) {
    .map-area {
        margin-top: -5vw;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        height: auto;
    }
}

@media (max-width: 399px) {
    .map-area {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .map .carrier-section-title {
        font-size: 28px;
    }
}

.map-popup-wrap {
    margin-bottom: 3px;
}

.jqvmap-label {
    font-family: 'Tahoma', sans-serif;
    position: absolute;
    display: none;
    background: #fff;
    color: #1D334A;
    -webkit-box-shadow: 0px 4px 4px rgba(29, 51, 74, 0.15);
    box-shadow: 0px 4px 4px rgba(29, 51, 74, 0.15);
    border-radius: 4px 4px 0 4px;
    z-index: 10;
}

@media (max-width: 1920px) {
    .jqvmap-label {
        font-size: 12px;
    }
}

.jqvmap-label .jqvmap-label--title {
    padding: 16px 20px 0;
    color: #1D334A;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    font-family: Bebas Neue, sans-serif;
}

.jqvmap-label .jqvmap-label--title .ico-close {
    display: none;
}

@media (max-width: 991px) {
    .jqvmap-label .jqvmap-label--title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        white-space: nowrap;
    }
    .jqvmap-label .jqvmap-label--title .ico-close {
        padding: 5px;
        margin-left: 5px;
        margin-top: -3px;
        margin-right: -5px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

.jqvmap-label .jqvmap-label--list {
    margin: 0;
    text-align: left;
    padding: 0 20px 10px;
    font-size: 15px;
}

@media (max-width: 991px) {
    .jqvmap-label .jqvmap-label--list {
        max-height: 50vh;
        overflow-y: auto;
    }
}

.jqvmap-label .jqvmap-region {
    cursor: pointer;
}

.jqvmap-label .jqvmap-ajax_response {
    width: 100%;
    height: 600px;
}

.jqvmap-label.tooltip-bottom {
    -webkit-transform: translateY(90%);
    transform: translateY(90%);
}

.jqvmap-label.tooltip-bottom.cols-2 .jqvmap-label--list {
    /* Firefox */
    -webkit-column-count: 2;
    /* Safari and Chrome */
    column-count: 2;
}

@media (max-width: 991px) {
    .jqvmap-label.tooltip-bottom {
        -webkit-transform: translateY(60%);
        transform: translateY(60%);
    }
    .jqvmap-label.tooltip-bottom .jqvmap-label--list {
        max-height: 50vh;
        overflow-y: auto;
    }
    .jqvmap-label.tooltip-bottom.cols-2 .jqvmap-label--list {
        /* Firefox */
        -webkit-column-count: inherit;
        /* Safari and Chrome */
        column-count: inherit;
    }
}

@media (max-width: 991px) {
    .jqvmap-label {
        -webkit-transform: translateY(60%);
        transform: translateY(60%);
    }
}

@media (max-width: 499px) {
    .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_ki"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_ar"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_pe"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_sv"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_ku"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_cl"] {
        -webkit-transform: translateX(-75%);
        transform: translateX(-75%);
    }
    .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_kt"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_ss"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_ud"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_bs"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_ta"] {
        -webkit-transform: translateX(-60%);
        transform: translateX(-60%);
    }
    .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_le"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_nn"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_ml"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_mu"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_vo"] {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_no"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_pz"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_mr"], .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_kl"] {
        -webkit-transform: translateX(-30%);
        transform: translateX(-30%);
    }
    .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_kl"] {
        margin-top: 25vh;
    }
    .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_mu"] {
        margin-top: 35vh;
    }
    .jqvmap-label:not(.no-transform)[data-obl="jqvmap1_le"] {
        margin-top: 60vh;
    }
}

.map-popup-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 8px 0 15px;
}

.map-popup--title {
    font-weight: 700;
    line-height: 1;
    font-size: 24px;
    letter-spacing: 0.5px;
    text-align: left;
    font-family: Bebas Neue, sans-serif;
}

.map-popup--content {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .map-popup--title {
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .map-popup--content {
        font-size: 14px;
    }
}

#vmap {
    width: 100%;
    height: 900px;
}

@media (max-width: 1920px) {
    #vmap {
        height: 800px;
    }
}

@media (max-width: 1199px) {
    #vmap {
        height: 55vw;
    }
}

@media (max-width: 991px) {
    #vmap {
        height: 520px;
    }
    #vmap svg > g {
        -webkit-transform: scale(1.1) translate(0, -50px) !important;
        transform: scale(1.1) translate(0, -50px) !important;
    }
}

@media (max-width: 499px) {
    #vmap {
        height: 400px;
    }
    #vmap svg > g {
        -webkit-transform: scale(0.8) translate(0, -50px) !important;
        transform: scale(0.8) translate(0, -50px) !important;
    }
}

#vmap svg {
    height: auto;
}

#vmap svg path[fill="#BCE0CF"] {
    cursor: pointer;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

#vmap svg path[fill="#BCE0CF"]:hover, #vmap svg path[fill="#BCE0CF"].hovered {
    fill: #519A7C;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

#vmap.rrt svg path[data-rrt="true"] {
    fill: #3DA62B;
}

#vmap.imsa svg path[data-imsa="true"] {
    fill: #EEA34A;
}

#vmap.x2 svg path[data-x2="true"] {
    fill: #1FB770;
}

#vmap.x2d svg path[data-x2d="true"] {
    fill: #FECC00;
}

#vmap.kite svg path[data-kite="true"] {
    fill: #575294;
}

#vmap.sverhnova svg path[data-sverhnova="true"] {
    fill: #444A54;
}

#vmap.jarvi svg path[data-jarvi="true"] {
    fill: #587F49;
}

#vmap.carier svg path[data-carier="true"] {
    fill: #EACFAF;
}

#vmap.abm svg path[data-abm="true"] {
    fill: #FF2F49;
}

#vmap.lizing svg path[data-lizing="true"] {
    fill: #1D334A;
}

#vmap.reserve svg path[data-reserve="true"] {
    fill: #007DFF;
}

#vmap.factory svg path[data-factory="true"] {
    fill: #0074be;
}

#vmap.fplus svg path[data-fplus="true"] {
    fill: #0A1A5C;
}

.list-business {
    position: absolute;
    left: 49%;
    bottom: 1%;
    z-index: 10;
    background-color: #fff;
    padding: 20px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 51%;
}

.list-business--point {
    cursor: pointer;
    font-weight: 400;
    font-size: 20px;
    padding: 10px 10px 10px 54px;
    margin-bottom: 10px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.list-business--point:last-child {
    margin-bottom: 0;
}

.list-business--point:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 14px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

@media (max-width: 991px) {
    .list-business--point:before {
        position: static;
        margin-top: 5px;
        margin-right: 10px;
    }
}

.list-business--point:hover {
    font-weight: 600;
}

.list-business--point:hover:before {
    top: 8px;
    left: 14px;
    width: 28px;
    height: 28px;
    border: 5px solid #e6e6e6;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

.list-business--point[data-point='all']:before {
    background-color: #BCE0CF;
}

.list-business--point[data-point='rrt']:before {
    background-color: #3DA62B;
}

.list-business--point[data-point="imsa"]:before {
    background-color: #EEA34A;
}

.list-business--point[data-point="x2"]:before {
    background-color: #1FB770;
}

.list-business--point[data-point="x2d"]:before {
    background-color: #FECC00;
}

.list-business--point[data-point="kite"]:before {
    background-color: #575294;
}

.list-business--point[data-point="sverhnova"]:before {
    background-color: #444A54;
}

.list-business--point[data-point="jarvi"]:before {
    background-color: #587F49;
}

.list-business--point[data-point="carier"]:before {
    background-color: #EACFAF;
}

.list-business--point[data-point="abm"]:before {
    background-color: #FF2F49;
}

.list-business--point[data-point="lizing"]:before {
    background-color: #1D334A;
}

.list-business--point[data-point="reserve"]:before {
    background-color: #007DFF;
}

.list-business--point[data-point="factory"]:before {
    background-color: #0074be;
}

.list-business--point[data-point="fplus"]:before {
    background-color: #0A1A5C;
}

@media (min-width: 992px) {
    .list-business--point[data-point='all'] {
        display: none;
    }
}

.map-popup--title {
    position: relative;
    padding-left: 25px;
}

.map-popup--title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
}

.map-popup--title[data-point='rrt']:before {
    background-color: #3DA62B;
}

.map-popup--title[data-point="imsa"]:before {
    background-color: #EEA34A;
}

.map-popup--title[data-point="x2"]:before {
    background-color: #1FB770;
}

.map-popup--title[data-point="x2d"]:before {
    background-color: #FECC00;
}

.map-popup--title[data-point="kite"]:before {
    background-color: #575294;
}

.map-popup--title[data-point="sverhnova"]:before {
    background-color: #444A54;
}

.map-popup--title[data-point="jarvi"]:before {
    background-color: #587F49;
}

.map-popup--title[data-point="carier"]:before {
    background-color: #EACFAF;
}

.map-popup--title[data-point="abm"]:before {
    background-color: #FF2F49;
}

.map-popup--title[data-point="lizing"]:before {
    background-color: #1D334A;
}

.map-popup--title[data-point="reserve"]:before {
    background-color: #007DFF;
}

.map-popup--title[data-point="factory"]:before {
    background-color: #0074be;
}

.map-popup--title[data-point="fplus"]:before {
    background-color: #0A1A5C;
}

@media (max-width: 991px) {
    .map-popup--title:before {
        top: 1px;
    }
}

@media not all and (min-resolution: 0.001dpcm) {
    .map-about--point-text {
        line-height: 1.9;
    }
}

.jqvmap_pin {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

.jqvmap_pin .map-pin {
    position: relative;
    text-align: center;
    line-height: 1;
    font-size: 12px;
    color: #333;
    font-weight: 600;
}

.jqvmap_pin .map-pin:before {
    content: '';
    position: absolute;
    left: calc(50% - 2px);
    bottom: -10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #519A7C;
}

.jqvmap_pin[data-city="le"] .map-pin, .jqvmap_pin[data-city="mc"] .map-pin {
    font-size: 14px;
}

.jqvmap_pin[data-city="le"] {
    -webkit-transform: translate(-17px, -23px);
    transform: translate(-17px, -23px);
}

.jqvmap_pin[data-city="mu"] {
    -webkit-transform: translate(15px, -35px);
    transform: translate(15px, -35px);
}

.jqvmap_pin[data-city="ar"] {
    -webkit-transform: translate(-103px, -20px);
    transform: translate(-103px, -20px);
}

.jqvmap_pin[data-city="nn"] {
    -webkit-transform: translate(-15px, -20px);
    transform: translate(-15px, -20px);
}

.jqvmap_pin[data-city="ne"] {
    -webkit-transform: translate(-17px, -12px);
    transform: translate(-17px, -12px);
}

.jqvmap_pin[data-city="om"] {
    -webkit-transform: translate(-5px, 0px);
    transform: translate(-5px, 0px);
}

.jqvmap_pin[data-city="ya"] {
    -webkit-transform: translate(-30px, -30px);
    transform: translate(-30px, -30px);
}

.jqvmap_pin[data-city="ht"] {
    -webkit-transform: translate(-40px, 0px);
    transform: translate(-40px, 0px);
}

.jqvmap_pin[data-city="ob"] {
    -webkit-transform: translate(-15px, -15px);
    transform: translate(-15px, -15px);
}

.jqvmap_pin[data-city="mc"] {
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
}

.jqvmap_pin[data-city="ss"] {
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
}

.jqvmap_pin[data-city="vo"] {
    -webkit-transform: translate(-10px, -15px);
    transform: translate(-10px, -15px);
}

.jqvmap_pin[data-city="ko"] {
    -webkit-transform: translate(-60px, 0);
    transform: translate(-60px, 0);
}

.jqvmap_pin[data-city="ki"] {
    -webkit-transform: translate(-10px, -20px);
    transform: translate(-10px, -20px);
}

.jqvmap_pin[data-city="vn"] {
    -webkit-transform: translate(0px, -25px);
    transform: translate(0px, -25px);
}

.jqvmap_pin[data-city="bs"] {
    -webkit-transform: translate(0px, -25px);
    transform: translate(0px, -25px);
}

.jqvmap_pin[data-city="ta"] {
    -webkit-transform: translate(-8px, -30px);
    transform: translate(-8px, -30px);
}

.jqvmap_pin[data-city="sv"] {
    -webkit-transform: translate(-10px, 8px);
    transform: translate(-10px, 8px);
}

.jqvmap_pin[data-city="cl"] {
    -webkit-transform: translate(18px, -25px);
    transform: translate(18px, -25px);
}

.jqvmap_pin[data-city="ks"] {
    -webkit-transform: translate(-5px, -22px);
    transform: translate(-5px, -22px);
}

.jqvmap_pin[data-city="vl"] {
    -webkit-transform: translate(-5px, -10px);
    transform: translate(-5px, -10px);
}

@media (max-width: 991px) {
    .jqvmap_pin[data-city="le"] {
        -webkit-transform: translate(-8px, -17px);
        transform: translate(-8px, -17px);
    }
    .jqvmap_pin[data-city="mc"] {
        -webkit-transform: translate(5px, -15px);
        transform: translate(5px, -15px);
    }
    
    .jqvmap_pin .map-pin:before {
        display: none;
    }
}

@media (max-width: 499px) {
    .jqvmap_pin[data-city="le"] {
        -webkit-transform: translate(-2px, -12px);
        transform: translate(-2px, -12px);
    }
    .jqvmap_pin[data-city="mc"] {
        -webkit-transform: translate(5px, -12px);
        transform: translate(5px, -12px);
    }
}

#jqvmap1_ir,
#jqvmap1_br,
#jqvmap1_zb,
#jqvmap1_eu,
#jqvmap1_sa,
#jqvmap1_pr,
#jqvmap1_am,
#jqvmap1_ma,
#jqvmap1_sh,
#jqvmap1_pr,
#jqvmap1_ha,
#jqvmap1_ch,
#jqvmap1_ka {
    display: none;
}

@media (max-width: 1299px) {
    #jqvmap1_bs_pin {
        display: none;
    }
}

@media (max-width: 1199px) {
    #jqvmap1_vl_pin,
    #jqvmap1_ro_pin,
    #jqvmap1_ki_pin,
    #jqvmap1_sv_pin {
        display: none;
    }
}

@media (max-width: 1099px) {
    #jqvmap1_ar_pin {
        display: none;
    }
}

@media (max-width: 991px) {
    #jqvmap1_cl_pin,
    #jqvmap1_ko_pin,
    #jqvmap1_ks_pin,
    #jqvmap1_ob_pin,
    #jqvmap1_om_pin,
    #jqvmap1_ht_pin,
    #jqvmap1_ya_pin,
    #jqvmap1_ne_pin,
    #jqvmap1_nn_pin,
    #jqvmap1_ss_pin {
        display: none;
    }

    #jqvmap1_ir,
    #jqvmap1_br,
    #jqvmap1_zb,
    #jqvmap1_eu,
    #jqvmap1_sa,
    #jqvmap1_pr,
    #jqvmap1_am,
    #jqvmap1_ma,
    #jqvmap1_sh,
    #jqvmap1_pr,
    #jqvmap1_ha,
    #jqvmap1_ch,
    #jqvmap1_ka {
        display: block;
    }
}

@media (max-width: 991px) {
    .business-slider {
        left: inherit;
        bottom: inherit;
        z-index: inherit;
        width: calc(100% - 40px);
        max-width: 720px;
        margin: 0 auto 20px;
        background-color: #fbfdff;
        border-radius: 30px;
        border: 2px solid #eff7f5;
        padding: 5px 35px;
        position: relative;
        overflow: hidden;
    }
    .business-slider .owl-stage {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .business-slider .owl-nav {
        width: 100%;
        margin: 0;
    }
    .business-slider .owl-nav button {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 100%;
        border: none;
        background: none;
        background: #fbfdff;
        width: 34px;
        margin: 0;
    }
    .business-slider .owl-nav [class*='owl-'] {
        margin: 0;
    }
    .business-slider .owl-nav button svg path {
        fill: #519A7C;
    }
    .business-slider .owl-nav button.disabled {
        opacity: 0.3;
    }
    .business-slider .owl-nav button.owl-prev {
        left: 0;
    }
    .business-slider .owl-nav button.owl-next {
        right: 0;
    }
    .business-slider .list-business--point {
        padding: 0 10px;
        margin: 0;
        height: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .business-slider .list-business--point:before {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-right: 11px;
        margin-top: -2px;
    }
    .business-slider .list-business--point:hover:before {
        margin-top: -1px;
        margin-left: -6px;
        margin-right: 5px;
    }
}

@media (max-width: 449px) {
    .business-slider {
        width: calc(100% - 30px);
    }
    .business-slider .list-business--point {
        font-size: 18px;
        padding: 0 10px;
        line-height: 1.1;
    }
}

.jqvmap_pin[data-city="ps"] {
    -webkit-transform: translate(-15px, -8px);
    transform: translate(-15px, -8px);
}

.jqvmap_pin[data-city="ps"] .map-pin:before {
    bottom: 11px;
    left: 30px;
}

@media (max-width: 1199px) {
    .jqvmap_pin[data-city="ps"] {
        -webkit-transform: translate(-15px, -4px);
        transform: translate(-15px, -4px);
    }
}

@media (max-width: 1099px) {
    .jqvmap_pin[data-city="ps"] {
        display: none;
    }
}

.jqvmap_pin[data-city="no"] {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.jqvmap_pin[data-city="no"] .map-pin:before {
    bottom: 26px;
}

@media (max-width: 1199px) {
    .jqvmap_pin[data-city="no"] {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
}

@media (max-width: 1099px) {
    .jqvmap_pin[data-city="no"] {
        display: none;
    }
}

/*end map*/


/*start scroll-to-top*/
@media (min-width: 992px) {
    .toTop {
        position: fixed;
        right: 100px;
        bottom: 100px;
        cursor: pointer;
        z-index: 50;
        display: none;
        border-radius: 50%;
        -webkit-transition: 0.25s;
        transition: 0.25s;
    }
    .toTop:hover svg path {
        fill: #607FA4;
        -webkit-transition: 0.25s;
        transition: 0.25s;
    }
    .toTop.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.15);
        box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 991px) {
    .toTop.active {
        height: 0;
        width: 0;
        display: none;
    }
}

/*end scroll-to-top*/


/*раздел Дипломы и сертификаты*/
section.diploma {
    padding: 90px 0;
    position: relative;
}

@media (max-width: 1199px) {
    section.diploma {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    section.diploma {
        padding: 40px 0;
    }
}

@media screen and (max-width: 1199px){
    section.diploma .carrier-section-title {
    margin-bottom: 15px !important;
}
}

section.diploma .carrier-section-title {
    margin-bottom: 60px;
}

section.diploma .row {
    justify-content: center;
    flex-wrap: wrap;
}

section.diploma .diploma-item {
    padding: 25px;

}

section.diploma .diploma-item img {
    border-radius: 12px;
}
