@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body,
html {
  overflow-x: hidden !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body,
html {
  margin: 0;
  padding: 0;
}

.home {
  padding: 4.5rem 0 1.5rem;
  font-family: "Lora", serif;
}

.container {
  display: flex !important;
  align-items: center !important;
  position: relative;
  width: 100%;
  min-height: 540px;
  background: url("..//images/background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.container img {
  width: 400px;
  position: absolute;
  bottom: -500px;
  right: 200px;
}

.home-text {
  padding: 0 150px;
}

.home-text span {
  font-weight: 600;
  text-transform: uppercase;
  color: #3cb815;
}

.home-text h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.btn {
  padding: 0.6rem 1rem;
  background: #3cb815;
  color: #fff;
  font-weight: 400;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 00.5rem;
  max-width: 160px;
  text-decoration: none;
  transition: 0.2s;
}

.btn .bx {
  padding: 4px;
  background: #fff;
  color: #1a2428;
  border-radius: 1rem;
  font-size: 20px;
  margin: auto;
}

.btn:hover {
  background: #f75f1d;
  transition: 0.2s ease;
}

.swiper-button-next {
  background: url("../images/right-arrow.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  margin-right: 20px;
}

.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  background: url("../images/left-arrow.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  margin-left: 20px;
}

.swiper-button-prev::after {
  display: none;
}

/*Responsive Header */

@media screen and (max-width: 1240px) {
  .container {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 20px;
  }

  .home-text {
    padding: 0 50px;
  }

  .container img {
    position: static;
    width: 300px;
    margin-top: 20px;
    margin-bottom: -400px;
  }

  .btn {
    margin-left: 40%;
  }
}

@media screen and (max-width: 768px) {
  .home-text {
    padding: 0 20px;
  }

  .home-text h1 {
    font-size: 2rem;
  }

  .container img {
    width: 250px;
    margin-bottom: -300px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .btn {
    margin-left: 20%;
  }
}

@media screen and (max-width: 480px) {
  .home-text h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.5rem 0.8rem;
    max-width: 140px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 7vw;
    height: 7vh;
  }
}
