* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Light';
    src: url('../fonts/Roboto-Black.ttf') format('truetype');
}

body, html {
    margin: 0;
    padding: 0;

    font-family: 'Roboto-Regular';
    font-weight: normal;
    font-size: 14px;
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

nav {
    position: fixed;
    width: 100%;
    height: 50px;
    z-index: 100;
    margin: 0;
    padding: 0;
    background: black;
}

ol, ul, li {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a, a:active, a:hover, a:focus {
    text-decoration: none;
    color: #efd295;
}

#index-section {
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    right: 0;
}

.body-section {
    width: 100%;
    height: 100vh;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.index-bg {
    width: 120%;
    top: -10%;
    position: fixed;
    height: 120vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 20%;
    display: block;
    color: #efd295;
    font-size: 35px;
    width: 100%;
    height: 50px;
}

.logo img {
    position: relative;
    width: 30%;
    left: 35%;
}

.index-loader .logo img {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    cursor: pointer;
}

.index-loader .logo:hover img {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.prev-page-btn, .next-page-btn,
.prev-page-btn-project-detail, .next-page-btn-project-detail {
    position: absolute;
    top: 50%;
    height: 50px;
    left: 10%;
    z-index: 9;
}

.next-page-btn,
.next-page-btn-project-detail {
    right: 10%;
    left: auto;
}

#categories {
    left: -100%;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.nav-circle-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(155, 136, 94, 0.3);
    border-radius: 25px;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    box-shadow: 0 0 5px rgba(155, 136, 94, 0.1);
}

#categories .nav-circle-icon {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

#categories .nav-circle-icon:hover {
    border: 2px solid rgba(255, 255, 255, 1);
}

.nav-circle-icon:hover {
    border: 2px solid rgba(155, 136, 94, 1);
}

.nav-circle-text {
    position: relative;
    top: -43px;
    left: 85px;
    font-family: Roboto-Regular;
}

.nav-circle-text-right {
    position: relative;
    top: -43px;
    left: -120px;

    font-family: Roboto-Regular;

}

#categories .prev-page-btn img,
#categories .next-page-btn img {
    filter: brightness(0) invert(1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);

}

.prev-page-btn-project-detail img, .next-page-btn-project-detail img,
.prev-page-btn img, .next-page-btn img {
    width: 40px;
    position: relative;
    top: 16px;
    left: 20px;
}

.next-page-btn img {
    left: -20px !important;
}

.next-page-btn img,
.next-page-btn-project-detail img {
    float: right;
    position: relative;
    left: 10px;
}

.prev-page-btn img,
.prev-page-btn-project-detail img {
    float: left;
    position: relative;
    right: 10px;
}

