#talks-about_page {
    margin: 0 300px;
}

.talks-about_details {
    width: 385px;
    margin-bottom: 80px;
}

.talks_container {
    display: flex;
    margin: 110px 0;
    align-items: center;
}

.talks_title {
    margin: 150px 0 20px 0;
}

.talks-img {
    width: 385px;
    height: 255px;
    object-fit: cover;
}

/* .talks-img_contained {
    width: 385px;
    height: 255px;
    object-fit: contain;
} */

.talks-details_container {
    width: 620px;
    margin: 0 80px;
}

.about_content {
    display: flex;
    margin: 130px 40px 20px 20px;
}

.about-img_container {
    margin: 60px;
}

.about-img {
    width: 385px;
    height: 430px;
    object-fit: cover;
}

.about-text_container {
    margin: auto;
}

.about_intro {
    margin-bottom: 40px;
}

.about_video {
    display: flex;
    margin: 20px 80px 80px 80px;
}

.contact-me_link {
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    padding: 10px;
    transition: ease-in-out .5s;
}

.contact-me_link:hover {
    color: #fff;
    background-color: #000;
    text-decoration: none;
}

/* breakpoints */

@media (max-width: 1750px) {

    #talks-about_page {
        margin: 60px
    }
    
}


@media (max-width: 800px) {

    #talks-about_page {
        margin: 20px
    }

    .talks_container {
        display: block;
        margin: 60px auto;
    }

    .talks-details_container {
        width: 100%;
        margin: 20px auto;
    }

    .talks-about_details {
        width: 80vw;
    }

    .talks-img {
        display: flex;
        justify-content: center;
        width: 350px;
        height: 100%;
    }

    .about_intro {
        font-size: 40px;
        margin: 20px 0;
    }

    p {
        font-size: 16px;
    }
    
    .about_content {
        display: block;
        margin: auto;
    }
    
    .about-img_container {
        margin: 100px 0 0 0;
        display: flex;
        justify-content: center;
    }
    
    .about-text_container {
        margin: 20px;
    }

    .about_video {
        margin: 30px 0;
    }
}

