/* МОБІЛЬНЕ МЕНЮ */
/* Main menu positionning */
.main-nav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    background: #343434;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: all .375s;
}

.main-nav.is-open {
    opacity: 1;
    z-index: 100;
    visibility: visible;
}

/* Yellow band effect */
.main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -15px;
    background: #50735F;
    transform-origin: 0 0;
	transform: skew(-14deg) translateX(-120%);
    transition: all .275s .1s;
}

.main-nav.is-open::before {
    transform: skew(-14deg) translateX(0);
}

/* Skewing effect on menu links */
.main-nav ul {
    display: inline-flex;
    flex-direction: column;
    height: 93%; /* Should be 100%, but we have a notice message :D */
    align-items: flex-end;
    justify-content: center;
    transform: translateX(-18%) skew(-16deg);
}

.main-nav li {
    display: block;
    margin: .5rem 0;
    text-align: right;
    transform: skew(16deg);
}

/* Apparition effect on links */
.main-nav a {
    opacity: 0;
    transform: translateY(-10px);
}

.main-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
}
.main-nav li:nth-child(1) a {
	transition: all 275ms 175ms
}
.main-nav li:nth-child(2) a {
	transition: all 275ms 225ms
}
.main-nav li:nth-child(3) a {
	transition: all 275ms 275ms
}
.main-nav li:nth-child(4) a {
	transition: all 275ms 325ms
}
.main-nav li:nth-child(5) a {
	transition: all 275ms 375ms
}


/* Decoration */
.main-nav ul,
.main-nav li {
	list-style: none;
	padding: 0;
}
.main-nav a {
    display: block;
    padding: 12px 0;
    color: #fffeff;
    font-size: 1.4em;
    text-decoration: none;
    font-weight: bold;
}

/* Burger Style: @see: https://codepen.io/CreativeJuiz/full/oMZNXy */
.open-main-nav {
	position: absolute;
	top: 75px;
	padding-top: 20px;
	right: 15px;
	z-index: 1000;
	background: none;
	border: 0;
	cursor: pointer;
}
.open-main-nav:focus {
	outline: none;
}
.burger {
    position: relative;
    display: block;
    width: 28px;
    height: 4px;
    margin: 0 auto;
    background: #ffffff;
    transform: skew(5deg);
    transition: all .275s;
}

.burger:after,
.burger:before {
	content: '';
    display: block;
    height: 100%;
    background: #ffffff;
    transition: all .275s;
}

.burger:after {
	transform: translateY(-12px) translateX(-2px) skew(-20deg);
}

.burger:before {
	transform: translateY(-16px) skew(-10deg);
}

/* Toggle State part */
.is-open .burger {
	transform: skew(5deg) translateY(-8px) rotate(-45deg);
}

.is-open .burger:before {
	transform: translateY(0px) skew(-10deg) rotate(75deg);
}

.is-open .burger:after {
	transform: translateY(-12px) translateX(10px) skew(-20deg);
    opacity: 0;
}

/* MENU Text part */

.burger-text {
    display: block;
    font-size: .675rem;
    letter-spacing: .05em;
    margin-top: .5em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
}


/* Slow motion button */
[id="slowmo"] {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 10px;
	border: 0;
	font-size: 1rem;
	background: #FEDC2A;
	color: #5A3B5D;
	font-weight: bold;
	cursor: pointer;
	transition: all .275s;
}

[id="slowmo"] span {
	display: block;
	font-weight: normal;
}

[id="slowmo"]:hover,
[id="slowmo"]:focus {
	background: #5A3B5D;
	color: #FEDC2A;
}

[id="slowmo"].is-slowmo span:after {
	content: 'Activated';
	display: block;
	font-weight: bold;
}

/* When slowmotion is activated */

.is-slowmo + .device .open-main-nav .burger,
.is-slowmo + .device .open-main-nav .burger:before,
.is-slowmo + .device .open-main-nav .burger:after,
.is-slowmo + .device .main-nav,
.is-slowmo + .device .main-nav::before,
.is-slowmo + .device .main-nav a {
	transition-duration: 3s;
}
.is-slowmo + .device .main-nav li:nth-child(1) a {
	transition-delay: 1750ms
}
.is-slowmo + .device .main-nav li:nth-child(2) a {
	transition-delay: 2250ms
}
.is-slowmo + .device .main-nav li:nth-child(3) a {
	transition-delay: 2750ms
}
.is-slowmo + .device .main-nav li:nth-child(4) a {
	transition-delay: 3250ms
}
.is-slowmo + .device .main-nav li:nth-child(5) a {
	transition-delay: 3750ms
}

/* Notice */
.notice {
	position: absolute;
	bottom: -15px;
	left: 0; right: 0;
	padding: 20px;
	background: #F2F2F2;
	color: #5A3B5D;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	z-index: 100;
	text-align: center;
}
.notice strong {
	font-weight: 700;
}
.notice a {
	padding: 2px 3px;
	background: #FEDC2A;
	text-decoration: none;
}




/* СКРОЛ ВСЮДИ */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #f5f5f5; 
  border-radius: 0;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #50735f; 
  border-radius: 0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #50735f; 
}