.prev-page-btn img,
.next-page-btn img,
.prev-page-btn-project-detail img,
.next-page-btn-project-detail img {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.prev-page-btn, .next-page-btn {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.prev-page-btn:hover {
    left: calc(10% - 15px);
    padding-right: 40px;
}

.next-page-btn:hover {
    right: calc(10% - 15px);
    padding-left: 40px;
}

.prev-page-btn:hover img,
.prev-page-btn-project-detail:hover img {
    left: 7px;
    width: 25px;
}

.next-page-btn:hover img,
.next-page-btn-project-detail:hover img {
    left: -7px !important;
    width: 25px;
}

.prev-page-btn,
.next-page-btn,
.prev-page-btn-project-detail {
    color: #FFF;
    line-height: 50px;
    cursor: pointer;
}

.comment-container {
    position: absolute;
    bottom: 25%;
    height: 50px;
    width: 700px;
    color: #efd295;
}

.comment-container .comment-description {
    text-align: center;
    line-height: 25px;
    font-family: 'Roboto-Regular';
}

.comment-container .comment-user {
    text-align: right;
    line-height: 40px;
    margin-right: 20px;
}

.comment-item {
    display: none;
}

.comment-item:first-child {
    display: block;
}

#inner-page {
    width: 100%;
    height: 100%;
    background: url('../../../static/frontend/images/bg1.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

#inner-page-projects {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: #000000;
    -webkit-transition: left 1000ms ease;
    -moz-transition: left 1000ms ease;
    -ms-transition: left 1000ms ease;
    -o-transition: left 1000ms ease;
    transition: left 1000ms ease;
}

#inner-page-project-detail {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    background: #000000;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.scroll-project {
    position: absolute;
    bottom: 60px;
    left: 20%;
}

.scroll-btn, .scroll-btn-detail {
    text-align: left;
    cursor: pointer;
    color: #FFFFFF;
    font-size: inherit;
    position: relative;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.project-bottom-text {
    float: left;
    position: relative;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    padding-right: 10px;
    font-size: 20px;
}

.project-bottom-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #FFFFFF;
    padding: 5px;
    float: left;
    position: relative;
    top: -3px;
    border-radius: 15px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

@keyframes mouse-effect {
    from {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
    to {

        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.project-bottom-mouse {
    width: 60px;
    height: 60px;
    float: left;
    position: relative;
    top: -3px;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -ms-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
    animation: mouse-effect 2s infinite;
    animation-delay: 4s;
}

.project-bottom-mouse img {
    width: 40px;
    filter: brightness(0) invert(1);
    position: relative;
    left: 4px;
    top: -4px;
}

.project-bottom-arrow img {
    width: 8px;
    filter: brightness(0) invert(1);
    position: relative;
    left: 4px;
    top: -4px;
}

.scroll-btn:hover .project.nav-circle-icon-bottom-arrow, .scroll-btn-detail:hover .project-bottom-arrow, .scroll-btn-detail:hover .project-bottom-mouse {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.scroll-project:hover .project-bottom-arrow, .scroll-project:hover .project-bottom-mouse {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    animation: none;

}

.scroll-btn:hover .project-bottom-text {
    left: -3px;
}

.slide-area {
    width: 60%;
    height: auto;
    left: 20%;
    position: absolute;
    top: 35%;
    font-family: Roboto-Regular;
}

.bg-dark-opacity {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.bg-dark-opacity-category {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.38);
    box-shadow: inset 0 0 600px 200px rgba(0, 0, 0, 0.6)
}

.slide-area-about {
    width: calc(60% + 350px);
    height: 0;
    left: 115px;
    position: absolute;
    top: 20%;
    font-family: Roboto-Regular;
    /*text-align: justify;*/
    /*overflow: hidden;*/
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.slide-txt h2 {
    font-size: 30px;
    font-weight: normal;
    color: #efd295;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #363636;

}

.slide-txt p {
    font-size: 19px;
    font-weight: normal;
    line-height: 30px;
    color: #efd295;
    text-shadow: 1px 1px 1px #000;
}

.slide-area-about .slide-txt p {
    font-size: 14px;
    font-weight: normal;
    line-height: 30px;
    color: #efd295;
    text-shadow: 2px 1px 1px #000;
}

.about-content {
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
    color: #FFFFFF;
    text-shadow: 2px 1px 1px #000;
    padding-top: 30px;
    text-align: center;
    height: 68vh;
    padding-right: 40px;
    /*overflow-y: scroll;*/

}

.about-content strong {
    font-family: Roboto-Bold;
}

.slide-area-about .slide-txt .about-content p {
    font-size: 16px;
    font-weight: normal;
    line-height: 30px;
    color: #FFFFFF;
    text-shadow: 2px 1px 1px #000;
    text-align: left;
}

.inner-cont {
    position: absolute;
    left: 25%;
    top: 100px;
    transition: all 0.4s ease;
    z-index: 9;
}

.back-home {
    position: absolute;
    left: 20%;
    top: 25%;
    z-index: 9;
    text-shadow: 0 0 3px #000000;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.back-home img {
    width: 65px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    position: relative;
    padding-right: 25px;
    text-shadow: 0 0 3px #000000;
}

.back-home:hover img {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    margin-right: 50px
}

.back-home a {
    color: #ffffff;
    display: block;
    float: left;
}

.inner-cont:hover {
    left: calc(25% - 20px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

/********** Inner Page CSS **************/

.header {
    width: 90%;
    height: auto;
    margin: 0 auto;
}

.inner-logo {
    cursor: pointer;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 40px;
    left: 115px;
    z-index: 99;
    display: block;
    color: #FFFFFF;
    font-size: 35px;
    width: calc(100% - 115px);
}

.inner-logo img {
    width: 21% !important;
}

.lang-cont {
    height: auto;
    margin-top: 40px;
    z-index: 1;
    padding-bottom: 10px;
    font-family: Roboto-Regular;
    float: right;
    padding-right: 50px

}

.lang-cont-inner {
    position: relative;
}

.lang-cont-bottom {
    position: fixed;
    bottom: 20px;
    left: 80%;
}

.inner-lang-cont-bottom {
    position: absolute;
    top: inherit;
    bottom: inherit;
    right: 10px;
}

.lang-cont-home {
    position: absolute;
    left: 60%;
    z-index: 999;
    width: 500px
}

.lang-cont-index {
    position: absolute;
    top: 0px;
}

.lang-cont-home .container-back {
    float: left;
    position: relative;
    top: 40px;
    font-family: Roboto-Regular;
    text-shadow: 1px 1px 1px #000000;
    left: 40px
}

.container-back img {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.container-back:hover img {
    position: relative;
    padding-left: 10px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.inner-back-button:hover img {
    margin-left: 10px;
    -webkit-transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;
}

.lang-cont-home .container-back img {
    width: 80px;
    -webkit-transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;
}

.lang-cont a {
    color: #fff8e9;
    display: block;
    margin-right: 3px;
    float: right;
    text-shadow: 1px 1px 1px #000000;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.lang-cont a.contact-button {
    margin-right: 20px;
    position: relative;
}

.lang-cont a.about-button {
    right: 20px;
    position: relative;
}

.lang-cont a:hover {
    color: #efd295;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.lang {
    display: inline-block;
}

.lang li {
    float: left;
}

.lang li a {
    display: block;
    color: #fff8e9;
    margin-right: 0;
}

.lang li a:hover {
    color: #efd295;
}

#projects {
    width: 100%;
    min-height: 100%;
    z-index: 9;
    position: absolute;
    top: 100%;
    background-size: cover;

}

#project-detail-cont {
    width: 100%;
    min-height: 100%;
    position: absolute;
    background-size: cover;
}

.prj-details {
    background: #fff;
    height: auto;
    width: 78%;
    float: left;
}

.menu-cont {
    width: 300px !important;
    height: auto;
    position: absolute;
    left: 78%;
    z-index: 100;
}

.prj-cont {
    width: 100%;
    height: auto;
    padding-left: 20%;
    padding-top: 100px;
}

.prj-cont h3 {
    color: #1e1d1d;
    font-size: 3.3vw;
    line-height: 25px;
    font-weight: normal;
    margin-bottom: 120px;
    font-family: Roboto-Bold;
}

.project-detail-page-content {
    padding: 40px;
    padding-top: 50px;
    padding-left: 15%;
    padding-right: 10%;
}

.project-box {
    width: 25vw;
    height: 25vw;
    float: left;
    overflow: hidden;
    margin-right: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    font-family: Roboto-Regular;
}

.project-box strong {
    font-family: Roboto-Bold;
    color: #1e1d1d;
    font-size: 22px;
    line-height: 45px;
}

.project-box-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-box-name {
    position: relative;
    height: 0;
    top: calc(90% - 5px);
    font-size: 19px;
    color: #FFFFFF;
    z-index: 99999;
    text-align: right;
    opacity: 0;
    padding-right: 20px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    text-shadow: 1px 1px 1px #000000;
    font-family: 'Roboto-Regular';
    padding-left: 20px;

}

.project-box-name a {
    color: #FFFFFF;
}

.product-box-name {
    position: relative;
    height: 0;
    top: calc(6vw - 30px);
    font-size: 20px;
    color: #FFFFFF;
    z-index: 9;
    text-align: center;
    opacity: 1;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    text-shadow: 0 0 10px #000000;
    cursor: pointer;

}

.project-box-image img {
    width: 100%;
    min-height: 100%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    object-fit: cover;
}

.project-box-image:hover img {
    transform: scale(1.1);
}

.project-box-image:hover .project-box-name {
    opacity: 1;
}

.product-box-image-hover {
    width: 100%;
    height: calc(100% + 10px);
    position: relative;
    -webkit-transition: all 450ms ease;
    -moz-transition: all 450ms ease;
    -ms-transition: all 450ms ease;
    -o-transition: all 450ms ease;
    transition: all 450ms ease;
    top: calc(-25vw - 15px);
    z-index: 1;
    left: 0;
}

.project-box:hover .product-box-image-hover {
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;

}

.product-box-image img {
    width: 100%;
    min-height: 100%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    object-fit: cover;
}

.product-box-image:hover img {
    transform: scale(1.1);
}

.project-detail-box .product-box-image:hover img {
    transform: scale(1);
}

.product-box-image:hover .project-box-name {
    opacity: 1;
}

.project-box-detail {
    width: calc(56% - 89px);
    height: 250px;
    position: absolute;
    left: 7%;
    margin-top: 10px;
    display: none;
}

.project-detail-slider {
    width: 58.5vw;
    height: calc(50vw - 100px);
    overflow: hidden;
    background: #000000;
}

.project-detail-slider .slides img {
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.full-screen-bg {
    width: 58.5vw;
    z-index: 1;
    height: calc(50vw - 140px);
    top: calc(-50vw + 100px);
    position: relative;
    left: calc(-58.5vw + 21px);
    background: transparent
}

.slide-img {
    height: calc(100% - 50px);

}

.slider .slides {
    background: #FFFFFF !important;
    height: 100% !important;
}

.slide-counter {
    font-size: 16px;
    font-family: 'Roboto-Bold';
    padding: 10px 0;
}

.project-box-detail-slide {
    height: 100% !important;
}

h3.project-box-detail-name {
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    padding-top: 10px;
}

.fullscreen .slides img {
    min-width: 100%;
    position: fixed;
    min-height: 100%;
    height: inherit;
}

.project-box-detail .next-slide {
    float: right;
    position: relative;
    top: -23vw;
    z-index: 9;
    right: 25px;
}

.project-detail-page-content-slide-nav .next-slide {
    float: right;
    position: relative;
    z-index: 9;
    right: -10px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-detail-page-content-slide-nav .next-slide:hover {
    padding-left: 20px;
    right: -20px;
}

.project-box-detail .prev-slide {
    float: left;
    position: relative;
    top: -23vw;
    z-index: 9;
    left: 25px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.nav-slide-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    box-shadow: 0 0 5px rgba(155, 136, 94, 0.1);
}

.nav-slide-icon {
    filter: brightness(0) invert(1);
    cursor: pointer;
}

.nav-slide-icon img.prv-page {
    position: relative;
    top: 7px;
    left: 20px;
    width: 45px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.nav-slide-icon:hover img.prv-page {
    position: relative;
    top: 7px;
    left: 3px;
    width: 32px;
    cursor: pointer;
}

.nav-slide-icon img.next-page {
    position: relative;
    top: 7px;
    left: -20px;
    width: 45px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    cursor: pointer;
}

.project-detail-page-content-slide-nav .next-slide:hover img.next-page {
    position: relative;
    top: 7px;
    left: 3px;
    width: 32px;
}

.project-detail-page-content-slide-nav .prev-slide {
    float: left;
    position: relative;
    z-index: 9;
    left: 25px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-detail-page-content-slide-nav .prev-slide:hover {
    padding-right: 20px;
    left: 15px;
}

.show-project-detail {
    text-align: left;
    clear: both;
    position: relative;
    top: -60px;
}

.project-box p {
    font-weight: normal;
    font-size: 20px;
    line-height: 25px;
    color: #1e1d1d;
}

.project-box ul {
    margin: 35px 0 0px 0;
}

.project-box ul li a {
    color: #1e1d1d;
    font-size: 22px;
    line-height: 45px;
}

.menu-left {
    width: 200px;
    height: auto;
    float: left;
    padding: 10px 25px 0 60px;
    text-shadow: 0 0 4px #000000;
    position: relative;
    z-index: 9999;
}

.menu-left ul li a {
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    text-align: right;
    display: block;
    padding-bottom: 18px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.menu-left ul li a:hover {
    color: #efd295;
}

.menu-right {
    width: auto;
    height: auto;
    position: absolute;
    font-size: 25px;
    text-shadow: 0 0 2px #000000;
}

.menu-border {
    width: 3px;
    height: 320px;
    border-left: 3px solid #efd295;
    margin-top: 24px;
    float: left;
}

.vertical-text {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    display: block;
    color: #fff;
    top: 153px;
    width: 300px;
    left: 84px
}

#projects-slider-content {
    z-index: -1;
}

.project-detail-page-content-title {
    font-size: 20px;
    position: relative;
}

.project-detail-page-content-sub-title {
    font-size: 14px;
    position: relative;
    padding-top: 40px;
    padding-left: calc(7vw - 5px)
}

.project-detail-page-content-descr {
    position: relative;
    text-align: center;
    font-size: 14px;
    font-family: 'Roboto-Regular';

}

.next-slide-button, .prev-slide-button {
    position: absolute;
    right: 5%;
    top: calc(50% - 25px);
    z-index: 99;
    cursor: pointer;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.prev-slide-button {
    right: inherit;
    left: 5%;
}

.next-slide-button img, .prev-slide-button img {
    height: 50px;
}

.next-slide-button:hover, .prev-slide-button:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.slide-full-screen {
    float: right;
    width: 20px;
    height: 20px;
    position: relative;
    top: -40px;
    z-index: 99;
    cursor: pointer;
    left: -2px;
}

#project-text-detail {
    float: right;
    width: 20px;
    height: 20px;
    position: relative;
    top: -40px;
    z-index: 99;
    cursor: pointer;
    left: -15px;
}

#project-text-detail img {
    width: 22px;
    cursor: pointer;
}

.slide-full-screen img {
    width: 20px;
}

#category-detail {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#category-detail-bg {
    position: fixed;
    width: calc(100% + 50px);
    height: calc(100% + 90px);
    top: -25px !important;
    left: -25px;
}

#category-detail-bg div {
    width: 100%;
    height: 100%;
}

#category-detail-bg div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-page-title {
    padding-bottom: 30px;
    font-weight: bold;
    font-size: 24px;
    color: #1E1D1D;
    font-family: 'Roboto-Bold';
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome and Opera */
}

.project-detail-table {
    width: 80%;
    margin: auto;
    position: relative;
    top: -50px;
    padding: 15px;
}

.project-detail-table-item {
    padding-top: 15px;
    border-bottom: 1px solid #000;
    padding-right: 20px;
    font-family: 'Roboto-Regular';
}

.project-detail-table-item span {
    padding-right: 5px;
    font-family: 'Roboto-Bold';
    font-weight: bold;
}

.clearfix {
    clear: both;
}

.project-name-content {
    position: relative;
    top: -80px;
    text-align: center;
    height: 100px;
    width: 300px;
    margin: auto;
}

.project-name-top:hover, .project-name-bottom:hover {
    -webkit-transform: scale(1.2);
}

.project-name-top, .project-name-bottom {
    font-size: 12px;
    position: relative;
    z-index: 999;
    font-weight: bold;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    cursor: default;
    width: 50%;
    margin: auto;
}

.project-name-center {
    padding: 5px;
    font-size: 16px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    cursor: default;
    z-index: 99;
    position: relative;
    text-transform: uppercase;
}

.product-list {
    width: 48vw;
    margin: auto;
    padding: 30px 0
}

.product-list-item {
    width: calc(25% - 30px);
    height: calc(12vw - 30px);
    float: left;
    border: 1px solid #000000;
    margin: 15px;
    overflow: hidden;
}

.back-button {
    font-size: 14px;
    line-height: 25px;
    padding: 5px 0;
    position: relative;
    top: 4px;
    float: right;
    padding-right: 50px;
}

.back-button span:last-child {
    padding-left: 5px;
}

.back-button-nav-circle-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #efd295;
    border-radius: 10px;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    text-align: center;
    float: left;
    line-height: 19px;
    font-family: "Arial";
    position: relative;
    top: 2px
}

.back-button-category {
    float: right;
}

.back-button-category a {
    color: #CCCCCC;
    font-family: Roboto-Regular;
    font-size: 17px;
}

.lg-backdrop, .lg-outer .lg-thumb-outer {
    background: #FFFFFF !important;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
    height: 150px !important;
    top: calc(50% - 50px) !important;
    width: 70px !important;
    background: transparent !important;
    color: #cacaca !important;
    font-size: 60px !important;
    display: block !important
}

.lg-actions .lg-prev, .lg-actions .lg-next {
    padding: 10px;
    background: #0000005b !important;
    cursor: pointer;
}

.lg-actions .lg-prev:hover {
    color: #FFFFFF !important
}

.lg-actions .lg-prev {
    background: url(../images/left-black.png) no-repeat !important;
    background-size: 70px 70px !important
}

.lg-actions .lg-next {
    background: url(../images/right-black.png) no-repeat !important;
    background-size: 70px 70px !important
}

.lg-actions .lg-prev:after {
    content: '';
    font-family: Roboto-Regular;
}

.lg-actions .lg-next:before {
    content: '';
    font-family: Roboto-Regular;
}

.lg-outer .lg-thumb-outer {
    height: 85px !important;
}

.lg-thumb-outer .lg-thumb {
    margin: auto;
}

.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
    color: rgba(255, 255, 255, 0.5) !important;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
    color: rgba(0, 0, 0, 0.5) !important;
}

.lg-outer .lg-toogle-thumb {
    visibility: hidden;
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #f9b300 !important;
}

.lg-toolbar .lg-icon {
    color: #000000 !important;
    background: transparent !important;
}

.lg-toolbar {
    background: transparent !important;
}

#lg-counter {
    color: #999;
    display: inline-block;
    font-size: 16px;
    padding-left: 20px;
    padding-top: 12px;
    vertical-align: middle;
    display: block;
    bottom: 4px;
    position: fixed;
    left: 0;
}

.project-logo-btn img {
    width: 200px;
    filter: brightness(0%);
}

.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 1);
    z-index: 999999999;
}

.whirlpool {
    width: 100px;
    height: 100px;
    margin: auto;
    position: relative;
    top: calc(50% - 50px);
}

.ring:before {
    content: '';
    border-radius: 50%;
    border: 1px solid #f9b300;
    height: 30px;
    width: 100px;
    position: absolute;
}

.ring1:before {
    left: 40px;
    width: 20px;
    top: 12px;
    height: 6px;
    animation: 2.5s ease 0s infinite spinner;
}

.ring2:before {
    left: 35px;
    width: 30px;
    top: 10.5px;
    height: 9px;
    animation: 2.5s ease 0.1s infinite spinner;
}

.ring3:before {
    left: 30px;
    width: 40px;
    top: 9px;
    height: 12px;
    animation: 2.5s ease 0.2s infinite spinner;
}

.ring4:before {
    left: 25px;
    width: 50px;
    top: 7.5px;
    height: 15px;
    animation: 2.5s ease 0.3s infinite spinner;
}

.ring5:before {
    left: 20px;
    width: 60px;
    top: 6px;
    height: 18px;
    animation: 2.5s ease 0.4s infinite spinner;
}

.ring6:before {
    left: 15px;
    width: 70px;
    top: 4.5px;
    height: 21px;
    animation: 2.5s ease 0.5s infinite spinner;
}

.ring7:before {
    left: 10px;
    width: 80px;
    top: 3px;
    height: 24px;
    animation: 2.5s ease 0.6s infinite spinner;
}

.ring8:before {
    left: 5px;
    width: 90px;
    top: 1.5px;
    height: 27px;
    animation: 2.5s ease 0.7s infinite spinner;
}

.ring9:before {
    width: 100px;
    height: 30px;
    animation: 2.5s ease 0.8s infinite spinner;
}

.mobile-menu {
    display: none
}

@keyframes spinner {
    0% {
        transform: translateY(10px);
        animation-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
    }
    50% {
        transform: translateY(60px);
        animation-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
    }
    100% {
        transform: translateY(10px);
        animation-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
    }
}

.form-item {
    width: calc(50% - 20px);
    float: left !important;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    height: 40px;

}

.form-item input {
    outline: none !important;
    box-shadow: none !important;
    width: 90% !important;
    float: left;
    border: 1px solid #CCCCCC !important;
    padding: 7px !important;
    height: 20px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
}

.form-item select {
    outline: none !important;
    display: block;
    border: 1px solid #CCCCCC;
    width: calc(90% + 16px);
    height: 36px;

}

.form-item-county {
    width: calc(25% - 30px);
    overflow: visible;
}

.form-item-post {
    width: calc(25% - 30px);
    margin-left: 14px;
    overflow: visible;
}

.product-contact-form {
    width: 80%;
    margin: auto;
}

.tango-form-submit, .tango-form-submit:active, .tango-form-submit:focus {
    float: right;
    padding: 9px 26px;
    border: none;
    background: #efd295;
    color: #FFFFFF;
    border-radius: 3px;
    cursor: pointer;
    z-index: 9;
    position: relative;
    left: -25px;
    top: -10px;
}

.error-message {
    position: relative;
    text-align: left !important;
    padding-left: 15px;
    color: red
}

.form-item-remarks {
    width: 100%;
    height: 100px;
}

.success-message {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999999;
    left: 0;
    top: -100%;
    color: #FFFFFF;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.success-message-container {
    width: 600px;
    padding: 100px 20px;
    position: absolute;
    top: calc(50% - 200px);
    background: #FFFFFF;
    left: calc(50% - 300px);
    color: #000000
}

.success-message-exit {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px;
    padding: 20px;
    cursor: pointer;
}

.form-item-remarks textarea {
    padding: 10px 15px;
    outline: none !important;
    box-shadow: none !important;
    width: calc(100% - 30px);
    float: left;
    border: 1px solid #CCCCCC !important;
    padding: 7px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    height: inherit;
}

.form-item input, .form-item textarea, .form-item select, .form-item label {
    font-size: 14px !important;
    font-family: Roboto-Regular !important;
    color: #000000;
}

.form-item label {
    float: left;
    position: relative;
    left: 40px;
    top: 9px;
}

.form-item [type="checkbox"]:not(:checked), .form-item [type="checkbox"]:checked {
    opacity: 1;
    position: relative;
    pointer-events: inherit;
    top: -10px;
    left: 15px;
    background: #000000;
}

.product-form-title {
    text-align: left;
    padding: 20px 10px;
    font-size: 20px;
    font-family: Roboto-Bold;
}

#slider-navbar-container {
    position: relative;
    top: -25vw;
    min-height: 40px;
    z-index: 99;
}

#contact-menu {
    width: 200px;
    position: fixed;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
    padding: 100px 40px;
    color: #FFFFFF;
    font-size: 16px;
    font-family: Roboto-Bold;
    z-index: 9999999999;
    padding-top: 40px;
}

.contact-menu-bottom {
    position: absolute;
    bottom: 60px
}

#contact-menu-title {
    padding: 10px 0;
}

#contact-menu a {
    font-size: 16px;
    font-family: Roboto-Regular;
    padding-block-end: 5px 0;
    color: rgba(246, 246, 246, 0.75);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

#contact-menu a:hover {
    color: rgba(246, 246, 246, 1);
}

