/* Hantverkslokaler i Göteborg AB */

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

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

    /* 	Colors */
    --primary-color: 77, 92, 97;
    --primary-light-color: 192, 204, 202;

    --secondary-color: 255, 255, 242;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 130, 130, 130;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

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

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

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

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

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

.section-block-wrapper {
    max-width: var(--section-width);
}

/* Paddings */
.pl-3 .section-block,
.pl-3:not(.section-wrapper) {
    padding-left: 3rem;
}

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

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

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}

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

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

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

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

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

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

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

/* Ovriga klasser */
.block {
    display: block;
}

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

@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: "Plus Jakarta Sans", sans-serif;
}

/* Rubriker */
.text-label {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 1em;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    padding-bottom: .5em;
}

.small-title {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4;
    padding-bottom: .7em;
}

.ingress {
    font-size: 2.4rem;
    font-weight: 400;
}

/* Brodtext och lankar */
p,
li {
    font-weight: 400;
    color: rgb(var(--black-color));
}    
 
a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

.btn::after {
    content: ' \f061';
    display: inline-block;
    margin-left: 8px;  
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

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

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

.btn-primary-filled:hover,
.ContactSubmit:hover,
.ContactSubmit:focus {
    color: rgb(var(--primary-color));
    background: rgb(var(--secondary-color)); 
}

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

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

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

.btn-primary-border:hover {
    color: rgb(var(--primary-color));
    background: rgb(var(--secondary-color)); 
} 

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

.btn-white-filled:hover {
    color: rgb(var(--white-color));
    background-color: transparent;
} 

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

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

.btn-black {
    color: rgb(var(--white-color));
    border: 4px solid rgb(var(--black-color));
    background-color: rgb(var(--black-color));
    border-radius: 3rem;
    padding: 1rem;
}  
.btn-black:after {
 display: none;
}

.btn-black:hover {
    color: rgb(var(--primary-color));
    background: rgb(var(--secondary-color)); 
}

/* Arrow link */
.arrow-link {
    font-size: 2rem;
    color: rgb(var(--black-color));
    text-decoration: underline;
} 

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

.arrow-link:hover {
    font-weight: 600;
    text-decoration: underline;
} 

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

/* Arrow-btn */
.arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto;
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid rgb(var(--black-color), .2);
}

.arrow-btn i {
    font-size: 2.5rem;
    color: rgb(var(--black-color), .5);
}

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

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

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

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

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

.bg-white {
    background-color: rgb(var(--white-color));
}
.bg-brown{
	background: rgb(105, 102, 99) !important;
}

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

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

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

/* Grafiska element
========================================================================== */
/* Pil */
.arrow-primary-right {
    position: relative;
}

.arrow-primary-right::after {
    content: '\2192';
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: rgb(var(--primary-color));
    transform: translateY(-50%);
}

/* Borders */

.br-1{
    border-radius: 1rem;
}
.border-left-primary {
    border-left: .5rem solid rgb(var(--primary-color));
}

.border-left-primary-light {
    border-left: .5rem solid rgb(var(--primary-light-color));
}

@media screen and (max-width: 580px) {
    .border-left-primary {
        border-left: .5rem solid rgb(var(--primary-color));
    }
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    background: transparent; 
    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;
}

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

.cards-wrapper.w-100 {
    margin-left: 0;
    margin-right: 0;
}

