* {
    font-family: "Jost", serif;
    scroll-behavior: smooth;
    outline: 0 !important;
}

body {
    font-size: 16px;
}

a,
a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.wow {
    visibility: hidden;
}

.toggle-menu {
    display: none;
}

.loader-content {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #000;
    --_m: conic-gradient(#0000 10%, #000),
    linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

body.loading {
    overflow: hidden;
}

body.loading .loader-content {
    opacity: 1;
    visibility: visible;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

.mobile-nav {
    display: none;
}

@media (min-width: 1399px) {
    .container {
        max-width: 1400px;
    }
}

.main-video {
    position: relative;
}

.main-video video {
    width: 100%;
    object-fit: cover;
}

.main-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    transition: 300ms;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 100px;
}

.main-header .logo img {
    width: 230px;
    transition: 300ms;
}

.main-header > .menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
}

.main-header > .menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    font-size: 18px;
}

.main-header > .menu > ul a {
    color: #fff;
    font-weight: 500;
    display: block;
    transition: 300ms;
    padding: 5px 10px;
    border-radius: 4px;
}

.main-header > .menu > ul a:Hover {
    background: rgba(255, 255, 255, .5);
    color: #000;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.main-header .languages {
    position: relative;
    min-width: 100px;
    transition: 300ms;
    border-radius: 4px;
}

.main-header .languages > .active {
    color: #fff;
    font-size: 18px;
    text-align: right;
    display: block;
    transition: 300ms;
    user-select: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header .languages > .active p {
    margin-top: 5px;
}

.main-header .languages:Hover {
    background: #fff;
}

.main-header .languages:Hover > .active {
    color: #000;
}

.main-header .languages > .list {
    position: absolute;
    right: 0;
    top: 100%;
    transition: 300ms;
    background: #fff;
    list-style: none;
    padding: 0;
    min-width: 100%;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

.main-header .languages > .list a {
    display: block;
    color: #000;
    padding: 10px 20px;
    transition: 300ms;
}

.main-header .languages > .list li:Hover a {
    background: #000;
    color: #fff;
}

.main-header .languages:Hover .list {
    opacity: 1;
    visibility: visible;
}

.fixed-bar .main-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.fixed-bar .main-header .menu a {
    color: #000;
}

.fixed-bar .main-header .languages > .active {
    color: #000;
}

.fixed-bar .main-header .logo img {
    margin-top: -45px;
    margin-bottom: -56px;
    width: 200px;
    filter: brightness(100%) invert(100%);
}

.fixed-bar .main-header {
    padding-top: 20px;
    padding-bottom: 10px;
}

.main-sliders {
    position: relative;
    z-index: 1;
}

.main-sliders:before {
    content: '';
    position: absolute;
    height: 40%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.0));
    width: 100%;
    z-index: 2;
}

.main-sliders img {
    width: 100%;
    max-height: 80vh;
    object-fit: cover;
}

.main-sliders .owl-nav {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: flex;
    z-index: 2;
    background: rgba(255, 255, 255, .5);
    padding: 10px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    gap: 20px;
}

.main-sliders .owl-nav i {
    transition: 300ms;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: 300ms;
}

.main-sliders .owl-nav i:Hover {
    background: #fff;
    color: #000;
}

.main-about {
    padding: 70px 0;
    text-align: center;
}

.main-about .about-text {
    font-weight: 500;
}

.main-about .view-more {
    display: inline-block;
    color: #000;
    transition: 300ms;
    opacity: .5;
    text-transform: uppercase;
}

.main-about .view-more i {
    font-weight: lighter;
    transition: 300ms;
    margin-left: 5px;
}

.main-about .view-more:Hover {
    opacity: 1;
}

#projectsTab {
    border: 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px;
}

#projectsTab .nav-item {
    margin: 0;
}

#projectsTab .nav-item .nav-link {
    border: 0;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    font-size: 20px;
    border-radius: 4px;
    padding: 12px 20px 10px 20px;
    line-height: 1;
    transition: 300ms;
}

#projectsTab .nav-item .nav-link.active {
    background: #6d6d6d;
    color: #fff;
}

#projectsTab .nav-item .nav-link:not(.active):Hover {
    background: #eee;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.projects-container > .project-item {
    width: calc(33.3% - 30px);
    margin: 15px;
    position: relative;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.projects-container > .project-item .content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px 40px;
    color: #fff;
    transition: 900ms;
}

.projects-container > .project-item .content p {
    margin: 0;
    transition: 300ms;
    text-shadow: 0 0 30px #000;
}

.projects-container > .project-item .content .title {
    font-size: 20px;
    font-weight: 500;
}

