/*    21 Dagar */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@300;400;500;600;700&display=swap');

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


/* Modal */
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css'); 

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 9rem;
    --menu-height-scrolled: 9rem;
    --section-width: 140rem;

    /* 	Colors */
    --primary-color: 74, 98, 134;
    --secondary-color: 203, 211, 223;

    --black-color: 17, 17, 17;
    --gray-dark-color: 68, 68, 68;
    --gray-color: 130, 130, 130;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

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

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

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

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

/* Paddings */
.py-0 .section-block,
.py-0:not(.section-wrapper) {
    padding-top: 0;
    padding-bottom: 0;
}

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

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

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

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

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

.pt-1 {
    padding-top: 1rem;
}

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

/* Bredder */


.mw-1100 .section-block-wrapper {
    max-width: 110rem;
}

@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: 'Raleway', sans-serif;
}

/* Rubriker */
.text-label {
    font-family: 'Cormorant Upright', serif;
    font-size: 2rem;
    font-weight: 600;
    padding-bottom: 1em;
}

.section-title {
    font-family: 'Raleway', sans-serif;

    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    padding-bottom: .5em;
    color: rgb(var(--gray-dark-color));
}

.small-title {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    padding-bottom: 1rem;
}

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

/* Brodtext och lankar */
p,
li,
a {
    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;
}
.justify-center{
    justify-content: center;
}

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

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

.text-italic {
    font-family: 'Cormorant Upright', serif;
}



/* Info list */
.info-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.info-list li {
    margin: 0 3rem 1rem 0;
    color: rgb(var(--gray-dark-color));
}

.info-list li {
    border-radius: 5px;
    padding: 0rem 1rem;
    margin: 0 1rem 1rem 0;
    background-color: rgb(var(--primary-color), 0.2);
}

.info-list {
    margin: auto 0 0;
    padding: 0rem 0 0;
}

.info-list li {
    font-size: 1.4rem;
}

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

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

.btn-wrapper.multiple .btn:not(:last-child) {
    margin-right: 2rem;
}


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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.3rem 2rem;
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 4rem;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: all .4s ease;
}

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

.btn-primary-filled:hover,
.ContactSubmit:hover,
.ContactSubmit:focus {
    background-color: rgb(var(--primary-color), .7);
}

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

.btn-white-filled:hover,
.btn-white-border:hover {
    background-color: rgb(var(--gray-light-color));
    color: rgb(var(--black-color));
}

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


/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    text-decoration: none;
}

.arrow-link::after {
    content: ' \2023';
    display: inline-block;
    margin-left: .5rem;
    transition: transform .4s ease;
}

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

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

    .btn-wrapper.multiple .btn:not(:last-child) {
        margin-right: 0rem;
        margin-bottom: 2rem;
    }
}

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

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

.bg-secondary-light {
    background-color: rgb(var(--secondary-color), .3);
}

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

.gradient-secondary-white {
    background-image: linear-gradient(to top, rgb(var(--white-color)) 30%, rgb(var(--secondary-color), .5) 30%);
}

/* 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
========================================================================== */
/* Bakgrunder */
.bg-wave-primary-bottom .section-block {
    background-image: url(/assets/images/wave-bottom.png);
    background-size: 100% 50rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

@media screen and (max-width: 580px) {
    .bg-wave-primary-bottom .section-block {
        background-size: 100% 23rem;
    }
}

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

/* Box shadow */
.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
}

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

/* Bakgrundsvideo */
.bg-video {
    position: relative;
}

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

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

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

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

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

    .cards-wrapper.w-100 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}
