

@font-face {
    font-family: Inter-Bold;
    src: url(../fonts/Inter-Bold.ttf);
}
@font-face {
    font-family: Inter-Medium;
    src: url(../fonts/Inter-Medium.ttf);
}
@font-face {
    font-family: Inter-Regular;
    src: url(../fonts/Inter-Regular.ttf);
}
@font-face {
    font-family: Inter-Light;
    src: url(../fonts/Inter-Light.ttf);
}






:root {
    --main-bg: #F5F5F5;
    --second-bg: #FAFAFA;
    --third-color: #FFFFFF;
    --card-bg: #F7F7F7;
    --main-color: #000000;
    --hover-color: #AEA194;
    --borfer-color: #ADADAD;
    --inter-bold: Inter-Bold, sans-serif;
    --inter-medium: Inter-Medium, sans-serif;
    --inter-regular: Inter-Regular, sans-serif;
    --inter-light: Inter-Light, sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    color: var(--main-color);
    font-size: 11px;
    line-height: 17px;
    font-family: var(--inter-regular);
}
*::selection {
    background: #c2c2c253; /* Safari */
}
*::-moz-selection {
background: #c2c2c253; /* Firefox */
}

::-webkit-scrollbar {
    background:#6c6b6b38;
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--second-bg);
}

body {
    background: var(--main-bg);
}
a,
button,
.burger {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}
.content{
    flex:  1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}

.main {
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
    background: var(--main-bg);
}
.aside{
    background: var(--third-color);
}
.footer{
    background: var(--second-bg);
}

