/* Caderia */

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css');

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 56, 166, 180;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 191, 185, 173;
    --gray-light-color: 243, 241, 237;
    --white-color: 255, 255, 255;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 130rem;

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

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

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

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

/* Paddings */
.p-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem;
}
 
.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}
 
.pt-2 .section-block,
.pt-2:not(.section-wrapper) {
    padding-top: 2rem;
}

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

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

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

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

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

/* Text och typsnitt 
========================================================================== */
body {
    font-family: 'Manrope', sans-serif;
}

/* Rubriker */
.section-title {
    padding-bottom: .5em;
    font-size: 3.7rem; 
    font-weight: unset;
    line-height: 1.2;
    font-family: "Michroma", serif;
    color: rgb(var(--gray-dark-color));
} 

.small-title {
    padding-bottom: .5em;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.text-label {
    padding-bottom: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* List-check */
.list-circle {
    padding-left: 1.5rem;
    list-style: none;
}

.list-circle li {
    padding-bottom: 0.5rem;
}

.list-circle li::before {
    content: '\f111';
    padding: 0 1rem 0 0;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
}
/* List-icon */
.list-icon li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/assets/images/graphics/logo-icon.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 1rem;
}

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

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

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

.text-italic {
    font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

.btn-gray-filled:hover {
    color: rgb(var(--gray-color));
    border: 2px solid rgb(var(--gray-color));
    background-color: transparent;
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    color: rgb(var(--primary-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;
}

/* 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(--white-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color)); 
    transition: .3s ease;
}

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

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

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

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

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

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

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

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

/* Grafiska element 
========================================================================== */
/* Borders */
.border-left-white {
    border-left: 5px solid rgb(var(--white-color));
}

.border-right-white {
    border-right: 5px solid rgb(var(--white-color));
}

.divider-border {
    max-width: 70%;
    height: 2px;
    margin: 4rem auto 0;
    background: rgb(var(--black-color));
}

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

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

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

/* Crossfade */
.bg-crossfade {
    position: relative;
    background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .4) 0%, rgba(var(--black-color), 0) 100%);
}

.fade-slider {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fade-slider div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fade-slider.slick-slider {
    position: absolute;
}

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

.parallax .section-block {
    min-height: 40rem;
    background-color: rgb(var(--black-color), .4)
}
/* Bilder */
.parallax-start {
    background-image: url('/assets/images/vitt-kontor-2000px.jpg');
}


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

/* Bakgrundsgrafik */
.bg-icon-bottom,
.bg-icon-top {
    position: relative;
}

.bg-icon-top:before {
    content: '';
    z-index: -1;
    position: absolute;
    width: 24rem;
    height: 19rem;
    background-repeat: no-repeat;
}

.bg-icon-bottom:after {
    content: '';
    z-index: -1;
    position: absolute;
    width: 14rem;
    height: 14rem;
    background-repeat: no-repeat;
}

.bg-icon-bottom::after {
    right: 0rem;
    bottom: 1rem;
    background-image: url(/assets/images/graphics/icon-light-230px.png);
}

.bg-icon-top::before {
    top: 2rem;
    right: 2rem;
    background-image: url(/assets/images/graphics/icon-230px.png);
}

@media only screen and (max-width: 1024px) {
    .bg-icon-top:before,
    .bg-icon-bottom:after {
        opacity: .5;
        width: 12rem;
        height: 9rem;
        background-size: contain;
    }
}

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

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

.card-item {
    border-radius: 1rem;
    text-decoration: none;
    overflow: hidden;
}

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}

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

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

@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:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

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

/* Card 2-1 */
.card-2-1 .card-header {
    margin-bottom: 2rem;
    font-size: 4rem;
}

/* Card 2-2 */
.card-2-2 .card-header {
    display: flex;
    align-items: center;
}

.card-2-2 .icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    margin: 0 2rem 0 0;
}

.card-2-2 .icon-wrapper i {
    font-size: 2.5rem;
}

.card-2-2 .text-small {
    font-size: 1.4rem;
}

.card-2-2 a.card-item p {
    transition: .2s ease;
}

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

/* Card 3-1 */
.card-3-1 .image-wrapper {
    height: 25rem;
}

.card-3-1 .arrow-link {
    padding: 0 2rem 2rem;
}

.card-3-1 .small-title.arrow-link {
    font-size: 2rem;
    color: rgb(var(--gray-dark-color));
    padding: 2rem;
}

@media only screen and (max-width: 580px) {
    .card-3-1 .small-title.arrow-link {
        font-size: 1.7rem;
    }
}

/* Card 3-6 */
.card-3-6 .card-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40rem;
    text-align: center;
}