@media only screen and (max-width: 580px) {
    /* Bredder */
    .cards-wrapper.w-25 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Cards 1 - Recensionskort */
.card-2-1 .card-item {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: rgb(var(--white-color));
    border-radius: 3px;
    margin: 0 2rem 0 0;
    overflow: hidden;
    border: 1px solid rgb(var(--secondary-color));
    border-radius: 5px;
    text-align: center;
}

.card-2-1 .card-header {
    background-image: linear-gradient(to bottom, rgb(var(--secondary-color)) 50%, rgb(var(--white-color)) 50%);
    padding: 2rem;
}

.quote-sign {
    width: 7rem;
    height: 7rem;
    padding: 1.5rem;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid rgb(var(--secondary-color));
}

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

.card-2-1 .card-footer {
    padding: 0 2rem 3rem;
    margin: auto 0 0;
}

.card-2-1 cite {
    font-size: 1.4rem;
    color: rgb(var(--gray-dark-color));
}


@media only screen and (max-width: 580px) {
    .card-2-1 .card-item {
        margin: 0 1rem 0 0;
    }

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

    .card-2-1 .quote-sign {
        align-self: flex-start;
        width: 4rem;
        height: 4rem;
        padding: 1rem;
        border-width: 2px;
        margin-top: -6px;
    }

    .card-2-1 .text-title {
        font-size: 1.2rem;
    }
}

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

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

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

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

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

    .card-2-2 .card-header i {
        font-size: 2rem;
    }
}
/* Card 3-1 */
.card-3 .card-item {
    height: 35rem;
}

/* 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%;
   
    border-radius: 1rem;
}
/* Speciella bredder */
.split-wrapper .w-60 {
    width: 70%;
}

.split-wrapper .w-40 {
    width: 30%;
}
/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

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

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


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

    .split-content,
    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
    }

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

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

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

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

/* Modal
========================================================================== */
.modal {
    width: 100%;
    max-width: 60rem;
    max-height: 100vh;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: none;
    overflow: auto;
  }

  .blocker {
    z-index: 100;
  }

  .modal a.close-modal {
    display: none;
  }

  .modal .custom-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
  }

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

    .blocker {
      padding: 1rem;
    }
  }

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

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

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

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

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

/* Innehall */
.popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 5rem;
    max-width: 45rem;
    max-height: calc(100vh - 5rem);
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-radius: 3px;
    box-shadow: 0 0 3rem rgba(var(--black-color), .3);
    transition: opacity .3s ease, bottom .3s ease;
}

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

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1rem 2rem;
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

.popup-header .text-title {
    padding: 0;
    line-height: 1;
}

.icon-close-popup {
    appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
}

.icon-close-popup:hover {
    background-color: rgb(var(--gray-light-color));
}

.popup-content {
    padding: 1rem 2rem 3rem;
    max-height: 27rem;
    overflow: auto;
}
/* Modal som öppnas automatiskt
========================================================================== */
body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--black-color),.7);
  }

  body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 90rem;
    max-height: 90vh;
    padding: 1rem;
    border-radius:2rem;
    background: rgb(var(--white-color));
    transform: translate(-50%,-50%);
    overflow: auto;
  }

  .section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
  }
  .section-auto-modal p{
    font-size: 1.5rem;
  }
  .section-auto-modal .logos-wrapper{
    display: flex;
    justify-content: space-between;
  }
  .logos-wrapper img{
    max-width: 8rem;
  }
  @media only screen and (max-width: 450px) {
    body:not(.EditMode) .section-auto-modal .section-block {
      padding: 1rem;
    }
  }

/* Header / Navigation
========================================================================== */
/* Top header */
.top-header {
    width: 100%;
    max-width: var(--section-width);
    height: 3rem;
    margin: 0 auto;
    border-bottom: 1px solid rgb(var(--gray-light-color));
    overflow: hidden;
    transition: .3s ease;
}


.top-header a {
    color: rgb(var(--primary-color));
    text-decoration: none;

}

.top-header a:hover {
    text-decoration: underline;
}

.top-header i {
    margin-right: 5px;
}

header .container {
    padding: 0 5rem;
}

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

.header-logo img {
    padding: 0.5rem;
}

/* Nav */
.TemplateMenu a {
    font-family: inherit;
    font-weight: 500;
    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 .5rem;
}

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

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

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

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