.container {
    padding: 0 20px;
    margin: 0 auto;
}
.container_max {
    padding: 0 40px;
    margin: 0 auto;
}
.container_min {
    padding: 0 10px;
    margin: 0 auto;
}
.aside__body{
    position: relative;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 10px;
}
.aside__box-logo{
    position: relative;
}
.aside__box-link{
    position: absolute;
    width: 100%;
    height: 100%;
}
.aside__logo{
    width: 150px;
}
.aside__menu{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 130vh;
    margin: 0 -10px;
    padding: 120px 40px 40px;
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.aside__menu._active{
    width: 100vw;
    height: 130vh;
    opacity: 1;
    background: var(--second-bg);
    border-radius: 0 ;
    -webkit-border-radius: 0 ;
    -moz-border-radius: 0 ;
    -ms-border-radius: 0 ;
    -o-border-radius: 0 ;
    z-index: 4;
}
.aside__list-item{
    display: block;
    padding: 16px 0;
}
.aside__menu._active .aside__list>li { opacity: 0; transform: translateX(-30%); -webkit-transform: translateX(-30%); -moz-transform: translateX(-30%); -ms-transform: translateX(-30%); -o-transform: translateX(-30%); }
.aside__menu._active .aside__list>li:nth-child(1) { animation: aside-links  0.4s ease-in-out forwards; -webkit-animation: aside-links  0.4s ease-in-out forwards; }
.aside__menu._active .aside__list>li:nth-child(2) { animation: aside-links  0.6s forwards 0.2s; -webkit-animation: aside-links  0.6s forwards 0.2s; }
.aside__menu._active .aside__list>li:nth-child(3) { animation: aside-links  0.9s forwards 0.4s; -webkit-animation: aside-links  0.9s forwards 0.4s; }
.aside__menu._active .aside__list>li:nth-child(4) { animation: aside-links  1.2s forwards 0.6s; -webkit-animation: aside-links  1.2s forwards 0.6s; }
.aside__menu._active .aside__list>li:nth-child(5) { animation: aside-links  1.55s forwards 0.6s; -webkit-animation: aside-links  1.55s forwards 0.6s; }


@keyframes aside-links {
    0% { opacity: 0; transform:translateX(-30%) ; -webkit-transform:translateX(-30%) ; -moz-transform:translateX(-30%) ; -ms-transform:translateX(-30%) ; -o-transform:translateX(-30%) ; }
    100% { opacity: 1; transform:translateX(0%); -webkit-transform:translateX(0%); -moz-transform:translateX(0%); -ms-transform:translateX(0%); -o-transform:translateX(0%);}
}


.burger {
    display: block;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index:5;
    position: relative;
}

.burger__line {
    width: 100%;
    height: 2.5px;
    position: absolute;
    left: 0;
    background-color: var(--main-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.burger__line--1 {
    top: 0;
}

.burger__line--2,
.burger__line--3 {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.burger__line--4 {
    bottom: 0;
}

.burger._active .burger__line--1,
.burger._active .burger__line--4 {
    opacity: 0;
}

.burger._active .burger__line--2 {
    height: 2px;
    transform: translateY(50%) rotate(45deg);
    -webkit-transform: translateY(50%) rotate(45deg);
    -moz-transform: translateY(50%) rotate(45deg);
    -ms-transform: translateY(50%) rotate(45deg);
    -o-transform: translateY(50%) rotate(45deg);
}

.burger._active .burger__line--3 {
    height: 2px;
    transform: translateY(50%) rotate(-45deg);
    -webkit-transform: translateY(50%) rotate(-45deg);
    -moz-transform: translateY(50%) rotate(-45deg);
    -ms-transform: translateY(50%) rotate(-45deg);
    -o-transform: translateY(50%) rotate(-45deg);
}
.intro__swiper-img{
    width: 100%;
    height: 88vh;
    object-fit: cover;
    object-position: bottom center;
}
.swiper-pagination-bullet{
    background: transparent;
    border: 1.3px solid var(--main-color);
    width: 10px;
    height: 10px;
    opacity: 1;
}
.swiper-pagination-bullet-active{
    background: #04040425
}
.about__body,
.services__body{
    padding: 40px 15px;
}
.about__title,
.services__title,
.contact__title{
    font-size: 12px;
    text-transform: uppercase;
    line-height: 130%;
    margin-bottom: 30px;
    text-align: center;
}
.about__text{
    font-size: 12px;
    line-height: 160%;
    margin-bottom: 25px;
}
.about__columns{
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.about__column{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about__column-img{
    width: 100%;
}
.about__column-name{
    font-size: 25px;
    font-family: var(--inter-light);
    line-height: 160%;
    text-transform: uppercase;
}
.about__column-list-item{
    font-size: 12px;
    margin-bottom: 2px;
}
.about__column-list-item:last-child{
    margin-bottom: 0;
}
.about__column-tel{
    display: inline-block;
    margin-bottom: 5px;
    font-size: 12px;
}
.about__column-link{
    display: inline-block;
    width: 24px;
    height: 24px;
}
.about__column-link_telegram{
    background: url(../img/icon/telegram.svg) no-repeat;
    background-size: contain;
    background-position: center;
}
.about__column-link_whatsapp{
    background: url(../img/icon/whatsapp.svg) no-repeat;
    background-size: contain;
    background-position: center;
    margin-left: 8px;
}
.about__articles{
    border-bottom: 1px solid var(--borfer-color);
}
.about__articles-header{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 8px;
}
.about__articles-title{
    font-size: 12px;
}
.about__articles-title span{
    font-size: 12px;
    font-family: var(--inter-medium);
}
.about__articles-title-img{
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
    
}
.about__articles-title-box-img{
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.about__articles._active  .about__articles-title-box-img{
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.about__articles-gallery{
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.about__articles._active .about__articles-gallery{
    visibility: visible;
    opacity: 1;
    margin-bottom: 10px;
    height: auto;
}
.about__articles-img{
    width: 100%;
    margin-bottom: 10px;
}
.about__articles-img:last-child{
    margin-bottom: 0;
}
.projects__body{
    padding: 40px 15px;
}
.projects__cards{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.projects__card{
    display: flex;
    flex-direction: column;
}

.projects__card-box-img{
    margin-bottom: 20px;
    position: relative;
    flex: 1 1 auto;
    overflow: hidden;
}
.projects__card-img{
    width: 100%;
    height: 100%;
}
.projects__card-box-link{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.projects__title{
    font-size: 25px;
    line-height: 40px;
    font-family: var(--inter-light);
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--borfer-color);
    margin-bottom: 10px;
}
.projects__card-link{
    display: block;
    padding: 10px 0 20px;
}
.hero{
    width: 100%;
    height: 40vh;
}
.hero__body{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 100%;
    background: #00000017;
}
.hero__title{
    color: #F5F5F5;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--inter-bold);
    font-size: 29px;
    line-height: 134.483% ;
}
.project-info__column-title{
    font-size: 12px;
    margin-bottom: 10px;
}
.project-info__column-title span{
    text-transform: uppercase;
    font-family: var(--inter-medium);
}
.project-info__body{
    padding: 40px 15px;
}
.project-info__column-text{
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 160%;
}
.project-info__column-text:last-child{
    margin-bottom: 20px;
}
.project-info__column-img{
    width: 100%;
    margin-bottom: 20px;
}
.project-info__column-img:last-child{
    margin-bottom: 0px;
}
.project-info__column-layout{
    font-size: 12px;
    line-height: 160%;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.fslightbox-flex-centered > span{
    color: var(--card-bg);
}
.fslightbox-flex-centered > div{
    color: var(--card-bg);
}

.gallery__body{
    padding: 40px 15px;
    padding-top: 0px;
}
.gallery__title{
    font-size: 12px;
    line-height: 160%;
    text-transform: uppercase;
}
.gallery__columns{
    display: flex;
    padding: 5px;
    margin: 0 -10px;
}
.gallery__column{
    width: calc(1/2*100% - 10px);
    margin:0 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gallery__column-img{
    width: 100%;
    min-height: 100px;
    background: #dfdfdf;
}
.projects__card-img{
    min-height: 120px;
    background: #dfdfdf;
}
.services__cards{
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    margin: 0 -5px;
    margin-bottom: 25px;
}
.services__card{
    width: calc(1/1*100% - 10px);
    margin:0 5px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--second-bg);
}
.services__card-title{
    font-size: 14px;
    line-height: 160%;
    text-transform: uppercase;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--borfer-color);
    text-align: center;
    margin-bottom: 30px;
}
.services__card-list-item,
.footer__column-text{
    font-size: 12px;
    line-height: 160%;
}
.services__card-list-item{
    margin-bottom: 3px;
}
.services__card-list-item:last-child{
    margin-bottom: 0;
}
.services__card-list,
.services__card-text{
    margin-bottom: 35px;
}
.services__card-price{
    font-size: 24px;
    line-height: 160%;
    text-align: center;
}
.services__card-price span{
    display: block;
   font-size: 12px;
   line-height: 160%;
   margin-top: 15px;
}
.services__text{
    font-size: 12px;
    line-height: 160%;
    text-align: center;
}
.contact__body{
    padding: 40px 20px;
}
.contact__columns{
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    margin: 0 -5px;
}
.contact__column{
    width: calc(1/1*100% - 10px);
    margin:0 5px;
    margin-bottom: 30px;
}
.contact__column:last-child{
    margin-bottom: 0;
}
.contact__block{
    margin-bottom: 20px;
}
.contact__block:last-child{
    margin-bottom: 0;
}
.contact__block-title,
.contact__block-text,
.contact__block-link{
    font-size: 12px;
    line-height: 160%;
}
.contact__block-title{
    margin-bottom: 5px;
}
.contact__block-name{
    margin-bottom: 5px;
}
.contact__block-name:last-child{
    margin-bottom: 0;
}
.contact__input{
    padding: 15px 20px;
    border: 1px solid var(--borfer-color);
    min-width: 100%;
    margin-bottom: 10px;
    font-size: 12px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.contact__btn{
    padding: 15px 20px;
    min-width: 100%;
    color: var(--third-color);
    background: var(--main-color);
    font-size: 12px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.footer__body{
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 25px;
}
.footer__column-title{
    margin-bottom: 25px;
}
.footer__column-link{
    display: block;
    margin-bottom: 5px;

}
.footer__column-link:last-child{
    margin-bottom: 0;
}
.footer__column-link-tel{
    margin-bottom: 5px;
}
.footer__column-social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}
.footer__column-link-social{
    display: block;
    width: 22px;
    height: 22px;
}
.footer__column-link-social_telegram{
    background: url(../img/icon/telegram.svg) no-repeat;
    background-size: contain;
    background-position: center;
}
.footer__column-link-social_inst{
    background: url(../img/icon/inst.svg) no-repeat;
    background-size: contain;
    background-position: center;
}
.footer__column-link-social_fb{
    background: url(../img/icon/fb.svg) no-repeat;
    background-size: contain;
    background-position: center;
}
.footer__column-link-social_vk{
    background: url(../img/icon/vk.svg) no-repeat;
    background-size: contain;
    background-position: center;
}
.footer__column-link-social_whatsapp{
    background: url(../img/icon/whatsapp.svg) no-repeat;
    background-size: contain;
    background-position: center;
}