



.loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    padding-top: 25%;
    background: #4f4f4f;
    z-index: 9999;
    text-align: center;
}

.loader .lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.loader .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loader .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.loader .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.loader .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.loader .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}


body, html {
    font-family: 'Roboto', sans-serif;
    max-width: 100%;
    overflow-x: hidden;
}

header {
    background:rgba(0,0,0,0.7);
    padding: 15px 0px;
    position: absolute;
    z-index: 60;
    width: 100%;
}

header .logo-area {}

header .logo-area img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 99;
}

header .menu-area {}

header .menu-area .main-menu {}

header .menu-area .main-menu ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    float: right;
}

header .menu-area .main-menu ul li {
    float: left;
}

header .menu-area .main-menu ul li a {
    color: #fff;
    padding: 20px;
    display: block;
    transition: all 0.5s;
}

header .menu-area .main-menu ul li.lang a {
    margin-left: 30px;
    font-weight: bold;
}

header .menu-area .main-menu ul li:hover a,
header .menu-area .main-menu ul li:focus a,
header .menu-area .main-menu ul li:active a,
header .menu-area .main-menu ul li.active a {
    text-decoration: none;
}

header .menu-area .main-menu ul li a:after {
    width: 0%;
    height: 3px;
    background: #fff;
    content: "";
    display: block;
    transition: all 0.5s;
}

header .menu-area .main-menu ul li:hover a:after,
header .menu-area .main-menu ul li:focus a:after,
header .menu-area .main-menu ul li:active a:after,
header .menu-area .main-menu ul li.active a:after {
    width: 100%;
}

.main-content {}

.main-content .main-slider {}

.main-content .main-slider .carousel-item {}

.main-content .main-slider .carousel-item .d-block {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.main-content .main-slider .carousel-control-next span{
    right: 20px;
    position: absolute;
}

.main-content .main-slider .carousel-control-prev span {
    left: 20px;
    position: absolute;
}

.main-content .main-slider .carousel-control-next .slider-arrow,
.main-content .main-slider .carousel-control-prev .slider-arrow{
    height: 30px;
    width: auto;
}

.main-content .main-slider .carousel-indicators li {
    width: 10px;
    height: 10px
}

.main-content .main-slider .carousel-control-prev,
.main-content .main-slider .carousel-control-next {
    opacity: 1;
    z-index: 40;
}

.main-content .main-slider .carousel-caption {
    width: 100%;
    left: auto;
    right: auto;
    top: 25%;
    cursor: default;
}

.main-content .main-slider .carousel-caption .caption-in {
    width: 30%;
    background: rgba(255,255,255,0.9);
    text-align: left;
    border-left: 5px solid #494949;
    padding: 30px;
}

.main-content .main-slider .carousel-caption .caption-in .image {}

.main-content .main-slider .carousel-caption .caption-in .image img {
    width: 100%;
    height: auto;
}

.main-content .main-slider .carousel-caption .caption-in .title {
    margin: 20px 0px;
    color: #494949;
    text-transform: uppercase;
    font-size: 1.8em;
    font-weight: 600;
}

.main-content .main-slider .carousel-caption .caption-in .description {
    color: #494949;
    font-size: .8em;
}

.main-content .main-slider .carousel-caption .caption-in .button {
    margin: 20px 0px;
}

.main-content .main-slider .carousel-caption .caption-in .button .slider-button {
    color: #494949;
    float: right;
    font-size: .8em;
    display: block;
    padding-bottom: 20px;
}

.main-content .main-slider .carousel-caption .caption-in .button .slider-button span {
    display: inline-block;
    float: right;
    padding-left: 10px;
    transition: all 0.5s;
}

.main-content .main-slider .carousel-caption .caption-in .button .slider-button:hover {
    text-decoration: none;
}

.main-content .main-slider .carousel-caption .caption-in .button .slider-button:hover span {
    padding-left: 13px;
}

.main-content .types {}

.main-content .types .box {}

.main-content .types .box .image{
    margin: 0px -15px;
    position: relative;
}

.main-content .types .box .image .bg {
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.2);
    transition: all 0.5s;
}

