/* Navigation */
/* Begin */
* {
    --white-color: #ffffff;
    --light-blue-color: #F9FBFD;
    --primary-color: #126691;
    --primary-dark-color: #112437;
    --primary-dark-color-2: #154178;
    --primary-dark-color-3: #062956;
    --primary-gray-color: #595959;
    --dark-gray-color: #333333;
    --light-gray-color: #f5f5f5;
    --gray-color-1: #efefef;
    --gray-color-2: #e3e3e3;
    --gray-color-8: #1e1e1e;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    background-color: var(--white-color);
}

h2 {
    color: var(--gray-color-8);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 11px;
}

.subtitle {
    color: var(--primary-gray-color);
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 30px;
}

.p-width {
    max-width: 900px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

a.read-more {
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
    font-size: 14px;
    color: var(--primary-color);
    transition: 0.3s;
}

a.read-more:hover {
    color: var(--primary-dark-color);
    margin-left: 10px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 30px;
}

.container-footer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 30px;
}

.border-top {
    border-top: 1px solid var(--gray-color-1);
}

.nav-separator {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    padding: 10px 0 4px;
    display: block;
    pointer-events: none;
    cursor: default;
}


@media(max-width: 991px){
    .top-header {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #fff;
        color: var(--dark-gray-color);
        padding: 0 20px;
        border-bottom: 1px solid #eee;
        font-size: 11px;
        z-index: 1000;
    }

    .top-header .contact a {
        color: var(--dark-gray-color);
        margin-right: 10px;
    }

    .top-header .contact a span {
        margin-right: 10px;
        transition: 0.3s;
    }

    .top-header a span:hover {
        color: var(--primary-color);
    }

    .top-header span.bold {
        font-weight: 600;
    }

    header {
        position: sticky;
        top: 35px;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 3px 7px rgba(0, 0, 0, .05);
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 59px;
        z-index: 1000;
    }
    /*---------------------
    HAMBURGER MENU
    ----------------------*/

    .hamburger-menu {
        position: fixed;
        top: 35px;
        right: 0;
        padding-top: 17px;
        padding-right: 20px;
        /* width: 100%; */
        height: 34px;
        cursor: pointer;
        z-index: 10001;
        background: #fff;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .bar,
    .bar:after,
    .bar:before {
        width: 30px;
        height: 3px;
    }

    .bar {
        position: relative;
        transform: translateY(10px);
        background: black;
        transition: all 0ms 300ms;
    }

    .bar.animate {
        background: rgba(255, 255, 255, 0);
    }

    .bar:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 10px;
        background: black;
        transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .bar:after {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        background: black;
        transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .bar.animate:after {
        top: 0;
        transform: rotate(45deg);
        transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .bar.animate:before {
        bottom: 0;
        transform: rotate(-45deg);
        transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    /*---------------------
    Mobiles Menu 
    ----------------------*/
    /*---------------------
    Mobiles Menu - Design 
    ----------------------*/
    .mobile-menu ul {
        margin: 0;
        padding: 0;
    }

    .mobile-menu li {
        font-size: 20px;
        line-height: 30px;
        margin: 0;
        overflow: hidden;
        padding: 5px;
        position: relative;
        text-align: left;
        text-transform: uppercase;
        padding-left:15px;
    }

    .mobile-menu li:first-child {
        margin-top: 70px;
    }

    .mobile-menu li:hover {
        background: var(--light-blue-color);
    }

    .mobile-menu li a {
        text-decoration: none;
        color: black;
    }

        /*---------------------
        Mobiles Menu - Slide IN 
        ----------------------*/

    .mobile-menu {
        top: 0;
        max-width: 350px;
        left: -100%;
        width: 100%;
        background: #fff;
        color: black;
        height: 100%;
        position: fixed;
        z-index: 10000;
        overflow-y: auto;
        -webkit-transform: translate3d(0, 0, 205px);
        -moz-transform: translate3d(0, 0, 205px);
        transform: translate3d(0, 0, 205px);
        -webkit-transition: all 500ms ease-in-out;
        -moz-transition: all 500ms ease-in-out;
        transition: all 500ms ease-in-out;
    }

    .mobile-menu.active {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition: all 500ms ease-in-out;
        -moz-transition: all 500ms ease-in-out;
        transition: all 500ms ease-in-out;
    }

        /*---------------------
        Mobiles Menu - Dropdown Submenu
        ----------------------*/

    .has-children:hover{
        cursor:hand;
    }

    .children {
        display:none;	
    }

    .mobile-menu .children li:first-child {
        margin-top: 0px;
    }

    .icon-arrow {
        position: absolute;
        display: block;
        font-size: 0.7em;
        color: black;
        top: 5px;
        right: 10px;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg); 
            transition: .6s;
        -webkit-transition: .6s;
        -moz-transition: .6s;	 
    }
    
    .icon-arrow:after {
        content: "\25BC";
    }

    .icon-arrow.open {
        transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg); 
        transition: .6s;
        -webkit-transition: .6s;
        -moz-transition: .6s; 		
    }
}

@media(max-width: 499px){
    .top-header .contact a {
        margin-right: 0;
    }

    .top-header .contact a span {
        margin-right: 5px;
    }

    .top-header .social-media a i {
        font-size: 15px;
        margin-left: 2px;
    }
}

.btn {
    padding: 10px;
    font-size: 15px;
}

.btn-primary-color {
    color: var(--white-color) !important;
    background-color: var(--primary-color);
    border: 1px;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-primary-color:hover {
    background-color: var(--primary-dark-color);
}


@media(min-width: 992px) {
    .top-header {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        height: 35px;
        background-color: #fff;
        color: var(--dark-gray-color);
        border-bottom: 1px solid #eee;
        font-size: 11px;
        z-index: 1000;
        padding: 4px 0;
    }

    .top-header .contact a {
        color: var(--dark-gray-color);
        margin-right: 10px;
    }

    .top-header .contact a span {
        margin-right: 10px;
        transition: 0.3s;
    }

    .top-header a span:hover {
        color: var(--primary-color);
    }

    .top-header span.bold {
        font-weight: 600;
    }

    header {
        position: sticky;
        top: 35px;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 3px 7px rgba(0, 0, 0, .05);
        z-index: 1000;
    }

    header .logo {
        font-weight: bolder;
        font-size: 16px;
        color: var(--dark-gray-color);
    }

    header .mobile-menu ul {
        list-style: none;
    }

    header .mobile-menu ul li {
        position: relative;
        float: left;
        font-size: 15px;
        padding: 10px 0 10px 10px;
    }

    .menu-item-i {
        padding: 10px;
        padding-top: 8px;
        color: var(--dark-gray-color);
        display: block;
        cursor: pointer;
        font-style: normal;
    }

    .menu-item-i:hover {
        color: var(--primary-color);
    }

    header .mobile-menu ul li a {
        padding: 10px;
        color: var(--dark-gray-color);
        display: block;
    }

    header .mobile-menu ul li a:hover {
        color: var(--primary-color);
    }

    header .mobile-menu ul li ul {
        position: absolute;
        top: 58px;
        left: 0;
        width: 200px;
        background-color: #fff;
        display: none;
    }

    header .mobile-menu ul li ul li {
        width: 100%;
        border-top: 1px solid rgba(0,0,0,.1);
    }

    header .mobile-menu ul li ul li ul {
        left: 200px;
        top: 0;
    }

    header .mobile-menu ul li:focus-within > ul,
    header .mobile-menu ul li:hover > ul {
        display: initial;
    }
}

@media(max-width: 429px) {
    .top-header {
        display: none;
    }

    header {
        top: 0;
    }

    .hamburger-menu {
        position: fixed;
        top: 35px;
        padding-top: 0;
        margin-top: -17px;
    }
}

.top-navigation-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
}

@media(max-width: 991px) {
    .top-navigation-width {
        padding: 0;
        margin: 0;
    }

    .top-navigation-width .social-media {
        position: absolute;
        right: 20px;
    }
}

.top-header .social-media a {
    color: var(--dark-gray-color);
    font-size: 20px;
    margin-left: 5px;
    transition: 0.3s;
}

.top-header .social-media a:hover {
    color: var(--primary-color);
}
/* End */

/* Sekcja Header */
/* Begin */
.header {
    min-height: 750px;
    position: relative;
    background: radial-gradient(72.57% 101.83% at 63.64% 55.36%, #FFFFFF 18.93%, rgba(232, 239, 245, 0.4) 100%);
    overflow: hidden;
}

.header .text-box {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 10;
}

.header h1 {
    color: var(--primary-color);
    font-size: 58px;
    line-height: 70px;
    font-weight: 700;
}

.header h2 {
    font-size: 25px;
    margin-top: 25px;
    max-width: 640px;
}

.header a {
    display: inline-block;
    color: var(--light-gray-color);
    background-color: var(--primary-color);
    transition: 0.3s;
    padding: 10px 15px;
    font-size: 15px;
    border: 1px;
    border-radius: 6px;
    margin-top: 10px;
}

.header a:hover {
    background-color: var(--primary-dark-color);
}

.header img {
    width: 700px;
    position: absolute;
    bottom: 0;
    right: 50px;
}

@media(max-width: 1299px) {
    .header .container {
        padding: 0;
    }

    .header .text-box {
        text-align: center;
        text-shadow: 1px 1px 100px white;
        padding: 0 20px;
    }

    .header h2 {
        max-width: 70%;
        margin: 20px auto;
    }

    .header img {
        opacity: 20%;
        width: 800px;
    }
}

@media(max-width: 899px) {
    .header img {
        right: 0;

    }

    .header h2 {
        max-width: 100%;
    }
}

@media(max-width: 650px) {
    .header {
        min-height: 600px;
    }

    .header .text-box {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        z-index: 10;
    }

    .header h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .header h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .header img {
        width: 700px;
    }
}

@media(max-width: 380px) {
    .header h1 {
        font-size: 45px;
        line-height: 55px;
    }
}

@media(max-width: 340px) {
    .header h1 {
        font-size: 40px;
        line-height: 45px;
    }
}
/* End */

/* Jumbotron */
/* Begin */
.jumbotron {
    background: radial-gradient(72.57% 101.83% at 63.64% 55.36%, #FFFFFF 18.93%, rgba(222, 229, 235, 0.4) 100%);
}

.jumbotron .container {
    min-height: 300px;
    position: relative;
}

.jumbotron .container h1 {
    color: var(--primary-color);
    font-size: 40px;
    line-height: 55px;
    font-weight: 600;
}

@media(max-width: 650px) {
    .jumbotron .container h1 {
        font-size: 35px;
    }
}

@media(max-width: 380px) {
    .jumbotron .container h1 {
        font-size: 28px;
    }
}

@media(max-width: 340px) {
    .jumbotron .container h1 {
        font-size: 25px;
    }
}

.jumbotron .container p {
    font-size: 18px;
    margin-top: 25px;
    line-height: 30px;
    color: var(--primary-gray-color);
}

@media(max-width: 650px) {
    .jumbotron .container p {
        font-size: 16px;
        margin-top: 20px;
    }
}

@media(max-width: 380px) {
    .jumbotron .container p {
        font-size: 14px;
        margin-top: 15px;
    }
}

@media(max-width: 340px) {
    .jumbotron .container p {
        font-size: 13px;
        margin-top: 10px;
    }
}

.jumbotron .container .text-box {
    max-width: 750px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 10;
    padding-right: 30px;
}

.jumbotron .container img {
    width: 280px;
    position: absolute;
    bottom: 0;
    right: 50px;
}
/* End */

/* Logo slider/carousel */
/* Begin */
h3.small-tit {
    font-weight: 700;
}

.logo-wrapper {
width: 100%;
position: relative;
margin-top: 40px;
}
.logo-wrapper i {
top: 50%;
height: 50px;
width: 50px;
cursor: pointer;
font-size: 2.0rem;
position: absolute;
text-align: center;
line-height: 50px;
background: #fff;
border-radius: 50%;
box-shadow: 0 3px 6px rgba(0,0,0,0.23);
transform: translateY(-50%);
transition: transform 0.1s linear;
z-index: 10;
}
.logo-wrapper i:active{
transform: translateY(-35%) scale(0.85);
}
.logo-wrapper i:first-child{
left: -15px;
}
.logo-wrapper i:last-child{
right: -15px;
}

.logo-wrapper .logo-carousel{
display: grid;
grid-auto-flow: column;
grid-auto-columns: calc((100% / 6) - 12px);
overflow-x: auto;
scroll-snap-type: x mandatory;
gap: 30px;
border-radius: 8px;
scroll-behavior: smooth;
scrollbar-width: none;
padding: 10px;
}

.logo-carousel::before {
left: 0;
top: 0;
}

.logo-carousel::after {
right: 0;
top: 0;
transform: rotateZ(180deg);
}

.logo-carousel::before, .logo-carousel::after {
background: linear-gradient(to right, var(--white-color) 0%, rgba(255, 255, 255, 0) 100%);
content: "";
height: 100%;
position: absolute;
width: 200px;
z-index: 2;
}

@media(max-width: 599px) {
    .logo-carousel::before, .logo-carousel::after {
        width: 100px;
    }
}

@media(max-width: 399px) {
    .logo-carousel::before, .logo-carousel::after {
        width: 50px;
    }
}


.logo-carousel::-webkit-scrollbar {
display: none;
}
.logo-carousel.no-transition {
scroll-behavior: auto;
}
.logo-carousel.dragging {
scroll-snap-type: none;
scroll-behavior: auto;
}
.logo-carousel.dragging .logo-card {
cursor: grab;
user-select: none;
}
.logo-carousel :where(.logo-card, .img) {
display: flex;
justify-content: center;
align-items: center;
}
.logo-carousel .logo-card {
scroll-snap-align: start;
list-style: none;
background: #fff;
cursor: pointer;
flex-direction: column;
border-radius: 6px;
padding: 25px;
}
.logo-carousel .logo-card .img {
width: 108px;
text-align: center;
}
.logo-card .img img {
width: 100%;
object-fit: cover;
}

@media screen and (max-width: 900px) {
.logo-wrapper .logo-carousel {
    grid-auto-columns: calc((100% / 5) - 9px);
}
}

@media screen and (max-width: 600px) {
    .logo-wrapper .logo-carousel {
        grid-auto-columns: calc((100% / 3) - 9px);
    }
}

@media screen and (max-width: 400px) {
    .logo-wrapper .logo-carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}
/* End */

/* Logo clients */
/* Begin */
.logo-slider h2 {
    text-align: center;
}

.logo-slider .items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.logo-slider .item {
    border: 1px solid var(--gray-color-1);
    padding: 30px;
}

.logo-slider .items .item img {
    width: 100%;
    filter: grayscale(1) contrast(2);
    transition: 0.4s;
}

.logo-slider .items .item img:hover,
.logo-slider .items .item img:focus {
    width: 100%;
    filter: grayscale(0) contrast(1);
    transform: scale(1.1);
}

.logo-slider .button {
    text-align: center;
}

.logo-slider .button a {
    display: inline-block;
    font-size: 1.5rem;
    margin-top: 30px;
    text-decoration: none;
    transition: 0.3s;
    color: #1e1e1e;
}

.logo-slider .button a:hover {
    color: #003A58;
    margin-left: 1rem;
}
/* Logo clients */
/* End */

/* Why orbis-software */
/* Begin */
.why-orbis-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media(max-width: 599px) {
    .why-orbis-list {
        grid-template-columns: 1fr;
    }  
}

.why-orbis-list .position {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
}

.position {
    margin-bottom: 40px;
    text-align: justify;
}

.position i {
    font-size: 40px;
}

.position h3,
.position h2 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.position p {
    font-size: 15px;
    color: var(--primary-gray-color);
    line-height: 25px;
}
/* End */

/* Service packages */
/* Begin */
.wrapper {
    width: 100%;
    position: relative;
    margin-top: 40px;
    }
    .wrapper i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 2.0rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
    z-index: 10;
    }
    .wrapper i:active{
    transform: translateY(-35%) scale(0.85);
    }
    .wrapper i:first-child{
    left: -15px;
    }
    .wrapper i:last-child{
    right: -15px;
    }

    .wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px;
    }


    .carousel::before {
    left: 0;
    top: 0;
    }

    .carousel::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
    }

    .carousel::before, .carousel::after {
    background: linear-gradient(to right, var(--white-color) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 200px;
    z-index: 2;
    }

    @media(max-width: 599px) {
        .carousel::before, .carousel::after {
            width: 100px;
        }
    }

    @media(max-width: 399px) {
        .carousel::before, .carousel::after {
            width: 50px;
        }
    }


    .carousel::-webkit-scrollbar {
    display: none;
    }
    .carousel.no-transition {
    scroll-behavior: auto;
    }
    .carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
    }
    .carousel.dragging .card {
    cursor: grab;
    user-select: none;
    }
    .carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
    }
    .carousel .card {
    scroll-snap-align: start;
    list-style: none;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    border-radius: 6px;
    padding: 50px;
    border: 1px solid #f5f5f5;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.05);
    }
    .carousel .card .img {
    background: var(--primary-dark-color-3);
    height: 108px;
    width: 108px;
    border-radius: 50%;
    text-align: center;
    }
    .card .img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    padding: 5px;
    }

    .carousel .card h2 {
    font-weight: 500;
    font-size: 1.8rem;
    margin: 30px 0 5px;
    text-align: center;
    line-height: 25px;
    }
    .carousel .card span {
    color: #6A6D78;
    font-size: 1.31rem;
    }

    @media screen and (max-width: 900px) {
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
    }

    @media screen and (max-width: 600px) {
    .wrapper .carousel {
        grid-auto-columns: 100%;
    }
    }