.card-item {
    text-decoration: none;
    transition: all .3s ease;
}

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 980px) {
    .card-2-1 p.section-title {
        font-size: 3rem;
    }

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

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

.card-2-4 a.card-item:hover {
    background: rgb(var(--gray-light-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;
}

@media only screen and (max-width: 420px) {
    .card-2-4 .card-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-2-4 .card-body {
        padding: 1rem;
    }
}

/* Card 3-1 */
.card-3-1 .card-item {
    position: relative;
}

.card-3-1 .image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.card-3-1 .image-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-3-1 .card-item .logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    max-width: 15rem;
    max-height: 5rem;
    padding: 5px;
    background: rgb(var(--white-color), .6); 
} 

.card-3-1 .arrow-link {
    display: block;
}

/* Card 3-4 */
.card-3-4 .card-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
}

.card-3-4 .card-item.bg-white:hover {
    background: rgb(var(--white-color), .5);
} 

.card-3-4 .image-wrapper {
    width: 6rem;
    border-radius: 5px;
}

.card-3-4 .card-body {
    flex: 1 1 0px;
}

.card-3-4 .contact-item i {
    margin-right: 1rem;
}

@media only screen and (max-width: 580px) {
    .card-3-4 .card-item {
        flex-wrap: wrap;
    }

    .card-3-4 .card-body {
        flex: unset;
        width: calc(100% - 3rem);
        padding: 1rem 0 0 1rem;
    }
}

/* 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: 1300px) {
    .split-content {
        padding-top: 0;
        padding-bottom: 0;
    }
}

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

    .split-content {
        width: 100%;
        padding: 3rem;
    }

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

    /**/
    .split-wrapper.bg-primary.p-2 {
        padding: 2rem;
        background: rgb(var(--primary-color));
    }

    .split-wrapper.bg-primary.p-2 .split-content {
        padding-bottom: 2rem;
    }
}

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

}

/* Header / Navigation
========================================================================== */
header {
    padding: 0 5rem;
    background: rgb(var(--secondary-color)); 
}

header .container {
    max-width: var(--section-width);
    padding: 0;
    margin: 0 auto;
}

/* Logo */
.header-logo {
    margin: 0 auto 0 0;
}

.header-logo img {
    padding: 1.5rem 0;
}

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

.TemplateMenu>li>a:hover {
    color: rgb(var(--primary-color));
    text-decoration: underline;
}

.TemplateMenu > li:nth-child(1) {
    display: none;
}

/* Dropdown */
header:not(.mobile-menu) .TemplateMenu ul {
    width: 22rem;
    text-align: center;
    background: rgb(var(--secondary-color)); 
}

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

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

.header-cta-wrapper li {
    margin: 0 .5rem;
}

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

/* Mobilmeny */
.mobile-menu .container {
    height: var(--mobile-menu-height);
}

.mobile-menu .hamburger {
    margin: 0 -1rem 0 1rem;
}

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

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

    .header-cta-wrapper .btn {
        padding: .7rem 1rem;
        font-size: 1.4rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section .section-block {
    padding-top: 5rem;
}

.top-section .image-wrapper {
    height: 50vh;
    margin-bottom: 4rem;
}

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

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

/* Kontaktformular 
========================================================================== */
.section-contactform .section-block-wrapper {
    max-width: 80rem;
}
 
.section-contactform .ContactForm  {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
}

.section-contactform .ContactForm div {
    width: 32.333%;
}

.section-contactform .ContactForm .ContactFormMessage {
    width: 100%;
}

.ContactForm p {
    font-weight: 600;
}

.asterisk p:after {
    content: "*";
    font-size: 1.5rem;
    margin-left: 6px;
    color: red;
}

@media only screen and (max-width: 680px) {
    .section-contactform .ContactForm div {
        width: 100%;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 40rem;
    text-align: center;
    background-color: rgb(var(--black-color), .5);
}

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

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

.hero .logo {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 30rem;
    height: 5rem;
    padding: 1rem;
    margin: 2rem;
    border-radius: 3px;
    background: rgb(var(--white-color), .4);
} 

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

    /* .hero .section-title {
        font-size: 4rem;
    } */
}

/* Sektion CTA
========================================================================== */
.cta-wrapper {
    padding: 10rem 4rem 4rem;
    border-radius: 2rem;
}

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

/* ==========================================================================
Undersida: Kontorshotell / Vara fastigheter > Undersida
========================================================================== */

/* Info
========================================================================== */
.section-info .col-0 {
    width: calc(100% - 40rem);
}

.section-info .col-1 {
    align-self: flex-start;
    width: 40rem;
}

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

@media only screen and (max-width: 480px) {
    .section-info .col-1 .p-3 {
        padding: 2rem;
    }
}

.ad-wrapper {
    font-family: "Rethink Sans", sans-serif;
}

/* Bildspel
========================================================================== */
.section-gallery {
    overflow: hidden;
}

.section-gallery .card-item {
    margin: 0 1rem;
    transition: all .3s ease;
}

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

.EditMode .section-gallery .card-item {
    width: 20rem;
}

/* Slick Slider */
.section-gallery .slick-list {
    width: calc(100% - 3rem);
    overflow: visible;
}

/* Knappar */
.section-gallery .slick-arrow {
    z-index: 2;
    position: absolute;
    top: 50%;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background-color: rgb(var(--white-color));
    opacity: .95;
    transform: translateY(-50%);
}

.section-gallery .slick-prev {
    left: 4rem;
}

.section-gallery .slick-next {
    right: 4rem;
}

.section-gallery .slick-arrow::after {
    font-weight: 300;
}

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

    /* Slick Slider */
    .section-gallery .slick-list {
        width: calc(100% - 3rem);
    }
}

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

    /* Card */
    .section-gallery .card-item {
        margin: 0;
    }

    /* Pilar */
    .section-gallery .slick-arrow {
        width: 3.5rem;
        height: 3.5rem;
    }

    .section-gallery .slick-prev {
        left: 3rem;
    }

    .section-gallery .slick-next {
        right: 3rem;
    }
}