.projects-container > .project-item .content .category {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: .5;
}

.projects-container > .project-item .cover {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: 900ms;
}

.projects-container > .project-item:hover .content {
    background: transparent;
}

.projects-container > .project-item:hover img {
    transform: scale(1.1);
}

.main-projects .container {
    padding: 0;
    max-width: 100%;
}

.main-map {
    margin-top: 140px;
}

.main-map .header {
    text-align: center;
}

.main-map .header .title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.main-map iframe {
    width: 100%;
    height: 40vh;
    filter: grayscale(100%);
}

.main-footer {
    position: relative;
    background: #000;
    color: #fff;
    padding: 70px 0;
}

.main-footer .footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.main-footer .footer-container > div {
    flex: 1;
}

.main-footer .footer-container > div:not(.logo) {
    padding-top: 70px;
}

.main-footer .logo img {
    width: 140px;
    margin-bottom: 30px;
}

.main-footer .footer-container > div .socials {
    margin-bottom: 30px;
    font-size: 20px;
    gap: 20px;
    display: flex;
}

.main-footer .footer-container > div .socials a {
    color: #fff;
    transition: 300ms;
    opacity: .5;
}

.main-footer .footer-container > div .socials a:Hover {
    opacity: 1;
}

.main-footer .footer-container > div .copyright {
    font-size: 14px;
}

.main-footer .footer-container .menu > .title {
    font-size: 20px;
    margin-bottom: 30px;
}

.main-footer .footer-container .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .footer-container .menu ul a {
    color: #fff;
    display: block;
    padding: 5px 0;
    transition: 300ms;
    opacity: .5;
}

.main-footer .footer-container .menu ul a:hover {
    opacity: 1;
}

.fx-wp-wrapper {
    position: sticky;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-right: 30px;
    margin: 20px 0;
    z-index: 99;
}

.fx-wp-wrapper .fx-wp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(to right, #075e54, #128c7e);
    padding: 15px;
    border-radius: 4px;
    color: #fff;
    transition: 300ms;
}

.fx-wp-wrapper .fx-wp:Hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #128c7e;
}

.banner-background {
    height: 220px;
    background: #404040;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.banner-background .page-breads {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    color: #fff;
    align-items: center;
}

.banner-background .page-breads i {
    font-weight: lighter;
    font-size: 14px;
}

.banner-background .page-breads a {
    color: #fff;
}

.contact iframe {
    width: 100%;
    height: 550px;
    border-radius: 5px;
    margin-top: 30px;
}

h3.contact-title {
    font-weight: 600;
    font-size: 25px;
    line-height: 31px;
    color: #000;
    letter-spacing: 0;
}

.contact-bottom span {
    letter-spacing: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #B8B8B8;
}

.contact-item {
    display: flex;
    margin: 20px 0;
}

.contact-item-content {
    display: flex;
    padding-left: 15px;
    flex-direction: column;
}

section.contact .contact-item .icon i {
    font-size: 25px;
    line-height: 29px;
    color: #000;
    width: 70px;
    height: 70px;
    background: #FFFFFF;
    border: 1px solid #000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-content {
    display: flex;
    justify-content: center;
}

.contact-item-content span {
    font-weight: 300;
    font-size: 13px;
    line-height: 16px;
    color: #626262;
}

.contact-item-content a {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    color: #000000;
}

.contact-item-content p {
    letter-spacing: 0;
}

.contact-informations {
    margin: 35px 0 50px 0;
}

.contact-socials a {
    font-size: 25px;
    line-height: 29px;
    letter-spacing: 0.59em;
    color: #B3B3B3;
    transition: 300ms;
}

.contact-socials a:Hover {
    color: #000;
}

.contact-socials {
    margin-top: 25px;
}

.contact-maps {
    margin-bottom: -90px;
}

form.contact-form input,
form.contact-form textarea {
    width: 100%;
    height: 60px;
    background: #F4F4F4;
    border-radius: 5px;
    border: none;
    outline: none !important;
    margin: 5px 0px;
    padding-left: 15px;
    transition: 400ms;
}

form.contact-form textarea {
    height: 150px;
}

button.form-button {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    border: none;
    width: 140px;
    height: 60px;
    background: #000;
    border-radius: 5px;
    margin-left: 15px;
    margin-top: 15px;
    transition: 400ms;
}

button.form-button:hover {
    background: #063970a9;
}

form.contact-form {
    margin-top: 25px;
}

.theme-btn {
    background: #bfbfbf;
    border: 0;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 300ms;
    border-radius: 4px;
}

.theme-btn i {
    padding-left: 20px;
}


.page-details {
    margin-bottom: 60px;
}

