/* Broviken Gruppen */

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

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

    /* 	Colors */
    --primary-color: 16, 48, 103;
    --primary-light-color: 198, 215, 246;
    --primary-dark-color: 7, 21, 44;

    --secondary-color: 28, 135, 131;
    --secondary-light-color: 206, 235, 233;
    --secondary-dark-color: 14, 68, 66;

    --black-color: 5, 5, 5;
    --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.5rem;

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

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

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

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

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

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

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

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

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

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

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

/* Bredder */
.mw-1200:not(.section-wrapper),
.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

.mw-1100:not(.section-wrapper),
.mw-1100 .section-block-wrapper {
    max-width: 110rem;
}

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

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

    .p-5 .section-block,
    .section-block {
        padding: 5rem 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

.section-title {
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.3;
    padding-bottom: .5em;
}

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

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

/* Brodtext och lankar */
p,
li {
    font-weight: 400;
    color: rgb(var(--gray-dark-color));
}

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

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

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

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

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

.text-italic {
    font-style: italic;
}

.text-underline {
    text-decoration: underline !important;
}

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

.list-pills li {
    display: flex;
    align-items: center;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    margin: .5rem;
    font-size: 1.5rem;
    border-radius: 4rem;
    color: rgb(var(--black-color));
    background: rgb(var(--primary-light-color));
}

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

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

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

    .list-pills li {
        width: 100%;
        padding: 1rem;
        font-size: 1.4rem;
    }
}

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

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

/* Knappar */
.btn {
    min-width: 20rem;
    padding: 2.1rem 2.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

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

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

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

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

/* Arrow link */
.arrow-link {
    font-size: var(--base-size);
    padding-right: 1rem;
    color: rgb(var(--gray-dark-color));
}

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

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

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

/* 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-secondary-light {
    background-color: rgb(var(--secondary-light-color));
}

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

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

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

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

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

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

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

/*border*/
.border-bottom {
    border-bottom: 1px solid rgb(var(--gray-color));
}

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

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

/* Grafiska element
========================================================================== */
/* Box shadow */
.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

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

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

@media only screen and (max-width: 1350px) {
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 3) - 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 {
        width: 100%;
        margin: 1rem 0;
    }

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

    /* Paddings */
    .card-item.p-3,
    .card-item .p-3 {
        padding: 2rem;
    }
}

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

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

a.card-item {
    transition: .3s ease;
}

/* Card 1-1 */
.card-1-1 .card-body img {
    max-height: 5rem;
    max-width: 25rem;
}

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

.card-1-1 a:hover {
    transform: scale(1.05);
    -webkit-transition: all .4s ease;
}
.card-1-1 div:hover {
    transform: scale(1.05);
    -webkit-transition: all .4s ease;
}
.no-scale:hover {
    transform: none !important;
    text-decoration: none !important;
}
.card-1-1 a{
    text-decoration: none;
}

/* Card 3-1 */
.card-3-1 .card-item {
    border-radius: 1rem;
    overflow: hidden;
}

.card-3-1 i {
    font-size: 1.3rem;
}

.card-3-1 .image-wrapper {
    height: 38rem;
}

@media screen and (max-width: 1050px) {
    .card-3-1 .image-wrapper {
        height: 46rem;
    }
}

@media screen and (max-width: 750px) {
    .card-3-1 .image-wrapper {
        height: 40rem;
    }

    .card-3-1 img {
        object-position: center top;
    }

    .card-3-1 .card-body {
        padding: 1rem;
    }

}

/* Card 3-2 */
.card-3-2 {
    margin: 0 auto;
}

.card-3-2 .image-wrapper {
    display: inline-block;
    border-radius: 0.3rem;
}

.card-3-2 a {
    text-decoration: none;
}

.card-3-2 a:hover {
    text-decoration: underline;
}

.card-3-2.info-card {
    max-width: 90rem;
}

@media screen and (max-width: 650px) {
    .card-3-2.w-50 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 2-2 */
.card-2-2 .card-item {
    border-radius: 2rem;
}

.card-2-2 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
}

.card-2-2 .card-header i {
    font-size: 2.5rem;
}

.card-2-2 .card-footer {
    padding-top: 2rem;
}

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

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

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

.split-image {
    width: 50%;
}

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

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

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

/* Overlapping Split */
.split-wrapper.overlap:not(.reverse) .split-content {
    position: relative;
    z-index: 1;
    width: 60%;
    margin: 5rem -10% 5rem 0;
}

/* Overlapping Split */
.split-wrapper.overlap.reverse .split-content {
    position: relative;
    z-index: 1;
    width: 60%;
    margin: 5rem 0 5rem -10%;
}



