﻿:root {
    --dark-grey: #222021;
    --yellow: #E6F45D;
    --red: #EC403C;
    --teal: #05CE94;
    --blue: #2442D3;
    --background-grey: #151515;
    --title-font: "bebas-neue", sans-serif;
    --main-font: "area-normal", sans-serif;
}

/* General */

.main-section-wrapper {
    background: url(https://immediac.blob.core.windows.net/sorrycomedyfestivalstaging/images/brick-bg-fade.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.cms-content a {
    color: var(--teal);
}

.cms-content a:hover {
    color: var(--red);
    text-decoration: none!important;
}

.cms-content p strong {
    color: var(--red);
}

/* Banner */

.interior-banner-wrapper {
    position: relative;
    min-height: 750px;
}

.interior-banner-wrapper .banner-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%);
}

.interior-banner-wrapper .overlay {
    position: relative;
    z-index: 1;
}

.interior-banner-wrapper h1 {
    font-size: 80px;
    line-height: 80px;
}

section.interior-banner-wrapper .container {
    display: flex;
    align-items: center;
    min-height: 750px;
    padding-top: 50px;
}

@media (min-width: 767px) {
    section.interior-banner-wrapper .container .row {
        width: 100%;
    }
}

section.interior-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.00) 65%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 1;
}

section.interior-banner-wrapper .overlay {
    position: relative;
    z-index: 2;
}

section.interior-banner-wrapper p.subtitle {
    color: var(--red);
    text-transform: uppercase;
    font-family: var(--title-font);
    margin-bottom: 0px;
    font-size: 28px;
}

section.interior-banner-wrapper h1 {
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 60px;
    line-height: 60px;
}

section.interior-banner-wrapper h1 strong {
    color: var(--teal);
}

section.interior-banner-wrapper .cms-content {
    margin-bottom: 25px;
}

section.interior-banner-wrapper .cms-content p {
    font-size: 23px;
    line-height: 33px;
}

section.interior-banner-wrapper .banner-button-wrapper p {
    margin-bottom: 0px;
    display: flex;
    gap: 10px;
}

/* Interior Banner - No Overlay */

.interior-banner-wrapper.no-overlay::before {
    background: none!important;
}

.interior-banner-wrapper.no-overlay .banner-bg-image {
    mask-image: unset !important;
    width: 100%;
}

.interior-banner-wrapper.no-overlay {
    margin-top: 135px;
}

.interior-banner-wrapper.no-overlay .banner-bg-image {
    position: relative;
}

.interior-banner-wrapper.no-overlay {
    min-height: unset;
}

/* Details Button Bar */

.details-button-bar {
    text-align: center;
    padding: 20px 0px;
    background: var(--dark-grey);
    border-bottom: 10px solid var(--background-grey);
}

.details-button-bar p {
    margin-bottom: 0px;
}

/* mainContent */

section.maincontent-wrapper .container > .row {
    display: flex;
    align-items: flex-start;
}

section.maincontent-wrapper .row::before,
section.maincontent-wrapper .row::after {
    display: none;
}

section.maincontent-wrapper .row > div:last-child {
    margin-top: auto;
    margin-bottom: auto;
}

section.maincontent-wrapper.Grey {
    background: var(--dark-grey);
}

section.maincontent-wrapper .content-wrapper > div > *:nth-child(1) {
    margin-top: 0px;
}

section.maincontent-wrapper .content-wrapper > div > *:nth-last-child(1) {
    margin-bottom: 0px;
}

section.maincontent-wrapper .right-padding {
    padding-left: 50px;
}

section.maincontent-wrapper .left-padding {
    padding-right: 50px;
}

section.maincontent-wrapper h2 {
    margin-bottom: 15px;
}

section.maincontent-wrapper p.eyebrow-text {
    color: var(--teal);
    text-transform: uppercase;
    font-family: var(--title-font);
    margin-bottom: 4px;
    font-size: 25px;
    letter-spacing: 1px;
}

/* List Icon Styles */

.maincontent-wrapper .x-mark ul,
.maincontent-wrapper .check-mark ul {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.maincontent-wrapper .x-mark ul li,
.maincontent-wrapper .check-mark ul li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0px 0px 22px;
}

.maincontent-wrapper .x-mark ul li span,
.maincontent-wrapper .check-mark ul li span,
.maincontent-wrapper ol li span {
    flex: 1;
}

.maincontent-wrapper .x-mark ul li:nth-last-child(1),
.maincontent-wrapper .check-mark ul li:nth-last-child(1) {
    padding: 0px;
}

