/*
Theme Name: ARDELINE STUDIO
Theme URI: http://ardeline.ru/
Version: 3.0
*/

body {
    margin: 0;
    padding: 0;
    font-family: 'Geologica', Arial, sans-serif;
    font-size: 14px;
    color: #000;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*-------------------------------------------------------*/
/* HEADER
/*-------------------------------------------------------*/

.a-main_Logo {
    width: 150px;
}

.a-header-main-nav li {
	margin-right: 20px;
}

.a-header-main-nav li a {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
	text-transform: uppercase;
    transition: all .3s;
}

.a-header-main-nav li a:hover {
    color: #7c7c7c;
}

.phone-link {
    margin-right: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: all .3s;
}

.phone-link:hover {
    color: #7c7c7c;
}

.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #7067671a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin-right: 10px;
}

.btn-circle i {
    font-size: 22px;
    transition: color 0.3s ease;
}

/* Telegram */
.btn-telegram i {
    color: #ffffff;
}

.btn-telegram:hover {
    background-color: #0088cc;
    border: 1px solid #0088cc;
}

.btn-telegram:hover i {
    color: #fff;
}

/* WhatsApp */
.btn-whatsapp i {
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    border: 1px solid #25D366;
}

.btn-whatsapp:hover i {
    color: #fff;
}

.a-header-main-btn {
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    border: 0;
    border-radius: 50px;
    padding: 14px 34px;
	text-transform: uppercase;
}

.a-header-main-btn:hover {
    background-color: #000000;
    text-decoration: none;
    border: 0;
    color: #fff;
    border-radius: 50px;
}

.btn-lang {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #7067671a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.btn-lang:hover {
    background-color: #fff;
    color: #000;
}

.custom-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: all 0.6s ease;
    background: transparent;
}
    
.custom-header.scrolled {
    position: fixed;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 40%,
        rgba(255, 255, 255, 0) 100%
        ); 
    backdrop-filter: blur(18px) saturate(180%) brightness(130%);
    -webkit-backdrop-filter: blur(18px) saturate(180%) brightness(130%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    animation: glassFade 0.7s ease forwards;
}

@keyframes glassFade {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(18px);
    }
}

.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ff8533 !important;
}

