/* Global Csss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background: #fff;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Acme", sans-serif;
}
a {
  text-decoration: none;
}
/* Common Class */
.d-flex {
  display: flex;
}
.grid {
  display: grid;
}
.btn {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
}
.btn-action {
  background: #ed3236;
  color: #fff;
  font-weight: 600;
}
.btn-subscribe {
  margin-top: 40px;
}
.sec-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ed3236;
  font-weight: 500;
}
.sec-dec{
  font-size: 18px;
  text-align: center;
}
.section {
  padding: 40px 0;
}
.bg-gray {
  background: #f5f5f5;
}
.text-center {
  text-align: center;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.show-web {
  display: none;
}
.hide {
  display: none;
}
.img {
  width: 100%;
  display: block;
}
.text {
  color: #959595;
}
/* Header */
header {
  background: #fff;
  height: 70px;
  align-items: center;
  box-shadow: 0px 18px 20px -10px rgba(0, 0, 0, 0.1);
}
header img {
  width: 160px;
}
header a {
  line-height: 0;
}
header nav ul {
  column-gap: 20px;
}
header nav a {
  color: #333;
  text-decoration: none;
  padding: 5px;
}
.header-wrap {
  justify-content: center;
  align-items: center;
  height: 70px;
}

/* Banner Section */
.banner-sec {
  position: relative;
}
.banner-img {
  overflow: hidden;
  min-height: 480px;
  line-height: 0;
}
.banner-img img{
  width: auto;
  height: 480px;
}
.banner-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.banner-sec .content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
  z-index: 99;
  line-height: 1.5;
  transform: translate(-50%, -50%);
}
.banner-sec h1 {
  color: #fff;
  font-size: 24px;
}
.banner-sec h2 {
  color: #fff;
  font-size: 16px;
  margin: 25px 0 30px;
}
.banner-sec h3 {
  color: #fff;
  font-size: 13px;
  margin-bottom: 40px;
}

