/* Dala Metallpartier AB */

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css');

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 0, 50, 235;
    --secondary-color: 115, 224, 255;

    --accent-green-color: 117, 224, 136;
    --accent-peach-color: 252, 139, 121;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 130, 130, 130;
    --gray-light-color: 243, 241, 237;
    --white-color: 255, 255, 255;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 150rem;

    /* 	Typography */
    --base-size: 1.6rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 1210;
    --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-wrapper {
    overflow: hidden;
}

.section-block {
    padding: 10rem 5rem;
}

/* Paddings */
.p-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem;
}

.p-3 .section-block,
.p-3:not(.section-wrapper) {
    padding: 3rem;
}
.p-4 .section-block,
.p-4:not(.section-wrapper) {
    padding: 4rem;
}
.p-5 .section-block,
.p-5:not(.section-wrapper) {
    padding: 5rem;
}
.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}
.pt-2 .section-block,
.pt-2:not(.section-wrapper) {
    padding-top: 2rem;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 0;
}

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) { 
    padding-bottom: 0;
}

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}
.mb-12{
    margin-bottom: 12rem;
}
.mt-3 {
    margin-top: 3rem;
}

/*Bredder*/
.mw-100 .section-block-wrapper {
    width: 100%
}
.mw-40{
    max-width: 40rem;
}
.mw-900 .section-block-wrapper,
.mw-900:not(.section-wrapper) {
    max-width: 90rem;
}

@media only screen and (max-width: 1024px) {
    .section-block,
    .p-5 .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: 'Manrope', sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: rgb(var(--primary-color));
}

.section-title {
    padding-bottom: .5em;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Brodtext och lankar */
p,
li {
    color: rgb(var(--gray-dark-color));
}

.ingress {
    font-size: calc(var(--base-size) * 1.1);
}

.text-small {
    font-size: 1.4rem;
}

/* List-check */
.list-check {
    padding: 0;
    list-style: none;
}

.list-check li::before {
    content: '\f00c';
    padding: 0 1rem 0 0;
    color: rgb(var(--accent-peach-color));
    font-weight: 700;
    font-size: .9rem;
    font-family: 'Font Awesome 5 Pro';
}

/* List pills */
.list-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 200rem;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

.list-pills li {
    display: flex;
    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(--accent-peach-color));
}

.list-pills li::before {
    content: '\f00c';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    margin-right: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    font-family: 'Font Awesome 5 Pro';
    border-radius: 50%;
    color: rgb(var(--accent-peach-color));
    background: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .list-pills li {
        width: 100%;
        padding: 1rem;
        font-size: 1.4rem;
    }
}

/* Ovriga klasser */
.text-block {
    max-width: 70rem;
}

.text-block-center {
    max-width: 85rem;
    margin-left: auto;
    margin-right: auto;
}

.text-bold {
    font-weight: 700;
}

.text-italic {
    font-style: italic;
}

.text-center {
    text-align: center;
}
.jusify-center{
    justify-content: center;
    margin: auto;
}

@media only screen and (max-width: 1200px) {
    .section-title {
        font-size: 3.8rem;
    }

    .small-title {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-title {
        font-size: 2.5rem;
    }

    .small-title {
        font-size: 2rem;
    }
}

/* 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: 3px;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

.btn-secondary-filled {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

.btn-secondary-filled:hover,
.ContactSubmit {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
} 

.btn-green-filled {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--accent-green-color));
    background-color: rgb(var(--accent-green-color));
}

.btn-green-filled:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--accent-green-color));
    background-color: rgb(var(--accent-green-color));
} 

.btn-peach-filled {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--accent-peach-color));
    background-color: rgb(var(--accent-peach-color));
}

.btn-peach-filled:hover {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--accent-peach-color));
    background-color: rgb(var(--accent-peach-color));
} 

.ContactSubmit:hover {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

/* Arrow link */ 
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    color: rgb(var(--accent-peach-color));
    transition: .4s ease;
}

.arrow-link:hover {
    color: rgb(var(--accent-green-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;
}

/* Lank med ikon */
.icon-links {
    padding: 5px 10px;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
    line-height: 1;
    border-radius: 2rem;
    text-decoration: none;
    transition: all .3s ease;
}

.icon-links:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--black-color));
}

