/********** Template CSS **********/
:root {
    --primary-blue: #006FAD;
    --primary-blue-contrast: #00507e;
    --black-blue: #27303A;
    --light-blue: #dee2fb;
    --secondary: #E93C05;
    --grey: #6F6F6F;
    --black: #0e0e0e;
    --white: #f7f7f7;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

* {
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-style: normal;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--white);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
}

::selection {
    background-color: var(--light-blue);
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 600 !important;
    font-family: "Righteous", sans-serif;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 500 !important;
    font-family: "Righteous", sans-serif;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 400 !important;
    font-family: "Righteous", sans-serif;
}

.und-zeichen {
    font-family: Roboto, sans-serif;
    font-weight: 600;
}

.preheader-info {
    color: var(--grey);
}

.preheader-info :hover {
    color: var(--primary-blue);
}

/*** Assets ***/
.divider {
    width: 100%;
}

.white-divider {
    border-top: 2px solid var(--white); 
    width: 100%;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--white);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.hidden-lappi {
    visibility: hidden;
}

.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--grey);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary-blue);
}


@media (max-width: 400px) {
    .logo-pat-cloud-solutions {
        width: 150px; 
    }
}

@media (min-width: 401px) and (max-width: 2000px) {
    .logo-pat-cloud-solutions {
        width: 180px; 
    }
}

@media (min-width: 2001px) {
    .logo-pat-cloud-solutions {
        width: 210px; 
    }
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--white);
    }

    .logo-pat-cloud-solutions {
        width: 150px;
    }

    .hidden-lappi {
        visibility: visible;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* Impressum */

.custom-table {
    border: none !important;
  }
  .custom-table .left-column {
    width: 300px;
    color: var(--grey);
  }
  .custom-table .right-column {
    width: 500px;
    color: var(--black);
  }

  @media (max-width: 900px) {
    .custom-table .left-column,
    .custom-table .right-column {
      width: auto;
      display: block;
    }
    .custom-table .left-column {
      text-align: left;
      border: none !important;
    }
    .custom-table .right-column {
      text-align: left;
    }
  }

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-blue);
    border: 10px solid var(--primary-blue);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

.img-handy {
    display: none;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
        height: 100vh;
    }

    .img-handy {
        display: block;
    }

    .img-laptop {
        display: none;
    }
    
    #header-carousel .carousel-item img :not(.cloud-icon) {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cloud-icon {
        margin-left: 0 !important;
        width: 50px !important;
    }
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65vh;
}

.services {
    background: url(../svg/team-spirit-header.svg) top left no-repeat;
    background-size: cover;
}

.impressum-datenschutz {
    background: url(../svg/blob-scene.svg) top left no-repeat;
    background-size: cover;
}

.info-success {
    background: url(../svg/top-left-blob-scene.svg) top left no-repeat;
    background-size: cover;
    height: 95vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden !important;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--grey);
}


/*** Facts ***/
.facts {
    background: var(--light-blue);
    color: var(--black) !important;
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: var(--light-blue);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue) !important;
}

.feature .feature-box:hover * {
    color: var(--white) !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary-blue) !important;
    background: var(--primary-blue);
}

.service .nav .nav-link.active h5 {
    color: var(--white) !important;
}

.service .nav .nav-link.active h5 i {
    color: var(--white) !important;
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light-blue);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary-blue);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light-blue);
    background: var(--black-blue);
}

.copyright a {
    color: var(--light-blue);
}

.copyright a:hover {
    color: var(--primary-blue);
}


.svg-partner {
    opacity: 0.5; 
    transition: opacity 0.3s ease-out; 
  }
  
  .svg-partner:hover {
    opacity: 1; 
    transition: opacity 0.3s ease-in; 
  }
  
  @media only screen and (max-width: 1024px) {
    .svg-partner {
      opacity: 1; 
    }
  }
  

/* timeline */

.bsb-timeline-3 .timeline:after {
    background-color: var(--primary-blue) !important;
    bottom: 0;
    content: "";
    left: 0;
    margin-left: -1px;
    position: absolute;
    top: 0;
    width: 2px;
}

.bsb-timeline-3 .timeline>.timeline-item:after {
    background: var(--black-blue) !important;
    border: var(--black-blue) solid var(--black-blue) !important;
    border-radius: 50%;
    content: "";
    height: var(--bsb-tl-circle-size);
    left: calc(var(--bsb-tl-circle-offset)*-1);
    position: absolute;
    top: calc(30% - var(--bsb-tl-circle-offset));
    width: var(--bsb-tl-circle-size);
    z-index: 1;
}

/* TIMELINE */

.container .container-timeline {
    min-width: 103% !important;
    overflow-y: hidden;
}

/* TEXT HEADING */

.text-heading {
    max-width: 900px !important;
}

.text-heading-services {
    max-width: 1800px !important;
}

#en-link-lappi:hover, #de-link-lappi:hover {
    background: var(--primary-blue);
}