#contact-addresses {
    padding: 40px 0px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(24, 17, 15, 0.7);
    min-height: 200px;
    color: #FFFFFF;
}

.contact-address-container {
    width: calc(100% - 200px);
}

.contact-address-box {
    width: 450px;
    float: left;
}

.contact-address-box-title {
    font-family: Roboto-Bold;
    font-size: 16px;
}

.contact-address-box-address {
    font-family: Roboto-Regular;
    font-size: 12px;
    color: #f6f6f6;
}

.container-logo img {
    height: 30px;
}

.container-back {
    text-align: right;
    font-size: 16px;
}

.content-header-container {
    padding: 0 40px
}

.go-back-btn {
    cursor: pointer;
}

a.contact-url {
    color: #FFFFFF;
    float: right;
    padding-left: 30px
}

#content-header {
    position: absolute;
    top: 40px;
    width: calc(100% - 200px);
    left: 0
}

.ui-loader {
    display: none !important;
}

.ui-page-active {
    min-height: inherit !important;
}

.button-square {
    background: #FFFFFF;
    height: 10px;
    width: 10px;
    float: left;
    position: relative;
    top: 15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.button-border {
    width: 50px;
    height: 2px;
    background: #FFFFFF;
    float: left;
    position: relative;
    top: 20px;
    left: 17px
}

#content-inner {
    position: absolute;
    top: 35%;
    width: calc(100% - 200px);
    left: 0
}