.card-3-6 .card-item:hover {
    transform: scale(105%);
}

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

.card-3-6 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--black-color), .6);
    transition: .4s ease;
}

.card-3-6 img {
    transition: .3s ease;
}

.card-3-6 .card-item:hover .image-wrapper::after {
    background: rgb(var(--black-color), .8)
}

.card-3-6 .card-body {
    z-index: 1;
    position: relative;
    padding: 2rem;
}

.card-3-6 .front {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
    transition: .4s ease;
}

.card-3-6 .back,
.card-3-6 .card-item:hover .front {
    opacity: 0;
    transition: .4s ease;
}

.card-3-6 .card-item:hover .back {
    opacity: 1;
}

.card-3-6 .section-title {
    font-size: 3.1rem; 
}

@media only screen and (max-width: 580px) {
    .card-3-6 .section-title {
        font-size: 2.6rem; 
    } 
}
 
/* 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;
}

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

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

@media screen and (max-width: 1000px) {
    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
        background: transparent;
    }

    .split-content {
        width: 100%;
        max-width: 70rem;
        padding: 0 0 3rem;
        background: transparent;
    }

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

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

/* Header / Navigation
========================================================================== */
/* Top header */
/* .top-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: var(--section-width);
    height: 4rem;
    padding: .5rem 0;
    margin: 0 auto;
    border-bottom: 1px solid rgb(var(--gray-light-color));
    overflow: hidden;
    transition: .3s ease;
}

.top-header p {
    padding: 0 5px 0 0;
    font-size: 1.4rem;
}

.top-header a {
    display: flex;
    align-items: center;
    margin: 0 8px;
    font-size: 1.4rem;
    text-decoration: none;
    transition: .2s ease;
}

.top-header a:hover {
    color: rgb(var(--primary-color));
} */

.language {
    line-height: unset;
}

.top-header div,
.language div {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    margin-left: 1rem;
    border-radius: 50%;
    align-content: center;
}

header {
    background-color: rgb(var(--white-color), .9);
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

/* Logo */
.header-logo {
    flex: 1 1 0px;
}

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

.TemplateMenu li.active>a {
    color: rgb(var(--black-color));
}

.TemplateMenu a:hover {
    color: rgb(var(--gray-color));
}

.TemplateMenu ul {
    width: 27rem;
}

.TemplateMenu ul a {
    font-size: 1.4rem;
}

/* CTA  */
.header-cta-wrapper {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 0px;
    padding: 0;
    margin: 0 0 0 4rem;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

@media only screen and (max-width: 580px) {
    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 93vh;
    margin-top: calc(var(--menu-height)* -1);
    background-color: rgb(var(--black-color), .5);
    overflow: visible;
}

.top-section .section-block {
    width: 100%;
}

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

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

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

.top-section .btn-primary-filled:hover {
    color: rgb(var(--white-color));
}

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

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

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

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

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

@keyframes bounce {

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

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

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

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

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

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

/* Intro sektion
========================================================================== */
@media only screen and (max-width: 580px) {
    .section-intro .section-block {
        padding-top: 10rem;
    }
}

/* Omdomen
========================================================================== */
.section-scroll {
    overflow: hidden;
}

/* Slider */
.scroll-wrapper.cards-wrapper {
    margin-bottom: 4rem;
}

.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

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

.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    height: auto;
    margin: 0 1rem;
    transition: all .3s ease;
}

.scroll-wrapper.cards-wrapper .card-item[aria-hidden="true"] {
    opacity: .5;
    transform: scale(.9);
}

/* Card item */
.scroll-wrapper .card-item {
    display: flex;
    flex-direction: column;
    margin: 0 2rem 0 0;
}

/* Slick dots */
.scroll-wrapper .slick-dots {
    margin: 4rem 0 2rem;
    padding: 0;
}

.scroll-wrapper .slick-dots li.slick-active::before {
    color: rgb(var(--black-color));
}

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

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

.scroll-wrapper .slick-next {
    right: 2rem;
}

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

@media only screen and (max-width: 750px) {
    .scroll-wrapper.cards-wrapper {
        margin-bottom: 2rem;
    }

    .scroll-wrapper.cards-wrapper .card-item {
        margin: 0;
    }

    .scroll-wrapper .slick-dots {
        margin: 2rem;
    }

    .scroll-wrapper .slick-arrow {
        display: none !important;
    }
}

/* CTA-sektion
========================================================================== */
.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.cta-wrapper .text-block {
    max-width: 65rem;
}

.cta-wrapper .btn-wrapper {
    margin-top: 0;
}

.section-cta .section-block-wrapper {
    justify-content: center
}

.section-cta .col-1 {
    padding: 5rem;
    background-color: rgb(var(--white-color), .75);
    border-radius: 1rem 0 0 1rem;
}

.section-cta .col-2 {
    max-width: 45rem;
    padding: 3rem;
    border-radius: 0 1rem 1rem 0;
    background: rgb(var(--gray-light-color));
}

@media only screen and (max-width: 980px) {
    .section-cta .col-1 {
        border-radius: 1rem 1rem 0 0;
        padding: 5rem 3rem;
    }

    .section-cta .col-2 {
        max-width: 100%;
        border-radius: 0 0 1rem 1rem;
    }
}

/* Formular */
.ContactForm {
    margin-top: 2rem;
}

.ContactForm p {
    font-weight: 600;
    font-size: 1.4rem;
}

.ContactForm input[type="text"],
.ContactForm textarea {
    border-radius: 5px;
    background: rgb(var(--white-color));
}

@media only screen and (max-width: 1000px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-wrapper .btn-wrapper {
        margin-top: 2rem;
    }
} 

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

/* Hero - Grundkod
========================================================================== */
.hero {
    margin-top: calc(var(--menu-height)* -1);
}

.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 55rem;
    text-align: center;
    padding-top: var(--menu-height);
    padding-bottom: 0;
    background-color: rgb(var(--black-color), .6);
}

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

.hero .section-title {
    padding: 0;
    font-size: 5rem;
    color: rgb(var(--white-color));
}

.hero p {
    font-size: 1.9rem;
    font-weight: 600;
    color: rgb(var(--white-color));
}

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

    .hero .section-title {
        font-size: 2.2rem;
    }
}

