.btns {
  display: flex;
  gap: 32px;
}
.btns a {
  background: rgb(2, 137, 64);
  padding: 16px 32px;
  color: #fff;
  font-size: 16px;
  border-radius: 100px;
  box-shadow: 4px 4px 1px rgb(255, 216, 0);
  transition: 0.3s;
}
.btns a:hover {
  transform: scale(1.05);
  box-shadow: 8px 8px 1px rgb(255, 216, 0);
  color: #fff !important;
}

.section-container {
  padding: 0;
  max-width: 1980px;
  margin: auto;
}

.hero-baner {
  height: 900px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 50px 100px !important;
}
@media (max-width: 1200px) {
  .hero-baner {
    height: 700px;
  }
}
@media (max-width: 992px) {
  .hero-baner {
    height: 700px;
  }
}
@media (max-width: 768px) {
  .hero-baner {
    padding: 50px 40px !important;
  }
}
@media (max-width: 576px) {
  .hero-baner {
    padding: 20px !important;
    height: 500px;
  }
}
.hero-baner h1 {
  font-size: 70px;
  font-weight: 700;
  text-align: left;
  line-height: 190%;
  color: #028940 !important;
  text-shadow: 3px 3px 1px #fff;
}
.hero-baner h1 strong, .hero-baner h1 sup {
  display: inline-block;
}
@media (max-width: 992px) {
  .hero-baner h1 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .hero-baner h1 {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .hero-baner h1 {
    font-size: 30px;
  }
}
.hero-baner h1 strong {
  font-size: 200px;
  color: #ffffff;
  font-weight: 900 !important;
  text-shadow: 3px 3px 1px #028940;
}
@media (max-width: 1200px) {
  .hero-baner h1 strong {
    font-size: 150px;
  }
}
@media (max-width: 992px) {
  .hero-baner h1 strong {
    font-size: 120px;
  }
}
@media (max-width: 768px) {
  .hero-baner h1 strong {
    font-size: 80px;
  }
}
@media (max-width: 576px) {
  .hero-baner h1 strong {
    font-size: 50px;
  }
}

.animate-bar {
  z-index: 2;
  position: relative;
}

.panels {
  border: 1px solid rgb(255, 216, 0);
  background-color: rgb(255, 216, 0);
}
.panels .panels-container {
  padding: 0 50px 200px;
  margin-top: -50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1200px) {
  .panels .panels-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .panels .panels-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .panels .panels-container {
    grid-template-columns: 1fr;
    padding: 0 20px 150px;
  }
}
.panels .panel {
  background: rgb(2, 137, 64);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  gap: 8px;
  box-shadow: 4px 4px 1px #fff;
}
.panels .panel img {
  width: 96px;
  fill: #fff;
  stroke: #fff;
}
@media (max-width: 1400px) {
  .panels .panel img {
    width: 72px;
  }
}
.panels .panel h2 {
  color: #fff;
  font-size: 32px;
  text-align: center;
}
@media (max-width: 1400px) {
  .panels .panel h2 {
    font-size: 22px;
  }
}
.panels .panel .panel-desc {
  color: #fff;
  text-align: center;
  font-size: 18px !important;
}
@media (max-width: 1400px) {
  .panels .panel .panel-desc {
    font-size: 16px;
  }
}

.text_img {
  background-color: rgb(255, 244, 217);
}
.text_img .text_img-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 50px;
}
@media (max-width: 992px) {
  .text_img .text_img-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .text_img .text_img-container {
    padding: 46px 20px;
  }
}
.text_img .text_img-container .img-col {
  height: 800px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 4px 4px 1px rgb(255, 216, 0);
  margin-top: -200px;
  z-index: 1;
}
@media (max-width: 992px) {
  .text_img .text_img-container .img-col {
    height: 500px;
  }
}
.text_img .text_img-container .img-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.text_img .text_img-container .text-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .text_img .text_img-container .text-col {
    gap: 16px;
  }
}
.text_img .text_img-container .text-col h2 {
  font-size: 40px;
  font-weight: 400 !important;
  color: rgb(2, 137, 64);
  line-height: 160%;
}
.text_img .text_img-container .text-col h2 strong {
  font-size: 90px;
  font-weight: 900 !important;
  color: rgb(255, 216, 0);
  text-shadow: 3px 3px 1px rgb(2, 137, 64);
}
@media (max-width: 576px) {
  .text_img .text_img-container .text-col h2 {
    line-height: 190%;
    font-size: 24px;
  }
  .text_img .text_img-container .text-col h2 strong {
    font-size: 48px;
  }
}
.text_img .text_img-container .text-col .description {
  color: #000;
  font-size: 20px;
  max-width: 500px;
}