.content-inner-url-item-title {

    font-family: Roboto-Regular;

    font-size: 20px;
    color: #FFFFFF;
    text-align: right !important;
    position: relative;
    top: 20px;
}

.content-inner-url-item {
    height: 140px
}

.content-inner-url-item a {
    font-family: Roboto-Regular;
    font-size: 25px;
    color: #FFFFFF;
    position: relative;
    top: 15px
}

.button-icons {
    position: relative;
    top: 25px
}

.project-bottom-text-mobile {
    display: none
}

.bg-mobile {
    display: none
}

.inner-back-button {
    background: #FFFFFF;
    width: 15vw;
    position: absolute;
    top: 115px;
    float: right;
    left: calc(20% + 30vw + 130px);
    color: #000000;
    padding: 10px 10px;
    font-size: 16px;
    cursor: pointer
}

.inner-back-button img {
    padding-right: 15px;
    width: 45%;
    -webkit-filter: brightness(0); /* Safari 6.0 - 9.0 */
    filter: brightness(0);
}

.index-loader {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    position: fixed;
    z-index: 99999999;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.loader {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    position: fixed;
    z-index: 99999999999999999;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.spinner {
    width: 30px;
    height: 30px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
    left: calc(50% - 200px);
    top: calc(48% - 25px);
}

.loader-logo img {
    height: 15px;
    filter: brightness(90%);
}

.loader-logo {
    height: 40px;
    position: relative;
    left: calc(50% - 140px);
    top: calc(48% - 40px);
}

.dot1, .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #efd295;
    border-radius: 100%;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

@media (max-width: 1200px) {
    .lang-cont {
        width: 140px;
        text-align: right;
    }

    .lang-cont a.contact-button {
        margin-right: 4px;
    }
}

@media (max-width: 768px) {
    .mobile-menu,
    .bg-mobile {
        display: block
    }

    .spinner {
        left: calc(48% - 142px);
    }

    .loader-logo {
        left: calc(48% - 95px);
    }

    .mobile-menu a, .mobile-menu a:active, .mobile-menu a:hover, .mobile-menu a:focus {
        text-decoration: none;
        color: #FFFFFF;
    }

    .comment-container,
    .lang-cont-home,
    .project-bottom-text,
    .bg-browser,
    .nav-circle-icon-home {
        display: none
    }

    .project-bottom-text-mobile {
        display: block
    }

    .logo {
        top: 75px;
        width: 90%;
    }

    .inner-logo {
        top: 50px;
        width: 90%;
        left: 5%;
        z-index: 9;
    }

    .logo img,
    .inner-logo img {
        width: 75% !important;
        left: inherit
    }

    .logo img {
        left: 12.5%
    }

    .lang-cont-index {
        position: fixed;
        left: 0;
        z-index: 999;
        width: 100%;
        top: calc(100% - 40px);
        display: block
    }

    .lang-cont {
        margin: 0;
        left: inherit;
        top: inherit;
        width: 100%;
        padding-right: 10px
    }

    .body-section {
        height: 100%;
    }

    .lang-cont a.about-button {
        float: left;
        right: inherit;
        left: 10px;
    }

    .nav-circle-text, .nav-circle-text-right {
        position: fixed;
        top: calc(60% + 20px);
        left: 0;
        font-family: Roboto-Regular;
        width: 100%;
        text-align: center;
        height: 40px;
    }

    .nav-circle-text {
        width: 80%;
        top: calc(60% - 55px);
        left: 10%;
        border-bottom: 1px solid #b78642a6;
        padding-bottom: 60px;
    }

    .slide-txt p, .menu-cont, .sticky-wrapper {
        display: none
    }

    .slide-area-about .slide-txt p {
        display: block;
    }

    .about-content {
        padding-right: 0;
    }

    .slide-area-about .slide-txt .about-content p {
        font-size: 13px;
        line-height: 24px;
    }

    .slide-area-about {
        top: 100px;
        left: calc(5% + 17px);
        width: calc(100% - (5% + 17px) * 2);
    }

    .slide-area-about video {
        width: 100% !important;
    }

    .prj-details {
        width: 100%;
        min-height: 100%;
        border-bottom: 9px solid #efd295;
    }

    #projects {
        background: #FFF
    }

    .prev-page-btn, .next-page-btn {
        top: inherit;
        left: 15px;
        bottom: 120px;
        transform: none !important
    }

    .next-page-btn {
        top: inherit;
        right: 15px;
        bottom: 120px;
        left: inherit;
    }

    .scroll-project {
        position: absolute;
        bottom: 50px;
        width: 145px;
        left: calc(50% - 25px);
    }

    .prj-cont {
        padding-top: 30px;
        padding-left: 15px
    }

    .prj-cont h3 {
        margin-bottom: 21px;
        font-size: 9vw;
    }

    .project-box {
        width: calc(100vw - 30px);
        height: calc(100vw - 30px);
    }

    #category-detail-bg div {
        height: 110%;
    }

    .bg-dark-opacity-category {
        background: rgba(0, 0, 0, 0.4)
    }

    .slide-txt h2 {
        color: #FFFFFF
    }

    .pull-left-area {
        left: 60px
    }

    .slide-area {
        left: 60px;
    }

    .project-detail-slider {
        height: 250px;
        width: 100%
    }

    .full-screen-bg {
        height: 198px;
        width: 80.5vw;
        top: -236px;
        left: -74vw;
    }

    .project-grid .project-box:first-child {
        height: 158px
    }

    .mobile-menu-button {
        position: absolute;
        right: 15px;
        width: 50px;
        height: 50px;
        top: 53px;
        z-index: 999;
    }

    .mobile-menu-button span {
        width: 2px;
        height: 25px;
        background: #FFFFFF;
        z-index: 1;
        display: block;
        float: left;
        margin-left: 6px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .open-menu span {
        display: none;
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .open-menu span:first-child {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        left: 8px;
        position: relative;
        display: block;

    }

    .open-menu span:last-child {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        position: relative;
        display: block
    }

    .mobile-menu-inner {
        width: 100%;
        height: 100%;
        background: #ceb580;
        position: fixed;
        z-index: 99;
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        top: -100%;
        font-family: Roboto-Regular
    }

    .mobile-menu-inner-active {
        top: 0
    }

    .mobile-menu-inner ul {
        padding-left: 80px;
        font-size: 25px;
        z-index: 99999;
        position: absolute;
    }

    .mobile-menu-inner ul li {
        padding-bottom: 10px;
        font-size: 20px
    }

    .mobile-logo {
        padding: 0 45px;
        width: calc(100% - 50px);
        position: relative;
        top: 62px;
        padding-bottom: 75px
    }

    .mobile-logo img {
        width: 100%;
        filter: brightness(0) invert(1);
    }

    .menu-bottom {
        position: absolute;
        bottom: 0
    }

    .menu-bottom li {
        float: left;
        padding-right: 30px;
        font-size: 14px !important
    }

    .project-bottom-arrow {
        width: 50px;
        height: 50px;
        border-radius: 25px
    }

    .project-bottom-arrow img {
        width: 13px;
        position: relative;
        left: 11px;
        top: 9px;
    }

    .product-box-image-hover {
        top: calc(-100vw + 23px)
    }

    .project-name-content {
        display: none
    }

    #slider-navbar-container {
        top: -170px
    }

    .project-detail-table {
        width: 100%;
        padding: 15px 0
    }

    .project-page-title {
        padding-bottom: 15px
    }

    .product-list-item {
        width: 100%;
        height: 100%;
        margin: 0;

    }

    .product-list {
        width: 100%
    }

    .product-box-image {
        border: none
    }

    .product-list-item {
        border: none
    }

    .product-box-name {
        top: 32vw;
    }

    .form-item, .form-item-county, .form-item-post {
        width: 100%;
        margin-left: 0
    }

    .product-contact-form {
        width: 100%
    }

    .form-item [type="checkbox"]:not(:checked), .form-item [type="checkbox"]:checked {
        opacity: 1;
        position: relative;
        pointer-events: inherit;
        top: -10px;
        background: #000000;
        width: 10px !important;
        float: left;
        left: 5px;
    }

    .project-detail-page-content {
        padding-left: 10%
    }

    .product-form-title {
        padding: 20px 0
    }

    #contact-menu {
        display: block;
        width: 90px;
        padding: 64px 10px;
        font-size: 12px !important
    }

    .contact-menu-title {
        padding-bottom: 5px
    }

    #contact-menu a {
        font-size: 12px;
        padding-bottom: 3px
    }

    .contact-menu-bottom {
        display: none
    }

    #content-header {
        width: 90%
    }

    #content-header img {
        width: 100%;
        height: auto;
    }

    .container-logo {
        position: relative;
        top: -40px
    }

    #content-inner {
        width: 100%;
        position: relative
    }

    #content-inner {
        width: 100%;
        position: relative;
        top: 10px;
    }

    .content-inner-url-item {
        height: auto;
        padding-bottom: 25px
    }

    .content-inner-url-item a {
        font-size: 14px
    }

    .content-inner-url-item a {
        top: -105px
    }

    .content-inner-url-item-title {
        top: 0;
        padding-bottom: 20px;
        font-size: 17px;
        display: none
    }

    .button-icons {
        top: 0;
        display: none
    }

    #index-section {
        overflow-y: scroll
    }

    #contact-addresses {
        position: absolute;
        top: 400px;
        background: transparent;
        top: inherit
    }

    .body-section {
        overflow-y: scroll
    }

    .contact-address-box-title {
        font-size: 18px
    }

    .contact-address-box-address {
        font-size: 12px
    }

    .contact-address-box {
        padding-bottom: 30px;
        width: 100%
    }

    .contact-address-container {
        width: 100%;
    }

    #contact-addresses {
        min-height: 300px
    }

    .slide-txt h2 {
        font-size: 20px
    }

    .about-content {
        font-size: 12px;
        line-height: 16px
    }

    .slide-area-about {
        height: inherit !important;
        padding-bottom: 10px
    }

    .form-item input {
        height: 20px !important;
    }

    .back-button {
        float: left;
        padding-bottom: 20px
    }

    .mouse-follow {
        display: none
    }

    .inner-back-button {
        position: relative;
        float: left;
        left: 0;
        color: #000000;
        padding: 10px 10px;
        font-size: 16px;
        cursor: pointer;
        top: inherit;
        width: calc(100% - 70px);
    }

    .menu-other {
        position: fixed;
        bottom: 60px;
    }

    .menu-other img {
        width: 56px;
        padding-right: 10px
    }

    .slide-txt-descr {
        display: block;
        font-size: 12px;
        line-height: 16px;
        height: 80px;
        overflow: hidden;
    }

    .slide-txt-descr p {
        display: block;
        font-size: 12px;
        line-height: 16px;
        height: 80px;
        display: block;
    }

    .project-detail-page-content-slide-nav .prev-slide,
    .project-detail-page-content-slide-nav .next-slide {
        opacity: 0.5
    }

    .project-detail-page-content-slide-nav .prev-slide:hover,
    .project-detail-page-content-slide-nav .next-slide:hover {
        opacity: 1
    }

    .content-header-container {
        padding: 0;
        padding-right: 80px
    }

    a.contact-url {
        font-size: 14px
    }

    .container-back img {
        width: 60px !important;
        float: left;
        position: relative;
        top: 7px;
        left: 22px
    }

    .container-back {
        text-align: right;
        font-size: 16px;
        position: fixed;
        bottom: 14px;
        width: 153px;
        z-index: 999999999
    }

    .index-bg img {
        width: 84%
    }

    .index-bg, .logo {
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -o-transform: none !important;
        transform: none !important;
    }

    .project-bottom-text {
        display: block;
        position: relative;
        top: 87px;
        left: -17px;
        font-size: 14px;
    }

    .scroll-btn:hover .project-bottom-text {
        left: -26px;
    }

    .form-item label {
        float: right;
        position: relative;
        left: 0;
        top: 9px;
        width: 100%;
        text-align: left;
        padding-left: 33px;
    }

    .slide-area {
        width: 70%;
    }

    .nav-slide-icon {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
    }

    .project-detail-page-content-slide-nav .next-slide, .project-detail-page-content-slide-nav .next-slide:hover {
        right: -35px;
    }

    .project-detail-page-content-slide-nav .prev-slide, .project-detail-page-content-slide-nav .prev-slide:hover {
        left: 3px;
    }

    .back-button-nav-circle-icon {
        line-height: 18px;
    }

    body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
        padding: 3px !important;
    }

    .lg-actions .lg-prev {
        position: fixed;
        left: inherit;
        bottom: -5px;
        right: 20px;
        top: inherit !important;
        height: 34px !important;
        background-size: 31px 30px !important;
    }

    .lg-actions .lg-next {
        position: fixed;
        left: inherit;
        bottom: -5px;
        right: -22px;
        top: inherit !important;
        height: 34px !important;
        background-size: 31px 30px !important;
    }

    .project-box-name {
        opacity: 1;
    }

    .product-box-image-hover {
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;

    }

    .project-box-image img {
        transform: scale(1.1);
    }

    .project-bottom-mouse img {
        width: 60px;
        filter: brightness(0) invert(1);
        position: relative;
        left: 4px;
        top: -4px;
    }
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
    padding: 50px
}

