.default_section {
    position: relative;
    width: 100%;
    padding: 80px 10%;
}

.first_section {
    padding-top: 260px;
}

.header_product {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.header_product h1 {
    font-size: 40px;
    color: var(--default_dark_blue)
}

.header_product div {
    margin-top: 30px;
    width: 100%;
    height: 3px;
    background-color: var(--default_light_blue);
}


.product_content_holder {
    width: 100%;
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.product_content_holder p {
    color: var(--default_light_gray);
    font-weight: 200;
}

.product_content_holder img {
    padding-top: 40px;
    width: 100%;
}

.budget_button {
    padding: 10px 30px;
    border: none;
    background-color: var(--default_medium_blue);
    color: white;
    font-weight: bold;
    font-size: 16px;
    border-radius: 20px 0 0 0;
    cursor: pointer;
    margin-top: 30px;
}


.gray_holder {
    padding: 20px 40px 40px 40px;
    background-color: var(--default_super_light_gray);
    width: 100%;
    max-width: none;
    border-radius: 40px;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
}

.see_also_header {
    color: var(--default_orange)
}

.opts_also {
    padding-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.opts_also a{
    font-size: 16px;
    color: var(--default_light_gray);
    font-weight: bold;
}

.arrow_text_holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.arrow_text_holder:not(:last-child) {
    padding-bottom: 20px;
}

.arrow-right {
    padding-right: 5px;
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    
    border-left: 10px solid var(--default_dark_blue);
  }

  @media only screen and (min-width: 750px) {
    .gray_holder {
        max-width: 600px;
    }

    .opts_also {
        flex-direction: row;
    }

    .arrow_text_holder:not(:last-child) {
        padding-bottom: 0px;
    }
  }

@media only screen and (min-width: 1400px) {
    .header_product h1 {
        font-size: 50px;
    }

    .header_product {
        width: 100%;
        max-width: 700px;
    }


    .product_content_holder {
        justify-content: space-between;
        flex-direction: row;
        padding-top: 0px;
    }

    .product_content_holder p {
        color: var(--default_light_gray);
        font-weight: 200;
        max-width: 650px;
    }

    .product_content_holder img {
        position: relative;
        top: -70px;
        padding-top: 0px;
        width: 100%;
        max-width: 600px;
    }

    .budget_button {
        margin-top: 0px;
    }
}