/* СКРОЛ БЛОКУ MATCH */
/* width */
#match ::-webkit-scrollbar {
  width: 6px;
  height: 5px;
}

/* Track */
#match ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 0;
}
 
/* Handle */
#match ::-webkit-scrollbar-thumb {
  background: #50735f;
  border-radius: 0;
}

/* Handle on hover */
#match ::-webkit-scrollbar-thumb:hover {
  background: black; 
}


/* ======================================= Шрифты ================================================= */
/* @font-face {
      font-family:"Epilogue-Bold";
      src: url("../fonts/Epilogue-Bold.ttf");
}*/
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Bold.eot');
    src: local('Oswald Bold'), local('Oswald-Bold'),
        url('../fonts/Oswald-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Oswald-Bold.woff') format('woff'),
        url('../fonts/Oswald-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Regular.eot');
    src: local('Oswald Regular'), local('Oswald-Regular'),
        url('../fonts/Oswald-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Oswald-Regular.woff') format('woff'),
        url('../fonts/Oswald-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
	font-family: 'Northwell';
    src: url('../fonts/Bachelorette.otf');
    src: local('Bachelorette'), local('Bachelorette'),
        url('../fonts/Bachelorette.otf?#iefix') format('embedded-opentype'),
    font-weight: normal;
    font-style: normal;
}
@font-face {
      font-family:"Epilogue";
      src: url("../fonts/Epilogue-Regular.ttf");
}
/* ======================================= Обнуление ================================================= */
* { 
	box-sizing: border-box;
    padding: 0; 
    margin: 0;  
  } 
fieldset, img, abbr { 
    border: 0; 
  } 
address, caption, cite, code, dfn, em,  
h1, h2, h3, h4, h5, h6, strong, th, var { 
  font-weight: normal; 
  font-style: normal; 
  } 
ul { 
  list-style: none; 
  padding-left: 0;
  } 
caption, th { 
  text-align: left; 
  } 
h1, h2, h3, h4, h5, h6 { 
  font-size: 1.0em; 
  } 
q:before, q:after { 
  content: ''; 
  } 
a, ins { 
  text-decoration: none; 
  }
/* ======================================= Основные стили ================================================= */
body{
    font-family:'Epilogue', Helvetica, sans-serif;
    font-size:17px;  
    color:#50735F; 
    background-color:#F5F5F5;
}
a{
    color: #fff;
	font-size: 17px;
}
/* a:hover{             
    text-decoration: underline;
} */
p{
	line-height: 28px;
	color: #949494;
	margin: 8px 0 10px 0;
}
h4{
	font-family: 'Linotype Didot Std';
    font-size: 100px;
    line-height: 91px;
	margin: 2px 0 10px 0;
}
h1{
	font-family: 'Linotype Didot Std';
	font-style: normal;
    font-size: 56px;
    line-height: 91px;
	font-weight: bold;
	margin: 2px 0 10px 0;
}
h2{
	font-family: 'Linotype Didot Std';
	font-style: normal;
    font-size: 48px; 
    line-height: 51px; 
	margin: 2px 0 10px 0;
}
h3{
    font-size: 30px;
    line-height: 54px; 
	margin: 2px 0 10px 0;
}
/* h4{
    font-size: 24px;
    line-height: 33px; 
	margin: 2px 0 10px 0;
} */
h5{
    font-size: 17px;
    line-height: 25px; 
	margin: 2px 0 10px 0;
}
/* img{
	width:100%;
} */

