.sec-banner {
  position: relative;
}

.banner-item {
  background: var(--bg-banner-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 980px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 133px 0;
}

.banner-text {
  max-width: 880px;
}

.banner-text p {
  margin-top: 32px;
  line-height: 28px;
  margin-bottom: 0 !important;
  color: var(--second-active-color);
}

.banner-text p+p {
  margin-top: 26px;
}

.banner-btn {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -8px 0;
}

.banner-btn .btn {
  margin: 0 8px;
  height: 48px !important;
  font-size: 18px !important;
  padding: 0 15px !important;
}

.banner-btn .btn img {
  margin-left: 5px !important;
  width: 15px;
}

.banner-btn .btn:hover {
  background: var(--second-active-color) !important;
  border-color: var(--second-active-color) !important;
  color: #24CF81 !important;
}

.banner-arrow {
  position: absolute;
  height: 100px;
  width: 58px;
  background: var(--active-color);
  display: flex;
  justify-content: center;
  bottom: 0;
  border-radius: 10px;
  left: 0;
  right: 0;
  bottom: -39px;
  margin: auto;
  cursor: pointer;
}

.banner-arrow:hover {
  background: var(--text-color);
}

.banner-arrow img {
  width: 35px;
  position: absolute;
  top: 30px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

@media(min-width:1760px) and (max-width:1859.98px) {
  .banner-item {
    min-height: 925px;
    padding: 115px 0;
  }
}

@media(min-width:1660px) and (max-width:1759.98px) {
  .banner-item {
    min-height: 900px;
    padding: 110px 0;
  }
}

@media(min-width:1560px) and (max-width:1659.98px) {
  .banner-item {
    min-height: 870px;
    padding: 108px 0;
  }
}

@media(min-width:1460px) and (max-width:1559.98px) {
  .banner-item {
    min-height: 780px;
    padding: 110px 0 90px;
  }

  .banner-text p {
    margin-top: 27px;
  }

  .banner-text p+p {
    margin-top: 23px;
  }

  .banner-btn {
    margin: 35px -8px 0;
  }

  .banner-arrow {
    height: 85px;
    width: 51px;
    bottom: -34px;
  }

  .banner-arrow img {
    width: 30px;
  }
}

@media(min-width:1360px) and (max-width:1459.98px) {
  .banner-item {
    min-height: 710px;
    padding: 100px 0 90px;
  }

  .banner-text {
    max-width: 760px;
  }

  .banner-text p {
    margin-top: 20px;
    line-height: 24px;
  }

  .banner-text p+p {
    margin-top: 23px;
  }

  .banner-btn {
    margin: 35px -8px 0;
  }

  .banner-arrow {
    height: 85px;
    width: 51px;
    bottom: -34px;
  }

  .banner-arrow img {
    width: 30px;
  }
}

@media(min-width:1200px) and (max-width:1359.98px) {
  .banner-item {
    min-height: 650px;
    padding: 115px 0 90px;
  }

  .banner-text {
    max-width: 780px;
  }

  .banner-text p {
    line-height: 25px;
  }

  .banner-text p+p {
    margin-top: 22px;
  }

  .banner-btn {
    margin: 35px -8px 0;
  }

  .banner-arrow {
    height: 85px;
    width: 50px;
    bottom: -32px;
  }
}

@media(min-width:992px) and (max-width:1199.98px) {
  .banner-item {
    min-height: 620px;
    padding: 115px 0 90px;
  }

  .banner-text {
    max-width: 660px;
  }

  .banner-text p {
    margin-top: 25px;
    line-height: 25px;
  }

  .banner-text p+p {
    margin-top: 20px;
  }

  .banner-text p br {
    display: none;
  }

  .banner-btn {
    margin: 30px -8px 0;
  }

  .banner-arrow {
    height: 65px;
    width: 40px;
    bottom: -25px;
    border-radius: 7px;
  }

  .banner-arrow img {
    width: 26px;
    top: 20px;
  }

  @keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }

    40% {
      transform: translateY(-15px);
    }

    60% {
      transform: translateY(-7.5px);
    }
  }
}

@media(min-width:768px) and (max-width:991.98px) {
  .banner-item {
    min-height: 550px;
    padding: 120px 0 65px;
  }

  .banner-item:after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }

  .banner-text {
    max-width: 550px;
    position: relative;
    z-index: 1;
  }

  .banner-text p {
    margin-top: 25px;
    line-height: 25px;
  }

  .banner-text p br {
    display: none;
  }

  .banner-btn {
    margin: 30px -8px 0;
  }

  .banner-arrow {
    height: 55px;
    width: 38px;
    border-radius: 6px;
    bottom: -24px;
  }

  .banner-arrow img {
    width: 22px;
    top: 15px;
  }

  @keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }

    40% {
      transform: translateY(-15px);
    }

    60% {
      transform: translateY(-7.5px);
    }
  }
}

@media(max-width:767.98px) {
  .banner-item {
    min-height: 565px;
    padding: 110px 0 60px;
  }

  .banner-item:after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }

  .banner-text {
    position: relative;
    z-index: 1;
    max-width: 100%;
  }

  .banner-text p {
    margin-top: 20px;
    line-height: 24px;
  }

  .banner-text p br {
    display: none;
  }

  .banner-text p+p {
    margin-top: 20px;
  }

  .banner-arrow {
    height: 55px;
    width: 38px;
    border-radius: 6px;
    bottom: -24px;
  }

  .banner-btn {
    margin: 30px -8px 0;
  }

  .banner-arrow img {
    width: 22px;
    top: 15px;
  }

  @keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }

    40% {
      transform: translateY(-15px);
    }

    60% {
      transform: translateY(-7.5px);
    }
  }
}

@media(max-width:450px) {
  .banner-btn {
    margin: 20px 0px 0;
  }

  .banner-btn .btn {
    width: 100%;
    margin: 10px 0 0;
  }
}