/* GLOBAL */
a:focus {
    outline-color: #1E2849;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    margin: 0;
    height: 100%;
    width: 100%;
    padding: 0;
}
body {
    background-color: #fff;
    font-family: 'Montserrat';
    font-weight: 400;
    color:  #1B1B1B;
}
a {
    text-decoration: none;
}
li {
    line-height: 1.5;
}
.home h1 {
    font-size: 64px;
    font-weight: 400;
    line-height: 78px;
    color: #F4F4F4;
    text-transform: uppercase;
    letter-spacing: 3%;
}
h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 64px;
    color: #FFF;
    text-transform: uppercase;
}
h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    color: #1E2849;
    text-transform: uppercase;
}
h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 70px;
    color: #F4F4F4;
    text-transform: uppercase;
}
h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 35px;
    color: #1E2849;
    text-transform: uppercase;
}
h5 {
    color: #667C99;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 22%;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
}
h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}
p {
    line-height: 26px;
    font-size: 16px;
    color: #131313;
}
.text-center {
    text-align: center;
}
.cta-btn {
   display: inline-block;
    letter-spacing: 8%;
    font-size: 16px;
    line-height: 100%;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    position: relative;
    background: #1E2849;
    color: #F4F4F4;
    padding: 13px 32px;
    font-weight: 400; 
    text-transform: uppercase;
}
.cta-btn:hover {
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    background: #4B536D;
    color: #fff;
}
.btn-default {
    display: inline-block;
    letter-spacing: 8%;
    font-size: 16px;
    line-height: 100%;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    position: relative;
    background: #1E2849;
    color: #F4F4F4;
    padding: 18px 32px;
    font-weight: 600;
    text-transform: uppercase;
}
.btn-default:hover {
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    background: #4B536D;
    color: #fff;
}
.btn-default.btn-light {
    display: inline-block;
    letter-spacing: 8%;
    font-size: 16px;
    line-height: 100%;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    position: relative;
    background: #F4F4F4;
    color: #1E2849;
    padding: 18px 32px;
    font-weight: 600;
    text-transform: uppercase; 
}
.btn-default.btn-light:hover {
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    background: #E3E3EE;
    color: #1E2849;
}
.btn-default.btn-dark {
    display: inline-block;
    letter-spacing: 8%;
    font-size: 16px;
    line-height: 100%;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    position: relative;
    background: transparent;
    color: #fff;
    padding: 17px 32px;
    border: 1px solid #fff;
    font-weight: 600;
    text-transform: uppercase; 
}
.btn-default.btn-dark:hover {
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    background: #E3E3EE;
    color: #1E2849;
}
@media (max-width: 1400px) {
    .home h1 {
        font-size: 56px;
        line-height: 140%;
    }
    h2 {
        font-size: 36px;
        line-height: 140%;
    }
    h3 {
        font-size: 26px;
        line-height: 140%;
    }
    h4 {
        font-size: 20px;
        line-height: 140%;
    }
    .cta-btn {
        font-size: 15px;
    }
}
@media (max-width: 1200px) {
    .home h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 18px;
    }
    .cta-btn {
        padding: 13px 25px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .home h1 {
        font-size: 32px;
        line-height: 100%;
        letter-spacing: 3%;
    }
    h2 {
        font-size: 22px;
        line-height: 35px;
        letter-spacing: 0;
    }
    h3 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 10%;
    }
    h4 {
        font-size: 19px;
        line-height: 30px;
        letter-spacing: 0;
    }
    h5 {
        font-size: 13px;
        line-height: 26px;
        letter-spacing: 22%;
        margin-bottom: 15px;
    }
    h6 {
        font-size: 15px;
        line-height: 26px;
        letter-spacing: 0;
    }
    p {
        font-size: 15px;
    }
    .btn-default {
        width: 100%;
        padding: 16px 32px;
        text-align: center;
    }
    .cta-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* HEADER */