.detail-menu .aside {
    margin-bottom: 30px;
    display: block;
    border: 2px solid #eee;
    padding: 20px;
    border-radius: 8px;
}

.detail-menu .aside h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.detail-menu .aside .menu-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    white-space: nowrap;
    padding: 5px 0;
    color: #000;
    transition: 300ms;
}

.detail-menu .aside .menu-links a:Hover {
    transform: translateX(5px);
}

.detail-menu .aside .menu-links a > i {
    font-weight: lighter;
    font-size: 14px;
}

.detail-menu .help-area {
    display: block;
    border: 2px solid #eee;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.detail-menu .help-area .icon {
    font-size: 45px;
    opacity: .5;
}

.detail-menu .help-area .icon i {
    font-weight: lighter;
}

.detail-menu .help-area h6 {
    font-size: 18px;
    font-weight: 600;
}

.detail-menu .help-area span {
    font-size: 14px;
}

.detail-menu .help-area span a {
    color: #000;
    font-weight: 500;
}

.detail-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
}

.detail-gallery {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.detail-gallery > a {
    width: calc(25% - 10px);
    margin: 5px;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.detail-gallery a img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: 300ms;
}

.detail-gallery a:Hover img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.page-details.project-details .project-detail-cover{
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background-size: cover;
    flex-direction: column;
    text-shadow: 0 0 30px rgba(0,0,0,0.6);
    color: #fff;
}

.page-details.project-details .project-detail-cover:Before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.page-details.project-details .project-detail-cover .category{
    margin: 0;
}

.page-details.project-details .detail-gallery > a{
    width: calc(50% - 30px);
    margin: 15px;
}

.about-team {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.about-team {
    max-width: 70%;
}

.about-team img {width: 100%;aspect-ratio: 9/11;object-fit: cover;}

.about-team div {
    flex: 1;
    text-align: center;
    font-weight: 500;
}

.about-team div .name{
    margin-top: 20px;
}

@media (max-width: 991px) {
    .main-header > .menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 99999;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        backdrop-filter: blur(5px);
        padding: 30px;
        transition: 300ms;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
    }

    .main-header > .menu:Before {
        content: '';
        display: block;
        width: 100%;
        height: 150px;
        background-image: url('images/logo.png');
        background-size: contain;
        background-repeat: no-repeat;
        margin-bottom: 40px;
    }

    .main-header > .menu > ul {
        flex-direction: column;
    }


    .fixed-bar .main-header > .menu > ul a {
        color: #fff;
    }

    .toggle-menu {
        display: flex;
        align-items: center;
        background: transparent;
        border: 0;
        color: #fff;
        width: 40px;
        height: 40px;
        border: 1px solid #eee;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
    }

    .main-header {
        padding: 15px;
    }

    .main-header .languages {
        flex: 1;
        justify-content: flex-end;
        display: flex;
        padding-right: 30px;
    }

    .main-header .languages .active {
        display: inline-block;
    }

    .fixed-bar .toggle-menu {
        border-color: #ddd;
        color: #000;
    }

    .open-menu .main-header > .menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }


    .open-menu .toggle-menu {
        background: #fff;
        z-index: 9999999;
    }


    .open-menu .toggle-menu i:before {
        content: '\f00d';
    }

    .main-header .logo img {
        width: 90px;
    }

    .main-sliders .owl-nav i {
        font-size: 12px;
        width: 20px;
        height: 20px;
    }


    #projectsTab .nav-item .nav-link {
        font-size: 14px;
    }

    #projectsTab {
        align-items: flex-start;
        justify-content: flex-start;
        padding-left: 15px;
        max-width: 100%;
        overflow: auto;
        flex-wrap: unset;
    }

    .main-header .languages > .active {
        font-size: 14px;
    }

    .fixed-bar .main-header .logo img {
        width: 70px;
    }

    .projects-container > .project-item {
        width: 100%;
        margin: 15px 0;
    }

    .main-projects .projects-container {
        padding: 0 15px;
    }

    .main-map {
        margin-top: 30px;
    }

    .main-footer .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .main-footer .footer-container > div:not(.logo) {
        padding-top: 0;
    }

    .fx-wp-wrapper {
        display: none;
    }

    .mobile-nav {
        display: flex;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(5px);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
        padding: 15px;
        z-index: 99;
        transition: 300ms;
    }

    .mobile-nav > a {
        color: #000;
        flex: 1;
        text-align: center;
        border-right: 1px solid #ddd;
    }


    .mobile-nav > a:last-child {
        border: 0;
    }

    .open-menu .mobile-nav {
        transform: translateY(100%);
    }
    
    .about-team{
        width: 100%;
    }
}
