.about_me
{
    width: 1366px;
    max-width: 100%;
    margin: 0 auto;
    padding: 75px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.about_me img
{
    height: 300px;
    border-radius: 5px;
    box-shadow: 0 2px 10px -5px black;
}

.about_me p
{
    margin: 0 50px;
    width: 500px;
}

.testimonial_header
{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, rgba(246,156,196,1) 0%, rgb(255,184,175) 100%);
    color: white;
    text-shadow: 0 0 2px black;
    box-shadow: inset 0px 0 10px -5px black;
}

.testimonial
{
    width: 1366px;
    max-width: 100%;
    margin: 0 auto;
    padding: 75px 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.main_testimonial, .other_testimonial
{
    width: 48%;
    min-width: 300px;
    box-shadow: 0 2px 10px -5px black;
    border-radius: 5px;
    overflow: hidden;
    height: 475px;
    border: 2px solid lightgray;
    user-select: none;
}

.testimonial_slider
{
    width: 100%;
    height: 75%;
    position: relative;
    background-color: rgba(255, 182, 193, 0.5);
    border-bottom: 4px solid pink;
}

.testimonial_slider_button
{
    position:absolute;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    width: 20px;
    padding: 0 10px 0 30px;
    fill: white;
}

.testimonial_slider_button:hover 
{
    cursor: pointer;
    
}

.back
{
    left: 0;
}

.next
{
    right: 0;
}

.back:hover
{
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgb(0, 0, 0, 0) 100%);
}

.next:hover
{
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0, 0.25) 100%);
}

.testimonial_slider img
{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial_text
{
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.testimonial_text > .testimonial_description
{
    font-size: 1.25rem;
}

.testimonial_text > .testimonial_description_2
{
    font-size: 0.75rem;
}

.testimonial_video
{
    width: 1366px;
    max-width: 100%;
    margin: 0 auto;
    padding: 75px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.testimonial_video video
{
    width: 720px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px -5px black;

}