@charset "UTF-8";
@keyframes seq-preloader {
    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.seq-preloader {
    background: white;
    visibility: visible;
    opacity: 1;
    position: absolute;
    z-index: 99999999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.seq-preloader.seq-preloaded {
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s .5s, opacity .5s;
}

.seq-preload-indicator {
    overflow: visible;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.seq-preload-circle {
    display: inline-block;
    height: 12px;
    width: 12px;
    fill: #7a7a7a;
    opacity: 0;
    animation: seq-preloader 1.25s infinite;
}

.seq-preload-circle-2 {
    animation-delay: .15s;
}

.seq-preload-circle-3 {
    animation-delay: .3s;
}

.seq-preload-indicator-fallback {
    width: 42px;
    overflow: visible;
}

.seq-preload-indicator-fallback .seq-preload-circle {
    width: 8px;
    height: 8px;
    background-color: #f4f4f4;
    border-radius: 100%;
    opacity: 1;
    display: inline-block;
    vertical-align: middle;
}

.seq-preload-indicator-fallback .seq-preload-circle-2 {
    margin-left: 3px;
    margin-right: 3px;
    width: 12px;
    height: 12px;
}

.seq-preload-indicator-fallback .seq-preload-circle-3 {
    width: 16px;
    height: 16px;
}

/* MAIN CSS */
@-webkit-keyframes fill {
    0% {
        width: 0%;
        height: 1px;
    }

    50% {
        width: 100%;
        height: 1px;
    }

    100% {
        width: 100%;
        height: 100%;
        background: #fff;
    }
}

@keyframes fill {
    0% {
        width: 0%;
        height: 1px;
    }

    50% {
        width: 100%;
        height: 1px;
    }

    100% {
        width: 100%;
        height: 100%;
        background: #fff;
    }
}

@-webkit-keyframes fillColour {
    0% {
        color: #fff;
    }

    50% {
        color: #fff;
    }

    100% {
        color: #333;
    }
}

@keyframes fillColour {
    0% {
        color: #fff;
    }

    50% {
        color: #fff;
    }

    100% {
        color: #333;
    }
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

html {
    overflow: hidden;
}

body {
    overflow: hidden;
    font-size: 100%;
}

nav {
    top: 15%;
    text-align: center;
    background: rgba(0, 0, 0, 0.75);
    position: fixed;
    z-index: 100;
    height: 90%;
    left: 0;
    width: 15%;
    font-weight: 300;
    font-size: 1rem;
}

nav em {
    font-style: normal;
    font-size: 13px;
    text-transform: uppercase;
    display: block;
    margin-top: 15px;
    color: #fff;
}

nav ul li a {
    text-align: center;
}

nav ul {
    position: relative;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    list-style-type: none;
    height: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-evenly;
}

nav ul li {
    text-align: center;
    margin: 5px 0px;
}

nav a, nav a:visited, nav a:active {
    color: #fff;
}

nav a {
    text-decoration: none!important;
    display: inline-block;
    width: 140px;
    padding: 15px 0px;
    position: relative;
    z-index: 0;
    transition: all .5s;
}

nav a.active {
    background-color: rgba(0,0,0,0.8);
}

nav a::before {
    content: "";
    position: absolute;
    height: 0%;
    width: 0%;
    bottom: 0;
    left: 0;
    opacity: 1;
    z-index: -1;
}

nav .img-lang {
    width: 30px
}
nav img {
    width: 50%;
}

.logo {
    margin-top: 0px;
    top: 0;
    left: 0;
    z-index: 1;
    position: fixed;
    display: inline-block;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.75);
    height: 15%;
    width: 15%;
}

.logo h1 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.logo span {
    display: inherit;
    color: #fbfbfb;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
    }

.logo img {
    width: 90px;
}

.logo em {
    font-style: normal;
    font-size: 13px;
    text-transform: uppercase;
    display: block;
    margin-top: 15px;
    color: #fff;
}

.lang {
    bottom: 10%;
    text-align: center;
    position: fixed;
    z-index: 900;
    left: 0;
    width: 15%;
    height: 15%;
    font-weight: 300;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.lang span {
    display: none
}

.lang img {
    width: 30px;
}

.slides {
    width: 500vw;
    height: 100vh;
    -webkit-transition: -webkit-transform 0.8s ease;
    transition: -webkit-transform 0.8s ease;
    transition: transform 0.8s ease;
    transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

.slides .slide {
    height: 100vh;
    width: 100vw;
    float: left;
    text-align: center;
    background-size: cover;
}

.slides .slide .content {
    overflow-y: scroll;
    position: relative;
    width: 80%;
    height: 100%;
    left: 20%;
    top: 1%;
    background: rgb(0 0 0 / 78%);
    border-left: 4px solid #11f012;
    border-top: 4px solid #11f012;
}

.content::-webkit-scrollbar {
    display: none!important;
    opacity: 0!important;
    visibility: hidden!important;
}

.container-fluid {
    margin: 1% 0 70px!important;
}
.container-mail {
    margin: 0 0 160px 0;
}
.phone h4 span {
    text-transform:lowercase!important;
    font-size:20px!important;
    color:white!important;
    /* border-bottom: 1px solid white; */
    /* border-right: 1px solid white; */
    width: 100%;
    display: block;
}
.container-mail .col-md-13 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.container-mail span {
    font-size: 8.85rem;
    font-weight:bold;
    color: rgb(255 255 255 / 25%);
}
.container-mail h2 {
    margin: -140px 0 60px!important;
    color: black;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 900;
    color: black;
    margin-top: 0px;
    margin-bottom: 50px;
    filter: drop-shadow(-1px 0 0 white)
          drop-shadow(1px 0 0 white)
          drop-shadow(0 -1px 0 white)
          drop-shadow(0 1px 0 white);
}
.container-mail h4 span  {
    color:#11f012;
    font-size:2rem;
    padding: 0;
}


/* Add a thumb */
.content::-webkit-scrollbar-thumb {
    display: none!important;
    opacity: 0!important;
    visibility: hidden!important;
}

.slides .slide {
    background-position: center center;
    background-size: cover;
    background-position: fixed;
}

.slides .slide:nth-child(1) {
}

.slides .slide:nth-child(2) {
    background-image: url(../images/about-bg.webp);
    background-position: fixed;
}

.slides .slide:nth-child(3) {
    background-image: url(../images/1.webp);
    background-position: fixed;
}

.slides .slide:nth-child(4) {
    background-image: url(../images/contact-bg.webp);
    background-position: fixed;
}

/* Slide 1 Stlye */
#slider-wrapper {
    max-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

#image-slider {
    width: auto;
    height: auto;
    position: relative;
    overflow: hidden;
    margin: auto;
    display: block;
}

#image-slider ul {
    margin-bottom: 0;
    width: 100%;
    height: 100vh;
    position: relative;
}

#image-slider ul li {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
}

#image-slider ul li {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

#image-slider ul li:nth-child(1) {
    background-image: url(../images/full-bg-01-1.webp);
}

#image-slider ul li:nth-child(2) {
    background-image: url(../images/full-bg-01-2.webp);
}

