/* Teletek 5060 AB */

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 254, 225, 0;

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

    --accent-blue-color: 10, 152, 223;

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

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

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

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

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

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

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

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

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

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

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

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

/* Ovriga klasser */
.justify-center {
    justify-content: center;
}

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

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

/* Text och typsnitt
========================================================================== */
body {
    color: rgb(var(--white-color));
    font-family: 'Nunito', sans-serif;
    background-color: rgb(var(--black-color));
}

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(var(--primary-color));
}

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

.section-title::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 3rem;
    margin-right: 1rem;
    background-image: url(/assets/images/graphics/teletek-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

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

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

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

a {
    color: rgb(var(--primary-color));
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Listor */
.list-properties {
    padding: 0;
    margin-top: 0;
    list-style: none;
}

.list-properties li {
    display: flex;
    justify-content: space-between;
    padding-bottom: .3rem;
    margin-bottom: .3rem;
    font-size: 1.5rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}

.list-properties li span {
    padding: 0 .5rem;
}

.list-properties li span:nth-child(2) {
    white-space: nowrap;
}

/* List-check */
.list-check {
    padding: 0;
    list-style: none;
}

.list-check li::before {
    content: '\f00c';
    padding: 0 1rem 0 0;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
}

.list-check.black li::before {
    color: rgb(var(--black-color));
}

/* List-styled */
.list-styled {
    padding: 0;
    list-style: none;
}

.list-styled li::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1rem;
    margin-right: .5rem;
    background-image: url(/assets/images/graphics/teletek-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

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

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

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

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

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

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

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

.btn-primary-filled:hover,
.ContactSubmit:hover,
.GuestSubmit {
    color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: transparent;
    text-decoration: none;
}

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

.btn-black-filled:hover {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--black-color));
    background-color: transparent;
    text-decoration: none;
}

/* Arrow link */
.arrow-link {
    font-size: 1.9rem;
    font-weight: 600;
    color: rgb(var(--primary-color));
    cursor: pointer;
}

.arrow-link::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1rem;
    margin-left: .5rem;
    background-image: url(/assets/images/graphics/teletek-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .4s ease;
}

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

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

.circle-icon:hover {
    color: rgb(var(--white-color));
    text-decoration: none;
}

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Marquee */
.marquee {
    z-index: 1;
    position: relative;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-20%);
    }
}

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

    .marquee {
        animation: marquee 20s linear infinite;
    }

    @keyframes marquee {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-300%);
        }
    }
}

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

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

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

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

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

.card-item:hover {
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

/* Card 1-1 */
.card-1-1 .card-item {
    border-radius: 2rem;
    border: 1px solid rgb(var(--primary-color), .2);
    cursor: pointer;
}

.card-1-1 .small-title {
    transition: .3s ease;
}

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

/* Card 1-2 */
.card-1-2 .card-item {
    border-radius: 2rem;
    background-image: url(/assets/images/trianglar-600px.jpg);
    background-size: cover;
    box-shadow: 0 1rem 3rem rgba(var(--white-color), .1);
    transition: 0.2s ease-in-out;
}

.card-1-2 .card-item:hover {
    box-shadow: 0 1rem 3rem rgba(var(--white-color), .2);
}

.card-1-2 .card-item:hover .card-body {
    background-color: rgb(var(--gray-dark-color), .3);
}

.card-1-2 .badge {
    min-height: 3.8rem;
    padding: 5px 2rem;
    margin: 1rem -2rem 2rem;
}

.card-1-2 .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: rgb(var(--black-color), .5);
    border: 2px solid rgb(var(--gray-dark-color), .4);
    border-radius: 2rem;
    padding: 2rem;
    transition: 0.2s ease-in-out;
}

.card-1-2 .list-properties {
    flex-grow: 1;
}

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

.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-2-4 .text-small {
    font-size: 1.4rem;
}

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

/* Logos 1 */
.logos-1 .card-item {
    text-align: center;
}