/* End */

/* Logistic/Couriers */
/* Begin */
.logistics {
    text-align: center;
    margin-bottom: 15px;
}

.couriers {
    margin-top: 20px;
    margin-bottom: 45px;
}

.couriers img {
    width: 180px;
    filter: grayscale(1);
    opacity: 60%;
    transition: 0.3s;
}

.couriers img:hover {
    filter: grayscale(0);
    opacity: 90%;
}

.logistics a {
    padding: 10px;
    font-size: 15px;
}
/* End */

/* Our software */
/* Begin */
.our-software {
    text-align: center;
}

.our-software h3 {
    color: var(--gray-color-8);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 35px;
}

.software-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 40px;
}

@media(max-width: 800px) {
    .software-box {
        grid-template-columns: 1fr;
    }
}

.software img {
    width: 100%;
    height: 250px;
}

.software-content {
    padding: 30px;
    text-align: left;
}

.software-content h2 {
    font-size: 25px;
    font-weight: 500;
}

.software-content p {
    font-size: 15px;
    line-height: 25px;
    color: var(--primary-gray-color);
}

.software-content a {
    margin-top: 20px;
}

.content-list {
    margin-top: 10px;
}

.list-position {
    display: flex;
}

.list-position i {
    font-size: 20px;
    color: green;
    margin-right: 15px;
}
/* End */