/* Hero - Bara text
========================================================================== */
.hero-text {
    margin-top: calc(var(--menu-height)* -1);
}

.hero-text .section-block {
    display: flex;
    position: relative;
    overflow: hidden;
    min-height: 35rem;
    align-items: center;
    padding-top: var(--menu-height);
    padding-bottom: 0;
    background-color: transparent;
}

.hero-text .section-block:before,
.hero-text .section-block:after {
    content: '';
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 70%;
}

.hero-text .section-block:before {
    width: 34rem;
    top: -10rem;
    right: 15%;
    transform: translate(-50%, 0%);
    background-image: url(/assets/images/graphics/icon-230px.png);
}

.hero-text .section-block:after {
    width: 30rem;
    top: 60%;
    left: 30%;
    transform: translate(-50%, -50%);
    background-image: url(/assets/images/graphics/icon-light-230px.png);
}

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

/* ==========================================================================
Undersida: Vara tjanster 
========================================================================== */
@media screen and (max-width: 1000px) {
    .section-services .split-wrapper {
        flex-direction: column-reverse;
    }

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

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

.section-contact .col-2 {
    max-width: 45rem;
    padding: 3rem;
    border-radius: 1rem;
    background: rgb(var(--gray-light-color));
}

@media screen and (max-width: 980px) {
    .section-contact .col-2 {
        width: 100%;
        margin-top: 3rem;
    } 
}

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

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    border-top: 2px solid rgb(var(--white-color));
    background-color: rgb(var(--gray-light-color));
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 2rem;
}

.footer-menu {
    width: 30%;
}

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

.footer-menu-large p {
    font-size: 1.5rem;
}

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
}

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

.footer-top li,
.footer-top p:not(.text-label),
.footer-top a:not(.circle-icon) {
    color: rgb(var(--gray-dark-color));
    text-decoration: none;
}

.footer-top a {
    transition: .2s ease;
}

.footer a:not(.circle-icon):hover {
    color: rgb(var(--primary-color));
    text-decoration: none;
} 

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

.footer-middle .btn {
    width: auto;
}

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

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

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

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    opacity: .6;
}

@media only screen and (max-width: 1200px) {
    .footer-menu:not(.footer-menu-large) {
        width: auto;
    }
}

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

    /* Footer top */
    .footer-menu {
        width: 48%;
        margin: 0 0 5rem;
    }

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

    .footer-menu-large p {
        max-width: 55rem;
    }
}

@media only screen and (max-width: 750px) {
    /* Footer top */
    .footer-top {
        padding: 5rem 0 0;
    }

    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }
}

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

    /* Footer top */
    .footer-menu {
        margin: 0 0 3rem;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
    }

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}