.main-header {
    width: 100%;
}
.main-header .menu-wrapper {
    padding: 18px 0px;
}
.main-header.fixed .menu-wrapper {
    position: fixed;
    background: linear-gradient(180deg, #324B8D 0%, #1F3266 100%), #324B8D;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    -webkit-animation: headerAnim .4s linear;
    animation: headerAnim .4s linear;
    -webkit-box-shadow: 0 1px 0px 1px rgba(0,0,0,.1);
    box-shadow: 0 1px 0px 1px rgba(0,0,0,.1);
}
.nav-menu-wrapper .menu-header{
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left
}
.nav-menu-wrapper .menu-header li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
    height: 100%;
}
.nav-menu-wrapper .menu-header li:first-child{
    margin-left: 0
}
.nav-menu-wrapper .menu-header li a{
    display: inline-block;
    vertical-align: middle;
    border-radius: 4px;
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
    letter-spacing: 8%;
    text-transform: uppercase;
    color: #1E2849;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.nav-menu-wrapper .menu-header li a:hover {
    color: #4B536D;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.nav-menu-wrapper .menu-header li .sub-menu{
    display:none;
    position:absolute;
    top:calc(100% - 1px);
    left:0;
    padding:14px 14px;
    min-width:250px;
    line-height:1;
    background-color:#fff;
    -webkit-box-shadow:0 4px 9px 1px rgba(0,0,0,.05);
    box-shadow:0 4px 9px 1px rgba(0,0,0,.05);
    text-align:left;
    z-index:20
}
.nav-menu-wrapper .menu-header li .sub-menu li{
    margin:0 0 0px;
    height:auto;
    line-height:1
}
.nav-menu-wrapper .menu-header li .sub-menu li a{
    font-size:1em
}
.nav-menu-wrapper .menu-header li.show-sub .sub-menu{
    display:block
}
.nav-menu-wrapper .menu-header li.open .sub-menu{
    display:block
}
.nav-menu-wrapper .menu-header li .sub-menu{
    display:none;
}
.nav-menu-wrapper .menu-header li:hover .sub-menu{
    display:block;
}
.navbar-br img {
    display: inline-block;
    vertical-align: middle;
    width: 288px;
    height: auto
}
.main-header .menu-wrapper .align-items-center {
    gap: 70px;
    flex-wrap: nowrap;
}
.btn-mobile-wrapper {
    display: none;
    text-align: center;
}
.btn-mobile-wrapper .menu-toggle {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
    background-color: transparent;
    border: none;
    z-index: 101;
}
.btn-mobile-wrapper .menu-toggle:focus{
    outline: 0;
}
.btn-mobile-wrapper .menu-toggle svg.close{
    display: none;
}
.main-header .menu-wrapper .header-menu-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.main-header .menu-wrapper .header-menu-container .right-side-menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 25px;
}
.main-header .menu-wrapper .header-menu-container .right-side-menu .phone-header-menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    color: #1E2849;
    font-size: 16px;
    letter-spacing: 8%;
    line-height: 100%;
}
.main-header .menu-wrapper .header-menu-container .right-side-menu .phone-header-menu:hover {
    color: #4B536D;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.main-header .menu-wrapper .col-md-3.col-9 {
    width: calc(25% - 35px);
}
.main-header .menu-wrapper .col-12.col-md-9 {
    width: calc(75% - 35px);
}
body.lock-scroll {
    overflow: hidden;
}
@keyframes headerAnim {
    0% {
        top: -100px;
    }
    100% {
        top: 0px;
    }
}
@-webkit-keyframes menuPanelAnim {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-12px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}
@keyframes menuPanelAnim {
    0% {
        opacity: 0;
        transform: translateY(-12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 1400px) {
    .main-header .menu-wrapper .align-items-center {
        gap: 30px;
    }
    .main-header .menu-wrapper .col-md-3.col-9 {
        width: calc(25% - 15px);
    }
    .navbar-br img {
        width: 100%;
        height: 32px;
    }
    .main-header .menu-wrapper .col-12.col-md-9 {
        width: calc(75% - 15px);
    }
    .nav-menu-wrapper .menu-header li {
        margin: 0;
    }
    .nav-menu-wrapper .menu-header li a {
        padding: 0px 10px;
        font-size: 15px;
    }
    .nav-menu-wrapper .menu-header li:first-child a {
        padding: 0px 10px 0 0;
    }
    .nav-menu-wrapper .menu-header li:last-child a {
        padding: 0px 0 0 10px;
    }
    .main-header .menu-wrapper .header-menu-container .right-side-menu {
        gap: 15px;
    }
    .main-header .menu-wrapper .header-menu-container .right-side-menu .phone-header-menu {
        font-size: 15px;
    }
}
@media (max-width: 1200px) {
    .main-header .menu-wrapper {
        padding: 15px 0px;
    }
    .main-header .menu-wrapper .align-items-center {
        gap: 14px;
    }
    .main-header .menu-wrapper .col-md-3.col-9 {
        width: calc(25% - 7px);
    }
    .main-header .menu-wrapper .col-12.col-md-9 {
        width: calc(75% - 7px);
    }
    .main-header .menu-wrapper .header-menu-container .right-side-menu {
        gap: 8px;
    }
    .nav-menu-wrapper .menu-header {
        display: flex;
        flex-direction: row;
    }
    .nav-menu-wrapper .menu-header li a {
        font-size: 14px;
    }
    .nav-menu-wrapper .menu-header li:first-child a {
        padding: 0 7px 0 0;
    }
    .nav-menu-wrapper .menu-header li a {
        padding: 0 7px;
    }
    .nav-menu-wrapper .menu-header li:last-child a {
        padding: 0 0 0 7px;
    }
    .main-header .menu-wrapper .header-menu-container .right-side-menu .phone-header-menu {
        gap: 7px;
        font-size: 14px;
    }
}
@media (max-width: 1024px) {
    .main-header {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 65px;
        line-height: 65px;
        z-index: 99;
        padding-top: 0;
        background-color: #fff;
        -webkit-transition: height .4s linear;
        -o-transition: height .4s linear;
        transition: height .4s linear;
    }
    .main-header .menu-wrapper {
        padding: 0;
        height: 65px;
        line-height: 65px;
        overflow: hidden;
        -webkit-animation: none;
        animation: none;
        -webkit-transition: height .4s linear;
        -o-transition: height .4s linear;
        transition: height .4s linear;
    }
    .main-header.fixed .menu-wrapper {
        position: relative;
        background: none;
        -webkit-animation: none;
        animation: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .main-header.active {
        height: 100vh;
    }
    .main-header.active .menu-wrapper {
        height: 100vh;
    }
    .main-header .menu-wrapper .align-items-center {
        gap: 0;
        flex-wrap: wrap;
    }
    .main-header .menu-wrapper .col-md-3.col-9 {
        width: auto;
    }
    .main-header .menu-wrapper .col-12.col-md-9 {
        width: 100%;
        padding: 0 50px;
    }
    .navbar-br {
        height: 100%;
        line-height: 65px;
    }
    .navbar-br img {
        width: 240px;
        height: 32px;
    }
    .btn-mobile-wrapper {
        display: block;
        width: auto;
        margin-left: auto;
    }
    .btn-mobile-wrapper .menu-toggle {
        color: #1E2849;
        line-height: 0;
        cursor: pointer;
        width: 26px;
        height: 26px;
        padding: 0;
    }
    .btn-mobile-wrapper .menu-toggle svg {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 26px;
        height: 26px;
        -webkit-transition: opacity .3s ease-out, -webkit-transform .3s ease-out;
        -o-transition: opacity .3s ease-out, -o-transform .3s ease-out;
        transition: opacity .3s ease-out, transform .3s ease-out;
    }
    .btn-mobile-wrapper .menu-toggle svg.open {
        opacity: 1;
        -webkit-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }
    .btn-mobile-wrapper .menu-toggle svg.close {
        display: block;
        opacity: 0;
        -webkit-transform: rotate(-90deg) scale(.5);
        -ms-transform: rotate(-90deg) scale(.5);
        transform: rotate(-90deg) scale(.5);
    }
    .btn-mobile-wrapper .menu-toggle.active svg.open {
        opacity: 0;
        -webkit-transform: rotate(90deg) scale(.5);
        -ms-transform: rotate(90deg) scale(.5);
        transform: rotate(90deg) scale(.5);
    }
    .btn-mobile-wrapper .menu-toggle.active svg.close {
        opacity: 1;
        -webkit-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }
    .main-header .menu-wrapper .header-menu-container {
        display: none;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: start;
        justify-content: flex-start;
        gap: 40px;
        margin-top: 0;
        padding-top: 85px;
        line-height: 1.4;
    }
    .main-header.active .menu-wrapper .header-menu-container {
        display: flex;
        -webkit-animation: menuPanelAnim .45s ease-out .1s both;
        animation: menuPanelAnim .45s ease-out .1s both;
    }
    .main-header.active .menu-wrapper .header-menu-container nav.nav-menu-wrapper {
        width: 100%;
    }
    .nav-menu-wrapper .menu-header {
        text-align: left;
        flex-direction: column;
        gap: 40px;
    }
    .nav-menu-wrapper .menu-header li {
        display: block;
        margin: 0 0 40px;
        line-height: 1.1;
    }
    .nav-menu-wrapper .menu-header li:last-child {
        margin: 0;
    }
    .nav-menu-wrapper .menu-header li a {
        font-size: 16px;
        line-height: 20px;
        color: #1E2849;
        padding: 0;
    }
    .nav-menu-wrapper .menu-header li .sub-menu {
        position: relative;
        display: none;
        top: 0;
        left: 0;
        min-width: 0;
        padding: 12px 0 0;
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        text-align: center;
    }
    .main-header .menu-wrapper .header-menu-container .right-side-menu {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        align-items: flex-start;
    }
    .main-header .menu-wrapper .header-menu-container .right-side-menu .phone-header-menu {
        justify-content: center;
        line-height: 20px;
    }
    .nav-menu-wrapper .menu-header li:last-child a {
        padding: 0;
    }
    .nav-menu-wrapper .menu-header li:first-child a {
        padding: 0;
    }
    .nav-menu-wrapper .menu-header li a {
        padding: 0;
    }
    .main-header .menu-wrapper .header-menu-container .right-side-menu .phone-header-menu {
        font-size: 16px;
        gap: 12px;
    }
}
@media (max-width: 991px) {
    .nav-menu-wrapper .menu-header li {
        margin: 0;
    }
    .nav-menu-wrapper .menu-header li a {
        font-size: 16px;
    }
}

/* STRONA GŁÓWNA */
section.services-se {
    padding: 120px 0;    
}
section.services-se h2.section-header-h2 {
    margin-bottom: 24px;
}
section.services-se span.section-line {
    border-left: 2px solid #667C99;
    height: 32px;
    display: flex;
    margin-bottom: 40px;
    text-align: center;
    justify-content: center;
    justify-self: center;
    justify-items: center;
}
section.services-se .services-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 50px;
}
section.services-se .services-list .services-boxes {
    width: calc(33.33% - 16px);
    border: 1px solid #E3E3EE;
    padding: 33px 24px 35px;
    -webkit-box-shadow: 0 6px 16px rgba(30, 40, 73, 0);
    box-shadow: 0 6px 16px rgba(30, 40, 73, 0);
    -webkit-transition: box-shadow .3s ease-out, border-color .3s ease-out;
    -o-transition: box-shadow .3s ease-out, border-color .3s ease-out;
    transition: box-shadow .3s ease-out, border-color .3s ease-out;
}
section.services-se .services-list .services-boxes:hover {
    border-color: #D5D5E4;
    -webkit-box-shadow: 0 6px 16px rgba(30, 40, 73, .05);
    box-shadow: 0 6px 16px rgba(30, 40, 73, .05);
}
section.services-se .services-list .services-boxes .service-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}
section.services-se .services-list .services-boxes .service-box .service-icon {
    margin-bottom: 24px;
}
section.services-se .services-list .services-boxes .service-box .service-icon img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform .4s ease-out;
    -o-transition: -o-transform .4s ease-out;
    transition: transform .4s ease-out;
}
section.services-se .services-list .services-boxes:hover .service-box .service-icon img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
section.services-se .services-list .services-boxes .service-box h4.service-header {
    margin-bottom: 20px;
}
section.services-se .services-list .services-boxes .service-box .service-button {
    display: flex;
    align-items: center;
    gap: 12px;
}
section.services-se .services-list .services-boxes .service-box .service-button a {
    color: #1E2849;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 6%;
    text-transform: uppercase;
}
section.services-se .services-list .services-boxes .service-box .service-button img {
    transform: rotate(0deg);
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    width: 19px;
    height: 19px;
}
section.services-se .services-list .services-boxes:hover .service-box .service-button img {
    transform: rotate(45deg);
}
section.about-us-se {
    background-color: #F4F4F4;
    background-repeat: no-repeat;
    background-position: right bottom;
}
section.about-us-se .align-items-center {
    justify-content: space-between;
}
section.about-us-se .col-12.col-lg-5 img {
    width: 100%;
    height: 100%;
}
section.about-us-se .about-us-image {
    overflow: hidden;
    line-height: 0;
}
section.about-us-se .about-us-image img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .5s ease-out;
    -o-transition: -o-transform .5s ease-out;
    transition: transform .5s ease-out;
}
section.about-us-se .about-us-image:hover img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}
section.about-us-se h2.section-header-h2 {
    margin-bottom: 24px;
}
section.about-us-se span.section-line {
    border-left: 2px solid #667C99;
    height: 32px;
    display: flex;
    margin-bottom: 40px;
}
section.about-us-se .about-us-text {
    margin-bottom: 50px;
}
section.blog-se {
    padding: 120px 0;
}
section.blog-se .section-header-text {
    margin: 20px 0 24px;
}
section.blog-se span.section-line {
    border-left: 2px solid #667C99;
    height: 32px;
    display: flex;
    margin-bottom: 40px;
    text-align: center;
    justify-content: center;
    justify-self: center;
    justify-items: center;
}
section.blog-se .blog-list {
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    gap: 30px;
}
section.blog-se .blog-list .blog-entries {
    width: calc(33.33% - 20px);
}
section.blog-se .blog-list .blog-entries a.blog-thumbnail {
    width: 100%;
    height: 340px;
    display: block;
    overflow: hidden;
}
section.blog-se .blog-list .blog-entries a.blog-thumbnail img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .5s ease-out;
    -o-transition: -o-transform .5s ease-out;
    transition: transform .5s ease-out;
}
section.blog-se .blog-list .blog-entries:hover a.blog-thumbnail img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
section.blog-se .blog-list .blog-entries .blog-entries-info {
    padding-top: 35px;
}
section.blog-se .blog-list .blog-entries .blog-entries-info .blog-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
section.blog-se .blog-list .blog-entries .blog-entries-info .blog-meta span.section-line {
    margin-bottom: 0;
    height: 16px;
    border-left: 1px solid #667C99;
}
section.blog-se .blog-list .blog-entries .blog-entries-info .blog-meta span {
    color: #667C99;
    font-size: 15px;
    line-height: 26px;
    text-transform: uppercase;
    letter-spacing: 3%;
}
section.blog-se .blog-list .blog-entries .blog-entries-info h4.blog-title {
    padding: 10px 0 25px;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}