/* Integration */
/* Begin */
.integration-categories {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

@media(max-width: 800px) {
    .integration-categories {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 545px) {
    .integration-categories {
        grid-template-columns: 1fr;
    }
}

.integration-categories a {
    background-color: #E8EEF3;
    color: var(--gray-color-8);
    transition: 0.3s;
    border-radius: 6px;
}

.integration-categories a:hover,
.integration-categories a:focus {
    background-color: var(--primary-color);
    color: var(--light-gray-color);
}

.category {
    width: 100%;
    padding: 50px;
}

.category img {
    width: 90px;
}

.category i {
    font-size: 40px;
}

.category h3 {
    font-size: 20px;
    margin-top: 10px;
}
/* End */

/* Logo integration */
/* Begin */
.logo-integration .container {
    padding-top: 0;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.logo-box .logo {
    position: relative;
    filter: grayscale(1);
    opacity: 0.8;
    width: 175px;
    height: 100px;
    transition: 0.5s;
}

.logo-box .logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.logo-box .logo img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
/* End */

/* Free consultation */
/* Begin */
.free-consultation {
    text-align: center;
    background-image: url(../image/darmowa-konsultacja.jpeg);
    background-size: cover;
    background-position: center;
    position: relative;
    height: 720px;
    margin-bottom: 80px;
}

@media(max-width: 991px) {
    .free-consultation {
        margin-bottom: 90px;
    }
}

@media(max-width: 799px) {
    .free-consultation {
        margin-bottom: 120px;
    }
}

.overtlay-consultation {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--light-blue-color);
    width: 100%;
    height: 100%;
    opacity: 80%;
}

.free-consultation .container {
    position: relative;
}
/* End */

/* Blog */
/* Begin */
.blog {
    text-align: center;
}

.posts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

@media(max-width: 799px) {
    .posts {
        grid-template-columns: 1fr;
    }
}

.post {
    border: 1px solid var(--gray-color-1);
    border-radius: 6px;
    padding: 20px;
}

.post-img {
    position: relative;
}

.categories {
    position: absolute;
    bottom: 19px;
    left: 19px;
    color: #f5f5f5;
    background-color: red;
    border-radius: 15px;
    padding: 2px 5px;
}

.post-content {
    padding: 30px 15px 15px 15px;
}

.post-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 3px;
}

.post-img img {
    position: absolute;
    width: 100%;
    border-radius: 6px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.post-content span {
    display: inline-block;
    margin-bottom: 15px;
}

.post-content h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

.post-content p {
    font-size: 12px;
    line-height: 20px;
}
/* End */

/* Footer call to action */
/* Begin */
.call-to-action-two {
    padding: 0 20px;
}

.call-to-action-two .container {
    position: relative;
    background-image: url(../image/call-to-action-darmowa-konsultacja-orbis-software-polska-integracje-systemow-i-ecommerce.webp);
    background-position: center;
    background-size: cover;
    padding: 50px;
    background-color: #062956;
    border-radius: 6px;
}

.call-to-action-two .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-dark-color-3);
    width: 100%;
    height: 100%;
    opacity: 85%;
    border-radius: 6px;
}