.main-content .types .box:hover .image .bg {
    width: 100%;
}

.main-content .types .box .image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
}

.main-content .types .box .text {
    padding: 0px 25% ;
    height: 510px;
    display: table-cell;
    vertical-align: middle;
}

.main-content .types .box .text h1 {
    font-size: 1.7em;
    font-weight: 400;
    position: relative;
    color: #494949;
    margin-bottom: 30px;
}

.main-content .types .box .text h1:before {
    content: "";
    left: -20px;
    top: 5px;
    width: 5px;
    height: 52px;
    background: #494949;
    display: inline-block;
    position: absolute
}

.main-content .types .box .text p {
    font-size: .9em;
}

.main-content .types .box .text .btn-types {
    background: #494949;
    padding: 5px 20px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    border-radius: 0px;
    font-size: 1.5em;
    margin-top: 15px;
}

.main-content .types .box .text .btn-types span {
    font-weight: 500;
}

.main-content .home-bottom {
    padding: 100px 0px;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
    color: rgba(255,255,255,0.7);
}

.main-content .home-bottom .btn-home-bottom {
    background: #fff;
    color: #494949;
    padding: 5px 30px;
    border-radius: 0px;
    margin-top: 30px;
}

.main-content .references {
    margin: 30px 0px;
}

.main-content .references .item {
    text-align: center;
}

.main-content .references .item img {
    transition: all 0.5s;
    filter: grayscale(0%);
}

.main-content .references .item:hover img {
    filter: grayscale(100%);
}

footer {}

footer .footer-top {
    background:#272727;
    padding: 10px 0px;
    padding-top: 15px;
    color: #fff;
    font-weight: 300;
    font-size: .8em;
}

footer .footer-top a {
    color: #fff;
}

footer .footer-top .social {}

footer .footer-top .social ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

footer .footer-top .social ul li {
    float: left;
}

footer .footer-top .social ul li a {
    font-size: 1em;
    margin: 0px 10px;
    width: 25px;
    height: 25px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: block;
    text-align: center;
    padding-top: 3px;
}

footer .footer-bottom {
    margin: 10px 0px;
    text-align: center;
}

.bck,
.bck:hover {
    background: #272727;
    color: #fff;
    border: 1px solid #fff;
}

#header.sticky {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,1);
    z-index: 90;
}

.mobile-menu {
    display: none;
}

.main-content.page {}

.main-content.page.about{}

.main-content.page.about .about-top {
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: table-cell;
    vertical-align: middle;
    font-size: .8em;
    color: #fff;
}

.main-content.page.about .about-top .text {
    padding-right: 150px;
}

.main-content.page.about .about-top .text h1 {
    font-size: 2em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.main-content.page.about .about-top .text .btn-about {
    background: #494949;
    color: #fff;
    padding: 5px 20px;
    font-weight: 300;
    margin-top: 50px;
}

.main-content.page.about .about-references .types .box .image {
    margin: 0px;
}

.main-content.page.about .about-references .types .box .text {}

.main-content.page.about .about-references .types .box .text h4 {
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 20px;
    color: #494949;
    margin-bottom: 5px;
}

.main-content.page.about .about-references .types .box .text h1 {
    font-size: 3em;
    font-weight: 300;
    margin-top: 0px;
}

.main-content.page.about .about-references .types .box .text p {
    font-weight: 400;
}

.main-content.page.about .about-references .owl-carousel .owl-nav button.owl-prev,
.main-content.page.about .about-references .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    left: -5px;
    top: 45%;
    background: #2f2f2f;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 2em;
    border-radius: 0px;
    outline: none;
    box-shadow: none;
}

.main-content.page.about .about-references .owl-carousel .owl-nav button.owl-next {
    right: -5px;
    left: auto;
}

.main-content.page.about .about-references .owl-theme .owl-nav {
    margin: 0px!important;
}

.main-content.page.type .main-slider .carousel-control-next span {
    right: 0px;
}

.main-content.page.type .main-slider .carousel-control-prev span {
    left: 0px;
}

