/* Slider */
.slick-slider {position: relative;display: block;box-sizing: border-box;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;-webkit-touch-callout: none;-khtml-user-select: none;-ms-touch-action: pan-y;touch-action: pan-y;-webkit-tap-highlight-color: transparent;}.slick-list {position: relative;display: block;overflow: hidden;margin: 0;padding: 0;}.slick-list:focus {outline: none;}.slick-list.dragging {cursor: pointer;cursor: hand;}.slick-slider .slick-track, .slick-slider .slick-list {-webkit-transform: translate3d(0, 0, 0);-moz-transform: translate3d(0, 0, 0);-ms-transform: translate3d(0, 0, 0);-o-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}.slick-track {position: relative;top: 0;left: 0;display: block;margin-left: auto;margin-right: auto;}.slick-track:before, .slick-track:after {display: table;content: '';}.slick-track:after {clear: both;}.slick-loading .slick-track {visibility: hidden;}.slick-slide {display: none;float: left;height: 100%;min-height: 1px;}[dir='rtl'] .slick-slide {float: right;}.slick-slide img {display: block;}.slick-slide.slick-loading img {display: none;}.slick-slide.dragging img {pointer-events: none;}.slick-initialized .slick-slide {display: block;}.slick-loading .slick-slide {visibility: hidden;}.slick-vertical .slick-slide {display: block;height: auto;border: 1px solid transparent;}.slick-arrow.slick-hidden {display: none;}

/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font-family: 'Montserrat', sans-serif;vertical-align: baseline;}article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}body {line-height: 1;}ol, ul {list-style: none;}blockquote, q {quotes: none;}blockquote:before, blockquote:after, q:before, q:after {content: '';content: none;}table {border-collapse: collapse;border-spacing: 0;}



/* Base Styles */
*{
    box-sizing: border-box;
	outline: none;
}
p, li, span, div, a{
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 1.3;
	color: #000;
}
a{
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	line-height: 1.3;
}
.container{
	margin: 0 auto;
	padding: 0 40px 0 30px;
	width: 100%;
	max-width: 1440px;
}
.flx{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.btn{
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
	border-radius: 100px;
	padding: 21px 70px;
	transition: all 0.2s ease;
	background-color: #FFE49D;
	border: none;
	font-weight: 600;
}
input, textarea{
	font-size: 18px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 1.3;
	color: #000;
	padding: 10px 15px;
	border: none;
	border-radius: 30px;
}
input::placeholder{
	color: #AFAFAF;
}



/* first */
header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 19px 0 21px;
    z-index: 9;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px) saturate(150%);
}
header ul li{
    display: inline-block;
    margin-left: 4px;
    transition: all 0.2s ease;
    padding: 11px 23px;
    border-radius: 50px;
    cursor: pointer;
}
header ul li:hover{
    background-color: rgba(180, 166, 152, 1);
}
header ul li.active{
    background-color: rgba(180, 166, 152, 1);
}
header .container{
    position: relative;
    z-index: 2;
}
header nav li{
    display: inline-block;
    position: relative;
}
header nav li.has{
    padding: 11px 39px 11px 23px;
    position: relative;
}

