/* Xia Jing AB (CHINA HOUSE) */

/* Typsnitt – Open Sans */

@import url("https://use.typekit.net/kpo5wiu.css");

@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

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


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

    /* 	Colors */
    --primary-color: 216,30,30;
    --primary-dark-color: 34,26,23;
    --secondary-color:187,131,120;
    --secondary-light-color: 222,195,190;

    --black-color: 0, 0, 0;
    --gray-dark-color: 11, 11, 11;
    --gray-color: 200, 200, 200;
    --gray-light-color: 249, 249, 249;
    --white-color: 255, 255, 255;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 0, 0, 0;
}

/* Layout
========================================================================== */


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

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

.mw-1300 .section-block-wrapper {
    max-width: 130rem;
}

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

/* Speciella paddings */
.pr-0 .section-block {
    padding-right: 0;
}

.pt-0 .section-block {
    padding-top:0;
}

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

.py-0 .section-block {
    padding-top: 0;
    padding-bottom: 0;
}

.pb-2 {
    padding-bottom: 2rem;
}

/* Speciella margins */
.mt-5 {
    margin-top: 5rem;
}

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

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

/* Text och typsnitt
========================================================================== */
body {
    font-family: museo-sans, sans-serif;
    color: rgb(var(--gray-dark-color));
}

/* Rubriker */
.section-title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    padding-bottom: 2rem;
    font-family: 'Shadows Into Light', cursive;
}

.small-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.4;
    padding-bottom: 2rem;
    font-family: 'Shadows Into Light', cursive;
    color: rgb(var(--primary-color));
}

.text-label {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.2rem;
    font-family: inherit;
}

.text-title {
    font-size: var(--base-size);
    font-weight: 700;
}

/* Brodtext och lankar */
p, li {
    font-weight: 300;
}

a {
    text-decoration: none;
    font-size: 1.6rem;
    color: inherit;
    font-weight: 600;
}

a.normal-text {
    text-decoration: none;
    font-size: 1.4rem;
    color: inherit;
    font-weight: 600;
}

/* ovriga klasser */
.text-block-center {
    max-width: 90rem;
    margin: 0 auto;
}

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

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

.text-highlight {
    background: linear-gradient(180deg, rgb(var(--white-color), 0) 70%, rgb(var(--primary-color)) 70%);
}

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

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

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

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

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

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

.btn {
    display: inline-block;
    min-width: 20rem;
    padding: 1.5rem 3rem;
    font-weight: 500;
    font-size: 1.3rem;
    text-transform: uppercase;
    border-radius: 1rem;
    letter-spacing: 0.2rem;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

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

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

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

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


/* Lank med pil */
.arrow-link {
    padding-right: 1rem;
    font-weight: 700;
}

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

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

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

.circle-icon:hover {
    color: rgb(var(--primary-color));
    background-color:transparent;
}

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

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

    .btn-wrapper {
        display: block;
    }

    .btn-wrapper .btn {
        width: 100%;
        gap: 2rem;
    }

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


/* 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: 45rem;
    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;
    }
}


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

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

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

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

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

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

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

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

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

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

.bg-black-white{
    background-image: linear-gradient(to bottom, rgb(var(--primary-dark-color)) 50%, rgb(var(--white-color)) 50%);
}


/* Sticky Note
========================================================================== */
.sticky-note {
    position: sticky;
    z-index: 5;
    bottom: 0;
}

.sticky-note .section-block {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.sticky-note p {
    padding: 0;
    font-size: 1.4rem;
    text-align: center;
}

.EditMode .sticky-note {
    position: relative;
}


/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));

}

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

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


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


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

.cards-wrapper.align-center {
    align-items: center;
}



/* Specifika bredder */
.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;
}

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

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

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


/* Cards 6*/
.cards-6 .card-item {
    padding: 4rem;
    margin-top: 7rem !important;
    text-decoration: none;
    border-radius: .8rem;
    box-shadow: 0 1.5rem 3rem rgba(var(--black-color), .17);
    background: rgb(var(--black-color));
}

.cards-6 .image-wrapper {
    z-index: 1;
    width: 25rem;
    height: 25rem;
    margin: -10rem auto 3rem;
    border-radius: 50%;
}

.cards-6 .text-wrapper * {
    text-align: center;
}

@media only screen and (max-width: 750px) {
    .cards-6 .image-wrapper {
        z-index: 1;
        width: 15rem;
        height: 15rem;
        margin: -8rem auto 3rem;
        border-radius: 50%;
    }
}


/* Cards 14 */
.cards-14 {
	justify-content: space-between;
}

.cards-14 .card-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 3rem;
    border-radius: 8px;
    transition: all .3s ease;
	background-color: rgb(var(--secondary-light-color));
}

.cards-14 a.card-item:hover {
    text-decoration: none;
    background-color: rgb(var(--secondary-color));
    transition: all .3s ease;
}

.cards-14 i {
    width: 5rem;
    font-size: 3rem;
	color: rgb(var(--primary-color));
}

.cards-14 p {
    padding-bottom: 0;
    font-size: 1.4rem;
}

.cards-14 .contact-info {
    font-size: 1.6rem;
    font-weight: 400;
}

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

