/* Carolinas samtalsterapi */

/* Typsnitt */
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Literata:ital,wght@0,400;0,700;1,400;1,900&display=swap");

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 12rem;
    --menu-height-scrolled: 8rem;
    --section-width: 130rem;

    /* 	Colors */
    --primary-color: 235, 202, 134;
    --primary-light-color: 251, 245, 233;
    --primary-dark-color: 221, 162, 44;
    --secondary-color: 149, 135, 106;

    --black-color: 15, 15, 15;
    --gray-dark-color: 60, 60, 60;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 7rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: rgb(var(--black-color));
}

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

.section-block-wrapper {
    max-width: var(--section-width);
}

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

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

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

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

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

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

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

/* Margins */
.mt-3 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

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

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

/* Text och typsnitt
========================================================================== */
body {
    font-family: "Instrument Sans", sans-serif;
}

/* Rubriker */
.text-label {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 1em;
}

.section-title {
    font-family: "Literata", serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 0.5em;
    color: rgb(var(--secondary-color));
}

.small-title {
    font-family: "Literata", serif;
    font-size: 2.5rem;
    line-height: 1.4;
    padding-bottom: 0.7em;
    color: rgb(var(--secondary-color));
}

.ingress {
    font-size: calc(var(--base-size) * 1.2);
    font-weight: 700;
}

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

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

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

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

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

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

.font-serif {
    font-family: "Literata", serif;
    font-weight: 400;
}

/* List-check */
.list-check {
    list-style: none;
}

.list-check {
    padding: 0;
}

.list-check li::before {
    content: "\f00c";
    padding: 0 1rem 0 0;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: 0.8rem;
    font-family: "Font Awesome 5 Pro";
}

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

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

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

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

/* Listor */
.list-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100rem;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

.list-pills li {
    display: flex;
    align-items: center;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    margin: .5rem;
    font-size: 1.5rem;
    border-radius: 4rem;
    color: rgb(var(--black-color));
    background: rgb(var(--primary-light-color));
}

.list-pills li::before {
    content: '\f00c';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    margin-right: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    font-family: 'Font Awesome 5 Pro';
    border-radius: 50%;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

@media only screen and (max-width: 580px) {
    .list-pills li {
        width: 100%;
        padding: 1rem;
        font-size: 1.4rem;
    }
}


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

.btn-wrapper.center {
    justify-content: center;
}

.btn-wrapper.multiple .btn {
    margin: 0 1rem;
}

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

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

.btn-primary-filled:hover,
.ContactSubmit:hover {
    background-color: rgb(var(--primary-light-color));
    color: rgb(var(--secondary-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 {
    background-color: rgb(var(--gray-light-color));
    border-color: rgb(var(--gray-light-color));
}

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

.small-title.arrow-link {
    font-size: 2.5rem;
    text-decoration: none;
    padding-bottom: 0;
    color: rgb(var(--secondary-color));
}

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

.arrow-link.down::after {
    content: " \f107";
}

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

.arrow-link.down:hover::after {
    transform: translateY(1rem);
}

@media only screen and (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
    }

    .btn-wrapper.multiple .btn {
        margin: 1rem 0rem;
    }

    .small-title.arrow-link {
        font-size: 2rem;
    }
}

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

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

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

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

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

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

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));
    background: linear-gradient(
        90deg,
        rgba(var(--black-color), 0.2) 0%,
        rgba(var(--black-color), 0.5) 0%,
        rgba(var(--black-color), 0) 100%
    );
}

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

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    overflow: hidden;
    position: relative;
    background: linear-gradient(
        90deg,
        rgba(var(--black-color), 0.2) 0%,
        rgba(var(--black-color), 0.5) 0%,
        rgba(var(--black-color), 0) 100%
    );
}

.bg-video .section-block {
    overflow: hidden;
}

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

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

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

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

.card-item {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Specifika bredder */
.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) {
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper.w-50 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 480px) {
    /* Paddings */
    .card-item.p-3,
    .card-item .p-3 {
        padding: 2rem;
    }
}

/* Card 2-2 */
.card-2-2 .card-item {
    border-radius: 5px;
    padding-top: 0;
}

.card-2-2 .card-header {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    margin: -5px 0 2rem 0;
    border-radius: 2px 0 1rem 1rem;
}

.card-2-2 .card-header::after {
    position: absolute;
    content: "";
    display: block;
    top: 0px;
    right: -5px;
    width: 0;
    height: 0;
    border-bottom: 5px solid rgb(var(--primary-dark-color));
    border-right: 5px solid transparent;
}

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

.card-2-2 .card-body {
    flex: 1 1 0px;
}

.card-2-2 .card-footer {
    margin-top: 2rem;
}

@media only screen and (max-width: 750px) {
    .card-2-2 .card-item {
        padding-left: 2rem;
    }
}

