/* Kuba Dance Company */

/* Typsnitt - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=pilcrow-rounded@700,400&display=swap');

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

    /* 	Colors */
    --primary-color: 255, 255, 5;
    --primary-dark-color: 200, 200, 5;
    --secondary-color: 52, 96, 161;
    --secondary-light-color: 62, 114, 191;
    --secondary-dark-color: 31, 38, 48;
    --accent-beige-color: 242, 241, 220;

    --black-color: 15, 18, 23;
    --gray-color: 150, 150, 150;
    --gray-dark-color: 58, 58, 58;
    --gray-light-color: 242, 242, 242;
    --white-color: 255, 255, 255;

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

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

/* Layout
========================================================================== */
.section-wrapper {
    background-color: rgb(var(--black-color));
}

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

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

/* Speciella paddings */
.p-1{
    padding: 1rem;
}
.pt-0 .section-block {
    padding-top: 0;
}

.pb-0 .section-block {
    padding-bottom: 0;
}

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

.p-0 .section-block {
    padding: 0;
}

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

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

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

.mw-40 {
    max-width: 40rem;
}

@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: 'Inter', sans-serif;
    font-weight: 400;
}

/* Rubriker */
.section-title {
    font-family: 'Pilcrow Rounded', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
}

.small-title {
    font-family: 'Pilcrow Rounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgb(var(--black-color));
}

.text-label {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 400;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
}

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

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: var(--primary-color);
}

a:hover {
    text-decoration: none;
}

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

.text-block {
   max-width: 70rem;
}

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

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

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

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

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

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

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

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

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

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

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

    .text-label {
        font-size: 1.2rem;
    }
}

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

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

.btn {
    display: inline-block;
    min-width: 18rem;
    padding: 1.4rem 2.5rem;
    font-weight: 400;
    font-size: 1.6rem;
    text-align: center;
    text-decoration: none;
    border-radius: .8rem;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.btn-primary-filled {
    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-dark-color));
    background-color: rgb(var(--primary-dark-color));
}

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

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

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

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

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

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

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

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

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    left: 50%;
    bottom: -3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 11rem;
    height: 11rem;
    background-color: rgb(var(--black-color));
    border-radius: 50%;
    transform: translateX(-50%);
}

.bouncing-arrow {
    position: relative;
    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(--black-color));
    font-size: 2rem;
    font-weight: 300;

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

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

@keyframes bounce {

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

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

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

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(var(--secondary-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: rgb(var(--secondary-color));
}

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


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

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

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

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

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

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

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

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

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

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

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


/* Grafiska element
========================================================================== */


/* 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: 88rem;
    max-height: 75vh;
    padding: 0;
    border-radius: 1rem;
    overflow: auto;
    background: rgb(var(--black-color));
    transform: translate(-50%,-50%);
  }

  .section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: rgb(var(--white-color));
  }

  .section-auto-modal .text-block-center {
    padding: 2rem 2rem 1rem;
  }

  .section-auto-modal video {
    max-width: 50rem;
  }

  @media only screen and (max-width: 580px) {
    body:not(.EditMode) .section-auto-modal .section-block {
        max-height: 90vh;
    }
}
/* 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(--secondary-color));
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    cursor: pointer;
    color: rgb(var(--white-color));
}

.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;
    padding: 2rem;
    max-width: 40rem;
    max-height: calc(100vh - 12rem); 
    margin: 0 2rem;
    background: rgb(var(--secondary-color));
    border-radius: 1.5rem;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
}

.popup-window a {
color: rgb(var(--white-color));
}

.popup-window p {
color: rgb(var(--white-color));
}

.popup-window .small-title {
color: rgb(var(--white-color));
}

.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;
    color: rgb(var(--white-color));
}

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

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

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

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

.cards-wrapper.space-between {
    justify-content: space-between;
}

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

.card-item {
    text-decoration: none;
}

/* Specifika bredder */
.cards-wrapper.w-25 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cards-wrapper.w-33  {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cards-wrapper.w-33  {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

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

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

/* Generellt for card-item */
.card-grow .card-item {
    display: flex;
    flex-direction: column;
}

.card-grow .text-wrapper {
    flex-grow: 1;
}

/* Cards 1-2 */
.cards-1-2 .border-top-black {
    padding-top: 2rem;
    margin-top: 2rem;
}


.cards-wrapper.w-50  {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media only screen and (max-width: 1000px) {
    .cards-wrapper.w-25 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-wrapper.w-33 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper {
        grid-template-columns: 1fr !important;
    }
}

/* Cards 1 */
.cards-1 .card-item {
    margin: 0 2rem 0 0;
}

.cards-1 .card-header {
    position: relative;
    padding: 3rem;
    background-color: rgb(var(--gray-light-color));
    border-radius: 1rem;
}

.cards-1 .card-header::after {
    content: '';
    position: absolute;
    left: 3.5rem;
    bottom: -1rem;
    width: 0; 
    height: 0; 
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-top: 1rem solid rgb(var(--gray-light-color));
}

.cards-1 .card-header p {
    font-size: 1.4rem;
}

.cards-1 .card-footer {
    display: flex;
    align-items: center;
    padding: 2rem 0 0 2rem;
}

.cards-1 .card-footer .image-wrapper {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin: 0 2rem 0 0;
}

.cards-1 .card-footer p {
    color: rgba(var(--black-color), .7);
    line-height: 1;
    padding: 0;
}

/* Cards 7 */
.cards-7 .card-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all .3s ease;
    background-color: rgb(var(--black-color));
}

.cards-7 .image-wrapper {
    position: relative;
    padding-top: 50%;
    clip-path: circle(150% at 50% -140%);
    overflow: hidden;
}

.cards-7 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cards-7 .text-wrapper {
    padding: 3rem 3rem 1rem;
}

.cards-7 .small-title {
    padding: 0 0 5px;
    margin: 0 0 5px;
}

.cards-7 .btn-wrapper {
    margin: auto 0 3rem;
    padding: 0 3rem;
}

/* 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: 3px;
}

.split-video {
    width: 50%;
    border-radius: 3px;
}

.split-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

/* Specifika bredder */
.split-wrapper .w-40 {
    width: 40%;
}

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

.split-wrapper .h-50 {
    height:50rem;
}

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

    .split-content {
        padding: 5rem;
    }
}

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

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

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

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

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

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

.bg-video {
    position: relative;
}

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

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

/* Video ratio
========================================================================== */
.video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

header .container {
    max-width: 140rem;
    padding: 0 5rem;
    margin: 0 auto;
}

/* logo */
.header-logo {
    padding: 1rem;
    margin: -2rem 0 0;
    background-color: rgb(var(--primary-color));
    border-radius: 0 0 5px 5px;
}

.header-logo span {
    display: block;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    padding: 0;
}

.header-logo a {
    display: block;
    width: 13rem;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    color: rgb(var(--secondary-color));
}

/* nav */
.mainmenu {
    margin: 0 0 0 auto;
}

.TemplateMenu a {
    font-weight: 400;
    font-size: 1.6rem;
    padding: 0 1rem;
    color: rgb(var(--white-color));
}

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

/* header 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 .btn {
    min-width: unset;
    padding: .8rem 1.6rem;
    line-height: 1;
}

/* Mobilmeny */
/* header.mobile-menu .header-logo {
    flex-grow: 1;
} */

.mobile-menu .header-logo {
    margin-top: -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;
    }
}

/* ==========================================================================
Startsida
========================================================================== */
/* Top Section
========================================================================== */
.top-section {
    margin-top: calc(-1 * var(--menu-height));
    background-color: transparent;
}

.top-section .section-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background-color: rgb(var(--black-color));
    /* background-image: url(/assets/images/wave.svg); */
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center bottom;
} 

.top-section .section-block-wrapper {
    width: 100%;
    text-align: center;
}

.top-section h1 {
    font-family: 'Pilcrow Rounded', sans-serif;
    font-size: 6rem;
    font-weight: 400;
    max-width: 70rem;
    margin: 0 auto;
    letter-spacing: -1px;
}

.top-section p {
    color: rgb(var(--white-color));
    max-width: 55rem;
}

.top-section .split-video {
    min-height: 80vh;
}

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

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

    .top-section p {
        font-size: 2rem;
    }
}