/* ======================БИБЛИОТЕКА========================== */
.width_1230{
    width: 1230px;
    margin: 0 auto; 
}
.width_100{
	width:100%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_80{
	width:80%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_66{
	width:66.66666%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_60{
	width:60%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_50{
	width:50%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_40{
	width:40%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_35{
	width:35%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_33{
	width:33.33333333%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_30{
	width:30%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_25{
	width:25%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_23{
	width:23%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_20{
	width:20%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_15{
	width:15%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_16{
	width:16.333333%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_12{
	width:12%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_8{
	width:8.666666%;
	padding:0 12px;
	box-sizing:border-box;
}
.width_5{
	width:5%;
	padding:0 12px;
	box-sizing:border-box;
}
.d_flex{
	display:flex;
	flex-wrap:wrap;
}
.d_nflex{
	display:flex;
	flex-wrap: nowrap;
}
.d_nnflex{
	display:flex;
	flex-wrap: wrap;
}
.d_flex_between{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.d_flex_between_center{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
}
.d_flex_around{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
}
.d_flex_around_center{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
	align-items: center;
}
.d_flex_around_n{
	display:flex;
	flex-wrap:nowrap;
	justify-content:space-around;
}
.d_none{
	display:none;
}
.text_center{
	text-align: center;
}
.d-flex{
    display: flex!important;
	flex-wrap: wrap;
}
.wrap{
	flex-wrap: wrap;
}
/*=====================================СТИЛИ ГЛАВНОЙ==========================*/
.logo{
	width: 30%;
}
.fon{
	background: url(../img/5fon.png) no-repeat center center;
	margin-top: -5px;
    padding: 8px
}
.green{
	color: #50735F;
}
.orange{
	color: #C58A46;
    width: 113px;
    height: 38.06px;
    display: inline-block;
}
.dumb_font{
	font-family: cursive;
}
.knopka{
	text-align: center;
    border: 2px solid #C58A46;
	background-color: #C58A46;
    border-radius: 80px;
    color: #FFFFFF;
    width: 53px;
    height: 53px;
    padding: 15px;
}
.shop{
	display: flex;
    align-items: center;
}
.knopka1{
	text-align: center;
    border: 2px solid #50735F;
    border-radius: 80px;
	color: #50735F;
	width: 53px;
    height: 53px;
	padding: 15px;
	
}
#preview .modal-header {
    border-bottom: var(--bs-modal-header-border-width) solid #dee2e600;
}
#seleniy h5{
	font-size: 12px;
	text-align: none;
    padding: 0;
}
.kontakti{
	margin-top: 65px;
}
.kontakti a{
	font-size: 12px;
}
.kontakti h5{
	font-size: 12px;
	margin: 0;
	text-align: none;
    padding: 0;
}
.kartochka{
	background-color: #50735F;
	padding: 20px 95px 58px 95px;
}
.white_font a{
	font-size: 33px;
    line-height: 54px;
    font-family: 'Linotype Didot Std';
}
.white_font i{
	margin-left: 37px;
}
.white_font span{
	display: none;
}
#staticBackdrop .dropdown-menu{
	--bs-dropdown-bg: #fff0;
	--bs-dropdown-border-color: rgb(0 0 0 / 0%);
}
.girl1{
	width: 100%;
}
.leaf1{
	width: 48%;
    left: -135px;
    font-size: 37px;
    bottom: 28px;
}
.tovar ul{
	margin-top: 14px;
    line-height: 34px;
}
.knopka_text{
	text-align: left;
    width: 127px;
    height: 45px;
    --bs-btn-color: #ffffff;
    --bs-btn-bg: none;
    border: none;
	font-size: 29px;
    padding: 0;
	--bs-btn-hover-bg: none;
	font-family: 'Linotype Didot Std';
}
.black a{
	font-size: 17px;
    line-height: 29px;
    padding: 17px;
	
}
.knopka_text :hover {
    color: var(--bs-btn-hover-color);
    background-color: #5c636a00;
    border-color: #565e6400;
	font-size: 29px;
    padding: 0;
}
.knopka_strelka{
	border: none;
    background: none;
	--bs-btn-active-bg: none;
}
.knopka_strelka :hover{
	border: none;
    background: none;
	--bs-btn-active-bg: none;
}
#treehouse span{
	text-align: center;
    border: 2px solid #50735F;
    border-radius: 80px;
	color: #50735F;
	width: 169px;
	background-color: #F5F5F5;
	padding: 12px;
	display: inline-block;
}
#preview h5 span{
	background-color: #C58A46;
    color: #FFFFFF;
    width: 169px;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    padding: 12px;
}
#collection span{
	background-color: #C58A46;
    color: #FFFFFF;
    width: 169px;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
	padding: 12px;
}
#transparency span{
	background-color: #C58A46;
    color: #FFFFFF;
    width: 169px;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
	padding: 12px;
}
#glavnaya{
	background-color: #50735F;
	color: #FFFFFF;
	height: 46px;
}
#glavnaya h5{
	text-align: center;
    padding: 10px 0 0 0;
}
#preview{
	background: url(../img/1fon.png) no-repeat center center;
	color: #fff;
	padding: 30px 20px;
	background-size: cover;
}
#preview i{
	color: #fff;
}
#preview .width_16{
	font-size: 20px;
}
#preview .width_30{
	margin-top: 50px;
}
#preview h1 span{
	position: relative;
    right: 60px;
}
header ul li{
	margin-right: 25px;
}
.bottom{
	margin-bottom: 7%;
	margin-top: 10%;
}
.bottom1{
	margin-bottom: 103px;
	margin-top: 53px;
}
#treehouse{
	padding: 173px 21px;
}
#treehouse .rel{
	position: relative;
}
#treehouse h2{
	text-align: left;
}
.devochka_2{
	position: absolute;
    z-index: 30;
    bottom: -189px;
    left: 38px;
	width: 28%;
}
.leaf_2{
	position: absolute;
    z-index: 20;
    left: 169px;
	width: 59%;
}
.listik_2{
	width: 38%;
}
#treehouse .dumb_font{
	position: relative;
    z-index: 50;
    font-size: 45px;
    bottom: -343px;
    right: 119px;
    transform: rotate(-19deg);
}
#care{
	padding: 156px 20px 10px 20px;
}
#care h3 span{
	font-family: cursive;
    font-size: 41px;
}
#care h2{
	text-align: left;
    font-size: 51px;
    margin-bottom: 34px;
}
/* #care ul{
	margin-left: -30px;
} */
.family_3{
	width: 90%;
}
.kartinka_3 {
    position: relative;
    bottom: 572px;
    left: 471px;
    width: 20%;
}
#quality{
	padding: 5px 20px;
	position: relative;
}
#quality h3 span{
	font-family: cursive;
    font-size: 41px;
}
#quality .rel1{
	position: relative;
}
.devochka_4{
	position: absolute;
    z-index: 1;
    left: 104px;
	width: 42%;
}
.family_4{
	position: absolute;
    z-index: 2;
	left: 262px;
	width: 45%;
}
#shopping{
	padding: 50px 20px;
}
#shopping h5{
	text-align: center;
}
#shopping h2{
	margin-bottom: 50px;
	text-align: center;
}
#shopping .al_center{
	text-align: center;
}
#shopping img{
	margin-bottom: 20px;
	width: 99%;
}
#shopping li a{
	padding: 8px 25px;
    border-radius: 49%;
}
.box{
	background-color: #F5F5F5;
	border: 3px solid #F5F5F5;
}
.box:hover{
	transition: border 2s ease-out;
	border: 3px solid #c58a4691;
}
#collection{
	padding: 20px 0;
}
#collection .color {
	text-align: center;
    color: #fff;
    padding: 80px 0;
}
#collection img{
	width: 45%;
}
#collection .background{
	background: url(../img/6family.png) no-repeat center center;
	background-size: cover;
}
#malchik{
	text-align: center;
	padding: 150px 20px;
}
#malchik img{
	margin-bottom: -23px;
	width: 14%;
	
}
#match img{
	width: 99%
}
#match h2{
	text-align: left;
}
/* #match .width_30{
	margin-right: 10px;
	padding: 10px 10px;
} */
#match .products h5{
    margin-top: 37px;
}
#transparency{
	padding: 90px 20px;
	background: url(../img/9kite.png) no-repeat center center;
	background-size: contain;
}
#transparency h2{
	text-align: center;
}
#transparency h5{
	text-align: center;
}
#transparency .rel2{
	position: relative;
}
.play_9{
	position: absolute;
    bottom: 4px;
	left: 45px;
	width: 62%;
}
#transparency .t_center{
	text-align: center;
	margin-top: 40px;
}
#transparency .dumb_font{
	position: relative;
    top: 67px;
    font-size: 56px;
    right: 57px;
    transform: rotate(-20deg);
}
#match {
  padding: 30px 20px;
  background: linear-gradient(to top, #D9C7BB 50%, #F5F5F5 50%);
}
.hover_k :hover{
	background: url(../img/9hover1.png);
	
}
.left{
	margin-left: 780px;
}
.right{
	margin-right: -10px;
}
.card {
  min-width: 100%;
  min-height: 200px;
  display: flex;
  overflow-x: auto;
}
.card--content {
  min-width: 390px;
}
.blue{
	background-color: #ADBBC4;
}
footer{
	background-color: #50735F;
	color: #FFFFFF;
	padding: 56px 20px 10px 20px;
}
footer form{
	margin-bottom: 20%;
}
footer input[type='email']{
	width: 319px;
	height: 54px;
	border: 1px solid #FFFFFF;
	border-radius: 8px 0px 0px 8px;
	background-color: #50735F;
	color: #fff;
	padding: 10px;
}
.orange_button:hover{
	background-color: #9F7647;
	cursor: pointer;
	color: #fff;
}
footer .orange_button{
	background: #C58A46;
	border-radius: 0px 8px 8px 0px;
	width: 131px;
	height: 54px;
	color: #fff;
	margin-left: -4px;
	border: none;
}
footer input[type='email']::placeholder{
	color: #fff;
}
footer .m_top{
	margin-top: 30px;
}
footer ul li {
	margin-bottom: 8px;
}
#up{
	position: fixed;
    right: 42px;
    bottom: 47px;
}
#up a{
	color: #8fc4a6;
}
#absolute{
	position: relative;
}
.listik_91{
	position: absolute;
    bottom: 239px;
    left: -20px;
	width: 8%;
}
.listik_92{
	position: absolute;
    right: -19px;
    bottom: 122px;
	width: 8%;
}
.listik_93{
    position: absolute;
    left: calc(50% - 150px);
    bottom: -8px;
    width: 300px;
}
/* =============================================OUR TEAM======================================= */
.rel{
	position: relative;
}
.abs{
	position: absolute
}
#glavnaya1{
	background-color: #50735F;
	color: #FFFFFF;
	height: 68px;
}
#glavnaya1 i{
	color: #fff;
}
#glavnaya_menu h5{
	text-align: center;
    padding: 10px 0 0 0;
}
#there{
	padding: 88px 5px 82px 5px;
}
#there span{
	margin-left: -52px;
}
#there .sun_21{
	margin-top: -40px;
}
.family_21{
	width: 98%;
}
.short_21{
	width: 70%;
}
#creating{
	padding: 44px 10px 240px 10px;
}
#creating h5{
	position: absolute;
    top: 147px;
    transform: rotate(7deg);
    left: -4px;
}
#creating .bumaga_22{
	position: absolute;
    top: 23px;
    left: -63px;
}
.malchiki_22{
	width: 78%;
    position: absolute;
    bottom: 12px;
}
.leaf_22{
	width: 75%;
    position: absolute;
    top: -122px;
}
#respect{
	padding: 241px 7px 27px 10px;
}
#video{
	padding: 10px;
}
#video .doctor{
	background: url(../img/24doctor.png) no-repeat center center;
	background-size: cover;
    padding: 239px 20px;
}
#mission{
	padding: 153px 10px 10px 10px;
}
#mission span{
	font-family: cursive;
    font-size: 41px;
	color: #C58A46;
	margin-right: 17px;
}
#mission .deti1_25{
	position: absolute;
    z-index: 20;
	width: 98%;
}
#mission .deti2_25{
	position: absolute;
    z-index: 30;
	top: 217px;
    left: 222px;
}
#mission .bottom{
	margin-bottom: 133px;
}
.doctor_25{
	width: 98%;
}
#chat{
	padding: 83px 10px;
}
#chat a{
	color:#50735F; 
}
#chat .abs{
	right: 30px;
    bottom: -54px;
	z-index: 10;
}
#chat .rel2{
	position: relative;
    z-index: 20;
    left: -95px;
    top: 48px;
	transform: rotate(-2deg);
}
.vniz{
	margin-top: 59px;
}
.vniz h3{
	margin-bottom: 56px;
	font-family: cursive;
}
.verh{
	margin-top: 16px;
}
.verh h3{
	margin-bottom: 56px;
	font-family: cursive;
}
.cent{
	margin-top: 43px;
}
#chat .plus_26{
	width: 5%;
    right: 51%;
    bottom: 35%;
}
#chat .minus_26{
	width: 4%;
    height: 3%;
    left: 68%;
    bottom: 50%;
}
#chat .white{
	color: #fff;
}
.malchik_26{
	margin-bottom: -6px;
}
#chat h5 span{
	background-color: #C58A46;
    color: #FFFFFF;
    width: 169px;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    padding: 12px;
}
#press{
	padding: 125px 10px 43px 10px;
}
#press .top{
	margin-top: 60px;
}
#press .center{
	text-align: center;
}
.mot_27{
	width: 98%;
}
.west{
	width: 98%;
}
.kite_27{
	width: 53%;
}
#adress{
	padding: 61px 10px 130px 10px;
}
#adress a{
	color: #50735F;
    font-size: 53px;
}
#adress h5{
	margin-top: 15%;
}
.kid_28{
	width: 98%;
}



