@import url(/fonts/fonts.css);

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

:focus {
    outline: none;
}

.wrapper {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

/* Sidebar */

.sidebar {
    width: 20.2%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1300;
    border-right: 1px solid #616161;
}

.sidebar:after {
    content: '';
    width: 100%;
    height: 6px;
    background-color: #d65422;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}

.sidebar > .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.sidebar-top {
    width: 100%;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #616161;
}

.sidebar-link.sidebar-phone {
    font-size: 25px;
    line-height: 16px;
    color: #fff;
    font-family: "Tahoma", sans-serif;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s ease;
    display: inline-block;
}

.sidebar-link.sidebar-phone > span {
    color: #f34400;
    transition: all .3s ease;
}

.sidebar-link.sidebar-phone:hover {
    transform: translateX(6px) scale(1.03);
    color: #fff;

    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.45),
        0 0 14px rgba(243, 68, 0, 0.35);
}

.sidebar-link.sidebar-phone:hover > span {
    color: #ff5a1f;
    text-shadow:
        0 0 10px rgba(255, 90, 31, 0.7),
        0 0 18px rgba(243, 68, 0, 0.5);
}

.sidebar-top:hover .sidebar-phone {
    animation: phonePulse .6s ease;
}

@keyframes phonePulse {
    0%   { transform: translateX(0) scale(1); }
    50%  { transform: translateX(6px) scale(1.05); }
    100% { transform: translateX(6px) scale(1.03); }
}

.sidebar-bottom {
    width: 100%;
    padding-bottom: 20px;
    height: 66px;
}

.sidebar-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sidebar-socials > .sidebar-link.social-link:hover {
    transition: all .3s ease;
    transform: translateY(-5px);
}

.sidebar-middle {
    width: 100%;
}

.sidebar-menu {
    width: 100%;
}

.sidebar-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


.sidebar-menu__list {
    display: flex;
    flex-direction: column;
    gap: 20px 10px;
}

.sidebar-menu__item,
.sidebar-menu__submenu-item {
    position: relative;
    display: flex;
    align-items: center;
}

.sidebar-menu__link {
    text-align: center;
    font-size: 23px;
    line-height: 18px;
    text-transform: uppercase;
    color: #fefefe;
    font-family: "Tahoma", sans-serif;
    text-align: center;
}

.sidebar-menu__link,
.sidebar-menu__submenu-link,
.sidebar-menu__subsubmenu-link {
    display: block;
    width: 100%;
    padding: 12px 18px;
    color: #fff;
    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease,
        background .2s ease;
}

.sidebar-menu__link:hover {
    color: #f34400;
    background: rgba(255,255,255,0.04);
}

.sidebar-menu__submenu-item {
    border-bottom: 1px solid #fff;
}

.sidebar-menu__submenu-item:last-of-type {
    border-bottom: none;
}

.sidebar-menu__dropdown,
.sidebar-menu__subdropdown {
    position: absolute;
    top: 0;
    left: calc(100% + 10px);
    display: flex;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-10px);
    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

    z-index: 100;
    padding: 5px;
}

.sidebar-menu__dropdown > .sidebar-menu__submenu {
    padding: 0 10px;
}

.sidebar-menu__item.has-child::after,
.sidebar-menu__submenu-item.has-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 40px;
    height: 100%;
    background: transparent;
}

.sidebar-menu__item.has-child:hover > .sidebar-menu__dropdown,
.sidebar-menu__submenu-item.has-child:hover > .sidebar-menu__subdropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}


.sidebar-menu__line {
    width: 6px;
    min-width: 6px;
    background: #d65422;
    margin-right: 5px;
}

.sidebar-menu__submenu,
.sidebar-menu__subsubmenu {
    min-width: 240px;
    background: #d65422dd;
    padding: 0 14px !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
    backdrop-filter: blur(12px);
}

