/* Organisera Stockholm Ahlberg & Björk Handelsbolag */

/* Animationer */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 144, 122, 110;
    --primary-light-color: 225, 212, 202;
    --primary-dark-color: 66, 53, 44;

    --black-color: 0, 0, 0;
    --gray-dark-color: 61, 61, 61;
    --gray-light-color: 245, 243, 238;
    --white-color: 255, 255, 255;

    --purple-color: 80, 0, 131;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 150rem;

    /* 	Typography */
    --base-size: 1.7rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 980;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--primary-color);
    --menu-color: var(--white-color);
}

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

/* Layout
========================================================================== */
.section-block {
    padding: 10rem 5rem;
}

/* Paddings */
.p-3 .section-block,
.p-3:not(.section-wrapper) {
    padding: 3rem;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

.pt-2 .section-block,
.pt-2:not(.section-wrapper) {
    padding-top: 2rem;
}

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 0;
}

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}

/* Bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

.mw-800 .section-block-wrapper,
.mw-800:not(.section-wrapper) {
    max-width: 80rem;
}

.mw-1200 .section-block-wrapper,
.mw-1200:not(.section-wrapper) {
    max-width: 120rem;
}

/* Hojder */
.mh-50 {
    min-height: 50rem;
}

/* Ovriga klasser */


@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 8rem 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 5rem 2rem;
    }

    .pl-0 .section-block {
        padding-left: 2rem;
    }

    .pr-0 .section-block {
        padding-right: 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

/* Rubriker */
.text-label {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 400;
    padding-bottom: 2rem;

}

.section-title {
    font-size: 4.4rem;
    line-height: 1.4;
    font-weight: 300;
    padding-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.small-title {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgb(var(--black-color));
}


/* Brodtext och lankar */
p,
li {
    color: rgb(var(--gray-dark-color));
    font-weight: 300;
}

/* Ovriga klasser */
.text-block {
    max-width: 80rem;
}

.text-block-center {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.text-bold {
    font-weight: 700;
}

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

.space-between {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 980px) {
    .section-title {
        font-size: 4rem;
    }

    .small-title {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 750px) {
    .section-title {
        font-size: 3.3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-title {
        font-size: 3rem;
    }

    .space-between {
        flex-direction: column;
    }
}

@media only screen and (max-width: 340px) {
    .section-title {
        font-size: 2.7rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    margin-top: 2rem;
}

.btn-wrapper.center {
    text-align: center;
}

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.4rem 2rem;
    margin: 0.7rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.ContactSubmit:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-dark-color));
    background-color: rgb(var(--primary-dark-color));
}

.btn-white-filled {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--white-color));
    background-color: rgb(var(--white-color));
}

.btn-white-filled:hover {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color), .9);
}

.btn-white-border {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
    background-color: transparent;
}

.btn-white-border:hover {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--white-color));
    background-color: rgb(var(--white-color));
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    color: rgb(var(--primary-color));
}

.arrow-link::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

.arrow-link:hover::after {
    transform: translateX(1rem);
    transition: transform .4s ease;
}

/* Sqareikon */
.square-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(var(--white-color));
    text-decoration: none;
    border-radius: 1rem;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

.square-icon:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--primary-dark-color));
}

.square-icon em:before,
.square-icon i:before {
    font-size: var(--base-size);
}

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-primary {
    background-color: rgb(var(--primary-color));
}

.bg-primary-dark {
    background-color: rgb(var(--primary-dark-color));
}

.bg-primary-light {
    background-color: rgb(var(--primary-light-color));
}

.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}

.bg-purple {
    background-color: rgb(var(--purple-color));
}

.bg-white {
    background-color: rgb(var(--white-color));
}

.bg-black {
    background-color: rgb(var(--black-color));
}

/* Text */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-primary-light {
    color: rgb(var(--primary-light-color));
}

.text-white {
    color: rgb(var(--white-color));
}

/* Grafiska element
========================================================================== */
/*Border radius*/
.br-1 {
    border-radius: 1rem;
}

.br-2 {
    border-radius: 2rem;
}

.br-r-2 {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
}

.br-l-2 {
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
}

