
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');


@font-face { 
  font-family: 'P22UndergroundCYProBook';
  src: url('../fonts/p22/P22UndergroundCYProBook.ttf') format('truetype'); 
}

/* @font-face { */
  /* font-family: 'Open Sans'; */
  /* src: url('./fonts/OpenSans-VariableFont_wdth.ttf') format('truetype'); */
/* } */
/* @font-face { */
  /* font-family: 'Commissioner'; */
  /* src: url('./fonts/Commissioner-VariableFont_FLAR,VOLM,slnt,wght.ttf') format('truetype'); */
/* } */

html{
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*, *::before, *::after{
    box-sizing: inherit;
}

:root {
  --black: #000;
  --white: #fff;
  --gray: #3F484A;
  --dark-gray: #191C1D;
  --lavender: #DFD5EC;
  --orange: #DAAC12;
}

body{
    margin: 0;
    padding: 0;
	  /* background-color: #FCFCFC; */
	  /* background-color:#716969; */
    font-family: 'P22UndergroundCYProBook', sans-serif;
	  font-style: normal;
    font-weight: 400;
    color: #1D1D1D;
}
h1{
	padding:0;
	margin:0;
}
h2{
	padding:0;
	margin:0;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
a{
  color: inherit;
  text-decoration: none;
}

/* !!!=====  ОБЩИЕ СТИЛИ  =====!!! */
.bg_wh{
	background-color: var(--white);
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
 
main {
  flex: 1;
}

/* Кнопка c БЕЛЫМ текстом */
.white_btn_feedback{
  width: 164px;
  height: 34px;
  position: relative;
}
.white_btn_feedback .bg {
  width: 78px;
  height: 100%;
  left: 0px;
  top: 0px;
  position: absolute;
  background: rgb(254 195 3 / 83%);
}
.white_btn_feedback .txt{
  /* width: 142px; */
  height: 13.81px;
  left: 12px;
  top: 8px;
  position: absolute;
  color: #fff;
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 700;
  text-transform: lowercase;
  line-height: 16px;
}
.white_btn_feedback:hover .bg{
  width: 100%;
  transition: all .3s ease;
}
.white_btn_feedback:hover .txt{
  color: 1D1D1D;
  transition: all .3s ease;
}
/* end Кнопка c БЕЛЫМ текстом */

/* Кнопка c ЧЁРНЫМ текстом */
.brown_btn_feedback{
  width: 164px;
  height: 34px;
  position: relative;
}
.brown_btn_feedback .bg {
  width: 78px;
  height: 100%;
  left: 0px;
  top: 0px;
  position: absolute;
  background: rgb(254 195 3 / 83%);
}
.brown_btn_feedback .txt{
  width: 142px;
  height: 13.81px;
  left: 12px;
  top: 8px;
  position: absolute;
  color: #1D1D1D;
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 700;
  text-transform: lowercase;
  line-height: 16px;
}
.brown_btn_feedback:hover .bg{
  width: 100%;
  transition: all .3s ease;
}
.brown_btn_feedback:hover .txt{
  color: #fff;
  transition: all .3s ease;
}
/* end Кнопка c ЧЁРНЫМ текстом */

/* Дополнительные стили. Меняете на свои */


.container{
  /* width: 100%; */
  position: relative;
  padding: 0 24px;
  margin: 0 auto;
  /* width: 1440px; */
  width: 100%;
  /* min-width: 1440; */
  max-width: 1440px;
  
}

/* ============================================== */


/* HEADER  - SERVICE*/
.header_serv{
  /* position: fixed; */
  width: 100%;
  /* z-index: 10; */
  background-color: #1D1D1D;
  background-repeat: no-repeat;
  background-size: cover;
}

/* end HEADER  - SERVICE*/


/* HEADER */
.header {
  background-color: #1D1D1D;
  background-image: url("../img/group-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 100vh; */
}
.header_line{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
  height: 39px;
}
.header_line__logo_toggle{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.logo_m{
  display: none;
}
.header__logo_agency{
  font-size: 12px;
  color: #fff;
}
.header_line__menu{
  display: flex;
  right: 173px;
  position: relative;
  align-items: flex-end;
  height: inherit;
}
.header_line__menu ul{
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.header_line__menu ul li{
  color: #fff;
  font-weight: 500;
}
.header_line__menu ul li:hover{
  border-bottom: 1px solid #fff;
  transition: all .3s ease;
}
.header_line__menu ul li a{
text-decoration: none;
color: inherit;
}
header a{
  text-decoration: none;
}
.header_line__feedback{
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.header_feedbak__phone {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  cursor: pointer;
}
.header_feedbak__phone .ic_cont {
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.header_feedbak__phone span {
  font-size: 18px;
  font-family: 'Montserrat';
  color: #fff;
}
.header_btn_feedback{
  width: 164px;
  height: 34px;
  position: relative;
}
.header_btn_feedback .bg {
  width: 78px;
  height: 100%;
  left: 0px;
  top: 0px;
  position: absolute;
  background: rgb(254 195 3 / 83%);
}
.header_btn_feedback .txt{
  width: 142px;
  height: 13.81px;
  left: 12px;
  top: 8px;
  position: absolute;
  color: #fff;
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 700;
  text-transform: lowercase;
  line-height: 16px;
}
.header_btn_feedback:hover .bg{
  width: 100%;
  transition: all .3s ease;
}
.header_btn_feedback:hover .txt{
  color: 1D1D1D;
  transition: all .3s ease;
}


/* Первый блок для главной */
.header_main{
  display: flex;
  flex-direction: row;
  min-height: calc(100vh - 90px);
}
.part_one{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  margin-top: 10px;
  /* width: 52%; */
  z-index: 1;
}
.part_one__descr_one{
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.part_one__descr_two{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 60%;
}
.part_one__full_cycle_txt{
  color: #FFF;
  font-family: P22UndergroundCYProBook;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.hashtag_wrapper{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 30px;
}
.hashtag_active{
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}
.hashtag_active::before{
  content: "";
  position: relative;
  display: inline-block;
  height: 12px;
  width: 12px;
  border: 2px solid #fec303;
  border-radius: 50%;
  /* bottom: 6px; */
  margin-right: 12px;
}
.hashtag_noactive{
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 22px;
  color: #B89A9A;
  cursor: pointer;
}
.hashtag_noactive::before{
  content: "";
  position: relative;
  display: inline-block;
  height: 12px;
  width: 12px;
  border: 2px solid #B89A9A;
  border-radius: 50%;
  /* bottom: 6px; */
  margin-right: 12px;
}

.part_one__featured_txt{
  color: #FFF;
  font-family: Montserrat;
  font-size: 75px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.part_two{
  display: flex;
  justify-content: end;
  align-items: center;
  position: absolute;
  right: 0;
  /* background-image: url("img/prog-head.png");
  background-repeat: no-repeat;
  background-size: cover; */
}
.part_two__img_prog{
  width: 64%;
  /* height: 100vh;*/
}
.white_chapter{
  color: #FFF;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.white_chapter::before {
  content: "";
  position: relative;
  display: inline-block;
  height: 2px;
  width: 54px;
  bottom: 6px;
  background: #fec303;
  margin-right: 16px;
}

.part_one__descr{
  color: #FFF;
  font-family: P22UndergroundCYProBook;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 134%;
}

/* end HEADER */


/* Кнопка всплывающего меню */
.btn-menu {
  width: 34px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  float: left;
  cursor: pointer;
  -webkit-transition: 0s;
  transition: 0s;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.btn-menu__row {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0s;
  transition: 0s;
}
.btn-menu__row:first-child:after {
  -webkit-transition-delay: .05s;
  transition-delay: .05s;
}

/* Всплывающее меню */
.popup_menu{
  position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #201f1e;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: opacity 0s ease-in-out,-webkit-transform 0s ease-in-out;
    transition: opacity 0s ease-in-out,-webkit-transform 0s ease-in-out;
    transition: transform 0s ease-in-out,opacity 0s ease-in-out;
    transition: transform 0s ease-in-out,opacity 0s ease-in-out,-webkit-transform 0s ease-in-out;
}
.popup_menu a{
  text-decoration: none;
  color: #fff;
}
.menu__wrapper {
  /* background-color: #201f1e; */
  width: 75%;
}
.menu__header {
  height: 113px;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu__header_area_btn_logo{
  display: flex;
  flex-direction: row;
  gap: 16px;
}

/* Кнопка закрыть меню */
.btn_menu_close__area{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.btn_menu_close {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  cursor: pointer;
  webkit-transition: top 0.4s ease;
  transition: top 0.4s ease;
}
.btn_menu_close_toggle {
  position: absolute;
  display: block;
  height:0px;
  width: 30px;
  background: transparent;
  webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn_menu_close:hover .btn_menu_close_toggle{
  height:2px;
}
.btn_menu_close span::before {
  top: 0;
  transform: rotate(45deg);
}
.btn_menu_close span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.btn_menu_close span::before, .btn_menu_close span::after {
  content: "";
  position: absolute;
  left: -8px;
  display: block;
  height: 3px;
  width: 43px;
  background: #fec303;
  webkit-transition: all .2s ease;
  transition: all .2s ease;
}
/* end Кнопка закрыть меню */

.menu__row_top {
  padding-top: 110px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.menu__row_bottom, .menu__row_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.menu__inner {
  max-width: 950px;
}
.menu__inner {
  max-width: 1062px;
  width: 100%;
}

.menu__phone span{ 
  font-size: 24px;
  font-weight: 600;
}
.menu__navigation ul{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.menu__navigation a{
  font-size: 20px;
  font-weight: 600;
}
.menu__services_title{
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}
.menu__services_list{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.menu__services_list a{
  line-height: 26px;
}

/* Контакты во всплывающем меню */
.menu__contacts_title{
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}
.menu__contacts_item{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu__contacts_city{
  color: #fff;
  font-weight: 600;
}
.menu__contacts_adress{
  color: #969191;
}
/* end Контакты во всплывающем меню */

/* Карточки во всплывающем меню  */
.menu__card{
  width: 25%;
}
.menu__btn_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 50vh;
  background-color: #ffea0b;
  /* font-family: MuseoSansCyrl-500,sans-serif; */
  font-size: 28px;
  color: #201f1e;
  position: relative;
}
.menu__btn_question:hover{
  height: 60vh;
  transition: 0.5s;
}
.menu__btn_question:not(:hover){
  height: 50vh;
  transition: 0.5s;
}
.menu__btn_question.active{
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}
.menu__btn_team {
  height: 50vh;
  background-color: #2a2a2a;
  font-size: 28px;
  line-height: 36px;
  font-family: MuseoSansCyrl-500,sans-serif;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  position: relative;
  cursor: pointer;
  top: 0;
  transition: top ease 0.5s;
}
.menu__btn_team:hover{
  height: 60vh;
  top: -10vh;
  transition: 0.5s;
}
.menu__btn_team:not(:hover){
  height: 50vh;
  transition: 0.5s;
}
/* end Карточки во всплывающем меню  */




/* === НАШИ РАБОТЫ === */

.works{
  background-color: #fff;
  background-image: url("../img/bg-works-sect.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 1690px;
}
.works a {
  text-decoration: none;
}
.works_container{
  position: relative;
  width: 1440px;
  margin: 0 auto;
}
.works_info{
  position: absolute;
  top: 218px;
  left: 0;
  width: 40%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.works_info__title{
  color: #1d1d1d;
  font-family: Montserrat;
  font-size:82px;
  font-weight: 800;
  line-height: 100%;
}
.works_info__part_descr{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.brown_chapter{
  color: #000;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.brown_chapter::before {
  content: "";
  position: relative;
  display: inline-block;
  height: 2px;
  width: 54px;
  bottom: 6px;
  background: #fec303;
  margin-right: 16px;
}
.works_info__txt{
  color: #000;
  font-family: P22UndergroundCYProBook;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 134%;
}


/* карточки работ */
.works_card_one{
  position: absolute;
  right: 0px;
  top: 128px;
  /* width: 856px; */
  /* border-radius: 10px; */
  overflow: hidden;
  cursor: pointer;
}

.works_card_one__wrapper_img{
  position: relative;
  padding: 30px 66px;
}
.works_card_one__wrapper_img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  height: 100%;
  width: 25%;
  background: #fec303;
  margin-right: 16px;
  z-index: 1;
  opacity: 0.6;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.works_card_one:hover .works_card_one__wrapper_img::before {
  width: 100%;
  /* position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  height: 100%;
  width: 100%;
  background: #fec303;
  margin-right: 16px;
  z-index: 1;
  opacity: 0.6;
  transition: 0.5s;
  border-radius: 10px; */
}

.works_card__img_head{
  position: relative;
  height: 600px;
  width: 856px;
  border-radius: 10px;
  /* width: inherit; */
  /* padding: 30px 66px; */
}

.works_card_info{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
  margin-left: 74px;
  top: -12px;
}
.works_card_info__title{
  color: #000;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  line-height: 112%;
}
.works_card_info__cats{
  color: #625252;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 500;
  line-height: 112%;
}

.works_card_bottom{
  position: absolute;
  /* left: -20px; */
  top: 880px;
  /* width: 1600px; */
  width: 100%;
}

.works_card_two{
  position: absolute;
  width: 60%;
  left: -20px;
  border-radius: 10px;
  overflow: hidden;
  /* padding: 30px 30px; */
  cursor: pointer;
}
.works_card_two__wrapper_img{
  position: relative;
  padding: 30px 30px;
}
.works_card_two__wrapper_img::before {
  content: "";
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
  display: inline-block;
  height: 20%;
  width: 15%;
  background: #fec303;
  z-index: 1;
  opacity: 0.6;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.works_card_two:hover .works_card_two__wrapper_img::before {
  content: "";
  top: 0;
  left: 0;
  transform: translateY(0%);
  position: absolute;
  display: inline-block;
  height: 100%;
  width: 100%;
  background: #fec303;
  z-index: 1;
  opacity: 0.6;
  /* transition: 0.5s; */
}

.works_card_two__img{
  position: relative;
  /* padding: 30px 30px; */
  /* margin: 30px 30px; */
  height: 460;
  /* width: 890px; */
  width: -webkit-fill-available;
  border-radius: 10px;
}


.works_card_three{
  position: absolute;
  width: 35%;
  right: 30px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.works_card_three__wrapper_img{
  position: relative;
  padding: 30px 30px;
}
.works_card_three__wrapper_img::before {
  content: "";
  top: 45%;
  right: 0;
  transform: translateY(-50%);
  position: absolute;
  display: inline-block;
  height: 20%;
  width: 25%;
  background: #fec303;
  z-index: 1;
  opacity: 0.6;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.works_card_three:hover .works_card_three__wrapper_img::before {
  content: "";
  top: 0;
  right: 0;
  transform: translateY(0%);
  position: absolute;
  display: inline-block;
  height: 100%;
  width: 100%;
  background: #fec303;
  z-index: 1;
  opacity: 0.6;
  /* transition: 0.5s; */
}

.works_card_three__img{
  position: relative;
  /* padding: 30px 66px; */
  /* margin: 30px 66px; */
  /* width: 500px; */
  width: -webkit-fill-available;
  height: 600px;
  border-radius: 10px;
}

/* end карточки работ */
/* === end НАШИ РАБОТЫ  === */



/* === УСЛУГИ === */
.services_unit{
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.services_unit_wrapper{
  border-radius: 50px 0px 0px 50px;
  background: #2B2A32;
}
.services_unit_wrapper::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(80vw + 546px);
  background: #2B2A32;
  border-radius: 50px 0px 0px 50px;
}
.services_unit::before {
  content: url("../img/bg-services.svg");
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: 1;
}


.su_info{
  position: relative;
  padding: 100px;
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.su_wrapper__title {
  color: #fff;
  font-family: Montserrat;
  font-size: 82px;
  font-weight: 800;
  line-height: 100%;
}


/* Cards services */
.su_info__cards_area{
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.su_card{
  position: relative;
  border-radius: 10px;
  border: 2px solid #fff;
  padding: 29px 12px 20px 12px;
  width: 412px;
}
.su_card .title {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 112%;
}

.su_card .icon {
  width: 72px;
  height: 40px;
  position: absolute;
  top: -21px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2b2a32;
}
.su_card .icon path {
  fill: #fff;
  stroke: #fff;
}
.su_card:hover{
  border: 2px solid #FEC303;
  transition: all .3s ease;
}
.su_card:hover .icon path {
  fill: #FEC303;
  stroke: #FEC303;
  transition: all .3s ease;
}

.su_card .icon_arrow {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 3;
  right: 3;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.su_card:hover .icon_arrow {
  visibility: visible;
  opacity: 1;
  /* transition: all 10s ease; */
}

.su_card__info{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.su_card__info .skills{
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.su_card__info .skills .descr{
  color: #9F9191;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 112%;
}
.su_card__info .skills .descr::before {
  content: "";
  position: relative;
  display: inline-block;
  height: 3px;
  width: 3px;
  /* border: 2px solid #fec303; */
  border-radius: 50%;
  margin-right: 4px;
  bottom: 3px;
  background-color: #9F9191;
}
.su_info .content{
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.su_info .content .descr{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.su_info .content .descr .txt{
  color: #fff;
font-family: P22UndergroundCYProBook;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 120%;
}
/* === end УСЛУГИ === */



/* === FEEDBACK === */
.feedback_unit{
  position: relative;
  background-color: #fff;
}
.feedback_unit_wrapper{
  padding: 100px;
}

/* === end FEEDBACK === */



/* === FOOTER === */
.footer{
  background: var(--dark-brown, #1D1D1D);
  padding: 100px 0;

}
.footer a{
  text-decoration: none;
  color: inherit;
}

.footer_wrapper_inf{
  /* top: 73px; */
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 54px;
  display: flex;
}
.footer_logo{
  width: 176px;
  height: 93px;
}
.footer_content{
  padding: 60 16px;
  margin-top: 16px;
  padding-bottom: 60px;
  border-top: 0.5px #9F9191 solid;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  width: 1162px;
}
.footer_list{
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  display: inline-flex;
}
.footer_list__title{
  width: 115px;
  color: white;
  font-size: 20px;
  font-family: Montserrat;
  font-weight: 700;
  line-height: 22px;
}
.footer_list__item{
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  display: flex;
}
.footer_list__item span {
  color: #9F9191;
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 18px;
}
.footer_list__item span:hover {
  color: #ffff;
  cursor: pointer;
  transition: 0.3s;
}

.footer_feedbak{
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
  display: flex;
}
.footer_feedbak__mail_phone{
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}
.footer_feedbak__mail_phone .ic_cont{
  width: 16px;
  height: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.footer_feedbak__mail_phone:hover .ic_cont path{
  fill: #fff;
  /* stroke: #fff; */
  transition: 0.3s;
}
.footer_feedbak__mail_phone:hover span{
  color: #fff;
  transition: 0.3ms;
}
.footer_list__item_social{
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  display: flex;
}
.footer_social{
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  display: inline-flex;
}
.footer_social__cont{
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.footer_social a:hover path{
  fill: #fff;
  transition: all .3s ease;
}
.footer_btn_feedback{
  width: 164px;
  height: 28px;
  position: relative;
}
.footer_btn_feedback__bg{
  width: 78px;
  height: 100%;
  left: 0px;
  top: 0px;
  position: absolute;
  background: rgb(254 195 3 / 83%);
}
.footer_btn_feedback__txt{
  width: 142px;
  height: 13.81px;
  left: 12px;
  top: 6px;
  position: absolute;
  color: #fff;
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 700;
  text-transform: lowercase;
  line-height: 16px;
}
.footer_btn_feedback:hover .footer_btn_feedback__bg{
  width: 100%;
  transition: all .3s ease;
}
.footer_btn_feedback:hover .footer_btn_feedback__txt{
  color: 1D1D1D;
  transition: all .3s ease;
}


/* === end FOOTER === */



@media screen and (max-width: 768px){

.container{
  padding: 0 16px;
  /* min-width: 320px;
  max-width: 768; */
}

/* HEADER */
.logo_d{
  display: none;
}
.logo_m{
  display: flex;
}
.header__logo_agency{
  display: none;
}
.header_line__menu {
  display: none;
}
.header_line__feedback {
  display: none;
}
/* end HEADER */

/* FOOTER */
.footer_wrapper_inf {
  gap: 48px;
  flex-direction: column;
}
.footer_content {
  padding: 48 8px;
  margin-top: 0px;
  width: 100%;
  flex-direction: column;
  gap: 32px;
}
.footer_list__item span {
  line-height: 22px;

/* === end FOOTER === */
}
}