/************************ About ***************************/
.paragraph_section {
    display: flex;
    flex-wrap: wrap;
    margin: 120px auto;
    justify-content: space-between;
    align-items: center;
}

.opening .paragraph_section {
    margin-bottom: 0;
}

.paragraph_section .column {
    width: 40%;
    position: relative;
}

.paragraph_section .image_column {
    width: 40%;
}

.paragraph_section .video_column {
    width: 46%;
}

.about {
    position: relative;
}

.about img {
    max-width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    /* background-color: var(--grey); */
    border-radius: 10px;
}

.reverse_sides {
    flex-direction: row-reverse;
}

.paragraph_section .button {
    margin-top: 25px;
}

.bullet_point {
    display: flex;
    align-items: stretch;
    margin-bottom: 5px;
}

.bullet_point:last-of-type {
    margin-bottom: 15px;
}

.bullet_point i {
    color: var(--gold);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 18px;
    width: 30px !important;
    display: flex;
    margin-left: -5px;
    justify-content: center;
}

.bullet_point p {
    margin: 0;
    width: calc(100% - 30px);
}


@media (max-width: 1300px) {
    .paragraph_section .column {
        width: 45%;
    }
    
    .paragraph_section .image_column {
        width: 45%;
    }
}

@media (max-width: 950px) {
    .paragraph_section {
        display: block;
        margin: 70px auto;
    }

    .paragraph_section .column {
        width: 80%;
        padding: 0;
        margin: 0 auto;
    }

    .paragraph_section .image_column {
        position: relative;
        margin: 0 auto;
        margin-top: 45px;
        width: 100%;
        height: auto;
    }
    
    .image_column img {
        display: block;
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 750px) {
    .about img, .paragraph_section .image_column {
        width: 100%;
        max-width: 100%;
    }

    .paragraph_section .column {
        width: 100%;
    }
}

@media (max-width: 600px){
    .paragraph_section .column .buttons_container {
      display: block;
    }
  
    .paragraph_section .column .buttons_container .button {
      padding-left: 0;
      padding-right: 0;
    }

    .paragraph_section h1 {
        text-align: center;
    }
}