/* JH Byggmontage AB */

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

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 240, 119, 41;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 222, 224, 224;
    --gray-light-color: 247, 246, 246;
    --white-color: 255, 255, 255;

    --accent-light-blue-color: 204, 220, 227;

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

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1024;
    --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: 12rem 5rem;
}

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

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

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

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

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

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}

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

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

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

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

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

    .mb-5 {
        margin-bottom: 3rem;
    }
}

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

/* Rubriker */
.section-title {
    padding-bottom: .6em;
    font-size: 3.7rem;
    font-weight: 400;
    font-family: "Michroma", sans-serif;
}

.small-title {
    padding-bottom: .7em;
    font-size: 2.6rem;
    font-weight: 400;
    font-family: "Michroma", sans-serif;
}

.text-label {
    padding-bottom: .5em;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

a {
    font-size: var(--base-size);
}

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

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

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

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

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

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

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

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

    .ingress {
        font-size: calc(var(--base-size)* 1.1);
    }
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.2rem 2.5rem;
    margin: 1rem 2rem 0 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid;
    transition: all .4s ease;
}

.btn::after,
.arrow-link::after {
    content: ' \f061';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    color: rgb(var(--primary-color));
    transition: transform .4s ease;
}

.btn:hover::after,
.arrow-link:hover::after {
    transform: translateX(5px);
    transition: transform .4s ease;
}

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

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

.btn-primary-filled::after {
    color: rgb(var(--white-color));
}

/* Arrow link */
.arrow-link {
    margin: 1rem 2rem 0 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

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

.circle-icon:hover {
    background-color: rgb(var(--gray-dark-color));
}

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

/* Animation knapp */
.bouncing-btn::after {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(10px);
    }
    60% {
        transform: translateX(5px);
    }
}

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

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

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

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

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

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

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

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

/* Filter */
.filter-grayscale {
    filter: grayscale();
}

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

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

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

.parallax .section-block {
    min-height: 45rem;
    align-content: center;
    background-color: rgb(var(--gray-dark-color), .6)
}

/* Bilder */
.parallax-norge {
    background-image: url('/assets/images/norge-2000px.jpg');
}

.parallax-besiktning {
    background-image: url('/assets/images/by-the-book-2000px.jpg');
}

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

/* Halvsektionsparallax */
.parallax-half {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));
}

.parallax-half::after {
    content: '';
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 65%;
    top: 0;
    left: 0;
    background-attachment: fixed;
    background-size: cover;
}

.parallax-half .section-block {
    z-index: 2;
    position: relative;
    padding-top: 30rem;
    background-image: linear-gradient(to bottom, rgba(var(--primary-color), 0.7) 60%, rgb(var(--black-color)) 60%);
}

/* Bilder */
.parallax-bygg::after {
    background-image: url(/assets/images/jh-byggkran-2000px.jpg);
}

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

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

.cards-wrapper .card-item {
    margin-bottom: 4rem;
    text-decoration: none;
}

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

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

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

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

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

@media only screen and (max-width: 1124px) {
    /* Bredder */
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 3) - 2rem);
    }

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

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

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

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

/* Card 2-4 */
.card-2-4 .card-item {
    display: flex;
}

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

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 6rem;
}

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

.card-2-4 .card-body {
    flex: 1 1 0px;
    align-content: center;
    padding: 0 2rem 0 0;
}

.card-2-4 .small-title {
    font-size: var(--base-size);
}

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

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

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

/* Card 3-3 */
.card-3-3 .contact-item p,
.card-3-3 .contact-item a {
    display: block;
    font-size: calc(var(--base-size)* .9);
    padding-bottom: 1rem;
}

.card-3-3 .image-wrapper {
    height: 35rem;
}

@media only screen and (max-width: 520px) {
    .cards-wrapper.card-3-3.w-25 .card-item {
        max-width: 80%;
        margin: 0 auto 2rem;
    }
}

/* Card 3-5 */
.card-3-5 .card-item {
    position: relative;
    min-height: calc(70vh / 2 - 2rem);
}

.card-3-5 .card-item.mh-70 {
    min-height: 70vh;
}

.card-3-5 .card-item.mh-50 {
    min-height: calc(90vh / 2 - 2rem);
}

.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), .5);
    transition: all .4s ease;
}

.card-3-5 .card-body,
.card-3-5 .card-footer {
    z-index: 1;
    position: relative;
}

@media only screen and (max-width: 580px) {
    .card-3-5 .card-item.mh-70 {
        min-height: 50vh;
    }
}

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

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

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

    .split-content, 
    .split-image {
        width: 100%;
    }

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

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

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

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--primary-color));
    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);
}

/* Innehall */
.popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 2rem;
    bottom: 6rem;
    width: 100%;
    max-width: 35rem;
    max-height: calc(100vh - 12rem); 
    padding: 2rem 4rem 2rem 2rem;
    margin: 0;
    background: rgb(var(--white-color));
    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;
}

.popup-window a {
    text-decoration: none;
}

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

.popup-window a i {
    width: 1.6rem;
    margin-right: 5px;
    color: rgb(var(--primary-color));
}

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

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

