section {
    padding: 40px 70px;
}

.summary-container > div:last-child {
    border-bottom: 1px solid rgba(81, 116, 126,0.3);
    padding-bottom: 40px;
}

.summary-container h1 {
    font-size: 35px;
    text-align: center;
    text-transform: capitalize;
    max-width: 500px;
    margin: auto;
    letter-spacing: -1.7px;
}

.summary-container .tags {
    column-gap: var(--gap);
    margin: 40px 0;
}

.summary-container .tag {
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid var(--foreground-color);
    padding: 3px 6px;
    border-radius: 20px;
}

.summary-container .image-wrapper {
    width: 100%;
    height: 0;
    padding-top: 50%;
    position: relative;
    overflow: hidden;
}

.summary-container .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.summary-container .read-time {
    font-family: 'Poppins-SemiBold';
    font-size: 16px;
    position: relative;
    padding: 40px 0 40px 20px;
    letter-spacing: -0.7px;
}

.summary-container .read-time::before {
    content: '';
    position: absolute;
    height: 13px;
    width: 13px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--main-blue);
    border-radius: 50%;
}

.summary-container .summary {
    font-family: 'Poppins-Medium';
    font-size: 26px;
    letter-spacing: -0.7px;
    max-width: 55%;
}

.summary-container .summary *
{
    font-family: 'Poppins-Medium';
    font-size: 26px;
    letter-spacing: -0.7px;
}

.summary-container .summary-image
{
    margin: auto;
}

.summary-container .summary-image img {
    height: auto;
    width: 100%;
}

.content-container {
    padding-bottom: 0;
}

.content-container > .section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(81, 116, 126, 0.3);
    column-gap: var(--gap);
}

.content-container > .section strong {
    font-family: 'Poppins-SemiBold';
    font-size: 17px;
    letter-spacing: -0.1px;
}

.content-container li {
    list-style: none;
    position: relative;
    padding: 5px 0 5px 20px;
}

.content-container ol,
.content-container ul {
    padding-left: 0;
}

.content-container li::before {
    content: '';
    position: absolute;
    height: 13px;
    width: 13px;
    left: 0;
    top: 7px;
    background-color: var(--main-blue);
    border-radius: 50%;
}

.content-container .section .title {
    font-family: 'Poppins-Medium';
    font-size: 27px;
    letter-spacing: -0.7px;
}

.quote-section {
    background-color: #fff;
}

.quote-section * {
    color: var(--main-blue);
}

.quote-section p {
    text-align: center;
}

.quote-section > div {
    max-width: 70%;
    margin: auto;
}

.quote-section h4 {
    text-align: center;
    line-height: 1.4;
}

.more-studies {
    background-color: #FFFFFF;
    padding-bottom: 90px;
}

.more-studies h3 {
    text-align: center;
}

.more-studies .studies {
    width: 100%;
    max-width: 1245px;
    margin: auto;
    overflow: hidden;
}

.more-studies .studies .read-time {
    font-family: "Poppins-Medium";
    font-size: 11px;
    margin-bottom: 10px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--foreground-color);
}

.more-studies .studies .read-time .bullet {
    background-color: var(--main-blue);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    margin-right: 5px;
}

.more-studies img {
    width: 100%;
    margin-bottom: 10px;
    aspect-ratio: 2.1 / 1;
}

.more-studies .case-title {
    font-size: 20px;
    font-family: 'Poppins-Medium';
    letter-spacing: -0.6px;
    margin-bottom: 0px;
    color: var(--foreground-color);
}

.more-studies .case-content {
    font-family: 'Poppins-Regular';
    font-size: 13px;
    line-height: 1.46;
    margin-top: 10px;
    color: var(--foreground-color);
}

.more-studies .case-content p {
    margin: 0;
}

.contact-container {
    position: relative;
    background-color: var(--main-blue);
}

.contact-container > div {
    position: relative;
}

.contact-container h2 {
    color: #fff;
}

.contact-container h2.gold-header {
    margin: 0;
}

.contact-container h2.blue-header {
    margin: 0 0 50px 50px
}

.contact-container .contact-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-container .contact-banner img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.contact-container .inner {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 100px;
}