.call-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.call-to-action-two h3 {
    position: relative;
    color: var(--light-gray-color);
    font-size: 30px;
    font-weight: 400;
    line-height: 60px;
}

.callMe {
    transition: 0.3s;
}

.callMe:hover {
    transform: scale(1.1) translateY(-15%);
}

@media(max-width: 991px) {
    .call-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .call-to-action-two h3 {
        text-align: center;
        align-self: center;
        justify-self: center;
        line-height: 40px;
    }

    .callMe {
        align-self: center;
        justify-self: center;
    }
}

.callMe a {
    position: relative;
    text-decoration: none;
}

.callMe img {
    width: 50px;
    position: absolute;
    left: -65px;
    top: -6px
}

span.call {
    color: #87B3DB;
}

span.number {
    color: #f5f5f5;
    font-size: 20px;
    line-height: 20px;
}
/* End */

/* Footer */
/* Begin */
footer {
    padding-top: 40px;
}

.footer-logo {
    width: 220px;
}

.footer-logo img {
    width: 100%;
}

footer .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

@media(max-width: 991px) {
    footer .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width: 799px) {
    footer .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 549px) {
    footer .footer-container {
        grid-template-columns: 1fr;
    }
}

footer .footer-container a {
    display: block;
    font-size: 14px;
    padding: 5px 0;
    color: var(--primary-gray-color);
    font-weight: 500;
    transition: 0.3s;
}

