@charset "utf-8";

/* Copyright ENDEA */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..700;1,300..700&display=swap');

:root {
    --accent-color-1: #2B9DDC;
    --accent-color-2: #237CC2;
    --accent-color-3: #154093;
    --accent-color-4: #070767;
    --black-color: #141414;
    --white-color: #FFFFFF;
    --light-gray: #F3F3F3;
    --shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    --shadow-hover: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

html, body {
    background: var(--white-color);
    font-family: "Figtree", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--black-color);
}

body {
    padding-top: 60px;
    padding-bottom: 0px;
    font-size: 16px;
}

body.main-page {
    padding-top: 60px;
}

@media (min-width: 992px) {

    body {
        padding-top: 90px;
        font-size: 16px;
    }
    body.main-page {
        padding-top: 90px;
    }
}

@media (min-width: 992px) {

    body {
        font-size: 17px;
    }
}

@media (min-width: 1600px) {

    body {
        font-size: 18px;
    }
}


h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
    line-height: 1.5;
    margin-top: 40px;
    margin-bottom: 20px;
}

h1, .h1 {
    font-size: 22px;
    font-weight: 600;
}

h2, .h2 {
    font-size: 19px;
    font-weight: 600;
}

h3, .h3 {
    font-size: 17px;
    font-weight: 600;
}

h4, .h4 {
    font-size: 17px;
    font-weight: 400;
}

@media (min-width: 768px) {

    h1, .h1 {
      font-size: 33px;
    }
    h2, .h2 {
        font-size: 26px;
    }
    h3, .h3 {
        font-size: 21px;
    }
    h4, .h4 {
        font-size: 19px;
    }
}


a {
    color: var(--accent-color-1);
    text-decoration: none;
    transition: color .3s ease-in-out;
}
a:hover,
a:focus {
    text-decoration: none;
    color: var(--accent-color-3);
}


p:last-of-type {
    margin: 0;
}


/* --- strona główna: banner --- */

