/* Ubuntu font */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
  margin: 0;
  padding: 0;
}

.container {
  width: 1240px;
  padding-left: 120px;
  padding-right: 120px;
  margin-left: auto;
  margin-right: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 24px 40px;
  margin-bottom: 50px;
}

.header_lang_btn {
  width: 56px;
  height: 48px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Ubuntu;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.03em;
  text-align: left;
  border: none;
  background: #ffffff;  
  transition: all 0.2s ease;
  text-decoration: none;
  color: rgba(24, 24, 24, 1);
}

.header_lang_btn a {
  color: black;
  text-decoration: none;
}

.header_lang_btn:hover {
  background-color: rgba(231, 235, 218, 1); 
  transition: all 0.2s ease;
}

.header_lang_btn_grn {
  width: 56px;
  height: 48px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Ubuntu;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.03em;
  text-align: left;
  border: none;
  background-color: rgba(231, 235, 218, 1); 
  transition: all 0.2s ease;
}

.header__list {
  display: flex;
  list-style: none;
  width: 539px;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
  left: 95px;
}

.header__item {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.03em;
  text-align: left;  
  color: rgba(24, 24, 24, 1);
  text-decoration: none;
}

.header__item a {
  color: rgba(24, 24, 24, 1);
  text-decoration: none;
}

.header__phone {
  width: 181px;
  height: 56px;
  border-radius: 6px;
  border: 1px solid rgba(24, 24, 24, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Ubuntu;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: rgba(24, 24, 24, 1);
  margin-top: 30px;
}

.hero__title {
  font-family: Ubuntu;
  font-size: 64px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -0.03em;
  text-align: center;
  color: rgba(97, 135, 34, 1);  
}

.hero__subtitle {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(24, 24, 24, 1);  
  /* margin-top: -30px; */
}

.slider-container {
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
  margin-bottom: 120px;
}

.slider {
  display: flex;
  animation: scroll 20s linear infinite; /* adjust duration as needed */
}

.slider img {
  flex: 0 0 auto;
  width: 666px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.introduction__title {
  font-family: Ubuntu;
  font-size: 54px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -0.03em;
  text-align: left;  
  text-transform: uppercase;
  width: 984px;
  margin-left: -240px;
  transition: all 0.3s ease;
}

.introduction__list {
  border-top: 1px solid rgba(118, 171, 20, 0.3);
  border-bottom: 1px solid rgba(118, 171, 20, 0.3);
  padding: 57px 200px 57px 200px;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
  cursor: pointer;
}

.introduction__list_title {
  font-family: Ubuntu;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-align: left;  
  color: rgba(97, 135, 34, 1);
  margin: 0;
  transition: all 0.3s ease;
  padding: 0;
}

.introduction__text {
  width: 500px;
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: rgba(97, 135, 34, 1);   
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
  margin-top: 4px;
}

#introduction__list_image1, 
#introduction__list_image2 {
  transition: all 0.3s ease;
  display: none;
}

#introduction__list_text1, 
#introduction__list_text2 {
  transition: all 0.3s ease;
  display: none;
}

#introduction__list_1_wrapper:hover #introduction__list_image1,
#introduction__list_1_wrapper:hover #introduction__list_text1 {
  transition: all 0.3s ease;
  display: block;
}

#introduction__list_1_wrapper:hover {
  height: 210px;
  padding: 8px 200px 28px 200px;
  background-color: rgba(231, 235, 218, 1);
  border-top: none;
  transition: all 0.3s ease;
  border-bottom: none;
}

#introduction__list_2_wrapper:hover #introduction__list_image2,
#introduction__list_2_wrapper:hover #introduction__list_text2 {
  transition: all 0.3s ease;
  display: block;
}

#introduction__list_2_wrapper:hover {
  height: 150px;
  padding: 8px 200px 28px 200px;
  background-color: rgba(231, 235, 218, 1);
  border-top: none;
  transition: all 0.3s ease;
  border-bottom: none;
}

.introduction__list_image,
.introduction__list_text {
  opacity: 0;
  transition: all 0.3s ease;
}

.introduction__list_wrapper:hover .introduction__list_image,
.introduction__list_wrapper:hover .introduction__list_text {
  transition: all 0.3s ease;
  opacity: 1;
}

.tomorrow__text {
  font-family: Ubuntu;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  width: 500px;
  color: rgba(120, 124, 133, 1);
  margin-left: -480px;
  margin-top: -30px;
}

.tomorrow__title {
  font-family: Ubuntu;
  font-size: 128px;
  font-weight: 500;
  line-height: 130px;
  text-align: left;  
  color: rgba(97, 135, 34, 1);  
  margin: 0;
  padding: 0;
}

.tomorrow__text_2 {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.04em;
  text-align: left;
  color: rgba(97, 135, 34, 1);  
  margin: 0;
  padding: 0;
}

.product__title_active {
  font-family: Ubuntu;
  font-size: 60px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -0.03em;
  text-align: left;
  margin: 0;
  padding: 0;
  margin-bottom: 4px;
  color: rgba(24, 24, 24, 1) !important;
  cursor: pointer;  
}

.product__title {
  font-family: Ubuntu;
  font-size: 60px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -0.03em;
  text-align: left;
  margin: 0;
  padding: 0;
  margin-bottom: 4px;
  color: rgba(120, 124, 133, 0.5);  
  cursor: pointer;
  display: inline;
}

.product__text {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.03em;
  text-align: left;
  color: rgba(24, 74, 49, 1);  
  width: 330px;
  position: absolute;
  right: 120px;
  margin-top: 236px;
}

.product__button {
  width: 180px;
  height: 52px;
  border-radius: 4px;
  position: absolute;
  right: 270px;
  margin-top: 346px;
  background-color: rgba(24, 74, 49, 1);
  border: none;
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.03em;
  text-align: center;
  color: rgba(255, 255, 255, 1);  
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.answer__title {
  font-family: Ubuntu;
  font-size: 54px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -0.05em;
  text-align: left;
  color: rgba(97, 135, 34, 1);  
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.answer__text {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.02em;
  text-align: left;
  color: rgba(120, 124, 133, 1);  
}

.answer__input {
  width: 575px;
  padding: 16px;
  border-radius: 4px;
  background-color: rgba(231, 235, 218, 1);
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: rgba(97, 135, 34, 1);
  margin-bottom: 14px;
  outline: none;
  border: none;
}

.answer__button {
  width: 575px;
  height: 52px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(24, 74, 49, 1);
  color: rgba(255, 255, 255, 1);
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.03em;
  border: none;
}

.footer__title {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: rgba(24, 24, 24, 1);
  margin: 0;
  padding: 0;
  text-align: left;
}

.footer__text {
  font-family: Ubuntu;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: rgba(120, 124, 133, 1);  
  margin: 0;
  padding: 0;
  text-decoration: none;
  margin-top: 12px;
}

.modal-content {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.modal_slide_title {
  font-family: Ubuntu;
  font-size: 40px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;  
  color: rgba(97, 135, 34, 1);
  margin-bottom: 24px;
}

.carousel-control-prev-icon {
  background-image: url('../images/prev_slide.svg') !important;
  width: 48px !important;
  height: 48px !important;
}

.carousel-control-next-icon {
  background-image: url('../images/next_slide.svg') !important;
  width: 48px !important;
  height: 48px !important;
}

.carousel-control-next, .carousel-control-prev {
  top: 380px !important;
}

.modal_slide_text {
  color: black !important;
  font-family: Ubuntu !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 32px !important;
  letter-spacing: -0.01em !important;
  text-align: center !important;  
}