.contact-container .pc-button {
    border-color: #fff;
}

.contact-container .pc-button span {
    color: #fff;
}

.contact-container .pc-button::before {
    background-color: #fff;
}

.contact-container .pc-button:hover {
    background-color: #fff;
}

.contact-container .pc-button:hover span {
    color: #000;
}

.content-container .section-image
{
    max-width: 50%;
}

.content-container .section-image img
{
    height: auto;
    width: 100%;
}

@media screen and (max-width: 989px) {

    .summary-container {
        background-color: white;
    }

    .summary-container .tags {
        flex-wrap: wrap;
        column-gap: 5px;
        row-gap: 15px;
        justify-content: flex-start;
        margin-top: 30px;
    }

    .summary-container .tag {
        white-space: nowrap;
        font-size: 11px;
        padding: 5px 15px;
        border-radius: 15px;
        background-color: var(--background-color);
        border: 0;
    }

    .summary-container > div:last-child {
        flex-direction: column-reverse;
    }

    .summary-container .summary-image {
        margin: 0;
    }

    .summary-container .summary {
        font-size: 17px;
        padding-top: 20px;
        padding-bottom: 45px;
        max-width: 100%;
    }

    .summary-container .read-time {
        font-size: 11px;
        padding-left: 15px;
    }

    .summary-container .read-time::before {
        width: 6px;
        height: 6px;
    }

    .content-container {
        background-color: white;
    }

    .content-container > .section {
        flex-direction: column-reverse;
        padding-top: 0;
    }

    .content-container .section-image {
        padding-bottom: 40px;
        max-width: 100%;
    }

    .content-container .section-image img {
        width: 100%;
    }

    .content-container .section-content p,
    .content-container li {
        font-size: 14px;
    }

    .content-container li::before {
        height: 11px;
        width: 11px;
    }

    .content-container .section-content .title {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {

    .summary-container h1 {
        font-size: 25px;
        text-align: left;
        justify-content: flex-start;
        line-height: 1.2;
    }

    section {
        padding: 40px 20px;
    }
    
    .quote-section p {
        font-size: 10px;
    }

    .quote-section h4 {
        font-size: 20px;
    }

    .contact-container h2 {
        font-size: 35px;
    }

    .contact-container .pc-button {
        background-color: #fff;
    }

    .contact-container .pc-button span {
        color: #fff;
    }

    .quote-section > div {
        max-width: 100%;
        margin: 0;
    }

    .quote-section .container h4{
        font-size: 20px;
        margin-bottom: 30px;
    }

    .image-wrapper-mobile
    {
        overflow: hidden;
        padding-top: 25px;
    }
    .image-wrapper-mobile > img
    {
        width: 100%;
    }

    .content-container > .section strong
    {
        display: block;
        padding-top: 10px;
        font-size: 14px;
        letter-spacing: -0.2px;
        padding-bottom: 5px;
    }

    .content-container li
    {
        padding: 5px 0 5px 30px;
    }

    .content-container .section:last-child .section-image
    {
        padding-top: 70px;
    }

    .content-container .section:last-child
    {
        border: 0;
    }

    .content-container
    {
        padding-bottom: 120px;
    }

    .quote-section
    {
        height: 100vh;
    }

    .quote-section .container
    {
        justify-content: center;
    }

    .contact-container
    {
        height: 80vh;
    }
    
    .contact-container .max-width h2
    {
        line-height: 1.2;
    }

    .contact-container h2.blue-header
    {
        margin: 0 0 10px 0;
    }

    .contact-container .max-width.inner
    {
        padding: 0;
        margin: 0;
        position: relative;
        top: 210px;
    }

    .contact-container .pc-button
    {
        padding: 10px 30px;
    }

    .contact-container .pc-button span
    {
        font-size: 10px;
    }

    .more-studies h3
    {
        font-size: 20px;
        margin-bottom: 65px;
    }

    .more-studies .case-title
    {
        font-size: 17px;
        margin-bottom: 0;
    }

    .more-studies .case-content
    {
        font-size: 14px;
    }

    .more-studies
    {
        padding-bottom: 110px;
    }
}