@media only screen and (max-width: 580px) {
    .card-2-2 .card-header {
        width: 4rem;
        height: 4rem;
        border-radius: 2px 0 1rem 1rem;
    }

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

/* Card 2-5 */
.card-2-5 .card-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 5px;
    transition: 0.3s ease;
}

.card-2-5 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 5px;
    transition: 0.3s ease;
}

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

.card-2-5 .card-body {
    padding: 0 2rem;
}

.card-2-5 a.card-item:hover {
    background-color: rgb(var(--primary-color));
}

.card-2-5 a.card-item:hover .card-header {
    background-color: rgb(var(--primary-light-color));
    transition: 0.3s ease;
}

@media only screen and (max-width: 580px) {
    .card-2-5 .card-header {
        width: 3rem;
        height: 3rem;
    }

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

@media only screen and (max-width: 360px) {
    .card-2-5 .card-item p {
        font-size: 1.4rem;
    }

    .card-2-5 .card-header i {
        font-size: 1.7rem;
    }

    .card-2-5 .card-header {
        width: 2.5rem;
        height: 2.5rem;
    }
}

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

.card-3-1 .image-wrapper {
    height: 25rem;
}
@media only screen and (max-width: 400px) {
    .card-3-1 .image-wrapper {
        height: 15rem;
    }
}

/* Card 3-4 */
.card-3-4 .card-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 1rem;
    overflow: hidden;
}

.card-3-4 .image-wrapper {
    width: 16rem;
    height: 16rem;
    margin: 1rem;
}

.card-3-4 .card-body {
    flex: 1 1 0px;
}

.card-3-4 .contact-item i {
    margin-right: .5rem;
} 

.card-3-4 a {
    word-break: break-all; 
    text-decoration: none;
}

@media only screen and (max-width: 580px) {
    .card-3-4 .card-item {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        text-align: center;
    }

    /* .card-3-4 .image-wrapper {
        margin: 0 auto;
    }

    .card-3-4 .card-body {
        width: 100%;
    } */
}

/* @media only screen and (max-width: 1300px) {
    .cards-wrapper.card-3-4 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
}

@media only screen and (max-width: 900px) {
    .card-3-4 .card-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
}

@media only screen and (max-width: 580px) {
    .cards-wrapper.card-3-4 .card-item {
        width: 100%;
        margin: 1rem 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%;
}

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

@media screen and (max-width: 1100px) {
    .split-content {
        width: 100%;
    }

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

@media screen and (max-width: 580px) {
    .split-wrapper {
        background: transparent;
    }

    .split-content {
        padding: 0 0 3rem 0;
    }
}

/* Popup-notis
========================================================================== */
.EditMode .popup-wrapper {
    display: none;
}

.popup-wrapper {
    z-index: 8;
    position: fixed;
    bottom: 3rem;
    right: 3rem;
}

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--primary-color));
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    cursor: pointer;
}

.popup-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2.8rem;
    transform: translate(-50%,-50%);
    transition: .3s ease;
}

.popup-wrapper .popup-button .icon-open,
.popup-wrapper.opened .popup-button .icon-close {
    transform: translate(-50%,-50%) scale(1);
}

.popup-wrapper.opened .popup-button .icon-open,
.popup-wrapper .popup-button .icon-close {
    transform: translate(-50%,-50%) scale(0);
}

/* Innehåll */
.popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 6rem;
    max-width: 35rem;
    max-height: calc(100vh - 12rem); 
    padding: 4rem;
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-radius: 2rem;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
}

.popup-wrapper.opened .popup-window {
    opacity: 1;
    visibility: visible;
    display: block;
    bottom: 10rem;
}

.icon-close-popup {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
}

@media only screen and (max-width: 450px) {
    .popup-window {
        padding: 2rem 3rem 2rem 2rem;
    }

    .icon-close-popup {
        top: 1rem;
    }
}


/* Header / Navigation
========================================================================== */
header .container {
    padding: 0 5rem;
}

/* Logo */
.header-logo {
    margin: 0 auto 0 0;
}

/* Nav */
.TemplateMenu a {
    font-weight: 600;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
}

.TemplateMenu > li > a:hover {
    color: rgb(var(--primary-color));
}

/* CTA  */
.header-cta-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0 0 0 2rem;
    list-style: none;
}

.header-cta-wrapper li {
    margin: 0 0.5rem;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    line-height: 1;
}

/* Mobilmeny */
.mobile-menu .container {
    height: var(--mobile-menu-height);
}