@media screen and (max-width: 1350px) {
    .full-width .split-wrapper .split-content {
        padding: 5rem 5rem 5rem 0;
    }

    .full-width .split-wrapper.reverse .split-content {
        padding: 5rem 0 5rem 5rem;
    }
}

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

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

    .split-wrapper.overlap .split-content,
    .split-bgcolor .split-content {
        padding: 3rem;
    }

}

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

    .split-wrapper .w-60,
    .split-wrapper .w-40,
    .split-content {
        width: 100%;
        padding: 0 0 3rem !important;
    }

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

    /* Overlapping Split */
    .split-wrapper.overlap:not(.reverse) .split-content,
    .split-wrapper.overlap.reverse .split-content {
        width: 100%;
        margin: 0;
        padding: 3rem;
    }

    .split-wrapper .split-content.bg-primary,
    .split-wrapper .split-content.bg-secondary,
    .split-wrapper .split-content.bg-gray-light,
    .full-width .split-wrapper .split-content,
    .split-bgcolor .split-content {
        padding: 5rem 3rem !important;
    }

    .split-wrapper .split-content.w-40,
    .split-wrapper .split-content.w-60 {
        padding: 0 0 5rem 0 !important;
    }
}

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

    .split-content.bg-primary,
    .split-content.bg-secondary,
    .split-content.bg-gray-light,
    .full-width .section-block .split-content,
    .split-bgcolor .split-content {
        padding: 3rem 2rem !important;
    }

    .split-wrapper .split-content.w-40,
    .split-wrapper .split-content.w-60 {
        padding: 0 0 5rem 0 !important;
    }
}

/* Header / Navigation
========================================================================== */
header {
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

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

.header-logo img {
    width: 16rem;
}

/* Nav */
.TemplateMenu a {
    font-weight: 500;
    font-size: 1.35rem;
    color: rgb(var(--gray-dark-color));
}

.TemplateMenu>li>a:hover {
    color: rgb(var(--secondary-color));
}

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

/* Dropdown */
.EditMode .TemplateMenu ul a {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.EditMode .TemplateMenu>li>ul>li:hover>ul {
    max-height: 40rem;
    overflow-y: scroll;
}


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

/* Top-section
========================================================================== */
.top-section .section-block {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--menu-height));
    background-color: rgb(var(--primary-dark-color), .5);
}

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

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

.top-section .section-title {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
}

.top-section p {
    max-width: 55rem;
    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;
    }
}

/* Sektion Counter
========================================================================== */
.counter-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.counter-item {
    width: 25%;
    text-align: center;
    padding: 2rem 0;
}

.counter-top {
    font-size: 2rem;
    line-height: 1;
}

.count {
    display: block;
    font-size: 7rem;
    margin: 0 0 1.2rem;
}

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

    .count {
        font-size: 4.5rem;
    }
}

@media only screen and (max-width: 750px) {
    .counter-item {
        width: 50%;
    }

    .counter-top {
        font-size: 1.4rem;
    }

    .count {
        font-size: 3rem;
    }
}

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

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

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

.hero .text-block {
    max-width: 80rem;
}

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

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

    .hero .section-title {
        font-size: 3rem;
    }
}

/* Hero med full-width + split (kontakt + om broviken)
========================================================================== */
.hero .split-content .section-title {
    font-size: 3.5rem;
}

@media only screen and (max-width: 1250px) {
    .hero .split-content .section-title {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 1000px) {
    .hero.full-width .split-content {
        padding: 5rem 2rem 2rem;
    }
}

/* ==========================================================================
Våra bolag
========================================================================== */
/* Filtrering */
.btn-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.btn-filter-wrapper .tag {
    text-transform: none;
    font-weight: 500;
    line-height: 1em;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    font-family: 'Poppins', sans-serif;
    background-color: rgb(var(--primary-color), 0.3);
    border: none;
    margin: 2rem 2rem 0 0;
    padding: 1.7rem 2rem;
    cursor: pointer;

}

.btn-filter-wrapper .tag:hover {
    background-color: rgb(var(--primary-color));
    -webkit-transition: all .4s ease;
    color: rgb(var(--white-color));
}

.btn-filter-wrapper .tag.tag-picked {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 800px) {
    .btn-filter {
        max-width: none;
        width: 100%;
        margin-top: 0;
        margin-bottom: 1rem;
    }
}

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

    /* Taggar */
    .tags-wrapper {
        position: relative;
        max-width: 25rem;
        background: rgb(var(--primary-light-color));
        cursor: pointer;
    }

    .tags-heading {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
    }

    .tags-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: rgb(var(--black-color));
    }

    .tags-heading i {
        margin-left: 2rem;
    }

    .tags-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: left;
        background: rgb(var(--white-color));
        box-shadow: 1px 1px 10px rgba(var(--black-color), .1);
    }

    .tags-wrapper.opened .tags-list {
        display: block;
    }

    .tags-wrapper .tag {
        display: block;
        padding: 1rem 2rem;
        margin: 0;
        letter-spacing: normal;
        text-transform: initial;
        box-shadow: none;
        border-radius: 0;
    }
}

/* ==========================================================================
Undersida: Nyheter
========================================================================== */

/* Sokfalt
========================================================================== */
.search-wrapper {
    position: relative;
    max-width: 60rem;
}

.search-wrapper em {
    position: absolute;
    right: 1.7rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.7rem;
    font-weight: 600;
    color: rgb(var(--white-color));
}

