/* Переопределение slick */
.slick-dots {
    bottom: 20px;
}
.slick-dots li {
    margin: 0 0px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #d6d6d6;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: #842f46;
    opacity: 1;
}

.slick-prev:before, .slick-next:before {
    font-family: 'FontAwesome';
    font-size: 25px;
}

.slick-prev:before {
    content: "\f053";
}

.slick-next:before {
    content: "\f054";
}

.slick-prev {
    left: 25px;
    z-index: 10;
}

.slick-next {
    right: 25px;
}
/* Переопределение slick END */

body {
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	overflow-x: hidden;
	background-color: #f5f5f5;
}

:root {
	font-size: 14px;
}

a {
    color: #64001c;
}

a:hover {
    color: #410012;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

hr.dark_sep {
	border: none!important;
	background: url(../img/sep_dark.png) center no-repeat;
	height: 2px;
	width: 100%;
	margin: 50px 0;
}

/* my-btn */
.my-btn, .my-btn-wa {
    background-color: #852d48;
    border-color: #852d48;
    border: none;
    border-radius: 4px;
    color: #fff;
    text-shadow: 1px 1px 1px #9a4500;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    text-shadow: 1px 1px 15px rgba(255,255,255,.75);
}
.my-btn:hover, .my-btn-wa:hover {
    background-color: #64001c;
    border-color: #64001c;
    color: #fff;
}
.my-btn:focus, .my-btn-wa:focus {
    box-shadow: 0 0 0 0.2rem #852d4880;
}
.my-btn:not(:disabled):not(.disabled):active,
.my-btn-wa:not(:disabled):not(.disabled):active {
    background-color: #64001c;
    border-color: #64001c;
    color: #fff;
}
.my-btn:not(:disabled):not(.disabled):active:focus,
.my-btn-wa:not(:disabled):not(.disabled):active:focus {
   box-shadow: 0 0 0 0.2rem #852d4880; 
}

.my-btn-wa {
    padding-right: 46px;
    position: relative;
}

.my-btn-wa:before {
    background: #64001c;
    font-family: 'FontAwesome';
    content: "\f054";
    line-height: 30px;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    padding: 0px 13px;
    text-align: center;
    border-radius: 0px 4px 4px 0px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.my-btn-wa:hover:before {
    padding-right: 10px;
}

.my-btn--link {
	color: #fa7d15;
	font-style: italic;
}

.my-btn--link:hover {
	color: #fa7d15;
}



/* my-btn END*/


.header {
	padding: 20px 0;
	background-color: #ffffff;
}

.header__logo img {
	max-width: 100%;
	height: auto;
	width: 200px;
}

.header__contacts__item  {
	line-height: 25px;
	margin-bottom: 8px;
	font-size: 18px;
	position: relative;
}

.header__contacts__item a {
	color: #222;
}

.header__contacts__item i {
    font-size: 25px;
    color: #852d48;
    margin-right: 10px;
}

/* social_list */

.social_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.social_list li {
    display: inline-block;
    margin-right: 20px;
}

.social_list li:last-child {
  margin-right: 0;
}

.social_list a {
    color: #333;
    font-size: 30px;
}

.social_list a:hover {
    color: #832f49;
}

/* social_list END */
.popup__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s all;
}

.popup__bg.active {
    opacity: 1;
    pointer-events: all;
    transition: 0.5s all;
    z-index: 100;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    width: 400px;
    padding: 45px;
    transition: 0.5s all;
}

.popup.active {
    transform: translate(-50%, -50%) scale(1);
    transition: 0.5s all;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.popup label {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column-reverse;
}

.popup .label__text {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #cfd0d3;
    margin-bottom: 5px;
}

.popup input {
    height: 45px;
    font-size: 18px;
    border: none;
    outline: none;
    border-bottom: 1px solid #cfd0d3;
    width: 100%;
    padding: 0;
    color: #000;
}

.btn {
    display: inline-block;
    vertical-align: top;
    border: 0;
    font-family: 'Oswald', sans-serif !important;
    line-height: 158.3%;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s linear;
    transition: color .2s linear;
}
.btn-1 {
    background: #7f0000;
    box-shadow: 0 0 10px 0 rgb(0 172 232 / 0%);
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
}

.popup input:focus {
    border-bottom: 1px solid #2982ff;
}

.popup input:focus + .label__text {
    color: #2982ff;
}

.popup textarea {
    resize: none;
    width: 100%;
    height: 150px;
    border: none;
    outline: none;
    border-bottom: 1px solid #cfd0d3;
    font-size: 18px;
    padding-top: 5px;
}

.popup textarea:focus {
    border-bottom: 1px solid #2982ff;
}

.popup textarea:focus + .label__text {
    color: #2982ff;
}

.popup button {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    border: 2px solid #2982ff;
    background: #2982ff;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.5s all;
}

.popup button:hover {
    background: #fff;
    color:#2982ff;
    transition: 0.5s all;
}
/* main-menu */
.main-menu {
	padding: 0;
	margin-bottom: 15px;
}

.main-menu .navbar-nav {
	width: 100%;
}

.main_menu__item {
    position: relative;
}

.main_menu__item:before, .main_menu__item:last-child:after {
    position: absolute;
    top: 50%;
    left: -6px;
    margin-top: -10px;
    font-family: 'FontAwesome';
    /* content: "\f0a3"; */
    color: #e3c07c;
    font-size: 14px;
    -webkit-transition: -webkit-transform 0;
    -moz-transition: -moz-transform 0;
    transition: transform 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

.main_menu__item:last-child:after {
    right: -9px;
    left: auto;
}

.main_menu__item:hover {
    background-color: #852d48;
}

.main_menu__item:hover:before, 
.main_menu__item:hover + .main_menu__item:before,
.main_menu__item:hover:last-child:after {
    -webkit-transition: -webkit-transform 1s ease;
    -moz-transition: -moz-transform 1s ease;
    transition: transform 1s ease;
    -webkit-transform: rotate(720deg);
    -moz-transform: rotate(720deg);
    -ms-transform: rotate(720deg);
    -o-transform: rotate(720deg);
    transform: rotate(720deg);
}

.main_menu__item.active {
	background-color: #852d48;
	position: relative;
}

.main-menu .navbar-nav .nav-link {
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	text-shadow: 1px 1px 1px #151515;
	-webkit-transition: .2s ease-out;
	transition: .2s ease-out;
	/* padding: 20px 18px; */
	padding: 20px 5px;
}

.main-menu .navbar-nav .nav-link:hover {
	color: #fff;
	text-shadow: 1px 1px 15px rgba(255,255,255,.75);
}


.main-slider {
	margin-bottom: 30px;
}

.main-slider__item {
    height: 650px !important;
    width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
}

.main-slider__item_text-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    max-width: 700px;
    padding-top: 42px;
    text-align: center;
    transform: translate(-50%, -50%);
}

.main-slider__item__title {
    font-weight: 900;
    font-size: 42px;
    margin-bottom: 40px;
    line-height: 52px;
    color: #fff;
    text-shadow: 2px 2px 4px #000000, 0 0 1em #000000;
}

.main-slider__item__desc {
    font-size: 20px;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px #000000, 0 0 1em #000000;
}

.main-slider .slick-list {
    border-radius: 8px;
}


/* sbunav */
.subnav{
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  width: 100%;    
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #343a40;
  background-clip: padding-box;
  padding: 15px !important;
  column-gap: 1em;
  column-width: auto;
  -moz-column-gap: 1em;
  -webkit-column-gap: 1em;
  border-top: 1px solid #000;
  -webkit-box-shadow: 0 4px 14px 0 rgb(0 0 0 / 20%);
  box-shadow: 0 4px 14px 0 rgb(0 0 0 / 20%);
}
.subnav > ul{
  display: flex;
  flex-direction: column;
  gap:10px;
}
.subnav li a{
  padding: 0 !important;
  background: none !important;
}
.subnav li.active a{
  border-top:none !important;
}
.subnav li a{
  border-top:none !important;
}
.subnav .nav-item:hover {
    background-color: initial;
}
.nav-item:hover > .subnav {
  display: flex !important;
  flex-direction: column;
  gap: 15px;
}
.headertwo__item nav > ul li{
  position: relative;
}
.has-subnav {
  padding-right: 0;
}
.subnav_active{
  display: block;
}
/* main-menu END*/


.suggestion {
   
    color: #fff;
    padding: 83px 0 10rem;
  
}
.suggestion.cat-a{

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;   
}
.suggestion.cat-b{

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;   
}
.suggestion.cat-c{

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;   
}
.suggestion.cat-d{

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;   
}

.suggestion__title {
     font-size: calc(30px + 30 * (100vw / 1920));
    font-weight: lighter;
    margin-bottom: 4.75rem
}
@media (max-width: 768px) {
.suggestion__title {
    font-size: calc(30px + 30 * ((100vw - 320px) / (1280 - 320)));;
}
.white-advantages {
    padding-bottom: 450px;
}
}
li{
    list-style-type:none;
}
a {
  text-decoration: none !important;
}
@media (max-width: 576px) {
.white-advantages-item {
    padding-left: 0 !important;
}
.white-advantages__img {
    padding-right: 20px;
}
.white-advantages-item__link{
    padding: 0 !important;
}
.white-advantages-item:first-child .white-advantages__sub-title, .white-advantages-item .white-advantages__sub-title{
    font-size: 15px !important;
}
.suggestion__text{
    font-size: 20px !important;
}
}
@media (max-width: 430px) {
    .blue-advantages__img, .white-advantages__img {
    height: 100px;
    padding-right: 5px !important;
}
}
@media (max-width: 992px) {
    .white-advantages__content {
    min-height: auto;
}
.white-advantages-item:first-child .white-advantages__sub-title, .white-advantages-item .white-advantages__sub-title {
    font-size: 1.875rem;
}
}
.certificats {
    padding: 85px 0;
}

.certificats.cat-a{
        background-image: url(../../img/АЗС/bg/bg-bonus-a.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.certificats.cat-b{
        background-image: url(../../img/АЗС/bg/bg-bonus-b.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.certificats.cat-c{
       background-image: url(../../img/АЗС/bg/bg-card.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; 
}
.certificats .certificats__title {
    font-weight: 700;
    padding-top: 75px;
   font-size: calc(30px + 30 * (100vw / 1920));
    margin-bottom: 3rem;
}
@media (max-width: 768px) {
.certificats .certificats__title  {
    font-size: calc(30px + 30 * ((100vw - 320px) / (1280 - 320)));;
}
    
}

.pay-item{
    background-color: #f4f4f4;
    padding: 3rem 10px;
     text-align: center;
}


.pay-img__wrap{
    height:150px;
    width:100%;
    display:flex;
    justify-content:center;
}
.pay-item img{
    height:125px;
}
.pay-card{
    height:auto !important;
    width:100%;
}
.pay-item h4{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
   
}
.pay-item p{
    font-size: 1.15rem;
}
@media(max-width:768px){
    .certificats .col-12{
        margin-bottom: 2rem;
    }
    .pay-card{
    height:auto !important;
    width: 50%;
}
}
@media(max-width:500px){
    .pay-card{
    height:auto !important;
    width: 75%;
}
}

.suggestion__title strong {
    font-weight: 700
}

.suggestion__text {
    line-height: 101.9%;
    font-size: 31px;
    margin-bottom: 1.875rem;
padding-left: 45px;
    background: url(/img/success.png) no-repeat ;
 
    -webkit-background-size: 32px;
    background-size: 32px;
}

.suggestion__text2{
    font-size: 1.75rem;
    font-weight: 600;
     line-height: 101.9%;
     text-align: center;
     margin-top: 5rem;
}

.suggestion__item {
    margin-bottom: 3rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center
}

.suggestion__item span {
    width: 100%;
    text-align: center;
    font-size: 1.5625rem
}

.suggestion__img-wrap {
    min-width: 86px;
    max-width: 86px;
    padding-right: 1rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.suggestion__link-wrap {
    text-align: center;
    margin-top: 4rem
}

.suggestion__link {
    font-weight: 700;
    text-transform: uppercase;
    background-color: #ffc808;
    font-size: 1.6875rem;
    padding: 1.4375rem 2.375rem;
    -webkit-transition: .2s;
    transition: .2s
}

.suggestion__link:active,
.suggestion__link:hover {
    background-color: #e7b300;
    color: #000;
}
/*  undermenu */

.undermenu__item {
    padding-left: 40px;
    min-height: 30px;
    margin-bottom: 30px;
}

.undermenu__item .icon {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 26px;
    height: 26px;
    background: #d7dfea;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -ms-border-radius: 13px;
    -o-border-radius: 13px;
    border-radius: 13px;
}


.white-advantages {
  
    padding: 12.5rem 0;
    color: #fff
}
.white-advantages.cat-a{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.white-advantages.cat-b{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.white-advantages.cat-c{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.white-advantages.cat-bc{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.white-advantages.cat-d{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.white-advantages__title {
    font-size: calc(30px + 30 * (100vw / 1920));
    font-weight: lighter;
    padding-bottom: 6.25rem
}
@media (max-width: 768px) {
.white-advantages__title {
    font-size: calc(30px + 30 * ((100vw - 320px) / (1280 - 320)));;
}
}
.white-advantages__title strong {
    font-weight: 700
}

.white-advantages-item {
    padding-bottom: 2rem;
    padding-right: 20px
}

.white-advantages-item:last-child {
    padding-right: 1rem;
    padding-bottom: 0
}

.white-advantages-item:nth-child(even) {
    padding-right: 0
}

.white-advantages__img {
    padding-right: 27px;
    -webkit-filter: grayscale(100%) brightness(150%);
    filter: grayscale(100%) brightness(150%)
}

.white-advantages-item__link {
    padding: 37px 0 18px 37px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-transition: .2s;
    transition: .2s;
}



.white-advantages__content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
     min-height:170px;
}



.white-advantages__text {
    font-size: 1.0625rem
}

.white-advantages__sub-title {
    font-size: 1.875rem;
    font-weight: 800;
    padding-bottom: 14px;
    line-height: 95.8%
}



.bonus-card {

    padding: 6rem 0 12rem
}
.bonus-card.cat-a{
        background-image: url(/img/bg-bonus-a.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bonus-card.cat-b{
        background-image: url(/img/bg-bonus-b.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bonus-card.cat-c{
       background-image: url(img/bg-card.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; 
}
.bonus-card__title {
     font-size: calc(30px + 30 * (100vw / 1920));
      font-weight: 700;
    padding-bottom: 4.8125rem
    
}

@media (max-width: 768px) {
.bonus-card__title {

font-size: calc(30px + 30 * ((100vw - 320px) / (1280 - 320)));;
    
}
}




.bonus-card-content__text p {
    font-weight: 500;
    font-size: 1.5625rem;
    line-height: 109.5%;
    padding-bottom: 3.375rem;
    max-width: 645px;
    
}

.bonus-card-content__list {
    display: -webkit-box;
    display: flex
}

.bonus-card-content__item {
    width: 26.5%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-right: 1rem
}
.bonus-card-content__item img{
    width:90%;
}

.bonus-card-content__item:last-of-type {
    margin-right: 0
}

.bonus-card-content__item h4 {
    margin-top: .8125rem;
    text-align: center;
    line-height: 109.5%;
    font-size: 1rem;
    font-weight: 300
}

.bonus-card__img {
    display: block;
    margin: 0 auto 1.5rem;
    width:70%;
}
.bonus-card__title2{
    display: none;
}
.bonus-card__link {
    font-size: 1.6875rem;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #2b94cf
}

.bonus-card__link:hover {
    color: #ffc808
}

.azs-bonus-card {
    padding: 91px 0 120px 0;
    
}

/*  undermenu END*/

.line-breadcrumb .breadcrumb {
	background-color: transparent;
	margin: 0;
}

.line-breadcrumb .breadcrumb .breadcrumb-item {
	line-height: 25px;
}

.line-breadcrumb .breadcrumb .breadcrumb-item a {
	color: #ff9d4d;
}

.line-breadcrumb .breadcrumb .breadcrumb-item.active {
	color: #5a5a5a;
}

.line-breadcrumb .breadcrumb .breadcrumb-item:nth-child(2) a {
	background-image: url(../img/breadcrumbs_home.png);
	background-repeat: no-repeat;
	background-position: top;
	display: inline-block;
	height: 25px;
	width: 25px;
	margin-right: 0;
	text-indent: 9999em;
}

.line-breadcrumb .breadcrumb .breadcrumb-item:nth-child(2)::before {
	content: none;
}

.line-breadcrumb .breadcrumb .breadcrumb-item::before {
	color: #6c757d;
}

.content {
	background-color: #fff;
	margin-bottom: 40px;
	padding: 20px 30px;
	height: calc(100% - 20px);
}
.content img{
    max-width: 100%;
    height: auto;
}


h1 {
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
	font-size: 36px;
}

.content [href$='.pdf'] {
	background: url(../img/acrobat.png) right top no-repeat;
	padding-right: 20px;
}

.content [href$='.zip'] {
	background: url(../img/zip.png) right top no-repeat;
	padding-right: 20px;
}

.content [href$='.doc'], .content [href$='.docx'] {
	background: url(../img/word.png) right top no-repeat;
	padding-right: 20px;
}

.content [href$='.xls'] {
	background: url(../img/excel.png) right top no-repeat;
	padding-right: 20px;
}

.fast_links {
    background: #ddd;
    padding: 60px 0px 50px;
    background-size: cover;
    background-position: center;
    background-image: url(../img/bg/fast_link_bg.jpg);
}

.fast_links_block {
	background-color: #fcfcfc;
	border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 0 6px rgba(48,48,48,.15);
    margin-bottom: 30px;
}

.fast_links_block img{
    width: 100%;
}

.quotes {
	padding: 60px 0px;
	background-color: #fff;
}

.quotes-slider {
	margin-bottom: 30px;
}

.quotes-slider .slick-prev {
    left: 15px;
    z-index: 10;
}

.quotes-slider .slick-next {
    right: 15px;
}

.quotes-slider .slick-prev:before, .quotes-slider .slick-next:before {
    color: #000;
}

.quotes-slider__item .name {
	font-size: 30px;
}

.quotes-slider__item blockquote {
	border: none;
	text-align: left;
	position: relative;
	margin: 10px 0;
	font-size: 24px;
	line-height: 30px;
	font-style: italic;
	padding: 20px 75px;
}


/* reviews */
.reviews {
	padding: 40px 0;
    background-color: #f5f5f5;
}

.reviews-item {
    margin-bottom: 20px;
}

.reviews-item__content {
    padding: 24px 29px;
    border: 1px solid #7f3937;
    border-radius: 5px;
    position: relative;
    margin-bottom: 15px;
    background-color: #fff;
    box-shadow: 0 5px 10px #2d2c2c;
}

.reviews-item__content:before {
    position: absolute;
    bottom: -11px;
    left: 20px;
    content: '';
    height: 0;
    width: 0;
    border-top: 11px solid #7f3937;
    border-right: 10px solid transparent;
}

.reviews-item__content:after {
    position: absolute;
    bottom: -8px;
    left: 21px;
    content: '';
    height: 0;
    width: 0;
    border-top: 8px solid #fff;
    border-right: 7px solid transparent;
}

.reviews-item__content blockquote{
    margin: 0;
    max-height: 130px;
    overflow: hidden;
}


.reviews-item__name {
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: #7f3937;
    text-transform: uppercase;
    margin-right: 5px;
}


section.reviews_inner {
    background-color: #f5f5f5;
}

.reviews_inner .reviews-item-inner {
    margin-bottom: 20px;
}

.reviews_inner .reviews-item-inner .reviews-content{
    padding: 24px 29px;
    border: 1px solid #7f3937;
    border-radius: 5px;
    position: relative;
    margin-bottom: 15px;
    background-color: #fff;
}
.reviews_inner .reviews-item-inner .reviews-content:before {
    position: absolute;
    bottom: -11px;
    left: 20px;
    content: '';
    height: 0;
    width: 0;
    border-top: 11px solid #7f3937;
    border-right: 10px solid transparent;
}

.reviews_inner .reviews-item-inner .reviews-content:after {
    position: absolute;
    bottom: -8px;
    left: 21px;
    content: '';
    height: 0;
    width: 0;
    border-top: 8px solid #fff;
    border-right: 7px solid transparent;
}

.reviews_inner .reviews-item-inner .reviews-name {
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: #7f3937;
    text-transform: uppercase;
    margin-right: 5px;
}

.reviews_inner .reviews-item-inner .reviews-date {
}


.reviews_inner.comments .reviews-item-inner .reviews-content:before {
    top: -11px;
    bottom: auto;
    border-bottom: 11px solid #7f3937;
    border-top: none;
}
.reviews_inner.comments .reviews-item-inner .reviews-content:after {
    top: -8px;
    bottom: auto;
    border-bottom: 8px solid #fff;
    border-top: none;
}

.reviews_inner.comments .reviews-item-inner .reviews-content {
    margin-top: 20px;
}

.reviews_inner.comments .reviews-item-inner {
    margin-bottom: 40px;
}

/* reviews END*/

/* main_callback */

.main_callback {
    background-image: url('../img/bg/avtodrom3.jpg');
    padding: 60px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.main_callback .control-label {
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 1px #000;
}

/* main_callback END */



.achievements {
	padding: 50px 0;
	background-color: #fff;
}

.achievements-slider .slick-dots {
    bottom: -20px;
}

.achievements-slider .slick-prev {
    left: 15px;
    z-index: 10;
}

.achievements-slider .slick-next {
    right: 15px;
}

.achievements-slider .slick-prev:before, .achievements-slider .slick-next:before {
    color: #000;
}

/* aside */

.aside-instructors, .aside-article, .aside-foto{
	background: #fff;
	padding: 12px;
	margin-bottom: 20px;
	border-radius: 5px;
}

.aside-instructors h3 {
	color: #000;
	background: 0 0;
	text-shadow: 1px 1px 1px #000;
	border: none;
	border-bottom: 1px dashed #484848;
	padding: 0 0 12px;
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 28px;
}

.aside-instructors .aside-instructors__list {
	padding-left: 20px;
	color: #000;
}

.aside-instructors .aside-instructors__list li {
	line-height: 20px;
}

/* .aside-instructors .aside-instructors__list a {
    color: #ff9d4d;
}

.aside-instructors .aside-instructors__list a:hover {
    color: #ffb980;
}
 */
.aside-foto h3 {
	color: #000;
	background: 0 0;
	text-shadow: 1px 1px 1px #000;
	border: none;
	border-bottom: 1px dashed #484848;
	padding: 0 0 12px;
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 28px;
}

.aside-article h3 {
	color: #000;
	background: 0 0;
	text-shadow: 1px 1px 1px #000;
	border: none;
	border-bottom: 1px dashed #484848;
	padding: 0 0 12px;
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 28px;
}

.aside-article .aside-article__content {
	color: #000;
}

.aside-article .aside-article__content h4 {
	font-weight: 700;
}

/* aside END*/



.instructors-list__item {
	margin-bottom: 30px;
}

.instructors-list__item h2 {
	font-size: 21px;
	line-height: 30px;
}

.instructors-list__item h2 a {
	color: #08c;
}

.instructors-list__item h2 a:hover {
	text-decoration: none;
}

.instructors-list__item img, .instructor-foto, .main_img_page {
	border-radius: 15px;
	box-shadow: 2px 0 5px rgba(0,0,0,.8);
	width: 100%;
}

.album_fotothumb_block {
	margin-bottom: 10px;
}

.album_thumb_block {
	margin-bottom: 20px;
	text-align: center;
}

.album_thumb_block h2 {
	font-size: inherit;
}

.album_fotothumb_block img,.album_thumb_block img {
	width: 100%;
	border-radius: .25em;
}

/* news  */
.news-block-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #efefef;
    padding-top: 15px;
    padding-bottom: 15px;
}

.news-date {
    margin-bottom: 20px;
}

.news-desc {
    margin-bottom: 10px;
}

/* news END */

.footer {
	background: #343a40;
	padding: 50px 0 30px;
	color: #fff;
}

.footer a {
	color: #fff;
}
.footer a:hover {
	color: #fff;
}

.footer__title {
	font-size: 26px;
	line-height: 34px;
	margin-bottom: 16px;
	color: #ff953a;
}

.footer__text p {
	margin-bottom: 18px;
}

.footer_menu {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer_menu li{
    margin-bottom: 20px;
}

.footer_menu li a{
    font-size: 18px;
    color: #fff;
}

.footer .social_list a {
    color: #fff;
    font-size: 30px;
}


@media (max-width:992px) {
	.title-block {
		font-size: 65px;
	}
	.main-menu {
        padding: .5rem 1rem;
    }
}

@media (max-width:768px) {
	.title-block {
		font-size: 55px;
	}
	.main-slider__item__title {
        font-size: 30px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    .main-slider__item__desc {
        font-size: 14px;
    }
}

@media (max-width:576px) {
	.title-block {
		font-size: 38px;
	}
}

@media (max-width:390px) {
	.title-block {
		font-size: 32px;
	}
}

@media (max-width:374.98px) {
	:root {
		font-size: 12px;
	}
}