* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

BODY {
  font: 13px/1.4 Verdana, sans-serif;
  color: #1a212d;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

MAIN, SECTION {
  display: block;
}

IMG {
  border: 0;
  vertical-align: middle;
}

A {
  color: #E41B1B;
}

H1 {
  font: 25px/1.2 "GeometriaBold", Arial, FreeSans, sans-serif;
  color: #252b33;
  font-weight: normal;
  margin-bottom: 20px;
}

H2 {
  font: 21px/1.2 "GeometriaBold", Arial, FreeSans, sans-serif;
  color: #252b33;
  letter-spacing: 2px;
  font-weight: normal;
  text-transform: uppercase;
}

TABLE {
  border: 0;
  border-collapse: collapse;
}

INPUT, TEXTAREA {
  font-family: inherit;
  color: inherit;
  font: inherit;
}

:focus {
  outline: none;
}

BUTTON::-moz-focus-inner {
  border: none;
}

BUTTON, INPUT, TEXTAREA, SELECT {
  border: none;
  border-radius: 0;
  background: none;
}

INPUT:not([type=checkbox]):not([type=radio]), TEXTAREA {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

INPUT::-ms-clear {
  display: none;
}

.responsive-media {
  position: relative;
  background-position: center;
}

.responsive-media:before {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.responsive-media > picture {
  background-position: center;
}

.responsive-media > video,
.responsive-media > picture,
.responsive-media > picture > img,
.responsive-media > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

img[data-object-fit="contain"] {
  -o-object-fit: contain;
  object-fit: contain;
}

img[data-object-fit="cover"] {
  -o-object-fit: cover;
  object-fit: cover;
}

img[data-object-fit="scale-down"] {
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

img[data-object-fit="none"] {
  -o-object-fit: none;
  object-fit: none;
}

.fit-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fit-img > img {
  opacity: 0 !important;
}

.fit-img--cover {
  background-size: cover;
}

.fit-img--contain {
  background-size: contain;
}

.container {
  width: 100%;
  max-width: 1170px;
}

.container .container {
  max-width: none;
  padding: 0;
}

.link-more {
  font-size: 12px;
  text-decoration: none;
}

.block-title H2 {
  display: block;
  margin-bottom: 0;
}

.block-title .link-more {
  display: inline-block;
  margin-top: 10px;
}

.clickable-pic {
  overflow: hidden;
}

.clickable-pic IMG {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform-origin: center center 0;
  transform-origin: center center 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.clickable-pic-item:hover .clickable-pic IMG {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.block-bg {
  padding: 30px 0;
  margin: 0 !important;
  background: #f2f0f0;
  /*&:not(.columns-configurable-block) {
		padding-bottom: 30px;
	}*/
	
}










.block-bg .container > *:not(DIV):last-child {
  margin-bottom: 0;
}

.header-block, .header-block-white {

  padding: 28px 0;
  background: #f2f0f0;
}

.header-block H2, .header-block-white H2 {
  margin-bottom: 0;
}

.header-block-link {
  display: inline-block;
  font-size: 12px;
  margin-top: 10px;
}

.header-block_fact {
  background: #fff;
  padding-bottom: 20px;
}

.button {
  display: inline-block;
  min-width: 94px;
  font: 10px/20px "GeometriaBold", Arial, FreeSans, sans-serif;
  letter-spacing: 0.8px;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 20px 5px;
  margin-bottom: 10px;
  margin-right: 15px;
  border: 2px solid #E41B1B;
  border-radius: 20px;
  background-color: #E41B1B;
  cursor: pointer;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

.button:hover {
  color: #fff;
  text-decoration: none;
  background: #0065ad;
}

.button_green {
  border-color: #98b02e;
  background-color: #98b02e;
}

.button_green:hover {
  border-color: #829b15;
  background-color: #829b15;
}

.button_green-border {
  color: #1a212d;
  border-color: #98b02e;
  background-color: transparent;
}

.button_green-border:hover {
  color: #1a212d;
  background-color: #e6e9dc;
}

.button_blue-border {
  color: #252b33;
  border-color: #E41B1B;
  background-color: transparent;
}

.button_blue-border:hover {
  color: #fff;
  background-color: #E41B1B;
}

.no-scroll {
  overflow: hidden;
}

.scroll-top {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.scroll-top:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.scroll-top_visible {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 768px) {
  .container {
    padding-right: 22px;
    padding-left: 22px;
  }
  .container .container {
    padding-right: 0;
    padding-left: 0;
  }
  H1 {
    font-size: 36px;
    margin-bottom: 35px;
  }
  H2 {
    font-size: 30px;
  }
  .block-title H2 {
    display: inline-block;
  }
  .block-title .link-more {
    margin-left: 21px;
  }
  .header-block H2, .header-block-white H2 {
    display: inline-block;
  }
  /*.header-block {
		padding: 53px 0 32px 0; 
	}*/
  .header-block-white {
    background: transparent;
    /*padding: 23px 0 0 0;*/
    padding: 0;
    /*margin: 53px 0 32px 0;*/
    margin: 28px 0;
    /* task 313 */
  }
  .header-block_fact {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .header-block-link {
    margin-left: 21px;
  }
  .button {
    padding: 8px 32px;
  }
  .block-bg {
    padding: 45px 0;
    /*&:not(.columns-configurable-block) {
			padding-bottom: 45px;
		}*/
  }
}

@media (min-width: 992px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  H2 {
    font-size: 32px;
  }
  
  .header-block {
    /*padding: 83px 0 55px 0;*/
    padding: 41px 0 28px 0;
    /* task 313 */
    /*margin-top: 45px;*/
  }
  .header-block-white {
    /*margin: 83px 0 55px 0;*/
    margin: 41px 0 28px 0;
    /* task 313 */
  }
  .header-block_fact {
    padding-top: 25px;
    padding-bottom: 20px;
  }
}




HEADER {

margin-top:0!important;
padding-top :0!important;
  display: block;
  position: relative;
  background-image: url(header-patterns.png);
  background-color: rgb(255 255 255 / 11%);
  background-position: top center;
  background-size: contain;
  background-repeat: repeat-x;
}







HEADER .container {
  position: relative;
}

.logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  text-align: center;
  padding-top: 17px;
  background: #252b33;
}

.logo IMG {
  width: 17px;
  height: auto;
}

.menu-sm {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 56px;
  height: 56px;
  background: #ff151e;
  cursor: pointer;
}

.menu-sm__wrap {
  position: absolute;
  top: 1px;
  left: 35px;
  bottom: 0;
}

.menu-sm__wrap > DIV {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -14px;
  margin-top: -2px;
  width: 15px;
  height: 2px;
  background: #fff;
}

.menu-sm__wrap > DIV:nth-child(1) {
  margin-top: -7px;
}

.menu-sm__wrap > DIV:nth-child(3) {
  margin-top: 3px;
}

.call-sm {
  display: none;
  position: absolute;
  top: 0;
  right: 56px;
  bottom: 0;
  text-align: right;
  background: #fff;
}

.call-sm A {
  font-size: 0;
  line-height: 56px;
  display: inline-block;
  width: 56px;
  height: 56px;
  text-align: center;
  background: #B50000;
}

.call-sm__icon {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.open-burger .menu-sm__wrap > DIV {
  background: #fff;
}

.open-burger .menu-sm__wrap > DIV:nth-child(1) {
  margin-top: -2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.open-burger .menu-sm__wrap > DIV:nth-child(2) {
  opacity: 0;
}

.open-burger .menu-sm__wrap > DIV:nth-child(3) {
  margin-top: -2px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .open-burger .call-sm, .open-burger .add-menu {
    display: block;
  }
  .open-burger .logo, .open-burger .add-menu > UL > LI:not(.add-menu__select-city) {
    display: none;
  }
  .open-burger .add-menu__select-city {
    margin-left: 5px;
  }
  .open-burger .header1__wrapper {
    max-width: 100%;
    overflow: hidden;
  }
}

.header1 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #f7f7f7;

}



@media (max-width: 991px) {
  .header1 .container {
    padding: 0px;
  }
}

.header1__wrapper {
  padding: 0 10px;
}

.header1__dealer-name {
  font: 14px/1.2 "GeometriaBold", Arial, FreeSans, sans-serif;
  color: #E41B1B;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.header1__dealer-city {
  display: none;
}

.header1__phone-wrap:nth-child(n+2) {
  display: none;
}

.header1__phone-unit {
  display: none;
}

.header1__phone {
  display: none;
  font-size: 16px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  color: #252b33;
  text-align: right;
}

.header1__phone > SPAN {
  white-space: nowrap;
  padding-left: 15px;
}

.header1__phone A {
  color: #252b33;
  text-decoration: none;
}

.add-menu {
  display: none;
}

.add-menu UL {
  list-style-type: none;
  margin-bottom: 0;
}

.add-menu > UL > LI {
  display: inline-block;
  margin-left: 24px;
}

.add-menu A {
  font-size: 12px;
  font-family: "GeometriaRegular", Arial, FreeSans, sans-serif;
  color: #4e4e4e;
  text-decoration: none;
  white-space: nowrap;
}

.add-menu__icon {
  position: relative;
  top: -2px;
  width: 11px;
  height: 12px;
  color: #10222d;
  margin-right: 4px;
}

.add-menu_sm {
  display: block;
}

.add-menu_sm > UL > LI {
  display: block;
  margin-top: 20px;
  margin-left: 0;
}

.add-menu_sm .add-menu__icon {
  margin-right: 10px;
}

.select-city {
  position: relative;
}

.select-city__name-wrap {
  white-space: nowrap;
}

.select-city__name {
  position: relative;
  font-size: 12px;
  font-family: "GeometriaRegular", Arial, FreeSans, sans-serif;
  color: #4e4e4e;
  padding-right: 17px;
  cursor: pointer;
}

.select-city__name:after {
  content: '';
  position: absolute;
  top: 5px;
  right: 0;
  border: 4px solid transparent;
  border-top: 4px solid #4e4e4e;
}

.select-city__list-wrap {
  /*display: none;*/
  visibility: hidden;
  position: fixed;
  z-index: 11;
  top: 56px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 10px;
  background: #fff;
  overflow-y: auto;
}

.select-city__list-wrap LI {
  display: block;
  font-size: 12px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  color: #252b33;
  text-transform: uppercase;
  margin: 0;
  padding: 13px 15px 11px 15px;
  cursor: pointer;
}

.select-city__list-wrap LI:not(.select-city__active-item):hover {
  color: #fff;
  background: #E41B1B;
}

.select-city_open .select-city__name {
  color: #E41B1B;
}

.select-city_open .select-city__name:after {
  top: 1px;
  border-top-color: transparent;
  border-bottom: 4px solid #E41B1B;
}

.select-city_open .select-city__list-wrap {
  /*display: block;*/
  visibility: visible;
}

.select-city_open .add-menu__icon {
  fill: #E41B1B;
}

LI.select-city__active-item {
  color: #9b9b9b;
  cursor: auto;
}


.header2 {
  display: none;
  /*position: absolute;*/
  position: fixed;
  z-index: 10;
  /*top: 100%;*/
  top: 56px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 11px 0 54px 0;
  background: #fff;
  overflow-y: auto;
}

.header2_open {
  display: block;
}

.menu UL {
  list-style: none;
  margin-bottom: 0;
}

.menu LI {
  border-bottom: 1px solid #B50000;
}

.menu UL UL {
  padding-left: 15px;
  border-top: 1px solid #B50000;
}

.menu UL UL LI:last-child {
  border: 0;
}

.menu UL UL A {
  font-size: 10px;
  color: #fff;
  padding: 13px 0 12px 0;
}

.menu .menu__sub UL {
  display: none;
}

.menu .menu__sub > A, .menu .menu__sub > SPAN {
  position: relative;
}

.menu .menu__sub > A:after, .menu .menu__sub > SPAN:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background: #B50000;
}

.menu .menu__sub > A:before, .menu .menu__sub > SPAN:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 5px;
  width: 2px;
  height: 12px;
  margin-top: -6px;
  background: #B50000;
}

.menu .menu__sub_open > A, .menu .menu__sub_open > SPAN {
  color: #fff;
}

.menu .menu__sub_open > A:before, .menu .menu__sub_open > SPAN:before {
  display: none;
}

.menu .menu__sub_open > A:after, .menu .menu__sub_open > SPAN:after {
  background: #fff;
}


.menu A, .menu SPAN {
  display: block;
  font-size: 12px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 0 11px 0;
  cursor: pointer;
}

.menu A:not([href]) {
  cursor: default;
}

@media (min-width: 768px) {
  .menu-sm {
    position: relative;
    width: 84px;
    height: 84px;
  }
  .menu-sm__wrap {
    position: absolute;
    top: 1px;
    left: 46px;
  }
  .menu-sm__wrap > DIV {
    width: 21px;
  }
  .menu-sm__wrap > DIV:nth-child(1) {
    margin-top: -8px;
  }
  .menu-sm__wrap > DIV:nth-child(3) {
    margin-top: 4px;
  }
  .logo {
    width: 84px;
    height: 84px;
    padding-top: 28px;
  }
  .logo IMG {
    width: 26px;
  }
  .add-menu {
    display: block;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    margin-top: 12px;
  }
  .add-menu > UL > LI:first-child {
    margin-left: 0;
  }
  .add-menu_sm {
    display: none;
  }
  .header1__wrapper {
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
  }
  .header1__dealer-name {
    font-size: 16px;
    text-align: left;
  }
  .header1__phone {
    display: block;
  }
  .header1__phone-wrap {
    white-space: nowrap;
  }
  .header2 {
    position: absolute;
    top: 100%;
    bottom: auto;
    overflow-y: visible;
  }
  .select-city__list-wrap {
    position: absolute;
    top: 100%;
    left: -22px;
    bottom: auto;
    width: 183px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 9px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    overflow-y: visible;
  }
  .select-city__list-wrap:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0px;
    left: 35px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 5px solid black;
    border-color: transparent transparent #fff #fff;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
    -webkit-box-shadow: -3px 3px 5px 0 rgba(0, 0, 0, 0.05);
    box-shadow: -3px 3px 5px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
  }
  .select-city__list-wrap LI {
    font-family: Verdana, sans-serif;
    text-transform: none;
    padding: 0;
    margin: 15px;
  }
  .select-city__list-wrap LI:first-child {
    margin-top: 7px;
  }
  .select-city__list-wrap LI:last-child {
    margin-bottom: 7px;
  }
  .select-city__list-wrap LI:not(.select-city__active-item):hover {
    color: #E41B1B;
    background: none;
  }
  .select-city__list {
    max-height: 288px;
    overflow-y: auto;
  }
}

@media (min-width: 992px) {
  .logo {
    position: absolute;
    z-index: 11;
    top: 0;
    left: 15px;
    width: 123px;
    height: 112px;
    padding-top: 37px;
  }
  .logo IMG {
    width: 35px;
    height: 39px;
  }
  .menu-sm {
    display: none;
  }
  .add-menu {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    width: auto;
    margin-top: 0;
  }
  .add-menu > UL > LI:first-child {
    margin-left: 24px;
  }
  
  
  .header1 {z-index:99;}
  
  .header1__wrapper {
    width: 100%;
    height: 156px;
    padding: 0 0 0 0px;
  }
  .header1__wrapper_azgaz {
    height: 184px;
  }
  
  
  .header1__dealer-name {
    min-width: 30%;
    max-width: 35%;
    font-size: 18px;
    padding-right: 37px;
  }
  
  
  .header1__dealer-city {
    display: block;
    font-family: "GeometriaMedium", Arial, FreeSans, sans-serif;
    font-size: 10px;
    margin-top: 5px;
  }
  .header1__phone-wrap {
    display: inline-block;
    margin-left: 5px;
  }
  .header1__phone-wrap:nth-child(n+2) {
    display: inline-block;
  }
  .header1__phone-wrap:not(:first-child) {
    margin-left: 13px;
  }
  .header1__phone-unit {
    display: block;
    font-family: "GeometriaMedium", Arial, FreeSans, sans-serif;
    font-size: 10px;
    color: #5e6a7d;
    text-align: right;
    text-transform: uppercase;
    margin-bottom: 3px;
  }
  .header1__phone {
    font-size: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 50%;
  }
  .header2 {
    display: block;
    position: static;
    min-height: 56px;
    padding: 0;
    background: #E41B1B;
  }
  .menu {
    padding-left: 0px;
  }
  .menu LI {
    border-bottom: 0;
  }
  .menu SPAN {
    cursor: default;
  }
  .menu > UL > LI {
    position: relative;
    display: inline-block;
    margin-right: 5px;
  }
  .menu > UL > LI:last-child {
    margin-right: 0;
  }
  .menu > UL > LI > A, .menu > UL > LI > SPAN {
    white-space: nowrap;
    line-height: 56px;
    padding: 0 15px;
  }
  .menu UL UL {
    display: block !important;
    position: absolute;
    z-index: 3;
    top: 100%;
    left: 0;
    width: 210px;
    background: #E41B1B;
    margin-left: 0;
    visibility: hidden;
    background: #E41B1B;
    -webkit-box-shadow: 0 1px 3px -2px rgba(0, 0, 0, 0.75);
    box-shadow: 0 1px 3px -2px rgba(0, 0, 0, 0.75);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    padding: 0;
    border: 0;
  }
  .menu UL UL A {
    font-size: 11px;
    color: #fff;
    padding: 17px 15px;
  }
  .menu UL UL A:hover {
    background: red;
  }
  .menu A, .menu SPAN {
    font-size: 11px;
    font-family: "GeometriaMedium", Arial, FreeSans, sans-serif;
  }
  .menu A:hover, .menu SPAN:hover {
    color: #fff;
  }
  .menu__sub:hover UL {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .menu .menu__sub > A, .menu .menu__sub > SPAN {
    position: relative;
  }
  .menu .menu__sub > A:after, .menu .menu__sub > A:before, .menu .menu__sub > SPAN:after, .menu .menu__sub > SPAN:before {
    display: none;
  }
  
  
 
  
  
}

@media (min-width: 1100px) {
  .menu > UL > LI {
    margin-right: 15px;
  }
}

/* azgaz */
@media (max-width: 767px) {
  .header-azgaz .logo {
    display: block;
    width: 70px;
    height: 70px;
  }
  .header-azgaz .logo IMG {
    width: 35px;
  }
  .header-azgaz .header1__wrapper {
    margin-right: auto;
    margin-left: 10px;
  }
  .header-azgaz .header1__dealer-name {
    display: block;
    text-align: left;
  }
  .header-azgaz .header1__dealer-city {
    display: block;
    font: 10px/1.2 "GeometriaBold", Arial, FreeSans, sans-serif;
    margin-top: 5px;
  }
  .header-azgaz .menu-sm {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-left: 2px solid #e6e6e6;
  }
  .header-azgaz .menu-sm__wrap > DIV {
    width: 20px;
    margin-left: -11px;
  }
  .header-azgaz .call-sm {
    right: 70px;
    bottom: 0;
    text-align: right;
    background: #ffffff;
  }
  .header-azgaz .call-sm A {
    line-height: 70px;
    width: 70px;
    height: 70px;
    text-align: center;
  }
  .header-azgaz .header2 {
    top: 70px;
  }
  .header-azgaz .call-sm__icon {
    width: 20px;
    height: 20px;
  }
  .header-azgaz .container-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-azgaz .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 12px 0;
    text-decoration: none;
    background: #f4f6f7;
  }
  .header-azgaz .menu-btn:nth-child(2) {
    border-left: 2px solid #e6e6e6;
  }
  .header-azgaz .menu-btn:nth-child(2) .menu-btn__icon {
    width: 19px;
    height: 21px;
  }
  .header-azgaz .menu-btn__text {
    margin: 0;
    font-size: 11px;
    line-height: 13px;
    font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
    color: black;
    text-transform: uppercase;
  }
  .header-azgaz .menu-btn__icon {
    width: 14px;
    height: 17px;
    margin-left: 35px;
    fill: #E41B1B;
  }
}

@media (min-width: 768px) {
  .header-azgaz .logo {
    padding-top: 22px;
  }
  .header-azgaz .logo IMG {
    width: 35px;
  }
  .header-azgaz .menu-sm {
    background: #ffffff;
    border-left: 2px solid #e6e6e6;
  }
  .header-azgaz .menu-sm__wrap > DIV {
    width: 20px;
    margin-left: -15px;
  }
  .header-azgaz .container-btn {
    display: none;
  }
}

@media (min-width: 992px) {
  .header-azgaz .logo {
    width: 154px;
    height: 140px;
    padding-top: 38px;
  }
  .header-azgaz .logo IMG {
    width: 57px;
    height: 63px;
  }
  .header-azgaz .header1__wrapper {
    height: 84px;
    padding-left: 183px;
  }
  .header-azgaz .header1__phone-wrap {
    margin-top: 2px;
  }
  .header-azgaz .header1__phone {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 50%;
  }
  .header-azgaz .header1__dealer-name {
    min-width: auto;
    background: none;
  }
  .header-azgaz .menu {
    padding-left: 168px;
  }
  .header-azgaz .menu > UL > LI {
    margin-right: 1px;
  }
  .header-azgaz .add-menu:not(.add-menu_sm) {
    padding-top: 22px;
  }
  .header-azgaz .header2 {
    background: url("../images/header_bg_azgaz.jpg") 0 0 no-repeat;
    background-size: cover;
  }
}

/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-element {
  display: none;
}

.scroll-element, .scroll-element div {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 10px;
  top: 0;
  width: 5px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #e6e6e6;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #252b33;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}


/* footer */
FOOTER {
  display: block;
  color: #fff!important;
  padding: 0px 0 0 0;
  background: #E41B1B!important;
}


.footer1__slogan {
  margin-bottom: 25px;
}

.footer1__phone {
  font: 20px/1.2 "GeometriaMedium", Arial, FreeSans, sans-serif;
  margin-bottom: 33px;
}

.footer1__phone A {
  color: #003783;
  text-decoration: none;
}

.footer1__menu {
  font-size: 11px;
  font-family: "GeometriaRegular", Arial, FreeSans, sans-serif;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.footer1__menu A {
  color: #fff;
  text-decoration: none;
}


a#nolink {text-decoration: none; color: #fff;}

.footer1__menu UL {
  list-style-type: none;
}

.footer1__menu LI {
  margin-bottom: 19px;
}

.footer2 {
  color: #fff;
  text-align: center;
  padding: 10px 0 10px 0;
 
}

.footer2 A {
  color: #fff;
  text-decoration: none;
}



.footer2 {
    display: flex;
    gap: 40px;
}

@media (max-width: 768px) {
    .footer2 {
        flex-direction: column;
        gap: 12px;
        padding: 20px 16px;
    }

    .footer2 p {
        margin: 0;
        line-height: 1.45;
    }
}





.privacy-policy {
  margin: -5px 0 22px 0;
}


.privacy-policy A {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
  margin: 10px 20px 10px 0;
}

.privacy-policy A:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  FOOTER {
    padding-top: 52px;
  }
  .footer1__dealer-info {
    margin-top: -5px;
    margin-bottom: 45px;
  }
  .footer1__slogan, .footer1__phone {
    margin-bottom: 0;
  }
  .footer1__menu {
    padding-bottom: 19px;
  }
}

@media (min-width: 992px) {
  FOOTER {
    padding-top: 0px;
  }
  .footer1 {
    padding-bottom: 0px;
  }
  .footer1__menu {
    margin-top: -2px;
  }
  .footer1__slogan {
    margin-bottom: 0px;
  }
  .footer1__dealer-info {
    padding-right: 35px;
  }
  .footer2 {
    padding: 20px 0 0px 0;
  }
}

/* footer azgaz */
.footer1-azgaz {
  margin-top: -5px;
}

.footer1-azgaz A {
  color: #fff;
  text-decoration: none;
}

.footer1-azgaz__dealer-name {
  font: 24px/1.2 "GeometriaBold", Arial, FreeSans, sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer1-azgaz__phones {
  font: 18px/1.3 "GeometriaMedium", Arial, FreeSans, sans-serif;
  margin-bottom: 22px;
}

.footer1-azgaz__phones A {
  white-space: nowrap;
}

.footer1-azgaz__slogan {
  margin-bottom: 28px;
}

.footer1-azgaz__address {
  margin-bottom: 30px;
}

.footer1-azgaz__menu {
  font-size: 11px;
  font-family: "GeometriaRegular", Arial, FreeSans, sans-serif;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.footer1-azgaz__menu A {
  color: #fff;
  text-decoration: none;
}

.footer1-azgaz__menu UL {
  list-style-type: none;
}

.footer1-azgaz__menu LI {
  margin-bottom: 19px;
}

.footer1-azgaz__icon {
  display: none;
}

@media (min-width: 768px) {
  .footer1-azgaz {
    margin-top: -6px;
  }
  .footer1-azgaz__dealer-name {
    font-size: 30px;
    letter-spacing: 1.5px;
    margin-top: -3px;
  }
  .footer1-azgaz__slogan {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: -3px;
  }
  .footer1-azgaz__phones {
    font-size: 20px;
    line-height: 1.4;
    margin-top: -1px;
    margin-bottom: 46px;
  }
  .footer1-azgaz__address {
    margin-bottom: 44px;
  }
  .footer1-azgaz__menu {
    min-height: 100px;
    padding-bottom: 19px;
  }
}

@media (min-width: 992px) {
  .footer1-azgaz {
    margin-top: -7px;
  }
  .footer1-azgaz__dealer-name {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .footer1-azgaz__phones {
    margin-bottom: 30px;
  }
  .footer1-azgaz__phones .footer1-azgaz__icon {
    top: 6px;
  }
  .footer1-azgaz__slogan {
    position: static;
    top: auto;
    margin-top: 0;
    margin-bottom: 50px;
  }
  .footer1-azgaz__address {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .footer1-azgaz__menu {
    margin-top: 2px;
    min-height: 1px;
  }
  .footer1-azgaz__icon {
    display: block;
    position: absolute;
    top: 2px;
    left: -12px;
    width: 15px;
    height: 15px;
    fill: #929699;
  }
}

/* sticky nav bar */
.sticky-nav-bar {
  display: none;
}

@media only screen and (min-width: 992px) {
  .sticky-nav-bar {
    display: block;
    position: fixed;
    z-index: 20;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    color: #fff;
    -webkit-transition: width .3s ease-in;
    transition: width .3s ease-in;
  }
  .sticky-nav-bar A {
    color: #ffffff;
    text-decoration: none;
  }
  .sticky-nav-bar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    overflow: visible;
  }
  .sticky-nav-bar__btn-box {
    position: relative;
    width: 50px;
    height: 50px;
    left: 0;
    -webkit-transition: left 300ms;
    transition: left 300ms;
  }
  .sticky-nav-bar__btn-box:hover {
    left: -175px;
  }
  .sticky-nav-bar__button {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 225px;
    height: 47px;
    padding: 0 10px;
    background: #E41B1B;
  }
  .sticky-nav-bar__button:not(:last-of-type) {
    margin-bottom: 3px;
  }
  .sticky-nav-bar__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 30px;
    height: 29px;
    fill: #ffffff;
    margin-right: 12px;
  }
  .sticky-nav-bar__caption {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    width: 100%;
    font: 10px/1.2 "GeometriaMedium", Arial, FreeSans, sans-serif;
    text-transform: uppercase;
  }
}

/* range */
.range {
  margin: 34px 0;
}

.range IMG {
  width: 100%;
  max-width: 206px;
  height: auto;
}

.range__list A {
  text-decoration: none;
}

.range__list > DIV {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 38px;
  padding-bottom: 12px;
}

.range__pic {
  width: 35%;
}

.range__info {
  -ms-flex-item-align: center;
  align-self: center;
  width: 65%;
  padding-left: 30px;
}

.range__type {
  font-size: 10px;
  font-family: "GeometriaMedium", Arial, FreeSans, sans-serif;
  letter-spacing: 1px;
  color: #757575;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.range__name {
  font-size: 14px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.range__name A {
  color: #252b33;
}

.range__name A:hover {
  color: #E41B1B;
}

.range__price {
  font-size: 11px;
  margin-top: 12px;
}

.range__details {
  font-size: 11px;
  margin-top: 12px;
}

.range_all {
  margin-top: 10px;
}

@media (min-width: 576px) {
  .range__info {
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .range IMG {
    width: auto;
    max-width: 100%;
    max-height: 100%;
  }
  .range__list > DIV {
    display: block;
    margin-top: 48px;
    padding-bottom: 30px;
  }
  .range__info {
    width: 100%;
    padding-left: 0;
    margin-top: 43px;
  }
  .range__price {
    font-size: 13px;
    margin-top: 10px;
  }
  .range__type {
    margin: -23px 0 9px 0;
  }
  .range__details {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 16px;
  }
  .range__pic {
    width: 100%;
  }
  .range_all .range__pic {
    height: 117px;
  }
}

@media (min-width: 992px) {
  .range {
    margin: 52px 0;
  }
  .range__list > DIV {
    margin-top: 66px;
  }
  .range__pic {
    height: 117px;
  }
  .range__name {
    font-size: 16px;
  }
  .range_all {
    margin-top: 17px;
  }
}

/* news */
.news {
  padding-bottom: 60px;
  background: #f2f0f0;
}

.news__list {
  /*padding-top: 8px;*/
  padding-top: 4px;
  /* task 313 */
}

.news__item {
  position: relative;
  width: 100%;
  color: #363c41;
  margin-top: 30px;
  background: #fff;
  -webkit-transition: background .3s ease;
  transition: background .3s ease;
}

.news__item:hover {
  background: #e6e6e6;
}

.news__item A {
  color: #363c41;
  text-decoration: none;
}

.news__icon {
  position: absolute;
  top: 19px;
  left: 21px;
  width: 32px;
  height: 32px;
  fill: #fff;
  pointer-events: none;
}

.news__pic:before {
  padding-bottom: 66.66667%;
}

.news__body {
  padding: 14px 20px 0 20px;
}

.news__body:after {
  content: "";
  display: table;
  clear: both;
}

.news__body P {
  margin-bottom: 26px;
}

.news__date {
  width: 50%;
  max-width: 164px;
  font-family: "GeometriaRegular", Arial, FreeSans, sans-serif;
  color: #fff;
  padding: 6px 5px 5px 20px;
  background: #20252b;
}

.news__day {
  float: left;
  font-size: 30px;
  line-height: 1.2;
  margin-right: 16px;
}

.news__month-year {
  font-size: 12px;
}

.news__section {
  width: 50%;
  font-family: "GeometriaMedium", Arial, FreeSans, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  padding: 8px 5px 5px 30px;
}

.news_main {
  padding-top: 52px;
  margin-top: 34px;
}

.news_main .news__list > DIV:nth-child(2), .news_main .news__list > DIV:nth-child(3) {
  display: none !important;
}

@media (min-width: 576px) {
  .news__item > DIV, .news__item > A {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .news_main .news__list > DIV:nth-child(2) {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (min-width: 768px) {
  .news__list {
    /*padding-top: 23px;*/
    padding-top: 12px;
    /* task 313 */
  }
  .news__date {
    padding-left: 25px;
  }
  .news__body {
    padding: 24px 38px 0 38px;
  }
  .news_main {
    padding-bottom: 84px;
  }
}

@media (min-width: 992px) {
  .news_main {
    margin-top: 52px;
  }
  .news_main .news__list > DIV:nth-child(3) {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

/* news detail */
.news-detail-date {
  font-size: 11px;
  color: #707070;
  margin: 30px 0;
}

.news-detail-date__icon {
  position: relative;
  top: -1px;
  width: 12px;
  height: 12px;
  fill: #E41B1B;
  margin-right: 1px;
}

.news-detail-nav {
  margin: 30px 0;
}

.news-detail-nav A {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  letter-spacing: 0.825px;
  text-transform: uppercase;
  color: #E41B1B;
}

.news-detail-nav A SPAN {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
}

.news-detail-nav A SPAN:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid #E41B1B;
  border-right: none;
  border-bottom: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-right: -9px;
}

.news-detail-nav A SPAN:after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #E41B1B;
}

.share {
  margin: 30px 0;
}

.share__title {
  font-weight: bold;
  margin-bottom: 15px;
}

.share .ya-share2__container_size_m .ya-share2__icon {
  height: 25px;
  width: 25px;
  background-size: 18px 18px;
  background-position: center center;
  background-repeat: no-repeat;
}

.share .ya-share2__item .ya-share2__badge {
  background-color: #E41B1B !important;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}

.share .ya-share2__item:hover .ya-share2__badge {
  background-color: #4e69a2 !important;
}

.share .ya-share2__list_direction_horizontal > .ya-share2__item {
  border-radius: 13px;
  overflow: hidden;
  margin-right: 8px;
  padding: 0;
}

@media (min-width: 768px) {
  .news-detail-date, .news-detail-nav, .share {
    margin: 45px 0;
  }
}

/* menu-named-block */
.menu-named-block {
  font: 10px/1.8 "GeometriaBold", Arial, FreeSans, sans-serif;
  letter-spacing: 0.5px;
  color: #dce1e6;
  text-transform: uppercase;
  background: #252b33;
}

.menu-named-block UL {
  list-style-type: none;
  margin: 0 -15px;
}

.menu-named-block UL A {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #dce1e6;
  text-decoration: none;
  padding: 16px 15px;
}

.menu-named-block UL A:hover {
  background: #3b4148;
}

.menu-named-block UL A:hover .menu-named-block__icon {
  fill: #fff;
}

.menu-named-block LI {
  display: block;
  border-top: 1px solid #3b4148;
}

.menu-named-block LI:first-child {
  border: none;
}

.menu-named-block__icon {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 17px;
  height: 17px;
  fill: #80ccff;
  margin-left: 15px;
}

LI.menu-named-block__text {
  font-size: 14px;
  line-height: 1.4;
  padding: 16px 15px;
}

@media (min-width: 768px) {
  .menu-named-block {
    padding: 20px 0;
  }
  .menu-named-block UL {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu-named-block UL A {
    display: inline-block;
  }
  .menu-named-block UL A:hover {
    background: none;
  }
  .menu-named-block LI {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 20%;
    border: none;
  }
  .menu-named-block__icon {
    width: 34px;
    height: 34px;
    margin-left: 0;
    margin-bottom: 17px;
  }
  LI.menu-named-block__text {
    -ms-flex-item-align: center;
    align-self: center;
    width: 39%;
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .menu-named-block {
    font-size: 11px;
    padding: 28px 0;
  }
  .menu-named-block UL A {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .menu-named-block LI {
    padding-right: 5px;
  }
  .menu-named-block__icon {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 52px;
    height: 52px;
    margin-right: 16px;
    margin-bottom: 0;
  }
  LI.menu-named-block__text {
    font-size: 20px;
    line-height: 1.3;
  }
}

/* pagination */
.pagination {
  padding: 0 0 60px 0;
}

.pagination UL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin-bottom: 0;
}

.pagination__item {
  line-height: 40px;
}

.pagination__link {
  position: relative;
  z-index: 10;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 20px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.pagination__link_active, .pagination__link:hover {
  color: #fff;
  text-decoration: none;
  background: #005796;
}

.pagination__link:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 50%;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: background, -webkit-transform;
  transition-property: background, -webkit-transform;
  transition-property: transform, background;
  transition-property: transform, background, -webkit-transform;
  background: rgba(0, 87, 150, 0);
  z-index: -1;
}

.pagination__link:hover:before {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  background: rgba(0, 87, 150, 0.7);
}

.pagination__prev, .pagination__next {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
}

.pagination__prev:before, .pagination__next:before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.pagination__prev:hover:before, .pagination__next:hover:before {
  border-color: #005796;
}

.pagination__prev {
  margin-right: 20px;
}

.pagination__prev:before {
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  top: 50%;
  left: 50%;
  margin-top: -6px;
  margin-left: -6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pagination__next {
  margin-left: 20px;
}

.pagination__next:before {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  top: 50%;
  right: 50%;
  margin-top: -6px;
  margin-right: -6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .pagination__prev {
    margin-right: 55px;
  }
  .pagination__next {
    margin-left: 55px;
  }
}

/* page header */
.page-header {
  padding-top: 24px;
  background: #f2f0f0;
}

.page-header:after {
  content: "";
  display: table;
  clear: both;
}

.menu-lev3__mobile {
  position: relative;
  width: 100%;
  font-size: 10px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  padding: 13px 19px 14px 19px;
  background: #E41B1B;
  cursor: pointer;
}

.menu-lev3__mobile:after {
  content: '';
  position: absolute;
  top: 19px;
  right: 16px;
  border: 4px solid transparent;
  border-top: 4px solid #fff;
}

.menu-lev3__mobile_open + .menu-lev3__list {
  display: block;
}

.menu-lev3__list {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  overflow-y: auto;
  padding: 0 30px;
  background: #f4f4f4;
}

.menu-lev3 UL {
  font-size: 12px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  list-style: none;
  margin-bottom: 0;
}

.menu-lev3 LI {
  border-top: 1px solid #e5e5e5;
}

.menu-lev3 LI._active {
  color: #fff;
  padding: 12px 30px 11px 30px;
  margin: 0 -30px;
  background: #E41B1B;
}

.menu-lev3 LI._active + LI {
  border-color: transparent;
}

.menu-lev3 A {
  display: block;
  color: #252b33;
  text-decoration: none;
  padding: 12px 0 10px 0;
  -webkit-transition: color linear 0.2s;
  transition: color linear 0.2s;
}

.menu-lev3 A:hover {
  color: #E41B1B;
}

.menu-lev3__title {
  font: 22px/1.1 "GeometriaBold", Arial, FreeSans, sans-serif;
  color: #252b33;
  padding-right: 40px;
  margin: 35px 0;
}

.menu-lev3__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  cursor: pointer;
}

.menu-lev3__close DIV {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  margin: -1px 0 0 -7px;
  background: #E41B1B;
}

.menu-lev3__close DIV:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-lev3__close DIV:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.breadcrumb {
  display: block;
  border-radius: 0;
  background: none;
  padding: 0;
  margin-bottom: 30px;
}

.breadcrumb__item {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-family: "open_sanslight",Arial,FreeSans,sans-serif;
  color: #444444;
  text-decoration: none;
}

.breadcrumb__item:not(:first-child) {
  padding-left: 13px;
  margin-left: -1px;
}

.breadcrumb__item:not(:first-child):before {
  position: absolute;
  top: -1px;
  left: 0;
  content: '\2013';
}

.breadcrumb A:hover {
  text-decoration: underline;
  color: #E41B1B;
}

@media (min-width: 768px) {
  .page-header {
    background: #f2f0f0;
  }
  .menu-lev3 {
    position: relative;
    z-index: 2;
  }
  .menu-lev3 UL {
    position: relative;
    z-index: 1;
    font-size: 11px;
    color: #fff;
    letter-spacing: 1.1px;
    -webkit-box-shadow: inset 0 1px #dfe0e0, inset 0 -1px #dfe0e0;
    box-shadow: inset 0 1px #dfe0e0, inset 0 -1px #dfe0e0;
  }
  .menu-lev3 LI {
    white-space: nowrap;
  }
  .menu-lev3 LI._active {
    position: relative;
    padding: 19px 29px;
    margin: 0;
  }
  .menu-lev3 LI._active:before {
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 10px solid #E41B1B;
    border-right: 14px solid transparent;
    content: '';
  }
  .menu-lev3 A {
    padding: 19px 29px;
  }
  .menu-lev3__mobile {
    display: none;
  }
  .menu-lev3__list {
    position: static;
    z-index: auto;
    display: block;
    overflow-y: visible;
    padding: 0;
    background: transparent;
  }
  .menu-lev3__title, .menu-lev3__close {
    display: none;
  }
}

/* columns-configurable-block */
.columns-configurable-block {
  margin: 30px 0;
}

.columns-configurable-block .text-block, .columns-configurable-block .image-block, .columns-configurable-block .image-block-popup, .columns-configurable-block .image-block-link, .columns-configurable-block .slider-block {
  margin-top: 0;
}

@media (min-width: 576px) {
  .columns-configurable-block_valign-center > .container > .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .columns-configurable-block {
    margin: 45px 0;
  }
}

/* text-block */
.text-block {
  margin: 30px 0;
}

.text-block H2 {
  margin-bottom: 20px;
}

.text-block H3 {
  font: 15px/1.4 "GeometriaMedium", Arial, FreeSans, sans-serif;
  margin-bottom: 20px;
}

.text-block H4 {
  font: 15px/1.4 "GeometriaMedium", Arial, FreeSans, sans-serif;
  color: #E41B1B;
  margin-bottom: 20px;
}

.text-block IMG {
  max-width: 100%;
}

.text-block P {
  margin-bottom: 20px;
}

.text-block UL {
  margin-bottom: 20px;
  list-style: none;
}

.text-block UL UL {
  margin-top: 25px;
  margin-bottom: 30px;
}

.text-block UL LI {
  position: relative;
  margin: 10px 0;
  padding-left: 35px;
}

.text-block UL LI:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E41B1B;
}

.text-block OL {
  counter-reset: item;
  margin-bottom: 20px;
  list-style: none;
}

.text-block OL > LI {
  position: relative;
  margin: 10px 0;
  padding-left: 44px;
}

.text-block OL > LI:before {
  position: absolute;
  left: 0;
  top: 0;
  content: counters(item, ".") " ";
  counter-increment: item;
  color: #000000;
  font: 12px/20px "GothamPro_regular",Arial,FreeSans,sans-serif;
  width: 44px;
  letter-spacing: 0.6px;
}

.text-block OL OL {
  margin-top: 25px;
  margin-bottom: 30px;
}

.text-block STRONG {
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  font-weight: normal;
}

.text-block LI {
  display: block;
}

.text-block BLOCKQUOTE {
  position: relative;
  font-style: italic;
  padding: 30px 30px 30px 65px;
  margin-bottom: 30px;
  /*padding: 65px 67px 65px 120px;
		margin-bottom: 35px;*/
  background: #f2f0f0;
}

.text-block BLOCKQUOTE:before {
  content: "\00ab";
  position: absolute;
  left: 20px;
  top: 14px;
  /*left: 42px;
    		top: 34px;*/
  font: bold 45px/45px "GeometriaRegular", Arial, FreeSans, sans-serif;
  /*font: bold 72px/72px $font-family-GeometriaRegular;*/
  color: #bcbcbc;
}

.text-block.text-align-center {
  text-align: center;
}

.block-bg .text-block BLOCKQUOTE, .text-block.block-bg BLOCKQUOTE {
  background: #fff;
}

@media (min-width: 768px) {
  .text-block {
    margin: 45px 0;
  }
  .text-block H3, .text-block H4 {
    font-size: 18px;
  }
  .text-block BLOCKQUOTE {
    padding: 40px 40px 40px 90px;
    margin-bottom: 35px;
  }
  .text-block BLOCKQUOTE:before {
    left: 29px;
    top: 20px;
    font-size: 55px;
    line-height: 55px;
  }
}

@media (min-width: 992px) {
  .text-block OL > LI, .text-block UL > LI {
    margin: 11px 0;
  }
  .text-block BLOCKQUOTE {
    padding: 65px 67px 65px 120px;
  }
  .text-block BLOCKQUOTE:before {
    left: 42px;
    top: 34px;
    font-size: 72px;
    line-height: 72px;
  }
}

/* image-block */
.image-block, .image-block-popup, .image-block-link {
  margin: 30px 0;
}

.image-block IMG, .image-block-popup IMG, .image-block-link IMG {
  max-width: 100%;
  height: auto;
}

.image-block {
  text-align: center;
}

.image-block__popup {
  cursor: default;
}

@media (min-width: 576px) {
  .image-block__popup {
    cursor: pointer;
  }
}

@media (min-width: 768px) {
  .image-block, .image-block-popup, .image-block-link {
    margin: 45px 0;
  }
}

/* menu-headers-block */
.menu-headers-block {
  display: none;
}

@media (min-width: 768px) {
  .menu-headers-block {
    display: block;
    margin: 45px 0;
  }
  .menu-headers-block NAV {
    border-top: 1px solid #d0d4d7;
    border-bottom: 1px solid #d0d4d7;
    -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.4);
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.4);
  }
  .menu-headers-block UL {
    list-style: none;
    margin-bottom: 0;
  }
  .menu-headers-block UL LI {
    display: inline-block;
    white-space: nowrap;
    height: 52px;
    margin: 0;
    padding: 0 28px;
  }
  .menu-headers-block UL A {
    font: 11px/52px "GeometriaBold", Arial, FreeSans, sans-serif;
    color: #252b33;
    letter-spacing: 0.825px;
    text-decoration: none;
    text-transform: uppercase;
  }
  .menu-headers-block UL A:hover {
    color: #E41B1B;
  }
}

/* table-block */
.table-block {
  margin: 30px 0;
}

.table-wrapper {
  margin-left: -15px;
  margin-right: -15px;
  overflow-x: auto;
}

.table {
  width: 100%;
  margin-bottom: 0;
}

.table TABLE {
  width: 100%;
}

.table THEAD TH, .table THEAD TD {
  font-size: 11px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  letter-spacing: 1.05px;
  font-weight: normal;
  color: #fff;
  text-transform: uppercase;
  vertical-align: middle;
  padding: 20px 13px;
  background: #E41B1B;
}

.table THEAD TH:not(:first-child), .table THEAD TD:not(:first-child) {
  text-align: center;
}

.table THEAD TH:first-child, .table THEAD TD:first-child {
  padding-left: 15px;
}

.table THEAD IMG {
  margin-bottom: 10px;
}

.table THEAD P {
  margin-bottom: 0;
}

.table TR:nth-child(2n) TD {
  background-color: #f4f4f4;
}

.table TD, .table TH {
  font-size: 10px;
  vertical-align: top;
  padding: 15px 13px;
  border: none;
}

.table TD:first-child, .table TH:first-child {
  padding-left: 15px;
}

.table__button {
  display: inline-block;
  min-width: 94px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  font-size: 8px;
  line-height: 20px;
  color: #252b33;
  letter-spacing: 0.6px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  padding: 2px 20px 1px;
  margin: 25px 0 0 -22px;
  cursor: pointer;
  border: 2px solid #E41B1B;
  border-radius: 20px;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

.table__button:hover {
  color: #fff;
  text-decoration: none;
  background: #E41B1B;
}

/* table fix head */
.table-fix {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  width: auto;
  -webkit-box-shadow: 0 10px 5px -6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 5px -6px rgba(0, 0, 0, 0.4);
}

.table-fix_active {
  display: table;
}

/* icons for table */
[class*="icon-state"] {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  font-size: 14px;
  line-height: 23px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  border-radius: 50%;
  background: #9ab9c9;
}

.icon-state-on {
  background: #98b02e;
}

.icon-state-on:after {
  content: '';
  position: absolute;
  top: 8px;
  left: 7px;
  width: 12px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.icon-state-off {
  font-size: 17px;
  background: #b0b0b0;
}

.icon-state-off:after {
  content: '\00D7';
}

.icon-state-option:after {
  content: 'O';
}

.icon-state-accessory:after {
  content: 'A';
}

@media (min-width: 768px) {
  .table-block {
    margin: 45px 0;
  }
  .table-wrapper {
    margin-left: -22px;
    margin-right: -22px;
  }
  .table THEAD TH, .table THEAD TD {
    padding: 24px 10px;
    background: #E41B1B;
  }
  .table THEAD TH:first-child, .table THEAD TD:first-child {
    padding-left: 24px;
  }
  .table TD, .table TH {
    font-size: 13px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .table TD:first-child, .table TH:first-child {
    padding-left: 24px;
  }
  .table__button {
    min-width: 102px;
    font-size: 10px;
    letter-spacing: 0.8px;
    padding: 8px 32px;
    margin-left: -32px;
  }
  /* icons for table */
  [class*="icon-state"] {
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 31px;
  }
  .icon-state-on:after {
    top: 10px;
    left: 9px;
    width: 14px;
    height: 8px;
  }
  .icon-state-off {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .table-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
  .table THEAD TH:first-child, .table THEAD TD:first-child {
    padding-left: 50px;
  }
  .table TD:first-child, .table TH:first-child {
    padding-left: 50px;
  }
}

/* video-block */
.video-block {
  margin: 0 0 30px 0;
}

.video-block > .container {
  max-width: none;
  padding: 0;
}

.video-block VIDEO {
  display: none;
}

.video-block H2 {
  margin-bottom: 3px;
}

.video-block H3 {
  font-size: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.video-block__img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.video-block__inner {
  padding: 0 15px;
}

@media (min-width: 768px) {
  .video-block {
    color: #fff;
    margin: 0 0 45px 0;
  }
  .video-block * {
    color: #fff;
  }
  .video-block H2 {
    font-size: 36px;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
  }
  .video-block H3 {
    font-size: 24px;
  }
  .video-block__wrap {
    position: relative;
    height: 600px;
    overflow: hidden;
  }
  .video-block VIDEO {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .video-block__inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 165px 0 0 0;
    background: rgba(0, 0, 0, 0.6);
  }
}

/* text-image-block */
.text-image-block {
  margin-bottom: 50px;
  background-color: #eaeaea;
}

.text-image-block .container {
  padding: 0;
  position: relative;
}

.text-image-block__bg {
  max-width: 1170px;
  height: 175px;
  margin: 0 auto;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-image-block__text {
  background: #fff;
  padding-top: 30px;
  padding-right: 15px;
  padding-left: 15px;
}

.text-image-block__text H3 {
  font: 15px/1.4 "GeometriaMedium", Arial, FreeSans, sans-serif;
  margin-bottom: 25px;
}

@media (min-width: 480px) {
  .text-image-block__bg {
    height: 220px;
  }
}

@media (min-width: 768px) {
  .text-image-block {
    margin-bottom: 45px;
  }
  .text-image-block__bg {
    height: 400px;
  }
  .text-image-block__text {
    padding-right: 22px;
    padding-left: 22px;
  }
  .text-image-block__text H3 {
    font-size: 18px;
  }
}

@media (min-width: 769px) {
  .text-image-block__bg {
    background-position: center center;
  }
  .text-image-block__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 83px;
    background: transparent;
  }
  .text-image-block__text-wrap {
    max-width: 330px;
  }
}

@media (min-width: 992px) {
  .text-image-block__bg {
    background-size: auto;
  }
  .text-image-block__text {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* text-image-block-fullwidth */
.text-image-block-fullwidth {
  position: relative;
  margin-bottom: 30px;
}

.text-image-block-fullwidth .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 2000px;
}

.text-image-block-fullwidth .container > DIV {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.text-image-block-fullwidth .text-block {
  margin: 0;
}

.text-image-block-fullwidth__pic {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  margin-left: -15px;
  margin-right: -15px;
}

.text-image-block-fullwidth__pic IMG {
  max-width: 100%;
  height: auto;
}

.text-image-block-fullwidth__text-wrapper {
  position: relative;
}

.text-image-block-fullwidth__text {
  padding-top: 26px;
}

.text-image-block-fullwidth__text H2 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: normal;
  text-transform: none;
}

@media (min-width: 768px) {
  .text-image-block-fullwidth {
    position: relative;
    overflow: hidden;
    margin-bottom: 45px;
  }
  .text-image-block-fullwidth:not(.text-image-block-fullwidth_no-crop) {
    height: 400px;
  }
  .text-image-block-fullwidth:not(.text-image-block-fullwidth_no-crop) > .container {
    height: 400px;
  }
  .text-image-block-fullwidth:not(.text-image-block-fullwidth_no-crop) .text-image-block-fullwidth__pic {
    margin-left: -22px;
    margin-right: -22px;
  }
  .text-image-block-fullwidth:not(.text-image-block-fullwidth_no-crop) .text-image-block-fullwidth__pic IMG {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    min-width: 100%;
    max-width: none;
    height: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -o-object-fit: cover;
    object-fit: cover;
  }
  .text-image-block-fullwidth .container {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }
  .text-image-block-fullwidth__text {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 50%;
    padding: 30px 15px;
  }
  .text-image-block-fullwidth__text H2 {
    font-size: 30px;
  }
  .text-image-block-fullwidth__text :last-child {
    margin-bottom: 0;
  }
  .text-image-block-fullwidth__text_right {
    left: auto;
    right: 0;
  }
  .text-image-block-fullwidth__text_white {
    color: #fff;
  }
  .text-image-block-fullwidth__text_white UL LI:before {
    background-color: #fff;
  }
  .text-image-block-fullwidth__text_white H1, .text-image-block-fullwidth__text_white H2, .text-image-block-fullwidth__text_white H3, .text-image-block-fullwidth__text_white H4 {
    color: #fff;
  }
  .text-image-block-fullwidth__text_valign-middle {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .text-image-block-fullwidth__text-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  .text-image-block-fullwidth:not(.text-image-block-fullwidth_no-crop) {
    height: 455px;
  }
  .text-image-block-fullwidth:not(.text-image-block-fullwidth_no-crop) > .container {
    height: 455px;
  }
  .text-image-block-fullwidth__pic {
    margin-left: 0;
    margin-right: 0;
  }
  .text-image-block-fullwidth__text {
    padding: 40px 15px;
  }
  .text-image-block-fullwidth__text H2 {
    font-size: 40px;
    margin-bottom: 35px;
  }
}

@media (min-width: 1200px) {
  .text-image-block-fullwidth {
    height: auto;
  }
  .text-image-block-fullwidth__pic {
    text-align: center;
  }
  .text-image-block-fullwidth__pic IMG {
    position: static;
    left: 0;
    width: 100%;
    max-width: 2000px;
    height: auto;
    margin: 0 auto;
    -webkit-transform: none;
    transform: none;
  }
}

/* text-image-block-call */
.text-image-block-call {
  margin: 30px 0;
  text-align: center;
}

.text-image-block-call .text-block {
  margin-bottom: 0;
}

.text-image-block-call IMG {
  max-width: 100%;
}

.text-image-block-call H4 {
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  font-size: 30px;
  margin: 30px 0 0 0;
}

.text-image-block-call H4 A {
  color: #212529;
}

.text-image-block-call H4 A:hover {
  color: #E41B1B;
  text-decoration: none;
}

@media (min-width: 576px) {
  .text-image-block-call {
    text-align: left;
  }
  .text-image-block-call__pic {
    width: 155px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .text-image-block-call__text {
    max-width: 400px;
    margin-top: 0;
    margin-left: 70px;
  }
}

@media (min-width: 768px) {
  .text-image-block-call {
    margin: 45px 0;
  }
}

/* content item digit */
.list-digit {
  counter-reset: point;
}

.list-digit > DIV:nth-child(n+10) .digit-item:before {
  content: "" counter(point);
}

.digit-item {
  position: relative;
  max-width: 260px;
  padding-left: 54px;
  margin: 0 0 30px 22px;
}

.digit-item:before {
  content: "0" counter(point);
  counter-increment: point 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  font: 30px/30px "GeometriaLight", Arial, FreeSans, sans-serif;
  color: #9ab9c9;
}

.digit-item__body P {
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .digit-item {
    max-width: none;
    margin-left: 0;
    padding-left: 0;
  }
  .digit-item:before {
    position: static;
    display: block;
    width: auto;
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .digit-item {
    margin-bottom: 10px;
  }
  .digit-item:before {
    font-size: 43px;
    line-height: 66px;
  }
  .digit-item__body {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .digit-item__body {
    margin-bottom: 40px;
  }
}

/* content item icon */
.icon-item {
  margin: 0 0 10px 0;
  position: relative;
}

.icon-item P {
  margin-bottom: 20px;
}

.icon-item__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  fill: #9ab9c9;
  margin: 0 15px 20px 0;
}

@media (min-width: 768px) {
  .icon-item {
    margin-top: 15px;
  }
  .icon-item__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 29px;
  }
  .icon-item__body {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .icon-item__body {
    margin-bottom: 40px;
  }
}

/* content item icon */
.icon-item-service {
  margin: 0 0 10px 0;
  position: relative;
}

.icon-item-service H4 {
  font: 15px/1.4 "GeometriaMedium", Arial, FreeSans, sans-serif;
  color: #E41B1B;
  margin-bottom: 20px;
}

.icon-item-service P {
  margin-bottom: 20px;
}

.icon-item-service__icon {
  width: 36px;
  height: 36px;
  fill: #9ab9c9;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 15px 20px 0;
}

.icon-item-service__body {
  margin-top: 5px;
}

@media (min-width: 768px) {
  .icon-item-service {
    margin-top: 15px;
  }
  .icon-item-service H4 {
    font-size: 18px;
  }
  .icon-item-service__icon {
    width: 58px;
    height: 58px;
    margin-right: 35px;
  }
}

@media (min-width: 992px) {
  .icon-item-service {
    margin-bottom: 25px;
  }
  .icon-item-service__icon {
    margin-right: 45px;
  }
}

/* content item img */
.img-item {
  margin-bottom: 35px;
}

.img-item IMG {
  display: block;
  max-width: 100%;
}

.img-item_logo {
  max-width: 131px;
}

@media (min-width: 768px) {
  .img-item {
    margin: 20px 0 45px 0;
  }
  .img-item_logo {
    max-width: none;
  }
}

/* item fact */
.fact-item {
  margin-bottom: 25px;
}

.fact-item__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  fill: #9ab9c9;
  margin-right: 15px;
}

.fact-item__body {
  text-transform: uppercase;
}

.fact-item__val {
  color: #E41B1B;
  margin-bottom: 7px;
}

.fact-item__val-accent {
  font: 31.17px/34.44px "GeometriaMedium", Arial, FreeSans, sans-serif;
  letter-spacing: -1.029px;
}

.fact-item__val-top {
  font: 14px/19.3px "GeometriaBold", Arial, FreeSans, sans-serif;
  letter-spacing: 0.7px;
  padding-left: 5px;
}

.fact-item__val-bottom {
  -ms-flex-item-align: end;
  align-self: flex-end;
  font: 14px/1.4 "GeometriaBold", Arial, FreeSans, sans-serif;
  letter-spacing: 0.7px;
  padding: 0 5px 3px 0;
}

.fact-item__title {
  font: 11px/19.3px "GeometriaMedium", Arial, FreeSans, sans-serif;
  letter-spacing: 0.825px;
  color: #252b33;
}

@media (min-width: 576px) {
  .fact-item {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .fact-item {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .fact-item__icon {
    width: 43px;
    height: 43px;
  }
  .fact-item__val-accent {
    font-size: 41.17px;
    line-height: 44.44px;
  }
}

@media (min-width: 992px) {
  .fact-item__body {
    margin-bottom: 40px;
  }
}

/* model about */
.model-about {
  padding: 24px 0 50px 0;
  background: #f2f0f0;
}

.model-about__pic {
  margin-bottom: 20px;
}

.model-about__pic IMG {
  max-width: 100%;
  height: auto;
}

.model-about:after {
  content: "";
  display: table;
  clear: both;
}

.model-about__name {
  font-size: 25px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  letter-spacing: 1.25px;
  margin: 0 0 5px;
}

.model-about__desc {
  margin-bottom: 40px;
}

.model-about__button {
  text-align: center;
  margin-lefT: -15px;
}

.model-about__button .button {
  margin-bottom: 10px;
  margin-left: 15px;
}

.model-about__type {
  display: none;
}

@media (min-width: 768px) {
  .model-about {
    position: relative;
    padding-top: 40px;
  }
  .model-about:before {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 170px;
    background: #fff;
    content: '';
  }
  .model-about__wrap {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .model-about__pic {
    width: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .model-about__info {
    -ms-flex-item-align: start;
    align-self: flex-start;
    position: relative;
    width: 47.5%;
    min-height: 270px;
    padding-bottom: 99px;
  }
  .model-about__name {
    font-size: 26px;
    text-transform: uppercase;
    margin: 0 0 20px;
  }
  .model-about__desc {
    margin-bottom: 20px;
    font-size: 18px;
    font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  }
  .model-about__button {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .model-about .container {
    position: relative;
    overflow-x: hidden;
  }
  .model-about__type {
    position: absolute;
    z-index: 1;
    display: block;
    right: 0;
    bottom: 65px;
    font-family: "GeometriaMedium", Arial, FreeSans, sans-serif;
    font-size: 176.64px;
    line-height: 176.64px;
    letter-spacing: 13.248px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

@media (min-width: 992px) {
  .model-about {
    padding-top: 45px;
  }
  .model-about:before {
    height: 190px;
  }
  .model-about__pic {
    width: 58%;
    padding-right: 40px;
  }
  .model-about__info {
    width: 40%;
    min-height: 320px;
  }
  .model-about__type {
    bottom: 125px;
    right: -15px;
    font-size: 260.91px;
    letter-spacing: 19.5px;
  }
  .model-about__name {
    font-size: 28px;
  }
}

/* model fact */
.model-fact {
  padding: 30px 0;
}

@media (min-width: 768px) {
  .model-fact {
    padding: 45px 0;
  }
}

/* model tech */
.model-tech {
  margin-top: 40px;
}

.model-tech__pics {
  text-align: center;
}

.model-tech__pic {
  margin-bottom: 30px;
}

.model-tech__pic IMG {
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .model-tech {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .model-tech__pics {
    width: 100%;
    text-align: left;
  }
  .model-tech__pic {
    margin-bottom: 0;
  }
  .model-tech__pic_face {
    width: 44%;
  }
  .model-tech__pic_side {
    width: 56%;
  }
}

@media (min-width: 992px) {
  .model-tech {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}




/* gallery-block */
.gallery-block {
  margin-top: 30px;
}

.masonry__block {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

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

.masonry__elem-inner {
  padding-top: 65%;
}

.masonry__img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.masonry__img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #acacac;
  cursor: pointer;
}

.masonry__img IMG {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  /*object-fit: cover;
		min-width: 100%;
		min-height: 100%;*/
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.masonry__img_video:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: rgba(37, 43, 51, 0.8);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.masonry__img_video:hover:before {
  background: rgba(0, 86, 147, 0.9);
}

.masonry__img_video:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 1px;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 12px solid transparent;
  border-left: 18px solid #fff;
  border-bottom: 12px solid transparent;
}

@media (min-width: 600px) {
  .gallery-block {
    margin-top: 45px;
    margin-bottom: 25px;
  }
  .gallery-block .container {
    overflow-x: hidden;
    overflow-y: hidden;
  }
  .masonry {
    margin-right: -20px;
  }
  .masonry__elem {
    float: left;
    width: 25%;
    margin-bottom: 0;
  }
  .masonry__img-wrapper {
    right: 20px;
    bottom: 20px;
  }
  
  
  
  

  
  
}

@media (min-width: 992px) {
  .gallery-block {
    margin-bottom: 10px;
  }
  .masonry {
    margin-right: -35px;
  }
  .masonry__img-wrapper {
    right: 35px;
    bottom: 35px;
  }
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* special */
.special {
  margin: 30px 0;
}

.special__img-wrap:before {
  padding-bottom: 54.05405%;
}

.special__item {
  margin-bottom: 20px;
  background: #E41B1B;
  -webkit-transition: background .3s ease;
  transition: background .3s ease;
  width: 100%;
}

.special__item:hover {
  background: #ff161f;
}

.special__item A {
  color: #fff;
  text-decoration: none;
}

.special__item A:hover {
  color: #fff;
}

.special__item > A {
  width: 100%;
}

.special__content {
  text-transform: uppercase;
  padding: 16px 20px;
}

.special__title {
  display: inline-block;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding-bottom: 3px;
  border-bottom: 2px solid #fff;
}

.special__subtitle {
  font-size: 13px;
  margin-top: 5px;
}

@media (min-width: 768px) {
  .special {
    margin: 45px 0;
  }
  .special__item {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .special {
    margin-top: 50px;
  }
  .special__content {
    padding: 24px 30px;
  }
  .special__title {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}

/* contacts */
.contacts {
  margin: 23px 0 27px 0;
}

.contacts H2 {
  font-size: 18px;
  color: #1a212d;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 23px;
}

.contacts .text-block {
  margin-top: 0;
}

.contacts-item {
  color: #252b33;
  margin-bottom: 22px;
}

.contacts-item__phone, .contacts-item__address, .contacts-item__time, .contacts-item__email {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.contacts-item__name, .contacts-item__phone {
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contacts-item__name A, .contacts-item__phone A {
  color: #252b33;
  text-decoration: none;
}

.contacts-item__name {
  margin-bottom: 10px;
}

.contacts-item__name A:hover {
  color: #E41B1B;
}

.contacts-item__icon {
  position: absolute;
  top: 3px;
  left: 0;
  width: 12px;
  height: 12px;
  fill: #b4b4b4;
}

.contacts-item__address .contacts-item__icon {
  left: -1px;
  width: 14px;
  height: 14px;
}

.contacts-item__email {
  font-size: 12px;
}

.contacts-item__email .contacts-item__icon {
  top: 2px;
}

.contacts-header {
  margin-top: 23px;
}

.contacts-header H2 {
  position: relative;
  font-size: 18px;
  color: #1a212d;
  letter-spacing: 0;
  text-transform: none;
  padding-bottom: 27px;
  margin-bottom: 19px;
}

.contacts-header H2:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 23px;
  height: 2px;
  background: #E41B1B;
}

.contacts-header-address {
  position: relative;
  font-family: "GeometriaMedium", Arial, FreeSans, sans-serif;
  font-size: 14px;
  padding-left: 19px;
  margin-bottom: 25px;
}

.contacts-header-address__icon {
  position: absolute;
  top: 0;
  left: -1px;
  width: 14px;
  height: 14px;
  fill: #b4b4b4;
}

.contacts-header-address__label {
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.map {
  height: 400px;
}

.map-pointer-container {
  position: relative;
}

.map-pointer {
  position: absolute;
  left: -31px;
  top: -67px;
  width: 63px;
  height: 74px;
  background: url("../images/map_pointer.png") 0 0 no-repeat;
}

.map-pointer:hover, .map-pointer_active {
  background-position: right;
}

.map-balloon {
  font: 13px/1.4 Verdana, sans-serif;
  color: #252b33;
  padding: 3px 0 7px 0;
}

.map-balloon__title {
  font-family: "GeometriaMedium", Arial, FreeSans, sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 9px;
}

.map-balloon__address {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
}

.map-balloon__address .map-balloon__icon {
  left: -1px;
  width: 14px;
  height: 14px;
}

.map-balloon__phone {
  position: relative;
  padding-left: 26px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 9px;
}

.map-balloon__link {
  font-size: 12px;
}

.map-balloon__icon {
  position: absolute;
  top: 3px;
  left: 0;
  width: 12px;
  height: 12px;
  fill: #b4b4b4;
}

@media (min-width: 576px) {
  .contacts-item__name {
    min-height: 40px;
  }
}

@media (min-width: 768px) {
  .contacts {
    margin: 45px 0 30px 0;
  }
  .contacts H2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .contacts-header {
    margin-top: 33px;
  }
  .contacts-header H2 {
    font-size: 22px;
    padding-bottom: 36px;
    margin-bottom: 38px;
  }
  .contacts-header H2:before {
    width: 42px;
  }
  .contacts-item {
    margin-bottom: 32px;
  }
  .contacts-item__name {
    margin-bottom: 20px;
  }
  .contacts-header-address {
    margin-left: -19px;
  }
  .map-balloon {
    padding-left: 8px;
    padding-right: 8px;
  }
  .ymaps-2-1-69-balloon {
    -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.15), 0 5px 15px -7px rgba(0, 0, 0, 0.5) !important;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.15), 0 5px 15px -7px rgba(0, 0, 0, 0.5) !important;
  }
}

@media (min-width: 992px) {
  .map {
    height: 600px;
  }
  .contacts {
    margin: 52px 0;
  }
  .contacts H2 {
    font-size: 30px;
    margin-bottom: 54px;
  }
  .contacts-header {
    margin-top: 42px;
  }
  .contacts-header H2 {
    font-size: 30px;
    padding-bottom: 42px;
    margin-bottom: 48px;
  }
  .contacts-item {
    margin-bottom: 49px;
  }
  .contacts-item__name {
    min-height: 50px;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 18px;
  }
  .contacts-item__phone {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .contacts-item__phone .contacts-item__icon {
    top: 4px;
  }
  .contacts-item__address, .contacts-item__time {
    margin-bottom: 20px;
  }
  .contacts-header-address {
    font-size: 18px;
  }
  .map-balloon {
    padding: 9px 16px 17px 16px;
  }
  .map-balloon__title {
    font-size: 22px;
    letter-spacing: 0;
    margin-bottom: 17px;
  }
  .map-balloon__phone {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .map-balloon__phone .map-balloon__icon {
    top: 4px;
  }
  .contacts_detail H2 {
    margin-bottom: 34px;
  }
  .contacts_detail .contacts-item__name {
    font-size: 16px;
  }
}

/* text-block-disclaimer */
.text-block-disclaimer {
  margin: 30px 0;
  color: #9b9b9b;
}

@media (min-width: 768px) {
  .text-block-disclaimer {
    margin: 45px 0;
    line-height: 1.7;
  }
}

/* vehicle-types-block */
.vehicle-types-block {
  margin: 30px 0;
}

.vehicle-types-block A {
  color: #1a212d;
  text-decoration: none;
}

.vehicle-types-block__item {
  text-align: center;
  margin-bottom: 50px;
}

.vehicle-types-block__pic {
  margin-bottom: 15px;
}

.vehicle-types-block__pic IMG {
  max-width: 100%;
  height: auto;
}

.vehicle-types-block__type {
  font-size: 16px;
  font-family: "GeometriaRegular", Arial, FreeSans, sans-serif;
  margin-bottom: 10px;
}

.vehicle-types-block__price {
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.vehicle-types-block__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.vehicle-types-block__button {
  width: 100%;
  font: 10px/20px "GeometriaBold", Arial, FreeSans, sans-serif;
  letter-spacing: 0.8px;
  color: #fff !important;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 20px 7px;
  margin-bottom: 10px;
  border-radius: 20px;
  background-color: #98b02e;
  color: #fff !important;
  background: #252b33;
  cursor: pointer;
}

.vehicle-types-block__button_green {
  background: #98b02e;
}

.vehicle-types-block__icon {
  display: none;
}

@media (min-width: 768px) {
  .vehicle-types-block {
    margin: 45px 0;
  }
  .vehicle-types-block__pic {
    height: 190px;
  }
  .vehicle-types-block__item {
    text-align: center;
    margin-bottom: 60px;
  }
  .vehicle-types-block__button {
    padding: 10px 32px;
  }
}

@media (min-width: 992px) {
  .vehicle-types-block__item {
    margin-bottom: 65px;
  }
  .vehicle-types-block__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .vehicle-types-block__button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
  }
  .vehicle-types-block__button:not(:last-child) {
    margin-right: 30px;
  }
  .vehicle-types-block__button:hover .vehicle-types-block__tooltip {
    visibility: visible;
  }
  .vehicle-types-block__tooltip {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    top: -52px;
    left: 50%;
    font: 13px/1.3 "GeometriaRegular", Arial, FreeSans, sans-serif;
    color: #1a212d;
    letter-spacing: normal;
    text-transform: none;
    padding: 11px 18px 13px 18px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(26, 26, 26, 0.15);
    box-shadow: 0px 0px 10px 0px rgba(26, 26, 26, 0.15);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .vehicle-types-block__tooltip:before {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: -6px;
    left: calc(50% - 6px);
    width: 0;
    height: 0;
    border: 6px solid black;
    border-color: transparent transparent #fff #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #fff;
    -webkit-box-shadow: -3px 3px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: -3px 3px 4px 0 rgba(0, 0, 0, 0.1);
  }
  .vehicle-types-block__icon {
    display: block;
    width: 28px;
    height: 28px;
    fill: #fff;
  }
}

/* model about block */
.vehicle-family-header-block {
  padding: 24px 0 50px 0;
  background: #f2f0f0;
}

.vehicle-family-header-block__pic {
  margin-bottom: 20px;
}

.vehicle-family-header-block__pic IMG {
  max-width: 100%;
  height: auto;
}

.vehicle-family-header-block:after {
  content: "";
  display: table;
  clear: both;
}

.vehicle-family-header-block__name {
  font-size: 25px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  letter-spacing: 1.25px;
  margin: 0 0 5px;
}

.vehicle-family-header-block__desc {
  margin-bottom: 40px;
}

.vehicle-family-header-block__button {
  text-align: center;
  margin-right: -15px;
}

.vehicle-family-header-block__type {
  display: none;
}

@media (min-width: 768px) {
  .vehicle-family-header-block {
    position: relative;
    padding-top: 40px;
  }
  .vehicle-family-header-block:before {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 170px;
    background: #fff;
    content: '';
  }
  .vehicle-family-header-block__wrap {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .vehicle-family-header-block__pic {
    width: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .vehicle-family-header-block__info {
    -ms-flex-item-align: start;
    align-self: flex-start;
    position: relative;
    width: 47.5%;
    min-height: 270px;
    padding-bottom: 99px;
  }
  .vehicle-family-header-block__name {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2.7px;
    margin: 0 0 20px;
  }
  .vehicle-family-header-block__desc {
    font-size: 18px;
    font-family: "GeometriaMedium", Arial, FreeSans, sans-serif;
    letter-spacing: 0.6px;
    margin-bottom: 36px;
  }
  .vehicle-family-header-block__button {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .vehicle-family-header-block .container {
    position: relative;
    overflow-x: hidden;
  }
  .vehicle-family-header-block__type {
    position: absolute;
    z-index: 1;
    display: block;
    right: 0;
    bottom: 65px;
    font-family: "GeometriaMedium", Arial, FreeSans, sans-serif;
    font-size: 176.64px;
    line-height: 176.64px;
    letter-spacing: 13.248px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

@media (min-width: 992px) {
  .vehicle-family-header-block {
    padding-top: 90px;
  }
  .vehicle-family-header-block:before {
    height: 190px;
  }
  .vehicle-family-header-block__pic {
    width: 58%;
    padding-right: 40px;
  }
  .vehicle-family-header-block__info {
    width: 40%;
    min-height: 320px;
  }
  .vehicle-family-header-block__type {
    left: 0;
    bottom: 125px;
    right: -15px;
    font-size: 260.91px;
    letter-spacing: 19.5px;
    text-align: center;
  }
  .vehicle-family-header-block__button {
    position: static;
    text-align: left;
  }
}

/* image-links-block */
.image-links-block {
  margin: 30px 0;
}

.image-links-block A {
  color: #1a212d;
  text-decoration: none;
}

.image-links-block IMG {
  max-width: 100%;
  height: auto;
}

.image-links-block__item {
  margin: 13px 0;
}

.image-links-block__pic {
  margin-bottom: 5px;
}

.image-links-block__name {
  font-size: 14px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.image-links-block__info {
  font-size: 11px;
}

@media (min-width: 768px) {
  .image-links-block__pic {
    margin-bottom: 10px;
  }
  .image-links-block__name {
    font-size: 16px;
    line-height: 1.3;
  }
  .image-links-block__info {
    font-size: 12px;
  }
}

@media (min-width: 992px) {
  .image-links-block__item {
    margin-bottom: 55px;
  }
  .image-links-block__pic {
    margin-bottom: 10px;
  }
  .image-links-block__name {
    font-size: 20px;
  }
  .image-links-block__info {
    font-size: 13px;
  }
}

/* awards */
.awards-block__item {
  color: #363c41;
  margin-bottom: 30px;
  background: #fff;
  /*transition: background .3s ease;*/
  cursor: pointer;
}

.awards-block__item:hover {
  background: #e6e6e6;
}

.awards-block__item A {
  color: #363c41;
  text-decoration: none;
}

.awards-block__pic {
  text-align: center;
  background: #fff;
}

.awards-block__pic IMG {
  width: 100%;
  height: auto;
}

.awards-block__body {
  padding: 14px 20px 25px 20px;
}

.awards-block__body:after {
  content: "";
  display: table;
  clear: both;
}

.awards-block__body P {
  margin-bottom: 26px;
}

.awards-block__date {
  width: 50%;
  max-width: 164px;
  font-family: "GeometriaRegular", Arial, FreeSans, sans-serif;
  color: #fff;
  padding: 6px 5px 5px 20px;
  background: #20252b;
}

.awards-block__day {
  float: left;
  font-size: 30px;
  line-height: 1.2;
  margin-right: 16px;
}

.awards-block__month-year {
  font-size: 12px;
}

.awards-block__section {
  width: 50%;
  font-family: "GeometriaMedium", Arial, FreeSans, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  padding: 8px 5px 5px 30px;
}

.awards-popup {
  position: relative;
  width: auto;
  max-width: 900px;
  padding: 40px 20px 20px 20px;
  margin: 20px auto;
  background: #FFF;
}

.awards-popup__pic {
  width: 150px;
  margin: 0 auto;
}

.awards-popup__pic IMG {
  max-width: 100%;
  height: auto;
}

.awards-popup .text-block {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .awards-block {
    max-width: 450px;
    margin: 0 auto;
  }
  .awards-block__body-wrap {
    position: relative;
    height: 75px;
    overflow: hidden;
  }
  .awards-block__body-wrap:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20px;
    background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
  }
  .awards-block__item:hover .awards-block__body-wrap:after {
    background: -webkit-gradient(linear, left bottom, left top, from(#e6e6e6), to(rgba(230, 230, 230, 0)));
    background: linear-gradient(to top, #e6e6e6, rgba(230, 230, 230, 0));
  }
}

@media (min-width: 768px) {
  .awards-block__date {
    padding-left: 25px;
  }
  .awards-block__body {
    padding: 24px 38px 25px 38px;
  }
  .awards-popup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 20px;
  }
  .awards-popup__pic {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 15px;
  }
  .awards-popup__text {
    padding: 0 15px;
  }
  .awards-popup .text-block {
    margin-top: 0;
  }
  .awards-popup .mfp-close {
    width: 45px;
    height: 45px;
    line-height: 1;
    position: absolute;
    text-decoration: none;
    text-align: center;
    opacity: 1;
    font-style: normal;
    font-size: 28px;
    font-family: Tahoma;
    border-radius: 50%;
    border: 2px solid #ceccce !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow: visible;
    cursor: pointer;
    display: block;
    outline: none;
    padding: 0;
    padding-bottom: 3px;
    z-index: 1046;
    top: -18px;
    right: -18px;
    background: #fff;
    -webkit-box-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
  }
  .awards-popup .mfp-close:hover {
    color: #ceccce !important;
  }
}

@media (min-width: 992px) {
  .awards-block {
    max-width: 360px;
  }
}

@media (min-width: 960px) {
  .awards-popup {
    margin: 20px auto;
  }
}

/* slider-block */
.slider-block {
  margin: 30px 0;
}

.slider-block IMG {
  max-width: 100%;
  height: auto;
}

.slider-block BUTTON:focus {
  outline: none;
}

.slider-block__carousel {
  margin-left: -15px;
  margin-right: -15px;
}

.slider-block .slick-arrow {
  display: none !important;
}

.slider-block .slick-dots {
  text-align: center;
  margin-top: 12px;
}

.slider-block .slick-dots LI {
  display: inline-block;
}

.slider-block .slick-dots BUTTON {
  position: relative;
  width: 10px;
  height: 10px;
  font-size: 0;
  margin: 0 8px;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
}

.slider-block .slick-dots BUTTON:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #5e6a7d;
}

.slider-block .slick-dots .slick-active BUTTON {
  border-color: #E41B1B;
}

.slider-block .slick-dots .slick-active BUTTON:after {
  display: none;
}

@media (min-width: 576px) {
  .slider-block__carousel {
    margin-right: 0;
    margin-left: 0;
  }
  .slider-block IMG {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .slider-block {
    margin: 45px 0;
  }
}

@media (min-width: 992px) {
  .slider-block__carousel {
    padding: 0 60px;
  }
  .slider-block .slick-arrow {
    display: block !important;
    position: absolute;
    top: 50%;
    font-size: 0;
    width: 40px;
    height: 40px;
    margin-top: -37px;
    border: 1px solid #c3c3c3;
    background: #fff;
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .slider-block .slick-arrow:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    border-top: 2px solid #252b33;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .slider-block .slick-arrow:hover {
    border-color: #E41B1B;
    background: #E41B1B;
  }
  .slider-block .slick-arrow:hover:after {
    border-color: #fff;
  }
  .slider-block .slick-prev {
    left: 0;
  }
  .slider-block .slick-prev:after {
    margin-left: -4px;
    border-left: 2px solid #252b33;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .slider-block .slick-next {
    right: 0;
  }
  .slider-block .slick-next:after {
    margin-left: -8px;
    border-right: 2px solid #252b33;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

/* two-columns-slider-block */
.two-columns-slider-block {
  margin: 30px 0;
}

.two-columns-slider-block IMG {
  max-width: 100%;
  height: auto;
}

.two-columns-slider-block BUTTON:focus {
  outline: none;
}

.two-columns-slider-block .container {
  padding: 0;
}

.two-columns-slider-block__item {
  padding: 0 15px;
}

.two-columns-slider-block__pic {
  margin: 0 -15px 30px -15px;
}

.two-columns-slider-block .text-block {
  margin-top: 0;
}

.two-columns-slider-block .slick-arrow {
  display: none !important;
}

.two-columns-slider-block .slick-dots {
  text-align: center;
  margin-top: -14px;
}

.two-columns-slider-block .slick-dots LI {
  display: inline-block;
}

.two-columns-slider-block .slick-dots BUTTON {
  position: relative;
  width: 10px;
  height: 10px;
  font-size: 0;
  margin: 0 8px;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
}

.two-columns-slider-block .slick-dots BUTTON:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #5e6a7d;
}

.two-columns-slider-block .slick-dots .slick-active BUTTON {
  border-color: #E41B1B;
}

.two-columns-slider-block .slick-dots .slick-active BUTTON:after {
  display: none;
}

@media (min-width: 576px) {
  .two-columns-slider-block__pic {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .two-columns-slider-block {
    margin: 45px 0;
  }
  .two-columns-slider-block__item {
    padding: 0 22px;
  }
  .two-columns-slider-block__pic {
    margin-bottom: 45px;
  }
  .two-columns-slider-block .slick-dots {
    margin-top: -29px;
  }
}

@media (min-width: 992px) {
  .two-columns-slider-block__item {
    padding: 0 15px;
  }
}

/* gaz-assistans */
.gaz-assistans {
  position: relative;
  min-height: 350px;
  margin-top: 30px;
  background: #fff url("../images/web-map.png") center top no-repeat;
  background-size: cover;
}

.gaz-assistans:after {
  content: '';
  position: absolute;
  display: block;
  height: 30%;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
}

.gaz-assistans__text {
  padding: 20px 0 50px 0;
}

.gaz-assistans__text H2 {
  margin-bottom: 15px;
}

.gaz-assistans__text P {
  font: 15px/1.4 "GeometriaMedium", Arial, FreeSans, sans-serif;
}

.gaz-assistans__num {
  font-size: 70px;
  line-height: 1;
  color: #E41B1B;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .gaz-assistans {
    margin-top: 45px;
    min-height: 450px;
    background-size: 100%;
  }
  .gaz-assistans__text {
    max-width: 90%;
    padding: 45px 0;
  }
  .gaz-assistans__text H2 {
    margin-bottom: 25px;
  }
  .gaz-assistans__text P {
    font-size: 22px;
  }
  .gaz-assistans__num {
    font-size: 100px;
  }
}

@media (min-width: 992px) {
  .gaz-assistans {
    min-height: 555px;
    background-position: calc(50% + 115px) 30px;
    background-size: auto;
  }
  .gaz-assistans__text {
    max-width: 70%;
    padding: 80px 0;
  }
  .gaz-assistans__num {
    font-size: 147px;
  }
}

/* text-image-slider-block */
.text-image-slider-block {
  position: relative;
}

.text-image-slider-block:before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url("../images/slider_bg.png") 0 0 repeat-x;
}

.text-image-slider-block__pic {
  width: 100%;
  height: auto;
}

.text-image-slider-block BUTTON:focus {
  outline: none;
}

.text-image-slider-block .container {
  max-width: 2000px;
  padding: 0;
}

.text-image-slider-block__carousel {
  position: relative;
}

.text-image-slider-block__link {
  display: block;
  color: #1a212d;
}

.text-image-slider-block__link:hover {
  color: #1a212d;
  text-decoration: none;
}

.text-image-slider-block__text {
  text-align: center;
  padding: 20px 15px 0 15px;
}

.text-image-slider-block__title {
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  font-size: 24px;
  margin-bottom: 5px;
}

.text-image-slider-block__info {
  font-family: "GeometriaMedium", Arial, FreeSans, sans-serif;
  font-size: 15px;
  margin-bottom: 14px;
}

.text-image-slider-block__price {
  font: 36px/1 "GeometriaBold", Arial, FreeSans, sans-serif;
  color: #E41B1B;
  white-space: nowrap;
  margin-bottom: 24px;
}

.text-image-slider-block__currency {
  fill: #E41B1B;
  width: 18px;
  height: 23px;
  margin-left: 3px;
}

.text-image-slider-block__buttons {
  margin: 0 -15px 10px 0;
}

.text-image-slider-block .slick-arrow {
  display: none !important;
}

.text-image-slider-block .slick-dots {
  text-align: center;
  margin-bottom: 32px;
}

.text-image-slider-block .slick-dots LI {
  display: inline-block;
}

.text-image-slider-block .slick-dots BUTTON {
  position: relative;
  width: 10px;
  height: 10px;
  font-size: 0;
  margin: 0 8px;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
}

.text-image-slider-block .slick-dots BUTTON:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #5e6a7d;
}

.text-image-slider-block .slick-dots .slick-active BUTTON {
  border-color: #E41B1B;
}

.text-image-slider-block .slick-dots .slick-active BUTTON:after {
  display: none;
}

@media (min-width: 768px) {
  .text-image-slider-block {
    margin-bottom: -5px;
  }
  .text-image-slider-block__pic {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .text-image-slider-block__item {
    position: relative;
    height: 470px;
    overflow: hidden;
  }
  .text-image-slider-block__carousel {
    margin-left: 0;
    margin-right: 0;
  }
  .text-image-slider-block__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    text-align: left;
    padding: 80px 56px 50px 56px;
  }
  .text-image-slider-block__text_right {
    left: auto;
    right: 0;
  }
  .text-image-slider-block__text_white {
    color: #fff;
  }
  .text-image-slider-block__text_white .text-image-slider-block__price {
    color: #fff;
  }
  .text-image-slider-block__text_white .text-image-slider-block__currency {
    fill: #fff;
  }
  .text-image-slider-block__title {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .text-image-slider-block__info {
    font-size: 16px;
    margin-bottom: 23px;
  }
  .text-image-slider-block__price {
    font-size: 50px;
    margin-bottom: 30px;
  }
  .text-image-slider-block__currency {
    position: relative;
    top: -2px;
    width: 29px;
    height: 38px;
    margin-left: 5px;
  }
  .text-image-slider-block .slick-dots {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .text-image-slider-block_azgaz .text-image-slider-block__item {
    height: auto;
  }
  .text-image-slider-block_azgaz .text-image-slider-block__pic {
    position: static;
    top: auto;
    left: auto;
    max-width: 100%;
    height: auto;
    -webkit-transform: none;
    transform: none;
  }
  .text-image-slider-block_azgaz .text-image-slider-block__text {
    padding-top: 55px;
  }
  .text-image-slider-block_azgaz .text-image-slider-block__title {
    font-size: 36px;
  }
  .text-image-slider-block_azgaz .text-image-slider-block__info {
    font-size: 13px;
  }
  .text-image-slider-block_azgaz .slick-dots BUTTON:after {
    background: #fff;
  }
  .text-image-slider-block_azgaz .slick-dots .slick-active BUTTON {
    border-color: #fff;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .text-image-slider-block_azgaz .text-image-slider-block__text {
    padding: 55px 30px 50px 30px;
  }
}

@media (min-width: 992px) {
  .text-image-slider-block__pic {
    min-width: 100%;
    height: auto;
    min-height: 100%;
  }
  .text-image-slider-block__item {
    height: 688px;
  }
  .text-image-slider-block__text-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
  }
  .text-image-slider-block__text {
    width: 50%;
    padding: 107px 82px 50px 82px;
  }
  .text-image-slider-block__title {
    font-size: 60px;
    margin-bottom: 36px;
  }
  .text-image-slider-block__info {
    font-size: 24px;
  }
  .text-image-slider-block__price {
    font-size: 84px;
    margin-bottom: 67px;
  }
  .text-image-slider-block__buttons {
    margin-top: 67px;
  }
  .text-image-slider-block__currency {
    top: 0;
    width: 46px;
    height: 60px;
    margin-left: 5px;
  }
  .text-image-slider-block .slick-arrow {
    display: block !important;
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    font-size: 0;
    width: 80px;
    background: transparent;
    cursor: pointer;
  }
  .text-image-slider-block .slick-arrow:after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: 50%;
    margin-top: -11px;
    border-top: 1px solid #575c63;
  }
  .text-image-slider-block .slick-prev {
    left: 0;
  }
  .text-image-slider-block .slick-prev:after {
    left: 50%;
    margin-left: -5px;
    border-left: 1px solid #575c63;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .text-image-slider-block .slick-next {
    right: 0;
  }
  .text-image-slider-block .slick-next:after {
    right: 50%;
    margin-right: -5px;
    border-right: 1px solid #575c63;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .text-image-slider-block_azgaz .text-image-slider-block__title {
    margin-bottom: 10px;
  }
  .text-image-slider-block_azgaz .text-image-slider-block__info {
    letter-spacing: 0.5px;
    margin-bottom: 35px;
  }
  .text-image-slider-block_azgaz .text-image-slider-block__buttons {
    margin-top: 35px;
  }
  .text-image-slider-block_azgaz .text-image-slider-block__price {
    font-size: 50px;
    margin-bottom: 30px;
  }
  .text-image-slider-block_azgaz .text-image-slider-block__currency {
    width: 29px;
    height: 38px;
    margin-left: 5px;
  }
  .text-image-slider-block_azgaz .slick-arrow {
    width: 89px;
  }
  .text-image-slider-block_azgaz .slick-arrow:after {
    width: 26px;
    height: 26px;
    margin-top: -13px;
    border-color: #fff;
    border-width: 2px;
  }
  .text-image-slider-block_azgaz .slick-prev:after {
    left: auto;
    right: 0;
    margin-left: 0;
  }
  .text-image-slider-block_azgaz .slick-next:after {
    right: 0;
    left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1350px) {
  .text-image-slider-block_azgaz .text-image-slider-block__text {
    width: 33.3%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* video-gallery-block */
.video-gallery-block {
  margin: 30px 0;
}

.video-gallery-block .container {
  max-width: 900px;
}

.video-gallery-block__view {
  margin-bottom: 17px;
}

.video-gallery-block__video {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  /*transform: scale(0.9);*/
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.video-gallery-block__video_visible {
  padding-top: 56.25%;
  opacity: 1;
  /*transform: scale(1);*/
}

.video-gallery-block__video-iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-gallery-block__thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 17px;
  margin-left: -8px;
  margin-right: -8px;
}

.video-gallery-block__thumbnail {
  width: 50%;
  cursor: pointer;
  padding: 0 8px;
}

.video-gallery-block__thumbnail_active {
  cursor: default;
}

.video-gallery-block__thumbnail_active .video-gallery-block__thumbnail-image-wrapper:after {
  display: none;
}

.video-gallery-block__thumbnail:hover .video-gallery-block__thumbnail-image-wrapper:after {
  opacity: .3;
}

.video-gallery-block__thumbnail-image-wrapper {
  position: relative;
  padding-bottom: 65%;
  margin-bottom: 18px;
  overflow: hidden;
}

.video-gallery-block__thumbnail-image-wrapper:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E41B1B;
  opacity: .6;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.video-gallery-block__thumbnail-image {
  position: absolute;
  top: 50%;
  left: 0;
  width: 125%;
  height: auto;
  max-width: none;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.video-gallery-block__thumbnail-description {
  display: none;
}

@media (min-width: 576px) {
  .video-gallery-block__thumbnail-description {
    display: block;
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .video-gallery-block {
    margin: 45px 0;
  }
  .video-gallery-block__thumbnails {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .video-gallery-block__thumbnail {
    width: 176px;
  }
}

@media (min-width: 992px) {
  .video-gallery-block .container {
    padding: 0;
  }
}

/* gaz-specials */
.gaz-specials {
  text-align: center;
  text-transform: uppercase;
  margin: 30px 0;
}

.gaz-specials H2 {
  margin-bottom: 28px;
}

.gaz-specials__pic {
  margin: 0 -15px 23px -15px;
  background: url("../images/gaz_specials_bg.png") center center no-repeat;
  background-size: 100%;
}

.gaz-specials__pic IMG {
  width: 75%;
  max-width: 430px;
  height: auto;
}

.gaz-specials__text1 {
  font-family: "GeometriaRegular", Arial, FreeSans, sans-serif;
  font-size: 14px;
  color: #252b33;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.gaz-specials__text2 {
  font: 18px/1.2 "GeometriaBold", Arial, FreeSans, sans-serif;
  color: #252b33;
  padding: 0 20px;
}

.gaz-specials__text3 {
  font: 60px/1 "GeometriaBold", Arial, FreeSans, sans-serif;
  color: #E41B1B;
  margin-bottom: 4px;
}

.gaz-specials .button {
  margin: 26px 0 0 0;
}

@media (min-width: 768px) {
  .gaz-specials {
    margin: 45px 0;
  }
  .gaz-specials H2 {
    margin-bottom: 31px;
  }
  .gaz-specials__pic {
    margin: 0;
  }
  .gaz-specials__pic IMG {
    width: auto;
    max-width: 90%;
  }
  .gaz-specials__text {
    margin-top: 17px;
  }
  .gaz-specials__text1 {
    margin-bottom: 5px;
  }
  .gaz-specials__text2 {
    font-size: 22px;
    padding: 0;
  }
  .gaz-specials__text3 {
    font-size: 70px;
    line-height: 0.9;
    margin-bottom: 0;
  }
  .gaz-specials .button {
    margin-top: 30px;
  }
}

@media (min-width: 992px) {
  .gaz-specials {
    margin: 67px 0 80px 0;
  }
  .gaz-specials H2 {
    font-size: 41px;
    line-height: 1.3;
    letter-spacing: 1px;
    padding-right: 10%;
    padding-left: 10%;
  }
  .gaz-specials__text {
    margin-top: 20px;
  }
  .gaz-specials__text1 {
    font-size: 18px;
    margin-bottom: 9px;
  }
  .gaz-specials__text2 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 7px;
  }
  .gaz-specials__text3 {
    font-size: 100px;
    margin-bottom: 4px;
  }
}

/* columns-separator-block */
.columns-separator-block {
  margin: 30px 0;
}

.columns-separator-block .text-block, .columns-separator-block .image-block, .columns-separator-block .image-block-popup, .columns-separator-block .image-block-link, .columns-separator-block .slider-block {
  margin-top: 1em;
}

@media (min-width: 768px) {
  .columns-separator-block {
    margin: 45px 0;
  }
}

@media (min-width: 992px) {
  .columns-separator-block .row > DIV:nth-child(1) {
    border-right: 2px solid #E41B1B;
  }
  .columns-separator-block .row > DIV:nth-child(n+2) {
    padding-left: 45px;
  }
  .columns-separator-block .row > DIV > DIV {
    margin-bottom: 0;
    /*.container > *:last-child {
				  margin-bottom: 0;
				}*/
  }
}

/* icon-text-margin-block */
.icon-text-margin-block {
  margin: 30px 0;
}

.icon-text-margin-block .text-block {
  margin: 0;
}

.icon-text-margin-block__icon {
  width: 60px;
  height: 60px;
  fill: #9ab9c9;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 16px;
}

@media (min-width: 768px) {
  .icon-text-margin-block {
    margin: 45px 0;
  }
  .icon-text-margin-block__icon {
    width: 75px;
    height: 75px;
    margin-right: 25px;
  }
}

/* modification-slider-block */
.modification-slider-block {
  margin: 30px 0;
}

.modification-slider-block IMG {
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

.modification-slider-block BUTTON:focus {
  outline: none;
}

.modification-slider-block .container {
  padding: 0;
  max-width: none;
}

.modification-slider-block__slide {
  padding: 0 15px;
}

.modification-slider-block__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font: 11px/1.2 "GeometriaMedium", Arial, FreeSans, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  height: 35px;
  padding: 0 30px;
  margin-bottom: 25px;
}

.modification-slider-block__text {
  text-align: center;
  margin: -10px 0 32px 0;
}

.modification-slider-block__pic {
  margin-bottom: 35px;
}

.modification-slider-block .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 0;
  font-size: 0;
  width: 25px;
  height: 35px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.modification-slider-block .slick-arrow:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  border-top: 2px solid #252b33;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.modification-slider-block .slick-arrow:hover:after {
  border-color: #E41B1B;
}

.modification-slider-block .slick-prev {
  left: 9px;
}

.modification-slider-block .slick-prev:after {
  margin-left: -4px;
  border-left: 2px solid #252b33;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modification-slider-block .slick-next {
  right: 9px;
}

.modification-slider-block .slick-next:after {
  margin-left: -8px;
  border-right: 2px solid #252b33;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modification-slider-block .slick-dots {
  text-align: center;
}

.modification-slider-block .slick-dots LI {
  display: inline-block;
}

.modification-slider-block .slick-dots BUTTON {
  position: relative;
  width: 10px;
  height: 10px;
  font-size: 0;
  margin: 0 8px;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
}

.modification-slider-block .slick-dots BUTTON:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #5e6a7d;
}

.modification-slider-block .slick-dots .slick-active BUTTON {
  border-color: #E41B1B;
}

.modification-slider-block .slick-dots .slick-active BUTTON:after {
  display: none;
}

.modification-slider-block__nav {
  display: none;
}

@media (min-width: 576px) {
  .modification-slider-block__text {
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .modification-slider-block {
    margin: 45px 0;
  }
  .modification-slider-block .slick-prev {
    left: 16px;
  }
  .modification-slider-block .slick-next {
    right: 16px;
  }
}

@media (min-width: 992px) {
  .modification-slider-block {
    margin: 80px 0;
  }
  .modification-slider-block .container .container {
    max-width: 520px;
  }
  .modification-slider-block__title {
    display: none;
  }
  .modification-slider-block__pic {
    margin-bottom: 40px;
  }
  .modification-slider-block .slick-dots {
    display: none !important;
  }
  .modification-slider-block .slick-arrow {
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -37px;
    border: 1px solid #c3c3c3;
    background: #fff;
  }
  .modification-slider-block .slick-arrow:after {
    width: 12px;
    height: 12px;
    margin-top: -6px;
  }
  .modification-slider-block .slick-arrow:hover {
    border-color: #E41B1B;
    background: #E41B1B;
  }
  .modification-slider-block .slick-arrow:hover:after {
    border-color: #fff;
  }
  .modification-slider-block .slick-prev {
    left: 55px;
  }
  .modification-slider-block .slick-next {
    right: 55px;
  }
  .modification-slider-block__nav {
    display: block;
    text-align: center;
    max-width: 1170px;
    padding: 0 15px;
    margin: 20px auto;
  }
  .modification-slider-block__nav-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 150px;
    height: 150px;
    text-align: center;
    vertical-align: top;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .modification-slider-block__nav-item:not(:last-child) {
    margin-right: 5px;
  }
  .modification-slider-block__nav-item_active {
    background: #f4f4f4;
    cursor: default;
  }
  .modification-slider-block__nav-content {
    width: 100%;
    padding: 0 20px;
    line-height: 1;
    font: 10px/1.6 "GeometriaBold", Arial, FreeSans, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .modification-slider-block__nav-pic {
    max-width: 87px;
    height: auto;
    margin-bottom: 10px;
  }
}

/* table-legend-block */
.table-legend-block {
  margin: 30px 0 20px 0;
}

.table-legend-block__list {
  list-style: none;
}

.table-legend-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4px;
}

.table-legend-block__item:not(:last-child) {
  margin-right: 5%;
}

.table-legend-block__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}

.table-legend-block__text {
  font: 11px/1.6 "GeometriaMedium", Arial, FreeSans, sans-serif;
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .table-legend-block__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .table-legend-block {
    margin-top: 45px;
  }
  .table-legend-block__icon {
    margin-right: 20px;
  }
}

/* media-links */
.media-links {
  text-align: center;
  padding: 29px 0;
  background: #f2f0f0;
}

.media-links__title {
  font-size: 11px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  color: #233241;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.media-links__list {
  list-style: none;
  margin: 0;
}

.media-links__item {
  display: inline-block;
}

.media-links__item:not(:last-child) {
  margin-right: 12px;
}

.media-links__button {
  display: block;
  width: 37px;
  height: 37px;
  overflow: hidden;
  line-height: 40px;
  text-align: center;
  background: #E41B1B;
  border-radius: 50%;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}

.media-links__button:hover {
  background-color: #4e69a2;
}

.media-links__button-icon {
  display: inline-block;
  fill: #fff;
  width: 13px;
  height: 13px;
  vertical-align: baseline;
}

@media (min-width: 768px) {
  .media-links {
    text-align: right;
    padding: 40px 0 38px 0;
  }
  .media-links__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .media-links__title {
    font-size: 13px;
    margin: 0 37px 0 0;
  }
}

.responsive-slider {
  padding: 0.1px 0;
}

@media (min-width: 992px) {
  .responsive-slider {
    padding: 0.1px 60px;
  }
}

.responsive-slider_mobile-full {
  margin-left: -15px;
  margin-right: -15px;
}

@media (min-width: 576px) {
  .responsive-slider_mobile-full {
    margin-left: 0;
    margin-right: 0;
  }
}

.responsive-slider_offset-y {
  margin-top: 30px;
  margin-bottom: 30px;
}

.responsive-slider__img-wrap:before {
  display: none;
}

.responsive-slider__img-scaler {
  display: block;
}

.responsive-slider .slick-arrow {
  display: none !important;
  position: absolute;
  top: 50%;
  font-size: 0;
  width: 40px;
  height: 40px;
  margin-top: -37px;
  border: 1px solid #c3c3c3;
  background: #fff;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (min-width: 992px) {
  .responsive-slider .slick-arrow {
    display: block !important;
  }
}

.responsive-slider .slick-arrow:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  margin-top: -6px;
  border-top: 2px solid #252b33;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.responsive-slider .slick-arrow:focus {
  outline: none;
}

.responsive-slider .slick-arrow:hover {
  border-color: #E41B1B;
  background: #E41B1B;
}

.responsive-slider .slick-arrow:hover:after {
  border-color: #fff;
}

.responsive-slider .slick-prev {
  left: 0;
}

.responsive-slider .slick-prev:after {
  margin-left: -4px;
  border-left: 2px solid #252b33;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.responsive-slider .slick-next {
  right: 0;
}

.responsive-slider .slick-next:after {
  margin-left: -8px;
  border-right: 2px solid #252b33;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.responsive-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1rem 0 -7px;
  list-style: none;
}

.responsive-slider .slick-dots button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 0;
  cursor: pointer;
}

.responsive-slider .slick-dots button:before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 2px solid #5e6a7d;
  background-color: #5e6a7d;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.responsive-slider .slick-dots button:focus {
  outline: none;
}

.responsive-slider .slick-dots .slick-active button:before {
  width: 10px;
  height: 10px;
  background: none;
  border-color: #E41B1B;
}

/* print */
@page {
  margin-right: 1cm;
  margin-left: 1cm;
  size: auto;
}

@media print {
  * {
    color: #000 !important;
    border-color: #000 !important;
    background-color: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  img {
    page-break-before: auto;
    page-break-after: auto;
    page-break-inside: avoid;
  }
  body, .container {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }
  .container {
    padding: 0;
  }
  .footer1, .footer1-azgaz, .privacy-policy, .logo, .add-menu, .call-sm, .menu-sm, .header2, .breadcrumb {
    display: none !important;
  }
  .header1__wrapper {
    padding-left: 0 !important;
  }
  .contacts-item__phone, .contacts-item__address, .contacts-item__time, .contacts-item__email {
    padding-left: 0;
  }
  .contacts {
    margin-bottom: 0;
  }
  .contacts .row > DIV {
    width: 50%;
  }
  .map {
    width: 100% !important;
    overflow: hidden;
    height: 550px;
    position: relative;
  }
  .map > .ymaps-2-1-74-map {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .contacts-item {
    page-break-inside: avoid;
  }
  .contacts-item__icon {
    display: none;
  }
}

/* error-page */
.error-page {
  position: relative;
  min-height: 570px;
  color: #fff;
  background: #77a1b9 url("../images/error-page/sky.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.error-page A {
  color: #fff;
}

.error-page__clouds {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/error-page/clouds.png") 50% -30px no-repeat;
  background-size: cover;
}

.error-page__code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  width: 100%;
  height: 260px;
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  font-size: 45vw;
  line-height: 1;
  text-align: center;
}

.error-page__road {
  position: absolute;
  z-index: 1;
  bottom: 0;
  height: 418px;
  width: 100%;
  background: url("../images/error-page/road.png") bottom center no-repeat;
  background-size: cover;
}

.error-page__content {
  position: relative;
  z-index: 2;
  padding: 270px 0 20px 0;
}

.error-page__text {
  width: 230px;
  margin: 0 auto;
}

.error-page__text UL {
  list-style-type: none;
  margin: 0;
}

.error-page__title {
  position: relative;
  font: 15px/1.5 "GeometriaBold", Arial, FreeSans, sans-serif;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.error-page__title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #fff;
}

.error-page__description {
  line-height: 1.7;
}

@media (min-width: 576px) {
  .error-page {
    min-height: 590px;
  }
  .error-page__code {
    font-size: 250px;
    height: 290px;
  }
  .error-page__content {
    padding-top: 290px;
  }
}

@media (min-width: 768px) {
  .error-page__content {
    padding-top: 340px;
  }
}

@media (min-width: 992px) {
  .error-page__code {
    font-size: 400px;
    height: 420px;
  }
  .error-page__title {
    font-size: 18px;
    line-height: 1.7;
  }
  .error-page__text {
    width: auto;
  }
}

.rbm-modal-overlay.mfp-bg {
  background-color: #e6e6e6;
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.rbm-modal-overlay.mfp-bg.mfp-ready {
  opacity: 0.9;
}

.rbm-modal-overlay.mfp-bg.mfp-removing {
  opacity: 0;
}

.rbm-modal-overlay.mfp-wrap .mfp-content {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.rbm-modal {
  position: relative;
  background: #fff;
  width: auto;
  max-width: 650px;
  margin: 20px auto;
  padding: 0;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.rbm-modal__header {
  background-color: #f4f4f4;
  padding: 35px 0 20px;
}

.rbm-modal .mfp-close {
  width: 50px;
  height: 50px;
  color: #20252b;
  opacity: 1;
}

.rbm-modal .mfp-close:focus {
  outline: none;
}

.rbm-modal__container {
  position: relative;
  padding: 0 15px;
  max-width: 570px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .rbm-modal__container {
    padding: 0 50px;
  }
}

@media (min-width: 992px) {
  .rbm-modal__container {
    max-width: none;
  }
}

.rbm-modal__title {
  font-family: "GeometriaBold", Arial, FreeSans, sans-serif;
  font-size: 25px;
  line-height: 1.2;
  color: #20252b;
  font-weight: normal;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .rbm-modal__title {
    font-size: 36px;
  }
}

.rbm-modal__form-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  -webkit-transition: .2s;
  transition: .2s;
}

.rbm-modal__form-preloader_hidden {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
  visibility: hidden;
}

.rbm-modal__form {
  padding: 20px 0 0;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

@media (min-width: 768px) {
  .rbm-modal__form {
    width: auto;
    padding: 40px 0 0;
  }
}

.rbm-modal__form_hidden {
  opacity: 0;
}

@media (min-width: 992px) {
  .rbm-modal__form .form-widget__form-group .form-widget__form-group {
    width: calc(100% - 146px);
  }
}

@media (min-width: 992px) {
  .rbm-modal__form .form-widget__form-group .form-widget__form-group > label {
    width: 146px;
    margin-left: -146px;
    text-align: left;
    margin-top: 12px;
    padding-right: 0;
  }
}

.rbm-modal__form .form-widget__field-object {
  padding-bottom: 0;
}


