#footBannerContainerNew {
  opacity: 0;
}

#footBannerContainerNew.foot-banner--show {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  opacity: 1;
  transition: opacity 0.2s linear;
}

.head-banner {
  position: relative;
  width: 100%;
  min-height: 10.625rem;
  overflow: hidden;  
}

.head-banner .swiper-slide {
  height: auto;
}

.head-banner .container {
  height: 100%;
}

#footBannerContainerNew .swiper-wrapper {
  margin-bottom: 0;
}

.head-banner__actions > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.head-banner__actions > div a {
  transition: filter 0.2s linear;
}

.head-banner__actions > div a:hover {
  filter: brightness(0.6);
  transition: filter 0.2s linear;
}

.head-banner {
  position: relative;
  color: #fff;
  z-index: 1;
}

.head-banner__wr {
  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;
  gap: 1.25rem;
  padding: 2.625rem 6rem 2.625rem 0;
  height: 100%;
}

.head-banner__button {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  border-radius: 1.25rem;
  padding: 1.313rem 5rem;
  min-height: 4.375rem;
  text-align: center;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.688rem;
}

.head-banner__title {
  font-size: 2.75rem;
  line-height: 110%;
  letter-spacing: -0.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.head-banner__subtitle {
  font-size: 1.5rem;
  line-height: 115%;
  letter-spacing: -0.063rem;
  font-weight: 500;
  margin-bottom: 0;
}

.head-banner.banner--fio2 {
  background-color: rgba(13, 34, 87, 0.9);
  background-image: url("../images/banner-bg2.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.head-banner.banner--fio2 .head-banner__button {
  background: #EB6D47;
  color: #fff;
}

.head-banner.banner--fio2 .head-banner__button:hover, 
.head-banner.banner--fio2 .head-banner__button:active, 
.head-banner.banner--fio2 .head-banner__button:focus {
  background: #fff;
  color: #EB6D47;
}

.head-banner.banner--orange2 {
  background-color: rgba(240, 94, 50, 0.9);
  background-image: url("../images/banner-bg-orange.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.head-banner.banner--orange2 .head-banner__button {
  background: #638BE9;
  color: #fff;
}

.head-banner.banner--orange2 .head-banner__button:hover, 
.head-banner.banner--orange2 .head-banner__button:active, 
.head-banner.banner--orange2 .head-banner__button:focus {
  background: #fff;
  color: #638BE9;
}

.head-banner__close {
  position: absolute;
  background: transparent;
  top: 1rem;
  right: 6rem;
  z-index: 2;
  color: #fff;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  cursor: pointer;
}

.head-banner__close svg {
  width: 20px;
  height: 20px;
}

@media (hover: hover) {
  .head-banner__close:hover {
    color: #ccc;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
  }
}

@media (max-width: 1200px) {
  .head-banner__wr {
    padding-right: 0;
  }  
}

@media (max-width: 768px) {
  .head-banner__wr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.25rem 0;
    gap: 0;
  }

  .head-banner__actions > div {
    justify-content: center;
  }

  .head-banner__info {
    width: 100%;
  }
  .head-banner {
    min-height: auto;
  }
  .head-banner__button {
    border-radius: 0.938rem;
    padding: 0.813rem 2.313rem;
    min-height: 3.313rem;
    font-size: 0.875rem;
    
  }
  .head-banner__title {
    font-size: 1rem;
    letter-spacing: -0.063rem;
    text-align: center;
  }
  .head-banner__subtitle {
    font-size: 0.75rem;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 0.938rem;
  }
  .head-banner.banner--fio2 {
    background-image: url("../images/banner-bg2-mob.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .head-banner.banner--orange2 {
    background-image: url("../images/banner-bg-orange-mob.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .head-banner__close {
    right: 1rem;
  }
  .head-banner__close svg {
    width: 10px;
    height: 10px;
  }
}