@media only screen and (max-width: 580px) {
    .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-gray-dark {
    background-color: rgb(var(--gray-dark-color));
}

.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}
.bg-primary {
    background-color: rgb(var(--primary-color));
}
.bg-secondary {
    background-color: rgb(var(--secondary-color));
}



.bg-white {
    background-color: rgb(var(--white-color));
}
.bg-white-trans {
    background-color: rgb(var(--white-color), .9);
}
.bg-accent-green-color {
    background-color: rgb(var(--accent-green-color));
}
.bg-accent-peach-color {
    background-color: rgb(var(--accent-peach-color));
}

/* Borders */
.border-bottom-peach {
    border-bottom: 4px solid rgb(var(--accent-peach-color));
}

/* Text */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-secondary {
    color: rgb(var(--secondary-color));
}

.text-green {
    color: rgb(var(--accent-green-color));
}
.text-peach {
    color: rgb(var(--accent-peach-color));
}

.text-white {
    color: rgb(var(--white-color));
}

/* Grafiska element
========================================================================== */
/* Object position */
.of-wrapper img.op-50-10 {
    object-position: 50% 10%;
}

.of-wrapper img.op-50-30 {
    object-position: 50% 30%
}

/* Box shadow */
.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}


/* Bakgrundsbilder och videos
========================================================================== */
.bg-image,
.bg-crossfade {
    position: relative;
    overflow: hidden;
}

.bg-image-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Crossfade */
.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: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
 
.parallax .section-block {
    display: flex;
    align-items: center;
    min-height: 50rem;
    background-color: rgb(var(--black-color), .6);
}

.parallax-tunnel {
    background-image: url('/assets/images/gallery/tunnel-2000px.jpg');
}

@media only screen and (max-width: 980px) {
    .parallax .section-block {
        min-height: 30rem;
    }
}

@media only screen and (hover:none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

.card-item {
    text-decoration: none;
    transition: .3s ease;
}

/* Bredder */
.cards-wrapper.w-20 .card-item {
    width: calc((100% / 5) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-25 .card-item {
    width: calc((100% / 4) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-50 .card-item,
.cards-wrapper .card-item.w-50 {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-100 .card-item {
    width: 100%;
    margin: 1rem 0;
}

@media only screen and (max-width: 1600px) {
    .cards-wrapper.w-20 .card-item {
        width: calc((100% / 4) - 2rem);
    }
}

@media only screen and (max-width: 1300px) {
    .cards-wrapper.w-20 .card-item,
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 3) - 2rem);
    }
}

@media only screen and (max-width: 1050px) {
    .cards-wrapper.w-20 .card-item,
    .cards-wrapper.w-25 .card-item,
    .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-20 .card-item,
    .cards-wrapper.w-25 .card-item,
    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-50 .card-item,
    .cards-wrapper .card-item.w-50 {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 1-1 */
.card-1-1 .card-item {
    min-height: 20rem;
}

.section-glaskonsult .card-1-1 .card-body {
 position: relative;
top: 50%;
transform: translateY(-50%);
}
/* Card 2-1 */
.card-2-1 a.card-item:hover {
    background: rgb(var(--secondary-color), .8);
}

.card-2-1 .card-header {
    margin-bottom: 2rem;
    font-size: 5rem;
}
/* Card 2-4 */
.card-2-4 .card-item {
    display: flex;
    align-items: center;
}

.card-2-4 a.card-item:hover {
    background: rgb(var(--white-color));
}

.card-2-4 a.card-item:hover .text-white {
    color: rgb(var(--black-color));
}

.card-2-4 a.card-item:hover i.text-white {
    color: rgb(var(--accent-green-color));
} 

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
}

.card-2-4 .card-header i {
    font-size: 3rem;
}

.card-2-4 .card-body {
    flex: 1 1 0px;
    padding: 0 2rem;
}

/* Card 3-3 */
.card-3-3 .image-wrapper {
    height: 40rem;
}


/* Card 3-6 */
.card-3-6 .card-item {
    position: relative;
    padding: 30rem 2rem 2rem;
}

.card-3-6.w-20 .card-item {
    padding: 20rem 2rem 2rem;
}

.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: rgba(var(--black-color), .5);
    transition: .3s ease-in-out;
}

.card-3-6 a.card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), .6);
}