.search-wrapper input {
    width: 100%;
    height: 4rem;
    padding: 0 2rem 0 2rem;
    border: none;
    border-radius: 0.7rem;
    box-shadow: 6px 7px 13px rgb(var(--black-color), .4);
    font-family: 'Poppins', sans-serif;
    color: rgb(var(--black-color));
    background: linear-gradient(90deg, rgb(var(--white-color)) 90%, rgb(var(--secondary-color)) 90%);
}

.card-item.hidden-search-item {
    display: none;
}

/* ==========================================================================
Undersida: Team
========================================================================== */

/* Tabell
========================================================================== */
.table {
    width: 100%;
    margin: 0 auto;
}

.table-heading .cell {
    background: rgb(var(--secondary-color));
}

.row {
    display: flex;
    flex-wrap: wrap;
    background: rgb(var(--white-color));
}

.cell {
    width: calc(100% / 3);
    padding: 1.5rem;
    border: 0.1rem solid rgb(var(--gray-light-color));
}

.cell:first-child,
.cell:nth-child(-n + 2) {
    width: 25%;
}

.cell:nth-child(3) {
    width: 50%;
}

@media only screen and (max-width: 750px) {
    .table-heading {
        display: none;
    }

    .row:nth-child(odd):not(.table-heading) {
        background-color: rgb(var(--gray-light-color));
    }

    .cell {
        width: 100%;
        border: none;
    }

    .cell:before {
        content: attr(data-title);
        display: block;
        font-size: 1.3rem;
        text-transform: uppercase;
    }

    .cell:first-child,
    .cell:nth-child(-n + 2) {
        width: 100%;
    }

    .cell:nth-child(3) {
        width: 100%;
    }
}

/* Nyheter
========================================================================== */
/* Kolumn 0 */
.section-news .col-0 {
    width: 10rem;
    padding-right: 5rem;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    top: 11rem;
    align-self: flex-start;
}

.section-news .col-0 .section-title {
    position: -webkit-sticky;
    position: sticky;
    top: 11rem;
}

/* Kolumn 1 */
.section-news .col-1 {
    width: calc(100% - 10rem);
    padding-left: 5rem;
    border-left: 1px solid rgb(var(--gray-light-color));
}

/* korten */
.news-cards-wrapper .card-item {
    border-radius: 0.7rem;
}

.mobile-year {
    display: none;
}

.news-cards-wrapper .card-item .news-title {
    font-size: 2.3rem;
    font-weight: 500;
}

.news-cards-wrapper .card-item p {
    font-size: 1.4rem;
}

.news-cards-wrapper a:hover {
    background: rgb(var(--primary-light-color));
}

@media only screen and (max-width: 600px) {
    .search-wrapper input {
        background: linear-gradient(90deg, rgb(var(--white-color)) 84%, rgb(var(--secondary-color)) 84%);
    }

    .section-news .col-0 {
        display: none;
    }

    /* Kolumn 1 */
    .section-news .col-1 {
        width: 100%;
        padding-left: 0;
        border-left: none;
    }

    .mobile-year {
        display: block;
    }

    .news-cards-wrapper .card-item .news-title {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
Nyheter > Individuell undersida
========================================================================== */
.news-hero {
    background-color: rgba(var(--black-color), .6);
}

.return-link {
    font-size: 1.4rem;
    text-decoration: none;
    transition: all .2s ease;
    padding: 0.5rem 1rem;
    background-color: rgb(var(--secondary-color));
}

.return-link:before {
    content: '\f177';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-family: 'Font Awesome 5 Pro';
    border-radius: 50%;
    color: rgb(var(--white-color));
    margin-right: 1rem;
    transition: all .2s ease;
}

.return-link:hover,
.return-link:hover:before {
    color: rgb(var(--secondary-color));
    background-color: rgb(var(--white-color));
}

/* Texten */
.news-text .col-0 {
    width: calc(100% - 45rem);
    padding-right: 4rem;

}

.news-text .col-1 {
    width: 45rem;
    padding-left: 0;
}

.news-contact-wrapper {
    background-color: rgb(var(--primary-color));
}

.news-contact-person {
    border-bottom: 1px solid rgb(var(--white-color));
}

.news-contact-person:last-child {
    border-bottom: none;
}

.news-contact-person a {
    display: block;
}

@media only screen and (max-width: 1100px) {
    .news-text .col-0 {
        width: calc(100% - 35rem);
        padding-right: 3rem;
    }

    .news-text .col-1 {
        width: 35rem;
    }
}

@media only screen and (max-width: 900px) {
    .news-text .col-0 {
        width: 100%;
        padding: 0 0 4rem;
    }

    .news-text .col-1 {
        width: 100%;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    border-top: 1px solid rgb(var(--gray-light-color));
    padding: 0 5rem;
}


/* 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 {
    color: rgb(var(--primary-color));
    padding: 0 0 1rem;
    line-height: 1;
}

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

.footer-top li,
.footer-top p,
.footer-top a {
    color: rgb(var(--primary-color), .6);
    text-decoration: none;
}

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

.footer-logo {
    width: 20rem;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgb(var(--gray-light-color));
}

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