footer .footer-container a:hover {
    color: var(--primary-color);
    margin-left: 5px;
}

footer p,
footer .newsletter input,
footer .newsletter button {
    font-size: 14px;
}


footer .company p,
footer .newsletter p {
    line-height: 20px;
    margin-bottom: 10px;
    color: var(--primary-gray-color);
}

footer .newsletter input.input-text {
    width: 100%;
    padding: 8px 10px;
    margin: 2px 0;
    border: 1px solid var(--gray-color-2);
    border-radius: 6px;
    transition: 0.3s;
}

footer .newsletter input.input-text:hover {
    border: 1px solid var(--light-gray-color);
}

footer .marketing-ok {
    margin-top: 15px;
    line-height: 15px;
}

footer .marketing-ok label {
    color: var(--primary-gray-color);
}

footer .marketing-ok input {
    margin-right: 5px;
}

footer .newsletter button {
    background-color: var(--primary-color);
    color: var(--light-gray-color);
    border: 0;
    border-radius: 6px;
    padding: 10px 15px;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
}

footer .newsletter button:hover {
    background-color: var(--primary-dark-color);
}

footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 60px;
    font-size: 12px;
}

footer .copyright .social-media {
    display: flex;
    gap: 10px;
    align-items: center;
}

footer .copyright a {
    color: var(--dark-gray-color);
    font-size: 23px;
    margin-top: 4px;
    transition: 0.1s;
}