.sidebar-menu__subdropdown {
    top: 0;
    left: calc(100% + 10px);
}

.sidebar-menu__subsubmenu {
    overflow-y: auto !important;
    max-height: 300px;
}

.sidebar-menu__subsubmenu {
    overflow-y: auto !important;
    max-height: 300px;
    scrollbar-width: thin;
    scrollbar-color: #242021 transparent;
}

.sidebar-menu__subsubmenu::-webkit-scrollbar {
    width: 4px;
}

.sidebar-menu__subsubmenu::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-menu__subsubmenu::-webkit-scrollbar-thumb {
    background-color: #242021;
    border-radius: 10px;
}

.sidebar-menu__subsubmenu::-webkit-scrollbar-thumb:hover {
    background-color: #242021;
}

.sidebar-menu__subsubmenu li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
    width: 100%;
}

.sidebar-menu__subsubmenu li:last-child {
    border-bottom: none;
}

.has-child > .sidebar-menu__link::after,
.has-child > .sidebar-menu__submenu-link::after {
    content: "›";
    position: absolute;
    right: 16px;
    opacity: 1;
    transition: transform .2s ease;
}

.has-child:hover > .sidebar-menu__link::after,
.has-child:hover > .sidebar-menu__submenu-link::after {
    transform: translateX(3px);
}

.sidebar-menu__item.has-child:hover .sidebar-menu__link {
    color: #f34400;
    background: rgba(255,255,255,0.04);
}

.sidebar-menu__submenu-link:hover {
    text-decoration: underline;
}

.sidebar-menu__item:hover > .sidebar-menu__link:first-child:before {
    content: '';
    width: 6px;
    height: 100%;
    display: block;
    background-color: #d65422;
    position: absolute;
    right: -10px;
    top: 5px;
}

.sidebar-logo {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.sidebar-logo a {
    display: inline-block;
    transition: all .35s ease;
}

.sidebar-logo a:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 12px rgba(243, 68, 0, 0.45));
}

.sidebar-logo a:hover img {
    animation: logoPulse .6s ease-in-out;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

/* Global container */
.global-container {
    width: 79.8%;
    margin-left: auto;
}

/* Content */
.content {
    width: 100%;
    z-index: 2;
}

/* Main */
.main {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

.main video, .main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 0;
}

.main .video-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.main .main-content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.main .main-content .global-container {
    position: relative;
}

/* Header */
.header {
    width: 100%;
    height: 66px;
    background-color: #242021;
    border-bottom: 1px solid #616161;
    display: flex;
    align-items: center;
}

.header.fixed {
    position: fixed;
    left: 20.2%;
    width: 79.8%;
    z-index: 1000;
    top: 0;
}


.header-link {
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 14px;
    gap: 15px;
    color: #fffefe;
    font-family: "Tahoma", sans-serif;
    transition: all .3s ease;
}

.header-link:hover {
    color: #f34400;
}

.header-links {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    margin-left: 20px;
    width: 70%;
}

.header-search__btn {
    width: 65px;
    height: 66px;
    background-color: #d55321;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    cursor: pointer;
}

.header-favourite {
    width: 65px;
    height: 66px;
    background-color: #d55321;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    cursor: pointer; 
}

.header-favourite img {
    width: 20px;
}

.header-search__btn:hover, .header-favourite:hover {
    background-color: #c24d1e;
}

.header-search__btn-box {
    display: flex;
    justify-content: center;
    border-left: 1px solid #616161;
    width: auto;
    gap: 20px;
    position: fixed;
    left: 80%;
    width:10%;
}

.header-decoration__empty-box {
    width: 5%;
    height: 66px;
    position: fixed;
    left: 90%;
    border-left: 1px solid #616161;
    border-right: 1px solid #616161;
}

.main-content__wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
}

.main-content__form-btn {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 30px;
}

