@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Raleway&display=swap");
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    color: #111111;
    font-family: "Open Sans", sans-serif;
    line-height: normal;
    font-size: 1.6rem;
}
.screen_wrapper {
    overflow: hidden;
}
.screen_wrapper .item_box {
    height: 50%;
    width: 100%;
    transition: 0.5s;
}
.screen_wrapper .item_box.item_box_left {
    background: url(../himages/main-photo-alt.webp) center/cover no-repeat;
    position: relative;
    min-height: 50vh;
}
.screen_wrapper .item_box.item_box_left::after {
    content: "";
    opacity: 0.3;
    width: 100%;
    background: #000;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.screen_wrapper .item_box.item_box_right .screen_user {
    flex: 1;
    padding: 30px;
}
.screen_wrapper .item_box.item_box_right .avatar_box img {
    display: inline-block;
    height: 70px;
    margin-bottom: 15px;
}
.screen_wrapper .item_box.item_box_right .description-text {
    font-size: 18px;
    font-family: "Raleway", sans-serif;
    line-height: 1.45;
}
.screen_wrapper .item_box.item_box_right .resume_btn {
    padding: 18px 30px;
    font-size: 15px;
    text-transform: uppercase;
    border: 2px solid #e75e5e;
    color: #111111;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease-out;
    display: inline-flex;
    align-items: center;
    font-family: "Raleway", sans-serif !important;
    font-weight: bold;
    color: #000;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.screen_wrapper .item_box.item_box_right .user_summery {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
}
.screen_wrapper .item_box.item_box_right .user_summery span {
    color: #e75e5e;
}
.screen_wrapper .item_box.item_box_right .user_summery.summery_info {
    display: none;
}
.screen_wrapper .item_box.item_box_right .button-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.screen_wrapper .item_box.item_box_right .resume_btn svg {
    padding-left: 10px;
    transition: all .3s;
}
.screen_wrapper .item_box.item_box_right .resume_btn.cv_download {
    text-decoration: none;
    display: none;
}
.screen_wrapper .item_box.item_box_right .resume_btn:hover {
    background: #e75e5e;
    color: #fff;
}
.screen_wrapper .item_box.item_box_right .resume_btn:hover svg {
    fill: #fff;
}
.screen_wrapper .item_box.item_box_right .angle_arrow_control {
    transition: 0.3s;
    cursor: pointer;
    display: none;
}
.screen_wrapper .item_box.item_box_right .angle_arrow_control:hover {
    margin-left: 0px;
}
.screen_wrapper .item_box.item_box_right .angle_arrow_control svg {
    transform: scaleX(-1);
    height: 17px;
}
.screen_wrapper .item_box.item_box_right .screen_content {
    display: none;
    padding: 30px;
    border-left: 1px solid #ececec;
    height: 100%;
    overflow-y: scroll;
}
.screen_wrapper .item_box.item_box_right .screen_content h3 {
    font-size: 18px;
    font-weight: bold;
}
.screen_wrapper .item_box.item_box_right .screen_content p {
    font-size: 16px;
}
.toggle_control:checked + .screen_wrapper .item_box .screen_user .resume_btn {
    display: none;
}
.toggle_control:checked + .screen_wrapper .item_box .screen_user .resume_btn.cv_download {
    display: inline-block;
}
.toggle_control:checked + .screen_wrapper .item_box .screen_user .angle_arrow_control {
    display: inline-flex;
}
.toggle_control:checked + .screen_wrapper .item_box .screen_content {
    display: block;
}
.toggle_control:checked + .screen_wrapper .item_box .screen_user .user_summery {
    display: none;
}
.toggle_control:checked + .screen_wrapper .item_box .screen_user .user_summery.summery_info {
    display: block;
}

@media (max-width: 767px) {
    .screen_wrapper .item_box.item_box_right {
        text-align: center;
    }
    .screen_wrapper .item_box.item_box_right .button-row {
        justify-content: center;
    }    
}
@media (min-width: 576px) {
    .screen_wrapper .item_box.item_box_right .screen_user {
        padding: 60px;
    }
}
@media (min-width: 768px) {
    .screen_wrapper {
        height: 100vh;
        width: 100vw;
        display: flex;
        overflow: hidden;
    }
    .screen_wrapper .item_box {
        height: 100%;
    }
    .screen_wrapper .item_box.item_box_left {
        height: 100vh;
    } 
    .screen_wrapper .item_box.item_box_right {
        height: 100%;
        display: flex;
        align-items: center;
        position: relative;
    } 
    .screen_wrapper .item_box.item_box_right .description-text{
        max-width: 350px;
    }
    .screen_wrapper .item_box.item_box_right .screen_user {
        padding: 30px;
    }
    .screen_wrapper .item_box.item_box_right .button-row {
        margin-top: 20px;
    }
    .screen_wrapper .item_box.item_box_right .avatar_box img {
        height: 80px;
    }    
    .toggle_control:checked + .screen_wrapper .item_box.item_box_left {
        width: 0;
    }
    .toggle_control:checked + .screen_wrapper .item_box.item_box_right {
        width: 100%;
    }
    .toggle_control:checked + .screen_wrapper .item_box.item_box_right .screen_user {
        max-width: 45vw;
    }
    .toggle_control:checked + .screen_wrapper .item_box.item_box_right .screen_content {
        flex: 1;
    }
}
@media (min-width: 992px) {
    .screen_wrapper .item_box.item_box_right .screen_user,
    .screen_wrapper .item_box.item_box_right .screen_content {
        padding: 60px;
    }
    .screen_wrapper .item_box.item_box_right .description-text {
        max-width: 450px;
    }
}
@media (min-width: 1200px) {
    .screen_wrapper .item_box.item_box_right .description-text,
    .screen_wrapper .item_box.item_box_right .screen_content h3 {
        font-size: 22px;
    }
    .screen_wrapper .item_box.item_box_right .user_summery,
    .screen_wrapper .item_box.item_box_right .screen_content p {
        font-size: 18px;
    }
    .screen_wrapper .item_box.item_box_right .resume_btn {
        font-size: 17px;
        padding: 15px 35px;
    }
}
