/* 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: 18px;
	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: 'Cormorant', 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;
	width: 100%;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	font-size: 18px;
	border-radius: 50px;
	transition: all 0.2s ease;
}
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;
}



/* header */
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: 14px;
    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;
}

.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;
}
.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');
}

/* footer */
footer{
    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;
}
.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/burger.svg');
    z-index: 13;
}




.sc_first{
    position: relative;
    padding-top: 240px;
    padding-bottom: 52px;
}
.sc_first .bg{
  position: absolute;
  width: 100%;
  max-width: 100%;
  left: 50%;
  bottom: -71px;
  letter-spacing: -15px;
  transform: translateX(-50%);
  text-transform: uppercase;
  z-index: -1;
  font-size: 385px;
  color: #ebebeb;
  font-weight: 900;
  font-family: sans-serif;
}
.sc_first .bg::after{
  content: '';
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(0deg, #fff 0%, rgba(211, 211, 211, 0) 100%);
}
.sc_first::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -70px;
    width: 7px;
    height: 68px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('../img/arrow_next_sect.svg');
}
.sc_first h1{
    text-align: center;
    font-size: 64px;
    margin-bottom: 52px;
}
.sc_first p{
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
    text-align: center;
}



.about_sc{
    padding-top: 150px;
}
.about_sc .container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 78px;
}
.about_sc h2{
    min-width: max-content;
    font-size: 35px;
    position: relative;
    text-transform: uppercase;
}
.about_sc h2 span{
    position: absolute;
    left: 146px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 121px;
    color: rgba(180, 166, 152, 0.11);
    font-family: 'Cormorant', serif;
}
.about_sc p{
    margin-bottom: 20px;
    font-size: 20px;
}



.sc_prog{
    padding-top: 92px;
    overflow: hidden;
    padding-bottom: 82px;
}
.sc_prog h2{
    text-align: center;
    text-transform: uppercase;
    font-size: 35px;
    position: relative;
    margin-bottom: 70px;
}
.sc_prog h2 span{
    position: absolute;
    font-size: 121px;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(180, 166, 152, 0.11);
    font-family: 'Cormorant', serif;
    text-transform: uppercase;
}
.sc_prog .sc_prog_list{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 25px;
}
.sc_prog .sc_prog_list .item{
    width: 440px;
    min-width: 440px;
    max-width: 440px;
    border: 1px solid rgba(225, 225, 225, 1);
    border-radius: 25px;
    padding: 32px 32px 35px 34px;
    min-height: 338px;
    transition: all 0.2s ease;
    display: inline-flex;
    flex-direction: column;
}
.sc_prog .sc_prog_list .item:hover{
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
}
.sc_prog .sc_prog_list .item .start{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 21px;
}
.sc_prog .sc_prog_list .item p{
    font-size: 16px;
}
.sc_prog .sc_prog_list .item .name{
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 18px;
}
.sc_prog .sc_prog_list .item .name + p{
    margin-bottom: 29px;
}
.sc_prog .sc_prog_list .item .nut_list{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 15px;
}
.sc_prog .sc_prog_list .item .nut_list img{
    width: 41px;
    min-width: 41px;
    max-width: 41px;
    height: 41px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -15px;
    border: 2px solid #fff;
}
.sc_prog .sc_prog_list .item .nut_list img:first-child{
    margin-left: 0;
}
.sc_prog .sc_prog_list .item .reg{
    margin-top: auto;
    display: block;
    border-radius: 150px;
    background-color: #FFE49D;
    text-align: center;
    padding: 20px 0;
}
.sc_prog .sc_prog_list .item .line{
    width: 74px;
    height: 5px;
    border-radius: 25px;
    background-color: #494F43;
    margin-bottom: 29px;
}