/* TRANSLATION LINKS */
@media (max-width: 767px) {
    #en-link, #de-link {
        margin-left: -20px !important;
    }
    #en-link:hover, #de-link:hover {
        background: var(--primary-blue);
    }

}


/* Highlighted */
.highlighted {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* CONTACT */
@media (max-width: 767px) {
    .contact-img {
        display: none !important;;
    }
}

/* CLOUD-Icon */

.cloud-icon {
    transform: rotate(-10deg);
    margin-bottom: 2vh;
    margin-left: -50px;
    width: 70px;
}

/* ABOUT IMG PANGRI */
.rounded-square {
    width: 400px; 
    height: 400px;
    border-radius: 50%; 
    overflow: hidden;
}

.rounded-square img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media only screen and (max-width: 992px) {
    .rounded-square {
        width: 300px; 
        height: 300px;
        position: relative; 
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); 
    }
}
/* Timeline */
.py-8{
    padding-bottom:4.5rem!important;
    padding-top:4.5rem!important
}
@media(min-width:576px){
    .py-sm-8{
        padding-bottom:4.5rem!important;
        padding-top:4.5rem!important
    }
}
@media(min-width:768px){
    .py-md-8{
        padding-bottom:4.5rem!important;
        padding-top:4.5rem!important
    }
}
@media(min-width:992px){
    .py-lg-8{
        padding-bottom:4.5rem!important;
        padding-top:4.5rem!important
    }
}
@media(min-width:1200px){
    .py-xl-8{
        padding-bottom:4.5rem!important;
        padding-top:4.5rem!important
    }
}
@media(min-width:1400px){
    .py-xxl-8{
        padding-bottom:4.5rem!important;
        padding-top:4.5rem!important
    }
}
.bsb-timeline-3{
    --bsb-tl-color:var(--bs-primary-bg-subtle);
    --bsb-tl-circle-color:var(--bs-primary);
    --bsb-tl-circle-border-color:var(--bs-warning);
    --bsb-tl-circle-size:26px;
    --bsb-tl-circle-border-size:4px;
    --bsb-tl-circle-offset:13px;
    --bsb-tl-indicator-color:var(--bs-white)
}
.bsb-timeline-3 .timeline{
    list-style:none;
    margin:0;
    padding:0;
    position:relative
}
.bsb-timeline-3 .timeline:after{
    background-color:var(--bsb-tl-color);
    bottom:0;
    content:"";
    left:0;
    margin-left:-1px;
    position:absolute;
    top:0;
    width:2px
}
@media(min-width:768px){
    .bsb-timeline-3 .timeline:after{
        left:50%
    }
}
.bsb-timeline-3 .timeline>.timeline-item{
    margin:0;
    padding:0;
    position:relative
}
.bsb-timeline-3 .timeline>.timeline-item:after{
    background:var(--bsb-tl-circle-color);
    border:var(--bsb-tl-circle-border-size) solid var(--bsb-tl-circle-border-color);
    border-radius:50%;
    content:"";
    height:var(--bsb-tl-circle-size);
    left:calc(var(--bsb-tl-circle-offset)*-1);
    position:absolute;
    top:calc(30% - var(--bsb-tl-circle-offset));
    width:var(--bsb-tl-circle-size);
    z-index:1
}
.bsb-timeline-3 .timeline>.timeline-item .timeline-body{
    margin:0;
    padding:0;
    position:relative
}
.bsb-timeline-3 .timeline>.timeline-item .timeline-content{
    padding:0 0 2.5rem 2.5rem;
    position:relative
}
.bsb-timeline-3 .timeline>.timeline-item .timeline-indicator{
    position:relative
}
.bsb-timeline-3 .timeline>.timeline-item .timeline-indicator:after{
    border-width:1px;
    border:10px solid var(--bsb-tl-indicator-color);
    border-color:transparent var(--bsb-tl-indicator-color) transparent transparent;
    border-left-width:0;
    content:"";
    left:calc(2.5rem - 10px);
    position:absolute;
    top:calc(30% - var(--bsb-tl-circle-offset));
    z-index:2
}
@media(min-width:768px){
    .bsb-timeline-3 .timeline>.timeline-item{
        overflow:hidden;
        width:50%
    }
    .bsb-timeline-3 .timeline>.timeline-item .timeline-content{
        padding:2.5rem
    }
    .bsb-timeline-3 .timeline>.timeline-item.left{
        left:0
    }
    .bsb-timeline-3 .timeline>.timeline-item.left:after{
        left:auto;
        right:calc(var(--bsb-tl-circle-offset)*-1)
    }
    .bsb-timeline-3 .timeline>.timeline-item.left .timeline-indicator:after{
        border-width:1px;
        border:10px solid var(--bsb-tl-indicator-color);
        border-color:transparent transparent transparent var(--bsb-tl-indicator-color);
        border-right-width:0;
        left:auto;
        right:calc(2.5rem - 10px)
    }
    .bsb-timeline-3 .timeline>.timeline-item.right{
        left:50%
    }
}
 