* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'FiraGO Regular';
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    height: 100%;
    color: #fff;
    background: #0056f9;
}
body {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

body.fade-in {
    opacity: 1;
}
.container {
    /*max-width: 1566px;*/
    margin: 0 auto;
    width: 100%;
    padding: 0 3%;
}

.header {
    /*position: fixed;*/
    width: 100%;
    top: 0;
    left: 0;
    padding: 23px 0 10px;
    z-index: 1;
    font-size: 34px;
    /*display: none;*/
}

.header_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo {
    display: flex;
    align-items: center;
}

.header_logo .logo_img {
    width: 97px;
    height: auto;
}
.header_logo .title_img {
    margin-left: 20px;
    height: 12px;
    width: auto;
}
.header_right {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header_lang {
    color: #fff;
    font-family: 'FiraGO Book';
    font-size: 16px;
    padding: 2px 0;
}
.header_btn {
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    font-family: 'FiraGO Bold';
    font-size: 16px;
    transition: 0.3s all;
}
.header_btn:hover {
    opacity: 0.8;
}
.projects-container {
    max-width: 1240px;
    margin: 0 auto;
    padding-bottom: 160px;
}
.projects-heading {
    color: #fff;
    font-family: 'FiraGO Bold';
    font-size: 42px;
    margin-top: 80px;
    margin-bottom: 48px;
}
.projects-subtitle {
    color: #e1dda1;
    font-family: 'FiraGO Bold';
    text-transform: uppercase;
    -moz-font-feature-settings: 'case';
    -webkit-font-feature-settings: 'case';
    font-feature-settings: 'case' on;
    font-size: 26px;
    margin-bottom: 24px;
}
.category + .category {
    margin-top: 70px;
}
.projects-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.project-card {
    width: 33.33%;
    padding: 0 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
    margin-bottom: 40px;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/*.project-card .project-image {*/
/*	height: 300px;*/
/*}*/
.project-card .project-img {
    /*padding-top: 56.25%;*/
    position: relative;
    overflow: hidden;
}
.project-card .project-img img:hover {
    transform: scale(1.05);
}
.project-card .project-img{
    cursor: url(../images/cursor-plus.svg) 16 16, auto;
}
.project-card .project-img img {
    width: 100%;;
    height: auto;
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*bottom: 0;*/
    /*right: 0;*/
    transition: transform 0.3s ease;
}
.project-card .project-title {
    font-family: 'FiraGO Bold';
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 12px;
}
.project-card .project-subtitle {
    font-family: 'FiraGO Book';
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.project-detail-overlay {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #0056f9;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}


.project-detail-content {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 0;
}

.close-btn {
    position: fixed;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover, .close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.project-detail-subtitle {
    font-family: 'FiraGO Book';
    text-transform: uppercase;
    -moz-font-feature-settings: 'case';
    -webkit-font-feature-settings: 'case';
    font-feature-settings: 'case' on;
    font-size: 20px;
    color: #fff;
    margin-bottom: 24px;
}
.project-detail-title {
    font-family: 'FiraGO Bold';
    font-size: 42px;
    color: #fff;
    margin-bottom: 40px;
}
.project-detail-video video {
    width: 100%;
    height: auto;
}
.project-detail-text  {
    font-family: 'FiraGO Regular';
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    margin: 32px 0;
}
@media(max-width: 1440px) {
    .project-detail-content {
        padding-left: 40px;
        padding-right: 40px;
    }
    .projects-container {
        padding: 0 40px;
    }
}
@media(max-width: 1024px) {
    .project-detail-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .projects-container {
        padding: 0 24px;
    }

}
@media(max-width: 1023px) {
    .project-card {
        width: 50%;
    }
}
@media(max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    .header_logo .logo_img {
        width: 75px;
        height: auto;
    }
    .header_logo .title_img {
        margin-left: 15px;
        height: 10px;
        width: auto;
    }
    .header_lang {
        font-size: 14px;
    }
    .projects-wrapper {
        margin: 0;
        flex-direction: column;
    }
    .project-card {
        padding: 0;
        width: 100%;
    }
    .project-detail-title {
        font-size: 26px;
    }
    .project-detail-subtitle {
        font-size: 16px;
    }
    .category + .category {
        margin-top: 40px;
    }
    .projects-heading {
        font-size: 38px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .projects-subtitle {
        font-size: 24px;
    }
}

@media(max-width: 480px) {

    .project-title {
        font-size: 18px;
    }
}