.main-content__form-btn > .application-btn {
    width: 371px;
    height: 84px;
    border-radius: 30px;
    background-color: #d65422;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 13px;
    color: #ffffff;
    font-family: "Tahoma", sans-serif;
    text-align: right;
    cursor: pointer;
    gap: 10px;
    transition: all .3s ease;
}

.main-content__form-btn > .application-btn:hover {
    background-color: #c24d1e;
}

/* slider */
.main-slide__wrapper {
    display: flex;
    flex-direction: column;
}

.main-slide__title {
    width: 100%;
    height: 195px;
    background-color: rgba(255,255,255,0.6196078431372549);
    font-size: 113px;
    line-height: 56px;
    text-transform: uppercase;
    color: #242021;
    font-family: "Trebuchet MS", sans-serif;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.main-slide__subtitle {
    line-height: 41px;
    color: #ffffff;
    font-weight: 400;
    font-family: "DejaVu Sans Mono", sans-serif;
    text-align: right;
    font-size: 68px;
    margin-top: 15px;
}

.main-slide__tags-box {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.main-slide__tag {
    opacity: .6;
    width: 258px;
    height: 62px;
    border-radius: 31px;
    background-color: rgba(255,255,255,0.6705882352941176);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: underline;
    transition: all .3s ease;
    font-size: 12px;
    line-height: 13px;
    text-decoration: underline;
    text-transform: uppercase;
    color: #000000;
    font-family: "Tahoma", sans-serif;
}

.main-slide__tag:hover {
    background-color: rgba(221,116,75,1);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 1;
}

.slider-wrapper {
    display: flex;
    width: 100%;
}

.slider-controls {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-content {
    width: 70%;
    display: flex;
    justify-content: center;
    margin-left: 20px;
}

.slider-controls:last-of-type {
    width: 15.4%;
    justify-content: flex-end;
}

.slider-control.slider-main-next {
    transform: rotate(-180deg);
}

.slider-control {
    transition: all .3s ease;
    cursor: pointer;
}

.slider-control:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(243, 68, 0, 0.5));
}

.slider-control.slider-main-next:hover {
    transform: rotate(-180deg) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(243, 68, 0, 0.5));
}

.slider-control:active {
    transform: scale(0.95);
}

.slider-control.slider-main-next:active {
    transform: rotate(-180deg) scale(0.95);
}

/* Search */
.search-box {
    width: 100%;
    padding: 20px;
    position: absolute;
    left: 0;
    display: none;
}

.search-box.active {
    display: block;
}

.search-form {
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .5);
    justify-content: space-between;
    border-radius: 4px;
}

.search-input {
    width: 90%;
    padding: 10px 15px;
    border-radius: 4px;
    border: none;
    outline: none;
}

.search-btn {
    width: 10%;
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
    background-color: #d55321;
    color: #fff;
}

.search-btn:hover {
    background-color: #c74e1f;
}

.search-box.fixed {
    top: 60px;
    position: fixed;
    width: 78.2%;
    left: 21%;
    z-index: 1000;
}

/* title box global */
.title-box {
    width: 100%;
    height: 107px;
    display: flex;
    align-items: center;
    background-color: #000;
    padding-left: 21%;
    font-size: 64px;
    line-height: 48px;
    font-weight: 100;
    color: #fff;
    font-family: "Source Sans Variable", sans-serif;
    gap: 10px;
}

.title-box > .title-box__title {
    color: #ff7200;
}

/* Popular projects */
.popular-projects {
    width: 100%;
    margin-top: 37px;
    border-top: 1px solid #e0e0e0;
    padding-top: 37px;
}

.popular-projects__filter-box {
    border-top: 1px solid #e0e0e0;
    margin-top: 37px;
    padding-top: 37px;
}

.popular-projects-content {
    margin-top: 97px;
    padding-left: 20.2%;
}

.projects-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 30px;
}

.project-card__top {
    display: flex;
    flex-direction: column;
}