.text-logo {
  margin-top: -5px;
}
.text-logo .text-logo-container {
  padding: 100px 50px;
}
@media (max-width: 768px) {
  .text-logo .text-logo-container {
    padding: 50px 30px;
  }
}
@media (max-width: 576px) {
  .text-logo .text-logo-container {
    padding: 50px 20px;
  }
}
.text-logo .text-logo-container .section-header h2 {
  font-size: 60px;
  font-weight: 900 !important;
  color: rgb(0, 0, 0);
  line-height: 120%;
  text-align: center;
  max-width: 992px;
  margin: auto;
}
@media (max-width: 768px) {
  .text-logo .text-logo-container .section-header h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .text-logo .text-logo-container .section-header h2 {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .text-logo .text-logo-container .section-header h2 {
    font-size: 24px;
  }
}
.text-logo .text-logo-container .content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 32px auto auto;
}
@media (max-width: 992px) {
  .text-logo .text-logo-container .content {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .text-logo .text-logo-container .content {
    grid-template-columns: 1fr;
  }
}
.text-logo .text-logo-container .content .logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
@media (max-width: 1200px) {
  .text-logo .text-logo-container .content .logo-col {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .text-logo .text-logo-container .content .logo-col {
    grid-column: 2/span 1;
    grid-row: 1/spam 2;
  }
}
@media (max-width: 768px) {
  .text-logo .text-logo-container .content .logo-col {
    grid-column: 1/span 1;
    grid-row: auto;
  }
}
.text-logo .text-logo-container .content .logo-col img {
  width: 160px;
  height: 160px;
}
@media (max-width: 1200px) {
  .text-logo .text-logo-container .content .logo-col img {
    width: 160px;
    height: 160px;
  }
}
.text-logo .text-logo-container .content .description {
  height: 100%;
}
@media (max-width: 992px) {
  .text-logo .text-logo-container .content .description {
    grid-column: 1/span 1;
  }
}
@media (max-width: 768px) {
  .text-logo .text-logo-container .content .description {
    grid-column: 1/span 1;
    grid-row: auto;
  }
}
.text-logo .text-logo-container .content .description p {
  font-size: 20px;
  color: #000;
  padding: 50px;
}
@media (max-width: 1200px) {
  .text-logo .text-logo-container .content .description p {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .text-logo .text-logo-container .content .description p {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .text-logo .text-logo-container .content .description p {
    padding: 0;
  }
}

.your-way {
  margin-top: -5px;
}
.your-way .your-way-wrap {
  padding: 100px 50px;
  background-color: rgb(255, 216, 0);
}
@media (max-width: 768px) {
  .your-way .your-way-wrap {
    padding: 100px 20px;
  }
}
.your-way .your-way-wrap .content {
  max-width: 992px;
  margin: auto;
}
.your-way .your-way-wrap .content h2 {
  color: rgb(2, 137, 64);
  font-size: 90px;
  font-weight: 900;
  text-shadow: 3px 3px 1px #fff;
  line-height: 120%;
  text-align: center;
}
@media (max-width: 768px) {
  .your-way .your-way-wrap .content h2 {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .your-way .your-way-wrap .content h2 {
    font-size: 24px;
  }
}
.your-way .your-way-wrap .content .description {
  font-size: 20px;
  color: #000;
  text-align: center;
  max-width: 768px;
  margin: auto;
}
.your-way .your-way-wrap .content .btns {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.your-way .your-way-wrap .content .btns a {
  box-shadow: 4px 4px 1px #fff;
}
.your-way li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.faq {
  padding: 100px 50px;
  background-color: rgb(255, 244, 217);
}
@media (max-width: 576px) {
  .faq {
    padding: 50px 20px;
  }
}
.faq h2 {
  font-size: 90px;
  font-weight: 900 !important;
  color: rgb(255, 216, 0);
  text-shadow: 3px 3px 1px rgb(2, 137, 64);
}
@media (max-width: 576px) {
  .faq h2 {
    line-height: 190%;
    font-size: 48px;
  }
}
.faq .faq-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 992px;
  margin: auto;
}
@media (max-width: 576px) {
  .faq .faq-container {
    gap: 16px;
  }
}
.faq .faq-container .faq-item {
  display: flex;
  flex-direction: column;
}
.faq .faq-container .faq-item .faq-item-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding-bottom: 16px;
  font-size: 24px;
  font-weight: 800;
  color: rgb(2, 137, 64);
  line-height: 120%;
  gap: 16px;
}
@media (max-width: 576px) {
  .faq .faq-container .faq-item .faq-item-question {
    font-size: 16px;
  }
}
.faq .faq-container .faq-item .faq-item-answear {
  display: none;
}/*# sourceMappingURL=why-subway-lp.css.map */