/* Header / Navigation
========================================================================== */
header {
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

header:not(.scrolled) {
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

/* Logo */
.header-logo {
    margin: 0 auto 0 0;
    transition: .3s ease;
}

.header-logo img {
    max-width: 30rem;
}

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

header:not(.scrolled, .mobile-menu) .TemplateMenu > li > a:not(:hover) {
    color: rgb(var(--white-color));
}

.SubPage header:not(.scrolled, .mobile-menu) a:hover {
    color: rgb(var(--black-color));
}

/* Mobilmeny */
.mobile-menu .TemplateMenu {
    text-align: center;
}

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

/* Top-section
========================================================================== */
.top-section {
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--black-color), .2);
}

.top-section .section-block {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 13rem 4rem;
    background: linear-gradient(to bottom right, rgb(var(--white-color), .3) 0%, transparent 50%, rgb(var(--white-color), .1) 100%);
}

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

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

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

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

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

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

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

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

/* Tjanster
========================================================================== */
.section-services .section-block {
    padding: 1rem 0;
}

.section-services .card-3-5 .card-item:hover .image-wrapper::after {
    background: rgba(var(--primary-color), .7);
}

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

/* Text-divider
========================================================================== */
.section-text-divider .section-block {
    padding-top: 15rem;
    padding-bottom: 15rem;
}

.section-text-divider .section-title {
    font-size: 5.5rem;
}

.section-text-divider.bg-primary .arrow-link::after {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 1024px) {
    .section-text-divider .section-block {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

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

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

    .section-text-divider .section-title {
        font-size: 3.3rem;
    }
}

/* Referenser
========================================================================== */
.section-references .section-block {
    padding: 2rem 0;
}

.scroll-container {
    overflow: hidden;
}

.scroll-wrapper.cards-wrapper {
    margin: 0 16rem;
}

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

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

.scroll-wrapper.cards-wrapper .card-item[aria-hidden="true"] {
    opacity: 1;
}

/* Slick dots */
.scroll-wrapper .slick-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    width: auto;
    padding: 0;
    margin: 0;
    background-color: rgb(var(--white-color));
    border-radius: 2rem;
    transform: translateX(-50%);
}

.scroll-wrapper li.slick-active::before {
    opacity: 1;
    color: rgb(var(--primary-color));
    transition: all .2s ease;
}

/* Slick Arrow */
.scroll-wrapper .slick-arrow {
    position: absolute;
    top: -10.5rem;
    width: 5rem;
    height: 5rem;
    opacity: 1;
    background-color: rgb(var(--primary-color));
}

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

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

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

@media only screen and (max-width: 1300px) {
    .scroll-wrapper.cards-wrapper {
        margin: 0 4rem;
    }
}

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

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

@media only screen and (max-width: 820px) {
    .scroll-wrapper.cards-wrapper {
        margin: 0 1rem;
    }

    .scroll-wrapper .slick-arrow {
        width: 3.5rem;
        height: 3.5rem;
        top: unset;
        bottom: -5rem;
    }
    
    .scroll-wrapper .slick-prev {
        right: 5rem;
    }

    .scroll-wrapper .slick-arrow::after {
        font-size: 2rem;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    min-height: 52vh;
    padding-top: var(--menu-height);
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--primary-color), .7);
}

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

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

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

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

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

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

/* ==========================================================================
Undersida: Om oss
========================================================================== */
@media only screen and (max-width: 520px) {
    .section-team .text-block {
        text-align: center;
    }
}

/* ==========================================================================
Undersida: Vara tjanster
========================================================================== */
.section-offer {
    overflow: hidden;
}

.section-offer .section-block {
    padding: 8rem 5rem 5rem;
}

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

@media only screen and (max-width: 820px) {
    .section-offer .scroll-wrapper.cards-wrapper {
        margin: 0 1rem 4rem;
    }
}

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

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .col-0 {
    padding-right: 10rem;
}

.section-contact .col-1 {
    padding: 4rem;
    background-color: rgb(var(--accent-light-blue-color));
}

.ContactSubmit {
    margin: 0;
    border-radius: 0;
}

.ContactSentMessage {
    max-width: none;
    padding: 2rem;
    margin: 0 0 2rem;
    border-radius: 0;
    background-color: rgb(0, 124, 0);
    background-image: none;
}

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

@media only screen and (max-width: 1100px) {
    .section-contact .col-0 {
        width: 100%;
        padding-right: 0;
    }

    .section-contact .col-1 {
        width: 100%;
        padding: 6rem;
    }
}

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

/* ==========================================================================
Undersida: Feedback
========================================================================== */
.form-wrapper {
    padding: 4rem;
}

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

/* ==========================================================================
Footer
========================================================================== */
footer {
    padding: 0 5rem;
    background: rgb(var(--black-color));
}

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

.footer-logo-mobile {
    display: none;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 20%;
}

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

.footer-menu-large img {
    margin: auto;
}

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

.footer-top .btn-wrapper {
    margin-top: 2rem;
}

.footer-top .arrow-link {
    margin-right: 0;
}

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

.footer a:not(.circle-icon, .arrow-link):hover {
    color: rgb(var(--primary-color));
}

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

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgb(var(--white-color));
    margin-right: 2rem;
}

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

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

    .footer-top {
        justify-content: center;
        text-align: center;
        padding: 4rem 0 2rem;
    }

    .footer-menu-large {
        display: none;
    }

    .footer-logo-mobile {
        display: flex;
        max-width: 70vw;
        margin-bottom: 2rem;
    }

    .footer-menu {
        width: 100%;
    }

    .socials .footer-submenu {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }
}