/* =============================================OUR IMPACT======================================= */
.pink{
	background-color: #D9C7BB;
}
#environment{
	padding: 91px 5px 4px 5px;
}
#organic{
	padding: 3px 5px 147px 5px;
}
#organic .dumb_font{
	font-size: 55px;
}
#health{
	padding: 88px 5px 82px 5px;
}
#health h4{
	color: #FFFFFF;
	font-size: 53px;
	line-height: 65px;
	font-family: cursive;
	margin-bottom: 52px;
}
#health h5 span{
	background-color: #C58A46;
    color: #FFFFFF;
    width: 169px;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    padding: 12px;
}
#approach{
	padding: 180px 5px 82px 5px;
}
#approach .nitka_34{
	margin-left: -246px;
}
#approach .derevo2_34{
	margin-top: -100px;
}
#champion{
	padding: 88px 5px 82px 5px;
}
#champion .devochka_35{
	margin-bottom: -19px;
}
#people{
	padding: 88px 5px 82px 5px;
}
#people .smile_36{
	margin-top: 102px;
}
#packaging{
	padding: 88px 5px 82px 5px;
	color: #FFFFFF;
}
#packaging .pad{
	padding: 122px 10px;
}
#packaging .perl_37{
	margin-bottom: 23px;
}
#packaging .background {
    background: url(../img/37paket.png) no-repeat center center;
    background-size: cover;
}
#seriously{
	padding: 88px 5px 146px 5px;
}
#seriously h4{
	font-size: 53px;
	line-height: 65px;
	font-family: cursive;
	margin-bottom: 52px;
}
#seriously span{
	text-align: center;
    border: 2px solid #50735F;
    border-radius: 80px;
	color: #50735F;
	width: 169px;
	background-color: #F5F5F5;
	padding: 12px;
	display: inline-block;
}
/* =============================================GIFT CARD======================================= */
#exampleModal textarea[name='text_comment']{
    background-color: #F3F3F3;
    width: 77%;
    height: 70px;
    font-size: 20px;
    padding: 20px 22px;
    border: none;
}
#exampleModal .modal-content {
    width: 126%;
}
#exampleModal .green_button{
	background-color: #50735F;
	color: #fff;
	padding: 17px;
}
#exampleModal .lupa {
	padding: 10px;
	border: none;
}
#exampleModal .lupa i{
	color: #50735F;
}
#gift textarea[name='text_comment']{
	background-color: #F3F3F3;
	width: 100%; 
	height: 215px;
	font-size: 20px;
	padding: 20px 22px;
	border: none;
}
#gift{
	padding: 109px 5px 160px 5px;
}
.brown{
	display: flex;
}
.green{
	display: flex;
}
.green1{
	display: flex;
}
#gift .end {
    padding: 27px 1px;
}