.project-card__project-name-box {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-color: #1a1a1a;
    height: 73px;
    padding: 15px 45px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.project-name {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 17px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Verdana", sans-serif;
    padding-left: 23px;
    border-left: 2px solid #fff;
    max-width: 350px;
}

.project-card__project-image {
    width: 100%;
    height: 334px;
    overflow: hidden;
}

.project-card__project-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.project-card-top__info-box {
    width: 100%;
    height: 61px;
    display: flex;
    align-items: center;
}

.project-card__info-left, .project-card__info-right {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    letter-spacing: 0px;
    line-height: 10px;
    color: #ffffff;
    font-family: "Verdana", sans-serif;
    text-align: center;
    font-style: italic;
    overflow: hidden;
}

.project-card__info-left {
    background-color: #d65422;
    border-bottom-left-radius: 30px;
}

.project-card__info-right {
    background-color: #1a1a1a;
    border-bottom-right-radius: 30px;
}

.project-card__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
}

.project-card-bottom__box {
    width: 50%;
    display: flex;
    justify-content: center;
    position: relative;
}

.project-card__question-btn {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: #f0efef;
    border: 1px solid #b8b8b8;
    font-size: 24px;
    letter-spacing: 0px;
    line-height: 13px;
    color: #5d5d5d;
    font-weight: bold;
    font-family: "Corbel", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 8px;
    padding-top: 5px;
}

.project-card__price-label {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 13px;
    color: #1a1a1a;
    font-weight: bold;
    font-family: "Corbel", sans-serif;
    margin: 0 20px;
}

.project-card__question {
    display: none;
    position: absolute;
    background-color: #f0efef;
    border: 1px solid #b8b8b8;
    z-index: 100;
    padding: 10px;
    top: 33px;
}

.project-card__price {
    font-size: 36px;
    letter-spacing: 0px;
    line-height: 13px;
    color: #d65422;
    font-weight: bold;
    font-family: "Corbel", sans-serif;
    text-align: right;
    margin-top: 7px;
}

.popular-projects .orange-btn {
    width: 371px;
    height: 84px;
}

.orange-btn {
    border-radius: 30px;
    background-color: #d65422;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 13px;
    color: #ffffff;
    font-family: "Tahoma", sans-serif;
    text-align: right;
    gap: 15px;
    transition: all .3s ease;
}

.orange-btn:hover {
    background-color: #c24d1e;
}

.popular-project__all-btn-box {
    display: flex;
    justify-content: center;
    margin: 80px 0;
}

.project-card {
    transition: all .3s ease;
}

.project-card:hover .project-card__project-image img {
    transform: scale(1.1);
}

/* Filters Box */
.filters-box {
    width: 100%;
    height: 70px;
    background-color: #eaeaea;
}

.pp-filters__wrapper {
    display: flex;
    align-items: center;
    padding-left: 20.2%;
    height: 100%;
    justify-content: center;
    gap: 20px;
}

.filter-select {
    width: 267px;
    height: 42px;
    border: none;
    outline: none;
    background-color: #fff;
    border-radius: 64px;
    padding-left: 15px;
}

.filter-select > option {
    font-size: 16px;
    line-height: 40px;
    color: #47425d;
    font-family: "Myriad Pro", sans-serif;
}

/* Reviews */
.reviews {
    background: url(/images/site/reviews.bg.png) no-repeat top 180px center;
    background-size: 100%;
    padding-top: 37px;
    border-top: 1px solid #e0e0e0;
}

.reviews-content {
    padding-left: 20.2%;
}

/* Services */
.services {
    padding-top: 33px;
    border-top: 1px solid #e0e0e0;
}

.services-content {
    padding-left: 21%;
    display: flex;
    align-items: center;
    background: url(/images/site/services.bg.png) no-repeat center;
    background-size: cover;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 60px;
    padding:118px 0;
    justify-content: center;
}