#inner-page-projects {
    overflow-y: scroll
}

#category-detail {
    overflow-y: scroll
}

.lg-thumb-outer {
    display: none
}

.mouse-follow {
    width: 5px;
    height: 5px;
    background: #FFFFFF;
    z-index: 99999999;
    position: fixed;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.inner-menu-bottom {
    display: none;
}


#_evidon-barrier-wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2147483642;
}

#_evidon-background {
    background: rgb(0, 0, 0);
    opacity: 0.65;
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    z-index: 2147483646;
}

#_evidon-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background: rgb(255, 255, 255);
    width: 100%;
    max-width: 776px;
    padding: 50px 78px;
    border: 0px solid rgb(0, 0, 0);
    z-index: 2147483647;
}

#_evidon-banner-content {
    opacity: 1.1;
}

#_evidon-banner-title {
    display: block;
    text-align: left;
    font-size: 32px;
    margin: 0px auto 4px;
    font-family: times new roman, serif;
    color: rgb(52, 52, 52);
}

#_evidon-banner-message {
    display: block;
    font-size: 16px;
    vertical-align: top;
    line-height: 1.6;
    font-family: times new roman, serif;
    text-align: left;
    margin: 14px 0px 8px;
    color: rgb(51, 51, 51);
}

#_evidon-banner-cookiemessage {
    display: block;
    font-size: 16px;
    font-family: times new roman, serif;
    line-height: 1.6;
    color: rgb(51, 51, 51);
    text-align: left;
    margin: 14px 0px 8px;
}

