html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif !important;
}

.menu {
    font-size: 18px;
}

p {
    font-size: 30px;
}

p + p {
    margin-top: 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: #0047FF;
}

h1 {
    font-size: 55px;
    font-weight: 500;
}

h2 {
    font-size: 45px;
    font-weight: 500;
    margin-top: 50px;
}

.sectionTitle {
    font-size: 55px;
    font-weight: 500;
    margin-top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container_ {
    width: 100%;
    padding: 0 200px;
    min-height: 100px;
}

.header {
    width: 100%;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
}

.menu li + li {
    margin-left: 45px;
}

.menu li a {
    transition: 0.3s;
}

a:hover {
    color: #0047FF;
}

.lines {
    width: 100%;
    height: 200px;
    margin-top: 70px;
}

.animationLine {
    max-width: 110%;
    margin-left: -10px;
    height: 30px;
    display: flex;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

.animationLine span + span {
    margin-left: 90px;
}

.green {
    background: #00DF66;
    color: #000;
    transform: rotate(356deg);
}

.animationLine + .animationLine {
    margin-top: 16px;
}

.blue {
    background: #0047FF;
    color: #fff;
    transform: rotate(356.5deg);
}

.track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.aboutWrapper {
    width: 100%;
    display: flex;
    margin-top: 50px;
}

.aboutWrapper > div {
    width: 50%;
}

.aboutWrapper div p {
    line-height: 120%;
}

.aboutWrapper > .img {
    background: url('../img/univer.jpg');
    background-size: cover;
    margin-left: 30px;
    z-index: 0;
}

.aboutWrapper img {
    position: absolute;
    right: 0;
    z-index: 1;
}

.about .itemsWrapper {
    width: 100%;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
}

.about .itemsWrapper .item {
    font-size: 30px;
    display: flex;
    align-items: center;
}

.greyText {
    color: #626570;
    font-size: 25px;
    position: absolute;
    margin-top: 5px;
}

.about .itemsWrapper .item p {
    margin-left: 30px;
}

.speakers {
    margin: 0;
    margin-top: 150px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.speakersWrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
}

.speakers .speaker {
    width: 400px;
    background: #E9EDF6;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 20px;
}

.speakers .speaker .wrapper {
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: 100%;
    height: -webkit-fill-available;
    padding-bottom: 50px;
}

.speakers .speaker .avatar {
    width: 100%;
}

.speakers .speaker .avatar img {
    width: 100%;
}

.speakers .speaker .info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
}

.speakers .speaker .info .name {
    font-size: 35px;
    font-weight: 600;
}

.speakers .speaker .info .position {
    font-size: 20px;
    color: #626570;
    margin-top: 15px;
    line-height: 120%;
}

.speakers .speaker .topic {
    width: 100%;
    font-size: 20px;
    color: #0047FF;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: auto;
}

.speakers .speaker .topic img {
    width: 30px;
    margin-right: 15px;
}

.speakers .shield {
    font-size: 12px;
    color: #fff;
    background: #0047FF;
    padding: 8px 15px;
    position: absolute;
    top: 0;
}

.speakers .vector2 {
    position: absolute;
    right: 0;
    margin-top: 300px;
}

.program {
    margin-top: 150px;
}

.program .vector {
    position: absolute;
    left: 0;
}

.program > p {
    margin-top: 16px;
}

.program .itemContainer {
    margin-top: 50px;
}

.program .item {
    width: 100%;
    padding: 22px 90px;
    font-size: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

.program .item span:nth-child(1) {
    width: 10%;
}

.program .item span:nth-child(2) {
    width: 30%;
}

.program .item span:nth-child(3) {
    width: 30%;
}

.program .item span + span {
    margin-left: 30px;
}

.program .itemGreen {
    background: #00DF66;
    color: #000;
}

.program .itemBlue {
    background: #0047FF;
    color: #fff;
}

.locationsWrapper {
    width: 100%;
    margin-top: 50px;
    font-size: 30px;
    position: relative;
}

.locationsWrapper .location {
    display: flex;
}

.locationsWrapper .location + .location {
    margin-top: 50px;
}

.locationsWrapper .location .name {
    width: 30%;
}

.locationsWrapper .location .desc {
    width: 70%;
    color: #626570;
}

.locationsWrapper .line {
    width: 2px;
    height: 100%;
    background: #0047FF;
    position: absolute;
    left: 25%;
}

.employers {
    margin: 100px 200px 0 200px;
}

.employers > img {
    margin-top: 16px;
}

.vip_employers {
    max-width: 100%;
    margin-top: 100px;
}

.vip_employers .sectionTitle {
    margin-bottom: 50px;
}

.partnersContainer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.partnerWrapper {
    width: 400px;
    margin: 10px;
}

.vip_employers_header {
    padding: 50px 100px;
    position: relative;
    border: 3px solid #0047FF;
    background-color: #fff;
}

.vip_employers_header-corner {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 10px;
    background-color: #0047FF;
    color: #fff;
}

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

.vip_employers_content {
    background-color: #E8ECF5;
    padding: 7% 10%;
    word-break: break-all;
}

.vip_employers_content-title {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 7%;
}

.vip_employers_content p {
    color: #626570;
    font-size: 20px;
    line-height: normal;
    padding-bottom: 3%;
    hyphens: auto;
    overflow: auto;
    word-break: break-word;
}

.vip_employers_content button {
    background-color: #0047FF;
    border: none;
    padding: 10px 14px;
    color: #fff;
}

.vip_employers_content button:hover {
    opacity: 0.7;
}

.vip_employers_content-full-credi,
.vip_employers_content-full-motor,
.vip_employers_content-full-zv,
.vip_employers_content-full-wu {
    display: none;
}

.footer {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}