/*
Theme Name: Tivoli
Author: Portalworks
Version: 1.0.0
Text Domain: tivoli
*/

/*******************************
            FONTS
*******************************/

/* raleway-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/raleway-v34-latin/raleway-v34-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/raleway-v34-latin/raleway-v34-latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/raleway-v34-latin/raleway-v34-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/poppins/poppins-v22-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/poppins/poppins-v22-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/roboto/roboto-v47-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* dm-sans-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/dm-sans/dm-sans-v15-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
  
  
/*******************************
            ROOT
*******************************/

:root {
    --font-primary: "Raleway", sans-serif;
    --font-secondary: "Poppins", sans-serif;
    --font-third: "DM Sans", sans-serif;
    --primary-color: #82A34D;
    --main-text-color: #fff;
    --secondary-text-color: #4A4A4A;
    --third-text-color: #161616;
    --light-nav-color: #d6dbde;
    --bs-border-color: #D1D1D8;
    --light-background: #F2F2F2;
}

/*******************************
        BODY AND HTML
*******************************/

#wp-admin-bar-wp-logo, #wp-admin-bar-new-content{
	display: none !important;
}

body {
    font-family: var(--font-primary);
    color: var(--main-text-color);
    min-height: 1080px;

    &.no-hero-body{
        padding-top: 62px !important;
        & nav {
            & .nav-link {
                color: var(--secondary-text-color) !important;

                &::after{
                    background-color: var(--primary-color);
                }

                &.active{
                    color: var(--primary-color) !important;

                    &::after{
                        background-color: var(--primary-color);
                    }
                }

                &:hover,
                &:focus{
                    color: var(--primary-color) !important;
                }
            }
            & .nav-item.contact a{
                color: #fff !important;
            }
        }
        & .navbar-brand {
            filter: brightness(0) saturate(100%) invert(58%) sepia(41%) saturate(489%) hue-rotate(42deg) brightness(94%) contrast(86%);
        }

    }
}

.wrap-contact{
	list-style-type: none !important;
}

.cookie-logo{
	width: 100px !important;
	height: auto !important;
}

.page_404{
	min-height: 600px;
	
	& h3,
	& p,
	& h1{
		color: var(--secondary-text-color);
	}
	
	& h3{
		font-size: calc(1.325rem + .9vw);
	}
	
	& h1{
		font-size: calc(1.375rem + 1.5vw);
	}
}

/*******************************
    PASSWORD PROTECTED
*******************************/

.post-password-form{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 10000;

    & input:first-of-type{
        min-width: 300px;
        height: 50px;
        border: 1px solid #D1D1D8;
        text-align: center;
        margin-bottom: 40px;

        &:focus{
            border: 1px solid #D1D1D8;
            outline: none;
            box-shadow: none;
        }
    }

    & .text-protected{
        margin-bottom: 40px;
        line-height: 1.5;
        max-width: 326px;
        color: var(--secondary-text-color);
        text-align: center;
    }

    & h2{
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 14px;
        color: var(--secondary-text-color);
    }

    & img{
        width: 223px;
        height: auto;
        max-height: 54px;
        object-fit: contain;
        margin-bottom: 68px;
    }
}

/*******************************
        PREDIFINED CLASSES
*******************************/

.data-editor-section {

    & a{
        color: var(--primary-color);

        &:hover{
            color: var(--primary-color);
            text-decoration: underline;
        }
    }

    & h3{
        font-size: 24px;
        color: var(--primary-color);
        margin-bottom: 10px;
        margin-top: 10px;
        font-weight: 700;
    }
}

.btn {
    min-width: 174px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--main-text-color);
    padding: 13px;
    font-weight: 600;
    border-radius: 5px;

    &:hover,
    &:focus,
    &:focus-visible,
    &:active {
        background: var(--main-text-color) !important;
        color: var(--primary-color) !important;
        border: 1px solid var(--primary-color) !important;
    }
}

.background-white{
    background: #fff;
}

.light-background{
    background: var(--light-background);
}

.section-padding{
    padding-top: 40px;
    padding-bottom: 40px;
}

a{
    text-decoration: none;
    color: var(--main-text-color);

    &:hover{
        color: var(--main-text-color);
    }
}

.table > :not(caption) > * > *{
    padding: 10px 15px;
}