@media only screen and (max-width: 580px) {
    .br-r-2 {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .br-l-2 {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image,
.bg-video {
    position: relative;
    overflow: hidden;
}

.bg-image-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-video-wrapper video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

/* Video */
.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Crossfade */
.bg-crossfade {
    position: relative;
    background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .5) 0%, rgba(var(--black-color), 0) 100%);
}

.fade-slider {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fade-slider div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fade-slider.slick-slider {
    position: absolute;
}

/* Parallax */
.parallax {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax .section-block {
    min-height: 50rem;
    background-color: rgb(var(--black-color), .4)
}

/* Bilder */
.parallax-referenser {
    background-image: url('/assets/images/bokhylla-2000px.jpg');
}

@media only screen and (hover:none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}

/* Bredder */

.cards-wrapper.w-25 .card-item {
    width: calc((100% / 4) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-50 .card-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-100 .card-item {
    width: 100%;
    margin: 1rem 0;
}

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

    /* Bredder */
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 3) - 2rem);
        margin: 1rem;
    }

    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-50 .card-item {
        width: 100%;
        margin: 1rem 0;
    }

    /* Bredder */
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
}

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

    /* Bredder */
    .cards-wrapper.w-25 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 1-2 */
.card-1-2 .card-footer {
    display: flex;
    padding: 0 2rem 1rem;
    margin: auto 0 0;
    min-height: 8rem;
}


.card-1-2 .card-footer p {
    padding: 1rem 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.card-1-2 .card-body {
    min-height: 36rem;
}

.card-1-2 .card-footer span {
    display: block;
    text-transform: uppercase;
}

/* Card 2-4 */
.card-2-4 .card-item {
    display: flex;
}

.card-2-4 a {
    text-decoration: none;
}

.card-2-4 a.card-item:hover {
    background: rgb(var(--gray-light-color));
}

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
}

.card-2-4 .card-header i {
    font-size: 3rem;
}

.card-2-4 .card-body {
    flex: 1 1 0px;
    padding: 0 2rem;
    margin: auto;
}

.card-2-4 .text-small {
    font-size: 1.4rem;
}

@media only screen and (max-width: 420px) {
    .card-2-4 .card-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-2-4 .card-body {
        padding: 1rem;
    }
}


/* Card 3-1 */
.card-3-1 .image-wrapper {
    max-height: 40rem;
}

/* Card 3-3 */
.card-3-3 .card-body {
    border-radius: 1rem;
    overflow: hidden;
}

.card-3-3 .card-body {
    z-index: 1;
    position: relative;
    width: 85%;
    margin: -10rem auto 0;
}

.card-3-3 .image-wrapper {
    height: 40rem;
}

.card-3-3 a {
    text-decoration: none;
}

@media only screen and (max-width: 1050px) {
    .cards-wrapper.card-3-3 .card-item:last-of-type {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 480px) {
    .card-3-3 .card-body {
        z-index: 1;
        position: relative;
        width: 90%;
        margin: -3rem auto 0;
    }
}


/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    width: 50%;
    padding: 5rem;
}

.split-image {
    width: 50%;
}

/* Speciella bredder */
.split-wrapper .w-70 {
    width: 70%;
}

.split-wrapper .w-30 {
    width: 30%;
}

.split-wrapper .w-60 {
    width: 60%;
}

.split-wrapper .w-40 {
    width: 40%;
}

/* Centrera content */
.split-wrapper.justify-center {
    justify-content: center;
}

.split-wrapper .align-center {
    align-self: center;
}

/* Speciella margins */
.split-wrapper .ml--18rem {
    z-index: 1;
    position: relative;
    margin-left: -18rem;
}

@media screen and (max-width: 1300px) {
    .split-content {
        padding: 3rem;
    }
}

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

    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
    }

    .split-content,
    .split-wrapper .w-70,
    .split-wrapper .w-60,
    .split-wrapper .w-40,
    .split-wrapper .w-30 {
        width: 100%;
        max-width: 70rem;
        padding: 2rem;
    }

    .split-image {
        width: 100%;
        min-height: 20rem;
    }

    /* Centrera content */
    .split-wrapper .align-center {
        align-self: flex-start;
    }

    /* Speciella margins */
    .split-wrapper .ml--18rem {
        margin-left: 0;
    }
}

/* Header / Navigation
========================================================================== */
header {
    background-color: rgb(var(--primary-light-color));
}

header:not(.scrolled) {
    border-color: transparent;
    background-color: transparent;
}

header:not(.scrolled) .TemplateMenu li.active>a {
    color: rgb(var(--white-color));
    font-weight: 600;
}