/* Why Choose Us Section */
.why-choose .content-wrap {
  flex-direction: column;
  row-gap: 30px;
}
.why-choose .left-panel p {
  color: #7c7c7c;
  margin-bottom: 30px;
  font-size: 16px;
}
.why-choose .left-panel li {
  margin-bottom: 15px;
  list-style: disc;
  margin-left: 15px;
}
.why-choose .right-panel {
  background: #3d77ea1a;
  padding: 2rem;
  display: flex;
  align-items: center;
}
.why-choose .right-panel img {
  height: 40px;
}
.why-choose .right-panel h4 {
  font-size: 20px;
  font-family: "Nunito Sans", sans-serif;
}
.why-choose .right-panel ul {
  width: 100%;
}
.why-choose .right-panel li {
  display: flex;
  column-gap: 30px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.why-choose .right-panel li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Features Section Start */
.features-sec ul {
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 15px;
  margin-top: 40px;
}
.features-sec li {
  width: 100%;
  text-align: center;
  padding: 0.8rem 0.6rem;
  border-radius: 8px;
}
.features-sec li:nth-child(1) {
  background: rgba(241, 187, 78, 0.1);
}
.features-sec li:nth-child(2) {
  background: rgba(69, 222, 196, 0.1);
}
.features-sec li:nth-child(3) {
  background: rgba(61, 119, 234, 0.1);
}
.features-sec li:nth-child(4) {
  background: rgba(241, 187, 78, 0.1);
}
.features-sec h4 {
  font-weight: 500;
  font-size: 17px;
  color: #493866;
  margin: 15px 0 10px;
}
.features-sec p {
  max-width: 90%;
  margin: 0 auto;
  font-size: 16px;
  color: #7c7c7c;
}

/* Age-appropriate Segments Section Start */
.age-group-sec .age-Wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 20px;
  margin-top: 40px;
  justify-content: center;
}
.age-group-sec .card {
  width: 90%;
  border-radius: 16px;
  padding: 1.5rem;
}
.age-group-sec .card:nth-child(1) {
  background: #fff2f1;
}
.age-group-sec .card:nth-child(2) {
  background: #fff9eb;
}
.age-group-sec .card:nth-child(3) {
  background: #efeefd;
}
.age-group-sec .card .img-holder {
  min-height: 215px;
  position: relative;
}
.age-group-sec img {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.age-group-sec h3 {
  font-weight: 500;
  font-size: 22px;
  margin-top: 10px;
  color: #493866;
}
.age-group-sec h4 {
  font-size: 16px;
  margin: 8px 0;
  color: #fa3c6f;
}
.age-group-sec p {
  font-size: 16px;
  color: #7c7c7c;
}
.age-group-sec .card ul {
  display: flex;
  row-gap: 6px;
  flex-direction: column;
  margin: 10px 0 0 18px;
}
.age-group-sec .card li {
  list-style: disc;
  color: #7c7c7c;
  font-size: 14px;
}

/* Subscribe Section Start */
.subscribe-sec .card-wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 15px;
  margin-top: 40px;
}
.subscribe-sec .card {
  width: calc(50% - 8px);
  background: #fff;
  padding: 0.6rem;
  text-align: center;
  box-shadow: 0px 45px 44px -20px rgba(0, 0, 0, 0.05);
}
.subscribe-sec .card:nth-child(1) .plan {
  background: #fff9eb;
}
.subscribe-sec .card:nth-child(2) .plan {
  background: #fff2f1;
}
.subscribe-sec .card:nth-child(3) .plan {
  background: #3d77ea1a;
}
.subscribe-sec .card:nth-child(4) .plan {
  background: #45dec41a;
}
.subscribe-sec .card .plan {
  background: #fff2f1;
  padding: 6px 0;
  font-size: 20px;
  font-weight: 700;
}
.subscribe-sec .card .newspapers {
  color: #493866;
  margin: 15px 0 10px;
  font-size: 14px;
}
.subscribe-sec .card .discount {
  margin-bottom: 15px;
  font-family: "Acme", sans-serif;
  min-height: 20px;
  font-size: 16px;
}
.subscribe-sec .card .price {
  color: #fa3c6f;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}
.subscribe-sec .card ul {
  text-align: left;
}
.subscribe-sec .card .offer-price {
  text-decoration: line-through;
  font-size: 12px;
  color: #7c7c7c;
  margin: 0 0 0 10px;
  display: inline-block;
}
.subscribe-sec .card .btn {
  border: 1px solid #493866;
  border-radius: 4px;
  margin: 18px 0;
  padding: 8px 5px;
  font-size: 12px;
  background: #efeefd;
  font-weight: 600;
  display: block;
  color: #333;
}
.subscribe-sec .card .btn:hover {
  background: #493866;
  color: #fff;
}
.subscribe-sec .card li img {
  margin-right: 9px;
  width: 8px;
}
.subscribe-sec .card li img.right-img {
  width: 10px;
}
.subscribe-sec .card li {
  display: flex;
  align-items: baseline;
  font-size: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Bundle of Benefits Section Start */
.benefits-sec ul {
  margin-top: 40px;
  column-gap: 15px;
  row-gap: 15px;
  flex-wrap: wrap;
}
.benefits-sec li {
  width: calc(50% - 8px);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 24px 48px 0px rgba(37, 34, 0, 0.1);
}
.benefits-sec .card-body {
  padding: 0.6rem;
}
.benefits-sec .card h3 {
  font-size: 12px;
  color: #493866;
}
.benefits-sec .card p {
  font-size: 10px;
  margin-top: 10px;
  color: #7c7c7c;
}
.benefits-sec .img-holder {
  min-height: 110px;
  position: relative;
}
.benefits-sec img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 10px 10px 0;
  border-radius: 15px 15px 0 0;
}

/* Testimonials */
#vocSlider {
  margin-top: 40px;
}
.review-wrap {
  display: flex;
  flex-direction: column;
  column-gap: 15px;
  row-gap: 15px;
}
.user-details {
  display: flex;
  column-gap: 20px;
  align-items: center;
  margin-top: 30px;
}
.user-details .img-holder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.user-details img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.user-details-wrap .title {
  color: #493866;
  margin: 20px 0;
}
.video-poster {
  position: relative;
}
.play-video {
  position: absolute;
  width: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 4px;
}

/* Special Editions */
.editions-wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 20px;
  margin-top: 40px;
}
.editions-wrap .card {
  width: calc(50% - 8px);
  background: #fff;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 24px 48px 0px rgba(37, 34, 0, 0.1);
}
.editions-wrap .card .img {
  border-radius: 8px 8px 0 0;
}
.editions-wrap .card-body {
  padding: 0.8rem;
}
.editions-wrap h3 {
  font-size: 14px;
  color: #493866;
}

/* FAQs Section Start*/
.questions-container {
  gap: 1.5rem;
  padding: 1.5rem 0;
}
.questions-group {
  display: grid;
  row-gap: 1.5rem;
}
.questions-item {
  background-color: #3d77ea1a;
  border-radius: 0.25rem;
  position: relative;
}
.questions-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #493866;
}
.questions-item-title {
  font-size: 13px;
  font-weight: 600;
}
.questions-description {
  font-size: 14px;
  padding: 0 1.25rem 1rem 1.9rem;
}
.questions-header {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  margin-bottom: -1px;
}
.questions-content {
  overflow: hidden;
  height: 0;
}
.questions-item,
.questions-header,
.questions-item-title,
.questions-description,
.questions-content {
  transition: 0.3s;
}
.questions-item:hover {
  box-shadow: 0 2px 8px hsla(152, 4%, 15%, 0.15);
}
.accordion-open .questions-header,
.accordion-open .questions-content {
  background: #493866;
}
.accordion-open .questions-item-title,
.accordion-open .questions-description {
  color: #fff;
}
.questions-header img {
  width: 14px;
}
.accordion-open img {
  transform: rotate(45deg);
  filter: invert(1);
}