#image-slider ul li:nth-child(3) {
    background-image: url(../images/full-bg-01.webp);
}

#image-slider ul li.active-img {
    left: 0;
}

#thumbnail {
    position: absolute;
    z-index: 99999;
    bottom: 30px;
    right: 30px;
}

#thumbnail ul {
    padding: 0px;
    margin: 0px;
}

#thumbnail ul li {
    display: inline-block;
    max-width: 120px;
    max-height: 120px;
    margin-left: 30px;
    cursor: pointer;
    border: 4px solid transparent;
    transition: all 0.5s;
}

#thumbnail ul li.active {
    border: 5px solid #faf5b2;
}

#thumbnail ul li img {
    max-width: 100%;
    overflow: hidden;
}

.slide-caption {
    text-align: right;
    right: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slide-caption h6 {
    margin-top: 10px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px black;
}

.slide-caption h1, .slide-caption h2 {
    margin-top: 0px;
    font-size: 3.1rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #05f211;
    color: #ffffff;
    filter: drop-shadow(-1px 0 0 #000000)
          drop-shadow(1px 0 0 #000000)
          drop-shadow(0 -5px 0 #000000)
          drop-shadow(0 1px 0 #000000);
}

.slide-caption h2 span {
    font-size: 6rem;
    line-height: 10rem
}

/* Slide 2 Style */
.second-content {
    /* top: 180%!important; */
    /* transform: translateY(-180%); */
}

#tabs {
    float: left;
    width: 100%;
    margin: 0 auto;
}

#tabs ul {
    margin: 0;
    padding: 0;
    float: left;
}

#tabs ul li {
    margin-top: 5px;
    margin-bottom: 25px;
    /* display: block; */
    background-color: transparent;
}

#tabs ul li:last-child {
    margin-bottom: 0px;
}

#tabs ul li a {
    display: block;
    cursor: pointer;
    outline: 0;
    border: none;
    color: #6a6a6a;
    text-decoration: none;
    text-transform: uppercase;
}