header nav li.has::after{
    content: '';
    position: absolute;
    right: 17px;
    top: 15px;
    width: 10px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/arrow_left_ico.svg');
    background-size: contain;
    transition: all 0.2s ease;
}
header nav li.has:hover:after{
    background-image: url('../img/arrow_left_ico_white.svg');
}
header nav li.has.active::after{
    transform: rotate(-90deg);
    background-image: url('../img/arrow_left_ico_white.svg');
}
header nav li a{
    font-size: 18px;
    color: #000;
    font-weight: 400;
}
header nav li:hover a{
    color: #fff;
}
header nav li.active a{
    color: #fff;
}
header .right{
    display: flex;
    align-items: center;
}
header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .langs{
    margin-left: 68px;
    position: relative;
    min-width: max-content;
}
header .langs::after{
    content: '';
    position: absolute;
    right: 41px;
    top: -7px;
    width: 1px;
    height: 33px;
    background-color: #090909;
}
header .langs a{
    color: #000;
    display: inline-block;
    transition: all 0.2s ease;
}
header .langs a:hover{
    font-weight: bold;
}
header .langs a:first-child{
    margin-right: 28px;
}
header .langs a.active{
    font-weight: bold;
}
.hidden_menu_box{
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    position: absolute;
    left: -110px;
    top: calc(100% + 68px);
    border-radius: 50px;
    background: #B4A698;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.20);
    width: 823px;
    padding: 41px 38px 46px 37px;
}
.hidden_menu_box .left_list{
    width: 100%;
    max-width: 421px;
    min-width: 421px;
    flex-grow: 1;
    margin-right: 28px;
    display: inline-block;
}
.hidden_menu_box .left_list .item{
    transition: all 0.2s ease;
    padding: 19px 37px 17px 17px;
    border: 1px solid #C3B2A2;
    border-radius: 15px;
    position: relative;
    margin-bottom: 9px;
}
.hidden_menu_box .left_list .item:last-child{
    margin-bottom: 0;
}
.hidden_menu_box .left_list .item:hover{
    background-color: #494F43;
}
.hidden_menu_box .left_list .item.active{
    background-color: #494F43;
}
.hidden_menu_box .left_list .item::after{
    position: absolute;
    right: 21px;
    content: '';
    top: 27px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/arrow_right_white.svg');
    transition: all 0.2s ease;
    width: 26px;
    height: 14px;
    opacity: 0;
}
.hidden_menu_box .left_list .item:hover::after{
    transform: translateX(8px);
    opacity: 1;
}
.hidden_menu_box .left_list .item.active::after{
    transform: translateX(8px);
    opacity: 1;
}
.hidden_menu_box .left_list p.title{
    font-size: 25px;
    margin-bottom: 7px;
}
.hidden_menu_box .left_list p{
    color: #fff;
    font-size: 15px;
}
.hidden_menu_box .right_box{
    width: 100%;
    max-width: 293px;
    display: inline-block;
    vertical-align: top;
}
.hidden_menu_box .right_box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.hidden_menu_box .right_box p, .hidden_menu_box .right_box a{
    color: #fff;
    font-size: 15px;
}
.hidden_menu_box .right_box ul{
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
}
.hidden_menu_box .right_box li{
    padding: 0;
    margin-bottom: 10px;
    display: block;
    position: relative;
    color: #fff;
}
.hidden_menu_box .right_box li a:hover{
    color: #B4A698;
}
.hidden_menu_box .right_box li::after{
    content: '';
    position: absolute;
    left: -21px;
    width: 13px;
    height: 13px;
    top: 2px;
    border-radius: 50%;
    background-color: #B4A698;
}
.hidden_menu_box .right_box li:hover{
    background: none;
}
.hidden_menu_box .right_box .box{
    display: none;
    background-color: #494F43;
    padding: 41px 41px 42px 40px;
    border-radius: 15px;
}
.hidden_menu_box .right_box .box.active{
    display: block;
}
.burger{
    position: fixed;
    display: none;
    top: 30px;
    right: 35px;
    width: 40px;
    height: 29px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    background-image: url('../img/burger2.svg');
    z-index: 13;
}
.mob_menu_box .mob_logo{
    position: relative;
}
.mob_menu_box{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 11;
    left: 0;
    top: 0;
    padding: 29px 33px;
    background-color: #B4A698;
	overflow-y: auto;
}
.mob_menu_box p{
    margin-bottom: 15px;
}
.mob_menu_box p b{
    font-size: 20px;
    margin-bottom: 26px;
}
.burger.active{
    background-color: transparent;
    background-image: url('../img/burger_active.svg');
    box-shadow: none;
	width: 20px;
    right: 46px;
}
.mob_menu_box .mob_logo{
    text-align: left;
    margin-bottom: 35px;
}
.mob_menu_box .mob_menu li{
    display: block;
    background-color: #494F43;
    height: 70px;
    line-height: 70px;
    color: #fff;
    margin-bottom: 6px;
    border-radius: 50px;
    text-align: center;
}
.mob_menu_box .mob_menu li a{
    color: #fff;
}
.mob_menu_box .mob_menu li.open_pop{
    background-color: #fff;
    color: #000;
    margin-bottom: 63px;
}
.mob_menu_box h4{
    font-size: 30px;
    text-align: center;
    margin-bottom: 43px;
    color: #000;
    font-family: Cormorant;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.mob_menu_box h5{
    color: #000;
    font-family: Cormorant;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.mob_menu_formats{
    margin-bottom: 41px;
}
.mob_menu_formats a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #494F43;
    padding: 10px 10px 10px 41px;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 6px;
}
.mob_menu_formats a .arrow{
    display: inline-block;
    border-radius: 50%;
    background-color: #fff;
    width: 51px;
    height: 51px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/arrow_right_black.svg');
}






.first{
	padding-top: 147px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-bottom: 33px;
}
.first .pdf_box{
	width: 100%;
	max-width: 391px;
	justify-content: center;
	gap: 18px;
	margin: 0 auto 45px;
}
h1{
	color: #494F43;
	text-align: center;
	font-size: 60px;
	font-weight: 600;
	position: relative;
	width: 100%;
	max-width: 700px;
	margin: 0 auto 50px;
	font-family: 'Cormorant', sans-serif;
}
h1::after, h1::before{
	content: '';
	position: absolute;
	width: 441px;
	height: 123px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: -1;
}
h1::after{
	left: -45px;
	top: -25px;
	background-image: url('../img/caracula1.svg');
}
h1::before{
	background-image: url('../img/caracula2.svg');
	bottom: -20px;
	right: 20px;
}
.first h1 + p{
	text-align: center;
	width: 100%;
	max-width: 360px;
	margin: 0 auto 30px;
	color: #494F43;
}
.first .slogan{
	width: 100%;
	max-width: 592px;
	text-transform: uppercase;
	margin: 0 auto 38px;
	font-size: 25px;
	text-align: center;
	color: #494F43;
}
.first .slogan span{
	font-weight: bold;
	color: #494F43;
}
.first .leave_box{
	justify-content: center;
}
.first .leave_box .btn{
	width: 100%;
}
.first .leave_box .price{
	text-transform: uppercase;
	color: #EB001B;
	font-size: 20px;
	font-weight: bold;
	padding: 13px 30px;
	border-bottom: 3px solid #FFE49D;
	margin-bottom: 10px;
}
.first .left_img{
	position: absolute;
	top: 160px;
	left: 30px;
}
.first .left_img::after{
	content: '';
	position: absolute;
	right: -100px;
	bottom: -35px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url('../img/arrow_left_yellow2.svg');
	width: 81px;
	height: 100px;
}
.first .left_img img{
	width: 100%;
	max-width: 255px;
	object-fit: cover;
	border-radius: 50%;
}
.first .right_img{
	position: absolute;
	right: 90px;
	top: 180px;
}
.first .right_img::after{
	content: '';
	position: absolute;
	left: -115px;
	bottom: -80px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url('../img/arrow_right_yellow2.svg');
	width: 81px;
	height: 100px;
}
.first .right_img img{
	width: 100%;
	max-width: 184px;
	object-fit: cover;
	border-radius: 50%;
}
h2{
    position: relative;
    text-align: center;
    width: 100%;
    font-size: 50px;
    line-height: 1.2;
    font-family: 'Cormorant', serif;
    margin: 0 auto 97px;
	text-transform: uppercase;
	color: #494F43;
}
h2 span{
    position: absolute;
    width: 100%;
    left: 50%;
    top: 25px;
    transform: translate(-50%,-50%);
    color: rgba(180, 166, 152, 0.11);
    font-size: 121px;
    font-family: 'Cormorant', serif;
    text-transform: uppercase;
}

.author{
	padding-top: 40px;
}
.author_inf{
	display: flex;
	align-items: flex-start;
	margin-bottom: 74px;
  }
  .author_inf .right{
	padding-top: 22px;
	padding-left: 39px;
	position: relative;
  }
  .author_inf h3{
	font-size: 35px;
	font-weight: 600;
	margin-bottom: 50px;
	color: #494F43;
  }
  .author_inf h3 span{
	font-size: 35px;
	font-weight: 600;
	display: block;
	color: #494F43;
	font-family: 'Montserrat', sans-serif;
  }
  .author_inf ul{
	padding-left: 64px;
  }
  .author_inf li{
	margin-bottom: 30px;
	font-size: 20px;
	line-height: 1.3;
	position: relative;
  }
  .author_inf li::before{
	content: '';
	position: absolute;
	left: -64px;
	top: 6px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background-color: #B4A698;
  }
  .author .serts{
	display: flex;
	flex-wrap: wrap;
	gap: 29px;
  }
  .author .serts img{
	flex: 1 1 48%;
	max-width: 48%;
  }
.author_img{
	width: 100%;
	max-width: 518px;
}


.after_preg_guide{
	padding-top: 83px;
}
.after_list{
	display: flex;
	gap: 75px 132px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 100px;
}
.after_list .item{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 44px;
	flex: 1 1 35%;
}
.after_list .item:nth-child(1){
	order: 1;
}
.after_list .item:nth-child(2){
	order: 3;
}
.after_list .item:nth-child(3){
	order: 5;
}
.after_list .item:nth-child(4){
	order: 2;
}
.after_list .item:nth-child(5){
	order: 4;
}
.after_list .item:nth-child(6){
	order: 6;
}

.after_list .item .num{
	font-size: 73px;
	font-weight: 600;
	margin-top: -15px;
	line-height: 1;
	font-family: 'Cormorant', serif;
}



.get_now_sect{
	padding-top: 82px;
	padding-bottom: 85px;
}
.get_now_sect h3{
	font-size: 50px;
	text-align: center;
	font-family: 'Cormorant', serif;
	margin-bottom: 81px;
}
.get_now_sect h3 span{
	font-size: 50px;
	font-family: 'Cormorant', serif;
	position: relative;
}
.get_now_sect h3 span::after{
	position: absolute;
	content: '';
	left: 50%;
	top: 59%;
	width: 100%;
	height: 100%;
	z-index: -1;
	transform: translate(-50%,-50%);
	height: 37px;
}
.get_now_sect h3 span.new_price::after{
	background-color: #FFE49D;
}
.get_now_sect h3 span.new_price.mob::after{
	background-color: transparent;
}
.get_now_sect h3 span.old_price::after{
	background-color: rgba(73, 79, 67, .2);
	border-right: 3px solid #494F43;
	width: 224px;
	left: 59%;
}
.now_form{
	background-color: #494F43;
	border-radius: 25px;
	padding: 22px 27px 23px 18px;
}
.now_form .title{
	display: none;
}
.now_form form{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
}
.now_form form button{
	min-width: 472px;
	font-weight: bold;
	text-transform: none;
	text-transform: uppercase;
}
.now_form form input{
	margin-bottom: 0;
	padding: 22px;
	border-radius: 50px;
	text-align: center;
	width: 100%;
}



/* footer */
footer{
	position: relative;
	margin-top: 100px;
	padding-bottom: 104px;
  }
  footer .container{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
  }
  .to_top{
	width: 81px;
	min-width: 81px;
	height: 81px;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: inherit;
	background-image: url('../img/to_top.svg');
	box-shadow: 0 4px 19px rgba(0,0,0,.11);
	cursor: pointer;
	transition: all 0.2s ease;
  }
  .to_top:hover{
	box-shadow: 0 4px 19px rgba(0,0,0,.22);
  }
  .footer_menu{
	flex-grow: 1;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	max-width: 765px;
  }
  .footer_menu .col p{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 25px;
  }
  .footer_menu .col a{
	display: block;
	color: #000;
	margin-bottom: 15px;
	transition: all 0.2s ease;
  }
  footer a:hover{
	color: #B4A698!important;
  }
  .oferts li{
	display: inline-block;
  }
  .oferts li a{
	color: #000;
	font-size: 15px;
	margin-left: 50px;
  }
  footer .container.flx{
	padding-top: 47px;
	align-items: center;
  }
  footer .payments{
	display: flex;
	align-items: center;
	gap: 26px;
  }

.author_img_mob{
	display: none;
}
.soc_list{
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-direction: column;
	right: 39px;
	bottom: 0;
	border: 1px solid #494F43;
	border-radius: 80px;
	padding: 13px 8px;
}


@media screen and (max-width: 1280px){
	header ul li{
        padding: 11px;
    }
	header .langs{
        margin-left: 30px;
    }
	.first .right_img{
		right: 0px;
	}
	.first .left_img{
		left: -70px;
	}
}
@media screen and (max-width: 1140px){
	.first .left_img::after{
		right: -50px;
	}
	.first .right_img::after{
		left: -80px;
	}
}

@media screen and (max-width: 1024px){
	.mob_menu_box .mob_logo{
		position: relative;
	}
	.langs_mob{
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 20px;
	}
	.langs_mob::after{
		content: '';
		position: absolute;
		left: 56px;
		top: -6px;
		width: 1px;
		background-color: #000;
		height: 33px;
	}
	.langs_mob a{
		display: inline-block;
		color: #000;
		margin: 0 14px;
	}
	.langs_mob a.active{
		font-weight: bold;
	}
	.get_now_sect h3 span.new_price.mob::after{
		background-color: #FFE49D;
	}
	.after_list .item .num{
		margin-top: 0;
	}
	.after_list .item:nth-child(1){
		order: 1;
	}
	.after_list .item:nth-child(2){
		order: 2;
	}
	.after_list .item:nth-child(3){
		order: 3;
	}
	.after_list .item:nth-child(4){
		order: 4;
	}
	.after_list .item:nth-child(5){
		order: 5;
	}
	.after_list .item:nth-child(6){
		order: 6;
	}
	.after_list .item{
		flex-direction: column;
		gap: 10px;
		text-align: center;
		max-width: 310px;
	}
	.after_list .item p{
		font-size: 18px;
	}
	.get_now_sect{
		padding-top: 0;
	}
	.after_list{
		flex-direction: column;
		gap: 30px;
		margin-bottom: 0;
	}
	.after_preg_guide{
		padding-top: 10px;
	}
	.first .pdf_box{
		flex-direction: column;
		gap: 15px;
	}
	.first .pdf_box p{
		text-align: center;
	}
	.first .pdf_box p b{
		display: block;
	}
	.first .soc_list{
		display: none;
	  }
	footer .soc_list{
		display: flex;
		right: 28px;
		bottom: 55px;
	}
	footer .soc_list img{
		width: 48px;
		height: 48px;
	}
	.first .leave_box .price{
		margin-bottom: 25px;
		border-bottom: 3px solid #494F43;
	}
	.first .leave_box{
		flex-direction: column-reverse;
	}
	.first .slogan{
		margin-bottom: 26px;
		max-width: 470px;
	}
	h1{
		font-size: 38px;
		width: 100%;
		max-width: 375px;
		margin-bottom: 29px;
	}
	.first .right_img{
		position: relative;
		right: initial;
		bottom: initial;
		top: initial;
		margin: 0 auto 25px;
		text-align: center;
	}
	.first .right_img::after{
		left: 0;
		bottom: 0;
		transform: rotate(14deg);
		background-image: url('../img/arrow_left_yellow2.svg');
	}
	.first .left_img{
		display: none;
	}
	header .right{
        display: none;
    }
	.burger{
        display: block;
    }
	h2{
        font-size: 35px;
		margin-bottom: 39px;
    }
    h2 span{
        display: none;
    }
	.author_inf{
		flex-direction: column;
	}
	.author_img{
		display: none;
	}
	.author_img_mob{
		display: block;
		width: 373px;
		height: 327px;
		margin: 0 auto 87px;
		object-fit: cover;
		border-radius: 15px;
	}
	.author_inf .right{
		padding: 0;
	}
	.author_inf h3{
		position: absolute;
		top: -195px;
		font-family: 'Montserrat', sans-serif;
		left: 50%;
		transform: translateX(-50%);
		color: #fff;
		font-size: 25px;
		width: 100%;
		max-width: 321px;
		background-color: rgba(0, 0, 0, 0.3);
		backdrop-filter: blur(10px) saturate(150%);
		border-radius: 20px;
		margin-bottom: 0;
		padding: 11px 27px 15px 19px;
		font-weight: 400;
	}
	.author_inf h3 span{
		color: #fff;
		font-weight: 400;
		font-size: 17px;
		font-family: 'Montserrat', sans-serif;
	}
	.author_inf ul{
		padding-left: 0;
	}
	.author_inf li{
		margin-bottom: 82px;
		font-size: 18px;
	}
	.author_inf li:last-child{
		margin-bottom: 0;
	}
	.author_inf li::before{
		left: 0;
		top: -46px;
	}
	.get_now_sect h3{
		font-size: 40px;
		margin-bottom: 54px;
	}
	.get_now_sect h3 span{
		font-size: 40px;
	}
	.now_form form{
		flex-direction: column;
	}
	.now_form{
		border-radius: 15px;
	}
	.now_form form input{
		border-radius: 15px;
		border: 1px solid #000;
	}
	.get_now_sect h3 span::after{
		width: 186px;
		top: 25px;
	}
	.now_form form button{
		border-radius: 15px;
		font-weight: 500;
		min-width: initial;
		padding: 21px;
	}


	footer .payments{
		margin-top: 28px;
	  }
	  footer{
		max-width: 366px;
		margin: 0 auto;
	  }
	  footer .container{
		flex-direction: column;
		position: relative;
	  }
	  .to_top{
		position: absolute;
		right: 21px;
		top: 0;
	  }
	  .footer_menu{
		margin-top: 40px;
		max-width: 100%;
		flex-wrap: wrap;
		justify-content: space-between;
	  }
	  .footer_menu .col:last-child{
		min-width: 100%;
		margin-top: 51px;
	  }
	  .oferts li{
		margin-bottom: 17px;
	  }
	  footer .container.flx{
		flex-direction: column-reverse;
		align-items: flex-start;
	  }
	  footer{
		padding-top: 56px;
		margin-top: 0;
		padding-bottom: 47px;
	  }
	  footer .payments{
		margin-top: 28px;
	  }
	  footer{
		max-width: 380px;
		margin: 0 auto;
	  }
	  .first .soc_list{
		display: none;
	  }
	.oferts li a{
		margin-left: 0;
	}
	.first{
		padding-top: 118px;
		overflow: hidden;
	}
	h1::after, h1::before{
		width: 356px;
		height: 100px;
	}
	h1::after{
		left: 0;
		background-image: url('../img/caracula2.svg');
	}
	h1::before{
		bottom: 25px;
		right: -102px;
	}
}