/* ArtAir AB */

/* Typsnitt */
@import url("https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap");

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

    /* 	Colors */
    --primary-color: 0, 237, 118;
    --secondary-color: 0, 255, 236;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1050;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 0, 0, 0;
    --menu-color: rgb(255, 255, 255);
}

/* Grafiska Element
========================================================================== */

.border-bottom{
border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Layout
========================================================================== */
.section-block {
    padding: 13rem 4rem;
}

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

/* Specifika paddings */
.p-4{
    padding: 4rem !important;
}
.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}

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

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

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

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

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

/* Specifika bredder */
.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

.mw-1500 .section-block-wrapper {
    max-width: 150rem;
}

.mw-none .section-block-wrapper {
    max-width: none;
}

/* clippaths */
.clip-left .section-block {
    -webkit-clip-path: polygon(0% 5rem, 5rem 0%, 100% 0%, 100% 101%, 0% 101%);
    clip-path: polygon(0% 5rem, 5rem 0%, 100% 0%, 100% 101%, 0% 101%);
}

.clip-right .section-block,  .clip-right {
    -webkit-clip-path: polygon(
        0% 0%,
        calc(100% - 5rem) 0%,
        100% 5rem,
        100% 100%,
        0% 100%
    );
    clip-path: polygon(
        0% 0%,
        calc(100% - 5rem) 0%,
        100% 5rem,
        100% 100%,
        0% 100%
    ); 
}

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

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

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

/* Rubriker */
.text-label {
    position: relative;
    padding-bottom: 0.9em;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    padding-bottom: 0.3em;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.2;
    color: rgb(0, 0, 0);
}

.sub-title {
    padding-bottom: 0.3em;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: rgb(0, 0, 0);
}

.small-title {
    padding-bottom: 0.5em;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: inherit;
    color: rgb(0, 0, 0);
}

/* Brodtext och lankar */
p {
    font-weight: 400;
    color: #333;
}

a {
    color: rgb(var(--primary-color));
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: none;
}

/* ovriga klasser */
.text-bold {
    font-weight: 700;
}

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

.text-block {
    max-width: 75rem;
    margin: 0 auto;
}

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

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

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

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

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

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

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

/* Knappar */
.btn {
    display: inline-block;
    min-width: 20rem;
    padding: 1.3rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn::after {
    content: " \2023";
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.4s ease;
}

.btn:hover::after {
    transform: translateX(1rem);
    transition: transform 0.4s ease;
}

.btn-primary-filled {
    color: rgb(0, 0, 0);
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

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

.btn-white-filled {
    color: rgb(0, 0, 0);
    border: 1px solid rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
}

.arrow-link::after {
    content: " \f178";
    display: inline-block;
    margin-left: 0.5rem;
    font-family: "Font Awesome 5 Pro";
    font-size: 0.7em;
    transition: transform 0.4s ease;
}

.arrow-link:hover::after {
    transform: translateX(1rem);
    transition: transform 0.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(--black-color));
    background-color: rgb(var(--secondary-color));
}

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

/* Bouncing arrow */
.bouncing-arrow {
    position: absolute;
    z-index: 1;
    right: 5rem;
    bottom: -1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50% 50% 0 0;
    background-color: rgb(255, 255, 255);
}

.bouncing-arrow::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0.5rem;
    left: 0.5rem;
    width: 5rem;
    height: 5rem;
    background-color: rgb(var(--primary-color));
    border-radius: 50%;
}

.bouncing-arrow i {
    color: rgb(0, 0, 0);
    font-size: 3rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

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

    40% {
        transform: translateY(-1rem);
    }

    60% {
        transform: translateY(-0.5rem);
    }
}

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

    .btn-wrapper {
        flex-direction: column;
    }

    .btn-wrapper a {
        margin: 1rem 0;
    }
}

/* Farger
========================================================================== */
/* Bakgrundsfarger */
.section-wrapper {
    background-color: rgb(255, 255, 255);
}

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

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

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

.bg-black {
    background-color: #000000 !important;
}

.bg-white .section-block, .bg-white  {
    background-color: #fff;
}

.bg-darkgray {
    background-color: #838383;
}

.bg-black-white .section-block {
    background-image: linear-gradient(
        to bottom,
        rgb(0, 0, 0) 50%,
        rgb(255, 255, 255) 50%
    );
}

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

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