.mobile-menu .hamburger {
    margin: 0 -1rem 0 1rem;
}

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

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

    .header-cta-wrapper .btn {
        min-width: unset;
        padding: 0.7rem 1.5rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.top-section .section-title {
    font-size: 6rem;
    font-weight: 400;
    color: rgb(var(--white-color));
}

.top-section p {
    color: rgb(var(--white-color));
}

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 20rem;
    height: 6.8rem;
    background-image: url(/assets/images/waves/arrow-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    transform: translateX(-50%);
}

.bouncing-arrow {
    position: relative;
    bottom: 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    text-decoration: none;
}

.bouncing-arrow i {
    color: rgb(var(--white-color));
    font-size: 2rem;
    font-weight: 300;

    transform: translatex(-50%);
    animation: bounce 2s infinite;
}

.arrow-animate {
    position: absolute;
    left: 50%;
    bottom: -4rem;
    width: 9rem;
    transform: translateX(-50%);
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@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;
    }

    .top-section {
        min-height: 90vh;
    }
}

@media only screen and (max-width: 350px) {
    .top-section .section-title {
        font-size: 3rem;
        margin: 0 auto;
        max-width:20rem;
    }
}

/* Sektion Fade slider
========================================================================== */

.parallax-strand {
    background-image: url(/assets/images/aldre-par-pa-sandstrand-2000px.jpg);
}

.section-fadeslider {
    --base-size: 3rem;
    position: relative;
    min-height: unset;
}

.section-fadeslider .section-block {
    padding-top: 15rem;
    padding-bottom: 15rem;
    background-color: rgb(var(--black-color), 0.5);
}

.section-fadeslider .slick-dots {
    position: absolute;
    padding: 0;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.section-fadeslider .slick-dots li::before {
    color: rgb(var(--white-color));
}

/* Praktisk info
========================================================================== */
.section-info .section-block {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.section-info .col-0 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
}

@media only screen and (max-width: 980px) {
    .section-info .col-0 {
        padding: 0 0 2rem 0;
    }
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: rgb(var(--white-color));
    transition: .3s ease;
}

.accordion-item:hover,
.accordion-item.active {
    background: rgb(var(--primary-light-color));
}

.accordion-header {
    position: relative;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    text-decoration: none;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: "Font Awesome 5 Pro";
    color: rgb(var(--primary-color));
    transition: .5s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 2rem 2rem;
}

.accordion-body p {
    font-size: 1.5rem;
}

@media only screen and (max-width: 580px) {
    .accordion-header {
        padding: 1.5rem 3rem 1.5rem 1.5rem;
    }

    .accordion-header::after {
        right: .8rem;
    }

    .accordion-body {
        padding: 0 1.5rem 1.5rem;
    }
}


/* ==========================================================================
Undersidor
========================================================================== */
/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 45rem;
    padding-bottom: 0;
}

.hero .of-wrapper img {
    object-position: center 65%;
}

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

/* Hero - Hero-title
========================================================================== */
.hero-title-wrapper {
    display: inline-block;
    padding: 2rem 3rem 0;
    text-align: center;
    border-radius: 3rem 3rem 0 0;
    background: rgb(var(--white-color));
}

.hero-title-wrapper .section-title {
    padding-bottom: 0;
    color: rgb(var(--primary-color));
}

/* ==========================================================================
Undersida Vad jag erbjuder
========================================================================== */
@media only screen and (max-width: 680px) {
.kurser-wrapper{
    display: none;
}
}

/* ==========================================================================
Undersida Request
========================================================================== */
.section-form .col-0 {
    margin-bottom: 5rem;
}

.section-form .col-1 {
    max-width: 70rem;
    border-radius: 2rem;
    background-color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-light-color));
    padding: 0;
    margin: 0 auto 0;
    overflow: hidden;
}

.section-form .text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7rem;
}

.section-form .Contact,
.form-wrapper {
    padding: 3rem;
}

/* Formular */
.ContactForm input[type="text"],
.ContactForm textarea {
    border-radius: 5px;
}

.section-form .ContactSubmit {
    border-radius: 1rem;
}

/* Bekraftelseruta */
.ContactSentMessage {
    padding: 1rem 1rem 1rem 7rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    background-color: rgba(var(--primary-color), 0.2);
    background-image: url(/assets/images/icons/message-sent.svg);
    background-size: 4rem;
    background-position: 1.5rem center;
    background-repeat: no-repeat;
}

.ContactSentMessage p {
    padding: 0;
}

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

    .section-map iframe {
        height: 30rem;
    }
}

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

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 5rem;
    border-bottom: 1px solid rgb(var(--white-color), 0.5);
}

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

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

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

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a {
    color: rgb(var(--white-color));
}

.footer-menu.cert {
    justify-content: end;
}


.footer-cert {
    max-width: 15rem;
    margin: auto;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgb(var(--white-color));
}

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

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    filter: invert();
}

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

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

    .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%;
    }

    .footer-menu.cert {
        margin-top: 2rem;
        margin-bottom: 0;
    }

    .footer-cert {
       margin: inherit;
    }
}

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