.service {
    width: 437px;
    height: 312px;
    border-radius: 35px;
    background-color: rgba(202,85,32,0.47058823529411764);
    border: 1px solid #fda57e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.service:hover {
    transform: scale(1.1);
}

.service-title {
    font-size: 50px;
    line-height: 47px;
    color: #ffffff;
    font-family: "Myriad Pro", sans-serif;
    margin-top: 10px;
}

.service-subtitle{
    font-size: 27px;
    line-height: 47px;
    color: #000000;
    font-family: "Myriad Pro", sans-serif;
    text-align: right;
    padding-right: 43px;
    display: block;
    width: 100%;
}

.services-line {
    width: 100%;
    height: 6px;
    background: #c24d1e;
    margin: 5px 0;
}

/* lines */
.line1 {
    position: fixed;
    top: 0;
    left: 90%;
    width: 1px;
    height: 100vh;
    background-color: #e0e0e0;
    z-index: 1;
}

.line2 {
    position: fixed;
    top: 0;
    left: 95%;
    width: 1px;
    height: 100vh;
    background-color: #e0e0e0;
    z-index: 1;
}

.main .line1, .main .line2 {
    z-index: 2;
    position: absolute;
    height: 100%;
    background-color: #616161;
}

/* about */
.about {
    margin-top: 310px;
    padding-top: 37px;
    border-top: 1px solid #e0e0e0;
}

.about-content {
    margin-top: 41px;
    border-top: 1px solid #e0e0e0;
    padding-left: 20.2%;
}

.about-left {
    position: relative;
}

.about-left:after {
    content: url(/images/site/about.background.png);
    display: block;
    position: absolute;
    top: 0;
    z-index: -1;
}

.about-wrapper {
    display: flex;
    flex-wrap: nowrap;
    padding-left: 30px;
    padding-right: 30px;
    gap: 60px;
    margin-top: 40px;
}

.about-left {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
}

.about-right {
    padding-top: 100px;
}

.about__text-box {
    max-width: 700px;
}

.about__text-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-text {
    font-size: 16px;
    line-height: 25px;
    color: #7a7a7a;
    font-family: "Tahoma", sans-serif;
}

.about-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 34px;
}

.about-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-all {
    display: flex;
    align-items: center;
    text-align: right;
    gap: 8px;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 15px;
    text-transform: uppercase;
    color: #000000;
    font-family: "Verdana";
    text-align: right;
}

.about-contacts {
    margin-top: 245px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
}

.about .application-btn {
    width: 371px;
    height: 84px;
    border-radius: 30px;
    background-color: #d65422;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 13px;
    color: #ffffff;
    font-family: "Tahoma", sans-serif;
    text-align: right;
    cursor: pointer;
    gap: 10px;
    transition: all .3s ease;
}

.about .application-btn:hover {
    background-color: #c24d1e;
}

.about-link.social-link:hover {
    transition: all .3s ease;
    transform: translateY(-5px);
}

.about-all:hover {
    text-decoration: underline;
    transition: all .3s ease;
}

/* info */
.info-content {
    margin-top: 44px;
    border-top: 1px solid #e0e0e0;
    padding-top: 127px;
    padding-left: 21%;
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    margin-bottom: 74px;
}

.info-middle {
    width: 466px;
    height: 102px;
    font-size: 15px;
    line-height: 21px;
    color: #7a7a7a;
    font-family: "Tahoma", sans-serif;
}

.info .application-btn {
    width: 100%;
    height: 84px;
    border-radius: 30px;
    background-color: #d65422;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 13px;
    color: #ffffff;
    font-family: "Tahoma", sans-serif;
    text-align: right;
    cursor: pointer;
    gap: 10px;
    transition: all .3s ease;
}

.info .application-btn:hover {
    background-color: #c24d1e;
}

.info-videogallery {
    display: flex;
    flex-wrap: wrap;
    gap: 36px 24px;
    margin-top: 10px;
    margin-bottom: 104px;
}