footer .copyright a:hover {
    color: var(--primary-color);
    font-size: 23px;
    margin-top: 4px;
    margin-bottom: -6px;
}
/* End */

/* INTEGRATION */
/* INTEGRATION */
/* INTEGRATION */
/* INTEGRATION */

/* Jumbotron Integration */
/* Begin */
.integration h2 {
    font-size: 25px;
    margin: 15px 0;
}

.integration p {
    font-size: 20px;
    margin-top: 0 !important;
}

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

.site-integration img.title {
    margin-bottom: 10px;
}

.site-integration h2 {
    font-size: 35px;
}

.site-integration p {
    font-size: 18px;
    line-height: 30px;
}

@media(max-width: 359px) {
    .site-integration h2 {
        font-size: 25px;
    }
    
    .site-integration p {
        font-size: 15px;
        line-height: 25px;
    }
}

.integration-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding-bottom: 100px;
    justify-content: center;
}

@media(max-width: 1020px) {
    .integration-box {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media(max-width: 699px) {
    .integration-box {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width: 519px) {
    .integration-box {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:359px) {
    .integration-box {
        grid-template-columns: 1fr;
    }
}

.integration-item {
    position: relative;
    height: 140px;
    border: 1px solid var(--light-gray-color);
    border-radius: 6px;
    box-shadow: 1px 1px 10px 2px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.integration-item a {
    width: 100%;
    height: 140px;
    display: inline-block;
    position: relative;
    font-size: 13px;
    color: var(--primary-gray-color);
    line-height: 100%;

}

@media(max-width: 359px) {
    .integration-item {
        height: 170px;
    }
    
    .integration-item a {
        height: 170px;
    }
}

.integration-item a span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.integration-item:hover {
    scale: 1.05;
    box-shadow: 2px 2px 6px 0 rgba(0,0,0,0.15);
    
}

.integration-item a img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 30px;
}
/* End */

/* About */
/* Begin */
.worker-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media(max-width: 1020px) {
    .worker-box {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width: 699px) {
    .worker-box {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 519px) {
    .worker-box {
        grid-template-columns: 1fr;
    }
}

.worker {
    text-align: center;
    transition: 0.3s;
    filter: drop-shadow(0px 0px 6px rgba(0,0,0,0.02));
}

.worker:hover {
    scale: 1.05;
}

.worker .person {
    padding: 50px 10px 40px 10px;
    margin-top: -35px;
    border: 1px solid var(--light-gray-color);
    border-radius: 6px;
    /* box-shadow: 1px 1px 10px 2px rgba(0,0,0,0.02); */
    background-color: #fff;
}

.worker .person h3 {
    margin-bottom: 0px;
}

.worker .person span {
    font-size: 12px;
    color: var(--primary-gray-color);
}
/* End */

/* Integration & Platform connections */
/* Begin */
p.alert-not-ready {
    color: var(--primary-gray-color);
    font-size: 20px;
    line-height: 35px;
    padding: 20px;
    text-align: center;
    background-color: #99ffcc;
}

p.alert-software-archiwum {
    color: var(--gray-color-8);
    font-size: 20px;
    line-height: 35px;
    padding: 20px;
    text-align: center;
    background-color: #ff9999;
}

.jumbotron-integration {
    background: radial-gradient(72.57% 101.83% at 63.64% 55.36%, #FFFFFF 18.93%, rgba(222, 229, 235, 0.4) 100%);
    text-align: center;
}

.jumbotron-integration img {
    width: 300px;
}

.container-integration {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 30px;
}

.container-integration h1 {
    padding-bottom: 40px;
    color: var(--gray-color-8);
    font-size: 40px;
    font-weight: 600;
}

h2.subpage {
    padding-bottom: 20px;
}

div.subtitle p {
    margin-bottom: 15px;
}
/* End */