@media only screen and (max-width: 800px) {
    .header-logo a {
        max-width: 6rem;
    }
}

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

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

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

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

    .header-logo a {
        font-size: 1.4rem;
        /*max-width: 11rem;*/
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 90vh;
    background-color: rgb(var(--black-color), .4);
    background-image: url(/assets/images/wave-white.svg), radial-gradient(circle, rgb(74 98 134 / 49%) 60%, rgba(0, 0, 0, 0.3) 60%);
    background-size: 100% 15rem, 200%;
    background-position: center bottom, 100% 50%;
    background-repeat: no-repeat;
}

.top-section .text-block {
    max-width: 70rem;
}
.top-section .text-block p{
    max-width: 65rem;
}

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

.top-section span {
    font-size: 5.7rem;
}

.top-section .btn {
    min-width: 23rem;
}

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

    .top-section .section-title {
        font-size: 4.5rem;
    }

.top-section span {
    font-size: 5rem;
}

    .top-section {
        background-size: 100% 6rem;
        background-image: url(/assets/images/wave-white.svg);
    }
}

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

    .top-section span {
        font-size: 3.2rem;
    }
    

    .top-section {
        background-size: 100% 6rem;
    }
}

/* Sektion Recensioner
========================================================================== */
.section-testimonials {
    overflow: hidden;
}

/* Slider */
.testimonials.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

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

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

/* Slick Dots */
.testimonials .slick-dots {
    justify-content: flex-start;
    padding: 0;
    margin: 1rem 0 0;
}

.testimonials .slick-dots li:not(.slick-active) {
    opacity: .5;
}

.testimonials .slick-dots li::before {
    color: rgb(var(--gray-color));
}

.testimonials .slick-dots li.slick-active::before {
    color: rgb(var(--gray-color));
    opacity: 1;
}

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

.testimonials .slick-arrow.slick-disabled {
    opacity: .3;
    cursor: not-allowed;
}

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

.testimonials .slick-next {
    right: 2rem;
}

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

/* ==========================================================================
  Undersida
  ========================================================================== */

/* Hero - Grundkod
  ========================================================================== */
.hero .section-block {
    display: flex;
    align-items: flex-end;
    min-height: 40vh;
    padding-bottom: 5rem;
}

.hero .section-block-wrapper {
    width: 100%;
}

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

/* Hero-text
  ========================================================================== */
.hero-text .section-title {
    padding: 0 0 1rem;
    margin: 0 0 1rem;
    font-size: 4.5rem;
    border-bottom: 2px solid rgb(var(--primary-color));
}

@media only screen and (max-width: 580px) {
    .hero-text .section-title {
        font-size: 3rem;
    }
}
/* ==========================================================================
  Undersida Om oss
  ========================================================================== */
.sigill-wrapper{
    padding-top: 2rem;
    max-width: 30rem;
}
.sigill-wrapper img{
    border-radius: 2rem;
}

/* ==========================================================================
  Undersida Tjanster
  ========================================================================== */

.accordion-item {
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.accordion-header {
    position: relative;
    width: 100%;
    padding: 0 0rem 0rem;
    cursor: pointer;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 1.7rem;
    font-family: "Font Awesome 5 Pro";
    transition: .5s ease;
}

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

.accordion-header p {
    padding-right: 2.5rem;
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .section-block-wrapper {
    justify-content: space-between;
}

.section-contact .col-0 {
    margin-bottom: 3rem;
}

.section-contact .col-2 {
    max-width: 55rem;
    padding: 3rem;
    margin-top: 1rem;
    background: rgb(var(--white-color));
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

@media only screen and (max-width: 1100px) {
    .section-contact .col-1 {
        width: 100%;
        margin-bottom: 3rem;
    }

    .section-contact .col-2 {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

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

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

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--primary-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), .5);
}

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

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


.footer .small-title {
    font-size: 1.8rem;
    font-weight: 500;
}

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

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

.footer-sigill{
    max-width: 25rem;
    margin-top: -8rem;
}

.footer-sigill img{
   border-radius: 2rem;
   margin-bottom: 1rem;
}


/* 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;
    }
    .footer-sigill{
        margin-top: 0rem;
        max-width: 20rem;
    }
}

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