.mb-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.m-banner {
    margin: 0;
    background: url(../img/baner-small.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.m-banner-fx {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 322px;
}

.m-banner-txt {
    width: 100%;
}

.m-banner-txt h1 {
    margin: 0 0 30px;
    color: var(--white-color);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: var(--shadow);
}

.m-banner-txt h1 .sp-ban {
    color: #7E99C6;
}

.btn-banner {
    position: relative;
    color: var(--accent-color-4);
    background-color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    text-transform: lowercase;
    padding: 13px 48px 13px 30px;
    border-radius: 5px;
}

.btn-banner:hover,
.btn-banner:focus {
    background-color: var(--white-color);
    color: var(--accent-color-4);
}

.btn-banner > img {
    position: absolute;
    top: 16px;
    left: 158px;
    width: 8px;
    height: 14px;
    transition: 0.3s ease-in-out;
}

.btn-banner > img.btn-banner-move {
    opacity: 0;
}

.btn-banner:hover > img.btn-banner-move,
.btn-banner:focus > img.btn-banner-move {
    opacity: 1;
    left: 168px;
}

@media (min-width: 360px) {

    .m-banner-txt h1 {
        font-size: 36px;
    }
}

@media (min-width: 576px) {

    .m-banner-txt h1 {
        font-size: 43px;
    }
}

@media (min-width: 768px) {

    .m-banner-fx {
        height: 360px;
    }
    .m-banner-txt {
        width: 50%;
    }
    .m-banner-txt h1 {
        font-size: 48px;
    }
    .btn-banner {
        font-size: 15px;
        padding: 15px 48px 15px 30px;
    }
    .btn-banner > img {
        top: 19px;
        left: 168px;
    }
    .btn-banner:hover > img.btn-banner-move,
    .btn-banner:focus > img.btn-banner-move {
        left: 178px;
    }
}

@media (min-width: 992px) {

    .m-banner {
        margin: 0;
        background: url(../img/baner.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .m-banner-fx {
        height: clamp(500px,calc(100vh - 90px),600px);
    }
    .m-banner-txt h1 {
        margin: 0 0 45px;
        font-size: 55px;
    }
}

@media (min-width: 1200px) {

    .m-banner-fx {
        height: clamp(550px,calc(100vh - 90px),650px);
    }
    .m-banner-txt h1 {
        font-size: 65px;
    }
    .btn-banner {
        font-size: 16px;
    }
    .btn-banner > img {
        top: 19px;
        left: 175px;
        width: 10px;
        height: 16px;
    }
    .btn-banner:hover > img.btn-banner-move,
    .btn-banner:focus > img.btn-banner-move {
        left: 185px;
    }
}

@media (min-width: 1600px) {

    .m-banner-fx {
        height: clamp(600px,calc(100vh - 90px),750px);
    }
    .m-banner-txt h1 {
        margin: 0 0 60px;
        font-size: 75px;
    }
    .btn-banner {
        font-size: 18px;
        padding: 20px 55px 20px 35px;
    }
    .btn-banner > img {
        top: 25px;
        left: 199px;
    }
    .btn-banner:hover > img.btn-banner-move,
    .btn-banner:focus > img.btn-banner-move {
        left: 209px;
    }
}

@media (min-width: 1920px) {

    .m-banner-fx {
        height: clamp(700px,calc(100vh - 90px),920px);
    }
    .m-banner-txt h1 {
        font-size: 85px;
    }
}

@media (min-width: 1970px) {
    .m-banner {
        width: 1920px;
        margin: 0 auto;
    }
}


/* --- animation (strona główna) --- */

.animH1 {
    position: relative;
    animation: fadeInH1 1.5s ease-in-out;
}
@keyframes fadeInH1 {
    0%   {opacity: 0;}
    20%   {opacity: 0; left:-20px; top:0px;}
    100%  {opacity: 1; left:0px; top:0px;}
}

.animB1 {
    position: relative;
    animation: fadeInB1 2.5s ease-in-out;
}
@keyframes fadeInB1 {
    0%   {opacity: 0;}
    40%   {opacity: 0; left:-20px; top:0px;}
    100%  {opacity: 1; left:0px; top:0px;}
}


.dots-mark {
    position: relative;
    padding: 50px 0 0;
}
@media (min-width: 992px) {

    .dots-mark {
        padding: 80px 0 0;
    }
}
@media (min-width: 1200px) {

    .dots-mark {
        padding: 100px 0 0;
    }
}
@media (min-width: 1600px) {

    .dots-mark {
        padding: 150px 0 0;
    }
}

.dots-mark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: url(../img/dots.svg);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
}
@media (min-width: 768px) {

    .dots-mark::before {
        height: 5px;
    }
}


/* --- strona główna: wrappers --- */

.m-site-wrapper {
    margin: 50px 0;
    line-height: 1.7;
}
@media (min-width: 768px) {

    .m-site-wrapper {
        margin: 65px 0;
    }
}
@media (min-width: 992px) {

    .m-site-wrapper {
        margin: 80px 0;
    }
}
@media (min-width: 1200px) {

    .m-site-wrapper {
        margin: 100px 0;
    }
}
@media (min-width: 1600px) {

    .m-site-wrapper {
        margin: 150px 0;
    }
}
@media (min-width: 1970px) {
    .m-site-wrapper {
        width: 1920px;
        margin-left: auto; margin-right: auto;
    }
}

.m-site-wrapper h3 {
    font-weight: 700;
    color: var(--accent-color-2);
    text-transform: uppercase;
}

.m-site-wrapper a,
.content-wrapper-subpage a {
    font-weight: 600;
}


/* --- m-site-fx, mr-site-fx --- */

.m-site-fx, .mr-site-fx {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {

    .m-site-fx {
        flex-direction: row;
    }
    .mr-site-fx {
        flex-direction: row-reverse;
    }
    .m-site-fx, .mr-site-fx {
        gap: 60px;
    }
}
@media (min-width: 1200px) {

    .m-site-fx, .mr-site-fx {
        gap: 70px;
    }
}
@media (min-width: 1600px) {

    .m-site-fx, .mr-site-fx {
        gap: 80px;
    }
}


/* --- m-site-content, m-site-img --- */

.m-site-content, .m-site-img {
    width: 100%;
}

@media (min-width: 992px) {

    .m-site-content > p {
        text-align: justify;
    }
}

.m-site-img {
    display: flex;
    justify-content: center;
}

.m-site-img img {
    max-height: 300px;
    max-width: 100%;
}

@media (min-width: 768px) {

    .m-site-img img {
        max-height: 450px;
    }
}
@media (min-width: 992px) {

    .m-site-img img {
        margin-top: 15px;
    }
}
@media (min-width: 1200px) {

    .m-site-img img {
        max-height: 500px;
    }
}


/* --- strona główna: headers --- */

.m-hd {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .m-hd {
        margin-bottom: 45px;
    }
}
@media (min-width: 1200px) {
    .m-hd {
        margin-bottom: 50px;
    }
}
@media (min-width: 1400px) {
    .m-hd {
        margin-bottom: 60px;
    }
}

.m-hd h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    color: var(--accent-color-3);
}

@media (min-width: 360px) {

    .m-hd h2 {
        font-size: 33px;
    }
}
@media (min-width: 576px) {

    .m-hd h2 {
        font-size: 40px;
    }
}
@media (min-width: 768px) {

    .m-hd h2 {
        font-size: 45px;
    }
}
@media (min-width: 992px) {

    .m-hd h2 {
        font-size: 48px;
    }
}
@media (min-width: 1200px) {

    .m-hd h2 {
        font-size: 58px;
    }
}
@media (min-width: 1600px) {

    .m-hd h2 {
        font-size: 70px;
    }
}


/* --- main-btn --- */

.main-btn {
    margin: 30px 0 15px;
}

.main-btn > a {
    position: relative;
    padding: 9px 40px 11px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    background-color: var(--accent-color-3);
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: 0.3s ease-in-out;
}

.main-btn > a:hover {
    background-color: var(--accent-color-1);
}

.main-btn > a > img {
    position: absolute;
    top: 12px;
    left: 115px;
    width: 7px;
    height: 13px;
}

.main-btn > a > img.btn-img-move {
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.main-btn > a:hover > img.btn-img-move {
    opacity: 1;
    left: 125px;
}

@media (min-width: 992px) {

    .main-btn {
        margin: 40px 0 15px;
    }
    .main-btn > a {
        padding: 10px 43px 12px 25px;
    }
    .main-btn > a > img {
        top: 12px;
        left: 118px;
        width: 8px;
        height: 14px;
    }
    .main-btn > a:hover > img.btn-img-move {
        left: 128px;
    }
}

@media (min-width: 1200px) {

    .main-btn > a {
        font-size: 16px;
    }
    .main-btn > a > img {
        top: 14px;
        left: 130px;
    }
    .main-btn > a:hover > img.btn-img-move {
        left: 140px;
    }
}


/* --- strona główna: kategorie --- */

.category-boxes-fx {
    margin: 45px 0 10px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.category-box {
    width: 100%;
    border-radius: 5px;
    transition: all .3s ease-in-out;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.category-box:hover,
.category-box:focus,
.category-box.active {
    background-color: var(--light-gray);
}

@media (min-width: 576px) {

    .category-box {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}
@media (min-width: 1200px) {

    .category-box {
        flex: 0 0 calc((100% - 60px) / 3);
    }
}
@media (min-width: 1400px) {

    .category-boxes-fx {
        margin-top: 60px;
    }
    .category-box {
        flex: 0 0 calc((100% - 90px) / 4);
    }
}

.category-box > a {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    font-weight: 400;
}

.category-box > a > img {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 10px;
    height: 16px;
    transition: 0.3s ease-in-out;
}

.category-box > a > img.img-move {
    opacity: 0;
}

.category-box:hover > a > img.img-move,
.category-box:focus > a > img.img-move,
.category-box.active > a > img.img-move {
    right: 10px;
    opacity: 1;
}

.bcg-1 {
    background-color: var(--accent-color-1);
}
.bcg-2 {
    background-color: var(--accent-color-2);
}
.bcg-3 {
    background-color: var(--accent-color-3);
}
.bcg-4 {
    background-color: var(--accent-color-4);
}

.category-box-name {
    margin: 0;
    padding: 25px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    text-transform: uppercase;
}

.category-box-txt {
    transition: 0.3s ease-in-out;
}

.category-box-txt p {
    color: var(--black-color);
    font-size: 14px;
    padding: 25px 20px 40px;
    margin: 0;
}

@media (min-width: 768px) {

    .category-box-name {
        font-size: 18px;
    }
    .category-box-txt p {
        text-align: justify;
    }
}

@media (min-width: 1200px) {

    .category-box-name {
        font-size: 19px;
    }
    .category-box-txt p {
        font-size: 15px;
    }
}

@media (min-width: 1600px) {

    .category-box-name {
        font-size: 22px;
        padding: 30px 25px;
    }
    .category-box-txt p {
        font-size: 16px;
        padding: 30px 25px 45px;
    }
}


/* --- bcg-wrap --- */

.bcg-wrap {
    padding: 50px 0;
    background: #154093;
    background: linear-gradient(125deg,rgba(21, 64, 147, 1) 0%, rgba(7, 7, 103, 1) 100%);
    color: var(--white-color);
    font-weight: 300;
}

@media (min-width: 768px) {

    .bcg-wrap {
        padding: 65px 0;
    }
}
@media (min-width: 992px) {

    .bcg-wrap {
        padding: 80px 0;
    }
    .main-btn-wh {
        text-align: right;
    }
}
@media (min-width: 1200px) {

    .bcg-wrap {
        padding: 100px 0;
    }
    .main-btn-wh {
        text-align: right;
    }
}
@media (min-width: 1600px) {

    .bcg-wrap {
        padding: 150px 0;
    }
}

.m-hd-wh h2 {
    color: var(--white-color);
}

.bcg-wrap h3 {
    color: var(--light-gray);
    font-weight: 600;
}

.main-btn-wh a {
    background-color: rgba(255, 255, 255, 0.3);
}

.mar-top {
    margin-top: -15px;
}

.m-site-nr-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 50px;
}

.nr-box-fx {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.nr-box {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.3;
    width: 30%;
}

.nr-box-txt {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0px;
    width: 70%;
}

@media (min-width: 360px) {

    .nr-box {
        font-size: 50px;
        font-weight: 700;
        line-height: 1;
        opacity: 0.3;
        width: 70px;
    }

    .nr-box-txt {
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 0px;
        width: 200px;
    }
}

@media (min-width: 768px) {

    .m-site-nr-wrap {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
    .nr-box-fx {
        flex: 0 0 calc((100% - 30px) / 2);
        gap: 10px;
    }
}

@media (min-width: 992px) {

    .mar-top {
        margin-top: 0px;
    }
    .m-site-nr-wrap {
        margin-top: 80px;
    }
    .nr-box-fx {
        flex: 0 0 calc((100% - 60px) / 3);
        gap: 20px;
    }
    .nr-box {
        font-size: 90px;
        width: auto;
    }
    .nr-box-txt {
        font-size: 16px;
        width: auto;
        margin-bottom: 5px;
    }
}

@media (min-width: 1200px) {

    .nr-box {
        font-size: 90px;
    }
    .nr-box-txt {
        font-size: 17px;
    }
}

@media (min-width: 1400px) {

    .m-site-nr-wrap {
        margin-top: 100px;
    }
    .nr-box {
        font-size: 110px;
    }
    .nr-box-txt {
        font-size: 20px;
    }
}

@media (min-width: 1600px) {

    .m-site-nr-wrap {
        gap: 40px;
    }
    .nr-box-fx {
        flex: 0 0 calc((100% - 80px) / 3);
    }
}

@media (min-width: 1920px) {

    .m-site-nr-wrap {
        gap: 100px;
    }
    .nr-box-fx {
        flex: 0 0 calc((100% - 200px) / 3);
    }
    .nr-box {
        font-size: 120px;
    }
    .nr-box-txt {
        font-size: 22px;
    }
}


.obs-hidden-box {
    opacity: 0;
    transform: translateY(30%);
    transition: all 1s ease-out;
}

.obs-show-box {
    opacity: 1;
    transform: translateY(0);
}


.obs-hidden-img {
    opacity: 0;
    transition: all 1s ease-out;
}

.obs-show-img {
    opacity: 1;
}


/* --- podstrona: headers --- */

.s-hd {
    margin: 30px 0;
}

@media (min-width: 992px) {
    .s-hd {
        margin: 45px 0;
    }
}
@media (min-width: 1200px) {
    .s-hd {
        margin: 50px 0;
    }
}
@media (min-width: 1400px) {
    .s-hd {
        margin: 60px 0;
    }
}

.s-hd h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    color: var(--accent-color-3);
}

@media (min-width: 420px) {

    .s-hd h1 {
        font-size: 33px;
    }
}
@media (min-width: 576px) {

    .s-hd h1 {
        font-size: 43px;
    }
}
@media (min-width: 768px) {

    .s-hd h1 {
        font-size: 48px;
    }
}
@media (min-width: 992px) {

    .s-hd h1 {
        font-size: 52px;
    }
}
@media (min-width: 1200px) {

    .s-hd h1 {
        font-size: 58px;
    }
}
@media (min-width: 1600px) {

    .s-hd h1 {
        font-size: 70px;
    }
}


.content-wrapper-subpage h2 {
    font-weight: 700;
    color: var(--accent-color-2);
}

.content-wrapper-subpage h3 {
    font-weight: 600;
    color: var(--accent-color-3);
}

.content-wrapper-subpage img {
    border-radius: 5px;
}

@media (min-width: 992px) {

    .content-wrapper-subpage > p {
        text-align: justify;
    }
}


/* --- stopka --- */

.footer-main {
    width: 100%;
    margin-top: 50px;
    padding: 30px 0;
    background: #154093;
    background: linear-gradient(125deg,rgba(21, 64, 147, 1) 0%, rgba(7, 7, 103, 1) 100%);
    font-size: 13px;
    font-weight: 400;
    color: var(--white-color);
}

.footer-main a {
    color: var(--white-color);
}
.footer-main a:hover {
    color: var(--accent-color-1);
}

.footer-boxes {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.footer-box:last-child {
    display: none;
}

.footer-adress-box, .footer-contact-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}

.footer-adress-img, .footer-contact-img {
    width: 38px;
    margin-right: 15px;
    margin-top: 7px;
    text-align: center;
}

.footer-adress-img img, .footer-contact-img img {
    height: 30px;
    margin-bottom: 8px;
}

.footer-adress-txt, .footer-contact-txt {
    max-height: 78px;
    overflow: hidden;
}

.footer-name {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
}

.footer-adress-txt p, .footer-contact-txt p {
    margin: 0;
}

@media (min-width: 768px) {
    .footer-main {
        padding: 50px 0;
    }
    .footer-boxes {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
    .footer-box {
        align-items: center;
        width: 50%;
    }
    .footer-adress-img, .footer-contact-img {
        width: auto;
        margin-right: 20px;
        text-align: left;
    }
}

@media (min-width: 992px) {

    .footer-main {
        margin-top: 70px;
        padding: 0;
        font-size: 14px;
    }
    .footer-in-bcg {
        background: linear-gradient(45deg,rgba(21, 64, 147, 0) 60%, rgba(255, 255, 255, 0.1) 60%);
        padding: 50px 0;
    }
    .footer-box {
        width: 33.3333%;
    }
    .footer-box:last-child {
        display: flex;
        justify-content: center;
    }
    .footer-adress-txt, .footer-contact-txt {
        max-height: 90px;
        overflow: hidden;
    }
    .footer-name {
        font-size: 26px;
    }
    .footer-logo-img img {
        max-height: 90px;
    }
}

@media (min-width: 1200px) {

    .footer-in-bcg {
        padding: 75px 0;
    }
}

@media (min-width: 1600px) {

    .footer-in-bcg {
        padding: 100px 0;
    }
}

@media (min-width: 2200px) {

    .footer-in-bcg {
        background: linear-gradient(45deg,rgba(21, 64, 147, 0) 55%, rgba(255, 255, 255, 0.1) 55%);
    }
}

@media (min-width: 6000px) {

    .footer-in-bcg {
        background: linear-gradient(45deg,rgba(21, 64, 147, 0) 53%, rgba(255, 255, 255, 0.1) 53%);
    }
}

.footer-sub {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 13px;
    background: var(--white-color);
    font-weight: 400;
    color: var(--black-color);
}

.footer-sub a {
    color: var(--accent-color-4);
    font-weight: 600;
}
.footer-sub a:hover {
    color: var(--accent-color-1);
}

.footer-sub-boxes {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-sub-box {
    width: auto;
}

.footer-sub-toright {
    padding-top: 15px;
    text-align: left;
}

@media (min-width: 992px) {

    .footer-sub-boxes {
        flex-direction: row;
    }
    .footer-sub-box {
        width: 50%;
    }
    .footer-sub-toright {
        padding-top: 0;
        text-align: right;
    }
}


/* --- all: listy i punktory --- */

.c-list {
    list-style-image: url(../img/list-image1.svg);
    padding-left: 35px;
}
.c-list li {
    padding: 3px 0 5px 5px;
    border-bottom: 0px;
}

.c-list-2 {
    list-style-image: url(../img/list-image2.svg);
    padding-left: 35px;
}
.c-list-2 li {
    padding: 3px 0 5px 5px;
    border-bottom: 0px;
}

.c-list-3 {
    list-style-image: url(../img/list-image3.svg);
    padding-left: 35px;
}
.c-list-3 li {
    padding: 3px 0 5px 5px;
    border-bottom: 0px;
}

.c-list-4 {
    list-style-image: url(../img/list-image4.svg);
    padding-left: 35px;
}
.c-list-4 li {
    padding: 3px 0 5px 5px;
    border-bottom: 0px;
}

/* --- offbox1 --- */

.offbox1 {
    text-align: left;
    border: 3px dotted #237cc2;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    background: #f7f7f7;
}

.offbox1 h3 { 
    margin-top: 0px;
    margin-bottom: 10px;
    font-weight: 700;
}

.offbox1 h3 a { 
    font-weight: 700;
}

.offbox1 h2 { 
    margin-top: 20px;
}

/* --- articles --- */

.art-boxes {
    margin-top: 40px;
}
.art-boxes-item {
    border: 2px solid #f4f4f4;
    margin-bottom: 15px;
    transition: border 0.3s ease-in-out, background 0.3s ease-in-out;
}

.art-boxes-item:hover {
    background: #f4f4f4;
    border: 2px solid #237cc2;
}

.art-boxes-item h2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.art-boxes-item h3 {
    margin: 0;
}

.art-boxes-item h3 > a {
    display: block;
    padding: 25px 15px;
}

.art-boxes-item:hover h3 > a {
    color: var(--accent-color);
}

/* --- qabox1 --- */

.qabox1 {
    text-align: left;
    border: 3px dotted #237cc2;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    background: #f7f7f7;
}

.qabox1 h2,
.qabox1 h3 { 
    margin-top: 0px;
    margin-bottom: 10px;
    font-weight: 700;
}

.qabox1 h2 a,
.qabox1 h3 a { 
    font-weight: 700;
}

/* --- cta-box-1 --- */

.cta-box-1 {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    border-radius: 5px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.cta-bx1-txt,
.cta-bx1-act {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 30px 15px 30px 25px;
    color: var(--white-color);
    font-size: 19px;
    font-weight: 600;
}

.cta-bx1-txt {
    border-radius: 5px 5px 0 0;
    background: var(--black-color);
    text-align: center;
}

.cta-bx1-act {
    border-radius: 0 0 5px 5px;
    background: var(--accent-color-1);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    transition: background .3s ease-in-out;
}

.cta-bx1-act:hover,
.cta-bx1-act:focus {
    background: var(--accent-color-3);
    color: var(--white-color);
}

.cta-bx1-act-icon {
    width: 50px;
}

.cta-bx1-act-icon img {
    max-height: 30px;
    width: auto;
}

.cta-bx1-act-txt {
    color: var(--white-color);
}

@media (min-width: 992px) {

    .cta-box-1 {
        flex-direction: row;
    }
    .cta-bx1-txt {
        width: 50%;
        height: 90px;
        border-radius: 5px 0 0 5px;
        text-align: left;
    }
    .cta-bx1-act {
        width: 50%;
        height: 90px;
        border-radius: 0 5px 5px 0;
        justify-content: left;
    }
}

@media (min-width: 1200px) {

    .cta-bx1-txt,
    .cta-bx1-act {
        height: 100px;
        font-size: 29px;
        padding: 27px 15px 30px 25px;
    }
}