/* Bistroteket Maria  */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;500;600&family=Yanone+Kaffeesatz:wght@200;300;400;500;600;700&display=swap');

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

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

    /* 	Colors */
    --primary-color: 161, 1, 59;
    --secondary-color: 25, 37, 65;


    --black-color: 0, 0, 0;
    --gray-dark-color: 75, 75, 75;
    --gray-light-color: 248, 248, 248;
    --white-color: 255, 255, 255;

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

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

/* Layout
========================================================================== */
body {
    background-color: rgb(var(--accent-beige-color));
}

.section-block {
    padding: 10rem 5rem;
}

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

/* Paddings */
.p-4 {
    padding: 4rem;
}

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

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

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

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

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

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

.mw-1000 .section-block-wrapper {
    max-width: 100rem;
}

/* Ovrigt */
.justify-center {
    justify-content: center;
}

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

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

    .p-4 {
        padding: 2.5rem 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Roboto Mono', monospace;
    font-weight: 300;
}

/* Rubriker */
.text-label {
    font-size: 1.7rem;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 1em;
    letter-spacing: .2rem;
    font-family: 'Yanone Kaffeesatz', sans-serif;
}

.section-title {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    padding-bottom: .5em;
}

.small-title {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.4;
    padding-bottom: .7em;
}

.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: 80rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

.text-lowercase{
    text-transform: none;
}

@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: 3.3rem;
    }

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

    p, li {
        font-size: 1.5rem;
    }
}


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

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

/* Knappar */
.btn, .ContactSubmit {
    display: inline-block;
    min-width: 18rem;
    padding: 1.4rem 2.2rem;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2rem;
    font-size: 1.6rem;
    text-transform: uppercase;
    border-radius: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

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

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

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

.btn-secondary-filled:hover {
    background-color: rgb(var(--primary-color)) ;
}

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

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

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

.circle-icon:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.circle-icon i:before,
.circle-icon em:before {
    font-size: 1.4rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 1050px) {
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }

    .cards-wrapper.w-100 .card-item {
        padding: 0;
    }
}

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

/* Cards 3-5 */
.card-3-5 .card-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    min-height: 40rem;
    padding: 3rem;
    border-radius: 0px;
    overflow: hidden;
}

.card-3-5 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-3-5 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), 0.4);
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.card-3-5 .card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), 0.6);
}

.card-3-5 .card-body {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 3rem 3rem 0;
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
    border-bottom: none;
    border-radius: 0px 0px 0 0;
}

.card-3-5 .btn-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    margin: 0;
    height: 3rem;
}

.card-3-5 .btn-wrapper::before,
.card-3-5 .btn-wrapper::after {
    position: relative;
    display: inline-block;
    content: '';
    flex: 1 1 0px;
    border-bottom: 1px solid rgb(var(--white-color));
}

.card-3-5 .btn-wrapper::before {
    border-left: 1px solid rgb(var(--white-color));
    border-bottom-left-radius: 3px;
    margin-right: 2rem;
}

.card-3-5 .btn-wrapper::after {
    border-right: 1px solid rgb(var(--white-color));
    border-bottom-right-radius: 3px;
    margin-left: 2rem;
}

.card-3-5 .arrow-link {
    font-size: 1.4rem;
    padding-bottom: 0;
    transform: translateY(50%);
    line-height: 1;
    align-self: flex-end;
}

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

    .card-3-5 .card-body {
        padding: 2rem 2rem 0;
    }
    
    .card-3-5 .btn-wrapper {
        height: 2rem;
    }
}


/* Cards 5 */
.cards-5 .card-item {
    padding: 2rem; 
    text-decoration: none;
    border-radius: 3rem;
    display:flex;
    align-items: center;
}
  
.cards-5 .icon-wrapper {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
}

.cards-5 p {
    transition: .3s ease;
    margin-left: 2rem;
    padding: 0;
}

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

@media only screen and (max-width: 1000px) {
    .cards-5 .icon-wrapper {
        font-size: 1.5rem;
        width: 4rem;
        height: 4rem;
    }  
}

/* Grafiska element
========================================================================== */
/* Inre border */
.offset-white {
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -11px;
}

@media only screen and (max-width: 580px) {
    .offset-white {
        outline: 1px solid rgb(var(--white-color));
        outline-offset: -5px;
    }
}

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

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

.bg-image-wrapper .op-center-75 {
    object-position: center 75%; 
}

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

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

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

.split-image {
    width: 50%;
}

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

.split-wrapper .mr--18rem {
    z-index: 1;
    position: relative;
    margin-right: -18rem;
}

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

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

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

/* Specifika paddings */
.pt-0 .section-block {
    padding-top: 0;
}

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

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

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

@media screen and (max-width: 1000px) {
    .split-content,
    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
    }

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

    .split-wrapper .mr--18rem {
        margin-right: 0rem;
        margin-bottom:2rem;
    }
   
    .split-image {
        width: 100%;
        min-height: 30rem;
    }
}

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

    .split-content.bg {
        padding: 4rem 2rem;
    }
}


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

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

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

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

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

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

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

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

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

