/* Circle of Trust Sweden AB */

/* Typsnitt Nunito Sans (brodtext, lankar) Noto Sans Mono (rubriker) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@400;700&family=Nunito+Sans:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap');

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

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

    /* 	Colors */
    --primary-color: 1, 46, 64;
    --secondary-color: 211, 217, 48;

    --black-color: 2, 2, 2;
    --white-color: 255, 255, 255;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1400;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 255, 255, 255;
}

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

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

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

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

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

.pb-4{
    padding-bottom: 4rem !important;
}

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

.mw-80{
    max-width: 90rem;
}


@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: 'Nunito Sans', sans-serif;
}

/* Rubriker */
.text-label {
    position: relative;
    padding-bottom: .9em;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.section-title {
    padding-bottom: .5em;
    font-family: 'Noto Sans Mono', monospace;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: rgb(17, 17, 17);
}

.small-title {
    padding-bottom: .5em;
    font-family: 'Noto Sans Mono', monospace;
    font-size: 2.7rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgb(17, 17, 17);
}

/* Brodtext och lankar */
p {
    font-weight: 400;
    color: rgb(51, 51, 51);
}

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

.title {
    font-weight: 600;
    font-style: italic;
    padding-bottom: .5rem;
}

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

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

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


/* Listor */
.list-pills {
    display: flex;
    flex-wrap: wrap;
    max-width: 100rem;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

.list-pills li {
    flex-wrap: wrap;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    margin: .5rem;
    font-size: 1.5rem;
    border-radius: 4rem;
    color: rgb(var(--black-color)); 
}

.list-pills.background li {
    background-color: rgb(var(--primary-color), .2);
}

.list-pills.background {
    justify-content: center;
}

.list-pills li::before {
    content: '\f00c';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    font-family: 'Font Awesome 5 Pro';
    border-radius: 50%;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

@media only screen and (max-width: 580px) {
    .list-pills li {
        width: 100%;
        padding: 1rem;
    }

    .list-pills.text-center {
        text-align: left;
    }
}

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

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

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

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

/* 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.4rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 3px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.btn-small {
    min-width: unset;
    padding: .7rem 1.5rem;
}

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

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

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

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

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

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

.btn-secondary-border:hover {
    color: rgb(17, 17, 17);
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

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

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

.arrow-link::after {
    content: ' \f178';
    display: inline-block;
    margin-left: .5rem;
    font-family: 'Font Awesome 5 Pro';
    font-size: .7em;
    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: 4rem;
    height: 4rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

.circle-icon:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(var(--secondary-color));
}

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

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    left: 50rem;
    bottom: -2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50% 50% 0 0;
    background: #FFF;
    transform: translateX(-50%);
}

.bouncing-arrow {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
}

.bouncing-arrow i {
    color: #FFF;
    font-size: 3rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    40% {
        transform: translateY(-7px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@media only screen and (max-width: 1000px) {
    .bouncing-arrow-wrapper {
        width: 4rem;
        height: 4rem;
        right: 3rem;
        bottom: -1rem;
    }

    .bouncing-arrow {
        width: 3.4rem;
        height: 3.4rem;
    }

    .bouncing-arrow i {
        font-size: 2rem;
    }
}

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

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

.bg-primary-light {
    background-color: rgba(var(--primary-color), .2);
}

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

.bg-gray {
    background-color: rgb(242, 242, 242);
}

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

.bg-light {
    background-color: rgb(245, 241, 227);
}

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

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

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

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

.text-muted {
    color: rgba(255, 255, 255, .7);
}

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

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

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

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

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

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

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

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

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

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

/* Cards 2 */

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

.cards-2 .card-item {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.2s ease-in-out;
    padding: 2rem;
}


.cards-2 .icon-wrapper {
    margin:0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
}

.cards-2 .icon-wrapper i {
    color: rgb(var(--secondary-color));
    font-size: 3rem;
}

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

.cards-2 .btn-wrapper {
    margin: auto 0 0;
}

/* Logos 1 */
.logos-1 {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, .4);
}

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

.logos-1 img {
    width: 100%;
    max-height: 4rem;
    filter: grayscale() opacity(.5);
    transform: scale(.94);
    transition: 0.2s ease-in-out;
}

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

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

/* Cards 5 */
.cards-5{
    margin-top: 5rem;
}

.cards-5 .card-item {
    width: calc((100% / 3) - 4rem);
    margin: 2rem;
    text-decoration: none;
    text-align: center;
    padding: 2rem;
}

.cards-5 .card-item:hover{
    background-color: rgba(var(--secondary-color), 0.2);
}

.cards-5 .icon-wrapper {
    margin-bottom: 1.5rem;
    color: rgb(var(--primary-color));
}

.cards-5 .icon-wrapper .fal{
    font-size: 4rem;
}

.cards-5 p{
    font-size: 1.8rem;
}

@media only screen and (max-width: 980px) {
    .cards-5 .card-item {
        width: 100%;
        margin: 2rem 0;
    }
}

/* Cards 14 */
.cards-14 {
    max-width: 50rem;
}

.cards-14.mw-none {
    max-width: unset;
}

.cards-14 .card-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 2rem;
    transition: all .3s ease;
}

.cards-14 a.card-item:hover {
    text-decoration: none;
    background-color: rgba(var(--secondary-color), 0.2);
    transition: all .3s ease;
}

.cards-14 i {
    width: 5rem;
    font-size: 3rem;
    color: rgb(var(--secondary-color));
}

.cards-14 p {
    padding-bottom: 0;
    font-size: 1.4rem !important;
}

.cards-14 .contact-info {
    font-size: 1.6rem;
    font-weight: 400;
}


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

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

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

.split-image {
    width: 50%;
    border-radius: 2px;
}

.mt--3rem {
    margin-top: -3rem;
}

.mt--5rem {
    margin-top: -5rem;
}

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

/* 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-content {
        padding: 0 0 4rem;
    }

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

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

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

/* Object-fit */
.of-wrapper .op-center-top {
    object-position: center top;
}

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
}

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