/* Logos 1 */
.logos-1 .card-item {
    max-width: 10rem;
    text-align: center;
}

.logos-1 img {
    transform: scale(.94);
    transition: 0.2s ease-in-out;
}

.logos-1 img:hover {
    opacity: 1;
    filter: none;
    transform: scale(1);
}

@media only screen and (max-width: 868px) {
    .logos-1 img {
        max-height: 8rem;
    }
}


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

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

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

.split-image {
    width: 50%;
}

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

/* Speciella paddings */
.split-content.pl-0 {
    padding-left: 0;
}

.split-wrapper .mt--5 {
    margin-top: -5rem;
}

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

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

    .split-wrapper .mt--5 {
        margin-top: 0rem;
    } 
}

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

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

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

/* Bakgrundsvideo
========================================================================== */
.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 {
    min-height: 40rem;
    background-position: center bottom;
    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 {
   background-color: rgb(var(--primary-dark-color)); 
}

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

/* logo */
.header-logo {
    flex-basis: 0;
    flex: 1 1 0px;
    padding-right: 2rem; 
}

.header-logo a {
    color: rgb(var(--white-color));
    font-family: 'Shadows Into Light', cursive;
    font-size: 2.5rem;
    text-transform: uppercase;
}

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

.TemplateMenu a {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 1.6rem;
    color: rgb(var(--white-color));
}

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

.IndexPage .scrolled .TemplateMenu a:hover,
.TemplateMenu a:hover {
    color: rgb(var(--primary-color));
}

.header-cta-wrapper .btn {
    min-width: max-content;
    padding: 0.5rem 2rem;
    margin: 0 .5rem;
} 

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    background-color: rgb(var(--white-color));
}

@media only screen and (max-width: 550px) {
    .avhamtning-cta {
       display: none;
    } 
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--black-color), .6);
    overflow: hidden;
    position: relative;
}

.top-section h1 {
    font-weight: 400;
    font-size: 7.5rem;
    padding-bottom: 3rem;
    max-width: 100rem;
}

.top-section h1,
.top-section p {
    margin: 0 auto;
}

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

@media only screen and (max-width: 1300px) {
    .top-section h1 {
        font-size: 5rem;
    }
}   


@media only screen and (max-width: 550px) {
    .top-section h1 {
        font-size: 5rem;
    }

    .top-section {
        justify-content: center;
   
    }
}    


/* Sektion takeaway
========================================================================== */
.section-start {
    background-image: url('/assets/images/sushi-takeaway.jpg');
}

.section-start .section-block {
    background-color: rgb(var(--black-color), .6);
}

/* CTA kontakt
========================================================================== */
.cta-wrapper {
    padding: 5rem 4rem;
    background-color: rgb(var(--white-color));
    max-width: 100rem;
    margin: 0 auto;
    margin-bottom: -2rem;
    border-radius: 2px;
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 7%);
}

.bg-text-wrapper {
    max-width: 70rem;
}

.cta-wrapper .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    padding: 2rem;
    margin-top: -3rem;
    margin-bottom: 1rem;
    margin-left: -6rem;
    text-align: left;
    background-color: rgb(var(--primary-color));
}

.cta-wrapper .icon-wrapper i {
    font-size: 4rem;
    color: rgb(var(--white-color));
}

.cta-wrapper .btn-wrapper {
    justify-content: flex-end;
}

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

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

    .cta-wrapper .icon-wrapper {
        margin-left: -3rem;
        margin-top: -2rem;
    }
}

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

/* Hero
========================================================================== */
.hero .section-block {
    background-color: rgb(var(--black-color), .6);
        min-height: 40rem;
            display: flex;
    align-items: center;
}
.hero h1 {
    font-weight: 400;
    font-size: 7.5rem;
    padding-bottom: 2rem;
    margin-top: 4rem;
}

@media only screen and (max-width: 580px) {
 
        .hero h1 {
            font-weight: 400;
            font-size: 5rem;
            padding-bottom: 2rem;
        }

  
}


/* ==========================================================================
Undersida Kontakt
========================================================================== */
/* Sektion Oppettider
========================================================================== */

.opening-hours {
	margin-top: 5rem;
}

.opening-hours .title-wrapper {
	margin-bottom: 3rem;
}

.opening-hours .card-item {
	border: none;
    background-color: rgb(var(--secondary-light-color), .2);
	padding: 2rem;
	align-self: flex-start;
}

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

/* Sektion Meny
========================================================================== */
.menu-container {
	position: relative;
	z-index: 1;
	background-color: rgb(var(--white-color));
	position: relative;
    padding: 3rem;
    max-width: 100rem;
    border-radius: 8px;
    min-height: 80rem;
}

.menu-wrapper {
    margin: 0 0 10rem;
    padding: 0 5rem;
}

