:root {
  --bg: #EBEEEF;
  --yellow: #FFD900;
  --gray: #D9D9D9;
  --dark-gray: #C8C8C8;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  font: inherit;
  color: inherit;
}

button, input {
  border: none;
  background-color: none;
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  color: #000;
  font-size: 19px;
  line-height: 23px;
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 19px;
  }
}
.main {
  flex: 1 0 auto;
  min-height: 100vh;
}

@media (max-width: 1200px) {
  .main {
    padding-top: 105px;
  }
}
@media (max-width: 1024px) {
  .main {
    padding-top: 80px;
  }
}
.container {
  max-width: 1210px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}

.block-title {
  font-weight: 700;
  font-size: 37.6452px;
  line-height: 46px;
  color: #000;
}

@media (max-width: 768px) {
  .block-title {
    font-size: 30px;
    line-height: 40px;
  }
}
.block-title.center {
  text-align: center;
}

.block-title.light {
  color: #fff;
}

.block-title.yellow {
  color: var(--yellow);
}

.yb-line {
  width: 100%;
}
.yb-line img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.button {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 18px;
  padding: 15px 40px;
  position: relative;
  background-color: #fff;
  cursor: pointer;
}
.button:hover .text {
  color: #fff;
}
.button .mask.show {
  animation: show 0.3s ease forwards;
}
.button .mask.hide {
  animation: hide 0.3s ease;
}
.button .mask {
  position: absolute;
  width: 120%;
  height: 120%;
  background-color: #000;
  transform: translateY(100%);
  transition: all 0.3s ease;
}
.button .text {
  transition: all 0.3s ease;
  color: #000;
  position: relative;
  font-weight: 600;
  z-index: 2;
}
.button:disabled {
  opacity: 0.5;
  pointer-events: none;
  touch-action: none;
}
.button:active {
  transform: scale(0.95);
}

.button.dark {
  background-color: #000;
}
.button.dark .mask {
  background-color: #fff;
}
.button.dark .text {
  color: var(--yellow);
}
.button.dark:hover .text {
  color: #000;
}

@keyframes show {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes hide {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.stars {
  display: flex;
  align-items: center;
}
.stars .star {
  width: 13px;
  height: 13px;
  background-image: url("../img/icons/star.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 2px;
  flex: 0 0 auto;
}

.mobmenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background-color: var(--yellow);
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  padding-top: 150px;
  z-index: 99;
  transition: all 0.3s ease;
}
.mobmenu__nav_item.active:after {
  width: 100%;
}
.mobmenu__nav_item.active a {
  color: #fff;
}
.mobmenu__nav_item {
  position: relative;
  padding: 20px;
}
.mobmenu__nav_item:after {
  position: absolute;
  height: 100%;
  width: 0;
  top: 0;
  left: 0;
  content: "";
  background-color: #000;
  transition: all 0.3s ease;
}
.mobmenu__nav_item a {
  font-weight: 300;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}
.mobmenu__contacts {
  flex: 1 0 auto;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 0 20px;
}
.mobmenu__contacts_soc {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.mobmenu__contacts_soc_item {
  flex: 0 0 auto;
  margin: 0 4px;
}
.mobmenu__contacts_soc_item a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobmenu__contacts_soc_item a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
}
.mobmenu__contacts_ex_tel {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}
.mobmenu__contacts_ex_tel:hover {
  text-decoration: underline;
}
.mobmenu.active {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .mobmenu__nav_item a {
    font-size: 20px;
    line-height: 30px;
  }
}
.header__top_in {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__top_mob {
  display: none;
}
.header__top_logo {
  height: 140px;
  flex: 0 0 auto;
  transition: all 0.3s ease;
}
.header__top_logo:hover {
  transform: scale(1.1);
}
.header__top_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
}
.header__top_main {
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 50px;
  justify-content: flex-end;
}
.header__top_main_item {
  margin: 0 30px;
}
.header__top_main_map {
  display: flex;
  align-items: center;
}
.header__top_main_map_img {
  height: 115px;
  margin-right: 15px;
  flex: 0 0 auto;
}
.header__top_main_map_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
}
.header__top_main_map_label {
  font-size: 16.1226px;
  line-height: 20px;
  color: #8B8B8B;
}
.header__top_main_soc {
  display: flex;
  align-items: center;
}
.header__top_main_soc_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  margin: 0 7px;
  transition: all 0.3s ease;
}
.header__top_main_soc_item:hover {
  transform: scale(1.1);
}
.header__top_main_soc_item:active {
  transform: scale(0.95);
}
.header__top_main_soc_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
}
.header__top_main_ex_tel {
  font-weight: 700;
  font-size: 20.7415px;
  line-height: 25px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}
