/* mentoring */

.vep-mentor p,
.vep-mentor ul,
.vep-mentor h2,
.vep-mentor h3 {
    color: var(--vep-ui-grey-1000);
}

.main-vep-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;

    &:before,
    &:after {
        content: "";
        display: block;
        width: 100%;
        clear: both;
    }

    &:before {
        content: "";
        width: 100%;
        height: 5px;
        background: var(--vep-ui-purple);
        margin: auto 0;
        position: absolute;
        top: 50%;
        left: 0;
    }
}
.vep-timeline-content {
    text-align: left;
    position: relative;
    min-height: 120px;
    padding: 25px 0 20px 40px;
}

.vep-timeline-content:before {
    content: "1";
    color: #F0F1F4;
    font-size: 80px;
    font-weight: 700;
    position: absolute;
    z-index: -1;
    top: 0;
    left: -20px;
}

.vep-timeline-content:after {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 100%;
    border: 5px solid var(--vep-ui-purple);
    text-align: center;
    position: absolute;
    left: -10px;
    bottom: -11px;
    content: "";
}

.vep-timeline {
    position: relative;
}

.vep-timeline.bottom .vep-timeline-content:after {
    top: -7px;
    bottom: 0;
    left: 3px;
}


.vep-timeline.vep-timeline-6 {
    width: 0;
    min-width: 0;
}

.vep-timeline .sr-black-hightlighting {
    animation-duration: 2s;
    @media screen and (max-width: 991px) {
        animation: none;
        animation-duration: 0;
        margin: 0;
    }
}
.vep-timeline-2 .sr-black-hightlighting {
    animation-delay: 0.4s;
}
.vep-timeline-3 .sr-black-hightlighting {
    animation-delay: 0.8s;
}
.vep-timeline-4 .sr-black-hightlighting {
    animation-delay: 1.1s;
}
.vep-timeline-5 .sr-black-hightlighting {
    animation-delay: 1.3s;
}

.vep-timeline-2 .vep-timeline-content:before {
    content: "2";
}
.vep-timeline-3 .vep-timeline-content:before {
    content: "3";
}
.vep-timeline-4 .vep-timeline-content:before {
    content: "4";
}
.vep-timeline-5 .vep-timeline-content:before {
    content: "5";
}

.main-vep-timeline {
    display: grid;
    grid-template-columns: repeat(5, auto);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
}

.vep-timeline-1 { grid-area: 1 / 1 / 2 / 2; }
.vep-timeline-2 { grid-area: 2 / 2 / 3 / 3; }
.vep-timeline-3 { grid-area: 1 / 3 / 2 / 4; }
.vep-timeline-4 { grid-area: 2 / 4 / 3 / 5; }
.vep-timeline-5 { grid-area: 1 / 5 / 2 / 6; }

.main-vep-timeline:after {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='11' fill='%23A64DFF'%3E%3C/circle%3E%3Cpath d='M15 8L9.63415 13.7895C9.53659 13.8948 9.34147 14 9.14635 14C8.95123 14 8.75611 13.8948 8.65855 13.7895L7 12' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
    width: 22px;
    height: 22px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

@media screen and (max-width: 1199px) {
    .main-vep-timeline {
        display: flex;
        flex-flow: row wrap;
        max-width: 500px;
        margin: 0 auto;
    }
    .vep-timeline {
        width: 100%;
        padding-left: 70px;
    }
    .vep-timeline-1,
    .vep-timeline-2 ,
    .vep-timeline-3 ,
    .vep-timeline-4 ,
    .vep-timeline-5 {
        grid-area: auto;
    }
    .main-vep-timeline:before  {
        width: 5px;
        height: 100%;
        top: 0;
        left: 0;
    }
    .main-vep-timeline:after {
        top: inherit;
        bottom: -3px;
        left: -8px;
        right: inherit;
    }
    .vep-timeline-content:after,
    .vep-timeline.bottom .vep-timeline-content:after {
        left: -78px;
        bottom: inherit;
        top: 50px;
        margin: auto 0;
    }

    .vep-timeline-1 {
        order: 1;
    }
    .vep-timeline-2 {
        order: 4;
    }
    .vep-timeline-2 .vep-timeline-content:before {
        content: "4";
    }
    .vep-timeline-3 {
        order: 2;
    }
    .vep-timeline-3 .vep-timeline-content:before {
        content: "2";
    }
    .vep-timeline-4 {
        order: 5;
    }
    .vep-timeline-4 .vep-timeline-content:before {
        content: "5";
    }
    .vep-timeline-5 {
        order: 3;
    }
    .vep-timeline-5 .vep-timeline-content:before {
        content: "3";
    }
}/*
@media screen and (max-width: 756px) {
    .vep-timeline-content:before {
        font-size: 50px;
        top: 14px;
        left: -3px;
    }
    .main-vep-timeline:before  {
        left: 10px;
    }
    .vep-timeline .vep-timeline-content:after,
    .vep-timeline.bottom .vep-timeline-content:after {
        left: -65px;
    }
}*/
.hur54b {
    text-align: center;
}
.hur54b button {
    font-size: 0;
}

@media screen and (min-width: 480px) {
    .hur54b  iframe {
        max-width: 70vw !important;
    }
}

@media screen and (max-width: 480px) {
    .hur54b {
        padding: 70px 20px !important;
    }
}

.vep-mentor-consultation p {
    border-bottom: 1px solid var(--vep-ui-grey-600);
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.vep-mentor-consultation span {
    color: var(--vep-ui-grey-800);
}
.vep-mentor-consultation span strong {
    color: var(--vep-ui-purple);
}
.vep-mentor-consultation button {

    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x) !important;
    font-size: var(--bs-btn-font-size) !important;
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color) !important;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    background-color: var(--bs-btn-bg);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, opacity 0.15s ease-in-out;
    border-radius: 12px;
    height: 64px;
    font-family: "Work Sans", sans-serif;
    text-transform: uppercase;
}

.vep-mentor-consultation button:hover,
.vep-mentor-consultation button:focus {
    background-color: var(--vep-indigo-dark) !important;
    border-color: var(--vep-indigo-dark);
    box-shadow: 0 13px 30px rgba(22,40,72,0.15);
}
.vep-mentor-consultation .vep-flex-2 ,
.vep-mentor-info .vep-flex-2 {
    gap: 30px;
    justify-content: center;
}
.vep-mentor-consultation .vep-white-box {
    max-width: 600px;
}
@media screen and (max-width: 765px) {
    .vep-first-section .h-20 {
        padding-bottom: 25px;
    }
}