.card_41 {
	width: 100%;
}
#gift ul li{
	color: #50735F;
}
#gift .green span{
	text-align: center;
    border: 2px solid #50735F;
    border-radius: 80px;
	color: #50735F;
	width: 169px;
	background-color: #F5F5F5;
	padding: 12px;
	display: inline-block;
}
#gift .star_clients{
	 margin-right: 47px;
}
.zero h5{
	margin: 0;
	margin-right: 29px;
}
#gift  .btn-secondary{
	display: flex;
    justify-content: space-between;
	align-items: center;
	width: 190px;
}
#gift .text{
	    margin-right: 23px;
}
.knopki{
	margin-bottom: 79px;
}
.accordion {
    --bs-accordion-bg: none;
	--bs-accordion-active-bg: none;
	--bs-accordion-border-color: none;
}
.accordion-button:not(.collapsed) {
    color: #C58A46;
}
.accordion-button:focus {
    border-color: #86b7fe00;
}
.accordion-button {
    color: #C58A46;
}
.pagination {
    --bs-pagination-color: black;
	--bs-pagination-bg: #fff0;
    --bs-pagination-border-color: #50735F;
	--bs-pagination-active-bg: #50735F;
}
.btn-primary {
    --bs-btn-color: #50735F;
    --bs-btn-bg: none;
    --bs-btn-border-color: none;
	--bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #50735F;
	--bs-btn-hover-bg: #50735F;
    --bs-btn-hover-border-color: none;
}
#gift .btn-secondary {
	text-align: left;
	width: 312px;
    height: 45px;
    --bs-btn-color: #50735F;
    --bs-btn-bg: none;
}
#filter .btn-secondary {
	text-align: left;
	width: 312px;
    height: 45px;
    --bs-btn-color: #50735F;
    --bs-btn-bg: none;
}
#gift .brown span{
	text-align: center;
    border: 2px solid #C58A46;
    border-radius: 80px;
	color: #FFFFFF;
	width: 169px;
	background-color: #C58A46;
	padding: 12px;
	display: inline-block;
}
.border_top{
	border-top: 1px solid #50735F;
}
.dropdown-menu.show {
    transform: translate3d(0, -104px, 0px);
    width: 100%;
}
.tabliza{
	text-align: center;
    border: 1px solid #50735F;
    border-radius: 6px;
    color: #50735F;
    background-color: #F5F5F5;
    padding: 0;
    display: flex;
}
.tabliza ul{
	margin: 0;
}
.tabliza li {
    color: #50735F;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    width: 30px;
    justify-content: center;
}
.pervaya{
	border-right: 1px solid #50735F;
}
.tretaya{
	border-left: 1px solid #50735F;
}
#reviews{
	padding: 88px 5px 319px 5px;
} 
#reviews .noll h5{
    margin: 0 21px 0 0;
}  
#reviews .btn-secondary{
	background-color: #F5F5F5;
	--bs-btn-hover-color: #50735F;
	width: 312px;
}
#reviews h2{
	margin-bottom: 80px;
}
#reviews .knopka1 {
    background-color: #F5F5F5;
	
}
.btn-success {
    --bs-btn-bg: #50735F;
    --bs-btn-border-color: #50735F;
}
#reviews .border_top{
	padding: 43px 5px;
}
#reviews .brown span{
	text-align: center;
    border: 2px solid #C58A46;
    border-radius: 80px;
	color: #FFFFFF;
	width: 169px;
	background-color: #C58A46;
	padding: 12px;
	display: inline-block;
}
#reviews .green1 span{
	text-align: center;
    border: 2px solid #50735F;
    border-radius: 80px;
	color: #50735F;
	width: 169px;
	background-color: #F5F5F5;
	padding: 12px;
	display: inline-block;
}
#reviews .star_clients{
	margin-right: 8px;
}
.dislike span{
	color: #b72a2a;
	margin-left: 18px;
}
.btn-success {
	width: 148px;
    height: 25px;
	margin-left: 25px;
}
.btn-light{
	width: 148px;
    height: 25px;
	margin-left: 25px;
}
#love{
	padding: 0 5px 56px 5px;
}
#love{
	margin-top: -12%;
}
.card {
    --bs-card-border-color: none;
	--bs-card-bg: #fff0;
	color: #50735F;
}
#love .star_clients{
	margin-right: 8px;
	margin-bottom: 13px;
}
#viewed{
	padding: 88px 5px 146px 5px;
}
#viewed .star_clients{
	margin-right: 8px;
	margin-bottom: 13px;
}
.new{
	position: absolute;
    background-color: #50735F;
    top: 50px;
    padding: 5px 20px;
	color: #fff;
}
.new h5{
	margin-bottom: 0;
}		
/*=================================FAQ=========================*/
.sale{
	position: absolute;
    background-color: #884F56;
    top: 50px;
    padding: 5px 20px;
    color: #fff;
}
.sale h5 {
    margin-bottom: 0;
}
.sold{
	position: absolute;
    background-color: #C58A46;
    top: 50px;
    padding: 5px 20px;
    color: #fff;
}
.sold h5 {
    margin-bottom: 0;
}
#styles{
	padding: 54px 9px;
	text-align: center;
}
#styles .background{
	background: url(../img/51faq.png) no-repeat center center;
    color: #fff;
    padding: 163px 20px;
    background-size: cover;
}
#filter h3{
	font-size: 27px;
}
.kvadrat input{
	background-color: #50735f00;
    border-color: #50735F;
    border: 2px solid #50735F;
}
.kvadrat input:checked{
	background-color: #50735f00;
    border: 2px solid #50735F;
}
#vidvig .accordion-button {
    color: #50735F;
}
#zveta .form-check-input[type=checkbox] {
    border-radius: 0;
}