.header__top_main_ex_tel:hover {
  color: var(--yellow);
}
.header__top_main_ex_label {
  font-size: 16.1226px;
  line-height: 20px;
  color: #8B8B8B;
}
.header__main_nav {
  background-color: var(--dark-gray);
  padding: 0 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.header__main_nav_item {
  margin: 0 15px;
}
.header__main_nav_item a {
  display: block;
  padding: 15px 5px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
}
.header__main_nav_item.header__main_nav_item-drop {
  position: relative;
}
.header__main_menu {
  background-color: var(--yellow);
  padding: 0 20px;
  border-radius: 15px;
  margin: 20px 0;
  display: flex;
  align-items: center;
}
.header__main_menu_item {
  margin: 0 15px;
}
.header__main_menu_item a {
  display: block;
  padding: 15px 5px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
}
.header__main_menu_item.header__main_menu_item-drop {
  position: relative;
  padding-right: 15px;
}
.header__main_menu_item.header__main_menu_item-drop:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("../img/icons/triangle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease;
  top: calc(50% - 5px);
  right: 0;
}
.header__main_menu_item.header__main_menu_item-drop .header__main_menu_item_submenu {
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
  background-color: #fff;
  position: absolute;
  width: 350px;
  border-radius: 10px;
  padding: 10px;
}
.header__main_menu_item.header__main_menu_item-drop:hover:after {
  transform: rotate(180deg);
}
.header__main_menu_item.header__main_menu_item-drop:hover .header__main_menu_item_submenu {
  opacity: 1;
  z-index: 10;
}

@media (max-width: 1200px) {
  .header.active:after {
    width: 100%;
  }

  .header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  .header:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: var(--yellow);
    width: 0;
    content: "";
    transition: all 0.3s ease;
  }
  .header__top {
    position: relative;
    z-index: 2;
  }
  .header__top_main {
    display: none;
  }
  .header__top_mob {
    display: block;
  }
  .header__top_mob_btn.active span:nth-child(1) {
    top: calc(50% - 2px);
    transform: rotate(45deg);
  }
  .header__top_mob_btn.active span:nth-child(2) {
    opacity: 0;
  }
  .header__top_mob_btn.active span:nth-child(3) {
    bottom: calc(50% - 2px);
    transform: rotate(-45deg);
  }
  .header__top_mob_btn {
    height: 35px;
    width: 60px;
    position: relative;
    background-color: unset;
    cursor: pointer;
  }
  .header__top_mob_btn span {
    height: 4px;
    width: 100%;
    display: block;
    border-radius: 40px;
    background-color: #000;
    transition: all 0.3s ease;
    position: absolute;
  }
  .header__top_mob_btn span:nth-child(1) {
    top: 0;
    left: 0;
  }
  .header__top_mob_btn span:nth-child(2) {
    top: calc(50% - 2px);
    left: 0;
  }
  .header__top_mob_btn span:nth-child(3) {
    bottom: 0;
    left: 0;
  }
  .header__main {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header__top_logo {
    height: 50px;
  }
}
.hero {
  padding: 40px 0;
}
.hero__in {
  background-color: var(--yellow);
  height: 507px;
  border-radius: 15px;
  padding: 0 10px 0 55px;
  background-image: url("../img/hero-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}
.hero__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 0;
}
.hero__content_head {
  font-weight: 300;
  font-size: 28.9168px;
  line-height: 35px;
  text-transform: uppercase;
}
.hero__content_head span {
  font-weight: 700;
  font-size: 37.6452px;
  line-height: 46px;
  display: block;
}
.hero__content_main {
  display: flex;
}
.hero__content_main_form {
  display: flex;
  flex-direction: column;
  max-width: 260px;
  width: 100%;
}
.hero__content_main_form .input {
  margin: 5px 0;
  padding: 12px 25px;
  background-color: #fff;
  border-radius: 8px;
  font-weight: 300;
  font-size: 19px;
  line-height: 23px;
}
.hero__content_main_form .button {
  margin-top: 5px;
}
.hero__content_main_list {
  margin-left: 30px;
  max-width: 410px;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 10px 35px;
}
.hero__content_main_list ul li {
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}
.hero__content_main_list ul li:after {
  position: absolute;
  top: calc(50% - 2.5px);
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #000;
  content: "";
}
.hero__content_main_list ul li:last-child {
  margin-bottom: 0;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
}

@media (max-width: 1024px) {
  .hero__in {
    padding: 0 40px;
  }
  .hero__img {
    display: none;
  }
  .hero__content {
    width: 100%;
  }
  .hero__content_main_form {
    width: 50%;
    max-width: unset;
  }
  .hero__content_main_list {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .hero__in {
    flex-wrap: wrap;
    padding: 25px;
    height: unset;
    background-image: unset;
  }
  .hero__content {
    padding: 0;
  }
  .hero__content_head {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 40px;
  }
  .hero__content_head span {
    font-size: 25px;
    line-height: 30px;
  }
  .hero__content_main {
    flex-wrap: wrap;
  }
  .hero__content_main_form {
    width: 100%;
    margin-bottom: 25px;
  }
  .hero__content_main_list {
    width: 100%;
    padding: 20px;
    max-width: unset;
    margin: 0;
  }
}
.arts__in {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
}
.arts__item {
  width: calc(33.3333333333% - 20px);
  margin: 0 10px;
  margin-bottom: 10px;
  border-radius: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 240px;
  padding: 35px;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.arts__item:hover:after {
  backdrop-filter: blur(5px);
}
.arts__item:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
.arts__item:nth-child(1) {
  background-image: url("../img/arts-1.png");
}
.arts__item:nth-child(2) {
  background-image: url("../img/arts-2.png");
}
.arts__item:nth-child(3) {
  background-image: url("../img/arts-3.png");
}
.arts__item_ex {
  margin-bottom: 15px;
  font-size: 13.9378px;
  line-height: 17px;
  position: relative;
  z-index: 3;
}
.arts__item_name {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}
.arts__item_action {
  flex: 1 0 auto;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 3;
}

@media (max-width: 1024px) {
  .arts__in {
    flex-wrap: wrap;
    justify-content: center;
  }
  .arts__item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .arts__in {
    margin-right: 0;
    margin-left: 0;
  }
  .arts__item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
  }
  .arts__item:hover:after {
    backdrop-filter: blur(0px);
  }
  .arts__item .button {
    width: 100%;
  }
}
.duty {
  position: relative;
}
.duty__in {
  padding: 40px 0;
}
.duty__head {
  margin-bottom: 30px;
}
.duty__body {
  margin-bottom: 30px;
}
.duty__body li {
  position: relative;
  padding-left: 10px;
}
.duty__body li:after {
  position: absolute;
  top: 5px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #000;
  content: "";
}

.what__in {
  padding: 40px 0;
}
.what__head {
  margin-bottom: 40px;
}
.what__body {
  display: flex;
  flex-wrap: wrap;
}
.what__item {
  width: 25%;
  padding: 0 20px;
  margin-bottom: 20px;
  border-right: 2px solid var(--yellow);
}
.what__item:last-child {
  border: none;
}
.what__item_head {
  text-shadow: 4px 4px 0px var(--yellow);
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .what__in {
    margin-left: 0;
    margin-right: 0;
  }
  .what__item {
    width: 100%;
    margin: 0;
    border: none;
    margin-bottom: 50px;
    padding: 0;
  }
}
.yes {
  padding: 40px 0;
}
.yes__in {
  background-color: var(--yellow);
  padding: 40px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
}
.yes__main {
  width: 100%;
}
.yes__main_head {
  margin-bottom: 22px;
}
.yes__action {
  flex: 0 0 auto;
}
.yes__action_btn {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.yes__action_btn:after {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.3s ease;
}
.yes__action_btn:hover .text {
  color: #fff;
}
.yes__action_btn:hover:after {
  transform: scale(1);
}
.yes__action_btn:active {
  background-color: #fff;
}
.yes__action_btn:active .text {
  color: var(--yellow);
}
.yes__action_btn:active:after {
  transform: scale(0);
}
.yes__action_btn .text {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 37.6452px;
  line-height: 46px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .yes__in {
    padding: 25px;
    flex-wrap: wrap;
  }
  .yes__main {
    margin-bottom: 30px;
  }
  .yes__main_head {
    text-align: center;
  }
  .yes__main_body {
    text-align: center;
  }
  .yes__action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
.vid__in {
  padding: 40px 0;
  display: flex;
}
.vid__main {
  padding-right: 30px;
}
.vid__main_head {
  margin-bottom: 30px;
}
.vid__main_text {
  margin-bottom: 20px;
}
.vid__main_list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 30px;
}
.vid__main_item {
  width: calc(50% - 20px);
  margin: 0 10px;
  margin-bottom: 20px;
}
.vid__main_item_value {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  /* identical to box height */
  color: #000000;
  text-shadow: 4px 4px 0px #FFD900;
  margin-bottom: 10px;
}
.vid__main_item_label {
  font-weight: 300;
  font-size: 15px;
  line-height: 18px;
}
.vid__el {
  height: 355px;
  width: 50%;
  border-radius: 15px;
  background-color: var(--gray);
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .vid__in {
    flex-wrap: wrap;
  }
  .vid__main {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .vid__main_list {
    margin-left: 0;
    margin-right: 0;
  }
  .vid__main_item {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .vid__el {
    width: 100%;
  }
}
.rating__in {
  padding: 40px 0;
}
.rating__head {
  text-align: center;
  margin-bottom: 25px;
}
.rating__body {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.rating__body_item {
  width: calc(20% - 10px);
  margin: 0 5px;
  margin-bottom: 10px;
  min-height: 86px;
  display: flex;
  align-items: center;
  border: 2px solid var(--yellow);
  border-radius: 15px;
  padding: 5px 20px;
}
.rating__body_item_img {
  flex: 0 0 auto;
  max-width: 30px;
  width: 100%;
  height: 30px;
  margin-right: 10px;
}
.rating__body_item_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
}
.rating__body_item_val {
  font-weight: 400;
  font-size: 35px;
  line-height: 42px;
  letter-spacing: -0.06em;
}
.rating__body_item_info {
  padding-left: 10px;
}
.rating__body_item_info_text {
  font-weight: 400;
  font-size: 13.4447px;
  line-height: 16px;
}

@media (max-width: 1200px) {
  .rating__body {
    justify-content: center;
  }
  .rating__body_item {
    width: calc(33.3333333333% - 10px);
  }
}
@media (max-width: 768px) {
  .rating__body_item {
    width: calc(100% - 10px);
  }
}
.pricing__in {
  padding: 40px 0;
}
.pricing__head {
  margin-bottom: 40px;
}
.pricing__body {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.pricing__body_item {
  width: calc(33.3333333333% - 20px);
  margin: 0 10px;
  margin-bottom: 20px;
  min-height: 370px;
  padding: 30px;
  background-image: url("../img/pricing-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing__body_item_main {
  padding-bottom: 20px;
}
.pricing__body_item_main_icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}
.pricing__body_item_main_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
}
.pricing__body_item_main_head {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}
.pricing__body_item_body {
  flex: 1 0 auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricing__body_item_body_text {
  font-weight: 300;
  font-size: 19px;
  line-height: 23px;
  margin-bottom: 15px;
}
.pricing__action {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .pricing__body_item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .pricing__body_item {
    width: calc(100% - 20px);
  }
}
.faq__in {
  padding: 40px 0;
}
.faq__head {
  margin-bottom: 40px;
}
.faq__body_item.active .faq__body_item_head {
  text-shadow: 4px 4px 0px #FFD900;
}
.faq__body_item.active .faq__body_item_head:after {
  transform: rotate(45deg);
}
.faq__body_item {
  margin-bottom: 30px;
}
.faq__body_item:last-child {
  margin-bottom: 0;
}
.faq__body_item_head {
  display: flex;
  position: relative;
  padding-right: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: -0.01em;
}
.faq__body_item_head:after {
  position: absolute;
  top: calc(50% - 17.5px);
  right: 0;
  width: 35px;
  height: 35px;
  content: "";
  background-image: url("../img/icons/plus.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease;
}
.faq__body_item_head:hover {
  text-shadow: 4px 4px 0px #FFD900;
}
.faq__body_item_body {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq__body_item_body_text {
  padding: 20px 0;
}

@media (max-width: 768px) {
  .faq__body_item_head {
    font-size: 18px;
    line-height: 24px;
  }
}
.cons {
  padding: 40px 0;
}
.cons__in {
  min-height: 600px;
  border-radius: 15px;
  background-color: #fff;
  display: flex;
  padding: 0 60px;
  overflow: hidden;
  align-items: flex-end;
  background-image: url("../img/cons-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cons__main {
  width: 50%;
  padding: 50px 0;
}
.cons__main_head {
  margin-bottom: 60px;
}
.cons__main_sub {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
}
.cons__main ul {
  margin-bottom: 40px;
  margin-top: 20px;
}
.cons__main ul li {
  position: relative;
  padding-left: 10px;
}
.cons__main ul li:after {
  position: absolute;
  top: calc(50% - 2.5px);
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #000;
  content: "";
}
.cons__main_action {
  max-width: 260px;
  width: 100%;
}
.cons__main_action .input {
  padding: 12px 25px;
  background: #EBEEEF;
  border-radius: 8px;
  margin-bottom: 10px;
  width: 100%;
  font-weight: 300;
  font-size: 19px;
  line-height: 23px;
}
.cons__main_action .button {
  width: 100%;
}
.cons__img {
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cons__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
}

@media (max-width: 1024px) {
  .cons__in {
    padding: 30px;
    align-items: center;
    min-height: unset;
  }
  .cons__main {
    padding: 0;
    width: 100%;
  }
  .cons__img {
    display: none;
  }
}
@media (max-width: 768px) {
  .cons__main_action {
    max-width: unset;
  }
}
.footer {
  background-color: var(--dark-gray);
}
.footer__in {
  padding: 40px 0;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--yellow);
}
.footer__top_logo {
  height: 75px;
}
.footer__top_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
}
.footer__top_main {
  max-width: 600px;
  width: 100%;
}
.footer__top_main span {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  display: block;
}
.footer__main {
  padding: 40px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__main_nav {
  display: flex;
  align-items: flex-start;
}
.footer__main_nav_part {
  width: calc(50% - 40px);
  margin: 0 20px;
}
.footer__main_nav_part_head {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-shadow: 4px 4px 0px #FFD900;
}
.footer__main_nav_part_item {
  font-weight: 300;
  margin-bottom: 10px;
}
.footer__main_nav_part_item a {
  transition: all 0.3s ease;
}
.footer__main_nav_part_item a:hover {
  color: var(--yellow);
}
.footer__main_cn {
  width: 340px;
  flex: 0 0 auto;
  text-align: right;
}
.footer__main_cn_tel {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20.7415px;
  line-height: 25px;
}
.footer__main_cn_ex {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
}
.footer__main_cn_soc {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 25px;
}
.footer__main_cn_soc_item {
  margin: 0 7px;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__main_cn_soc_item:hover img {
  filter: grayscale(0);
}
.footer__main_cn_soc_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
  filter: grayscale(1);
  transition: all 0.3s ease;
}
.footer__main_cn_action_item {
  margin-bottom: 15px;
}
.footer__main_cn_action_item .button {
  width: 100%;
}
.footer__cr {
  padding: 20px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #8B8B8B;
}

@media (max-width: 1024px) {
  .footer__top {
    padding-bottom: 20px;
  }
  .footer__top_logo {
    height: 50px;
  }
  .footer__top_main {
    font-size: 14px;
    line-height: 17px;
  }
  .footer__top_main span {
    font-size: 14px;
    line-height: 17px;
  }
  .footer__main {
    flex-wrap: wrap;
  }
  .footer__main_nav {
    width: 100%;
    margin-bottom: 25px;
  }
  .footer__main_cn {
    width: 100%;
    text-align: left;
  }
  .footer__main_cn_soc {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .footer__top {
    flex-wrap: wrap;
  }
  .footer__top_logo {
    margin-bottom: 20px;
  }
  .footer__top_main {
    width: 100%;
    max-width: unset;
  }
  .footer__main_nav {
    flex-wrap: wrap;
  }
  .footer__main_nav_part {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
}