.table > thead > tr > th{
    background-color: var(--primary-color);
    text-align: center;
    vertical-align: middle;
    color: var(--main-text-color);
    border-right: 1px solid var(--main-text-color);
}

.table > thead > tr > th:first-child{
    text-align: start;
    border-right: none;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.table td:first-child{
    font-weight: 600;
    letter-spacing: 0.1px;
}

.table > thead > tr > th:last-child{
    border-right: none;
}

.table > thead > tr > th img{
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
    width: auto;
    height: auto;
}

.table th,
.table td{
    white-space: nowrap;
    min-height: 45px;
	color: #4A4A4A;
}
.table td:not(:first-child){
    text-align: end;
}

.table tbody tr:last-child td{
    border-bottom: none;
}
.table td {
    border-color: #D1D1D8;
}
.offcanvas-title{
    opacity: 0;
}
/*******************************
          NAVIGATION
*******************************/

nav{
    padding: 0px !important;
    border-bottom: 1px solid #D1D1D8;
    min-height: 62px;
    transition: 0.3s all;
    transform: translateY(-62px);

    & .offcanvas-header{
        min-height: 62px;
        padding: 12px !important;
    }

    &.background-white {
        & .navbar-toggler-icon{
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2382A34D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }
    }

    & .navbar-toggler{
        border: none !important;
        padding: 0px !important;
    
        &:focus{
            box-shadow: none !important;
        }
    
        & .navbar-toggler-icon {
            display: inline-block;
            width: 1.5em;
            height: 1.5em;
            vertical-align: middle;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 100%;
        }
    }

    & .btn-close{
        width: 30px;
        height: 30px;
        padding: 0 !important;
        opacity: 1;
        background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2382A34D'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
        
        &:hover{
            opacity: 1 !important;
        }

        &:focus{
            box-shadow: none !important;
        }
    }

    & .first-part{
        gap: 20px;
        margin-right: 0px;
    }

    & .second-part{
        gap: 14px;
        margin-right: 20px;
        flex-direction: row;
        justify-content: center;
        margin-right: 0px !important;
        margin-top: 50px;
        margin-bottom: 20px;
    }

    & .nav-item{
        height: fit-content;
    }

    & .flower,
    & .real-estate{
        width: fit-content;

        & img{
            height: 80px;
        }

        & a:hover{
            &::after{
                display: none;
            }
        }
    }

    & .contact{
        width: fit-content;

        & a{
            padding-left: 33px !important;
            padding-right: 33px !important;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--primary-color);
            color: var(--main-text-color) !important;

            &:hover{
                color: var(--main-text-color) !important;
            }

            &::after{
                display: none;
            }
        }
    }

    & .nav-link{
        position: relative;
        padding: 0 !important;
        line-height: 1.2;
        color: var(--primary-color) !important;

        &.active{
            color: var(--primary-color) !important;

            &::after{
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background-color: #fff;
                transform-origin: left;
                transform: scaleX(1);
                transition: transform 0.3s ease-in-out;
            }
        }

        &::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #fff;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease-in-out;
        }

        &:hover::after {
            transform: scaleX(1);
        }

        &:hover{
            color: var(--primary-color) !important;
        }
    }    
}

/*******************************
            HERO
*******************************/