.sc_help .container{
    position: relative;
    border-radius: 25px;
    padding: 24px 30px 27px 30px;
    background-color: #494F43;
}
.sc_help .container::after{
    content: '';
    position: absolute;
    left: 50%;
    top: -32px;
    transform: translateX(-50%);
    width: 71px;
    height: 33px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('../img/triangle.png');
}
.sc_help form{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 8px;
    margin-bottom: 24px;
}
.sc_help form button{
	min-width: 409px;
	background-color: #FFE49D;
    border: none;
    padding: 23px 0;
}
.sc_help form input{
	margin-bottom: 0;
	padding: 22px;
	border-radius: 50px;
	text-align: center;
	width: 100%;
}
.sc_help h3{
    text-align: center;
    color: #fff;
    font-size: 30px;
    margin-bottom: 22px;
}
.sc_help p{
    color: #fff;
}
.sc_help h3 + p{
    margin-bottom: 33px;
    text-align: center;
}



.sc_for{
    padding-top: 82px;
    padding-bottom: 94px;
}
h2{
    font-size: 35px;
    text-align: center;
    margin-bottom: 79px;
    position: relative;
    text-transform: uppercase;
    color: #494F43;
}
h2 span{
    position: absolute;
    font-size: 121px;
    right: 50%;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(180, 166, 152, 0.11);
    font-family: 'Cormorant', serif;
    text-transform: uppercase;
    min-width: max-content;
}
.sc_for_list{
    display: flex;
    align-items: stretch;
    gap: 13px 33px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sc_for_list .item{
    width: 100%;
    flex: 1 1 33%;
    max-width: calc(50% - 16px);
    border: 1px solid #E1E1E1;
    padding: 29px 63px 28px 30px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 79px;
    justify-content: flex-start;
}
.sc_for_list .item .img_box{
    width: 105px;
    min-width: 105px;
    max-width: 105px;
    height: 105px;
    border-radius: 50%;
    background-color: #494F43;
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}




.intro_wrap{
    border-radius: 50px;
    background: #494F43;
    padding: 43px 43px 40px 40px;
    position: relative;
    overflow: hidden;
}
.intro_wrap .int_img{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 692px;
    height: 100%;
    object-fit: cover;
}
.intro_wrap .int_img.mob{
    display: none;
}
.intro_wrap h3{
    text-align: left;
    color: #FFF;
    margin-bottom: 43px;
    font-family: Cormorant;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.intro_wrap .title{
    color: #FFF;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 52px;
}
.intro_wrap .text{
    padding: 22px 0 30px 49px;
    width: 100%;
    max-width: 651px;
    position: relative;
    border-left: 1px solid #fff;
    margin-bottom: 39px;
    margin-left: 20px;
}
.intro_wrap .text::after{
    content: '';
    position: absolute;
    left: -3px;
    top: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
}
.intro_wrap .text::before{
    content: '';
    position: absolute;
    left: -3px;
    bottom: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
}
.intro_wrap .text p{
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 56px;
}
.intro_wrap .text p:last-child{
    margin-bottom: 0;
}
.intro_wrap .text p.ital{
    margin-bottom: 0;
    font-style: italic;
}
.intro_wrap .soc_box{
    display: flex;
    align-items: center;
}
.intro_wrap .soc_box .wrapper{
    display: flex;
    align-items: center;
    gap: 40px;
    margin-right: 74px;
}
.intro_wrap .soc_box .hor_line_mob{
    display: none;
}
.intro_wrap .soc_box .main_btn{
    margin-bottom: 0;
    color: #000;
    padding: 21px 70px;
    display: flex;
    font-size: 18px;
    max-width: 360px;
    background-color: #FFE49D;
    border-radius: 100px;
}
.intro_wrap .soc_box a{
    display: inline-block;
}
.intro_wrap .soc_box a:hover svg path{
    fill: #B4A698;
}
.intro_wrap .soc_box .main_btn svg{
    margin-left: 20px;
}


.sc_why{
    padding-top: 99px;
    padding-bottom: 91px;
    overflow: hidden;
}
.sc_why h2 span{
    right: initial;
    left: 50%;
}
.sc_why h3{
    text-transform: uppercase;
    position: relative;
    color: #494F43;
    font-size: 35px;
    min-width: max-content;
}
.sc_why h3 span{
    position: absolute;
    font-size: 121px;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(180, 166, 152, 0.11);
    font-family: 'Cormorant', serif;
    text-transform: uppercase;
}
.sc_why .box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.sc_why .box .text{
    width: 100%;
    max-width: 634px;
}
.sc_why .box .text p{
    margin-bottom: 25px;
    font-size: 20px;
}



.sc_team{
    overflow: hidden;
}
.sc_team .team_big{
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    height: 529px;
    margin-bottom: 109px;
}
.sc_team h2 span{
    right: initial;
    left: 50%;
}
.sc_team_list{
    display: flex;
    gap: 34px;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 82px;
}
.sc_team_list .item{
    width: 100%;
    border-radius: 25px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
    padding: 42px 33px 31px 36px;
}
.sc_team_list .item .cat_name{
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 17px;
}
.sc_team_list .item .team_cards{
    display: flex;
    gap: 10px;
    align-items: stretch;
    justify-content: flex-start;
    margin-top: 22px;
}
.sc_team_list .item .team_cards .card{
    max-width: 114px;
    min-width: 114px;
    height: 218px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 17px 23px;
    border-radius: 25px;
    overflow: hidden;
}
.sc_team_list .item .team_cards .card::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 91px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.sc_team_list .item .info{
    width: 100%;
    max-width: 368px;
    font-size: 16px;
}
.team_cards .card img{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    left: 0;
    top: 0;
}
.team_cards .card p{
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 12px;
}
.team_cards .card .name{
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px;
    text-align: center;
}
.sc_team .feeds_btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.sc_team .feeds_btns a{
    display: block;
    width: 100%;
    padding: 20px 0;
    border: 2px solid rgba(73, 79, 67, 1);
    color: #000;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
}
.sc_team .feeds_btns a.yellow{
    border: none;
    background-color: rgba(255, 228, 157, 1);
}


.feeds_slider_box{
    margin-top: 69px;
    padding-top: 0;
    margin-bottom: 101px;
}
.feeds_slider{
    background-color: rgba(73, 79, 67, 1);
    border-radius: 50px;
    padding: 108px 34px 39px 34px;
}


.slick-slide {
    margin: 0 25px;
}
.slick-list {
    margin: 0 -25px;
}
.slick-arrow{
    position: absolute;
    left: 0;
    top: 27px;
    color: transparent;
    font-size: 1px;
    width: 57px;
    height: 57px;
    z-index: 2;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
    background: transparent;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s ease;
}
.slick-arrow:hover{
    background-color: #B4A698!important;
    border: 1px solid #B4A698!important;
}
.slick-next{
    left: 118px;
    border: 1px solid #fff;
    background-color: #fff;
    background-image: url('../img/arrow-next.svg');
}
.slick-next:hover{
    background-image: url('../img/arrow-next-hover.svg');
}
.feeds_slider .slick-prev{
    background-image: url('../img/arrow_prev_white.svg');
}
.feeds_slider .slick-next{
    background-image: url('../img/arrow_next_black.svg');
}
.feeds_slider .slick-next:hover{
    background-color: #494F43!important;
    background-image: url('../img/arrow-next.svg');
}
.feeds_slider .slick-prev:hover{
    background-color: #fff!important;
    background-image: url('../img/arrow-prev.svg');
}
.feeds_slider .slick-slide img{
    width: 100%;
    border-radius: 20px;
}
.slick-slide.slick-active{
  height: 100%!important;
}
.slick-slide{
  height: 0px !important;
}
.slick-prev{
    left: 34px;
    background-image: url('../img/arrow-prev.svg');
}


.slick-dots li{
    display: inline-block;
    margin-right: 9px;
}
.slick-dots li button{
    color: transparent;
    font-size: 1px;
    width: 11px;
    max-width: 11px;
    height: 11px;
    min-height: 11px;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #fff;
    background: transparent;
}
.slick-dots-container {
    position: absolute;
    left: 202px;
    top: 45px;
    width: 105px;
    overflow: hidden;
    display: block;
    padding: 5px 0;
  }
  
  .slick-dots-container > ul {
    padding: 0;
    display: flex;
    transition: all 0.25s;
    position: relative;
    margin: 0;
    list-style: none;
    transform: translateX(0);
    align-items: center;
    bottom: unset;
    height: 100%;
  }
  
  .slick-arrow.slick-disabled{
    opacity: 0.2;
  }
  .slick-dots-container > ul li {
    width: 0.625rem;
    height: 0.625rem;
    margin: 0 0.25rem;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
  }
  
  .slick-dots-container > ul li button {
    font-size: 0;
    line-height: 0;
    display: block;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: 0 0;
  }
  
  .slick-dots-container > ul li.slick-active {
    transform-origin: center;
    background: #fff;
  }
  
  .slick-dots li button:before {
    display: none;
  }


.sc_edu h2{
    margin-bottom: 45px;
}
.sert_slider{
    padding-top: 130px;
    margin-bottom: 88px;
}
.sert_slider img{
    max-width: 100%;
}
.sert_slider .slick-arrow{
    border: 1px solid rgba(73, 79, 67, 1);
}
.sert_slider .slick-next{
    background-color: rgba(73, 79, 67, 1);
}
.sert_slider .slick-dots li button{
    border: 1px solid rgba(73, 79, 67, 1);
}
.sert_slider .slick-dots li.slick-active button{
    background-color: rgba(73, 79, 67, 1);
}
.sert_slider .slick-slide {
    margin: initial;
}
.sert_slider .slick-list {
    margin: initial;
}



.soc_about_us h2{
    font-size: 50px;
    text-align: center;
    position: relative;
    margin-bottom: 79px;
}
.soc_about_us h2 span{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(180, 166, 152, 0.11);
    text-transform: uppercase;
    font-size: 121px;
    font-weight: 600;
    font-family: 'Cormorant', serif;
    min-width: max-content;
}
.soc_ab_list{
    display: flex;
    gap: 19px;
    justify-content: space-between;
    align-items: center;

}
.soc_ab_list a{
    display: inline-flex;
    align-items: center;
    position: relative;
    border-radius: 100px;
    background-color: rgba(73, 79, 67, 1);
    padding: 19px 30px;
    width: 100%;
    max-width: 33%;
    transition: all 0.2s ease;
    padding-right: 60px;
}
.soc_ab_list a::after{
    position: absolute;
    content: '';
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: initial;
    background-image: url('../img/ab_soc_arrow.svg');
    transition: all 0.2s ease;
}
.soc_ab_list a:hover{
    box-shadow: 0px 4px 33px 0px rgba(0, 0, 0, 0.1);
}
.soc_ab_list a:hover::after{
    right: 25px;
}
.soc_ab_list a img{
    margin-right: 25px;
    max-height: 42px;
}
.soc_ab_list a span{
    color: #fff;
}
.feeds_slider_wrap h3{
    display: none;
}
.result_mob_wrap{
    display: none;
}



.dbone_bl {
	width: 100%;
	position: relative;
	margin-bottom: 100px;
}

.dbone_bl .absltt {
	position: absolute;
	opacity: 0;
	z-index: -100;
	top: 0px;
	left: 0px;
}


.sc_format{
    padding-top: 60px;
    padding-bottom: 100px;
}
.sc_format h2 span{
    right: initial;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.format_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #494F43;
    border-radius: 100px;
    padding: 34px 83px 34px 40px;
}
.format_box .go_to_site{
    display: block;
    position: relative;
    font-size: 20px;
    text-align: left;
    padding: 17px 70px 15px 33px;
    border-radius: 50px;
    background-color:#494F43;
    color: #fff;
    width: 100%;
    font-weight: 500;
    line-height: 1.3;
    max-width: 376px;
}
.format_box .go_to_site::after{
    content: '';
    position: absolute;
    width: 63px;
    height: 63px;
    border-radius: 50%;
    background-color: #fff;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/arrow-right-bk.svg');
    transition: all 0.2s ease;
}
.format_box .go_to_site:hover::after{
    background-position: 58% center;
}
.format_box .go_to_site::before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -74px;
    width: 8px;
    height: 90px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/vertical_line_sc.svg');
}
.format_box li{
    padding-left: 36px;
    margin-bottom: 7px;
    font-size: 18px;
    position: relative;
}
.format_box li:last-child{
    margin-bottom: 0;
}
.format_box li::after{
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #494F43;
}
.format_box .quote{
    width: 100%;
    max-width: 259px;
    position: relative;
    font-size: 18px;
    font-style: italic;
}
.format_box .quote::after, .format_box .quote::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 13px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('../img/quote_ico.svg');
}
.format_box .quote::after{
    left: -27px;
    top: -14px;
}
.format_box .quote::before{
    transform: scale(-1, 1);
    right: -5px;
    bottom: -14px;
}