.main-content.page.type .main-slider .carousel-control-prev img,
.main-content.page.type .main-slider .carousel-control-next img {
    height: 40px;
}

.main-content.page.type .type-description {
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
}

.main-content.page.type .type-description .type-title {
    padding: 5px;
    background: #494949;
}

.main-content.page.type .type-description .type-title .image {
    background: #fff;
    padding: 30px 15px;
}

.main-content.page.type .type-description .type-title img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.main-content.page.type .type-description .type-title .text {
    text-align: center;
    padding: 0px;
    font-size: 3em;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
}

.main-content.page.type .type-description .type-title .text span {
    font-weight: 600;
}

.main-content.page.type .type-details .box {
    margin: 30px 0px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.main-content.page.type .type-details .box:last-child {
    padding-bottom: 0px;
    border-bottom: 0px;
}

.main-content.page.type .type-details .box .title {
    text-align: center;
    font-size: 2em;
    font-weight: 300;
    margin-bottom: 20px;
    color: #494949;
    text-transform: uppercase;
}

.main-content.page.type .type-details .box .title span {
    font-weight: 600;
}

.main-content.page.type .type-details .box .image {
    margin-bottom: 50px;
}

.main-content.page.type .type-details .box .image img{
    width: 100%;
    height: auto;
}

.main-content.page.type .type-details .description {
    margin-bottom: 20px;
    text-align: center;
}

.main-content.page.type .type-details .description .dtitle {
    background: #494949;
    color: #fff;
    padding: 10px 30px;
}

.main-content.page.type .type-details .description .dtext {
    background: #f3f3f3;
    padding: 10px 30px;
    color: #494949;
}

.main-content.page.contact .about-top {
    width: 100vw;
}

.main-content.page.contact .about-top .text {
    padding: 0px;
}

.main-content.page.contact .about-top .contact-info,
.main-content.page.contact .about-top .text{
    height: 100vh;
    display: table-cell;
    vertical-align: middle;
}

.main-content.page.contact .about-top .contact-info p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.main-content.page.contact .about-top .contact-info p span {
    float: left;
    margin-right: 10px;
    display: inline-block;
    width: 20px;
}

.main-content.page.contact .about-top .contact-info a {
    color: #fff;
    text-decoration: none;
}

.main-content.page.contact .about-top .text {
    width: 100vw;
}

.main-content.page.contact .about-top .text h1 {
    font-size: 1.3em;
}
.main-content.page.contact .about-top .text .if {
    height: 35px;
    border-radius: 0px;
    outline: none;
    box-shadow: none;
}

.main-content.page.contact .about-top .text .if.ift {
    height: 100px;
}

.main-content.page.contact .about-top .text .btn-if {
    background: #fff;
    padding: 7px 30px;
    font-weight: 500;
    font-size: 1em;
    border-radius: 0px;
}


.main-content.page.contact .map {
    border-top: 5px solid #494949;
}

.main-content.page.contact .map #map {
    width: 100%;
    height: 500px;
}

.main-content.page.detail {}

.main-content.page.detail .page-header {}

.main-content.page.detail .page-header img {
    width: 100%;
    height: auto;
}
.main-content.page.detail .detail-form {
    background: #434343;
    color: #fff;
    padding: 70px 0px;
    text-align: center;
}


.main-content.page.detail .detail-form img {
    max-width: 100;
    height: auto;
    margin-bottom: 70px;
}

.main-content.page.detail .detail-form h4 {
    font-size: 1.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}


.main-content.page.detail .detail-form p {
    font-size: .8em;
    font-weight: 300;
}

.main-content.page.detail .detail-form .df {
    height: 40px;
    font-size: .8em;
    border-radius: 2px;
    outline: none;
    box-shadow: none;
}

.main-content.page.detail .detail-form .df.dft {
    height: 100px;
}

.main-content.page.detail .detail-form .btn-df {
    background: #272727;
    color: #fff;
    padding: 7px 30px;
    margin-top: 50px;
    border-radius: 2px;
    font-size: .8em;
}