#tabs ul li span {
    text-align: center;
    background-color: transparent;
    border: 3px solid #00ff3a;
    color: #00ff97;
    width: 90px;
    height: 90px;
    font-size: 32px;
    line-height: 84px;
    border-radius: 50%;
}

#tabs ul .ui-tabs-active span {
    background: #faf5b2;
    border: #faf5b2;
    line-height: 90px;
    border-bottom: none;
}

#tabs ul .ui-tabs-active a {
    color: #000;
}

#tabs ul .ui-tabs-active span {
    color: #1e1e1e;
}

.tabs-content {
    margin-left: 60px;
    width: 90%;
    text-align: left;
    display: inline-block;
    /* background: #fff; */
    margin-right: 30px;
    padding: 0 60px;
}

.tabs-content h2 {
    font-size: 29px;
    text-transform: uppercase;
    font-weight: 900;
    color: #1e1e1e;
    margin-top: 0px;
}

.tabs-content span {
    font-size: 15px;
    color: #7a7a7a;
    text-transform: uppercase;
}

.tabs-content p {
    font-size: 14px;
    color: #7a7a7a;
    margin-top: 30px;
    margin-bottom: 0px;
}

/* Slide 3 Style */
.third-content {
    top: 115%!important;
    transform: translateY(-125%);
}

.third-slide a {
    text-decoration: none;
}

.featured-item {
    transition: all 0.5s;
    text-align: left;
}

.featured-item img {
    width: 100%;
}

.featured-item .down-content {
    background-color: #fff;
    border-right: 6px solid #0ae412;
    border-top: 6px solid #0ae412;
    border-bottom: 6px solid #0ae412;
    box-shadow: inset -3px 3px 10px #155724;
    padding: 15px;
}

.featured-item h4 {
    margin-top: 0px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 900;
    color: #1e1e1e;
    transition: all 0.5s;
}

.featured-item h6 {
    color: #1e1e1e;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 0px;
}

.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dots .owl-dot {
    outline: none;
    display: inline-block;
}

.owl-dots .active span {
    background-color: #faf5b2!important;
}

.owl-dots .owl-dot span {
    background-color: #fff;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin: 0px 5px;
    outline: none;
    cursor: pointer;
}

/* Slide 4 Style */
.fourth-content {
    top: 140%!important;
    height: 100%;
    transform: translateY(-140%);
}

#contact {
    text-align: center;
    max-width: 100%;
}
.col-md-12 fieldset {
    display:flex

}
.company {
    width: 30%;
    float: left;
    }
.company h4 {
    font-size: 20px;
    text-transform:uppercase;
    line-height: 30px;
    width: 100%;
    color: white;
    margin: 0;
}

