
.hosting-package-page {
  background-image: url("../../assets/images/home/home-bg-1.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% auto;
  min-height: 100vh;
}
.hosting-package-page .page-content {
  padding-top: 100px;
}
@media (max-width: 800px) {
    .hosting-package-page .page-content {
      padding-top: 50px;
    }
}

.hosting-package-page .page-content .guarded-section {
  max-width: 1128px;
  margin: 0 auto;
}
.hosting-package-page .page-content .guarded-section .img-grid-w {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 50px;
  margin-bottom: 40px;
}
.hosting-package-page .page-content .guarded-section .img-grid-w .left-w {
    order: 1;
  }
.hosting-package-page .page-content .guarded-section .img-grid-w .info-w {
    order: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 800px) {
  .hosting-package-page .page-content .guarded-section .img-grid-w {
    gap: 50px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hosting-package-page .page-content .guarded-section .img-grid-w .info-w {
     align-items: flex-start;
    }
}
.hosting-package-page .page-content .guarded-section .sec-title {
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 550px;
}
@media (min-width: 800px) {
  .hosting-package-page .page-content .guarded-section .sec-title {
    text-align: left;
  }
}

.hosting-package-page .page-content .guarded-section .feature-li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.hosting-package-page .page-content .guarded-section .feature-li .checkmark {
 color: var(--primary);
}

.hosting-package-page .page-content .guarded-section .starting-from {
   font-size: 12px;
   margin-top: 20px;
}

.hosting-package-page .page-content .guarded-section .price {
   font-size: 22px;
   margin-bottom: 20px;
   font-weight: 700;
}

.hosting-package-page .page-content .guarded-section .price .period {
   font-weight: normal;
}

.hosting-package-page .page-content .guarded-section .price .currency {
   font-size: 17px;
}

.hosting-package-page .page-content .guarded-section .buy-now-btn {
   min-width: 150px;
}


.hosting-package-page .why-choose-section {
    max-width: 1128px;
    padding: 20px;
    margin: 30px auto;
}

@media (min-width: 1200px) {
    .hosting-package-page .why-choose-section {
        padding: 0;
        margin: 30px auto 60px;
    }
}

.hosting-package-page .why-choose-section .sec-title {
    text-align: center;
    margin-bottom: 35px;
    font-size: 25px;
}

.hosting-package-page .why-choose-section .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 720px) {
  .hosting-package-page .why-choose-section .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .hosting-package-page .why-choose-section .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hosting-package-page .why-choose-section .why-card {
    border: 2px solid rgba(48, 48, 48, 0.2);
    padding: 25px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.hosting-package-page .why-choose-section .why-card .card-img {
    width: 120px;
}

.hosting-package-page .why-choose-section .why-card .card-title {
    font-size: 20px;
    max-width: 200px;
}

.hosting-package-page .why-choose-section .why-card .card-info {
    font-weight: 500;
}



.select-package-plan-section {
  max-width: 1128px;
  margin: 30px auto 60px;
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 1200px) {
    .select-package-plan-section {
      padding: 0 20px;
    }
}

.select-package-plan-section .free-domain-note {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

.select-package-plan-section .see-all-btn-w {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-package-plan-section .see-all-btn-w .see-all-btn {
  color: var(--primary);
  border: none;
}

.select-package-plan-section .see-all-btn-w .see-all-btn .hide {
  display: none;
}

.select-package-plan-section .see-all-btn-w .see-all-btn.expanded .see{
  display: none;
}

.select-package-plan-section .see-all-btn-w .see-all-btn.expanded .hide{
  display: inline-block;
}

.select-package-plan-section .see-all-btn-w .see-all-btn.expanded .see-chevron{
  transform: rotate(180deg);
}

.hosting-package-page .page-content .faqs-section {
    border-bottom: 1px solid var(--black-opacity-1);
}