/* Kartor
========================================================================== */
.section-map {
    font-size: 0;
}

.section-map iframe {
    height: 40rem;
}

/* FAQ
========================================================================== */
.accordion-wrapper.w-50 {
    display: flex;
    flex-wrap: wrap;
}

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

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: rgb(var(--white-color));
    transition: .3s ease;
}

.accordion-item:hover,
.accordion-item.active {
    background: rgb(var(--primary-light-color));
}

.accordion-header {
    position: relative;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    text-decoration: none;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: "Font Awesome 5 Pro";
    color: rgb(var(--primary-color));
    transition: .5s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 2rem 2rem;
}

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

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

@media only screen and (max-width: 580px) {
    .accordion-header {
        padding: 1.5rem 3rem 1.5rem 1.5rem;
    }

    .accordion-header::after {
        right: .8rem;
    }

    .accordion-body {
        padding: 0 1.5rem 1.5rem;
    }
}

/* ==========================================================================
Undersida: Medarbetare
========================================================================== */
@media only screen and (max-width: 1200px) {
    .medarbetar-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
}

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

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .section-block-wrapper {
    justify-content: space-between;
}
.section-contact .col-1 {
    width: calc(100% - 50rem)
}

.section-contact .col-2 {
    width: 50rem;
    padding: 3rem;
    border-radius: 2rem; 
    background-color: rgb(var(--secondary-color));
}

.section-cta-form .ContactForm  {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-cta-form .ContactForm div {
    width: 49%;
}

.section-cta-form .ContactForm .ContactFormMessage {
    width: 100%;
}

.section-cta-form .ContactForm p {
    display: none;
}

@media only screen and (max-width: 980px) {
    .section-contact .col-1 {
        width: 100%;
    }
    
    .section-contact .col-2 {
        width: 100%;
        margin: 5rem auto 0;
    }
}

@media only screen and (max-width: 580px) {
    .section-contact .col-2 {
        width: 100%;
        padding: 2rem;
    }
    .section-cta-form .ContactForm div {
        width: 100%;
    }
}

/* ==========================================================================
Lediga lokaler
========================================================================== */
.section-iframe iframe {
    border-radius: 4px;
}

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

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

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

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

.footer .text-label {
    padding: 0 0 1rem;
    font-size: 2rem;
    color: rgb(var(--black-color));
    line-height: 1;
}

.footer-logo {
    max-width: 20rem;
    padding-bottom: 2rem;
}

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

.footer-top li,
.footer-top p,
.footer-top a {
    font-size: 1.6rem; 
    font-weight: 600;
    color: rgb(var(--black-color), .6);
}

.footer a:hover {
    text-decoration: none;
    color: rgb(var(--black-color));
}

/* Social Menu */
.social-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgb(var(--black-color), .5);
}

.social-menu li {
    margin: 1rem 1rem 1rem 0;
}

.social-menu a {
    font-size: 1.4rem;
    color: rgb(var(--black-color));
    padding: 5px 10px;
    border-radius: 2rem;
    line-height: 1;
    text-decoration: none;
    transition: all .3s ease;
}

.social-menu a:hover {
    background-color: rgb(var(--black-color));
    color: rgb(var(--white-color));
    transition: all .3s ease;
}

/* 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;
    color: rgb(var(--black-color), .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: 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%;
    }
}

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

    .footer-top {
        padding: 5rem 0;
    }

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

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