.hero {
    min-height: 100svh;
    padding-top: 100px;
    padding-bottom: 100px;

    & .video-container{
        position: absolute;
        top: 0;
        left: 0;
        height: 100svh;
        width: 100%;
        overflow: hidden;

        & .hero-video{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            border: 0;
            width: 0;
            height: 0;
        }
    }

    & .container {
        z-index: 2;
    }

    & .hero-image {
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        object-fit: cover;
    }

    & .hero-overlay {
        background-color: #0000005C;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    & h1 {
        font-size: 44px;
        line-height: 1.14;
        font-weight: 700;
        margin-bottom: 16px;
        color: var(--main-text-color);
    }

    & p{
        max-width: 520px;
        line-height: 1.5;
        margin-bottom: 16px;
        color: var(--main-text-color);
    }

    & .scroll-down-block{
        bottom: 35px;
        left: 0;
        right: 0;
        z-index: 2;
        width: fit-content;

        & img{
            height: 21px;
            width: auto;
            max-width: 14px;
            object-fit: contain;
            margin-bottom: 14px;
        }

        & .scroll-text{
            line-height: 1.5;
        }
    }

    & .circle-link{
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--main-text-color);
        z-index: 2;
        width: 150px;
        height: 150px;
        bottom: 50px;
        transform: rotate(-10deg);
        border-radius: 50%; /* Make the link itself circular */
        background: var(--primary-color); /* Move background from ::after */
        position: relative;

        &::after{
            content: '';
            display: block;
            width: 150px;
            height: 150px;
            position: absolute;
            border-radius: 50%;
            background: var(--primary-color); /* Keep background */
        }

        &::before{
            content: '';
            width: 130px;
            height: 130px;
            position: absolute;
            border-radius: 50%;
            border: 1px solid #FFFFFF5E;
            z-index: 3;
        }

        & .over-title{
            letter-spacing: 0.1px;
            font-weight: 600;
            line-height: 1.25;
			font-size: 10px;
            z-index: 3;
            position: relative;
        }

        & .title{
            line-height: 1.17;
            font-weight: 600;
            font-size: 16px;
            font-family: var(--font-secondary);
            z-index: 3;
            position: relative;
        }

        & .dot{
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background-color: var(--main-text-color);
            margin-top: 10px;
            margin-bottom: 10px;
            z-index: 3;
            position: relative;
        }

        & .under-title{
            font-size: 10px;
            font-weight: 600;
            line-height: 1.2;
            z-index: 3;
            position: relative;
        }
    }
}

/*******************************
            PROJECT
*******************************/

h2{
    font-size: 24px;
    line-height: 1.375;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

h4{
    font-size: 24px;
    line-height: 1.375;
    font-weight: 700;
    color: var(--secondary-text-color);
    margin-bottom: 16px;
}

h5{
    font-size: 18px;
    line-height: 1.375;
    font-weight: 600;
    color: var(--secondary-text-color);
    margin-bottom: 24px;
}

.project-section {
    & .text-block{
        max-width: 678px;

        & p{
            line-height: 1.5;
            color: var(--secondary-text-color);
            margin-bottom: 20px;

            &:last-of-type{
                margin-bottom: 30px;
            }

            & span{
                color: var(--primary-color);
            }
        }
    }
}

/*******************************
        ADVANTAGES
*******************************/

.advantages-section{
    background: var(--primary-color);

    & .row{
        max-width: 1020px;

        &.row-4{
            max-width: 732px;

            & .col-md-6{
                padding-right: calc(var(--bs-gutter-x) * .5) !important;
                padding-left: calc(var(--bs-gutter-x) * .5) !important;
            }
        }

        & .col-md-6{
            padding-left: 36px !important;
            padding-right: 36px !important;
        }

        &.gy-custom{
            --bs-gutter-y: 34px;
        }
    }

    & .text-block{
        max-width: 678px;
        margin-bottom: 30px;
    }
 
    & h2{
        color: var(--main-text-color);
    }

    & .text{
        line-height: 1.5;
    }

    & .img-box{
        margin-bottom: 16px;
        width: 50px;
        height: 50px;
        background-color: #FFFFFF33;
        border-radius: 5px;

        & img{
            width: 100%;
            height: 100%;
            max-width: 30px;
            max-height: 30px;
            object-fit: contain;
        }
    }
}

/*******************************
          LOCATION
*******************************/

.location-section{

    & h3{
        color: var(--primary-color);
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 14px;

        & span{
            color: var(--secondary-text-color);
        }
    }

    & p{
        line-height: 1.5;
        color: var(--secondary-text-color);
        margin-bottom: 25px;
    }

    & .btn{
        margin-top: 15px;
        margin-bottom: 37px;
    }

    & h2{
        margin-bottom: 14px;
    }

    & .map-iframe{
        width: 100%;
        position: relative;
        height: 400px;
        left: unset;
        top: unset;
        bottom: unset;
    
        & iframe{
            height: 100%;
            width: 100%;
            float: left;
        }
    }
}

/*******************************
           IFRAME
*******************************/

.full-iframe-map{
    height: 500px;

    & iframe{
        height: 100%;
        width: 100%;
        float: left;
    }
}

/*******************************
        CONTACT PERSON
*******************************/

.contact-person-section{

    & .contact-block{
        max-width: 936px;
        gap: 24px;
    }

    & .img-box{
        width: 105px;
        height: 105px;
        min-width: 105px;
        min-height: 105px;
        border-radius: 50%;
        border: 3px solid var(--primary-color);
        overflow: hidden;

        & img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
        }
    }

    & .name{
        font-size: 20px;
        font-weight: 600;
        color: var(--primary-color);
        font-family: var(--font-secondary);
        line-height: 1.2;
        margin-bottom: 5px;
    }

    & .position{
        font-size: 14px;
        font-family: var(--font-secondary);
        font-weight: 400;
        color: var(--secondary-text-color);
        letter-spacing: 0.5px;
        line-height: 1.7;
    }

    & .email{
        margin-top: 7px;
        word-break: break-all;
    }

    & .phone,
    & .email{
        font-size: 14px;
        font-family: var(--font-secondary);
        font-weight: 400;
        color: var(--secondary-text-color);
        line-height: 1.2;
        transition: 0.3s all;

        &:hover,
        &:focus{
            color: var(--primary-color);
        }
    }
}

