.intro {
    position: relative;
    height: 883px;
    width: 100%;
    background: url('../imgs/bg/intro_2.png');
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;

}
.intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    background-color: #2C3E50CC;
    z-index: 1;
}

.big_intro_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.intro_title {
    color: #fff;
    font-weight: 700;
    font-size: 62px;

}

.intro_subtitle {
    color: #fff;
    font-weight: 400;
    font-size: 56px;
}

.training_adventages {
    display: flex;

    flex-wrap: wrap;
}
.training_advantage {
    margin-top: 69px;
    width: 31%;
    margin-right: 2%;
    display: flex;
}
.training_advantage img {
    width: 63px;
    height: 63px;
}
.training_advantage_description {
    margin-left: 26px;
}
.training_advantage_title {
    color: #2C3E50;
    font-weight: 600;
}
.training_advantage_text {
    margin-top: 35px;
    color: #404040
}

.training_advantage_text span {
    color: #2980B9;
}







.program {
    margin-top: 90px;
    
}

.program_title {
    font-weight: 800;
    color: #2C3E50;
    font-size: 24px;
    text-align: center;
}
.program_subtitle {
    margin-top: 13px;
    font-weight: 500;
    font-size: 24px;
    color: #2C3E50;
    text-align: center;
}
.program_accordeon {
    margin-top: 50px;
    border-radius: 40px 40px 0 0;
   
    cursor: pointer;
}

.program_accordeon.active {
    background-color: #DCDCDC82;
}
.program_accordeon.active .program_hide {
    display: block;
}

.program_accordeon.active .program_visible_arrow {
    transform: rotate(0);
}
.program_visible {
    position: relative;
    display: flex;
    align-items: center;
    height: 63px;
    border-radius: 40px;
    padding-left: 100px;
    padding-right: 100px;
    background-color: #DCDCDC;
    transition: .2s linear;
}
.program_accordeon:hover .program_visible {
    background-color: #cccccc;
}
.program_visible_img {
    position: absolute;
    left: -5px;
    top: -5px;
}
.program_visible_arrow {
    width: 20px;
    transform: rotate(-90deg);
}
.program_visible_title {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-left: 25px;
}
.program_hide {
    display: none;
    padding-left: 100px;
    padding-right: 100px;

}
.program_hide_item {
    padding-top: 12px;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
}
.program_hide_item_marker {
    height: 3px;
    width: 20px;
}
.program_hide_item_text {
    margin-left: 25px;
    color: #404040;
}


.how_inner {
    margin-left: 300px;
    width: 70%;
    margin-top: 87px;
    margin-bottom: 87px;
}

.how_title {
    font-weight: 800;
    font-size: 20px;
    color: #fff;
}
.how_item {
    color: #fff;
    margin-top: 47px;
}
.how_item_title {
    
    font-weight: 600;
    font-size: 16px;
}
.how_item_text {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
}

.program_buttons {
    margin-top: 100px;
    display: flex;
    justify-content: end;
    align-items: center;
}
.program_link {
    color: #2980B9;
    font-size: 16;
    font-weight: 500;

    transition: .2s linear;
}

.program_link:hover {
    color: #000
}

.program_button {
    margin-left: 38px;
    transition: .2s linear;
}

.program_button:hover {
    background-color: rgb(27, 156, 207);
}