.card-3-6 .card-body,
.card-3-6 .card-link {
    z-index: 1;
    position: relative;
    pointer-events: none;
}

.card-3-6 .card-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-3-6 .card-link .small-title {
    font-size: 2rem;
}

.card-3-6 .card-link .arrow-wrapper {
    font-size: 1.6rem;
}

/* Loggor */
.logos-1 .card-item {
    padding: 1rem;
    border-radius: 3px;
    background: rgb(var(--white-color));
}

.logos-1 .image-wrapper {
    max-width: 19rem;
    height: 8rem;
    margin: 0 auto;
}

/* 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;
}

/* Bredder */
.split-wrapper .w-30 {
    width: 30%;
}

.split-wrapper .w-70 {
    width: 70%;
}

@media screen and (max-width: 1300px) {
    .split-content {
        padding: 3rem;
    }

    /* Bredder */
    .split-wrapper .w-30,
    .split-wrapper .w-70 {
        width: 50%;
    }
}

@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%;
    }

    /* Centrera content */
    .split-wrapper .align-center {
        align-self: flex-start;
    }

    /* Bredder */
    .split-wrapper .w-30,
    .split-wrapper .w-70 {
        width: 100%;
    }
}

/* Header / Navigation
========================================================================== */
header {
    border-bottom: 1px solid rgb(var(--gray-light-color));
    background: rgb(var(--white-color));
}

header:not(.scrolled) {
    border: none;
    background: transparent;
}

/* Top header */
.top-header {
    width: 100%;
    max-width: var(--section-width);
    height: 4rem;
    margin: 0 auto;
    border-bottom: 1px solid rgb(var(--gray-light-color));
    overflow: hidden;
    transition: .3s ease;
}

.top-header ul {
    display: flex;
    justify-content: flex-end;
    padding: .5rem 0;
    margin: 0;
    list-style: none;
}

.top-header a {
    padding: 0 1rem;
    font-size: 1.4rem;
    text-decoration: none;
    transition: .2s ease;
}

header:not(.scrolled) .top-header a {
    color: rgb(var(--white-color));
}

.top-header a:hover {
    color: rgb(var(--primary-color));
}

.top-header em,
.top-header i {
    margin-left: 5px;
}

/* Logo */
.header-logo {
    flex: 1 1 0px;
}

.header-logo a {
    display: inline-block;
    width: 30rem;
    height: var(--menu-height);
    background-image: url(/assets/images/logos/dalametall-logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

header:not(.scrolled, .active-menu) .header-logo a {
    background-image: url(/assets/images/logos/dalametall-white-logo.png);
}

/* Nav */
.TemplateMenu a {
    font-weight: 600;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
}

header:not(.scrolled, .active-menu) .TemplateMenu > li:not(.active) > a:not(:hover) {
    color: rgb(var(--white-color));
}

header:not(.scrolled, .active-menu) .TemplateMenu li.active > a,
header:not(.scrolled, .active-menu) .TemplateMenu a:hover {
    color: rgb(var(--secondary-color));
}

/* 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;
}

/* Mobilmeny */
.mobile-menu .header-logo a {
    height: var(--mobile-menu-height);
}

/* EditMode */
.EditMode.WebbEssDIY header {
    position: relative;
    top: -30px !important;
}

.EditMode .TemplateMenu ul {
    width: 25rem;
}

.EditMode .TemplateMenu>li>ul>li>ul {
    right: -25rem;
}

@media only screen and (max-width: 1400px) {
    /* Header logo */
    .header-logo a {
        width: 20rem;
    }
} 

@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: 100vh;
    margin-top: calc(var(--menu-height) * -1 - 4rem);
    background: rgb(var(--black-color), .6);
}

.top-section .section-block {
    width: 100%;
}

.top-section .text-block {
    max-width: 85rem;
}

.top-section .section-title {
    font-size: 4.5rem;
    font-weight: 600; 
}

.top-section .btn-primary-filled:hover {
    color: rgb(var(--white-color));
}

/* Bouncing arrow */
.bouncing-arrow {
	position: absolute;
    right: 4rem;
    bottom: 2rem;
	transform: translatex(-50%);
	animation: bounce 2s infinite;
}

.bouncing-arrow i {
	font-size: 4rem;
	font-weight: 500;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-30px); }
	60% { transform: translateY(-15px); }
}