/* === Desktop === */
@media (min-width: 992px) {
    .navbar {
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-nav {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    
    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .d-lg-flex .btn-order {
        margin-left: auto;
    }
}

/* === Mobile === */

@media (max-width: 991.98px) {
    .custom-header {
        background: #fff !important;
        position: fixed;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .navbar {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-brand {
        color: #000 !important;
        font-weight: bold;
        font-size: 1.4rem;
    }
    
    /* === Burger menu === */
    
    .navbar-toggler {
        border: none;
        width: 30px;
        height: 24px;
        position: relative;
        background: none;
        cursor: pointer;
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    .navbar-toggler.active {
        transform: rotate(180deg);
    }

    .navbar-toggler span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #000;
        border-radius: 2px;
        opacity: 1;
        left: 0;
        transition: all 0.3s ease;
    }

    .navbar-toggler span:nth-child(1) {
        top: 0;
    }

    .navbar-toggler span:nth-child(2) {
        top: 10px;
    }

    .navbar-toggler span:nth-child(3) {
        top: 20px;
    }

    .navbar-toggler.active span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }

    .navbar-toggler.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler.active span:nth-child(3) {
        top: 10px;
        transform: rotate(-45deg);
    }

    /* === Menu === */
    .navbar-collapse {
        background: #fff;
        text-align: center;
        padding: 1.5rem 0 2rem;
        z-index: 1002;
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-nav {
        width: 100%;
        opacity: 0;
        transform: translateY(10px);
        animation: fadeSlideIn 0.5s ease forwards;
    }

    .mobile-order {
        margin-top: 1rem;
        opacity: 0;
        transform: translateY(10px);
        animation: fadeSlideIn 0.6s ease 0.1s forwards;
    }

    @keyframes fadeSlideIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar-nav .nav-link {
        color: #000 !important;
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }

    /* Overlay */
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

}

/* === Modal === */
.fullscreen-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.fullscreen-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-custom {
    width: 80%;
    max-width: 1000px;
    height: 70vh;
    color: #ffffff;
    display: flex;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.6s ease;
    border-radius: 50px;
    background: rgb(163 163 163 / 17%);
    backdrop-filter: blur(18px) saturate(180%) brightness(130%);
    -webkit-backdrop-filter: blur(18px) saturate(180%) brightness(130%);
}

.fullscreen-modal.active .modal-content-custom {
    transform: scale(1);
}

.modal-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    background: url("assets/img/bg/bg-modal.jpg") center/cover no-repeat;
}

.modal-right {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-right-title {
    position: absolute;
    top: 60px;
}

.modal-right-title h4 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.modal-right-title p {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
    width: 80%;
}

.modal-right-input {
    position: absolute;
    bottom: 60px;
}

.modal-right-input input {
    background: rgb(0 0 0 / 17%);
    backdrop-filter: blur(18px) saturate(180%) brightness(130%);
    -webkit-backdrop-filter: blur(18px) saturate(180%) brightness(130%);
    margin-bottom: 1rem;
    border: 0;
    padding: 20px;
    width: 90%;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 50px;
}

.modal-right-input button {
    background-color: #003AFC;
    color: #fff;
    font-weight: 400;
    border: none;
    padding: 20px;
    transition: background 0.3s ease;
    width: 90%;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 20px;
    border-radius: 50px;
}

.modal-right button:hover {
    background-color: #040404;
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 2100;
}

@media (max-width: 768px) {
    .modal-content-custom {
        flex-direction: column;
        height: 90vh;
    }
    
    .modal-left {
        height: 35%;
        font-size: 1.6rem;
    }
    
    .modal-right {
        height: 65%;
    }
}



/*-------------------------------------------------------*/
/* PAGE:Index
/*-------------------------------------------------------*/

.video-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 2), rgba(0,0,0,0.2));
    z-index: 1;
}

.hero-contentIndex {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    color: #fff;
    padding: 50px;
}

.a-MainBlock_Title h1 {
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 60px;
}

.blur-block {
    background: rgb(163 163 163 / 17%);
    border-radius: 50px;
    backdrop-filter: blur(18px) saturate(180%) brightness(130%);
    -webkit-backdrop-filter: blur(18px) saturate(180%) brightness(130%);
    color: #fff;
    padding: 20px;
    font-size: 14px;
    font-weight: 300;
    width: 30%;
}

.a-main-blocktext {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-left: 20px;
}

.a-main-btn {
    background-color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    border: 0;
    border-radius: 50px;
    padding: 14px 34px;
    text-transform: uppercase;
}

.a-main-btn:hover {
    background-color: #003AFC;
    text-decoration: none;
    border: 0;
    color: #fff;
    border-radius: 50px;
}


.a-MainAbout {
    background-color: #000;
    padding: 150px 25px 150px 25px;
}

.a-MainAboutTitle h3 {
    font-size: 20px;
    font-weight: 200;
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.a-MainAboutExcerpt p {
    font-size: 50px;
    font-weight: 200;
    color: #fff;
    margin-bottom: 60px;
    line-height: 1;
}

.a-MainAboutButton a {
    font-size: 20px;
    color: #fff;
    font-weight: 200;
}

.custom-btn .icon-circle {
    width: 12px;
    height: 12px;
    background-color: currentColor;
    border-radius: 50%;
    transition: transform 0.3s ease;
    display: inline-block;
  }

  .custom-btn:hover .icon-circle {
    transform: scale(1.8);
  }

.a-MainAboutAuthor {
    text-align: center;
    margin-bottom: 40px;
}

.a-MainAboutAuthor img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.a-MainAboutAuthor h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 200;
}
    



.a-MainProjects {
    background-color: #040404;
}

.a-MainProjects-block {
    padding-left: 0;
    padding-right: 0;
}

.project-card-index {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.project-card-index img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-info-index {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 2;
}

.a-projects_item-index h5 {
	color: #fff;
    font-size: 80px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    width: 80%;
}

.a-projects_item-index_area {
	color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.a-projects_item-index_location {
	color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}

.a-projects_item-index_year {
	color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}

.project-info-index .top-index,
.project-info-index .bottom-index {
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    text-shadow: 0 0 5px rgba(0,0,0,0.6);
}

.project-card-index:hover img {
    filter: blur(4px) brightness(0.7);
    transform: scale(1.05);
}
 
.project-card-index:hover .project-info-index {
    opacity: 1;
    transform: translateY(0);
}

.project-card-index:hover .project-info-index .top-index {
    transition-delay: 0.1s;
}

.project-card-index:hover .project-info-index .bottom-index {
    transition-delay: 0.25s;
}

@media (max-width: 767px) {
    .project-card-index {
        height: 220px;
    }
}

.a-MainProjectsBtn {
    text-align: center;
    padding: 35px;
}

.a-MainProjectsBtn a {
    color: #fff;
    border: 2px solid #fff;
    width: 100%;
    padding: 30px 40px;
    border-radius: 0;
    font-size: 20px;
    font-weight: 400;
}

.a-MainProjectsBtn a:hover {
    border: 2px solid #003AFC;
    background-color: #003AFC;
    color: #fff;
}

.a-Main_BlogTitle {
    padding: 60px 25px 60px 25px;
}

.a-Main_BlogName {
    color: #fff;
    font-size: 26px;
    font-weight: 200;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.a-Main_BlogTitle p {
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 40px;
}

.a-Main_Blog {
    padding: 0 25px 25px 25px;
}

.a-Main_BlogRight-link {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
     width: 100%;
}

.a-Main_BlogRight-link a {
    color: #040404;
    border: 2px solid #040404;
    width: 100%;
    padding: 30px 40px;
    border-radius: 0;
    font-size: 20px;
    font-weight: 400;
}

.a-Main_BlogRight-link a:hover {
    border: 2px solid #040404;
    background-color: #040404;
    color: #fff;
}

/*-------------------------------------------------------*/
/* PAGE:About
/*-------------------------------------------------------*/

.a-page_about {
    background-color: #040404;
    padding-top: 200px;
    padding-bottom: 150px;
    border-bottom: 1px solid #242424;
}

.a-page_about_cover-content {
    text-align: center;
}

.a-page_about_cover-content h1 {
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 60px;
}

.a-page_about_cover-content h2 {
    text-transform: uppercase;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    padding-bottom: 30px;
    width: 80%;
    margin: auto;
}

.a-page_about_cover-content p {
    text-transform: uppercase;
    color: #fff;
    font-size: 22px;
    font-weight: 100;
    padding-bottom: 50px;
    width: 60%;
    margin: auto;
}

.a-page_about_cover-content img {
    padding-bottom: 20px;
}

.cover-author {
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 100;
}

.a-page_about_brand {
    background-color: #040404;
    padding: 120px 25px 120px 25px;
}

.a-page_about_brandItem {
    border-bottom: 1px solid #242424;
    padding-bottom: 40px;
    padding-top: 40px;
}

.a-page_about_brand_img img {
    width: 260px;
}

.a-page_about_brandContent H3 {
    text-transform: uppercase;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 40px;
}

.a-page_about_brandContent p {

    color: #fff;
    font-size: 20px;
    font-weight: 100;
}

.hero_about {
    position: relative;
    height: 100vh; /* высота по экрану */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background: url("assets/img/bg/LeadFormBG.jpg") center/cover no-repeat;
    background-attachment: fixed; /* эффект движения при скролле */
}

.hero_about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45); /* затемнение для читаемости текста */
}

.hero_about-content-about {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 1rem;
}

/* На iOS/Android background-attachment: fixed работает не всегда.
Для мобилок добавим fallback: */
@media (max-width: 768px) {
    .hero_about {
        background-attachment: scroll;
    }
}


/* Базовая анимация появления */
  .fade-seq {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards ease-out;
  }

  /* Индивидуальные задержки */
  .delay-1 {
    animation-delay: 0.2s;
  }
  .delay-2 {
    animation-delay: 0.5s;
  }
  .delay-3 {
    animation-delay: 0.8s;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Декоративный квадрат */
  .color-square {
    width: 15px;
    height: 15px;
    background-color: #003AFC; /* можно изменить цвет */
    border-radius: 0;
    margin-bottom: 30px;
  }

  .brand_title {
    text-transform: uppercase;
    color: #fff;
    font-size: 70px;
    font-weight: 600;
    padding-bottom: 60px;
    text-align: center;
  }

  /* Ховер-эффект рамки */
  .brand-card {
    padding: 50px;
    border: 4px solid #242424;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
    background-color: #080808;
  }
  .brand-card:hover {
    border-color: #fff;
  }

  .brand-image {
    border-radius: 12px 12px 0 0;
    object-fit: cover;
    height: 200px;
    width: 100%;
  }

.a-About_BlockBlack {
    padding: 100px 25px 100px 25px;
    border-bottom: 1px solid #1d1d1d;
    background-color: #000000;
}

.a-About_BlockBlackTitle h4 {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
}

.a-About_BlockBlackContent_Left {
    font-size: 50px;
    font-weight: 200;
    line-height: 1.0;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.0;
    color: #fff;
}

.a-About_BlockBlackContent_Right p {
    font-size: 24px;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #ffffff;
    text-transform: uppercase;
}

.a-About_MissionItem {
    margin-bottom: 20px;
    margin-top: 100px;
}

.a-About_MissionItem h4 {
    font-size: 100px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
}

.a-About_MissionItem p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
}

.stat-card {
    height: 400px;
    border: 2px solid #fff;
    border-radius: 0;
    overflow: hidden;
    background-color: #000000;
    animation: cardIn .6s ease-out forwards; /* анимация появления */
    margin-bottom: 30px;
    cursor: pointer;
}

.stat-card .card-body {
    /* Раскладываем контент: число сверху, название снизу */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    padding: 2rem;
}

.stat-number {
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.6s ease-out;
}

.stat-number:hover {
    color: #003AFC;
}

.stat-label {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    font-weight: 400;
}

@keyframes cardIn {
    from { transform: translateY(12px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.a-About_BlockBlackMaps {
    padding: 100px 25px 100px 25px;
    background-color: #000000;
}

.a-About_MapsСategories ul  {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 60px;
}

.a-About_MapsСategories ul>li  {
    display: inline;
    margin-right: 20px;
    color: #ffffff;
}

.a-About_MapsСategories ul>li a  {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 60px;
    font-weight: 600;
    transition: all .3s;
}

.a-About_MapsСategories ul>li a:hover  {
    color: #003AFC;
}

.slash {
    color: #ffffff;
    font-size: 50px;
}

.a-About_MapsBlockTitle h4 {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
}

.a-About_MapsBlock p {
    font-size: 50px;
    font-weight: 200;
    line-height: 1.0;
    margin-bottom: 40px;
    color: #fff;
}

.a-About_Block-Publication {
    padding: 100px 25px 50px 25px;
}

.a-About_Block-PublicationTitle h4 {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
}

.a-About_Block-PublicationContent {
    font-size: 50px;
    font-weight: 200;
    line-height: 1.0;
    margin-bottom: 40px;
}

 /* Эффект наведения */
 .press-list:hover .press-item {
    opacity: 0.4;
    transition: opacity .25s ease;
}

.press-item:hover {
    opacity: 1 !important;
}

.press-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.press-item {
    transition: opacity .25s ease;
}

.a-About_Block-PublicationTitle {
    font-size: 24px;
    font-weight: 600;
}

.a-About_Block-PublicationExcerpt {
    font-size: 24px;
    font-weight: 300;
    margin-right: 20px;
}

.a-About_Block-PublicationYears {
    font-size: 24px;
    font-weight: 300;
    margin-right: 20px;
}

/* Мобильная адаптация */
@media (max-width: 576px) {
    .press-item {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .press-item .text-end {
        text-align: left !important;
        margin-top: 4px;
    }
}

.a-About_Block-Nomination {
    padding: 0 25px 100px 25px;
}

.a-About_Block-NominationTitle h4 {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
}

.a-About_Block-NominationContent {
    font-size: 50px;
    font-weight: 200;
    line-height: 1.0;
    margin-bottom: 40px;
}

.a-About_Block-NominationTitle {
    font-size: 24px;
    font-weight: 600;
}

.a-About_Block-NominationExcerpt {
    font-size: 24px;
    font-weight: 300;
    margin-right: 20px;
}

.a-About_Block-NominationYears {
    font-size: 24px;
    font-weight: 300;
    margin-right: 20px;
}

.a-About_Block-Commands {
    padding: 100px 25px 100px 25px;
    background-color: #040404;
}

.a-About_ComandsTitle {
    text-align: center;
}

.a-About_ComandsTitle span {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 300;
    padding-bottom: 30px;
    color: #fff;
}

.a-About_ComandsTitle h4 {
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 600;
    padding-bottom: 30px;
    color: #fff;
}

.a-About_ComandsCard {
    margin-bottom: 60px;
}

.a-About_ComandsItem h5 {
    font-size: 18px;
    font-weight: 200;
    letter-spacing: -.016em;
    line-height: 100%;
    color: #fff;
    margin-top: 20px;
}

.a-About_ComandsItem p {
    font-size: 18px;
    font-weight: 400;
    color: #525252;
}

/*-------------------------------------------------------*/
/* PAGE:PROJECTS
/*-------------------------------------------------------*/

.a-page_projects {
    background-color: #040404;
    padding-top: 100px;
}

.a-projects_filter {
    padding: 30px 40px;
    background-color: #040404;
	text-align: right;
}

.a-projects_filter_link {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.a-projects_filter_link {
    list-style-type: none;
    display: flex;
	justify-content: flex-end;
}

.a-projects_filter_linkTitle {
	font-size: 16px;
    font-weight: 600;
}

.a-projects_filter_link li {
    padding-bottom: 0;
}

.a-projects_filter_link a {
	text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
	cursor: pointer;
	transition: all .6s ease-out;
	margin-left: 30px;
	border-bottom:2px solid #242424;
	padding-bottom:4px;
}

.a-projects_filter_link a:hover  {
    color: #ffffff;
	border-bottom:2px solid #fff;
}


.a-projects_view {
    padding: 40px;
    border-top: 1px solid #242424;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    margin-bottom: 25px;
}

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

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 2;
}

.a-projects_item h5 {
	color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.a-projects_item_area {
	color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.a-projects_item_location {
	color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}

.a-projects_item_year {
	color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}

.project-info .top,
.project-info .bottom {
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    text-shadow: 0 0 5px rgba(0,0,0,0.6);
}

.project-card:hover img {
    filter: blur(4px) brightness(0.7);
    transform: scale(1.05);
}
 
.project-card:hover .project-info {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover .project-info .top {
    transition-delay: 0.1s;
}

.project-card:hover .project-info .bottom {
    transition-delay: 0.25s;
}

@media (max-width: 767px) {
    .project-card {
        height: 220px;
    }
}

/*-------------------------------------------------------*/
/* PROJECTS:SINGLE PAGE
/*-------------------------------------------------------*/

.project-hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.project-hero .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    z-index: 0;
}

.project-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    z-index: 0;
}

.project-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}

.project-hero .hero-content {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
}

.project-title {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.project-meta {
    text-align: right;
    font-weight: 300;
}

@media (min-width: 768px) {
    .project-title { font-size: 2rem; }
    .project-meta { font-size: 1rem; }
    .project-hero .hero-content { padding: 2rem; }
}

@media (min-width: 1200px) {
    .project-title { font-size: 5.2rem; }
    .project-meta { font-size: 1.325rem; }
}

@media (max-width: 420px) {
    .project-hero .hero-content { padding: 0.75rem; }
    .project-title { font-size: 1.25rem; }
}

.a-SingleProjects_Bg {
    background-color: #f2f0f0;
}

.a-SingleProjects_Content {
    padding-left: 0;
    padding-right: 0;
}

.a-SingleProjects_SimilarRelative {
    background-color: #040404;
}

.a-SingleProjects_SimilarRelative_Item {
    padding: 0;
}

.a-SingleProjects_SR_Cardleft {
    border-radius: 0;
    background-color: #040404;
}

.a-SingleProjects_SR_Cardright {
    border-radius: 0;
    background-color: #040404;
    border-left: 0;
}

.a-SingleProjects_SR_Body {
    padding: 50px;
}

.a-SingleProjects_SR_Body p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #727272;
    text-transform: uppercase;
}

.a-SingleProjects_SR_Body a {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 400;
    color: #ffffff;
    transition: all .3s;
}

.a-SingleProjects_SR_Body a:hover {
    color: #7c7c7c;
}

.a-SingleProjects_Similar_Item {
    padding: 0;
}

.post-card {
    position: relative;
    overflow: hidden;
    display: block;
    color: white;
    text-decoration: none;
    transition: transform 0.6s ease;
}

.post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    transition: filter 0.8s ease, transform 0.8s ease;
}

.post-card:hover img {
    filter: blur(3px) brightness(60%);
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.post-overlay h5 {
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.post-overlay h6 {
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.post-overlay p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.a-SingleProjects_Info {
    background-color: #f2f0f0;
    padding-bottom: 80px;
}

.consultation-section {
    padding: 80px 20px 40px 20px;
    text-align: center;
    overflow: hidden;
    width: 80%;
    margin: auto;
}

.consultation-title {
    color: #040404;
    font-size: 5rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.consultation-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.consultation-form {
    max-width: 1000px;
    margin: auto;
}

.consultation-form-label {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.consultation-form-check {
    margin-top: 40px;
}

.iti {
    width: 100%;
}

.form-label {
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.form-control:focus {
    border-color: #040404;
    box-shadow: none;
}

.a-SingleProjects_btn-order {
    background-color: #040404;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    border: 0;
    border-radius: 50px;
    padding: 30px 34px;
    text-transform: uppercase;
    margin-top: 40px;
    transition: all .3s;
}

.a-SingleProjects_btn-order:hover {
    background-color: #003AFC;
    color: #ffffff;
}

.form-check-label {
    font-weight: 400;
    color: #333;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.form-check-label a {
    font-weight: 600;
    color: #040404;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all .3s;
}

.form-check-label a:hover {
    color: #003AFC;
}

/*-------------------------------------------------------*/
/* PAGE:Services
/*-------------------------------------------------------*/

.a-services_Block {
    background-color: #040404;
    padding-top: 100px;
}

.a-services_Block_Content {
    background-color: #040404;
    padding: 25px;
}

.a-services_title {
    margin-bottom: 80px;
    margin-top: 20px;
}

.a-services_title h1 {
    font-size: 100px;
    font-weight: 200;
    color: #fff;
}

.servicesBlock {
    margin-bottom: 25px;
}

.service-block {
    background-color: #040404;
    border-radius: 0;
    border: 4px solid #242424;
    transition: all 0.6s ease;
}

.service-block:hover {
    border: 4px solid #ffffff;
}

.a-services_BlockBody {
    padding: 50px;
    background-color: #040404;
}

.a-services_BlockBody h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
    width: 70%;
}

.a-services_BlockExcerpt {
    font-size: 16px;
    font-weight: 200;
    color: #696969;
}

.a-services_Footer {
    padding: 0 50px 50px 50px;
    background-color: #040404;
    border-top: 0;
}

.table-dark-custom {
    background-color: #040404;
    color: #fff;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
}

.table-dark-custom td {
    border-bottom: 1px solid #242424;
    padding: 0.75rem 1rem;
}

.table-dark-custom td:first-child {
    font-weight: 500;
    text-align: left;
}

.a-services_BlockItem_title {
    font-size: 16px;
    font-weight: 400;
    color: #696969;
}

.a-services_BlockItem_content {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: right;
}

.a-services_BlockButton {
    background-color: #FFF;
    border: none;
    padding: 0;
}

.a-services_BlockBtn {
    background-color: #000000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 20px;
    width: 100%;
    border: 1px solid #000;
    transition: all 0.3s ease;
    height: 100%;
    text-transform: uppercase;
}

.a-services_BlockBtn:hover {
    border: 1px solid #003AFC;
    background-color: #003AFC;
    color: #fff;
}

.a-services_BlockBtnInfo {
    background-color: #fff;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding: 20px;
    width: 100%;
    border: 0;
    transition: all 0.3s ease;
    border: 1px solid #000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.a-services_BlockBtnInfo:hover {
    background-color: #000000;
    color: #fff;
}


.a-services_ModalAccordion {
    font-size: 14px;
    font-weight: 200;
}

.main-block {
    width: 100%;
    height: 800px;
    position: relative;
}

/* Общая картинка */
.bg-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Внутренний flex-контейнер поверх картинки */
.content-wrapper {
    position: relative;
    z-index: 2;
}

/* Левая половина */
.left-panel {
    width: 100%;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.45);
}

.a-services_Left {
    padding: 65px;
}

.a-services_Left h1 {
    font-size: 60px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    width: 50%;
    line-height: 1.2;
    margin-bottom: 50px;
}

.a-services_Left p {
    font-size: 20px;
    font-weight: 200;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    width: 90%;
}

.table-dark-custom-single {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
}

.table-dark-custom-single td {
    border-bottom: 1px solid #fff;
    padding: 0.75rem 1rem;
}

.table-dark-custom-single td:first-child {
    font-weight: 500;
    text-align: left;
}

.a-services-single_BlockItem_title {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

.a-services-single_BlockItem_content {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-align: right;
}

@media (min-width: 768px) {
    .left-panel {
        width: 50%;
    }
}

/* Правая половина просто открытая */
.right-panel {
    width: 50%;
}

/* Адаптация */
@media (max-width: 767px) {
    .main-block {
        height: auto;
        min-height: 400px;
    }
}

.a-SingleServices_Content {
    background-color: #040404;
    padding: 100px 25px 100px 25px;
}

.a-SingleServices_MainExcerpt {
    font-size: 52px;
    font-weight: 300;
    line-height: 1;
    text-indent: 20%;
    margin-bottom: 100px;
    color: #fff;
}

.a-SingleServices_Heading h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #fff;
}

.a-SingleServices_Item {
    margin-bottom: 25px;
}

.a-SingleServices_ItemCard {
    border: 4px solid #242424;
    border-radius: 0;
    padding: 40px;
    background-color: #040404;
}

.a-SingleServices_ItemHeader {
    background-color: #040404;
    border-bottom: 0;
}

.a-SingleServices_ItemHeaderNum {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.a-SingleServices_ItemHeaderTitle {
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
}

.a-SingleServices_ItemHeaderExcerpt {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
}

.a-SingleServices_ItemBody {
    margin-top: 50px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
}

.a-SingleServices_ItemBody ul li {
    border: 0;
    padding: 0 0 6px 0;
    margin-bottom: 10px;
    background-color: #040404;
    color: #818181;
}

.a-SingleServices_ItemFooter {
    background-color: #040404;
    border-bottom: 0;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}

.a-SingleServices_Works {
    padding: 0 25px 100px 25px;
    background-color: #040404;
}

.a-SingleServices_WorksTitle p {
    font-size: 52px;
    font-weight: 300;
    line-height: 1;
    text-indent: 20%;
    margin-bottom: 60px;
    color: #fff;
}

.a-SingleServices_Stages {
    padding: 0 25px 100px 25px;
    background-color: #040404;
}

.a-SingleServices_StagesContent p {
    font-size: 52px;
    font-weight: 300;
    line-height: 1;
    text-indent: 20%;
    margin-bottom: 60px;
    color: #fff;
}

.a-SingleServices_StagesBlock {
    margin-bottom: 40px;
}

.a-SingleServices_StagesItem {
    border: 4px solid #242424;
    background-color: #040404;
    border-radius: 0;
    padding: 30px;
}

.a-SingleServices_StagesHeader {
    margin-bottom: 60px;
    background-color: #040404;
}

.a-SingleServices_StagesNum {
    color: #ffffff;
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 20px;
}

.a-SingleServices_StagesExcpert {
    color: #ffffff;
    font-size: 30px;
    font-weight: 200;
    line-height: 1.2;
    width: 80%;
}

.a-SingleServices_StagesBody p {
    color: #818181;
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 1px;
}

.accordion {
    margin: 0 auto;
    padding: 20px 16px;
    border-radius: 0;
}

.a-SingleServices_StagesAccordion {
    border-radius: 0;
}

.accordion-item {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    padding: 25px 35px;
}

.accordion-button {
    color: #fff;
    padding-left: 0;
    padding-right: 0;
}

.accordion-button.collapsed {
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button::after {
    display: none; 
}

.acc-icon {
    width: 50px;
    height: 50px;
    background-color: #003AFC;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin-left: auto;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

/* Контент аккордеона */
.accordion-body {
    padding-left: 0;
    padding-right: 32px;
    padding-top: 12px;
    font-size: 20px;
    color: #ccc;
    line-height: 1.5;
}

/* Нумерация */
.step-index {
    color: #ffffff;
    font-weight: 700;
    margin-right: 20px;
    font-size: 30px;
}

.accordion-button h4 {
    color: #ccc;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    margin-top: 10px;

}

    /* Мобильная адаптация */
    @media (max-width: 576px) {
        .accordion {
            padding: 12px;
        }

        .accordion-button {
            font-size: 16px;
            gap: 6px;
            flex-wrap: wrap;
        }

        .acc-icon {
            width: 24px;
            height: 24px;
            font-size: 18px;
        }

        .accordion-body {
            padding-right: 0;
        }
    }

.a-SingleServices_StagesTitleTwo p {
    color: #ffffff;
    font-size: 52px;
    font-weight: 300;
    line-height: 1;
    text-indent: 20%;
    margin-bottom: 60px;
    margin-top: 60px;
}

.a-SingleServices_Price {
    padding: 0 25px 100px 25px;
    background-color: #040404;
}

.a-SingleServices_PriceTitle h3 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.a-SingleServices_PriceCard {
    background-color: #040404;
    padding: 0;
    border-radius: 0;
    border: 4px solid #242424;
}

.a-SingleServices_PriceHeader {
    background-color: #040404;
    padding: 40px;
    border-bottom: 0;
}

.a-SingleServices_PriceNum {
    color: #818181;
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 20px;
}

.a-SingleServices_PriceExcpert {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}

.a-SingleServices_PriceBody {
    background-color: #040404;
    padding: 40px;
}

.a-SingleServices_PriceBody h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.a-SingleServices_PriceBody p {
    color: #818181;
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 0;
}

.a-SingleServices_PricePrice {
    color: #ffffff;
    padding: 0 40px 40px 40px;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.a-SingleServices_PriceFooter {
    background-color: #040404;
    padding-top: 40px;
    border-top: 4px solid #242424;
}

.a-SinglePrice_btnLead {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 200;
    padding: 25px 20px;
    border-radius: 0;
    width: 100%;
}

.a-SinglePrice_btnLead:hover {
    background-color: #003AFC;
    color: #fff;
}

.a-SingleServices_FAQ {
    padding: 0 25px 100px 25px;
    background-color: #040404;
}

.a-SingleServices_FAQaccordion {
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
}

.a-SingleServices_FAQItem {
    margin-bottom: 10px;
}

.a-SingleServices_FAQTitle h3 {
    color: #fff;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.a-SingleServices_FAQHeader {
    border: 4px solid #242424;
    padding: 30px 40px;
    color: #fff;
}

.a-SingleServices_FAQBtn {
    font-size: 24px;
    font-weight: 300;
}

.a-SingleServices_FAQBody {
    font-size: 20px;
    font-weight: 300;
    padding: 30px;
    color: #818181;
}

/*-------------------------------------------------------*/
/* PAGE:Blog
/*-------------------------------------------------------*/

.a-blog_Block {
    background-color: #040404;
    padding-top: 100px;
}

.a-blog_categories {
    padding: 40px;
}

.a-categories_Block {
    padding-left: 0;
    padding-right: 0;
}

.a-categories_BlockСategories ul  {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.a-categories_BlockСategories ul>li  {
    display: inline;
    margin-right: 20px;
}

.a-categories_BlockСategories ul>li a  {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s;
    border-bottom:1px solid #ffffff;
}

.a-categories_BlockСategories ul>li a:hover  {
    border-bottom:1px solid #000;
}

.slash {
    margin-right: 20px;
}

.a-blog_item {
    padding: 0 25px 25px 25px;
}

.a-blog_BlockPost {
    margin-bottom: 40px;
    border: 0;
}

.a-blog_BlockBody {
    padding: 0;
}

.a-blog_BlockCategory {
	margin-top: 12px;
    margin-bottom: 12px;
}

.a-blog_BlockCategory a {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #212529;
    border-bottom: 1px solid #212529;
	
}

.a-blog_BlockCategory a:hover {
    color: #8F8F8F;
    transition: all .3s;
}

.a-blog_BlockTitle h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.a-blog_BlockTitle h2 a {
    color: #212529;
    transition: all .3s;
}

.a-blog_BlockTitle h2 a:hover {
    color: #003AFC;
}

.a-blog_BlockContent p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
    margin-top: 10px;
}

.a-blog_BlockTime {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.a-blog_BlockFooter {
    background-color: #fff;
    border-top: 0;
    padding: 0;
}

.a-SinglePost_DC {
    padding: 50px 0px 50px 0px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.a-SinglePost_DC span {
    margin-right: 30px;
}

.a-SinglePost_DC a {
    font-weight: 600;
    color: #000;
    transition: all .3s;
}

.a-SinglePost_DC a:hover {
    color: #003AFC;
}


.a-SinglePost_Title {
    padding: 50px 0px 0px 0px;
}

.a-SinglePost_Title h1 {
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
}

.a-SinglePost_Excerpt {
    padding: 50px 0px 50px 0px;
    font-size: 24px;
    font-weight: 200;
}

.a-SinglePost_Content p {
    font-size: 16px;
    font-weight: 200;
    margin-top: 40px;
    margin-bottom: 40px;
}

.a-SinglePost_Block {
    padding-top: 60px;
    padding-bottom: 60px;
}

.a-SinglePost_BlockSocial {
    border: 1px solid #000;
    padding: 20px 40px;
}

.a-SinglePost_SocialTitle h4 {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}

.a-SinglePost_SocialButton {
    text-align: right;
}

.a-SinglePost_Tags a {
    font-size: 12px;
    font-weight: 400;
    margin-right: 10px;
    background-color: #E5E5E5;
    color: #000;
    padding: 10px 20px;
    transition: all .3s;
}

.a-SinglePost_Tags a:hover {
    background-color: #003AFC;
    color: #fff;
}

.a-SinglePost_RelatedTitle h4 {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/*-------------------------------------------------------*/
/* PAGE:Contacts
/*-------------------------------------------------------*/

.a-contacts_Block {
    background-color: #040404;
    padding-top: 100px;
}

.a-contacts_Block_Info {
    padding: 60px 25px 100px 25px;
    background-color: #040404;
}

.a-contactsTitle {
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid #242424;
}

.a-contactsTitle h1 {
    font-size: 80px;
    font-weight: 200;
    color: #ffffff;
    line-height: 1.0;
    margin-bottom: 20px;
    margin-top: 40px;
    text-transform: uppercase;
}

.a-contactsTitle p {
    font-size: 22px;
    font-weight: 200;
    color: #ffffff;
    line-height: 1.0;
    width: 70%;
}

.a-contactsMainInfo {
    margin-top: 40px;
    margin-bottom: 60px;
}

.a-contactsMainInfo h2 {
    font-size: 24px;
    font-weight: 200;
    color: #7a7a7a;
}

.a-contactsMainInfo a { 
    font-size: 25px;
    font-weight: 200;
    color: #ffffff;
    border-bottom:1px solid #212529;
    transition: all .3s;
}

.a-contactsMainInfo a:hover {
    font-weight: 400;
}

.a-contactsMainInfo p {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
}

.social-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 0 6px;
    border: 2px solid #242424;
}

/* Цвета по соцсетям */
.social-telegram    { background-color: #040404; }
.social-instagram   { background-color: #040404; }
.social-vk          { background-color: #040404; }
.social-youtube     { background-color: #040404; }
.social-behance     { background-color: #040404; }
.social-pinterest   { background-color: #040404; }

/* Цвета по соцсетям — затемнение */
.social-telegram:hover    { background-color: #0088cc; color:#fff;}
.social-instagram:hover   { background-color: #E1306C; color:#fff;}
.social-vk:hover          { background-color: #4c75a3; color:#fff;}
.social-youtube:hover     { background-color: #FF0000; color:#fff;}
.social-behance:hover     { background-color: #1769ff; color:#fff;}
.social-pinterest:hover   { background-color: #bd081c; color:#fff;}

.hero_contacts {
    position: relative;
    height: 100vh; /* высота по экрану */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background: url("assets/img/bg/bg_contacts_new.jpg") center/cover no-repeat;
    background-attachment: fixed; /* эффект движения при скролле */
}

.hero_contacts::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45); /* затемнение для читаемости текста */
}

.a-contacts-img-cover {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 1rem;
}

/* На iOS/Android background-attachment: fixed работает не всегда.
Для мобилок добавим fallback: */
@media (max-width: 768px) {
    .hero_contacts {
        background-attachment: scroll;
    }
}

/*-------------------------------------------------------*/
/* Breadcrumb
/*-------------------------------------------------------*/

.a-breadcrumb {
    padding: 30px 40px;
    background-color: #040404;
}

.a-breadcrumb-nav {
    margin-bottom: 0;
}

.kama_breadcrumbs a {
    color: #fff;
	font-size: 14px;
    font-weight: 500;
    transition: all .3s;
    margin-right: 8px;
}

.kama_breadcrumbs a:hover {
    color: #858585;
}

.kb_sep {
    color: #fff;
	font-size: 14px;
    font-weight: 500;
    margin-right: 8px;
}

.kb_title {
    color: #4F4F4F;
	font-size: 14px;
    font-weight: 500;
}

/*-------------------------------------------------------*/
/* Footer
/*-------------------------------------------------------*/

.a-FooterBlock_top {
    padding: 50px 50px 150px 50px;
    background-color: #000000;
}

.a-FooterMobileContacts {
    padding: 50px;
    background-color: #000000;
}

.a-FooterBlock_top-info {
    margin-bottom: 10px;
    padding: 10px;
}

.a-FooterBlock_top-info h4 {
    font-size: 14px;
    font-weight: 300;
    color: #4b4b4b;
    text-transform: uppercase;
}

.a-FooterBlock_top-info a {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    transition: all .3s;
}

.a-FooterBlock_top-info a:hover {
    color: #636363;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #111111;
  border-radius: 50%;
  color: #fff;
  background-color: #111111;
  text-decoration: none;
  font-size: 22px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #f2f0f0;
  color: #000;
}

/* SVG иконки (DProfile и Rutube) адаптируются под цвет текста */
.social-icons a svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: fill 0.3s ease;
}

@media (max-width: 576px) {
  .social-icons a {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .social-icons a svg {
    width: 20px;
    height: 20px;
  }
  }

.a-FooterBlock_bottom {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #1a1a1a;
    background-color: #000000;
}

.a-FooterBlock_copyright {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.5px;
}

.a-FooterBlock_info {
    font-size: 14px;
    font-weight: 300;
    color: #4b4b4b;
}

.a-FooterBlock_policy {
    text-align: right;
}

.a-FooterBlock_policy a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    transition: all .3s;
    letter-spacing: -0.5px;
}

.a-FooterBlock_policy a:hover {
    color: #636363;
}