.adress {
    margin: 0 0 40px 0;
  }
.phone  .fa, .adress .fa {
     font-size: 3rem;
     color: #ffc107;
     padding: 8px;
}
.phone {

}
.adress, .phone {
    display:flex;
    padding:4px;
    width: 100%;
    float:left;
    /* background:#11f012; */
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
    align-content: center;
    align-items: center;
}
#contact h2 {
    font-size: 29px;
    text-transform: uppercase;
    font-weight: 900;
    color: #000000;
    margin-top: 0px;
    margin-bottom: 50px;
        filter: drop-shadow(-1px 0 0 white)
          drop-shadow(1px 0 0 white)
          drop-shadow(0 -1px 0 white)
          drop-shadow(0 1px 0 white);
}

#contact input, #contact textarea {
    padding-left: 15px;
    background-color: rgba(0,0,0,0.1);
    border: 2px solid #fff;
    border-radius: 0px;
    height: 50px;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 30px;
}

#contact input:focus, #contact textarea:focus {
    color: #fff;
    outline: none;
    box-shadow: none;
    border: 1px solid rgba(250,245,178,1);
    background-color: rgba(0,0,0,0.1);
}

#contact textarea {
    height: 160px;
    padding: 15px;
    !importan;!importa;!import;!impor;!impo;!imp;!im;!i;!;
    width: 90%;
}

#contact button {
    border: 2px solid rgb(255 255 255 / 0%);
    font-size: 15px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    background-color: transparent;
    height: 60px;
    width:250px;
    line-height: 40px;
    display: inline-block;
    padding: 0px 20px;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
    background: #ffc107;
    border-radius:10px
}

#contact button:hover {
    background-color: #faf5b2;
    border-color: #faf5b2;
    color: #1e1e1e;
}

@media (max-width: 1200px) {
    .slide-caption h1 , .slide-caption h2 {
        font-size: 2.6rem;
    }
    .logo img {
        width:60px
    }
    
}

/* Responsive Style */
@media (max-width: 991px) {
    .slides .slide .content {
        width: 100%;
        height: 100%;
        left: 0;
        top: 10%!important;
        !importan;!importa;!import;!impor;!impo;!imp;!im;!i;!;
        overflow: scroll;
    }

    .second-content {
 
    }

    .third-content {
        top: 135%!important;
        transform: translateY(-140%);
    }

    .fourth-content {
        top: 220%!important;
        transform: translateY(-220%);
    }

    .logo {
        width: 15%;
        height: 60px;
    }
    .logo span {
        display:none
    }

    .logo h1, .logo h2 {
        display: none;
    }

    .logo img {
        width: 65px;
    }

    .lang {
        top: 60px;
        z-index: 1;
        height: 40px;
        width: 100%;
        background: rgba(0, 0, 0, 0.75);
        text-align: left;
        border-top: 1px solid white;
    }
    .lang span {
    position:fixed;
    right:5%;
    color: #fbfbfb;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
    display: block;
}

    .lang img {
        margin: 0 30px;
    }

    nav {
        top: 0vh;
        height: 60px;
        width: 85vw;
        margin-left: 15vw;
    }

    nav ul {
        flex-direction: row;
        height: 100%;
    }

    nav ul li {
        display: inline;
        margin: 0px;
    }

    nav ul li img {
        width: 90%;
    }

    nav ul li em {
        display: none;
    }

    nav a {
        text-align: center;
        width: 60px;
        height: 60px;
        line-height: 30px;
        display: inline-block;
    }

    .second-slide {
        top: 140px;
    }

    .slide-caption h1, .slide-caption h2 {
        font-size: 2rem;
        margin: 50px 0 0px;
    }

    .tabs-content {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .tabs-content p {
        margin-top: 20px;
    }

    #tabs ul li {
        display: inline-block;
        margin: 0px 10px;
    }

    #tabs ul {
        float: none;
        margin-bottom: 30px;
        width: 100%;
        text-align: left;
    }

    #thumbnail ul li {
        max-width: 80px;
        max-height: 80px;
        margin-left: 10px;
    }

    .slide-caption {
        padding-left: 30px;
    }

    #tabs ul li span {
        width: 60px;
        height: 60px;
        font-size: 22px;
        line-height: 54px;
    }

    .slide-caption h2 span {
        font-size: 2rem;
        line-height: 4rem
    }

    #tabs ul .ui-tabs-active span {
        line-height: 60px;
    }

    .featured-item {
        padding: 30px 15px;
    }

    .owl-dots {
        margin-top: 10px;
        padding-bottom: 30px;
    }

    .tabs-content h2 {
        font-size: 21px;
    }

    .third-slide {
        text-align: center;
        margin: 0px;
    }

    .fourth-slide {
        margin-left: 0;
        top: 0;
        transform: translateY(0%);
        margin-top: 140px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form h2 {
        font-size: 29px;
        text-transform: uppercase;
        font-weight: 900;
        color: #fff;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .main-info {
        margin: 55px 0!important
    }

    .modal-dialog {
        margin-bottom: 170px!important
    }
        .company {
        width:100%;
        margin: 0 0 80px 0;
    }
}