#zveta .form-check-input:checked {
    background-color: #50735f00;
    border-color: #50735F;
    border: 2px solid #50735F;
}
#zveta .form-check-input {
    border: #FFF0;
}
#zveta .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: none;
}
#zveta .form-check-input {
    width: 2em;
    height: 2em;
}
.scroll{
	height: 120px;
}

#kvadrat .form-check-input[type=checkbox] {
    border-radius: 0;
}
#kvadrat .form-check-input{
	background-color: #50735f00;
    border: 1px solid #50735F;
}
#kvadrat .form-check-input:checked {
    background-color: #884F56;
    border: 1px solid #884F56;
}

#kvadrat .form-check-input {
    width: 1em;
    height: 1em;
}
.color1{
	background-color: #313944;
}
.color2{
	background-color: #4E4A3E;
}
.color3{
	background-color: #884F56;
}
.color4{
	background-color: #ADBBC4;
}
.color5{
	background-color: #D9C7BB;
}
.color6{
	background-color: #C58A46;
}
.knopki h5{
	margin: 0 21px 0 0;
}
/*=================================CONTACTS=========================*/      
#line{
	padding: 80px 11px;
}
.email{
	margin-top: 60px;
}
#line .fonbumashka{
	
}
/* #line .orange {
    width: 100%;
} */
#line .keks62{
	width: 24%;
    margin-bottom: 23px;
}
.free {
    position: absolute;
    left: 476px;
    top: 65px;
    z-index: 13;
    font-size: 44px;
    transform: rotate(-10deg);
    width: 16%;
}
.leaf61 {
    width: 14%;
    position: absolute;
    right: -57px;
    bottom: -6px;
}
.listik61 {
    width: 11%;
    position: absolute;
    bottom: -118px;
    left: 251px;
}
#forma{
	padding: 146px 11px 233px 11px;
}
#forma input[type='text']{
	width: 100%;
    height: 56px;
    padding: 7px 10px;
    background: none;
    border-bottom: 1px solid #50735F;
    border-top: none;
    border-right: none;
    border-left: none;
	margin-top: 31px;
}
#forma input[type='email']{
	width: 100%;
    height: 56px;
    padding: 7px 10px;
    background: none;
    border-bottom: 1px solid #50735F;
    border-top: none;
    border-right: none;
    border-left: none;
	margin-top: 31px;
}
#forma textarea[name='text_comment']{
	width: 100%;
    height: 56px;
    padding: 7px 10px;
    background: none;
    border-bottom: 1px solid #50735F;
    border-top: none;
    border-right: none;
    border-left: none;
	margin-top: 31px;
}
#forma .orange {
    width: 100%;
    left: -65px;
    font-size: 37px;
	transform: rotate(-10deg);
    top: -38px;
}
#forma .brown{
	margin-top: 46px;
}
#forma .brown span{
	text-align: center;
    border: 2px solid #C58A46;
    border-radius: 80px;
	color: #FFFFFF;
	width: 169px;
	background-color: #C58A46;
	padding: 12px;
	display: inline-block;
}
.hand62 {
    margin-top: 168%;
}
.social{
	transform: rotate(-3deg);
    margin-top: 113px;
}
.hours {
    transform: rotate(7deg);
    margin-top: 73px;
    margin-left: 42px;
}
.social li a{
	color: #50735F;
}
.hours li a{
	color: #50735F;
}
#line .abs {
    right: 27px;
    bottom: auto;
    z-index: 11;
}
#line .rel2 {
    position: relative;
    z-index: 20;
    left: -95px;
    top: 48px;
} 