@media only screen and (max-width: 1200px) {
    .top-section .section-title {
        font-size: 3.5rem;
    }
} 

@media only screen and (max-width: 750px) {
    .top-section .section-title {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    min-height: 50rem;
    margin-top: calc(var(--menu-height) * -1 - 4rem);
}

.hero.bg-image {
    background-color: rgb(var(--black-color), .5);
}

.hero .section-block {
    width: 100%;
    padding-bottom: 5rem;
}

.hero .section-title {
    font-size: 4.5rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .hero {
        min-height: 35rem;
    }

    .hero .section-title {
        font-size: 3rem;
    }
} 

/* Hero-split
========================================================================== */
.hero-split {
    background: rgb(var(--gray-light-color));
}

.hero-split .split-image {
    min-height: 70vh;
}

@media only screen and (max-width: 980px) {
    .hero-split .split-content {
        max-width: none;
        padding: 8rem 3rem;
    }

    .hero-split .split-image {
        min-height: 20rem;
    }
}

@media only screen and (max-width: 580px) {
    .hero-split .split-content {
        max-width: none;
        padding: 5rem 2rem;
    }
}

/* CTA 
========================================================================== */
.section-cta {
    background-image: url('/assets/images/gallery/tunnel-2000px.jpg');
}

/* ==========================================================================
Undersida: Om foretaget
========================================================================== */
.section-card-text .section-block-wrapper {
    align-items: center;
}

.section-card-text .col-0 {
    width: 50rem;
}

.section-card-text .col-1 {
    width: calc(100% - 50rem);
}

.section-card-text .card-3-6 .card-item {
    padding: 30rem 2rem 2rem;
}

@media only screen and (max-width: 1024px) {
    .section-card-text .section-block-wrapper {
        flex-direction: column-reverse;
    }

    .section-card-text .col-0 {
        width: 50rem;
        margin-top: 3rem;
    }
    
    .section-card-text .col-1 {
        width: 100%;
    }
}

/* ==========================================================================
Undersida: Referenser > Referensundersida
========================================================================== */

/* Header / Navigation
========================================================================== */
.sub-reference header:not(.scrolled) {
    border-bottom: 1px solid rgb(var(--gray-light-color));
    background: rgb(var(--white-color));
}

.sub-reference header:not(.scrolled) .top-header a,
.sub-reference header:not(.scrolled, .active-menu) .TemplateMenu > li:not(.active) > a:not(:hover) {
    color: rgb(var(--black-color));
}

.sub-reference header:not(.scrolled, .active-menu) .header-logo a {
    background-image: url(/assets/images/logos/dalametall-logo.png);
}

/* Referensbilder
========================================================================== */
.gallery-wrapper .card-item {
    height: 25rem;
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .col-1 {
    padding-right: 10rem;
}

.section-contact .col-2 {
    padding: 3rem;
    background: rgb(var(--white-color));
}

@media only screen and (max-width: 980px) {
    .section-contact .col-1 {
        padding-right: 0;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    background: rgb(var(--gray-light-color));
}

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 0;
}

.footer-menu {
    width: 20%;
    margin: 0 0 3rem;
}

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
    color: rgb(var(--primary-color)); 
}

.footer-submenu {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a {
    text-decoration: none;
}

.footer a:not(.icon-links):hover {
    text-decoration: none;
    color: rgb(var(--primary-color));
}

/* Social Menu */ 
.social-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgb(var(--accent-peach-color));
}

.social-menu li {
    margin: 1rem 1rem 1rem 0;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
}

/* 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 {
        padding: 0 3rem;
    }

    /* Footer top */
    .footer-menu {
        width: 33.333%;
    }

    .footer-menu-large {
        width: 100%;
    }

    .footer-menu-large p {
        max-width: 55rem;
    }
}

@media only screen and (max-width: 750px) {
    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .footer {
        padding: 0 2rem;
    }

    /* Footer top */
    .footer-top {
        padding: 5rem 0 0;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
    }

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}