@media (min-width: 768px) {
    .col-md-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 90%;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .slides .slide .content {
        top: 12%!important;
    }
}

@media (max-width: 767px) {
    .logo {
        width:15%;
        height: 50px;
    }

    .logo img {
        margin-top: 5px;
        width: 45px
    }

    nav {
        top: 0vh;
        height: 50px;
        width: 85vw;
        margin-left: 15vw;
    }

    nav a {
        width: 45px;
        height: 45px;
        line-height: 0;
        margin: 0;
        padding: 5px 0;
    }

    nav a.active {
        background-color: transparent;
    }

    nav ul {
        height: 70%
    }

    .lang {
        top: 50px;
        z-index: 900;
    }

    .slide-caption h1, .slide-caption h2 {
        font-size: 1.8rem;
        margin: 50px 0 0px;
    }

    #thumbnail {
        bottom: 100px
    }

    .main-info {
        margin: 10px 0!important;
        padding: 8px;
    }

    .slides .slide .content {
        top: 25%!important;
    }

    .company h4 {
       font-size:18px;
       padding: 8px;
    }
    .adress, .phone {
        width:100%;
        border-right:none;
    }

.container-mail span {
    font-size:6rem
}
.container-mail h2 {
    margin: -110px 0 20px!important;
}
    #contact textarea {
        width:100%
    }
    
}

@media (max-width: 670px) {
    #thumbnail {
        bottom:10px
    }
}

@media (max-width: 500px) {
    #thumbnail {
        bottom:90px
    }

    .main-info-photo img {
        max-width: 100%!important;
        padding: 2px
    }

    .slides .slide .content {
        top: 12%!important;
    }
        .slides .slide .content {
        top: 11%!important;
    }
    .container-mail span {
        font-size:3.5rem
    }
    .container-mail h2 {
        margin: -55px 0 20px 0 !important;
        font-size:24px
    }
}

@media (max-width: 375px) {
    .slide-caption h1, .slide-caption h2 {
        font-size: 1.7rem;
    }
    .lang span {
        font-size: 0.9rem;
    }
        .slides .slide .content {
        top: 14%!important;
    }
    .container-mail .col-md-13 {
        margin:0 0 20px 0
    }
        .container-mail span {
        font-size:3.2rem
    }
    .container-mail h2 {
        margin: -55px 0 0 !important;
        font-size:24px
    }
}

@media (max-height: 800px) {
    .logo span {
        font-size:11px
    }
    nav img {
        width:35%
    }
    .lang {
        bottom:10%
    }
}
@media (max-height: 600px) {
    .logo span {
        font-size:10px
    }
    nav img {
        width:25%
    }
    .lang {
        bottom:1%
    }
}