.evidon-barrier-cookiemessage a {
    text-decoration: underline;
    font-weight: bold;
}


#_evidon-banner-acceptmessage {
    display: block;
    margin: 14px 0px 25px;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 4px;
    font-family: times new roman, serif;
    color: rgb(51, 51, 51);
    text-align: left;
}

#cookie_button_area {
    display: block;
    width: 100%;
    margin-bottom: -50px;
    position: relative;
    padding: 4px;
    font-size: 11px;
    border-top: 1px solid rgb(155, 155, 155);
    font-family: open sans, sans-serif;
}

#_evidon-banner-cookiebutton {
    display: block;
    position: absolute;
    left: 35%;
    font-weight: bold;
    top: 15%;
    border: 1px solid rgb(0, 0, 0);
    padding: 1.3rem 2.5rem;
    background: rgb(255, 255, 255);
    color: rgb(51, 51, 51);
    font-size: 16px;
    font-style: italic;
    border-radius: 2px;
    font-family: times new roman serif;
    right: 0px;
    cursor: pointer;
}

.cookie-button-accept {
    display: block;
    position: relative;
    top: 14px;
    padding: 1.3rem 2.5rem;
    border: 0px solid black;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-style: italic;
    border-radius: 2px;
    font-family: times new roman, serif;
    margin-bottom: 50px;
    cursor: pointer;
}

.btn-acpt {
    display: block;
    position: relative;
    top: 14px;
    padding: 1.3rem 2.5rem;
    border: 0px solid black;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-style: italic;
    border-radius: 2px;
    font-family: times new roman, serif;
    margin-bottom: 50px;
    cursor: pointer;
    margin-left: -4px;
}

.btn-cookie-info {
    display: block;
    position: absolute;
    left: 35%;
    font-weight: bold;
    top: 15%;
    border: 1px solid rgb(0, 0, 0);
    padding: 1.3rem 2.5rem;
    background: rgb(255, 255, 255);
    color: rgb(51, 51, 51);
    font-size: 16px;
    font-style: italic;
    border-radius: 2px;
    font-family: times new roman, serif;
    right: 0px;
    cursor: pointer;
}