.info-videogallery iframe {
    width: 200px;
    height: 166px;
    background-color: #f0f0ef;
    border-radius: 24px;
}

/* Ear */
.ear {
    position: fixed;
    right: -50px;
    z-index: 1000;
    top: 50%;
    transition: all .3s ease;
}

.ear-box {
    width: 120px;
    height: 330px;
    border-radius: 25px;
    background-color: #d55321;
    font-size: 19px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Tahoma", sans-serif;
    writing-mode: vertical-lr;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    padding: 20px 28px;
    gap: 24px;
    cursor: pointer;
}

.ear-box span {
    transform: rotate(-180deg);
    display: block;
}

.ear-box img {
    width: 34px;
    height: 34px;
}

.ear:hover {
    right: -40px;
}

.ear-close {
    margin-top: 6px;
    margin-left: -17px;
    transition: all .3s ease;
}

/* portfolio */
.portfolio-content {
    margin-top: 36px;
    border-top: 1px solid #e0e0e0;
    padding-top: 110px;
    padding-left: 20.2%;
}

.portfolio-content__wrapper {
    display: flex;
    padding: 20px;
    flex-direction: column;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

.portfolio-card__big-image, .portfolio-card__big-image a {
    width: 430px;
    height: 430px;
    border-radius: 34px;
    display: block;
}

.portofilio-slider {
    width: 100%;
    overflow: hidden;
}

.portfolio-card__big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: all .3s ease;
    filter: brightness(30%);
}

.portfolio-card__mini-gallery {
    margin-top: 48px;
    display: flex;
    gap: 20px;
}

.portfolio-card__mini-gallery img {
    width: 131px;
    height: 108px;
    border-radius: 34px;
    object-fit: cover;
    transition: all .3s ease;
    filter: brightness(30%);
}

.portfolio-card__mini-gallery img:hover, .portfolio-card__big-image img:hover {
    filter: brightness(100%);
}

.portfolio-card__controls-box {
    margin-top: 22px;
    border-top:1px solid #ececec;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
}

.portfolio-card__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    line-height: 9px;
    color: #9f9f9f;
    font-family: "Tahoma", sans-serif;
    transition: all .3s ease;
}

.portfolio-card__btn:hover {
    color: #000;
}

.portfolio-card-review {
    position: sticky;
    margin-top: 30px;
    background-color: #f0efef;
    border: 1px solid #b8b8b8;
    padding: 10px;
    font-family: 'Tahoma', sans-serif;
    font-size: 14px;
    display: none;
    color: #7a7a7a;
}

.portfolio-card-review.active {
    display: block;
}

.portfolio-card-map {
    position: sticky;
    margin-top: 30px;
    padding: 10px;
    font-family: 'Tahoma', sans-serif;
    font-size: 14px;
    display: none;
    color: #7a7a7a;
}

.portfolio-card-map iframe {
    border: none !important;
    width: 100% !important;
    height: 321px !important;
}

.portfolio-card-map.active {
    display: block;
}

.portfolio-slider__controls {
    margin-top: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
}

.portfolio-slider__btn {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d65422;
    cursor: pointer;
    transition: all .3s ease;
}

.portfolio-slider__btn img {
    padding: 15px;
}

.portfolio-slider__btn:hover {
    background-color: #c24d1e;
}

.portfolio-slider__btn.portfolio-next img {
    transform: rotate(-180deg);
}

/* footer nav */
.footer-navigation {
    width: 100%;
    height: 70px;
    background-color: #232323;
}

/* yandex map */
.yandex-map {
    position: relative;
}

.yandex-map:after {
    content: url(/images/site/footer.background.png);
    bottom: -140px;
    position: absolute;
}

.yandex-map iframe {
    filter: brightness(30%);
    transition: all .3s ease;
}

.yandex-map iframe:hover {
    filter: brightness(100%);
}