section.blog-se .blog-list .blog-entries .blog-entries-info h4.blog-title a {
    color: #001025;
    letter-spacing: 0;
    width: 100%;
    display: block;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
} 
section.blog-se .blog-list .blog-entries .blog-entries-info h4.blog-title a:hover {
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    color: #4B536D;
}
section.blog-se .blog-list .blog-entries .blog-entries-info .blog-button {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}
section.blog-se .blog-list .blog-entries .blog-entries-info .blog-button a {
    color: #1E2849;
    font-size: 15px;
    letter-spacing: 6%;
    font-weight: 500;
    text-transform: uppercase;
}
section.blog-se .blog-list .blog-entries .blog-entries-info .blog-button img {
    transform: rotate(0deg);
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    width: 19px;
    height: 19px;
} 
section.blog-se .blog-list .blog-entries:hover .blog-entries-info .blog-button img {
    transform: rotate(45deg);
}
section.trusted-us-se {
    padding: 110px 0 120px;
    background-color: #F4F4F4;
}
section.trusted-us-se h2.section-header-h2 {
    margin-bottom: 24px;
}
section.trusted-us-se span.section-line {
    border-left: 2px solid #667C99;
    height: 32px;
    display: flex;
    margin-bottom: 40px;
    text-align: center;
    justify-content: center;
    justify-self: center;
    justify-items: center;
}
section.trusted-us-se .ti-widget.ti-goog .ti-footer.source-Google .ti-profile-img {
	flex: 0 0 64px!important;
	width: 64px!important;
	height: 64px!important;
	margin: 0 15px 0 0!important;
	overflow: hidden!important;
	background-image: url("/wp-content/uploads/2026/08/favicon.png")!important;
	background-repeat: no-repeat!important;
	background-position: center!important;
	background-size: 77%!important;
	background-color: #fff!important;
}
section.trusted-us-se .ti-widget.ti-goog .ti-footer.source-Google .ti-profile-img img {
	width: 0!important;
	height: 0!important;
	opacity: 0!important;
	visibility: hidden!important;
}
@media (max-width: 1400px) {
    section.services-se {
        padding: 100px 0;
    }
    section.services-se h2.section-header-h2 {
        margin-bottom: 20px;
    }
    section.services-se span.section-line {
        margin-bottom: 30px;
    }
    section.services-se .services-list {
        gap: 18px;
        margin-bottom: 35px;
    }
    section.services-se .services-list .services-boxes {
        width: calc(33.33% - 12px);
        padding: 30px 20px 32px;
    }
    section.services-se .services-list .services-boxes .service-box .service-icon {
        margin-bottom: 20px;
    }
    section.services-se .services-list .services-boxes .service-box h4.service-header {
        margin-bottom: 15px;
    }
    section.services-se .services-list .services-boxes .service-box {
        gap: 25px;
    }
    section.about-us-se h2.section-header-h2 {
        margin-bottom: 20px;
    }
    section.about-us-se span.section-line {
        margin-bottom: 30px;
    }
    section.about-us-se .about-us-text {
        margin-bottom: 35px;
    }
    section.about-us-se .about-us-text p:nth-child(2) {
        line-height: 20px;
    }
    section.blog-se {
        padding: 100px 0;
    }
    section.blog-se .section-header-text {
        margin: 15px 0 20px;
    }
    section.blog-se span.section-line {
        margin-bottom: 30px;
    }
    section.blog-se .blog-list {
        gap: 18px;
        margin-bottom: 35px;
    }
    section.blog-se .blog-list .blog-entries {
        width: calc(33.33% - 12px);
    }
    section.blog-se .blog-list .blog-entries a.blog-thumbnail {
        height: 280px;
    }
    section.blog-se .blog-list .blog-entries a.blog-thumbnail img {
        height: 280px;
    }
    section.blog-se .blog-list .blog-entries .blog-entries-info {
        padding-top: 20px;
    }
    section.blog-se .blog-list .blog-entries .blog-entries-info .blog-meta {
        gap: 8px;
    }
    section.blog-se .blog-list .blog-entries .blog-entries-info h4.blog-title {
        padding: 7px 0 20px;
        line-height: 140%;
    }
    section.trusted-us-se {
        padding: 100px 0;
    }
    section.trusted-us-se h2.section-header-h2 {
        margin-bottom: 20px;
    }
    section.trusted-us-se span.section-line {
        margin-bottom: 30px;
    }
}
@media (max-width: 1200px) {
    section.services-se {
        padding: 80px 0;
    }
    section.about-us-se .align-items-center {
        gap: 30px;
        flex-direction: row;
    }
    section.about-us-se .align-items-center .col-12.col-lg-5 {
        width: calc(50% - 15px);
    }
    section.about-us-se .align-items-center .col-12.col-lg-6 {
        width: calc(50% - 15px);
    }
    section.services-se .services-list {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    section.services-se .services-list .services-boxes {
        width: calc(50% - 10px);
    }
    section.about-us-se .about-us-content h5 {
        margin-bottom: 10px;
    }
    section.about-us-se h2.section-header-h2 {
        margin-bottom: 15px;
    }
    section.about-us-se span.section-line {
        height: 24px;
        margin-bottom: 20px;
    }
    section.about-us-se .about-us-text {
        margin-bottom: 25px;
    }
    section.about-us-se .about-us-text p {
        font-size: 15px;
    }
    section.about-us-se .about-us-text p:nth-child(2) {
        line-height: 15px;
    }
    section.blog-se {
        padding: 80px 0;
    }
    section.blog-se .blog-list {
        column-gap: 20px;
        row-gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }
    section.blog-se .blog-list .blog-entries {
        width: calc(50% - 10px);
    }
    section.trusted-us-se {
        padding: 80px 0;
    }
}
@media (max-width: 991px) {
    section.services-se {
        padding: 70px 0;
    }
    section.services-se .services-list {
        gap: 30px;
    }
    section.services-se .services-list .services-boxes {
        width: 100%;
    }
    section.about-us-se {
        padding: 0 0 70px;
    }
    section.about-us-se .align-items-center {
        flex-direction: column;
    }
    section.about-us-se .align-items-center .col-12.col-lg-5 {
        width: 100%;
    }
    section.about-us-se .align-items-center .col-12.col-lg-6 {
        width: 100%;
    }
    section.about-us-se .align-items-center .col-12.col-lg-6 .about-us-content {
        text-align: center;
    }
    section.about-us-se span.section-line {
        justify-content: center;
        justify-self: center;
        justify-self: center;
    }
    section.blog-se {
        padding: 70px 0;
    }
    section.blog-se .blog-list {
        gap: 30px;
    }
    section.blog-se .blog-list .blog-entries {
        width: 100%;
    }
    section.blog-se .blog-list .blog-entries a.blog-thumbnail {
        height: 350px;
    }
    section.blog-se .blog-list .blog-entries a.blog-thumbnail img {
        height: 350px;
    }
    section.trusted-us-se {
        padding: 70px 0;
    }
}
@media (max-width: 768px) {
    section.services-se {
        padding: 50px 0;
    }
    section.services-se h2.section-header-h2 {
        margin-bottom: 10px;
    }
    section.services-se span.section-line {
        margin-bottom: 30px;
    }
    section.services-se .services-list {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    section.services-se .services-list .services-boxes {
        width: 100%;
        padding: 31px 16px 28px;
    }
    section.services-se .services-list .services-boxes .service-box {
        gap: 35px;
    }
    section.services-se .services-list .services-boxes .service-box .service-icon {
        margin-bottom: 20px;
    }
    section.services-se .services-list .services-boxes .service-box h4.service-header {
        margin-bottom: 15px;
    }
    section.services-se .services-list .services-boxes .service-box .service-button img {
        width: 20px;
        height: 20px;
    }
    section.about-us-se {
        padding: 0 0 70px;
    }
    section.about-us-se .align-items-center {
        gap: 50px;
    }
    section.about-us-se .align-items-center .col-12.col-lg-5 {
        padding-left: 0!important;
        padding-right: 0!important;
    }
    section.about-us-se .about-us-content h5.section-header-h5 {
        text-align: center;
    }
    section.about-us-se h2.section-header-h2 {
        text-align: center;
        margin-bottom: 10px;
    }
    section.about-us-se span.section-line {
        justify-content: center;
        justify-self: center;
        justify-items: center;
        margin-bottom: 25px;
    }
    section.about-us-se .about-us-text {
        margin-bottom: 25px;
    }
    section.about-us-se .about-us-text p {
        text-align: center;
    }
    section.blog-se {
        padding: 50px 0;
    }
    section.blog-se .section-header-text {
        margin: 10px 0;
    }
    section.blog-se span.section-line {
        margin-bottom: 25px;
    }
    section.blog-se .blog-list {
        flex-direction: column;
        gap: 36px;
        margin-bottom: 30px;
    }
    section.blog-se .blog-list .blog-entries {
        width: 100%;
    }
    section.blog-se .blog-list .blog-entries a.blog-thumbnail {
        height: 230px;
    }
    section.blog-se .blog-list .blog-entries a.blog-thumbnail img {
        height: 230px;
    }
    section.blog-se .blog-list .blog-entries .blog-entries-info {
        padding-top: 25px;
    }
    section.blog-se .blog-list .blog-entries .blog-entries-info .blog-meta span {
        font-size: 13px;
    }
    section.blog-se .blog-list .blog-entries .blog-entries-info .blog-meta span.section-line {
        height: 13px;
    }
    section.blog-se .blog-list .blog-entries .blog-entries-info h4.blog-title {
        padding: 5px 0 15px;
        font-size: 19px;
        line-height: 30px;
    }
    section.blog-se .blog-list .blog-entries .blog-entries-info .blog-button img {
        width: 20px;
        height: 20px;
    }
    section.trusted-us-se {
        padding: 50px 0;
    }
    section.trusted-us-se h2.section-header-h2 {
        margin-bottom: 10px;
    }
    section.trusted-us-se span.section-line {
        margin-bottom: 15px;
    }
}

/* BANNER */
section.hero-se {
    height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    align-self: center;
    align-content: center;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
section.hero-se::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-image: inherit;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: heroZoom 6s ease-out forwards;
    animation: heroZoom 6s ease-out forwards;
}
section.hero-se .container {
    position: relative;
    z-index: 1;
}
.admin-bar section.hero-se {
    height: calc(100vh - 78px - 32px);
}
section.hero-se .row.align-items-center {
    gap: 50px;
}
section.hero-se .row.align-items-center .col-12.col-lg-7 {
    width: calc(58.33333333% - 25px);
}
section.hero-se .row.align-items-center .col-12.col-lg-5 {
    width: calc(41.66666667% - 25px);
}
section.hero-se .hero-header-h3 {
    letter-spacing: 20%;
}
section.hero-se .hero-text {
    margin: 24px 0;
    width: 500px;
}
section.hero-se .hero-text p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}
section.hero-se .section-line {
    border-left: 2px solid #667C99;
    height: 32px;
    display: block;
    margin-bottom: 40px;
}
section.hero-se .hero-buttons {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 25px;
    flex-wrap: nowrap;
}
section.hero-se .hero-sygnet img {
    width: 100%;
    height: 100%;
}
section.banner-se {
    position: relative;
    background-color: #1E2849;
    padding: 140px 0 115px;
}
section.banner-se::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-image: var(--bg-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    mix-blend-mode: multiply;
}
section.banner-se .container {
    position: relative;
    z-index: 1;
}
section.banner-se .banner-content {
    width: 80%;
}
section.banner-se .banner-content h5.banner-header-h5 {
    color: #F4F4F4;
}
section.banner-se .banner-content h1.banner-header-h1 {
    margin-bottom: 20px;
}
section.banner-se .banner-content .banner-text {
    width: 830px;
}
section.banner-se .banner-content .banner-text p {
    color: #fff;
}
.single-post section.banner-se .banner-content {
    width: 100%;
}
.single-post section.banner-se .banner-content nav.rank-math-breadcrumb p {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 20px;
}
.single-post section.banner-se .banner-content nav.rank-math-breadcrumb p a, .single-post section.banner-se .banner-content nav.rank-math-breadcrumb p span {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    transition: all .3s ease-out;
}
.single-post section.banner-se .banner-content nav.rank-math-breadcrumb p a:hover {
    transition: all .3s ease-out;
    color: #c3c3c3;
}
.single-post section.banner-se .banner-content .banner-meta {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.single-post section.banner-se .banner-content .banner-meta span {
    color: #fff;
    font-size: 15px;
    line-height: 100%;
    text-transform: uppercase;
}
.single-post section.banner-se .banner-content .banner-meta span.section-line {
    margin-bottom: 0;
    height: 16px;
    border-left: 1px solid #fff;
}
@-webkit-keyframes heroZoom {
    from {
        -webkit-transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.08);
    }
}
@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}
@media (max-width: 1400px) {
    section.hero-se .row.align-items-center {
        gap: 24px;
    }
    section.hero-se .row.align-items-center .col-12.col-lg-7 {
        width: calc(58.33333333% - 12px);
    }
    section.hero-se .row.align-items-center .col-12.col-lg-5 {
        width: calc(41.66666667% - 12px);
    }
    section.hero-se .hero-header-h3 {
        margin-bottom: 10px;
    }
    section.hero-se .hero-text {
        width: 550px;
        margin: 20px 0 30px;
    }
    section.banner-se .banner-content h1.banner-header-h1 {
        font-size: 42px;
        line-height: 54px;
    }
    section.banner-se .banner-content .banner-text {
        width: 100%;
    }
}
@media (max-width: 1200px) {
    .admin-bar section.hero-se {
        height: calc(100vh - 70px - 32px);
    }
    section.hero-se {
        height: calc(100vh - 70px);
    }
    section.hero-se .row.align-items-center .col-12.col-lg-7 {
        width: calc(60% - 12px);
    }
    section.hero-se .row.align-items-center .col-12.col-lg-5 {
        width: calc(40% - 12px);
    }
    section.banner-se .banner-content {
        width: 100%;
    }
    .single-post section.banner-se {
        padding: 120px 0;
    }
}
@media (max-width: 1024px) {
    .admin-bar section.hero-se {
        height: calc(100vh - 65px - 32px);
    }
    section.hero-se {
        height: calc(100vh - 65px);
    }
    .single-post section.banner-se .banner-content h1.banner-header-h1 {
        font-size: 36px;
        line-height: 48px;
    }
}
@media (max-width: 991px) {
    section.hero-se .row.align-items-center .col-12.col-lg-7 {
        width: 100%;
    }
    section.hero-se .row.align-items-center .col-12.col-lg-5 {
        display: none;
    }
    .single-post section.banner-se .banner-content nav.rank-math-breadcrumb p {
        flex-wrap: wrap;
    }
    .single-post section.banner-se .banner-content h1.banner-header-h1 {
        font-size: 32px;
        line-height: 140%;
    }
}
@media (max-width: 768px) {
    section.hero-se {
        height: auto;
        padding: 100px 0 90px;
    }
    .admin-bar section.hero-se {
        height: auto;
    }
    section.hero-se .row.align-items-center {
        flex-direction: column;
    }
    section.hero-se .row.align-items-center .col-12.col-lg-7 {
        width: 100%;
    }
    section.hero-se .hero-header-h3 {
        line-height: 140%;
        margin-bottom: 30px;
    }
    section.hero-se .hero-text {
        width: 315px;
        margin: 35px 0 12px;
    }
    section.hero-se .hero-text p {
        font-size: 15px;
    }
    section.hero-se .section-line {
        margin-bottom: 30px;
    }
    section.hero-se .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
    section.hero-se .row.align-items-center .col-12.col-lg-5 {
        display: none;
    }
    section.banner-se {
        padding: 100px 0;
    }
    section.banner-se .banner-content {
        width: 100%;
    }
    section.banner-se .banner-content h1.banner-header-h1 {
        font-size: 32px;
        line-height: 140%;
    }
    section.banner-se .banner-content .banner-text {
        width: 100%;
    }
    .single-post section.banner-se {
        padding: 100px 0;
    }
    .single-post section.banner-se .banner-content nav.rank-math-breadcrumb p {
        column-gap: 8px;
        row-gap: 2px;
    }
    .single-post section.banner-se .banner-content nav.rank-math-breadcrumb p a, .single-post section.banner-se .banner-content nav.rank-math-breadcrumb p span {
        font-size: 14px;
    }
    .single-post section.banner-se .banner-content h1.banner-header-h1 {
        font-size: 28px;
        line-height: 140%;
    }
    .single-post section.banner-se .banner-content .banner-meta {
        gap: 8px;
    }
    .single-post section.banner-se .banner-content .banner-meta span {
        font-size: 14px;
    }
    .single-post section.banner-se .banner-content .banner-meta span.section-line {
        height: 15px;
    }
}