.sert_slider .slick-dots{
    position: absolute;
    top: 38px;
    left: 220px;
}


@media (max-width:999px) {
	.dbone_bl {
		margin-bottom: 50px;
	}
}





@media screen and (max-width: 1440px){
    .intro_wrap .int_img{
        right: -100px;
    }
    .sc_prog .sc_prog_list .item{
        width: 400px;
        min-width: 400px;
        max-width: 400px;
    }
}
@media screen and (max-width: 1365px){
    .sc_first{
        background-size: contain;
    }
    .sc_prog .sc_prog_list{
        justify-content: center;
    }
}
@media screen and (max-width: 1280px){
    .format_box .go_to_site::before{
        display: none;
    }


	header ul li{
        padding: 11px;
    }
	header .langs{
        margin-left: 30px;
    }
}

@media screen and (max-width: 1024px){
    .team_cards .card .name{
        font-size: 14px;
        text-align: center;
        margin-bottom: 0;
    }
    .sc_format{
        padding-bottom: 10px;
    }
    .format_box{
        flex-direction: column;
        gap: 30px;
        border-radius: 26px;
        padding: 28px 20px 42px 20px;
    }
    .format_box .go_to_site{
        font-size: 15px;
        padding: 13px 60px 11px 25px;
        max-width: 295px;
    }
    .format_box .go_to_site::after{
        width: 49px;
        height: 49px;
    }
    .format_box .quote{
        padding-left: 15px;
    }
    .format_box .quote::after{
        left: -10px;
    }


    
  .sc_first .bg{
    font-size: 120px;
    bottom: 160px;
    letter-spacing: 0;
  }
    .container{
        padding: 0 20px;
    }
    .intro_wrap .text{
        padding-right: 30px;
        margin-bottom: 0;
        padding-bottom: 10px;
    }
    .sc_help form button{
        min-width: initial;
    }
    .feeds_slider_box{
        margin-bottom: 50px;
        margin-top: 30px;
    }
    .result_mob_wrap a{
        padding: 29px 32px 29px 29px;
        border-radius: 50px;
        background-color: #FFE49D;
        display: inline-flex;
        align-items: center;
        color: #000;
        font-family: Montserrat;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        transition: all 0.2s ease;
    }
    .result_mob_wrap{
        display: block;
        margin-top: 20px;
        border-radius: 50px;
        background-color: rgba(73, 79, 67, 1);
        text-align: center;
        padding: 42px 32px;
    }
    .feeds_slider_wrap{
        padding-top: 44px;
        background-color: rgba(73, 79, 67, 1);
        border-radius: 50px;
    }
    .feeds_slider_box .container, .intro_sect .container{
        padding: 0;
    }
    .sc_team .feeds_btns{
        display: none;
    }
    .soc_ab_list a img{
        margin-right: 15px;
    }
    .soc_ab_list a{
        min-width: 300px;
        max-width: 100%;
    }
    .sert_slider{
        margin-bottom: 67px;
    }
    .soc_about_us h2{
        font-size: 35px;
        margin-bottom: 55px;
        text-transform: initial;
    }
    .soc_ab_list{
        flex-direction: column;
        gap: 13px;
    }
    .about_sc h2{
        font-size: 30px;
    }
    .sc_edu h2{
        display: none;
    }
    .sc_team h2{
        margin-bottom: 36px;
    }
    .sc_why{
        padding-bottom: 53px;
    }
    .sc_team .team_big{
        height: 150px;
        margin-bottom: 64px;
    }
    .sc_team_list{
        flex-direction: column;
        margin-bottom: 20px;
    }
    .feeds_slider_wrap h3{
        display: block;
        text-align: center;
        color: #fff;
        font-family: Montserrat;
        font-size: 25px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    .sc_why .box{
        flex-direction: column;
        gap: 54px;
    }
    .int_img{
        display: none;
    }
    .intro_wrap{
        padding-right: 0;
    }
    .intro_wrap .int_img.mob{
        display: block;
        top: 200px;
        right: 0;
        max-width: 412px;
        object-fit: contain;
        height: auto;
        position: initial;
        margin-left: auto;
    }
    .intro_sect{
        padding-top: 20px;
    }
    .intro_wrap h3{
        font-size: 35px;
        margin-bottom: 25px;
    }
    .intro_wrap .title{
        font-size: 25px;
        margin-bottom: 0px;
    }
    .intro_wrap .text p{
        margin-bottom: 20px;
    }
    .intro_wrap .text{
        padding-left: 0;
        margin-left: 0;
        border: none;
    }
    .intro_wrap .text::before{
        display: none;
    }
    .intro_wrap .text::after{
        display: none;
    }

    .intro_wrap .soc_box{
        flex-direction: column-reverse;
        padding-right: 30px;
    }
    .intro_wrap .soc_box .main_btn{
        margin-left: 0;
        margin-bottom: 36px;
        padding: 28px 0;
        width: 100%;
        text-align: center;
        background-color: rgba(255, 228, 157, 1);
        color: #000;
        display: block;
    }
    .intro_wrap .soc_box .main_btn svg path{
        fill: #000;
    }
    .intro_wrap .soc_box .wrapper{
        margin-right: 0;
    }
    .intro_wrap .soc_box .hor_line_mob{
        display: block;
        margin-bottom: 36px;
    }

    .about_sc h2{
        min-width: initial;
    }
    .team_cards .card p{
        font-size: 10px;
    }
    .sc_team_list .item{
        padding-right: 20px;
        padding-left: 20px;
    }
    .sc_team_list .item .team_cards .card{
        width: 95px;
        min-width: 95px;
        max-width: 95px;
        height: 183px;
        padding-left: 13px;
        padding-right: 13px;
    }

    .sc_for_list{
        gap: 60px;
        justify-content: center;
    }
    .sc_team_list .item .team_cards{
        flex-wrap: wrap;
        gap: 5px;
    }
    .sc_for_list .item{
        flex-direction: column;
        padding: 52px 35px 31px 35px;
        position: relative;
        text-align: center;
        flex: 1 1 100%;
        max-width: 100%;
    }
    .sc_for_list .item .img_box{
        position: absolute;
        left: 50%;
        top: -35px;
        transform: translateX(-50%);
        width: 70px;
        min-width: 70px;
        max-width: 70px;
        height: 70px;
    }
    .sc_for_list .item .img_box img{
        width: 50%;
        height: 50%;
    }
    h2{
        font-size: 30px;
    }
    .sc_for{
        padding-top: 48px;
        padding-bottom: 31px;
    }
    .sc_help h3 + p{
        margin-bottom: 27px;
        font-size: 18px;
    }
    .sc_help p{
        text-align: center;
        font-size: 14px;
    }
    .sc_help form{
        flex-direction: column;
    }
    .sc_first p{
        font-size: 20px;
    }
    .sc_first h1{
        font-size: 26px;
    }
    .sc_first{
        padding-top: 175px;
        background-position: 50% 40%;
    }
    .about_sc h2 span, .sc_prog h2 span, h2 span{
        display: none;
    }
    .about_sc .container{
        flex-direction: column;
        gap: 0;
    }
    .about_sc h2{
        margin-bottom: 42px;
        width: 100%;
        text-align: center;
    }
    .sc_prog{
        padding-top: 65px;
    }
    .sc_prog .sc_prog_list .item{
        width: 359px;
        min-width: 359px;
        max-width: 359px;
        padding: 26px 23px 28px 29px;
    }





	header .right{
        display: none;
    }
	.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;
	}
	.burger{
        display: block;
    }
	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;
	}
}