/*******************************
        REAL ESTATE
*******************************/

.real-estate-section{

    & .real-estate-block{
        gap: 37px;
    }

    & .img-box{
        height: fit-content;
        width: fit-content;

        & img{
            object-fit: contain;
            width: auto;
            height: auto;
            max-width: 160px;
            max-height: 100%;
        }
    }

    & p{
        font-size: 14px;
        color: var(--third-text-color);
        font-family: var(--font-secondary);
        line-height: 1.42;
        margin-bottom: 0px;
    }
}

/*******************************
           GALLERY
*******************************/

.gallery-section{

    & .services-swiper-container{
        padding-left: 12px;
    }

    & .swiper-slide{
        & img{
            width: 100%;
            height: auto;
            aspect-ratio: 1.39 / 1;
            object-fit: cover;
        }
    }

    & .swiper-pagination-gallery{
        color: #000;
        font-family: "Roboto", sans-serif;
        bottom: 0;
        top: 0;
    }

    & .navigation-container {
        margin-top: 37px;
    }
    
    & .swiper-button-next-gallery,  
    & .swiper-button-prev-gallery{
        width: 24px;
        height: 24px;
        background: var(--primary-color);
        color: var(--main-text-color);
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;

        &::after{
            font-size: 16px;
        }
    }

    & .swiper-button-next-gallery{
        right: calc(50% - 90px);
    }

    & .swiper-button-prev-gallery{
        left: calc(50% - 90px);
    }

    & .swiper-pagination-current{
        margin-right: 22.5px;
    }

    & .swiper-pagination-total{
        margin-left: 22.5px;
    }
}

/*******************************
           FOOTER
*******************************/