/* USŁUGI */
section.services-page-se.services-page-se-1 {
    padding: 120px 0 60px;
    background-position: top 45px right;
    background-repeat: no-repeat;
}
section.services-page-se.services-page-se-1 .section-header.text-center h2.section-header-h2, section.services-page-se.services-page-se-2 .section-header.text-center h2.section-header-h2, section.services-page-se.services-page-se-3 .section-header.text-center h2.section-header-h2 {
    margin-bottom: 20px;
}
section.services-page-se.services-page-se-1 .section-header.text-center .section-header-text, section.services-page-se.services-page-se-2 .section-header.text-center .section-header-text, section.services-page-se.services-page-se-3 .section-header.text-center .section-header-text {
    width: 960px;
    display: flex;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    text-align: center;
}
section.services-page-se.services-page-se-1 .section-header.text-center span.section-line, section.services-page-se.services-page-se-2 .section-header.text-center span.section-line, section.services-page-se.services-page-se-3 .section-header.text-center span.section-line {
    border-left: 2px solid #667C99;
    height: 32px;
    display: flex;
    margin: 24px 0 40px;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    text-align: center;
}
section.services-page-se.services-page-se-1 .services-page-list, section.services-page-se.services-page-se-2 .services-page-list, section.services-page-se.services-page-se-3 .services-page-list {
    display: flex;
    flex-direction: row;
    column-gap: 26px;
    row-gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
section.services-page-se.services-page-se-1 .services-page-list .services-page-boxes, section.services-page-se.services-page-se-2 .services-page-list .services-page-boxes {
    width: calc(33.33% - 17.33px);
    border: 1px solid #E3E3EE;
    padding: 38px 24px 34px;
}
section.services-page-se.services-page-se-1 .services-page-list .services-page-boxes .services-page-box .services-page-icon, section.services-page-se.services-page-se-2 .services-page-list .services-page-boxes .services-page-box .services-page-icon, section.services-page-se.services-page-se-3 .services-page-list .services-page-boxes .services-page-box .services-page-icon {
    height: 60px;
    margin-bottom: 15px;
}
section.services-page-se.services-page-se-1 .services-page-list .services-page-boxes .services-page-box .services-page-text, section.services-page-se.services-page-se-2 .services-page-list .services-page-boxes .services-page-box .services-page-text, section.services-page-se.services-page-se-3 .services-page-list .services-page-boxes .services-page-box .services-page-text {
    margin-top: 20px;
}
section.services-page-se.services-page-se-2 {
    padding: 60px 0;
}
section.services-page-se.services-page-se-3 {
    padding: 60px 0 120px;
}
section.services-page-se.services-page-se-3 .services-page-list-wrap {
    padding: 0 90px;
}
section.services-page-se.services-page-se-3 .services-page-list-wrap .services-page-boxes {
    width: calc(25% - 19.5px);
    border: 1px solid #E3E3EE;
    padding: 38px 24px 34px;
}
section.services-page-se .services-page-list .services-page-boxes {
    -webkit-box-shadow: 0 6px 16px rgba(30, 40, 73, 0);
    box-shadow: 0 6px 16px rgba(30, 40, 73, 0);
    -webkit-transition: box-shadow .3s ease-out, border-color .3s ease-out;
    -o-transition: box-shadow .3s ease-out, border-color .3s ease-out;
    transition: box-shadow .3s ease-out, border-color .3s ease-out;
}
section.services-page-se .services-page-list .services-page-boxes:hover {
    border-color: #D5D5E4;
    -webkit-box-shadow: 0 6px 16px rgba(30, 40, 73, .05);
    box-shadow: 0 6px 16px rgba(30, 40, 73, .05);
}
section.services-page-se .services-page-list .services-page-boxes .services-page-box .services-page-icon img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform .4s ease-out;
    -o-transition: -o-transform .4s ease-out;
    transition: transform .4s ease-out;
}
section.services-page-se .services-page-list .services-page-boxes:hover .services-page-box .services-page-icon img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
@media (max-width: 1400px) {
    section.services-page-se.services-page-se-1 {
        padding: 100px 0 50px;
        background-size: 200px;
        background-position: top 20px right 15px;
    }
    section.services-page-se.services-page-se-1 .section-header.text-center span.section-line, section.services-page-se.services-page-se-2 .section-header.text-center span.section-line, section.services-page-se.services-page-se-3 .section-header.text-center span.section-line {
        margin: 20px 0 30px;
    }
    section.services-page-se.services-page-se-1 .services-page-list, section.services-page-se.services-page-se-2 .services-page-list, section.services-page-se.services-page-se-3 .services-page-list {
        column-gap: 18px;
        row-gap: 25px;
        margin-bottom: 35px;
        justify-content: center;
        justify-self: center;
        justify-items: center;
    }
    section.services-page-se.services-page-se-1 .services-page-list .services-page-boxes, section.services-page-se.services-page-se-2 .services-page-list .services-page-boxes {
        width: calc(33.33% - 12px);
        padding: 30px 20px 32px;
    }
    section.services-page-se.services-page-se-3 .services-page-list-wrap .services-page-boxes {
        width: calc(33.33% - 12px);
        padding: 30px 20px 32px;
    }
    section.services-page-se.services-page-se-2 {
        padding: 50px 0;
    }
    section.services-page-se.services-page-se-3 {
        padding: 50px 0 100px;
    }
}
@media (max-width: 1200px) {
    section.services-page-se.services-page-se-1 {
        padding: 80px 0 40px;
        background-size: 150px;
        background-position: top 15px right 10px;
    }
    section.services-page-se.services-page-se-1 .section-header.text-center h2.section-header-h2, section.services-page-se.services-page-se-2 .section-header.text-center h2.section-header-h2, section.services-page-se.services-page-se-3 .section-header.text-center h2.section-header-h2 {
        margin-bottom: 15px;
    }
    section.services-page-se.services-page-se-1 .section-header.text-center .section-header-text, section.services-page-se.services-page-se-2 .section-header.text-center .section-header-text, section.services-page-se.services-page-se-3 .section-header.text-center .section-header-text {
        width: 100%;
    }
    section.services-page-se.services-page-se-1 .services-page-list, section.services-page-se.services-page-se-2 .services-page-list, section.services-page-se.services-page-se-3 .services-page-list {
        gap: 20px;
    }
    section.services-page-se.services-page-se-1 .services-page-list .services-page-boxes, section.services-page-se.services-page-se-2 .services-page-list .services-page-boxes {
        width: calc(50% - 10px);
    }
    section.services-page-se.services-page-se-1 .services-page-list .services-page-boxes .services-page-box .services-page-icon, section.services-page-se.services-page-se-2 .services-page-list .services-page-boxes .services-page-box .services-page-icon, section.services-page-se.services-page-se-3 .services-page-list .services-page-boxes .services-page-box .services-page-icon {
        margin-bottom: 20px;
    }
    section.services-page-se.services-page-se-1 .services-page-list .services-page-boxes .services-page-box .services-page-text, section.services-page-se.services-page-se-2 .services-page-list .services-page-boxes .services-page-box .services-page-text, section.services-page-se.services-page-se-3 .services-page-list .services-page-boxes .services-page-box .services-page-text {
        margin-top: 15px;
    }
    section.services-page-se.services-page-se-2 {
        padding: 40px 0;
    }
    section.services-page-se.services-page-se-3 {
        padding: 40px 0 80px;
    }
    section.services-page-se.services-page-se-3 .services-page-list-wrap {
        max-width: 960px;
        padding-left: var(--bs-gutter-x,.75rem);
        padding-right: var(--bs-gutter-x,.75rem);
        margin-left: auto;
        margin-right: auto;
    }
    section.services-page-se.services-page-se-3 .services-page-list-wrap .services-page-boxes {
        width: calc(50% - 10px);
    }
}
@media (max-width: 991px) {
    section.services-page-se.services-page-se-1 {
        padding: 70px 0 35px;
    }
    section.services-page-se.services-page-se-1 .section-header.text-center span.section-line, section.services-page-se.services-page-se-2 .section-header.text-center span.section-line, section.services-page-se.services-page-se-3 .section-header.text-center span.section-line {
        margin: 15px 0 20px;
    }
    section.services-page-se.services-page-se-1 .services-page-list, section.services-page-se.services-page-se-2 .services-page-list, section.services-page-se.services-page-se-3 .services-page-list {
        gap: 30px;
    }
    section.services-page-se.services-page-se-1 .services-page-list .services-page-boxes, section.services-page-se.services-page-se-2 .services-page-list .services-page-boxes {
        width: 100%;
    }
    section.services-page-se.services-page-se-2 {
        padding: 35px 0;
    }
    section.services-page-se.services-page-se-3 {
        padding: 35px 0 70px;
    }
    section.services-page-se.services-page-se-3 .services-page-list-wrap {
        max-width: 720px;
    }
    section.services-page-se.services-page-se-3 .services-page-list-wrap .services-page-boxes {
        width: 100%;
    }
}
@media (max-width: 768px) {
    section.services-page-se.services-page-se-1 {
        padding: 50px 0 25px;
        background-size: 125px;
        background-position: top 10px right 10px;
    }
    section.services-page-se.services-page-se-1 .section-header.text-center h2.section-header-h2, section.services-page-se.services-page-se-2 .section-header.text-center h2.section-header-h2, section.services-page-se.services-page-se-3 .section-header.text-center h2.section-header-h2 {
        margin-bottom: 10px;
    }
    section.services-page-se.services-page-se-1 .section-header.text-center .section-header-text, section.services-page-se.services-page-se-2 .section-header.text-center .section-header-text, section.services-page-se.services-page-se-3 .section-header.text-center .section-header-text {
        width: 100%;
    }
    section.services-page-se.services-page-se-1 .section-header.text-center span.section-line, section.services-page-se.services-page-se-2 .section-header.text-center span.section-line, section.services-page-se.services-page-se-3 .section-header.text-center span.section-line {
        margin: 10px 0 25px;
    }
    section.services-page-se.services-page-se-1 .services-page-list, section.services-page-se.services-page-se-2 .services-page-list, section.services-page-se.services-page-se-3 .services-page-list {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    section.services-page-se.services-page-se-1 .services-page-list .services-page-boxes, section.services-page-se.services-page-se-2 .services-page-list .services-page-boxes {
        width: 100%;
        padding: 31px 16px 28px;
    }
    section.services-page-se.services-page-se-1 .services-page-list .services-page-boxes .services-page-box .services-page-icon, section.services-page-se.services-page-se-2 .services-page-list .services-page-boxes .services-page-box .services-page-icon, section.services-page-se.services-page-se-3 .services-page-list .services-page-boxes .services-page-box .services-page-icon {
        height: auto;
        margin-bottom: 20px;
    }
    section.services-page-se.services-page-se-1 .services-page-list .services-page-boxes .services-page-box .services-page-text, section.services-page-se.services-page-se-2 .services-page-list .services-page-boxes .services-page-box .services-page-text, section.services-page-se.services-page-se-3 .services-page-list .services-page-boxes .services-page-box .services-page-text {
        margin-top: 15px;
    }
    section.services-page-se.services-page-se-2 {
        padding: 25px 0;
    }
    section.services-page-se.services-page-se-3 {
        padding: 25px 0 50px;
    }
    section.services-page-se.services-page-se-3 .services-page-list-wrap {
        padding: 0 var(--bs-gutter-x,.75rem);
    }
    section.services-page-se.services-page-se-3 .services-page-list-wrap .services-page-boxes {
        width: 100%;
        padding: 31px 16px 28px;
    }
}
@media (min-width: 576px) and (max-width: 768px) {
    section.services-page-se.services-page-se-3 .services-page-list-wrap {
        max-width: 540px;
    }
}
@media (max-width: 575px) {
    section.services-page-se.services-page-se-3 .services-page-list-wrap {
        max-width: 100%;
    }
}

/* BLOG */
section.blog-se.blog-page-se {
    background-position: top 45px right;
    background-repeat: no-repeat;
    padding: 120px 0 60px;
}
section.blog-se.blog-page-se .blog-list {
    column-gap: 30px;
    row-gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
section.blog-se.blog-page-se nav.blog-pagination {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    text-align: center;
    margin-bottom: 60px;
}
section.blog-se.blog-page-se nav.blog-pagination a.page-numbers {
    height: 40px;
    width: 40px;
    color: #2A2D29;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    align-items: center;
    align-self: center;
    align-content: center;
}
section.blog-se.blog-page-se nav.blog-pagination span.page-numbers.current {
    height: 40px;
    width: 40px;
    color: #1E2849;
    background-color: #F4F4F4;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    align-items: center;
    align-self: center;
    align-content: center;
}
section.blog-se.blog-page-se nav.blog-pagination a.next.page-numbers, section.blog-se.blog-page-se nav.blog-pagination a.prev.page-numbers {
    height: 40px;
    width: 40px;
    color: #2A2D29;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    align-items: center;
    align-self: center;
    align-content: center;
}
section.blog-se.blog-page-se nav.blog-pagination a.next.page-numbers svg, section.blog-se.blog-page-se nav.blog-pagination a.prev.page-numbers svg {
    height: 24px;
    width: 24px;
    display: flex;
    text-align: center;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    align-items: center;
    align-self: center;
    align-content: center;
}
section.blog-se.blog-page-se nav.blog-pagination a.next.page-numbers svg path, section.blog-se.blog-page-se nav.blog-pagination a.prev.page-numbers svg path {
    stroke: #131313!important;
}
section.blog-se.other-posts-se {
    padding: 120px 0;
}
section.blog-se.other-posts-se span.section-line {
    margin: 25px 0 42px;
}
section.blog-se.other-posts-se .blog-list .blog-entries .blog-entries-info .blog-meta span.section-line {
    margin: 0;
}
@media (max-width: 1400px) {
    section.blog-se.blog-page-se {
        padding: 100px 0 40px;
        background-size: 150px;
        background-position: top 25px right 20px;
    }
    section.blog-se.blog-page-se .blog-list {
        column-gap: 18px;
        row-gap: 35px;
    }
    section.blog-se.blog-page-se nav.blog-pagination {
        margin-bottom: 60px;
    }
}
@media (max-width: 1200px) {
    section.blog-se.blog-page-se {
        padding: 80px 0 45px;
        background-size: 125px;
        background-position: top 25px right 20px;
    }
    section.blog-se.blog-page-se .blog-list {
        column-gap: 20px;
        row-gap: 40px;
        margin-bottom: 35px;
    }
    section.blog-se.blog-page-se nav.blog-pagination {
        margin-bottom: 35px;
    }
}
@media (max-width: 991px) {
    section.blog-se.blog-page-se .blog-list {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    section.blog-se.blog-page-se {
        background-image: none;
        padding: 50px 0 20px;
    }
    section.blog-se.blog-page-se .blog-list {
        gap: 36px;
        margin-bottom: 30px;
    }
    section.blog-se.blog-page-se nav.blog-pagination {
        margin-bottom: 30px;
    }
}

/* SINGLE POST */
section.post-content-se {
    background-repeat: no-repeat;
    background-position: top 45px right;
    background-color: #F4F4F4;
    padding: 120px 0 180px;
}
section.post-content-se .container {
    max-width: 960px;
    padding-left: 0!important;
    padding-right: 0!important;
}
section.post-content-se .post-content {
    background-color: #fff;
}
section.post-content-se .post-content .post-layout.post-layout-photo img {
    width: 100%;
    height: 100%;
}
section.post-content-se .post-content .post-layout.post-layout-photo {
    overflow: hidden;
    line-height: 0;
}
section.post-content-se .post-content .post-layout.post-layout-photo img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .5s ease-out;
    -o-transition: -o-transform .5s ease-out;
    transition: transform .5s ease-out;
}
section.post-content-se .post-content .post-layout.post-layout-photo:hover img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}
section.post-content-se .post-content .post-layout.post-layout-text:not(:last-child) {
	padding: 60px 50px 50px;
}
section.post-content-se .post-content .post-layout.post-layout-text:last-child {
    padding: 60px 50px 80px;
}
section.post-content-se .post-content .post-layout.post-layout-text h3 {
    font-size: 22px;
    line-height: 35px;
    color: #1E2849;
    margin: 40px 0 25px;
}
section.post-content-se .post-content .post-layout.post-layout-text h3:first-child {
	margin-top: 0;
}
section.post-content-se .post-content .post-layout.post-layout-text p {
    color: #212121;
}
section.post-content-se .post-content .post-layout.post-layout-text ul, section.post-content-se .post-content .post-layout.post-layout-text ol {
    padding-left: 35px;
}
section.post-content-se .post-content .post-layout.post-layout-text ol li {
	margin-bottom: 15px;
}
section.post-content-se .post-content .post-layout.post-layout-text ol li p {
	margin-top: 7px;
}
section.post-content-se .post-content p {
	margin-bottom: 7px;
}
section.post-content-se .post-content ul {
	margin-bottom: 7px;
}
section.blog-se.other-posts-se .blog-list {
    margin-bottom: 0;
}
@media (max-width: 1400px) {
    section.post-content-se {
        padding: 100px 0;
        background-size: 200px;
        background-position: top 25px right 20px;
    }
    section.blog-se.other-posts-se {
        padding: 100px 0;
    }
    section.blog-se.other-posts-se span.section-line {
        margin: 20px 0 30px;
    }
}
@media (max-width: 1200px) {
    section.post-content-se {
        padding: 80px 0;
        background-size: 100px;
        background-position: top 15px right 10px;
    }
	section.post-content-se .post-content .post-layout.post-layout-text:not(:last-child) {
		padding: 50px 40px 40px;
	}
    section.post-content-se .post-content .post-layout.post-layout-text:last-child {
        padding: 50px 40px 60px;
    }
    section.post-content-se .post-content .post-layout.post-layout-text h3 {
        margin: 35px 0 20px;
    }
    section.blog-se.other-posts-se {
        padding: 80px 0;
    }
    section.blog-se.other-posts-se .blog-list {
        column-gap: 20px;
        row-gap: 40px;
    }
}
@media (max-width: 1024px) {
    section.post-content-se .container {
        max-width: 720px;
    }
	section.post-content-se .post-content .post-layout.post-layout-text:not(:last-child) {
		padding: 35px 25px 25px;
	}
    section.post-content-se .post-content .post-layout.post-layout-text:last-child {
        padding: 35px 25px 40px;
    }
    section.post-content-se .post-content .post-layout.post-layout-text h3 {
        margin: 30px 0 20px;
    }
}
@media (max-width: 991px) {
    section.post-content-se {
        padding: 70px 0;
    }
    section.blog-se.other-posts-se {
        padding: 70px 0;
    }
    section.blog-se.other-posts-se span.section-line {
        margin: 15px 0 20px;
    }
    section.blog-se.other-posts-se .blog-list {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    section.post-content-se {
        padding: 50px 0;
        background-size: 75px;
        background-position: top 10px right 5px;
    }
	section.post-content-se .post-content .post-layout.post-layout-text:not(:last-child) {
		padding: 40px 20px 25px;
	}
    section.post-content-se .post-content .post-layout.post-layout-text:last-child {
        padding: 40px 20px 50px;
	}
    section.post-content-se .post-content .post-layout.post-layout-text h3 {
        margin: 25px 0 15px;
    }
	section.post-content-se .post-content .post-layout.post-layout-text ol li, section.post-content-se .post-content .post-layout.post-layout-text ul li {
		font-size: 15px;
	}
	section.post-content-se .post-content .post-layout.post-layout-text ul, section.post-content-se .post-content .post-layout.post-layout-text ol {
		padding-left: 20px;
	}
    section.blog-se.other-posts-se {
        padding: 50px 0;
    }
    section.blog-se.other-posts-se span.section-line {
        margin: 10px 0 25px;
    }
    section.blog-se.other-posts-se .blog-list {
        gap: 36px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    section.post-content-se .container {
        max-width: 540px;
    }
}
@media (max-width: 575px) {
    section.post-content-se .container {
        max-width: 100%;
        width: 100%;
        padding-left: var(--bs-gutter-x,.75rem)!important;
        padding-right: var(--bs-gutter-x,.75rem)!important;
    }
    section.post-content-se .post-content .post-layout.post-layout-text h3 {
        font-size: 20px;
        line-height: 140%;
        letter-spacing: 4%;
    }
}

/* O KANCELARII */
section.about-page-se {
    padding: 120px 0;
    background-repeat: no-repeat;
    background-position: top 45px right;
}
section.about-page-se .about-page-content span.section-line {
    border-left: 2px solid #667C99;
    height: 32px;
    display: flex;
    margin: 24px 0 40px;
}
section.about-page-se .about-page-content .about-page-text p:first-child {
    margin-bottom: 25px;
}
section.our-mission-se {
    padding: 120px 0;
    background-color: #F4F4F4;
    background-repeat: no-repeat;
    background-position: bottom right;
}
section.our-mission-se .our-mission-content.text-center span.section-line {
    border-left: 2px solid #667C99;
    height: 32px;
    display: flex;
    margin: 24px 0 40px;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    text-align: center;
}
section.our-mission-se .our-mission-content.text-center .our-mission-text {
    width: 700px;
    display: flex;
    text-align: center;
    justify-content: center;
    justify-self: center;
    justify-items: center;
}
section.about-details-se {
    padding: 120px 0;
}
section.about-details-se .container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
section.about-details-se .row.align-items-center.about-details-row {
    gap: 80px;
}
section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 {
    width: calc(50% - 40px);
}
section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list .about-details-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list .about-details-item span.about-details-number {
    color: #1E2849;
    font-size: 15px;
    letter-spacing: 22%;
    line-height: 26px;
}
section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 {
    width: calc(50% - 40px);
}
section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-image img {
    width: 100%;
    height: 1100px;
    object-fit: cover;
}
section.about-page-se .about-page-image {
    overflow: hidden;
    line-height: 0;
}
section.about-page-se .about-page-image img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .5s ease-out;
    -o-transition: -o-transform .5s ease-out;
    transition: transform .5s ease-out;
}
section.about-page-se .about-page-image:hover img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}
section.about-details-se .about-details-image {
    overflow: hidden;
    line-height: 0;
}
section.about-details-se .about-details-image img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .5s ease-out;
    -o-transition: -o-transform .5s ease-out;
    transition: transform .5s ease-out;
}
section.about-details-se .about-details-image:hover img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}
section.about-details-se .row.align-items-center.about-details-row.about-details-row-reverse {
    gap: 80px;
}
section.about-details-se .row.align-items-center.about-details-row.about-details-row-reverse .col-12.col-lg-6 {
    display: flex;
    justify-content: flex-end;
    justify-self: flex-end;
    justify-items: flex-end;
}
@media (max-width: 1400px) {
    section.about-page-se {
        padding: 100px 0;
        background-size: 225px;
        background-position: top 25px right 20px;
    }
    section.about-page-se .about-page-content span.section-line {
        margin: 20px 0 30px;
    }
    section.about-page-se .about-page-content .about-page-text p:first-child {
        margin-bottom: 20px;
    }
    section.our-mission-se {
        padding: 100px 0;
    }
    section.our-mission-se .our-mission-content.text-center span.section-line {
        margin: 20px 0 30px;
    }
    section.our-mission-se .our-mission-content.text-center .our-mission-text {
        width: 100%;
    }
    section.about-details-se {
        padding: 100px 0;
    }
    section.about-details-se .container {
        gap: 90px;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-image img {
        height: 1000px;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list, section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list {
        gap: 25px;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list .about-details-item,  section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list .about-details-item {
        gap: 12px;
    }
}
@media (max-width: 1200px) {
    section.about-page-se {
        padding: 80px 0;
        background-size: 150px;
    }
    section.about-page-se .about-page-content h5.section-header-h5 {
        margin-bottom: 10px;
    }
    section.about-page-se .about-page-content span.section-line {
        margin: 15px 0 20px;
    }
    section.about-page-se .about-page-content .about-page-text p:first-child {
        margin-bottom: 15px;
    }
    section.our-mission-se {
        padding: 80px 0;
    }
    section.our-mission-se .our-mission-content.text-center span.section-line {
        margin: 15px 0 20px;
    }
    section.our-mission-se .col-12.col-lg-8 {
        width: 80%;
    }
    section.about-details-se {
        padding: 80px 0;
    }
    section.about-details-se .row.align-items-center.about-details-row {
        gap: 30px;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6, section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 {
        width: calc(50% - 15px);
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-image img {
        height: 1100px;
    }
    section.about-details-se .container {
        gap: 80px;
    }
    section.about-details-se .row.align-items-center.about-details-row.about-details-row-reverse {
        gap: 30px;
    }
}
@media (max-width: 991px) {
    section.about-page-se {
        padding: 70px 0;
        background-size: 100px;
        background-position: top 10px right 5px;
    }
    section.about-page-se .align-items-center {
        flex-direction: column-reverse;
        gap: 35px;
    }
    section.our-mission-se {
        padding: 70px 0;
    }
    section.our-mission-se .col-12.col-lg-8 {
        width: 100%;
    }
    section.about-details-se {
        padding: 70px 0;
    }
    section.about-details-se .container {
        gap: 70px;
    }
    section.about-details-se .row.align-items-center.about-details-row {
        flex-direction: column;
        gap: 35px;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6, section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 {
        width: 100%;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list .about-details-item, section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list .about-details-item {
        gap: 15px;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list, section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list {
        gap: 30px;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-image img {
        height: 550px;
        object-fit: cover;
        object-position: center;
    }
    section.about-details-se .row.align-items-center.about-details-row.about-details-row-reverse {
        flex-direction: column-reverse;
        gap: 35px;
    }
    section.about-details-se .row.align-items-center.about-details-row.about-details-row-reverse .col-12.col-lg-6 {
        width: 100%;
    }
    section.about-details-se .row.align-items-center.about-details-row.about-details-row-reverse .col-12.col-lg-6 .about-details-image {
        width: 100%;
    }
}
@media (max-width: 768px) {
    section.about-page-se {
        padding: 50px 0;
        background-size: 150px;
        background-position: top 15px right 10px;
    }
    section.about-page-se .align-items-center {
        gap: 25px;
    }
    section.about-page-se .about-page-content span.section-line {
        margin: 10px 0 25px;
    }
    section.about-page-se .about-page-content .about-page-text p:first-child {
        margin-bottom: 12px;
    }
    section.our-mission-se {
        padding: 50px 0;
    }
    section.our-mission-se .our-mission-content.text-center span.section-line {
        margin: 10px 0 25px;
    }
    section.about-details-se {
        padding: 50px 0;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list, section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list {
        gap: 20px;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list .about-details-item, section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list .about-details-item {
        gap: 8px;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list .about-details-item span.about-details-number {
        font-size: 13px;
        line-height: 20px;
    }
    section.about-details-se .row.align-items-center.about-details-row {
        gap: 30px;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-image img {
        height: 500px;
    }
    section.about-details-se .container {
        gap: 50px;
    }
    section.about-details-se .row.align-items-center.about-details-row.about-details-row-reverse {
        gap: 30px;
    }
}
@media (max-width: 576px) {
    section.about-page-se {
        background-size: 100px;
        background-position: top 10px right 5px;
    }
    section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list, section.about-details-se .row.align-items-center.about-details-row .col-12.col-lg-6 .about-details-list {
        gap: 24px;
    }
}

/* KONTAKT */
section.contact-se {
    padding: 120px 0 150px;
}
section.contact-se .row.align-items-center {
    justify-content: space-between;
}
section.contact-se .contact-info span.section-line {
    border-left: 2px solid #667C99;
    height: 32px;
    display: flex;
    margin: 24px 0 40px;
}
section.contact-se .contact-info h3.contact-header-h3 {
    color: #1E2849;
    font-size: 22px;
    line-height: 35px;
    font-weight: 500;
    width: 380px;
    margin-bottom: 30px;
}
section.contact-se .contact-info ul.contact-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
section.contact-se .contact-info ul.contact-list li {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}
section.contact-se .contact-info ul.contact-list li span.contact-list-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.contact-se .contact-info ul.contact-list li span.contact-list-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
section.contact-se .contact-info ul.contact-list li a {
    color: #191919;
    font-size: 16px;
    line-height: 100%;
    transition: all .3s ease-out;
}
section.contact-se .contact-info ul.contact-list li a:hover {
    transition: all .3s ease-out;
    color: #1E2849;
}
section.contact-se .contact-info .contact-text p:first-child {
    margin-bottom: 24px;
}
section.contact-se .contact-map iframe {
    width: 100%;
    height: 650px;
}
@media (max-width: 1400px) {
    section.contact-se {
        padding: 100px 0;
    }
    section.contact-se .contact-info span.section-line {
        margin: 20px 0 30px;
    }
    section.contact-se .contact-info h3.contact-header-h3 {
        margin-bottom: 25px;
    }
    section.contact-se .contact-info ul.contact-list, section.contact-se .contact-info .contact-text p:first-child {
        margin-bottom: 20px;
    }
    section.contact-se .contact-map iframe {
        height: 500px;
    }
}
@media (max-width: 1200px) {
    section.contact-se {
        padding: 80px 0;
    }
    section.contact-se .row.align-items-center {
        gap: 50px;
    }
    section.contact-se .row.align-items-center .col-12.col-lg-5 {
        width: calc(50% - 25px);
    }
    section.contact-se .row.align-items-center .col-12.col-lg-6 {
        width: calc(50% - 25px);
    }
    section.contact-se .contact-info span.section-line {
        margin: 15px 0 20px;
    }
}
@media (max-width: 991px) {
    section.contact-se {
        padding: 70px 0;
    }
    section.contact-se .row.align-items-center {
        flex-direction: column;
        gap: 35px;
    }
    section.contact-se .row.align-items-center .col-12.col-lg-5 {
        width: 100%;
    }
    section.contact-se .row.align-items-center .col-12.col-lg-6 {
        width: 100%;
    } 
    section.contact-se .contact-info h3.contact-header-h3 {
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    section.contact-se {
        padding: 50px 0;
    }
    section.contact-se .contact-info span.section-line {
        margin: 10px 0 25px;
    }
    section.contact-se .contact-info h3.contact-header-h3 {
        width: 100%;
    }
    section.contact-se .row.align-items-center {
        gap: 30px;
    }
}
@media (max-width: 576px) {
    section.contact-se .row.align-items-center {
        gap: 20px;
    }
    section.contact-se .contact-info .contact-text p:first-child {
        margin-bottom: 12px;
    }
}

/* POLITYKA PRYWATNOŚCI */


/* CTA */
section.footer-cta-se {
    padding: 170px 0;
    background-image: var(--bg-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
section.footer-cta-se h2.section-header-h2 {
    margin-bottom: 20px;
    color: #fff;
}
section.footer-cta-se .footer-cta-text {
    width: 590px;
}
section.footer-cta-se .footer-cta-text p {
    color: #F4F4F4;
    font-size: 16px;
    line-height: 26px;
}
section.footer-cta-se span.section-line {
    border-left: 2px solid #667C99;
    height: 32px;
    display: flex;
    margin: 24px 0 40px;
}
section.footer-cta-se .footer-cta-content .footer-cta-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
}
section.footer-cta-se .footer-cta-content .footer-cta-buttons .btn-default.btn-light {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}
@media (max-width: 1400px) {
    section.footer-cta-se {
        padding: 140px 0;
    }
    section.footer-cta-se span.section-line {
        margin: 20px 0 30px;
    }
    section.footer-cta-se .footer-cta-content .footer-cta-buttons {
        gap: 20px;
    }
}
@media (max-width: 1200px) {
    section.footer-cta-se {
        padding: 120px 0;
    }
}
@media (max-width: 991px) {
    section.footer-cta-se {
        padding: 90px 0;
    }
}
@media (max-width: 768px) {
    section.footer-cta-se {
        padding: 80px 0 95px;
        margin-bottom: -1px;
        background-image: var(--bg-image-mobile, var(--bg-image));
    }
    section.footer-cta-se h5.section-header-h5 {
        margin-bottom: 8px;
    }
    section.footer-cta-se h2.section-header-h2 {
        margin-bottom: 10px;
        width: 200px;
    }
    section.footer-cta-se .footer-cta-text {
        width: 290px;
    }
    section.footer-cta-se .footer-cta-text p {
        font-size: 15px;
    }
    section.footer-cta-se span.section-line {
        margin: 8px 0 16px;
    }
    section.footer-cta-se .footer-cta-content .footer-cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    section.footer-cta-se .footer-cta-content .footer-cta-buttons .btn-default.btn-light {
        justify-content: center;
        justify-self: center;
        justify-items: center;
        text-align: center;
    }
}

/* FOOTER */
footer.footer-se {
    padding: 80px 0 50px;
    background-color: #141B33;
}
footer.footer-se .top-footer {
    padding-bottom: 60px;
    display: flex;
    flex-direction: row;
    gap: 60px;
    justify-content: space-between;
}
footer.footer-se .top-footer .footer-column.footer-column-brand {
    width: calc(22% - 15px);
}
footer.footer-se .top-footer .footer-column.footer-column-brand a img {
	width: auto;
	height: 100px;
	margin-bottom: 20px;
}
footer.footer-se .top-footer .footer-column.footer-column-brand .footer-text p {
	color: #F4F4F4;
	line-height: 31px;
}
footer.footer-se .top-footer .footer-column.footer-column-menu {
    width: calc(12% - 15px);
}
footer.footer-se .top-footer .footer-column.footer-column-menu ul li {
	margin-bottom: 8px;
}
footer.footer-se .top-footer .footer-column.footer-column-menu ul li:last-child {
	margin-bottom: 0px;
}
footer.footer-se .top-footer .footer-column.footer-column-menu ul li a {
	line-height: 26px;
	color: #fff;
}
footer.footer-se .top-footer .footer-column.footer-column-menu ul li a:hover {
    color: #c3c3c3;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
footer.footer-se .top-footer .footer-column.footer-column-menu h6.footer-column-title {
	margin-bottom: 10px;
}
footer.footer-se .top-footer .footer-column.footer-column-posts {
    width: calc(36% - 15px);
}
footer.footer-se .top-footer .footer-column.footer-column-posts ul li {
	margin-bottom: 8px;
}
footer.footer-se .top-footer .footer-column.footer-column-posts ul li:last-child {
	margin-bottom: 0;
}
footer.footer-se .top-footer .footer-column.footer-column-posts ul li a {
	line-height: 26px;
	color: #fff;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
footer.footer-se .top-footer .footer-column.footer-column-posts ul li a:hover {
    color: #c3c3c3;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
footer.footer-se .top-footer .footer-column.footer-column-posts h6.footer-column-title {
	margin-bottom: 10px;
}
footer.footer-se .top-footer .footer-column.footer-column-contact {
    width: calc(30% - 15px);
}
footer.footer-se .top-footer .footer-column.footer-column-contact .footer-text p {
	color: #F4F4F4;
}
footer.footer-se .top-footer .footer-column.footer-column-contact .footer-text p:last-child {
	margin-bottom: 22px;
}
footer.footer-se .top-footer .footer-column.footer-column-contact .footer-text:last-child p:last-child {
	margin-bottom: 0px;
}
footer.footer-se .top-footer .footer-column.footer-column-contact ul.footer-info {
	margin-bottom: 20px
}
footer.footer-se .top-footer .footer-column.footer-column-contact ul.footer-info li {
	margin-bottom: 8px;
	display: flex;
	flex-direction: row;
	gap: 12px;
	align-items: center;
}
footer.footer-se .top-footer .footer-column.footer-column-contact ul.footer-info li:last-child {
	margin-bottom: 0px;
}
footer.footer-se .top-footer .footer-column.footer-column-contact ul.footer-info li .footer-info-icon {
	height: 17px;
}
footer.footer-se .top-footer .footer-column.footer-column-contact ul.footer-info li a {
	color: #F4F4F4;
	line-height: 26px;
}
footer.footer-se .top-footer .footer-column.footer-column-contact ul.footer-info li a:hover {
    color: #c3c3c3;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
footer.footer-se .bottom-footer .sub-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row;
    justify-content: center;
    justify-self: center;
    justify-items: center;
}
footer.footer-se .bottom-footer .sub-footer p.copy-text {
	color: #fff;
	font-size: 16px;
	line-height: 26px;
	text-transform: uppercase;
}
footer.footer-se .bottom-footer .sub-footer span.section-line {
	margin-bottom: 0;
    height: 16px;
    border-left: 2px solid #fff;
}
footer.footer-se .bottom-footer .sub-footer a.privacy-link {
	color: #fff;
	text-transform: uppercase;
}
footer.footer-se .bottom-footer .sub-footer a.privacy-link:hover {
    color: #c3c3c3;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
    section.hero-se::before {
        -webkit-animation: none;
        animation: none;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    section.services-se .services-list .services-boxes:hover .service-box .service-icon img, section.about-us-se .about-us-image:hover img, section.blog-se .blog-list .blog-entries:hover a.blog-thumbnail img, section.services-page-se .services-page-list .services-page-boxes:hover .services-page-box .services-page-icon img, section.post-content-se .post-content .post-layout.post-layout-photo:hover img, section.about-page-se .about-page-image:hover img, section.about-details-se .about-details-image:hover img {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
@media (max-width: 1400px) {
    footer.footer-se {
        padding: 60px 0 30px;
    }
    footer.footer-se .top-footer {
        gap: 40px;
        padding-bottom: 40px;
    }
    footer.footer-se .top-footer .footer-column.footer-column-brand {
        width: calc(23% - 10px);
    }
    footer.footer-se .top-footer .footer-column.footer-column-brand .footer-text p {
        font-size: 15px;
        line-height: 30px;
    }
    footer.footer-se .top-footer .footer-column.footer-column-menu {
        width: calc(15% - 10px);
    }
    footer.footer-se .top-footer .footer-column.footer-column-posts {
        width: calc(31% - 10px);
    }
    footer.footer-se .top-footer .footer-column.footer-column-contact {
        width: calc(31% - 10px);
    }
}
@media (max-width: 1200px) {
    footer.footer-se .top-footer {
        flex-wrap: wrap;
        row-gap: 55px;
    }
    footer.footer-se .top-footer .footer-column.footer-column-brand {
        width: calc(50% - 20px);
    }
    footer.footer-se .top-footer .footer-column.footer-column-menu {
        width: calc(50% - 20px);
    }
    footer.footer-se .top-footer .footer-column.footer-column-posts {
        width: calc(50% - 20px);
    }
    footer.footer-se .top-footer .footer-column.footer-column-contact {
        width: calc(50% - 20px);
    }
}
@media (max-width: 991px) {
    footer.footer-se .bottom-footer .sub-footer {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }
    footer.footer-se .bottom-footer .sub-footer span.section-line {
        display: none;
    }
}
@media (max-width: 768px) {
    footer.footer-se {
        padding: 40px 0 25px;
    }
    footer.footer-se .top-footer {
        flex-direction: column;
        gap: 24px;
        padding-bottom: 35px;
    }
    footer.footer-se .top-footer .footer-column.footer-column-brand, footer.footer-se .top-footer .footer-column.footer-column-menu, footer.footer-se .top-footer .footer-column.footer-column-posts, footer.footer-se .top-footer .footer-column.footer-column-contact {
        width: 100%;
    }
    footer.footer-se .top-footer .footer-column.footer-column-brand a img {
        width: 100%;
        height: 110px;
        margin-bottom: 30px;
    }
    footer.footer-se .top-footer .footer-column.footer-column-brand .footer-text p {
        line-height: 30px;
    }
    footer.footer-se .top-footer .footer-column.footer-column-menu ul li a {
        font-size: 15px;
    }
    footer.footer-se .top-footer .footer-column.footer-column-posts ul li a {
        font-size: 15px;
    }
     footer.footer-se .top-footer .footer-column.footer-column-contact {
        margin-top: 4px;
    }
    footer.footer-se .top-footer .footer-column.footer-column-contact .footer-text p:last-child {
        margin-bottom: 16px;
    }
    footer.footer-se .top-footer .footer-column.footer-column-contact ul.footer-info {
        margin-bottom: 15px;
    }
    footer.footer-se .top-footer .footer-column.footer-column-contact ul.footer-info li {
        margin-bottom: 10px;
    }
    footer.footer-se .top-footer .footer-column.footer-column-contact ul.footer-info li a {
        font-size: 15px;
    }
    footer.footer-se .bottom-footer .sub-footer {
        flex-direction: column;
        justify-content: center;
        justify-self: center;
        justify-items: center;
        text-align: center;
        gap: 12px;
    }
    footer.footer-se .bottom-footer .sub-footer p.copy-text {
        font-size: 15px;
    }
    footer.footer-se .bottom-footer .sub-footer span.section-line {
        display: none;
    }
    footer.footer-se .bottom-footer .sub-footer a.privacy-link {
        font-size: 15px;
    }
}