/* Logo */
.header-logo {
    flex: 1 1 0px;
}

header:not(.scrolled) .header-logo img {
    filter: invert();
}

/* Nav */
/* Dolj hem */
body:not(.EditMode) .TemplateMenu>li:nth-child(1) {
    display: none;
}

.TemplateMenu ul a {
    color: rgb(var(--white-color));
}

.TemplateMenu ul a:hover {
    color: rgb(var(--white-color));
    font-weight: 700;
}

.TemplateMenu ul {
    background-color: rgb(var(--primary-color));
}

.TemplateMenu li.active>a {
    color: rgb(var(--white-color));
    font-weight: 700;
}

.TemplateMenu a {
    font-weight: 500;
    font-size: 1.5rem;
    color: rgb(var(--black-color));
}

header:not(.scrolled, .mobile-menu) .TemplateMenu>li:not(.active)>a:not(:hover) {
    color: rgb(var(--primary-light-color));
}

/* CTA  */
.header-cta-wrapper {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 0px;
    padding: 0;
    margin: 0 0 0 4rem;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

/* Mobilmeny */

.mobile-menu .TemplateMenu li {
    padding: 0 2rem;
    text-align: center;
}

@media only screen and (max-width: 980px) {
    .TemplateMenu a {
        color: rgb(var(--white-color));
    }
}

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

    /* Header logo */
    .header-logo a {
        font-size: 1.6rem;
    }

    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

/* ==========================================================================
Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(110vh - var(--menu-height));
    padding-top: var(--menu-height);
    margin-top: calc(var(--menu-height) * -1);
    background-color: rgb(var(--black-color), .5);
}

.top-section .section-block {
    width: 100%;
}

.top-section .text-block {
    max-width: 85rem;
}

.top-section .section-title {
    font-size: 5rem;

}

.top-section p {
    max-width: 60rem;
    margin: 0 auto;
}

.top-section .btn-primary-filled:hover {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 1200px) {
    .top-section .section-title {
        font-size: 4.5rem;
    }
}

@media only screen and (max-width: 580px) {
    .top-section .section-title {
        font-size: 3rem;
    }
}

/* Section contact
========================================================================== */
.section-contact .col-0 {
    max-width: 80rem;
    margin: auto;
    background-color: rgb(var(--primary-light-color));
    padding: 4rem;
    border-radius: 1rem;
}

.section-contact .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-contact .ContactForm div {
    width: 49%;
}

.section-contact .ContactForm .ContactFormMessage {
    width: 100%;
}


.section-contact .ContactForm .ContactFormField:has(.field-4),
.section-contact .ContactForm .ContactFormField:has(.field-5),
.section-contact .ContactForm .ContactFormField:has(.field-6),
.section-contact .ContactForm .ContactFormField:has(.field-7),
.section-contact .ContactForm .ContactFormField:has(.field-8),
.checkbox-option,
div.submit-button-container {
    width: 100% !important;
}

.ContactForm input[type="text"],
.ContactForm input[type="email"],
.ContactForm input[type="tel"],
.ContactForm textarea,
.ContactForm input[type="datetime-local"] {
    border: none;
    border-radius: 1rem;
    margin-top: 1rem;
}


@media only screen and (max-width: 600px) {
    .section-contact .ContactForm div {
        width: 100%;
    }

    .section-contact .col-0 {
        padding: 2rem;
    }
}

/* Section Instagram
========================================================================== */
.section-instagram {
    overflow: hidden;
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    min-height: 60rem;
    padding-top: var(--menu-height);
    margin-top: calc(var(--menu-height) * -1);
    background-color: rgb(var(--black-color), .5);
}

.hero .section-block {
    width: 100%;
    padding: 5rem;
}

.hero .section-title {
    font-size: 5.5rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .hero {
        min-height: 30rem;
    }

    .hero .section-title {
        font-size: 3rem;
    }
}

/* ==========================================================================
Undersida: Produkter
========================================================================== */
.section-products .small-title {
    font-size: 1.8rem;
}

.section-products .card-3-3 .image-wrapper {
    height: 25rem;
}

.section-products .card-3-3 .card-body {
    margin: -3rem auto 0;
}

/* ==========================================================================
Undersida: Prislist
========================================================================== */
.section-price .price-info {
    text-align: end;
    max-width: 40rem;
}

@media only screen and (max-width: 580px) {
    .section-price .price-info {
        text-align: start;
        max-width: 100%;
    }
}

/* ==========================================================================
Undersida: Tidiare uppdrag
========================================================================== */

/* Filtrering
========================================================================== */

/* Taggar */
.tags-heading {
    display: none;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
}

.tag {
    padding: .3rem 1.5rem;
    margin: .6rem .5rem;
    font-size: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 2rem rgba(var(--black-color), .2);
    cursor: pointer;
    transition: .5s ease;
}

.tag:hover,
.tag.tag-picked {
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

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

    /* Taggar */
    .tags-wrapper {
        position: relative;
        max-width: 100%;
        background: rgb(var(--primary-color));
        cursor: pointer;
    }

    .tags-heading {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
    }

    .tags-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: rgb(var(--white-color));
    }

    .tags-heading i {
        margin-left: 2rem;
    }

    .tags-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: left;
        background: rgb(var(--white-color));
        box-shadow: 1px 1px 10px rgba(var(--black-color), .1);
    }

    .tags-wrapper.opened .tags-list {
        display: block;
    }

    .tags-wrapper .tag {
        display: block;
        padding: 1rem 2rem;
        margin: 0;
        letter-spacing: normal;
        text-transform: initial;
        box-shadow: none;
        border-radius: 0;
    }
}