/* footer */
.footer {
    margin-top: 120px;
}

.footer-wrapper {
    display: flex;
    width: 100%;
    padding-left: 20.2%;
    font-size: 13px;
    line-height: 14px;
    color: #686868;
    font-family: "Tahoma", sans-serif;
    padding-bottom: 20px;
}

.footer-left, .footer-right {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.footer-middle {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-middle a {
    margin-right: 110px;
}

.footer-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-contacts-right {
    display: flex;
    flex-direction: column;
}

.footer a:hover {
    transition: all .3s ease;
    text-decoration: underline;
}

.seopraim {
    padding-top: 100px;
}

.seopraim span {
    color: red;
}

/* footer nav */

.footer-navigation__wrapper {
    padding-left: 20.2%;
    display: flex;
    justify-content: center;
}

.footer-navigation .menu {
    padding: 20px 40px;
}

.footer-navigation .menu-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-navigation .menu-item {
    position: relative;
}

.footer-navigation .menu-item > a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 10px 0;
    transition: 0.3s;
    font-size: 15px;
    line-height: 14px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Tahoma", sans-serif;
    text-align: center;
}

.menu-item > a:hover {
    text-decoration: underline;
}

/* DROPDOWN */

.footer-navigation .dropdown {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    background: #d65422dd;

    list-style: none;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    transition: 0.3s;
    z-index: 100;
    padding: 0 12px;
}

.footer-navigation .dropdown li {
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
}

.menu-item.has-dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item.has-dropdown > img {
    position: absolute;
    bottom: -5px;
}

.footer-navigation .dropdown li:last-of-type {
    border-bottom: none;
}

.footer-navigation .dropdown li a {
    display: block;
    padding: 12px 20px;

    color: #fff;
    text-decoration: none;

    transition: 0.3s;
}

.footer-navigation .dropdown li a:hover {
    text-decoration: underline;
}


.footer-navigation .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* cookie */
.cookie {
    position: fixed;
    left: 0;
    bottom: 20px;
    z-index: 9999;
    padding: 20px;
    display: none;
    width: 100%;
    justify-content: center;
}

.cookie-alert {
    width: 100%;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #fff;
    border: 2px solid #d55321;
}

.cookie a {
    color: #d55321;
}

.cookie a:hover {
    transition: all .3s ease;
    text-decoration: underline;
}

.cookie-alert__button {
    color: #fff;
    background-color: #d55321;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s ease;
}

.cookie-alert__button:hover {
    background-color: #c24d1e;
}

/* Calculator */
.calculator-overlay {
    position: fixed;
    background: rgba(0, 0, 0, .5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20.2%;
}

.calculator {
    background-color: #fff;
    padding: 15px 20px;
}

.calculator__form {
    display: flex;
    margin-top: 20px;
    gap: 40px;
    padding-bottom: 30px;
}

.calculator__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.calculator__title {
    font-weight: 400;
}

.calculator__field {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.calculator__field label {
    display: block;
    width: 140px;
}

.calculator__field input, .calculator__field select {
    outline: none;
    border: 1px solid #eee;
    background-color: #fff;
    padding: 10px 15px;
    width: 200px;
}

.calculator__field input:focus,.calculator__field select:focus  {
    border: 1px solid #d55321;
}

.calculator__image {
    width: 400px;
}

.calculator__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.calculator__checkbox {
    margin-top: 20px;
}

.calculator__checkbox a {
    color: #d55321;
    transition: all .3s ease;
}

.calculator__checkbox a:hover {
    text-decoration: underline;
}

.calculator__submit {
    width: 100%;
    padding: 10px 15px;
    border: none;
    text-align: center;
    cursor: pointer;
    color: #fff;
    background-color: #d55321;
    margin-top: 30px;
    transition: all .3s ease;
}

.calculator__submit:hover {
    background-color: #c24d1e;
}