
/* @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;
}

body{
  height: 100%;
  margin: 0;
  padding: 0;
	background-color: #fff;
	/* background-color:#716969; */
  font-family: 'Montserrat', sans-serif;
	font-style: normal;
  font-weight: 400;
}
h1{
	padding:0;
	margin:0;
}
h2{
	padding:0;
	margin:0;
}
p {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    margin: 1rem 0;
}
ul {
    list-style: disc;
    padding: 0;
    margin: 0;
} 
ol {
    padding: 0;
    margin: 0;
}
li{
  list-style-position: inside;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
}
a {
    text-decoration: none;
    color: inherit;
}
.link {
    color: blue;
    text-decoration: underline;
}
button {
    all: unset;
    cursor: pointer;
}
/* ОБЩИЕ СТИЛИ */
.pos-rel{
	position: relative;
}
.h2-style{
	font-size: 54px;
    font-weight: 800;
}
.bg_wh{
	background-color: var(--white);
}
.bg-g {
	background-color: #EFF3FE;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
 
main {
  flex: 1;
}

/* Дополнительные стили. Меняете на свои */
footer {
  background-color: #a8bebe;
}
.container{
  width: 100%;
  padding: 0 64px;
  margin: 0 auto;
}

/* Кнопка скачать приложение -Главная */
.btn-save-head{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background-color: #FEC303;
	border-radius: 200px;
	height: 70px;
	padding: 0 26px 0 26px;
	/* padding: 20px; */
	cursor: pointer;
	z-index: 1;
}
.btn-save-head:hover{
	transform: scale(1.02);
	transition: 0.1s ease;
}
.btn-save-head:active{
	transform: scale(0.99);
}
.btn-save-head-txt{
	font-size: 18px;
    font-weight: 600;
    /* line-height: 30px; */
}
.btn-click-icon{
	width: 40px;
	height: 40px;
}
/* end Кнопка скачать приложение -Главная */
/* Кнопка скачать приложение -Главная */
.btn-save-head-v2{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 4px;
	background-color: #FEC303;
	border-radius: 200px;
	height: 46px;
	padding: 0 18px 0 18px;
	/* padding: 20px; */
	cursor: pointer;
	z-index: 1;
}
.btn-save-head-v2:hover{
	transform: scale(1.02);
	transition: 0.1s ease;
}
.btn-save-head-v2:active{
	transform: scale(0.99);
}
.btn-save-head-v2 span{
	font-size: 14px;
    font-weight: 600;
    /* line-height: 30px; */
}
.btn-save-head-v2 img{
	width: 28px;
	height: 28px;
}
/* end Кнопка скачать приложение -Главная */

/* Стили общих элементов */
.box-content{
	max-width: 1280px;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.p-lr {
	padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.p-tb {
	padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.p-tb-five {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Спиннер */
.loader-wrapper {
  background: #00000070;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}
.loader-box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: #FEC303;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
/* end Спиннер */
/* Сообщение формы */
.response-wrapper {
  background: #00000070;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}
.flex-center{
  justify-content: center;
  align-items: center;
}
.response-box{
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%); */
}
.response-modal{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  background-color: #373232;
  border: 4px solid #FEC303;
  border-radius: 20px;
  min-height: 300px;
  padding: 24px;
  margin: 24px;
}
.response-img{
  width: 130px;
  height: 130px;
}
.rm-txt{
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
/* end Сообщение формы */


/* HEADER */
.header {
  background-color: #1D1D1D;
  background-image: url("img/head-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  min-height: 400px;
}
.bg-blur{
	background-color: #00000017;
}
.bg-brown{
	background-color: #373232;
}
.head-menu-wrapper{
	position: fixed;
  /* position: absolute; */
	left: 0;
	right: 0;
	z-index: 2;
	/* background-color: #00000017; */
  background-color: #373232;
	transition: background-color 0.5s ease;
}
.head-menu-wrapper.brown {
	background-color: #373232;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.17);
}
.head-menu-wrapper-v2 {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: #373232;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.17);
}
.header-v2, .head-menu-content{
	height: 80px;
}
.head-menu-content{
	/* height: 80px; */
    display: flex;
    align-items: center;
}
.header_line{
	flex: 1;
	display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  align-self: stretch;
}
.header__logo{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: 66px;
}
.header__logo img{
  width: inherit;
  height: inherit;
  object-fit: contain;
}
.header__logo_desc {
    font-size: 12px;
    color: #fff;
}
.header_line__menu ul {
    display: flex;
    flex-direction: row;
    gap: 16px;
    list-style: none;
}
.header_line__menu ul li {
	position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
.active-menu-item {
    color: #fec303; /* Здесь может быть ваш цвет для активного пункта */
}
.header_line__menu ul li::before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 0; /* Изначально нулевая ширина */
    bottom: -3px;
    background-color: #fec303;
    margin-right: 16px;
    transition: width 0.3s ease; /* Анимация изменения ширины */
}

.header_line__menu ul li:hover::before {
    width: 100%; /* Устанавливаем ширину при наведении */
}
.current-menu-item a{
	/* content: ""; */
    /* position: absolute; */
    /* display: inline-block; */
    /* height: 2px; */
    /* width: 100%;  */
    /* bottom: -3px; */
    /* background-color: #fec303; */
    /* margin-right: 16px; */
	color: #fec303;
}

/* Кнопка всплывающего меню */
.btn-menu {
  width: 34px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -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;
}
/* end Кнопка всплывающего меню */

/* end HEADER */

/* Заголовок, как подзаголовок */
.sub-title-v1{
	display: flex;
	flex-direction: row;
	gap: 16px;
	align-items: center;
}

.sub-title-v1 span::before {
    content: "";
    position: relative;
    display: inline-block;
    height: 2px;
    width: 52px;
    bottom: 6px;
    background: #fec303;
    margin-right: 16px;
}
.sub-title-v1 span{
	font-size: 26px;
    font-weight: 500;
    color: #9F9191;
}


/* Блок - Присоединяйтесь */
.join-inner{
	display: flex;
	flex-direction: column;
	gap: 65px;
}




/* === FOOTER === */
.footer{
	background: #393337;
  /* 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: 60px 16px;
  margin-top: 16px;
  padding-bottom: 60px;
  border-top: 0.5px #9F9191 solid;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  width: 100%;
  align-self: stretch;
}
.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 a:hover {
  /* color: #ffff; */
  color: #fec303;
  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 a{
  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: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.footer_social__cont svg{
  width: inherit;
  height: inherit;
}
.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;
}
.dc-box{
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  width: 100%;
}
/* === end FOOTER === */


/* ===  === */
/* === СТРАНИЦА - ФРАНШИЗА === */
.h2-fr-b {
  color: #000;
  font-size: 54px;
  font-weight: 800;
}
.h2-fr-w {
  color: #fff;
  font-size: 54px;
  font-weight: 800;
}
.mt-20{
  margin-top: 20px;
}
/* Кнопка черная - Запустить */
.btn-black{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 8px;
  background-color: #000000;
  border-radius: 200px;
  height: 46px;
  padding: 0 18px 0 18px;
  cursor: pointer;
  box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.25);
}
.btn-black:hover{
	transform: scale(1.02);
	transition: 0.1s ease;
}
.btn-black:active{
	transform: scale(0.99);
}
.btn-black span{
  color: #fff;
	font-size: 14px;
  font-weight: 600;
    /* line-height: 30px; */
}
.btn-black img{
	width: 28px;
	height: 28px;
}
/* end Кнопка черная - Запустить */

.header-start {
  background-color: #1D1D1D;
  background-image: url("img/franchise/head-start-m.webp");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  min-height: 600px;
}
.box-content-first {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
  height: 100vh;
  min-height: 600px;
}
.head-slogan-first{
  display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
}
.head-slogan-first .title{
  color: #fff;
  font-size: 64px;
  font-weight: 800;
}
.head-slogan-first .desc-box {
  padding: 10px 20px;
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;

  /* background: #fec303cc; */
  background-image: url(img/franchise/pen-brush.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}
.head-slogan-first .desc{
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}
.head-slogan-first .scoot {
  color: #ffe386;
  /* color: #e5df4c; */
}
.head-img-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.head-img-box img{
  max-width: 380px;
  width: 100vh;
}

/* Преимущества на первом экране */
.adv-first{
  position: relative;
  background-color: #D9E5EB;
  height: 360px;
}
.af-wrapper {
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
}
.af-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background:linear-gradient(180deg, #38393b 0%, #46596a 46.5%, #38393b 100%);
  /* background: linear-gradient(136deg, #373232 0%, #393337 40.67%, #373232 79.27%, #2b3038 100%); */
  border-radius: 50px;
  padding: 56px;
  overflow: hidden;
}

.bg-yell{
  background-color: #E5DF4C;
}
.bg-wbl{
  background-color: #DDE3E8;
}
.af-container .item{
  /* height: 146px; */
  border-radius: 30px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* align-items: center; */
  gap: 16px;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.af-container .item .icon{
  width: 80px;
  height: 80px;
}

.af-container .item .txt-box{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.af-container .item .txt-box .name{
  font-size: 24px;
  font-weight: 500;
}
.af-container .item .txt-box .val{
  font-size: 28px;
  font-weight: 700;
}
.circle-red-decor {
  position: absolute;
  top: 13px;
  left: 330px;
  width: 141px;
}
.circle-or-decor {
  position: absolute;
  bottom: -41px;
  left: -36px;
  width: 175px;
}
.circle-green-decor {
  position: absolute;
  bottom: 33px;
  right: 39px;
  width: 160px;
}
/* Блок - Приветствия */
.box-hello .info{
  /* display: flex; */
  /* flex: 1; */
  align-self: stretch;
  align-items: center;
  padding: 32px;
  background-color: #EFF3FE;
  border-radius: 45px;
  font-size: 18px;
}
/* Блок - Предложение для новых партнеров */
.np-box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.np-box-card{
  display: flex;
  flex-direction: column;
  gap: 2rem;  
}
.np-box-card .item{
  height: 146px;
  border-radius: 30px;
  background-color: #DDE3E8;
  /* background-color: #f7eeee; */
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px;
  position: relative;
}
.np-box-card .item .title{
  font-size: 28px;
  font-weight: 700;
}
.np-box-card .item .desc{
    position: absolute;
    bottom: 12px;
    right: 22px;
    font-size: 16px;
}
.np-box-img{
  position: relative;
  display: flex;
  justify-content: center;
}
.np-box-img img{
  width: 400px;
  position: absolute;
  top: -105px;
}

/* Блок - Мобильное приложение */
.a-s_center{
  align-self: center;
}
.mob-app{
  background-color: #373232;
}
.ma-img-bg-box{
  display: flex;
  justify-content: center;
}
.ma-img-bg-box img{
  width: 70%;
}


/* Блок ERP */
.grid-erp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
.grid-erp .item {
  grid-column: span 1;
  grid-row: span 1;
  background-color: #fff;
  border-radius: 40px;
  overflow: hidden;
}
.grid-erp .item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.grid-erp .img-board-box img{
  width: 100%;
  height: 100%;
}
.grid-erp .three-el {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 24px;
}
.grid-erp .item .icon-box img{
  width: 40px;
  height: 40px;
}
.h3-in-b{
  color: #000;
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}


/* Блок 2 франшизы */
.two-grid-center{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.two-grid-center .item {
  display: inline;
  /* display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center; */
}
.fr-brand-icon{
  width: 140px;
}
.fr-brand-my-icon{
  width: 114px;
}
.two-grid-center .item .card-info {
  /* height: 460px; */
  /* width: 600px; */
  background-color: #EFF3FE;
  border-radius: 60px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.two-grid-center .item .card-info .number-box {
  background-color: #FEC303;
  border-radius: 50%;
  /* width: 60px; */
  /* height: 60px; */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.two-grid-center .item .card-info .number-box span {
  /* font-size: 32px; */
  font-size: 24px;
  font-weight: 600;
}
.two-grid-center .item .card-info .txt-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.two-grid-center .item .card-info .txt-box .title {
  line-height: 30px;
  color: #000;
  font-size: 28px;
  font-weight: 700;
}
.two-grid-center .item .card-info .txt-box .desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}
.two-grid-center .item .card-info .txt-box ul{
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}
.btn-box{
  display: flex;
}
.two-grid-center .item .btn-box{
  display: flex;
  align-self: self-start;
}
.adv-fr{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.adv-fr li{
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.adv-fr li::before{
  content: '';
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-image: url("img/franchise/ok.svg");
  background-repeat: no-repeat;
  background-size: contain;
}



/* Блок - Города */
.list-cities{
  /* background-color: #373232; */
  background: linear-gradient(180deg, #38393b 23.5%, #6a5146 55.5%, #38393b 72.38%);;
}
.list-cities ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 равные колонки */
  grid-gap: 10px; /* Расстояние между элементами */
}
.list-cities-box ul li{
  color: #FEC303;
  font-size: 24px;
  font-weight: 500;
  list-style: disc;
  list-style-position: inside;
  padding: 12px 0;
}
.lc-img-box{
  position: absolute;
  z-index: 0;
  top: 20%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
.lc-img-box img {
  /* width: 38%; */
}
.z-i-1{
  z-index: 1;
}


/* Блок - Чтиво */

.notes-box-item{
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background-color: #EFF3FE;
  border-radius: 40px;
  transition: max-height 0.3s ease;
}
.nbi-title{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.nbi-title-icon{
  min-width: 38px;
  min-height: 38px;
  display: block;
  border-radius: 100%;
  position: relative;
  -webkit-transition: 0.25s all ease;
  -o-transition: 0.25s all ease;
  transition: 0.25s all ease;
  background: #373232;
  /* background: linear-gradient(180deg, #1a1535 0%, #140f4f 100%), #7229ff; */
}

.nbi-title-icon::after, .nbi-title-icon::before {
  width: 17px;
  height: 2px;
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 50%;
  margin-top: -1px;
  border-radius: 2px;
  -webkit-transition: 0.25s all ease;
  -o-transition: 0.25s all ease;
  transition: 0.25s all ease;
}
.nbi-title-icon::before {
  -webkit-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(0deg);
}
.rotate-icon::before {
  transform: translateX(-50%) rotate(90deg); 
}

.nbi-text-box{
  /* max-height: 500px; */
  overflow: hidden;
  display: block;
  transition: max-height 0.3s ease;
}


/* Блок - Форма связи */
.hello{
  background-color: #373232;
}
.hello-form-box{
  display: flex;
  flex-direction: column;
  gap:32px;
}
.hf-desc{
  color: #fff;
  font-size: 20px;
}
.two-grid-hello {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10%;
}
.hf-inner{
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-self: stretch;
}
.hf-btn{
  height: 60px!important;
  border-radius: 0!important;
}
.hf-inner input{
  background-color: transparent;
    border: none;
    /* border-bottom: 1px solid #fff; */
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #fff;
    height: 56px;
    /* border-radius: 40px; */
    padding: 10px;
    outline: 0 ;
}
.hf-inner input::placeholder{
  color: rgb(158, 152, 152);
}
.hf-inner input:focus .hf-inner input{
  border: 2px solid rgb(200, 255, 0);
  border-radius: 0px;
}
/* input:-internal-autofill-selected {
  appearance: menulist-button;
  background-image: none !important;
  background-color: transparent;
  color: fieldtext !important;
} */
.hello-contacts-box{
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-self: stretch;
}
.hf-btn-tg{
  height: 60px!important;
  border-radius: 0!important;
  background-color: #2AABEE;
}
.hf-btn-wa{
  height: 60px!important;
  border-radius: 0!important;
  background-color: #7bc467;
}
.hf-btn-wa .btn-save-head-txt, .hf-btn-tg .btn-save-head-txt{
  color: #fff;
}
.hr-mail{
  color: #fec303;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}


/* Слайдер */
.app-slider {
  display: none;
}
.app-slider .item {
    /* background: #ff3f4d; */
    /* display: flex;
    justify-content: center; */
}
.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-slider img{
  width: 220px!important;
    opacity: 0.4!important;
    /* transition: .4s ease all; */

}
.app-slider .center img{
  width: 250px!important;
  opacity: 1!important;
  
}

/* ===  === */
/* === МОБИЛЬНОЕ МЕНЮ === */

.popup_menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    z-index: 4;
    /* 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;
}
.menu__wrapper{
  display: flex;
  flex-direction: column;
}
.menu__head{
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: flex-end;
}
.m-menu-content{
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.header_mob__menu{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Кнопка закрыть меню */
.btn_menu_close__area{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.btn_menu_close {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  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;
}
.header_mob__menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.header_mob__menu ul li {
    position: relative;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    list-style: none;
}
.m-menu-soc-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.m-menu-soc-box .title{
    color: white;
    font-size: 20px;
    font-family: Montserrat;
    font-weight: 700;
    line-height: 22px;
    border-bottom: 1px solid #fec303;
}
.soc-mmenu-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
}
.mmenu-hf-btn {
    height: auto;
    /* padding: 10px; */
    border-radius: 200px;
    height: 46px;
}
.mmenu-hf-btn img {
    width: 28px;
    height: 28px;
}
.mmenu-hf-btn span{
    font-size: 14px;
    font-weight: 600;
    color: white;
}
.btn-click-icon {
    width: 40px;
    height: 40px;
}
.bg-tg{
  background-color: #2AABEE;
}
.bg-wa{
  background-color: #7bc467;
}
.mmenu-soc-mail {
    color: #fec303;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
/* end Кнопка закрыть меню */

/* === end МОБИЛЬНОЕ МЕНЮ === */
/* ===  === */



/* === Медиа запросы === */
@media screen and (max-width: 1280px){
  .adv-first {
    position: relative;
    top: -60px;
    background-color: transparent;
    height: inherit;
  }
  .af-wrapper {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 1200px){
  /* Первый экран */
  .head-img-box img {
    max-width: 300px;
  }
  .head-slogan-first .title {
    font-size: 56px;
}
  /* ERP */
  .grid-erp .item:first-child {
    grid-column: span 3;
    grid-row: span 1;
  }
}

@media screen and (max-width: 960px){
  .af-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .af-container .item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  /* Первый экран */
  .head-img-box img {
    display: none;
  }

  /* Лови момент */
  .np-box-img img {
    width: 100%;
    position: absolute;
    top: -105px;
  }
  /* ERP */
  .grid-erp {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-erp .item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media screen and (max-width: 768px){
  p, li {
    font-size: 18px;
  }
  /* Первый экран */
  .box-content-first {
    grid-template-columns: repeat(1, 1fr);
  }
  .head-img-box {
    display: none;
  }

  /* Hello */
  .two-grid-hello {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* gap: 180px; */
    gap: 10%;
  }

  /* Лови момент */
  .np-box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .np-box-img img {
    width: 320px;
    position: relative;
    top: 0;
  }
  /* Слайдер */
  .app-slider {
    display: block;
  }
  .ma-img-bg-box {
    display: none;
  }
  .dc-box {
    flex-direction: column;
    gap: 24px;
  }
}


@media screen and (max-width: 600px){
  .h2-fr-w, .h2-fr-b {
    font-size: 34px;
  }
  .header-start {
  background-image: url("img/franchise/head-start-600.webp");
  background-size: cover;
  min-height: 600px;
  }
  /* Первый экран */
  .head-slogan-first .title {
    /* width: 290px; */
    font-size: 34px;
    /* word-break: break-all; */
    text-align: left;
     /* word-wrap: break-word;
    overflow-wrap: break-word;  */
  /* -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; */
  }
  .head-slogan-first .scoot{
    font-size: 32px;
  }
  .head-slogan-first .desc {
    font-size: 24px;
  }
  .af-container {
    grid-template-columns: repeat(1, 1fr);
    padding: 32px;
    border-radius: 32px;
  }
  .af-container .item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
  /* Блок - Приветствие */
  .box-hello .info {
    padding: 24px 16px;
    border-radius: 30px;
    font-size: 18px;
  }
  /* Города */
  .list-cities ul {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 6px;
  }
  .list-cities-box ul li {
    font-size: 20px;
    padding: 6px 0;
}

  /* ERP */
  .grid-erp {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
  }
  .grid-erp .item{
    border-radius: 30px;
  }
  .grid-erp .item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
  .h3-in-b {
    font-size: 22px;
  }
  .grid-erp .item .desc{
    font-size: 18px;
  }

  /* Франшиза */
  .two-grid-center {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .two-grid-center .item .card-info {
    border-radius: 40px;
  }
   .two-grid-center .item .card-info .txt-box ul {
    font-size: 18px;
  }
  /* Города */
  .lc-img-box {
    overflow: hidden;
  }
  /* Чтиво */
  .notes-box-item {
    /* gap: 24px; */
    padding: 16px;
    border-radius: 30px;
}

}
@media screen and (max-width: 360px){
  .header-start {
  background-image: url("img/franchise/head-start-400.webp");
  background-size: cover;
  min-height: 200px;
  }
  .head-slogan-first .scoot{
    font-size: 30px;
  }
  .head-slogan-first .desc-box {
    background-size: contain;
    background-position: center;
  }
  .np-box-img img {
    width: 280px;
  }
}

/* === end СТРАНИЦА - ФРАНШИЗА === */
/* ===  === */








@media screen and (max-width: 960px){
	
.header_line__menu{
	display: none;
}
.btn-menu{
	display: flex;
}
.btn-in-menu-dsk{
  display: none;
}
/* Блог */
.blog-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

}
@media screen and (max-width: 768px){
.container{
  padding: 0 16px;
  /* min-width: 320px;
  max-width: 768; */
}
/* Моб меню и бургер */
.btn-menu {
  width: 29px;
  height: 21px;
}
.btn_menu_close {
  height: 31px;
  width: 7px;
}
.btn_menu_close span::before, .btn_menu_close span::after {
  width: 32px;
}
/* HEADER */
.header-v2, .head-menu-content{
	height: 60px;
}
.header__logo {
  height: 46px;
}
.header__logo_agency{
  display: none;
}
.header_line__menu {
  display: none;
}

/* end HEADER */


/* Блок присоединяйся */
.card-adv {
	grid-template-columns: repeat(1, 1fr);
}
/* end Блок присоединяйся */


/* FOOTER */
.footer_wrapper_inf {
  gap: 48px;
  flex-direction: column;
}
.footer_content {
  padding: 48px 8px;
  margin-top: 0px;
  width: 100%;
  flex-direction: column;
  gap: 32px;
}
.footer_list__item span {
  line-height: 22px;

/* === end FOOTER === */
}
}

@media screen and (max-width: 600px){
/* Общие настройки */
.p-lr {
  padding-left: 1rem;
  padding-right: 1rem;
}


/* Блок-будем знакомы */
.box-hello-info {
  flex-direction: column;
  gap: 32px;
}
.box-hello-info .img-box .img {
  width: 100%;
}
/* Index - Первый экран */
.head-slogan-box .title {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
}

/* Блок-Как это работает */
.slider .item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.slider .item .box-screen {
  display: flex;
  height: auto;
}
.slider .item .box-screen img{
width: 100%;
}
.slider .item .card-info {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 32px;
position: relative;
}
.slider .item .box-screen{
display: none;
}
.slider .item .box-screen-mob{
display: flex;
  height: auto;
justify-content: center;
}

.slider .item .box-screen-mob img{
width: 90%;
}

.slider .item .card-info .decor {
  display: none;
}
.slider .item .card-info .backing{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 50%;
  border-radius: 28px;
  background-color: #EFF3FE;

}
/* Блок - Offer save */
.offer-save-app {
  text-align: center;
}
/* Блок забота */
.grid-care {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 2rem;
}

  /* Блог  */
.blog-card-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}
}