.scroll-up-button{
    background: var(--primary-color);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 12px;
    right: 12px;
    border: none;
    z-index: 3;
    opacity: 0;
    visibility: 0;
    transition: 0.3s all;

    & img{
        max-width: 24px;
        max-height: 24px;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.rights-navigation{
    right: 0;
    top: 70%;
    transform: translateY(-50%);
    z-index: 3;

    & a{
        width: 60px;
        height: 60px;
        background: #4A4A4A;

        & img{
            filter: brightness(0) invert(1);
        }

        &:not(:last-child){
            border-bottom: 1px solid #fff;
        }
    }
}

footer{
    border-top: 1px solid var(--third-text-color);
    padding-top: 17px;
    padding-bottom: 23px;

    & img{
        width: 20px;
        height: auto;
        max-height: 20px;
    }

    & .policy-block{
        gap: 14px;
        position: relative;
        
        & a::after{
            content: '|';
            right: -9px;
            position: absolute;
            top: 0;
            bottom: 0;
            pointer-events: none;
        }

        & a:last-child::after{
            display: none;
        }
    }

    & .policy,
    & .language,
    & .rights-text {
        color: var(--third-text-color);
        position: relative;
        font-size: 12px;
        
        &:hover{
            text-decoration: underline;
        }
		
		& .text{
			margin-bottom: 1px;
		}
    }

    & .rights-text{
        &:hover{
            text-decoration: none;
        }
    }

    & .language{
        gap: 5px;
    }
}

/*******************************
           ZUM TRUM
*******************************/

.zum-trum-section{

    & h2{
        margin-bottom: 30px;
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1.2;
    }

    & h4{
        font-size: 24px;
        letter-spacing: 0.15px;
        color: var(--secondary-text-color);
        line-height: 1.33;
        margin-bottom: 14px;
    }

    & .iframe-container {
        position: relative;
        overflow:hidden;
        width: 100%;
        padding-top: 56.25%;
        background-size: cover;
        background-position:center;
        background-repeat: no-repeat;
        max-width: 867px;
        margin: 0 auto;

        & iframe{
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 100%;
        }

        &:not(:last-child){
            margin-bottom: 30px;
        }
    }
}

/*******************************
            DOWNLOADS
*******************************/

.downloads-section {

    & .row{

        & .col-md-6{
            --bs-gutter-y: 20px;
            --bs-gutter-x: 20px;
        }
    }

    & h2{
        margin-bottom: 30px;
    }

    & .download-box{
        padding: 20px;
        border: 2px solid #926A7829;
        border-radius: 14px;

        & .text{
            margin-left: 10px;
            font-size: 20px;
            line-height: 1.2;
            color: var(--secondary-text-color);
            font-weight: 600;
        }
    }

    & .img-box{
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        background-color: var(--primary-color);
        border-radius: 5px;

        & img{
            width: 100%;
            height: 100%;
            max-width: 22px;
            max-height: 22px;
            object-fit: contain;
        }
    }
}

/*******************************
        GALLERY IMAGES
*******************************/


.gallery-images-section{

    & h2{
        margin-bottom: 30px;
    }

    & iframe{
        min-height: 350px;
    }

    & h3 {
        margin-bottom: 20px;
        font-size: 24px;
        line-height: 1.333;
        letter-spacing: 0.15px;
        color: var(--secondary-text-color);
        font-weight: 600;
    }

    & .gallery-box:not(:last-child) {
        margin-bottom: 30px;
    }

    & .popup-gallery{
        
        & a{
            width: 100%;
            aspect-ratio: 1.64 / 1;
            height: auto;

            & img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        & .row{
            --bs-gutter-x: 20px;
        }
    }
}

/*******************************
            SALESFLOW
*******************************/

.sales-section{

    & p{
        line-height: 1.5;
        color: var(--secondary-text-color);
    }   

    & .btn{
        margin-top: 16px;
    }
}

/*******************************
            PARTNERS
*******************************/

.partners-section{

    & .box{
        flex-wrap: nowrap;

        &:not(:last-child){
            margin-bottom: 25px;
        }

        &:hover .email{
            text-decoration: underline;
        }
    }

    & .email{
        margin-left: 16px;
        font-size: 16px;
        color: #000;
        line-height: 1.5;
        display: flex;
        align-items: center;
    }

    & h6{
        font-size: 24px;
        line-height: 1.333;
        font-weight: 700;
        color: var(--secondary-text-color);
        margin-bottom: 25px;
    }

    & .img-box{
        width: 30px;
        height: 30px;
        border-radius: 3px;
        background: var(--primary-color);

        & img{
            width: 100%;
            height: 100%;
            max-width: 15px;
            max-height: 15px;
            object-fit: contain;
        }
    }

    & h2{
        margin-bottom: 25px;
    }

    & .logo-img-box{
        height: 36px;
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 25px;

        & img{
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }
    }
}

/*******************************
            TIMELINE
*******************************/

.timeline-section{

    /* & .row{
        position: relative;

        &::after{
            content: '';
            left: 50%;
            top: 0;
            background: black;
            width: 1px;
            height: 100%;
            position: absolute;
            transform: translateX(-50%);
        }
    } */

    & .col-10:last-child{

        & .line-trough{
            display: none;
        }
    }

    & .timeline-box{
        padding: 20px;
        border: 2px solid #926A7829;
        border-radius: 14px;
        margin-right: 0px;

        &.right-side{
            margin-left: 0px;
            margin-right: 0px;
        }
    }

    & .extended-text {
        display: -webkit-box;
        -webkit-line-clamp: 3;     /* Limit to 3 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: all 0.3s ease;
        color: #A2A3B1;
        font-size: 12px;
        line-height: 1.33;
        margin-bottom: 8px;

        &.expanded{
            -webkit-line-clamp: unset;  /* Remove line limit */
            overflow: visible;
        }
    }

    & .extend-button{
        background-color: transparent;
        font-size: 14px;
        padding: 0px;
        border: none;
        color: var(--secondary-text-color);
        font-weight: 600;
        line-height: 1.14;
        margin-bottom: 10px;
    }

    & .number-box{
        width: 40px;
        height: 40px;
        background: #D1D1D8;
        border-radius: 50%;
        left: calc(-16.66666667% - 20px);
        top: -2px;
        z-index: 2;

        & .number{
            font-size: 18px;
            line-height: 1;
            font-weight: 500;
            font-family: var(--font-third);
            color: #A2A3B1;
        }

        &.number-box-right{
            left: calc(-16.66666667% - 20px);;
            right: unset;
        }
    }

    & .line-trough{
        left: calc(-16.66666667% - 1px);
        height: calc(100% + 24px);
        width: 2px;
        background: #D1D1D8;
        top: 2px;

        &.line-trough-right{
            left: calc(-16.66666667% - 1px);
        }
    }

    & .todo-para{
        font-size: 14px;
        color: var(--secondary-text-color);
        font-weight: 600;
        line-height: 1.14;
        margin-top: 8px;
    }

    & .todo-box{
        margin-top: 20px;

        & .todo-text{
            color: var(--primary-color);
            letter-spacing: 0.1px;
            color: var(--primary-color);
            font-weight: 600;
            line-height: 1.25;
            margin-left: 8px;
        }

        & .todo-icon-box{
            width: 24px;
            height: 24px;

            & img{
                width: 100%;
                height: 100%;
                max-width: 22px;
                max-height: 22px;
                object-fit: contain;
            }
        }
    }

    & .header-box{
        gap: 10px;
        margin-bottom: 20px;

        & .title{
            color: var(--secondary-text-color);
            font-size: 24px;
            line-height: 1.33;
            letter-spacing: 0.15px;
            font-weight: 600;
        }

        & .icon-box{
            width: 48px;
            height: 48px;
            display: flex;
            justify-content: center;
            align-items: center;

            & img{
                width: 100%;
                height: 100%;
                max-width: 48px;
                max-height: 48px;
                object-fit: contain;
            }
        }
    }
}

/*******************************
            RESPONSIVE
*******************************/
@media screen and (min-width: 576px) {
    footer{
    
        & .policy-block{
            gap: 37px;
            
            & a::after{
                right: -21px;
            }
        }
    
        & .policy,
        & .language,
        & .rights-text {
            font-size: 16px;
        }
    }
    
    .services-swiper-container{
        --container-plus-right: 540px;
        max-width: calc(var( --container-plus-right) + ((100% - var( --container-plus-right) )/2));
    }
}

@media screen and (min-width: 768px) {

    .scroll-up-button{
        bottom: 75px;
        right: 24px;
    }
	
	.hero{
		& .circle-link{
			bottom: 100px;
			width: 236px;
			height: 236px;

			&::after{
				width: 217px;
				height: 217px;
			}

			&::before{
				width: 217px;
				height: 217px;
			}

			& .dot{
				margin-top: 20px;
				margin-bottom: 20px;
			}
			
			& .over-title {
				font-size: 12px;
			}

			& .title{
				font-size: 30px;
			}

			& .under-title{
				font-size: 18px;
			}
		}
	}

    .post-password-form{
    
        & input:first-child{
            min-width: 392px;
        }
    }

    .timeline-section{
        & .number-box{
            width: 40px;
            height: 40px;
            background: #D1D1D8;
            border-radius: 50%;
            left: -121px;
            top: -2px;
            z-index: 2;
    
            & .number{
                font-size: 18px;
                line-height: 1;
                font-weight: 500;
                font-family: var(--font-third);
                color: #A2A3B1;
            }
    
            &.number-box-right{
                left: -121px;
                right: unset;
            }
        }
    
        & .line-trough{
            left: -102px;
            height: 100%;
            width: 2px;
            background: #D1D1D8;
            top: 2px;
    
            &.line-trough-right{
                left: -102px;
                height: 100%;
                width: 2px;
                background: #D1D1D8;
                top: 2px;
            }
        }
    }

    .offcanvas.offcanvas-end{
        width: 60%;
    }

    .gallery-images-section{
    
        & iframe{
            min-height: 525px;
        }

    }

    .contact-person-section{
        
        & .img-box{
            width: 140px;
            height: 140px;
            min-width: 140px;
            min-height: 140px;
        }

        & .phone,
        & .email{
            font-size: 16px;
        }
    }
    .services-swiper-container { 
        --container-plus-right: 720px;
   }
}

@media screen and (min-width: 992px) {

    .timeline-section{
        & .timeline-box{
            padding: 20px;
            border: 2px solid #926A7829;
            border-radius: 14px;
            margin-right: 45px;
    
            &.right-side{
                margin-left: 45px;
                margin-right: 0px;
            }
        }

        & .line-trough{
            right: -60px;
            left: unset;

            &.line-trough-right{
                left: -60px;
                right: unset;
            }
        }

        & .number-box{
            right: -79px;
            left: unset;

            &.number-box-right{
                left: -79px;
                right: unset;
            }
        }
    }

    .sales-section{
    
        & .btn{
            margin-top: 26px;
        }
    }

    .gallery-images-section{

        & h2{
            margin-bottom: 50px;
        }

        & .gallery-box:not(:last-child) {
            margin-bottom: 50px;
        }
    

    }

    .downloads-section {

        & h2{
            margin-bottom: 50px;
        }

    }

    body {

        &.no-hero-body{
            padding-top: 81px !important;
        }
    }

    .zum-trum-section{

        & h2{
            margin-bottom: 40px;
        }

        & h4{
            margin-bottom: 20px;
        }

        & .iframe-container {
    
            &:not(:last-child){
                margin-bottom: 55px;
            }
        }

    }

    .full-iframe-map{
        height: 700px;
        & iframe{
            height: 100%;
        }
    }

    .location-section{

        & .table-responsive{
            margin-top: 76px;
        }

        & .btn{
            margin-top: 47px;
            margin-bottom: 0px;
        }
    
        & .map-iframe{
            width: calc(50% - 70px);
            position: absolute;
            height: 100%;
            left: 0;
            top: 0;
            bottom: 0;
        }

        & .text-block{
            margin-right: 61px;
        }
    }

    .advantages-section{
        & .text-block{
            margin-bottom: 50px;
        }
    }

    h2{
        font-size: 32px;
        margin-bottom: 14px;
    }

    h4{
        font-size: 32px;
        margin-bottom: 20px;
    }

    h5{
        font-size: 20px;
        margin-bottom: 44px;
    }

    .project-section {
        & .text-block{

            & p{
                margin-bottom: 30px;

                &:last-of-type{
                    margin-bottom: 40px;
                }
            }
        }
    }

    .section-padding{
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero {
        padding-top: 130px;
        padding-bottom: 130px;

        & h1 {
            font-size: 64px;
            line-height: 1.14;
            font-weight: 700;
            margin-bottom: 20px;
        }

        & p{
            margin-bottom: 20px;
        }

        & .scroll-down-block{
            bottom: 57px;
        }

        & .circle-link{
            bottom: 78px;
            width: 306px;
            height: 306px;

            &::after{
                width: 306px;
                height: 306px;
            }
    
            &::before{
                width: 277px;
                height: 277px;
            }

            & .dot{
                margin-top: 20px;
                margin-bottom: 20px;
            }

            & .title{
                font-size: 40px;
            }

            & .under-title{
                font-size: 20px;
            }
        }
    }

    .services-swiper-container { 
        --container-plus-right: 960px;
    }
}



@media screen and (min-width: 1200px) {
    nav{
        transform: translateY(-81px);

        & .offcanvas-header{
            min-height: 81px;
        }

        & .first-part{
            gap: 20px;
            margin-right: 0px;
        }

        & .second-part{
            margin-right: 20px !important;
            margin-top: 0px !important;
            margin-bottom: 0px !important;
        }

        & .nav-link{
            color: var(--light-nav-color) !important;

            &.active{
                color: var(--main-text-color) !important;
            }

            &:hover{
                color: var(--main-text-color) !important;
            }
        }

        & .wrap-contact{
            list-style-type: none;
        }
    }

    .container-navigation{
        padding-right: 0px;
    }

    .services-swiper-container { 
        --container-plus-right: 1140px;
    }
}

@media screen and (min-width: 1400px) {
    .table th,
    .table td{
        min-width: 91px;
    }

    .container-fluid{
        max-width: 1920px;
    }

    nav{
        & .first-part{
            gap: 40px;
            margin-right: 0px;
        }
        & .second-part{
            gap: 24px;
            margin-right: 36px !important;
        }
    }

    .services-swiper-container { 
        --container-plus-right: 1320px;
    }
}

@media screen and (min-width: 1920px) {
    .navbar-brand{
        margin-left: 0px !important;
    }
}