.dropdown-menu {
  width: 360px;
  border: none;
  background: transparent;
  box-shadow: none;
  top: 30px;
}
.dropdown-menu li > a:hover {
  text-decoration: none;
  color: initial;
  background-color: initial;
  background-image: initial;
  background-repeat: repeat-x;
}
.dropdown-menu__inner {
  position: relative;
  box-shadow: 0 -1px 5px 1px rgba(0, 0, 0, 0.2);
  background: white;
  border-radius: 29px;
}
.dropdown-menu__inner::after {
  content: "";
  position: absolute;
  display: inline-block;
  left: 100px;
  transform: translateX(-20px);
  top: -20px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid white;
}
.dropdown-menu.pull-right .dropdown-menu__inner::after {
  left: auto;
  right: 40px;
}
.dropdown-toggle {
  cursor: pointer;
}
.dropdown-toggle.close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  position: absolute;
  right: 10px;
  top: -15px;
  color: #575b70;
  background-color: rgba(243, 243, 243, 0.8);
  font-size: 20px;
  cursor: pointer;
  opacity: 1;
}

.nav > li > a:focus,
.nav > li > a:hover {
  text-decoration: none;
  background-color: transparent;
  color: #00a0e3;
}
.btn-transparent {
  border: none;
  background: none;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.img-ratio {
    height: 0;
    position: relative;
    padding-top: calc(100% / 2.5);
}
.img-ratio.img-ratio_cover, .img-ratio.img-ratio_contain, .img-ratio.img-fit {
    overflow: hidden;
}
.img-ratio__inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.img-ratio.img-ratio_cover img, .img-ratio.img-ratio_contain img, .img-ratio.img-fit img {
    height: 100%;
    width: 100%;
    max-width: none;
    max-height: none;
    object-position: 50% 50%;
}
img-ratio.img-ratio_cover img {
    object-fit: cover;
}

.swiper-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}