.maincontent-wrapper .x-mark ul li::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url('https://immediac.blob.core.windows.net/sorrycomedyfestivalstaging/images/x-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.maincontent-wrapper .check-mark ul li::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url('https://immediac.blob.core.windows.net/sorrycomedyfestivalstaging/images/checkmark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.maincontent-wrapper ol {
    list-style: none;
    counter-reset: ol-counter;
    padding-left: 0;
    margin-top: 30px;
}

.maincontent-wrapper ol li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0px 0px 22px;
    counter-increment: ol-counter;
}

.maincontent-wrapper ol li:last-child {
    padding: 0px;
}

.maincontent-wrapper ol li::before {
    content: counter(ol-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid var(--red);
    border-radius: 50%;
    color: #fff;
    font-family: var(--title-font);
    font-size: 18px;
    flex-shrink: 0;
}

.maincontent-wrapper .two-column ul {
    column-width: auto;
    column-count: 2;
}

.maincontent-wrapper .three-column ul {
    column-width: auto;
    column-count: 3;
}

.maincontent-wrapper .two-column ul li,
.maincontent-wrapper .three-column ul li {
    break-inside: avoid;
}


/* 4 column content */

section.four-block-wrapper.Grey {
    background: var(--dark-grey);
}

section.four-block-wrapper .text-card {
    position: relative;
    background: var(--dark-grey);
    padding: 100px 20px 30px 20px;
    text-align: center;
    height: 100%;
}

section.four-block-wrapper.Grey .text-card {
    background: var(--background-grey);
}

section.four-block-wrapper .icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 68px;
    height: 80px;
    background: var(--red);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    padding-bottom: 19px;
}

section.four-block-wrapper .icon-wrapper i {
    font-size: 35px;
    opacity: 0.7;
}

section.four-block-wrapper .text-card h3 {
    font-size: 28px;
    line-height: 28px;
}

section.four-block-wrapper .text-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0px;
    font-size: 16px;
}

section.four-block-wrapper .bottom-row {
    display: flex;
    flex-wrap: wrap;
}

section.four-block-wrapper .top-content {
    text-align: center;
    margin-bottom: 40px;
}

section.four-block-wrapper .top-content div > div > *:nth-child(1) {
    margin-top: 0px;
}

section.four-block-wrapper .top-content div > div > *:nth-last-child(1) {
    margin-bottom: 0px;
}

/* Six Block Section */

section.six-block-wrapper.Grey {
    background: var(--dark-grey);
}

section.six-block-wrapper .text-card {
    position: relative;
    background: var(--dark-grey);
    padding: 100px 20px 30px 20px;
    text-align: center;
    height: 100%;
}

section.six-block-wrapper.Grey .text-card {
    background: var(--background-grey);
}

section.six-block-wrapper .icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 68px;
    height: 80px;
    background: var(--red);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    padding-bottom: 19px;
}

section.six-block-wrapper .icon-wrapper i {
    font-size: 35px;
    opacity: 0.7;
}

section.six-block-wrapper .text-card h3 {
    font-size: 28px;
    line-height: 28px;
}

section.six-block-wrapper .text-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0px;
    font-size: 16px;
}

section.six-block-wrapper .bottom-row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}

section.six-block-wrapper .top-content {
    text-align: center;
    margin-bottom: 40px;
}

section.six-block-wrapper .top-content div > div > *:nth-child(1) {
    margin-top: 0px;
}

section.six-block-wrapper .top-content div > div > *:nth-last-child(1) {
    margin-bottom: 0px;
}

/* Gallery Section */

section.gallery-wrapper.Grey {
    background: var(--dark-grey);
}

section.gallery-wrapper .top-content {
    text-align: center;
    margin-bottom: 40px;
}

section.gallery-wrapper .top-content div > div > *:nth-child(1) {
    margin-top: 0px;
}

section.gallery-wrapper .top-content div > div > *:nth-last-child(1) {
    margin-bottom: 0px;
}

section.gallery-wrapper .gallery-row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}

section.gallery-wrapper .galleryWrapper {
    padding: 0 10px;
    overflow: hidden;
}

section.gallery-wrapper .fancyWrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

section.gallery-wrapper .fancyWrapper a {
    display: block;
    position: relative;
}

section.gallery-wrapper .fancyWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.4s ease, filter 0.4s ease;
}

section.gallery-wrapper .fancyWrapper a:hover img {
    transform: scale(1.05);
    filter: brightness(0.5);
}