/* Nav */
.TemplateMenu a {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    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);
}

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

    .mobile-menu .header-logo img {
        padding: 1.3rem 0;
     }  
}

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

    .mobile-menu .header-logo img {
        padding: 1.6rem 0;
     }

     .header-cta-wrapper .btn {
        padding: 0.7rem 1.1rem;
    }
     
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background-color: rgb(var(--black-color), .3);
    text-align: center;
}

.top-section .section-block-wrapper {
    max-width: 100rem;
}

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

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

.top-section .btn {
    margin: .7rem;
}

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

    .top-section .section-block-wrapper {
        max-width: 60rem;
    }
}

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

    .top-section .btn {
        margin: 0 0 .7rem;
    }
}

/* Utvalda bilder
========================================================================== */
.header-image-gallery {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
    margin-bottom: -3rem;
}

.header-image {
	width: calc((100% - 4rem) / 4);
    max-height: 30rem;
    border-radius: 3px;
}

@media only screen and (max-width: 1300px) {
	.header-image {
		width: calc((100% - 2rem) / 4);
	}
}

@media only screen and (max-width: 768px) {
	
	.header-image-gallery {
		flex-wrap: wrap;
        margin-bottom: -5rem;
	}

	.header-image {
		width: calc((100% - 2rem) / 2);
        margin: 0 0 2rem;
	}

}

/* CTA
========================================================================== */
.section-cta {
    background-image: url('/assets/images/fin-dukning-2000px.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-cta .section-block {
    background-image: linear-gradient(to left, rgba(var(--black-color), 0.6), rgb(var(--black-color), 0.6));
}

.section-cta .text-block {
    text-align: center;
}

.section-cta p {
    max-width: 40rem;
    margin: 0 auto;
}

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

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 50vh;
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -11px;
      margin-top: calc(var(--menu-height)); 
}

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

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


/*  ======================================================================
undersida a la carte
========================================================================== */

/* meny  */
.tab-container {
    padding: 5rem 7rem;
    outline: 1px solid rgb(var(--primary-color));
    outline-offset: -11px;
    border: 5px solid rgb(var(--primary-color));
    background-color: rgb(var(--white-color));
    margin-top:-15rem;
    position: relative;
  }

  /* Tabbval */
  .tabs-wrapper {
    margin-bottom: 5rem;
  }
  
  .tabs-list {
    text-align: center;
  }

  .tabs-heading {
    display: none;
  }

  .tab {
    display: inline-block;
    padding: 1rem 2rem;
    color: rgb(var(--gray-dark-color));
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .3rem;
    cursor: pointer;
  }

  .tab-active {
    color: rgb(var(--primary-color));
  }

  /* Innehåll */
  .tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .tab-col {
    width: calc((100% / 2) - 2rem);
  }

  .tab-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 4rem;
  }

  .tab-wrapper.small .tab-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
  }

  .tab-item.border {
      padding:2rem;
      outline: 1px solid rgb(var(--primary-color));
      outline-offset: -5px;
  }


  .section-menu .small-title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    letter-spacing: .2rem;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .tab-item .small-title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    letter-spacing: .2rem;
    line-height: 1.1;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(var(--gray-dark-color), .3);
  }

  .tab-item .price {
    padding-left: 1rem;
  }

  .tab-item .description {
    font-size: 1.3rem;
    text-transform: uppercase;
    color: rgb(var(--gray-dark-color));
  }

  @media only screen and (max-width:1200px) {
    .tab {
        display: inline-block;
        padding: 1rem 1rem;
        font-size: 1.7rem;
     
      }
     
    }

  @media only screen and (max-width:980px) {
    /* Tabbval */
    .tabs-wrapper {
      position: relative;
      max-width: 25rem;
      padding: 1rem 2rem;
      background: rgb(var(--primary-color));
      cursor: pointer;
    }

    .tabs-heading {
      display: block;
    }

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

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

    .tabs-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(0,0,0,.1);
    }

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

    .tab {
      display: block;
      padding: 1.5rem 1rem;
      letter-spacing: normal;
      text-transform: initial;
    }
  }

  @media only screen and (max-width:750px) {
  	/* Innehåll */
    .tab-col {
      width: 100%;
    }
  }

  @media only screen and (max-width:480px) {
    .tab-container {
      padding: 3rem 2rem;
      margin-top:-5rem;
    }
    
    /* Tabbval */
    .tabs-wrapper {
      max-width: 100%;
    }
    
    /* Innehåll */
    .tab-item .small-title {
      font-size: 1.5rem;
    }

    .tab-item .description {
      font-size: 1.3rem;
    }
  }

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

.ContactForm p {
    padding-left: 1rem;
    color: rgb(var(--secondary-color));
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.5rem;
}

.ContactForm input[type="text"],
.ContactForm textarea {
    border: 1px solid rgb(var(--gray-dark-color));
    border-radius: 10px;
}

.ContactForm div {
    width: 49%;
}

.ContactForm .ContactFormMessage {
    width: 100%;
}

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

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

    .layout-2 .col-1{
        margin-top: 4rem;
    }
}

/* ==========================================================================
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), .5);
}

.footer-menu {
    width: 20%;
    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:not(.circle-icon) {
    color: rgb(var(--white-color));
}

/* 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%;
    }
}

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