/*=================================АДАПТИВКА=========================*/
@media screen and (max-width: 1024px){
	.width_1230{
		width: 100%;
	}
	footer input[type='email']{
		width: 150px;
	}
	#preview h1 span {
		position: relative;
		right: 0px;
	}
	h1 {
		font-size: 44px;
		line-height: 68px;
	}
	.devochka_2 {
		position: absolute;
		z-index: 30;
		bottom: 69px;
		left: 51px;
		width: 28%;
	}
}
@media screen and (max-width: 768px){
	footer input[type='email'] {
		width: 134px;
	}
	footer .orange_button{
		width: 94px;
	}
	h1 {
		font-size: 32px;
		line-height: 57px;
	}
	#glavnaya h5{
		font-size: 14px;
	}
	#preview h5 span{
		width: 138px;
	}
	#treehouse span{
		width: 138px;
	}
	#collection span{
		width: 138px;
	}
	#malchik h4{
		font-size: 45px;
	}
}
@media screen and (max-width: 426px){
	.d_none{
		display:block;
	}
	.m_none{
		display:none;
	}
	#glavnaya h5 {
		font-size: 9px;
		line-height: 16px;
	}
	.width_40 {
		width: 100%;
	}
	.width_35 {
		width: 100%;
	}
	.width_30 {
		width: 100%;
	}
	.width_20 {
		width: 100%;
	}
	.width_12 {
		width: 50%;
	}
	label[for="ham-menu"] {
		top: 84px;
		left: 349px;
	}
	#malchik img {
		margin-bottom: -36px;
		width: 34%;
	}
	#transparency .width_50{
		width: 95%;
	}
	#treehouse .width_50 .dumb_font {
		position: relative;
		z-index: 50;
		font-size: 28px;
		bottom: -181px;
		right: 28px;
		transform: rotate(-19deg);
	}
	#transparency .width_50 .dumb_font {
		position: relative;
		top: 51px;
		font-size: 31px;
		right: 35px;
		transform: rotate(-20deg);
	}
	.play_9 {
		position: absolute;
		bottom: -32px;
		left: 136px;
		width: 126%;
	}
	#quality{
		display: none;
	}
	.devochka_2{
		display: none;
	}
	.listik_2{
		display: none;
	}
	.leaf_2 {
		display: none;
	}
	#glavnaya h5 {
		text-align: center;
		padding: 10px 10px 0 10px;
	}
	#treehouse {
		padding: 47px 21px;
	}
	#treehouse .dumb_font {
		position: relative;
		z-index: 50;
		font-size: 28px;
		bottom: 15px;
		right: -114px;
		transform: rotate(-10deg);
	}
	.bottom2{
		display: none;
	}
	#care {
		padding: 52px 20px 10px 20px;
	}
	#care h2 {
		text-align: left;
		font-size: 46px;
		margin-bottom: 66px;
	}
	#shopping h2 {
		margin-bottom: 50px;
		text-align: left;
		font-size: 46px;
	}
	#collection .color {
		text-align: center;
		color: #fff;
		padding: 80px 28px;
	}
	#malchik h4 {
		font-size: 41px;
		line-height: 52px;
	}
	#malchik {
		text-align: center;
		padding: 40px 20px;
	}
	#malchik img {
		margin-bottom: -17px;
		width: 39%;
	}
	#shopping .al_center li{
		width: 100%;
	}
	#shopping h5 {
		text-align: left;
	}
	#shopping li a {
		padding: 0;
		border-radius: 49%;
	}
	#transparency h2 {
		text-align: left;
		font-size: 44px;
	}
	.odegda_9{
		width: 100%;
	}
	#transparency .dumb_font {
		position: relative;
		top: 23px;
		font-size: 28px;
		right: 31px;
		transform: rotate(-16deg);
	}
	.mobilka{
		width: 50%;
	}
	.logo {
		width: 49%;
	}
	.kartinka_3 {
		display: none;
	}
	#treehouse .width_50 .dumb_font {
		bottom: 32px;
		right: 0px;
	}
	.play_9 {
		display: none;
	}
	#shopping .al_center {
		line-height: 24px;
	}
	#care .width_50 {
		width: 100%;
	}
	#care .img{
		width: 100%;
	}
	#preview .width_16{
		display: none;
	}
	.listik_91{
		display: none;
	}
	.listik_92{
		display: none;
	}
	.listik_93{
		display: none;
	}
	#collection .width_20 {
		text-align: center;
		color: #fff;
		padding: 33px 0;
	}
	#respect .leaf1_23{
		display: none;
	}
	#respect .leaf2_23{
		display: none;
	}
	#adress a {
		font-size: 24px;
	}
	
	footer input[type='email'] {
		width: 75%;
	}
	footer .orange_button {
		width: 62px;
	}
	
	#approach .nitka_34{
		display: none;
	}
	.listik2_32{
		display: none;
	}
	#champion {
		padding: 27px 5px 10px 5px;
	}
	#organic {
		padding: 3px 5px 8px 5px;
	}
	#approach .derevo2_34 {
		display: none;
	}
	.turok_36{
		display: none;
	}
	.smile_36{
		width: 100%;
	}
	#people .smile_36 {
		margin-top: 39px;
	}
	#packaging {
		padding: 18px 5px 29px 5px;
	}
	#seriously {
		padding: 14px 5px 26px 5px;
	}
	#packaging .pad {
		padding: 39px 10px;
	}
	#approach {
		padding: 64px 5px 15px 5px;
	}
	
	/* =============================================OUR TEAM======================================= */
	#video .doctor {
		padding: 43px 94px;
	}
	#chat .rel2 {
		position: relative;
		z-index: 20;
		left: 0px;
		top: -3px;
		transform: rotate(0);
	}
	.sun_21{
		display: none;
	}
	#creating{
		display: none;
	}
	/* .fonbumashka rel2{
		display: none;
	} */
	.bumaga_26{
		display: none;
	}
	.palka_28{
		display: none;
	}
	#mission .deti2_25 {
		display: none;
	}
	.flower_31{
		display: none;
	}
	#health h4{
		font-size: 31px;
		line-height: 40px;
	}
	#seriously h4{
		font-size: 31px;
		line-height: 40px;
	}
	.derevo1_34{
		width: 100%;
	}
	.listik1_32{
		display: none;
	}
	#champion h4{
		font-size: 52px;
		line-height: 63px;
	}
	
/* =============================================GIFT CARD======================================= */
	.btn-secondary {
		width: 165px;
	}
	.btn-success {
		width: 90px;
	}
	.btn-light{
		width: 90px;
	}
	
@media screen and (max-width: 376px){
	label[for="ham-menu"] {
		top: 89px;
		left: 300px;
	}
}
@media screen and (max-width: 321px){
	label[for="ham-menu"] {
		top: 74px;
		left: 245px
	}
}