section.gallery-wrapper .gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

section.gallery-wrapper .gallery-icon.play-icon {
    opacity: 1;
}

section.gallery-wrapper .fancyWrapper a:hover .gallery-icon {
    opacity: 1;
}

section.gallery-wrapper .gallery-icon i {
    color: #fff;
    font-size: 22px;
}

section.gallery-wrapper .gallery-icon.play-icon i {
    margin-left: 3px;
}

/* Full Width Callout */

section.full-width-callout {
    background: url(https://immediac.blob.core.windows.net/sorrycomedyfestivalstaging/images/brick-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    border-top: 10px solid var(--background-grey);
    border-bottom: 13px solid var(--background-grey);
}

section.full-width-callout p strong {
    color: #ffffff;
}

section.full-width-callout .container {
    padding: 15px 0px;
}

section.full-width-callout .container .row > div > *:nth-child(1) {
    margin-top: 0px;
}

section.full-width-callout .container .row > div > *:nth-last-child(1) {
    margin-bottom: 0px;
}

section.full-width-callout p.button-wrapper {
    margin-top: 16px;
}

/* sitemap-wrapper */

.sitemap-wrapper ul a {
    color: #ffffff;
}

.sitemap-wrapper ul li {
    margin-bottom: 10px;
}

.sitemap-wrapper ul a:hover {
    color: var(--teal);
    text-decoration: none;
}

/* Two Column Content */

.two-column-content.Grey {
    background: var(--dark-grey);
}

.two-column-content.Grey .background-wrapper {
    background: var(--background-grey);
}

/* Contact Blocks */

.contact-block-wrapper.Grey {
    background: var(--dark-grey);
}

section.contact-block-wrapper .text-card {
    background: var(--background-grey);
    padding: 25px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    text-align: center;
    height: 100%;
}

section.contact-block-wrapper .text-card .description h3 {
    margin-top: 0px;
}

section.contact-block-wrapper .text-card .description{
    height: 100%;
}

section.contact-block-wrapper .button {
    width: 100%;
    text-align: center;
}

section.contact-block-wrapper .description-text *:nth-last-child(1) {
    margin-bottom: 0px;
}

/* Contact Section */

.contact-section-wrapper.Grey {
    background: var(--dark-grey);
}

.contact-section-wrapper .background-wrapper,
.contact-section-wrapper .specific-description {
    background: var(--dark-grey);
    padding: 35px 40px;
    border-radius: 30px;
}

.contact-section-wrapper .specific-description {
    padding: 30px 30px;
    margin-top: 35px;
}

.contact-section-wrapper .specific-description .cms-content *:nth-child(1) {
    margin-top: 0px;
}

.contact-section-wrapper .specific-description ul {
    margin-bottom: 0px;
    margin-top: 10px;
}

.contact-section-wrapper .flex-wrap {
    display: flex;
    gap: 25px;
}

.contact-section-wrapper .flex-wrap a {
    color: var(--teal);
    text-decoration: none;
}

.contact-section-wrapper .flex-wrap a:hover {
    color: var(--red);
}

.contact-section-wrapper .flex-wrap .icon-wrapper {
    background: var(--red);
    width: 50px;
    border-radius: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section-wrapper .flex-wrap .icon-wrapper i {
    font-size: 24px;
}

.contact-section-wrapper .flex-wrap .details-title {
    margin-bottom: 0px;
    font-family: var(--title-font);
    font-size: 25px;
}

.contact-section-wrapper .flex-wrap.location-wrapper {
    margin-bottom: 25px;
}

.contact-section-wrapper .content-wrapper {
    margin-bottom: 30px;
    padding-right: 40px;
}

.contact-section-wrapper .content-wrapper p {
    color: rgba(255,255,255,0.7);
}

.two-column-content .background-wrapper {
    background: var(--dark-grey);
    padding: 35px 40px;
    border-radius: 30px;
}

.two-column-content .background-wrapper .cms-content > *:nth-child(1) {
    margin-top: 0px;
}

.two-column-content .background-wrapper .cms-content > *:nth-last-child(1),
.two-column-content .background-wrapper form *:nth-last-child(1) {
    margin-bottom: 0px;
}

.two-column-content .button {
    margin-top: 20px;
}

.two-column-content .container .row .col-lg-6 div .cms-content *:nth-last-child(1) {
    margin-bottom: 0px;
}

section.contact-block-wrapper .bottom-row {
    display: flex;
}



@media (min-width: 1367px) and (max-width: 1600px) {
    section.contact-block-wrapper .button {
        font-size: 21px;
        padding: 7px 5px 5px;
    }
}

@media (min-width: 1200px) and (max-width: 1367px) {

    /* Banner */

    section.interior-banner-wrapper h1 {
        font-size: 50px;
        line-height: 50px;
    }

    section.interior-banner-wrapper .cms-content p {
        font-size: 20px;
        line-height: 30px;
    }

    .interior-banner-wrapper,
    section.interior-banner-wrapper .container {
        min-height: 650px;
    }

/*    .interior-banner-wrapper.no-overlay {
        min-height: 550px;
    }*/

    /* mainContent */

    section.maincontent-wrapper .right-padding {
        padding-left: 30px;
    }

    section.maincontent-wrapper .left-padding {
        padding-right: 30px;
    }

    /* List Icon Styles */

    .maincontent-wrapper .three-column ul {
        column-width: auto;
        column-count: 2;
    }

    /* contact block */

    section.contact-block-wrapper .button {
        font-size: 21px;
        padding: 7px 5px 5px;
    }

    section.contact-block-wrapper .text-card .description h3 {
        font-size: 30px;
        line-height: 30px;
    }

    section.contact-block-wrapper .text-card {
        padding: 20px;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    
    /* Banner */

    section.interior-banner-wrapper h1 {
        font-size: 50px;
        line-height: 50px;
    }

    section.interior-banner-wrapper .cms-content p {
        font-size: 20px;
        line-height: 30px;
    }

    .interior-banner-wrapper,
    section.interior-banner-wrapper .container {
        min-height: 650px;
    }

    section.interior-banner-wrapper .container {
        padding-top: 85px;
    }

    .interior-banner-wrapper .banner-bg-image {
        width: 100%;
    }

    section.interior-banner-wrapper::before {
        background: rgba(0, 0, 0, 0.6);
    }

/*    .interior-banner-wrapper.no-overlay {
        min-height: 550px;
    }*/

    /* mainContent */

    section.maincontent-wrapper .right-padding {
        padding-left: 30px;
    }

    section.maincontent-wrapper .left-padding {
        padding-right: 30px;
    }

    section.maincontent-wrapper .img-wrapper {
        height: unset;
        aspect-ratio: 1 / 1;
        width: 100%;
    }

    section.maincontent-wrapper .img-wrapper img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    section.maincontent-wrapper .img-wrapper.img-border {
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    /* List Icon Styles */

    .maincontent-wrapper .three-column ul {
        column-width: auto;
        column-count: 2;
    }

    /* 4 column content */

    section.four-block-wrapper .bottom-row,
    section.six-block-wrapper .bottom-row {
        row-gap: 30px;
    }

    /* Two column content */

    .two-column-content .container .row .col-lg-6:nth-last-child(1) {
        margin-top: 35px;
    }

    section.contact-block-wrapper .bottom-row {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    /* Contact Details */

    .contact-section-wrapper .specific-description {
        margin-bottom: 35px;
    }

}

@media (min-width: 767px) and (max-width: 991px) {
    
    /* Banner */

    section.interior-banner-wrapper h1 {
        font-size: 50px;
        line-height: 50px;
    }

    section.interior-banner-wrapper .cms-content p {
        font-size: 20px;
        line-height: 30px;
    }

    .interior-banner-wrapper,
    section.interior-banner-wrapper .container {
        min-height: 650px;
    }

    .interior-banner-wrapper .banner-bg-image {
        width: 100%;
    }

    section.interior-banner-wrapper::before {
        background: rgba(0, 0, 0, 0.6);
    }

/*    .interior-banner-wrapper.no-overlay .banner-bg-image {
        position: relative;
    }

    .interior-banner-wrapper.no-overlay {
        min-height: unset;
    }*/

    /* mainContent */

    section.maincontent-wrapper .row {
        display: block!important;
    }

    section.maincontent-wrapper .right-padding {
        padding-left: 0px;
        margin-top: 35px;
    }

    section.maincontent-wrapper .left-padding {
        padding-right: 0px;
        margin-top: 35px;
    }

    /* List Icon Styles */

    .maincontent-wrapper .three-column ul {
        column-width: auto;
        column-count: 2;
    }

    /* 4 column content */

    section.four-block-wrapper .bottom-row,
    section.six-block-wrapper .bottom-row {
        row-gap: 30px;
    }

    /* Two column content */

    .two-column-content .container .row .col-lg-6:nth-last-child(1) {
        margin-top: 35px;
    }

    section.contact-block-wrapper .bottom-row {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    /* Contact Details */

    .contact-section-wrapper .specific-description {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    
    /* Banner */

    section.interior-banner-wrapper h1 {
        font-size: 50px;
        line-height: 50px;
    }

    section.interior-banner-wrapper .cms-content p {
        font-size: 19px;
        line-height: 29px;
    }

    section.interior-banner-wrapper .banner-button-wrapper p {
        flex-wrap: wrap;
    }

    section.interior-banner-wrapper .banner-button-wrapper p .red-btn {
        flex: 0 0 100%;
        text-align: center;
    }

    section.interior-banner-wrapper .banner-button-wrapper p .teal-bordered-btn {
        flex: 1;
        text-align: center;
    }

    section.interior-banner-wrapper .container {
        align-items: flex-end;
        padding-top: 210px;
        padding-bottom: 60px;
    }

    section.interior-banner-wrapper.short-banner .container {
        padding-top: 230px;
    }

    .interior-banner-wrapper,
    section.interior-banner-wrapper .container {
        height: unset;
        min-height: 750px;
    }

    .interior-banner-wrapper.short-banner,
    section.interior-banner-wrapper.short-banner .container {
        min-height: unset;
    }

    .interior-banner-wrapper .banner-bg-image {
        width: 100%;
    }

    section.interior-banner-wrapper::before {
        background: rgba(0, 0, 0, 0.6);
    }

/*    .interior-banner-wrapper.no-overlay .banner-bg-image {
        position: relative;
    }

    .interior-banner-wrapper.no-overlay {
        min-height: unset;
    }*/

    .interior-banner-wrapper.no-overlay {
        margin-top: 200px;
    }

    /* mainContent */

    .main-section-wrapper {
        background: url(https://immediac.blob.core.windows.net/sorrycomedyfestivalstaging/images/mob-brick-bg-fade.png);
        background-repeat: no-repeat;
        background-size: 100%;
    }

    section.maincontent-wrapper .row {
        display: block!important;
    }

    section.maincontent-wrapper .right-padding {
        padding-left: 0px;
        margin-top: 35px;
    }

    section.maincontent-wrapper .left-padding {
        padding-right: 0px;
        margin-top: 35px;
    }

    /* List Icon Styles */

    .maincontent-wrapper .two-column ul {
        column-width: auto;
        column-count: 1;
    }

    .maincontent-wrapper .three-column ul {
        column-width: auto;
        column-count: 1;
    }

    section.maincontent-wrapper.Grey .container {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    /* 4 column content */

    section.four-block-wrapper .bottom-row {
        row-gap: 20px;
    }

    section.four-block-wrapper .bottom-row > div {
        width: 100%;
    }

    section.four-block-wrapper.Grey .container {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    /* 6 column content */

    section.six-block-wrapper .bottom-row {
        row-gap: 20px;
    }

    section.six-block-wrapper .bottom-row > div {
        width: 100%;
    }

    section.six-block-wrapper.Grey .container {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    /* Full Width Callout */

    section.full-width-callout {
        overflow-x: hidden;
    }

    section.full-width-callout {
        background: url(https://immediac.blob.core.windows.net/sorrycomedyfestivalstaging/images/mob-brick-bg.png);
    }

    section.full-width-callout .container {
        padding: 30px 15px;
    }

    section.full-width-callout .button-wrapper .button {
        width: 100%;
    }

    section.full-width-callout p.button-wrapper .button:nth-child(2) {
        margin-top: 10px;
    }

    /* Two column content */

    .two-column-content .container .row .col-lg-6:nth-last-child(1) {
        margin-top: 35px;
    }

    .two-column-content .background-wrapper {
        padding: 25px 20px;
    }


    /* Gallery Section */

    section.gallery-wrapper .gallery-row {
        row-gap: 15px;
        margin-right: -10px;
        margin-left: -10px;
    }

    section.gallery-wrapper .gallery-row .galleryWrapper:nth-child(odd) {
        padding-right: 7.5px;
    }

    section.gallery-wrapper .gallery-row .galleryWrapper:nth-child(even) {
        padding-left: 7.5px;
    }

    section.contact-block-wrapper .bottom-row {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    section.contact-block-wrapper .bottom-row > div {
        width: 100%;
    }

    /* Contact Details */

    .contact-section-wrapper .specific-description {
        margin-bottom: 35px;
    }

    .contact-section-wrapper .background-wrapper {
        padding: 20px 20px;
    }
}