.text-white {
    color: #ffffff;
}

.text-gray {
    color: #8d8c8c;
}

.text-muted {
    color: #ffffffb3;
}

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

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

.card-item.center {
    text-align: center;
    position: relative;
}

/* Specifika bredder */

.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 {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

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

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

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

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

/* cards-3 */
.cards-3 .card-item {
    margin: 0 2rem 2rem;
    padding: 4rem;
}

.cards-3 .card-item .small-title {
    color: #fff;
}

.cards-3 .card-item .small-title.border::before,
.cards-3 .card-item .small-title.border::before {
    content: "";
    position: relative;
    right: 1.3rem;
    display: inline-block;
    height: 0.1rem;
    width: 4rem;
    margin-bottom: 0.15em;
    margin-left: 1.3rem;
    border-bottom: 2px solid rgb(var(--secondary-color));
}

/* ikonerna */
.icon-wrapper i {
    font-size: 0;
}

.icon-wrapper i::before,
.icon-wrapper i::after {
    font-size: 9rem;
    color: rgb(var(--primary-color));
}

.icon-wrapper {
    margin-bottom: 3rem;
}

.icon-wrapper.circle {
    width: 15rem;
    margin: 0 auto 3rem;
    height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0 2rem;
    border-radius: 50%;

    overflow: hidden;
}

.icon-wrapper.circle i::before,
.icon-wrapper.circle i::after {
    font-size: 6rem;
    color: #fff;
}

/* pilen */
.card-item.center:not(:last-child)::after {
    content: "\2192";
    position: absolute;
    font-size: 6rem;
    line-height: 1;
    right: 0;
    top: 20rem;
    transform: translateX(50%);
    color: #fff;
}

@media only screen and (max-width: 980px) {
    .cards-3 .card-item,
    .cards-3-wrapper .card-item.center {
        margin: 2rem 0;
    }

    .card-item.center:not(:last-child)::after {
        display: none;
    }
}

/* Cards 7 */
.cards-7-wrapper .card-item {
    border-radius: 0.5rem;
    box-shadow: 0 1.5rem 3rem rgba(105, 85, 61, 0.27);
    background: #000;
    overflow: hidden;
}

.card-item-no-shaddow  {
    box-shadow: 0 1.5rem 3rem transparent !important;
}

.cards-7-wrapper .image-wrapper {
    height: 42rem;  
    filter: grayscale(1);
}

.cards-7-wrapper .image-wrapper img {
    object-position: center top;
}

.cards-7-wrapper .image-wrapper.op-c img {
    object-position: center center;
}

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

.cards-7-wrapper .text-footer {
    padding: 0rem 3rem 2rem;
}

.cards-7-wrapper .small-title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}

.cards-7-wrapper a,
.cards-7-wrapper p {
    color: rgba(255, 255, 255, 0.9);
}

.cards-7-wrapper a:hover {
    color: rgb(var(--primary-color));
}
.not{
    background: white !important;
}
@media only screen and (max-width: 980px) {

    .cards-7-wrapper .image-wrapper.op-c img {
        object-position: top;
    }
}

@media only screen and (max-width: 500px) {
    .cards-7-wrapper .card-item {
        margin: 1rem 0rem;
    }
}

/* Cards 8 */
.cards-8 .card-item {
    display: flex;
    flex-direction: column;
    margin: 0 2rem;
    padding: 0;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.cards-8 .card-item:hover {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    cursor: pointer;
}

.cards-8 .card-item:hover .arrow-link::after {
    transform: translateX(1rem);
    transition: transform 0.4s ease;
}

.cards-8 .image-wrapper {
    height: 42rem;
}

.cards-8 .text-wrapper {
    z-index: 1;
    position: relative;
    flex-grow: 1;
    width: 85%;
    margin: -9rem auto 0;
    padding: 3.5rem;
    background-color: #111;
}

@media only screen and (max-width: 1300px) {
    .cards-8 .text-wrapper {
        width: 100%;
        padding: 3rem 2rem;
        margin: -0rem auto 0;
    }

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

@media only screen and (max-width: 800px) {
    .cards-8 .text-wrapper {
        margin: -10rem auto 0;
    }
}

/* Cards 15 */
.cards-15-wrapper .card-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 35rem;
    margin: 0 2rem 0 0;
}

.cards-15-wrapper .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

.cards-15-wrapper .image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
}

