.glide__home {
  height: 450px;
  min-height: 450px;
}
.glide__adapter {
  height: 450px;
}
.glide {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.glide__track,
.glide__slides {
  height: 100%;
}

.glide__track {
  width: 100%;
  overflow: hidden;
}

.glide__slides {
  width: 100%;
  margin: 0;
  padding: 0 !important;
  list-style: none;
  display: flex;
  white-space: nowrap;
}

.glide__slide {
  width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  position: relative;
}

.glide__slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}
.glide__home .glide__slide {
  cursor: default;
}

.glide__slide-content {
  max-width: 1140px;
  width: 100%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 0 12px;
  z-index: 1;
}

.slide-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.slide-col {
  width: 50%;
}

.slide-col.slide-col__full {
  width: 100%;
}

.slide-col__right {
  text-align: right;
}

.glide__slide-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.glide__slide-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}

.glide__slide-button {
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.glide__slide-button:hover {
  background-color: #007bff;
  color: #fff;
}

/* controls  */
.glide__arrow,
.glide__bullet {
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

.glide__arrows {
  position: absolute;
  top: auto;

  bottom: 65px;
  width: 100%;
  gap: 60px;
  display: flex;
  justify-content: center;
  pointer-events: auto;
  z-index: 10;
}

.glide__arrow {
  background-color: transparent !important;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  z-index: 2;
}

.glide__arrow svg {
  width: 1em;
  height: 1em;
  fill: white;
}

.glide__bullets {
  display: flex;
  align-items: center;
  margin-top: 10px;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.glide__bullet {
  /* display: block; */
  width: 13px;
  height: 13px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  border: none;
  padding: 0;
}

.glide__bullet.glide__bullet--active {
  background-color: #007bff;
}

.glide__home h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  color: #ffffff;
}

.glide__home h1 {
  text-align: center;
  font-size: 44px;
  font-weight: 600;
  line-height: 52px;
  color: #ffffff;
  opacity: 1 !important;
}

.glide__home .glide__slide-button {
  background-color: #0587ff;
  text-decoration: none !important;
  font-weight: 400;
  border-radius: 40px;
  font-size: 15px;
  color: #fff;
  padding: 12px 24px;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .glide__home h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .glide__home h2 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .slide-wrap {
    flex-wrap: wrap;
  }
  .glide__home h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .glide__home h2 {
    font-size: 20px;
    line-height: 26px;
  }
  .slide-col {
    width: 100%;
    text-align: center;
  }
  .slide-col__right {
    text-align: center;
  }
}