/* Sektion Produkter
========================================================================== */
.section-products .section-block {
    padding-top: 0;
    background-image: linear-gradient(rgb(var(--black-color)), rgb(var(--black-color)));
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center top;
}

/* Sektion Instagram
========================================================================== */
.section-instagram .section-block {
    padding-bottom: 0;
    background-image: linear-gradient(rgb(var(--black-color)), rgb(var(--black-color)));
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center bottom;
    overflow: hidden;
}

.insta-widget .eapps-instagram-feed-posts-item {
	padding: 1rem;
	background-color: #FFF;
	border-radius: 3px;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, .09);
	transform: rotate(1deg);
}

.insta-widget .eapps-instagram-feed-posts-item:nth-child(even) {
	transform: rotate(-1deg);
}

.insta-widget .eapps-instagram-feed-posts-view.eui-slider-slide {
	padding: 1rem 0 3rem;
}


/* 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(--secondary-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 - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 5rem 4rem;
}

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

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

    .hero .section-block {
        padding: 4rem 2rem;
    }
}

/* Hero: Hero-split
========================================================================== */
.hero-split .section-block {
    background: linear-gradient(to right, rgba(var(--secondary-dark-color)) 70%, rgb(var(--black-color)) 0);
}

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

@media only screen and (max-width: 1100px) {
    .hero-split .section-block {
        background: linear-gradient(to bottom, rgba(var(--secondary-dark-color), .5) 70%, rgb(var(--white-color)) 0);
    }
}

/* ==========================================================================
Undersida: Dans för barn
========================================================================== */
@media only screen and (max-width: 580px) {
    .section-courses .split-content {
        padding-top: 5rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--secondary-dark-color));
}

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

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

.footer-menu {
    margin: 1.5rem 0;
}

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

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

.footer-top p,
.footer-top a,
.footer-top li {
    color: rgb(var(--white-color), .7);
    font-weight: 400;
    font-size: 1.4rem;
}

.footer a:hover {
    color: rgb(var(--white-color));
}

.footer p.small-title {
    font-size: 1.4rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgb(var(--white-color));
}

/* Sociala medier */
.social-menu {
    width: 100%;
    margin: 5rem 0 0;
}

.socials {
    display: flex;
}

.footer .circle-icon {
    width: 3rem;
    height: 3rem;
    font-size: 0;
}

.footer em::before {
    font-size: 1.4rem;
    color: rgb(var(--secondary-dark-color));
}

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

.footer-bottom p {
    font-size: 1.2rem;
    color: rgb(var(--white-color), .5);
}

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

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


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