.menu-wrapper ol {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-wrapper li {
    width: calc(50% - 1.5rem);
    border-bottom: 1px solid rgb(var(--secondary-light-color));
}

.menu-wrapper .text-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.menu-wrapper .price {
    white-space: nowrap;
}

.menu-wrapper p {
    font-size: 1.4rem;
}

/* Tags */
.tags-wrapper {
	position: -webkit-sticky;
	position: sticky;
	top: var(--menu-height-scrolled);
	overflow: hidden;
}

.tags-list {
	display: flex;
    flex-wrap: wrap;
	margin: 0 0 5rem;
	padding: 2rem;
	list-style: none;
	width: 100%;
    /* height: 7rem; */
    border-radius: 8px 8px 0 0;
    background-color: rgb(var(--white-color));
	overflow: auto;
} 

.tags-list li {
    width: 100%;
}

.tag {

	margin: 0 .8rem 0 0;
	padding: 1.2rem;
    margin-top: 0.5rem;
	font-size: 1.4rem;
    font-weight: 600;
	color: rgb(var(--black-color));
	line-height: 1;
	letter-spacing: .1rem;
    text-align: center;
	text-transform: uppercase;
	border-radius: 2rem;
	white-space: nowrap;
    transition: .2s ease;
}

.tag:hover {
	background-color: rgb(var(--secondary-light-color));
    /* border-color: rgb(var(--secondary-light-color)); */
}

.tags-list li.active .tag {
  color: rgb(var(--white-color));
  background-color: rgb(var(--primary-color));
}

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

    .tags-list {
        padding: 1rem 3rem;
    }

}


@media only screen and (max-width: 800px) {
    .menu-wrapper li {
        width: 100%;
    }
    .tags-list li {
    width: 100% 
}
}


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

    .menu-wrapper {
        padding: 0 1rem;
    }

    .tags-list {
        padding: 1rem;
    }

    .tag {
        min-width: auto;
        padding: .6rem 1.4rem;
    } 
}



/* --- Styling för dropdown-knappen --- */
.btn-wrapper {
  margin-top: 2rem;
  text-align: center;
}

.dropdown-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  user-select: none;
}

.dropdown-wrapper:hover {
  background-color: #0056b3;
}

.dropdown-wrapper .dropdown-arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* --- Styling för dropdown-innehållet --- */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown a.tag {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 1.6rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown a.tag:hover {
  background-color: #f1f1f1;
}


.dropdown a.tag.tag-picked {
    background-color: #e2e6ea;
    color: rgb(var(--primary-color));
    font-weight: bold;
}
.dropdown-wrapper.opened .dropdown {
  display: block;
}

.dropdown-wrapper.opened .dropdown-arrow {
  transform: rotate(180deg);
}

.sec-menu .tags-heading {
    display: none;
}

.sec-menu .tags-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -3rem;
}

.sec-menu .tags-list .tag {
    padding: 1rem 3rem;
    font-size: 1.9rem;
    cursor: pointer;
    transition: .2s ease;
}

.sec-menu .tags-list .tag:hover,
.sec-menu .tags-list .tag-picked {
    color: rgb(var(--primary-color));
}

/* Menyn */
.sec-menu .tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding: 8rem 2rem 10rem
}

.sec-menu .tab-col {
    width: 100%;
}

.sec-menu .tab-col.w-50 {
    width: calc(50% - 4rem);
    margin: 0 2rem;
}

.sec-menu .tab-col .tab-item {
    max-width: 50rem;
    margin: 0 auto;
}

.sec-menu .tab-col .tab-item:not(:last-of-type) {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}

.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
}

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

.accordion-item {
    width: 100%;
    margin-bottom: 3rem;
       background: white;
       border-radius: 2rem;
}

.accordion-header {
     display: none;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 40%;
    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-body {
    padding: 2rem;
}

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

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


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

    .accordion-header {
    position: relative;
    width: 100%;
    padding: 2rem;
    border-radius: 2rem;
    text-decoration: none;
     background: white;
     display: block;
}
.accordion-body{
    padding-top: 0;
}

    /* Taggar */
    .sec-menu .tags-wrapper {
        position: relative;
        max-width: 25rem;
        margin: -2.4rem auto;
        background: rgb(var(--primary-color));
        cursor: pointer;
    }

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

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

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

   .sec-menu  .tags-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
    }

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

    .sec-menu .tags-wrapper .tag {
        padding: 1rem 2rem;
        letter-spacing: normal;
        text-transform: initial;
    }
}

/* ==========================================================================
Footer
========================================================================== */

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

.footer-container {
    max-width: 160rem;
    padding: 0 5rem;
    margin: 0 auto;
}

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

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

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

.footer .small-title {
    font-size: 1.5rem;
    font-family: inherit;
    text-transform: uppercase;
    font-weight:400;
    letter-spacing: 0.3rem;
    color: rgb(var(--white-color));
}

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

.footer a,
.footer li,
.footer p {
    color: rgba(var(--white-color), .7);
    font-weight: 300;
    font-size: 1.6rem;
}

.footer .socials em {
    font-size: 0;
}

.footer .socials em::before,
.footer .socials em::after {
    font-size: 1.4rem;
}

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

.footer-bottom p {
    font-size: 1.3rem;
}

.footer a:hover {
    text-decoration: underline;
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

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

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

    .footer-container {
        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 bottom */
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .footer-bottom .socials {
        margin-bottom: 1.5rem;
    }
}

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