.cards-15-wrapper .card-item:hover .image-wrapper::after {
    background: rgba(0, 0, 0, 0.6);
}

.cards-15-wrapper .text-wrapper {
    z-index: 1;
    position: relative;
    padding: 3rem 2rem 2rem 3rem;
}

.cards-15-wrapper .small-title,
.cards-15-wrapper p {
    color: rgb(255, 255, 255);
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    width: 50%;
    padding: 6rem;
}

.split-image {
    width: 50%;
    max-height: 70rem;
}

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

/* Speciella margins */
.split-wrapper .mt--20 {
    margin-top: -8rem;
}

/* Speciella bredder */
.split-wrapper .w-60 {
    width: 60%;
}

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

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

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

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

    /* Speciella margins */
    .split-wrapper .mt--20 {
        margin-top: 0;
    }
}

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

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

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

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

/* Header / Navigation
========================================================================== */
header {
    background-color: transparent;
    transition: all 0.2s ease;
}

.SubPage header {
    background-color: rgb(0, 0, 0);
}

header.scrolled {
    background-color: rgb(0, 0, 0);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

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

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

/* nav */
nav.mainmenu a {
    font-weight: 600;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgb(255, 255, 255);
}

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

.TemplateMenu ul {
    background: #000;
}

/* Menystruktur */

.TemplateMenu > li:first-child {
    display: none;
}

.EditMode .TemplateMenu > li:first-child {
    display: inline-block;
}

@media screen and (max-width: 800px) {
.header-logo img {
    padding: 1rem 0;
    }

}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 100% !important;
    min-height: calc(100vh - 10rem);
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: calc(-1 * var(--menu-height));
}

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

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

.top-section h1 {
    font-family: 'Epilogue', sans-serif;
    font-size: 8rem;
    font-weight: 400;
    line-height: 1.3em;
    color: rgb(255, 255, 255);
    padding-bottom: 0.3em;
}

.top-section .btn:first-child {
    margin-right: 2rem;
}

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

@media only screen and (max-width: 1200px) {
    .top-section .section-block-wrapper {
        max-width: 75rem;
    }

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

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

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

    .top-section .btn:first-child {
        margin-right: 0rem;
    }
}

/* Sektion Om oss (.section-about) 
========================================================================== */

.section-about {
    background-color: rgba(0, 0, 0, 0.5);
    border-left: 10rem solid transparent;
}

.section-about .header-block {
    max-width: 120rem;
    margin: 0;
}

.section-about .text-block {
    margin: 0;
}

@media only screen and (max-width: 1500px) {
    .section-about {
        border-width: 5rem;
    }
}

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

@media only screen and (max-width: 580px) {
    .section-about {
        border-width: 1rem;
    }
}

/* Sektion Tjanster (.section-services)
========================================================================== */

.service-split .split-content {
    padding: 10rem 10rem 10rem;
}

@media only screen and (max-width: 1500px) {
    .service-split .split-content {
        padding: 10rem 7rem;
    }
}

@media only screen and (max-width: 1200px) {
    .service-split .split-content {
        padding: 7rem 4rem;
    }
}

@media only screen and (max-width: 1000px) {
    .section-services {
        background-image: none;
        background-color: rgb(0, 0, 0);
    }

    .service-split .split-content {
        padding: 5rem 2rem 4rem;
    }
}

/* Sektion Aktuellt (.section-news)
========================================================================== */
.section-news p {
    margin-bottom: 1.5rem;
    padding: 0;
}

/* Sektion Galleri (.section-gallery)
========================================================================== */
.section-gallery {
    overflow: hidden;
}

.section-gallery .of-wrapper img {
    object-fit: contain;
}

/* Sektion Projekt (section-projects)
========================================================================== */
.section-projects .card-item {
    padding: 3rem;
    background-color: #333;
}

.icon-wrapper i::before,
.icon-wrapper i::after {
    font-size: 5rem;
}

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

/* nav for undersidor */
.SubPage nav.mainmenu a {
    color: #fff;
}

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