.logos-1 img {
    width: 100%;
    max-height: 12rem;
    opacity: .5;
    transform: scale(.97);
    transition: 0.9s ease-in-out;
}

.logos-1 img:hover {
    opacity: 1;
    transform: scale(1);
}

@media only screen and (max-width: 868px) {
    .logos-1 img {
        max-height: 8rem;
    }
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

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

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

.split-image {
    width: 50%;
}

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

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

/* Image som en fyrkant */
.split-image.square {
    width: 40%;
    padding-bottom: 40%;
}

.split-image.square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.split-image.gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .7) 45%, rgba(var(--black-color), 1) 60%);
}

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

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

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

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

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

    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
        background: transparent;
    }

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

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

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

@media screen and (max-width: 590px) {
    .split-image {
        align-self: center;
    }
}

/* Header / Navigation 
========================================================================== */
/* Top header */
.top-header {
    display: flex;
    align-items: center;
    width: 100vw;
    height: 5rem;
    padding-top: 1rem;
    background-color: rgb(var(--black-color));
    border-bottom: 1px solid rgb(var(--primary-color));
    overflow: hidden;
}

header {
    background: transparent;
    padding: 0;
}

header .container {
    padding: 0 2rem;
}

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

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

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

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

/* Dropdown */
.TemplateMenu ul {
    background-color: rgb(var(--black-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;
}

/* Mobile */
.mobile-menu .TemplateMenu {
    padding-bottom: 10rem;
}

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

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

    /* Header logo */
    .header-logo a {
        font-size: 1.6rem;
    }

    /* 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(-1 * var(--menu-height));
    background: linear-gradient(180deg, rgba(var(--black-color), .65) 0%, rgba(var(--black-color), .65) 50%, rgba(var(--black-color), 1) 100%);
}

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

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

.top-section .section-title {
    font-size: 6rem;
    font-weight: 600;
}

.top-section .section-title::before {
    display: none;
}

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

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

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

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

/* Driftinformation 
========================================================================== */
.feed {
    width: 100vw;
    align-items: center;
    padding: 0 2rem;
}

.feed-item {
    display: flex;
}

.feed h2:not(.feed-item h2) {
    color: rgb(var(--primary-color));
    font-size: 1.9rem;
}

.feed-date {
    display: none;
}

.feed-entry p {
    font-size: 1.6rem;
    padding: 0 1rem;
}

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

    .section-split .split-image {
        margin-bottom: 3rem;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 40rem;
    padding-top: var(--menu-height);
    margin-top: calc(-1 * var(--menu-height));
    text-align: center;
    background: linear-gradient(180deg, rgba(var(--black-color), .65) 0%, rgba(var(--black-color), .65) 50%, rgba(var(--black-color), 1) 100%);
}

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

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

.hero .section-title::before {
    display: none;
}

/* Hero med video */
.hero.bg-video {
    min-height: 70vh;
    background: linear-gradient(180deg, rgba(var(--black-color), .65) 0%, rgba(var(--black-color), .65) 50%, rgba(var(--black-color), 1) 100%);
}

.hero.bg-video .section-title {
    font-size: 8rem;
}

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

    .hero .section-title,
    .hero.bg-video .section-title {
        font-size: 4rem;
    }
}

/* Formular - Bestall
========================================================================== */
body:not(.EditMode) .section-order {
    display: none
}

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

/* Formular */
.ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ContactForm p {
    font-weight: 700;
}

.ContactForm div {
    width: 49%;
}

.ContactForm .ContactFormMessage,
.ContactForm .radio-btn,
.ContactForm .radio-btn div {
    width: 100%;
}

.ContactForm .field-6,
.ContactForm .field-7,
.ContactForm .field-8 {
    display: none;
}

.ContactForm select {
    width: 100%;
    height: 4.4rem;
    border: 5px solid rgb(var(--white-color));
    outline: none;
}

.radio-btn {
    font-size: calc(var(--base-size)* .9);
}

.ContactForm .radio-btn div {
    display: flex;
    margin-bottom: 1rem;
}

input[type="radio"] {
    max-width: 1.2rem;
    height: 1.2rem;
    border: 2px solid rgb(var(--primary-color));
    background: rgb(var(--primary-color));
    border-radius: 50%;
    margin-right: 1rem;
}

input[type="radio"]:checked {
    background-color: rgb(var(--black-color));
}

.ContactSentMessage {
    padding: 2rem;
    background-image: none;
    background-color: rgb(var(--black-color));
    box-shadow: 0 1rem 3rem rgba(var(--white-color), .1);
}

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

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

/* ==========================================================================
Undersida: Bredband
========================================================================== */
.section-aardnet .logo-wrapper {
    max-width: 15rem;
    margin-bottom: 5rem;
}

.section-aardnet .section-title {
    font-size: 2.5rem;
}

.section-aardnet .section-title::before {
    height: 1.7rem;
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .section-block-wrapper {
    justify-content: space-between;
    align-items: flex-start;
}

.section-contact .col-1 {
    width: calc(100% - 45rem);
}

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

@media only screen and (max-width: 900px) {
    .section-contact .col-1,
    .section-contact .col-2 {
        width: 100%;
        margin-bottom: 2rem;
    }
}

/* ==========================================================================
Undersida: Driftinformation 
========================================================================== */
.Guestbook {
    max-width: 50rem;
    margin: 5rem auto;
}

#ctl00_contentPlaceHolder__B1_txtTiny_static div {
    margin-bottom: 3rem;
    font-size: 1.7rem;
}

.Guestbook .GuestbookForm textarea.textmessage {
    width: 100%;
    min-height: 20rem;
}

.news-feed main {
    background-color: rgb(var(--white-color));
    padding: 10rem 2rem 15rem;
}

.news-feed .GuestbookForm {
    width: 100%;
    max-width: 50rem;
    margin-right: calc(100% - 50rem);
    padding-bottom: 5rem;
}

.ResponsiveDesign .Guestbook .GuestbookForm {
    float: none;
}

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

.GuestBookHomePage,
.GuestBookEmail,
.GuestBookName,
.Guestbook .GuestbookForm input.textname {
    display: none;
}

.Guestbook .GuestbookForm textarea.textmessage {
    width: 100%;
    border-radius: 2px;
    min-height: 20rem;
}

.news-feed .Guestbook .GuestSubmit {
    width: 100% !important;
    max-width: none;
    padding: 1.6rem 4rem;
    margin: 0;
    background-color: rgb(var(--primary-color));
    border: 2px solid rgb(var(--primary-color));
    color: rgb(var(--black-color));
    display: block;
    border-radius: 4rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .1em;
    font-size: 1.4rem;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    font-family: inherit;
    height: auto !important;
}

.ResponsiveDesign .Guestbook .GuestbookList {
    margin-left: 0;
}

.ResponsiveDesign .Guestbook .GuestbookList h2 {
    display: none;
}

.GuestbookList .PageNumber {
    display: none;
}

@media only screen and (max-width: 550px) {
    .ResponsiveDesign .Guestbook {
        padding: 0 !important;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 5rem 5rem 0;
}

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

/* Footer top */
.footer-top {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgb(var(--gray-dark-color));
}

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

.footer li {
    display: inline-block;
    margin-right: 3rem;
}

.footer li,
.footer p,
.footer a:not(.circle-icon) {
    font-size: 1.4rem;
    color: rgb(var(--gray-light-color));
    text-decoration: none;
    transition: .2s ease;
}

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

.footer a:not(.circle-icon) em {
    margin-right: 1rem;
    color: rgb(var(--primary-color));
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.2rem;
    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;
    filter: invert();
    opacity: .7;
}

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

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

    /* Footer top */
    .footer-top li {
        display: block;
        margin: 5px 0;
    }
}

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

    /* Footer top */
    .footer-top {
        padding: 1.5rem 0;
    }

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