/* Footer Start */
footer {
  padding: 16px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
footer a {
  margin-left: 5px;
  color: #747474;
}
.terms a{
  display: block;
  margin-bottom: 5px;
}

/* Embed Responsive */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #f9f9f9;
}
.embed-responsive .embed-responsive-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
iframe {
  background-color: #d4d4d4;
  width: 100%;
  height: 100%;
}

/* Modal */
.modal:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 601;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 600;
  visibility: visible;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 250px;
  max-width: 350px;
  background: #fff;
}
.modal .cancel-circle {
  position: absolute;
  top: -35px;
  width: 25px;
  right: 0px;
  filter: invert(1);
}

.modalSubscribe .modal-content {
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  background: #f5f5f5;
}
.modalSubscribe .btn-group {
  margin-top: 20px;
}
.modalSubscribe .btn {
  display: inline-block;
  border: 1px solid #ddd;
  margin: 0 20px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.modalSubscribe .btn.senior {
  background: #fa3c6f;
}
.modalSubscribe .btn.junior {
  background: #493866;
}
.modalSubscribe .btn.seedling {
  background: #9c27b0;
}

/* Scoial Media */
.social {
  display: block;
  margin: 20px 0;
}
.social a {
  display: inline-block;
  margin-right: 10px;
}
.social img {
  width: 25px;
  vertical-align: middle;
}

/* Slick Slider */

.slick-arrow {
  position: absolute;
  top: 18%;
  background: #fff;
  width: 40px;
  height: 40px;
  color: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  z-index: 999;
  outline: 0;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.2);
}
.slick-arrow:after {
  content: "";
  border-style: solid;
  display: inline-block;
  padding: 5px;
  border-color: #ed3236;
  border-width: 0 2px 2px 0;
  position: relative;
}
.slick-prev:after {
  transform: rotate(135deg);
  top: -6px;
  left: 2px;
}
.slick-next:after {
  transform: rotate(-45deg);
  right: 15px;
  top: 1px;
}
.slick-next {
  right: -16px;
}
.slick-prev {
  left: -16px;
}
.slick-dots {
  text-align: center;
  margin-top: 40px;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots li.slick-active button{
  background: #ed3236;
}
.slick-dots button {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  color: transparent;
  border: 1px solid #ed3236;
}

/* Media Query */

@media only screen and (min-width: 600px) {
  .container {
    max-width: 540px;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .questions-container {
    align-items: flex-start;
  }
}

@media only screen and (min-width: 992px) {
  body {
    font-size: 18px;
  }
  .container {
    max-width: 960px;
  }
  .show-web {
    display: block;
  }
  .sec-title {
    font-size: 44px;
  }
   .sec-dec{
    font-size: 24px;
  }
  .section {
    padding: 70px 0;
  }
  .btn-subscribe {
    margin-top: 70px;
  }
  /* Header */
  header {
    height: 100px;
  }
  header img {
    width: 260px;
  }
  .header-wrap {
    justify-content: space-between;
    height: 100px;
  }

  /* Banner Section */
  .banner-img {
    min-height: 650px;
  }
  .banner-img img{
    width: 100%;
    height: 650px;
  }
  .banner-sec h1 {
    font-size: 50px;
  }
  .banner-sec h2 {
    font-size: 22px;
    margin: 10px 0 15px;
  }
  .banner-sec h3 {
    font-size: 18px;
  }

  /* Why Choose Us Section */
  .why-choose .content-wrap {
    column-gap: 80px;
    flex-direction: row;
  }
  .why-choose .left-panel,
  .why-choose .right-panel {
    width: 50%;
  }
  .why-choose .left-panel p{
    font-size: 18px;
  }
  .why-choose .right-panel img {
    height: 60px;
  }
  .why-choose .right-panel h4 {
    font-size: 28px;
  }
  .why-choose .right-panel li {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  /* Features Section Start */
  .features-sec ul {
    column-gap: 80px;
    row-gap: 80px;
    margin-top: 80px;
  }
  .features-sec li {
    width: calc(50% - 40px);
    padding: 1.5rem;
  }
  .features-sec h4 {
    font-size: 24px;
  }
  .features-sec p{
    font-size: 18px;
  }

  /* Age-appropriate Segments Section Start */
  .age-group-sec .age-Wrap {
    column-gap: 36px;
    margin-top: 80px;
    flex-wrap: nowrap;
  }
  .age-group-sec .card {
    width: calc(33% - 20px);
    border-radius: 16px;
  }
  .age-group-sec .card .img-holder {
    min-height: 290px;
  }
  .age-group-sec img {
    width: 100%;
  }
  .age-group-sec h3 {
    font-size: 24px;
  }
  .age-group-sec h4 {
    font-size: 18px;
    margin: 15px 0;
  }
  .age-group-sec p {
    font-size: 18px;
  }
  .age-group-sec .card ul {
    row-gap: 10px;
    margin: 15px 0 0 20px;
  }
  .age-group-sec .card li {
    font-size: 16px;
  }

  /* Subscribe Section Start */
  .subscribe-sec .card-wrap {
    flex-wrap: nowrap;
    column-gap: 20px;
    margin-top: 80px;
  }
  .subscribe-sec .card {
    width: 25%;
    padding: 1rem;
  }
  .subscribe-sec .card .plan {
    padding: 14px 0 12px;
    font-size: 22px;
  }
  .subscribe-sec .card .newspapers {
    font-size: 16px;
    margin: 20px 0;
  }
  .subscribe-sec .card .discount {
    margin-bottom: 20px;
    min-height: 27px;
    font-size: 18px;
  }
  .subscribe-sec .card .price {
    font-size: 20px;
  }
  .subscribe-sec .card .offer-price {
    font-size: 15px;
    margin: 0 0 10px 20px;
  }
  .subscribe-sec .card .btn {
    margin: 25px 0 20px;
    font-size: 16px;
  }
  .subscribe-sec .card li img {
    margin-right: 10px;
    width: 10px;
  }
  .subscribe-sec .card li img.right-img {
    width: 12px;
  }
  .subscribe-sec .card li {
    font-size: 14px;
    margin-bottom: 15px;
  }

  /* Bundle of Benefits Section Start */
  .benefits-sec ul {
    margin-top: 80px;
    column-gap: 20px;
    flex-wrap: nowrap;
  }
  .benefits-sec li {
    width: 25%;
  }
  .benefits-sec .card-body {
    padding: 1rem;
  }
  .benefits-sec .card h3 {
    font-size: 14px;
  }
  .benefits-sec .card p {
    font-size: 14px;
  }
  .benefits-sec .img-holder {
    min-height: 190px;
  }
  .benefits-sec img {
    padding: 10px 20px 0;
  }

  /* Testimonials */
  #vocSlider {
    margin-top: 80px;
  }
  .review-wrap {
    flex-direction: row;
    column-gap: 70px;
    align-items: center;
  }
  .review-wrap .poster-img {
    width: 500px;
  }
  .user-details-wrap .title {
    margin: 40px 0;
  }
  .play-video {
    width: 60px;
    cursor: pointer;
  }

  /* Special Editions */
  .editions-wrap {
    flex-direction: row;
    column-gap: 40px;
    row-gap: 40px;
    margin-top: 80px;
  }
  .editions-wrap .card {
    width: calc(33% - 24px);
  }
  .editions-wrap .card-body {
    padding: 1rem;
  }
  .editions-wrap h3 {
    font-weight: 500;
    font-size: 24px;
  }
  /* FAQs Section */
  .questions-header {
    padding: 1rem;
    column-gap: 1rem;
  }
  .questions-item-title {
    font-size: 16px;
  }
  .questions-group {
    row-gap: 2rem;
  }
  .questions-description {
    font-size: 16px;
    padding: 0 1.25rem 1.25rem 3.2rem;
  }
  .questions-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .questions-header img {
    width: 20px;
  }

  /* Footer Start */
  footer .terms{
    display: flex;
    height: 70px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
  }
  footer .terms .terms-link{
    display: flex;
    column-gap: 50px;
  }
  .copyright {
    margin-top: 25px;
  }
  .social a {
    margin: 0 12px;
  }

  /* Modal */
  .modal-content {
    max-width: 700px;
    height: 394px;
  }
  .modal .cancel-circle {
    width: 30px;
    top: -40px;
    right: -40px;
    cursor: pointer;
  }
  .modalSubscribe .modal-content {
    padding: 50px 40px;
  }
  .modalSubscribe .btn-group {
    margin-top: 80px;
  }
  .modalSubscribe .btn {
    margin: 0 20px 30px;
    font-size: 16px;
  }

  /* Slick Slider */
  .slick-arrow {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translate(0, -50%);
  }
  .slick-next {
    right: -70px;
  }
  .slick-prev {
    left: -70px;
  }
  .slick-dots button {
    width: 13px;
    height: 13px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  .slick-prev {
    left: -100px;
  }
  .slick-next {
    right: -100px;
  }
}