.section-scroll {
    overflow: hidden;
}

/* Slider */
.scroll-wrapper.cards-wrapper {
    margin-bottom: 5rem;
}

.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

.scroll-wrapper.cards-wrapper .slick-track {
    display: flex;
}

.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    height: auto;
}

/* Card item */
.scroll-wrapper .card-item {
    display: flex;
    flex-direction: column;
    margin: 0 2rem 0 0;
}

/* Slick Arrow */
.scroll-wrapper .slick-arrow {
    position: absolute;
    top: auto;
    bottom: -4rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
}

.scroll-wrapper .slick-arrow::after {
    font-weight: 300;
    color: rgb(var(--white-color));
}

.scroll-wrapper .slick-next {
    right: 2rem;
}

.scroll-wrapper .slick-prev {
    left: auto;
    right: 6rem;
}

/* ==========================================================================
Undersida Inspiration
========================================================================== */
.section-inspiration .image-wrapper img {
    min-height: 70rem;
}

/* ==========================================================================
Undersida Kontakt
========================================================================== */
.section-contact-page .col-1 {
    background-color: rgb(var(--primary-light-color));
    padding: 4rem;
    border-radius: 1rem;
}

.section-contact-page .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-contact-page .ContactForm div {
    width: 49%;
}

.section-contact-page .ContactForm .ContactFormMessage {
    width: 100%;
}

.section-contact-page .ContactForm .ContactFormField:has(.field-5) {
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .section-contact-page .ContactForm div {
        width: 100%;
    }
}

/* ==========================================================================
Undersida: Jobba hos oss
========================================================================== */
.section-apply .col-1 {
    background-color: rgb(var(--primary-light-color));
    padding: 4rem;
    border-radius: 1rem;
}

.section-apply .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-apply .ContactForm div {
    width: 49%;
}

.section-apply div.ContactFormField.file-field,
.section-apply .file-upload-container,
.section-apply.section-apply .file-dropzone,
.section-apply .group-wrapper,
.section-apply .radio-option {
    width: 100% !important;
}

@media only screen and (max-width: 600px) {
    .section-apply .ContactForm div {
        width: 100%;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    background-color: rgb(var(--primary-light-color));
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 0;
}

.footer-menu {
    width: 20%;
    margin: 0 0 3rem;
}

.footer-menu-large {
    width: 30%;
}

.footer .small-title {
  font-family: 'Playfair Display', serif;
}

.footer-submenu {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a {
    text-decoration: none;
}

.footer a:not(.icon-links):hover {
    text-decoration: none;
    color: rgb(var(--primary-color));
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgb(var(--primary-color));
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    opacity: .6;
}

@media only screen and (max-width: 1200px) {
    .footer {
        padding: 0 3rem;
    }

    /* Footer top */
    .footer-menu {
        width: 33.333%;
    }

    .footer-menu-large {
        width: 100%;
    }

    .footer-menu-large p {
        max-width: 55rem;
    }
}

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

    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .footer {
        padding: 0 2rem;
    }

    /* Footer top */
    .footer-top {
        padding: 5rem 0 0;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
    }

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}