.bg-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

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

/* Header / Navigation
========================================================================== */
header {
    background-color: rgb(255, 255, 255);
    transition: all .2s ease;
}

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

/* Logo */
.header-logo {
    margin-right: 2rem;
}

/* nav */
nav.mainmenu {
    flex-grow: 1;
}

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

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

/* CTA  */
.header-cta-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: .9rem 2.5rem;
    margin: 0 1rem;
}

.mobile-menu .header-cta-wrapper {
    margin-top: 5px;
}

/* Mobilmeny */
@media only screen and (max-width: 610px) {
    .header-cta-wrapper .btn {
        display: none;
    }

    .header-logo a {
        font-size: 1.8rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: calc((100vh - var(--menu-height)) - 3rem);
    background-color: rgba(17, 17, 17, 0.4);
}

.top-section .section-block-wrapper {
    max-width: 100rem;
    text-align: left;
}

.top-section h1 {
    font-family: 'Noto Sans Mono', monospace;
    text-align: center;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.3em;
    color: rgb(255, 255, 255);
    padding-bottom: .3em;
}

.top-section p {
    color: rgba(255, 255, 255, .7);
}


/* Logotyp */
.top-section .badge{
    max-width: 20rem;
    position: absolute;
    right: 5rem;
    bottom: 5rem;
}

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

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

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

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

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

    .top-section .section-block-wrapper {
        padding: 0 2rem;
    }

    .top-section {
        justify-content: center;
        align-items: center;
    }

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

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

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

/* Startsida: Kontaka oss
========================================================================== */
/* cards */
.section-start-contact .cards-5-wrapper {
    max-width: 120rem;
    margin: 5rem auto 0;
}

.section-start-contact .cards-5-wrapper .card-item {
    text-align: center;
}

.section-start-contact .cards-5-wrapper .icon-wrapper {
    font-size: 7rem;
}

/* Sektion Call to action (.section-cta)
========================================================================== */
.section-cta {
    background-image: linear-gradient(to bottom, rgb(255, 255, 255) 50%, rgb(242, 242, 242) 50%);
}

.cta-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    text-align: left;
    background-color: rgb(var(--primary-color));
    padding: 4rem;
    border-radius: 3px;
}

.EditMode .cta-wrapper {
    transform: none;
}

.cta-content {
    max-width: 75rem;
    padding: 0 5rem 0 0;
}

.cta-wrapper .btn-wrapper {
    align-self: center;
    justify-content: flex-end;
    margin: 0;
    flex: 1 1 0%;
}

.cta-title {
    padding-bottom: 1rem;
}

@media only screen and (max-width: 1300px) {
    .cta-wrapper {
        transform: translateY(-1rem);
    }
}

@media only screen and (max-width: 1000px) {
    .cta-wrapper {
        flex-wrap: wrap;
    }

    .cta-content {
        padding: 0 0 2rem;
    }
}

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

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

/* Hero
========================================================================== */
.hero .split-image img, .section-contact .split-image img {
    clip-path: circle(50% at 50% 65%);
}

.hero .section-block {
    background-image: linear-gradient(to top, white 5rem, rgb(242, 242, 242) 5rem);
}

/* Btn wrapper med overflow */
.btn-wrapper.overflow {
    justify-content: flex-end;
    position: relative;
    left: 13rem;
    z-index: 5;
}

