:root {
    --color-white: #ffffff;
    --color-dark: #000000;
    --color-gray-200: rgb(248 250 252);

    --color-primary: #1c1a4c;

    --cubzier: cubic-bezier(.17, .67, .54, .92);
}

body{
    background: linear-gradient(to right, #4b64c1, #1c1a4c);
}

.bg-gray-50 {
    background-color: var(--color-gray-200);
}

.title {
    font-weight: bold;
}

.img-fuild {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-list {
    overflow: unset !important;
    overflow-x: clip !important;
}

.after-line {
    display: inline-block;
    position: relative;
}

.after-line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background-color: var(--color-primary);
}

.btn-primary {
    background-color: var(--color-primary);
    background: linear-gradient(to right, #4b64c1, #1c1a4c);
    background-size: 120%;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 6px !important;
    -webkit-border-radius: 6px !important;
    -moz-border-radius: 6px !important;
    -ms-border-radius: 6px !important;
    -o-border-radius: 6px !important;
    transition: 300ms var(--cubzier);
    -webkit-transition: 300ms var(--cubzier);
    -moz-transition: 300ms var(--cubzier);
    -ms-transition: 300ms var(--cubzier);
    -o-transition: 300ms var(--cubzier);
}

.btn-primary:hover {
    filter: brightness(120%);
    -webkit-filter: brightness(120%);
}

a {
    text-decoration: unset;
}

a:hover{
    color: var(--color-primary);
}

section {
    position: relative;
    padding: 120px 0;
}

.opacity-1 {
    opacity: .1;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-center {
    display: grid;
    place-items: center;
}

p {
    opacity: .7;
    font-size: 1.2rem;
}


.text-xxl {
    font-size: 2rem;
}

/*========  HEADER START ========*/
header {
    position: absolute;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    background-color: var(--color-white);
    transition: 600ms var(--cubzier);
    -webkit-transition: 600ms var(--cubzier);
    -moz-transition: 600ms var(--cubzier);
    -ms-transition: 600ms var(--cubzier);
    -o-transition: 600ms var(--cubzier);
}

header.sticky {
    position: fixed;
    animation: stickymenu 600ms var(--cubzier) forwards;
    -webkit-animation: stickymenu 600ms var(--cubzier) forwards;
    box-shadow: 0 2px 10px 0 #00000020;
}

@keyframes stickymenu {
    0% {
        top: -80px;
    }

    100% {
        top: 0;
    }
}

.nav-link {
    color: var(--color-dark);
    position: relative;
    display: inline-block;
    font-weight: 500;
    transition: 300ms var(--cubzier);
    -webkit-transition: 300ms var(--cubzier);
    -moz-transition: 300ms var(--cubzier);
    -ms-transition: 300ms var(--cubzier);
    -o-transition: 300ms var(--cubzier);
    width: 100%;
}

.nav-link.active {
    color: var(--color-primary) !important;
}

.nav-item {
    padding: 12px 24px;
}


.nav-link::after {
    transition: 300ms var(--cubzier);
    -webkit-transition: 300ms var(--cubzier);
    -moz-transition: 300ms var(--cubzier);
    -ms-transition: 300ms var(--cubzier);
    -o-transition: 300ms var(--cubzier);
    content: "";
    position: absolute;
    bottom: -10px;
    opacity: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.nav-link.active::after {
    bottom: -5px;
    opacity: 1;
}

.logo{
    width: 274px;
}

/*========  HEADER FINIHS ========*/




/*========  MAIN SLIDER START ========*/
#startseite{
    padding-top: 140px !important;
}
.banner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../..//asset/img/banner_bg.png) center center no-repeat;
    background-size: 100%;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.there-slider {
    width: 640px;
}

.item {
    width: 160px;
    height: 210px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    margin: 0 20px;
    box-shadow: 0 4px 14px 0 #0000001a;
}


.two-slider {
    width: 430px;
    float: right;
}

/*========  MAIN SLIDER FINIHS ========*/



/*========  CONNET INFO START ========*/
.social-box>a {
    color: var(--color-dark);
}

.year-box {
    padding: 40px 40px;
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important;
    -o-border-radius: 20px !important;
    box-shadow: 0 4px 40px 0 #0b478049;
}

.year-box h1 {
    font-size: 60px;
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

.year-box h1 span {
    position: absolute;
    font-size: 50px;
    transform: translate(-38px, 5px);
    -webkit-transform: translate(-38px, 5px);
    -moz-transform: translate(-38px, 5px);
    -ms-transform: translate(-38px, 5px);
    -o-transform: translate(-38px, 5px);
    font-weight: bolder;
}

.social-item a {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    box-shadow: 0 4px 40px 0 #00000010;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: 300ms var(--cubzier);
    -webkit-transition: 300ms var(--cubzier);
    -moz-transition: 300ms var(--cubzier);
    -ms-transition: 300ms var(--cubzier);
    -o-transition: 300ms var(--cubzier);
}

.social-item a:hover {
    background: #1c1a4c0f !important;
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    box-shadow: 0 8px 40px 0 #00000024;
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
}

.social-item a.d-flex {
    padding: 0 12px;
    min-width: 300px;
    justify-content: end;
    align-self: center;
    margin: 0 0 0 auto;
    text-align: right;
}

.social-item a.d-flex svg {
    margin-left: 12px;
}

.gallery-container a {
    width: 100%;
    height: 240px;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.price li {
    display: flex;
    align-items: center;
}

.price li svg{
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

/*========  CONNET INFO FINIHS ========*/


/*========  ABOUT START ========*/
.about-seciton img {
    width: 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 4px 40px #00000026;
}

.about-seciton .inner-text {
    position: absolute;
    top: 50%;
    left: 70%;
    background-color: var(--color-white);
    padding: 30px 60px;
    width: 80%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 4px 40px #00000010;
}

.dots {
    cursor: pointer;
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.maps .mobil{
    display: none;
}

.maps .dots:nth-of-type(1) {
    left: 50%;
    top: 7%;
}

.maps .dots:nth-of-type(2) {
    left: 53%;
    top: 14%;
}

.maps .dots:nth-of-type(3) {
    left: 48%;
    top: 20%;
    width: 30px;
    height: 30px;
}

.maps .dots:nth-of-type(4) {
    left: 43%;
    top: 22%;
}

.maps .dots:nth-of-type(5) {
    left: 59%;
    top: 31%;
}

.tooltip-inner {
    padding: 8px 16px;
    background-color: var(--color-white);
    box-shadow: 0 4px 20px 0 #00000020;
    color: var(--color-dark);
    font-weight: bold;
}

/*========  ABOUT FINIHS ========*/


/*========  TESLIMONT START ========*/
.teslimont-slider .card {
    overflow: hidden;
    box-shadow: 0 4px 20px 0 #00000010;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    transform: scale(.9);
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transition: 300ms var(--cubzier);
    -webkit-transition: 300ms var(--cubzier);
    -moz-transition: 300ms var(--cubzier);
    -ms-transition: 300ms var(--cubzier);
    -o-transition: 300ms var(--cubzier);
}

.teslimont-slider .card.slick-center {

    box-shadow: 0 8px 40px 0 #00000018;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}


.teslimont-slider .card,
.teslimont-slider .card-header {
    border: unset;
}

.teslimont-slider img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.icon-tabler-message-circle-2 {
    width: 64px;
    height: 54px;
    padding: 4px;
    position: absolute;
    right: -8px;
    top: -8px;
    background-color: var(--color-primary);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.teslimont-slider .slick-dots {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin-top: 16px;
}

.teslimont-slider .slick-dots li {
    padding: 6px;
}

.teslimont-slider .slick-dots li button {
    background-color: var(--color-white);
    color: transparent;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: unset;
}

.teslimont-slider .slick-dots li.slick-active button {
    background-color: var(--color-primary);
}

.teslimont-slider  .slick-track{
    display: flex;
    justify-content: center;
    align-items: center;
}

/*========  TESLIMONT FINIHS ========*/


/*========  CONTANT FORM START ========*/
.form-control {
    box-shadow: unset !important;
    border: unset !important;
    padding: 12px 24px;
}

form .btn {
    width: auto;
    display: inline-block;
    margin: 0 auto;
}

.modal-content{
    background: url(../img/modal.jpg) center center no-repeat;
    background-size: cover;
    color: var(--color-white);
}

.modal .form-control {
    border: 1px solid #ccc !important;
}

.modal-header{
    border: unset;
}
.wp-button {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-white);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 9;
    animation: wpbutton 3000ms linear alternate infinite;
    -webkit-animation: wpbutton 3000ms linear alternate infinite;
    transition: 300ms var(--cubzier);
    -webkit-transition: 300ms var(--cubzier);
    -moz-transition: 300ms var(--cubzier);
    -ms-transition: 300ms var(--cubzier);
    -o-transition: 300ms var(--cubzier);
}

.modal-content {
    border: unset !important;
}

.wp-button:hover {
    bottom: 34px;
}

@keyframes wpbutton {
    0% {
        box-shadow: 0 0 10px rgb(0, 179, 65, 0.2);

    }

    100% {
        box-shadow: 0 0 30px rgb(0, 179, 65, 0.6);
    }
}

/*========  CONTANT FORM FINIHS ========*/


/*============== JQUERY LOADER START ==============*/
.loader-container {
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    position: fixed;
    display: grid;
    place-items: center;
    z-index: 9999999999;
}

.spinner {
    width: 56px;
    height: 56px;
    display: grid;
}

.spinner::before,
.spinner::after {
    content: "";
    grid-area: 1/1;
    background: var(--c) 50% 0,
        var(--c) 50% 100%,
        var(--c) 100% 50%,
        var(--c) 0 50%;
    background-size: 13.4px 13.4px;
    background-repeat: no-repeat;
    animation: spinner-3hs4a3 1s infinite;
}

.spinner::before {
    --c: radial-gradient(farthest-side, #399fde 92%, #0000);
    margin: 4.5px;
    background-size: 9px 9px;
    animation-timing-function: linear;
}

.spinner::after {
    --c: radial-gradient(farthest-side, #399fde 92%, #0000);
}

@keyframes spinner-3hs4a3 {
    100% {
        transform: rotate(.5turn);
    }
}

.hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    background: #0e2431;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
    -webkit-transition: transform 0.4s ease-in-out;
    -moz-transition: transform 0.4s ease-in-out;
    -ms-transition: transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
}

.hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
    -webkit-transition: transform 0.2s ease-in-out;
    -moz-transition: transform 0.2s ease-in-out;
    -ms-transition: transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
}

.hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
    -webkit-transition: transform 0.4s ease-in-out;
    -moz-transition: transform 0.4s ease-in-out;
    -ms-transition: transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
}


.hamburger-lines.active .line1 {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.hamburger-lines.active .line2 {
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
}

.hamburger-lines.active .line3 {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.icon-cell{
    width: 24px !important;
    margin-right: 1rem;
}
/*============== JQUERY LOADER END ==============*/

/*============== FOOTER START ==============*/
footer{
    padding: 60px 0 0 0;
}

footer a{
    color: var(--color-white);
    opacity: .9;
    font-size: 1.2rem;
}
/*============== FOOTER END ==============*/


@media screen and (max-width:992px) {
    .collapse {
        display: block !important;
        visibility: hidden;
        overflow: hidden;
        max-height: 0 !important;
        transition: 600ms var(--cubzier);
        -webkit-transition: 600ms var(--cubzier);
        -moz-transition: 600ms var(--cubzier);
        -ms-transition: 600ms var(--cubzier);
        -o-transition: 600ms var(--cubzier);
    }

    .collapse.show {
        visibility: visible;
        max-height: 385px !important;
    }

    .about-seciton .inner-text {
        left: 60%;
    }

    .social-box {
        display: block !important;
    }

    .social-box li.px-3 {
        padding-left: 0 !important;
    }

    .connet-info p {
        width: 75%;
    }

    .connet-info .col-md-4 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-seciton .inner-text {
        position: relative;
    }

    .w-75.ms-lg-auto {
        margin-top: 1.5rem !important;
    }

    .social-item a.d-flex {
        margin: 0 auto 0 0;
        text-align: left;
        flex-direction: row-reverse;
        justify-content: start;
    }

    .social-item a.d-flex svg {
        margin-right: 12px;
        margin-left: 0;
    }

    .d-flex.list-unstyled.justify-content-lg-end li.mx-3 {
        margin-right: 1rem !important;
        margin-left: 0 !important;

    }

    section {
        position: relative;
        padding: 60px 0;
    }

    .nav-item {
        padding: 12px 24px 12px 0;

    }

    .nav-link {
        width: auto;
    }

    #header .btn {
        width: 100%;
    }

    .navbar-toggler {
        border: unset;
        box-shadow: unset !important;
    }
}

@media screen and (max-width:768px) {
    .there-slider {
        width: 100vw;
    }

    .there-slider .item {
        width: 100%;
        height: 240px;
    }

    .two-slider {
        width: 75vw;
    }

    .two-slider .item {
        width: 100%;
        height: 240px;
    }

    .connet-info .col-md-4 {
        justify-content: start;
        margin-top: 1rem;
    }

    .about-seciton img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }

    .about-seciton .inner-text {
        position: relative;
        top: 0;
        left: 3%;
        width: 94%;
        margin-top: 1.5rem !important;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }

    .dots {
        width: 24px;
        height: 24px;
    }

}

@media screen and (max-width:540px) {
    .logo{
        width: 224px;
    }
    .connet-info {
        text-align: center;
    }

    .connet-info .col-md-4 {
        justify-content: center;
    }

    .connet-info ul {
        justify-content: center;
    }

    .connet-info hr {
        margin: 1rem auto;
    }

    .connet-info p {
        width: 100%;
    }

    .about-seciton .inner-text {
        padding: 1.4rem;
    }

    .dots {
        width: 24px;
        height: 24px;
    }

    .teslimont-slider .card-header.p-5 {
        padding: 40px 14px 14px 14px !important;
    }

    #contact {
        text-align: center;
    }

    .w-75.ms-lg-auto {
        width: 100% !important;
    }

    ul {
        justify-content: center !important;
    }

    .social-item a.d-flex {
        margin: 0 auto;
    }
    .maps .mobil{
        display: block;
    }
    .maps .computer{
        display: none;
    }
    .maps .dots:nth-of-type(1) {
        left: 50%;
        top: 7%;
    }
    
    .maps .dots:nth-of-type(2) {
        left: 53%;
        top: 14%;
    }
    
    .maps .dots:nth-of-type(3) {
        left: 41%;
    top: 20%;
        width: 30px;
        height: 30px;
    }
    
    .maps .dots:nth-of-type(4) {
        left: 23%;
        top: 20%;
    }
    
    .maps .dots:nth-of-type(5) {
        left: 70%;
        top: 29%;
    }
    #kontakt .ms-lg-auto{
        text-align: center;
    }
}