/* hero -1 
========================================================================== */
.hero-1 {
    background-image: url(/assets/images/news.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-1 .section-block {
    background: linear-gradient(
        to left,
        rgba(227, 227, 227, 0.7) 70%,
        #000 40%
    );
    backdrop-filter: blur(10px);
    padding-left: 0;
}

.hero-1 .split-content {
    z-index: 1;
}

.hero-1 .btn-wrapper {
    flex-direction: column;
    transform: translateX(-10rem);
}

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

.hero-1 .btn {
    margin: 0.5rem 0;
    padding-left: 11rem;
    text-align: left;
}

@media screen and (max-width: 1000px) {
    .hero-1 .section-block {
        background: linear-gradient(
            to bottom,
            rgba(227, 227, 227, 0.7) 70%,
            #353839 40%
        );
    }

    .hero-1 .btn-wrapper {
        transform: translateY(6rem);
        justify-content: center;
    }

    .hero-1 .btn {
        padding-left: 7rem;
    }
}

@media screen and (max-width: 780px) {
    .hero-1 .btn {
        padding-left: 3rem;
    }
}

@media screen and (max-width: 600px) {
    .hero-1 .btn {
        max-width: 90%;
        margin: 1%;
    }

    .hero-1 .split-content {
        padding: 0 3rem 0;
        max-height: 22rem;
    }

    .hero-1 .btn-wrapper {
        transform: translateY(3rem);
    }
}

@media screen and (max-width: 320px) {
    .hero-1 .split-content {
        padding: 0 1rem 0;
        max-height: 15rem;
    }

    .hero-1 .btn-wrapper {
        transform: translateY(1rem);
    }
}

/* ==========================================================================
Undersida: Projekt och kunder
========================================================================== */

.projects .card-item {
    padding: 4rem;
}

/* ==========================================================================
Undersida: Produkter
========================================================================== */
.section-product .split-content {
    display: flex;
}

.section-product .split-wrapper {
    padding-bottom: 5rem;
}

.section-product .split-image {
    max-height: 70rem;
    clip-path: polygon(
        0% 0%,
        calc(100% - 5rem) 0%,
        100% 5rem,
        100% 100%,
        0% 100%
    );
}

.split-content .image {
    width: 70rem;
}

@media only screen and (max-width: 800px) {
    .section-product .split-content {
        display: block;
    }

    .split-content .image {
        width: 80%;
        margin-top: 2rem;
    }
}


/* Undersida section-job */

.section-job {
    background-color: rgba(0, 0, 0, 1);
    border-left: 10rem solid transparent;
}

.section-job .text-block {
    margin: 0;
}

@media only screen and (max-width: 1500px) {
    .section-job {
        border-width: 5rem;
    }
}

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

@media only screen and (max-width: 580px) {
    .section-job {
        border-width: 1rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */

.footer {
    background-color: #fff;
    border-right: 10rem solid rgb(255, 255, 255);
}

.footer .container {
    -webkit-clip-path: polygon(
        0% 0%,
        calc(100% - 5rem) 0%,
        100% 5rem,
        100% 100%,
        0% 100%
    );
    clip-path: polygon(
        0% 0%,
        calc(100% - 5rem) 0%,
        100% 5rem,
        100% 100%,
        0% 100%
    );

    background-color: rgb(0, 0, 0);
}

.footer-container {
    max-width: 160rem;
    padding: 0 2rem;
    margin: 0 auto;
}

.footer a:hover {
    color: rgb(255, 255, 255);
}

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 1.4rem;
}

.footer-bottom em::before {
    font-size: 1.4rem;
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: flex-end;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
    filter: brightness(0) invert(1);
}


@media only screen and (max-width: 1500px) {
    .footer {
        border-width: 5rem;
    }
}

@media only screen and (max-width: 1024px) {
    .footer {
        border-width: 3rem;
    }
    /* Footer top */
    .footer-menu {
        width: 48%;
    }

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

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

@media only screen and (max-width: 750px) {
    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 2rem 0;
    }

    .footer-bottom .socials {
        margin-bottom: 1.5rem;
    }
}

@media only screen and (max-width: 580px) {
    .footer {
        border-width: 1rem;
    }
}

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

    /* Footer bottom */
    .footer-bottom {
        padding: 2rem 0;
    }
}