.btn-wrapper.overflow .btn {
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 7%);
}

@media only screen and (max-width: 1000px) {
    .btn-wrapper.btn-wrapper.overflow {
        justify-content: flex-start;
        left: auto;
        position: static;
    }
}


/* hero 2 – solid bakgrund
========================================================================== */
.hero-2 {
    min-height: 40rem;
}

.hero-2 h1 {
    font-size: 5rem;
    color: #fff;
    padding-top: 6rem;
}

@media only screen and (max-width: 600px) {
    .hero-2 h1 {
        font-size: 3rem;
    }

    .hero-2 {
        min-height: 30rem;
    }
}


/* Hero 3 - med video
========================================================================== */
.hero-video {
    height: 50vh;
}

/* ==========================================================================
Undersida: Vilka är vi?
========================================================================== */
.coworker-items-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.coworker-item {
    width: 48%;
    margin: 1%;
    display: flex;
    text-align: left;
    position: relative;
    overflow: hidden;
    background-color: #f2f2f2;
}

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

.coworker-image {
    position: relative;
    min-height: 40rem;
    min-width: 30rem;
}

.coworker-image .photo-hide-show {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.coworker-image .photo-hide-show.photo-spex {
    opacity: 0;
}

.coworker-image:hover .photo-hide-show.photo-spex {
    opacity: 1;
}

.coworker-image img { 
    object-fit: cover;
    height: 100% !important;
    width: 100% !important;
}

.coworker-image img.contain {
    object-fit: contain;
}

.coworker-item .coworker-text {
    padding: 2rem;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.coworker-item p:not(.small-title) {
    line-height: 1.5;
    font-size: 1.5rem;
}

.coworker-item .title-bg {
    font-size: 1.5rem;
    text-transform: uppercase;
    background-color: #fff;
    padding: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    padding-left: 4rem;
    margin-left: -4rem;
    max-width: 85%;
}

.coworker-item .contact-options {
    margin: .5rem 0;
    display: flex;
    font-style: normal;
    justify-content: space-between;
}

.coworker-item .contact-option {
    display: flex;
    margin: .2rem 0;
    align-items: center;
    color: #fff;
    letter-spacing: normal;
    font-weight: 400;
    text-transform: none;
    font-size: 1.5rem;
    background-color: transparent;
    color: #fff;
    border: 1px solid white;
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    line-height: 1.9;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    padding: 1rem;
    line-height: 1;
    margin: 0 0.5rem 0 0;
}

.coworker-item .contact-option:hover {
    color: rgb(var(--secondary-color));
}

.coworker-item .contact-option::before {
    display: inline-block;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: inherit;
    margin-right: 1.5rem;
    vertical-align: middle;
    color: rgb(var(--secondary-color));
    width: 1rem;
    text-align: center;
}

.coworker-item .contact-option:hover::before {
    text-decoration: none !important;
}

.contact-option.address::before {
    content: '\f3c5';
}

.contact-option.phone::before {
    content: '\f879';
}

.contact-option.mail::before {
    content: '\f0e0';
}


@media only screen and (max-width: 1466px) {
    .coworker-item {
        flex-direction: column;
    }
    
    .coworker-image {
        min-height: 35rem;
    }
}

@media only screen and (max-width: 1150px) {
    .coworker-item {
        width: 48%;
    }
}

@media only screen and (max-width: 880px) {
    .coworker-item {
        width: 100%;
        margin: 0 0 3rem 0;
        display: block;
    }

    .coworker-image {
        min-height: 35rem;
    }

    .coworker-item .title-bg {
        max-width: 95%;
    }
}

/* ==========================================================================
Undersida: Samarbetspartners 
========================================================================== */
.partners .coworker-image img { 
    height: 100% !important;
    width: 100% !important;

}


@media only screen and (max-width: 1545px) {
    .partners .coworker-image img{
     height: 100% !important;
     width: 100% !important;
     object-fit: contain;
    }
}


/* ==========================================================================
Undersida: Kontakta oss
========================================================================== */
.section-contact p{
    font-size: 2rem;
}

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


/* Sektioner pa undersidan kommenteras ut sahar
========================================================================== */
/* ==========================================================================
Footer
========================================================================== */

.footer {
    background-color: rgb(242, 242, 242);
}

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

.footer p,
.footer a {
    color: rgba(17, 17, 17, 0.7);
}

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

/* 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.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgb(var(--primary-color));
}

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

.footer-bottom .circle-icon {
    width: 3rem;
    height: 3rem;
    color: rgb(255, 255, 255);
}

.footer-bottom em::before {
    font-size: 1.4rem;
}
/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
}


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

    /* 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: 450px) {

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

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