* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #fff;
  --secondary: #ddd;
  --ternary: #000;
  --bs-red: #dc3545;
  --bs-green: #198754;
  --bluishgray: #f0f4f5;
  --cursive: "Cedarville Cursive", cursive;
  --raleway: "Raleway", sans-serif;
  --quicksand: "Quicksand", sans-serif;
  --plyfair: "Playfair Display", serif;
  --poppins: "Poppins", sans-serif;
}

.sticky-call,
.sticky-whatsapp {
  width: 50px;
  height: 50px;
  background: var(--bs-red);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 15vh;
  color: var(--primary);
  text-decoration: none;
  z-index: 200;
}
.sticky-whatsapp {
  right: 0px;
  background: var(--bs-green);
}

.header {
  position: relative;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.3)
    ),
    url("../images/background/preview.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}
.canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
}

/* ============================= */
/* hero-section */
.hero-section {
  min-height: 100vh;
  position: relative;
  padding-bottom: 50px;
  z-index: 99;
}
.deer-img {
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 120px;
  z-index: 99;
}
.nav-bar {
  padding: 20px 10px;
  backdrop-filter: blur(20px);
}
.nav-logo {
  width: 100px;
}
.exit-icon {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}
.nav-button {
  text-decoration: none;
  text-transform: capitalize;
  height: 30px;
  font-family: var(--quicksand);
  background: var(--bs-red);
  display: flex;
  justify-content: center;
  color: var(--primary);
  align-items: center;
  transition: 0.1s;
  outline: 2px solid var(--bs-red);
  font-weight: 600;
  animation: discount 0.8s infinite;
  width: 110px;
}
@keyframes discount {
  0% {
    box-shadow: 0px 0px 0px 0px rgba(220, 53, 59, 0.5);
  }
  100% {
    box-shadow: 0px 0px 0px 10px rgba(220, 53, 59, 0.5);
  }
}
.hero-form {
  position: relative;
  z-index: 100;
}
/* hero-section-left */
.wish-img {
  max-width: 100%;
}
.special-offer {
  font-size: 20px;
  font-weight: 400;
  color: #ddd;
  font-family: var(--plyfair);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 0;
  line-height: 25px;
}
.title {
  font-size: 40px;
  font-weight: 500;
  color: var(--primary);
  font-family: var(--plyfair);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
  line-height: 35px;
}
.sale {
  font-size: 90px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--plyfair);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 80px;
}
.percent {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary);
  font-family: var(--plyfair);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
  line-height: 30px;
}
.percent span {
  font-size: 50px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--quicksand);
  letter-spacing: 1px;
  line-height: 60px;
  margin: 0 5px;
}
.offer {
  font-family: var(--plyfair);
  font-size: 30px;
  margin-bottom: 10px;
  color: #fff;
}
.discount {
  font-size: 70px;
  font-weight: bold;
  color: #fff;
  margin: 20px 0;
}
.countdown {
  display: flex;
  width: 290px;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-radius: 10px;
  background: linear-gradient(
    to left,
    #610101,
    #750104,
    #8a0206,
    #9f0306,
    #b50704
  );
}
.countdown-time {
  font-size: 30px;
  color: var(--primary);
  font-weight: 700;
  font-family: var(--quicksand);
  margin-bottom: 0px;
}
.countdown-span {
  font-size: 15px;
  color: var(--primary);
  font-weight: 500;
  font-family: var(--quicksand);
}
.countdown-para {
  font-size: 18px;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--plyfair);
  margin-bottom: 10px;
}

/* hero-section-right */
.form-img {
  position: absolute;
  top: -30px;
  left: -15px;
  width: 180px;
}
.form-img2 {
  position: absolute;
  width: 330px;
  bottom: -40px;
  left: -20px;
}
.course,
.placement-para,
.seats {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--quicksand);
}
.placement-para {
  color: var(--bs-green);
  font-weight: 700;
}
.seats {
  color: var(--bs-red);
  font-weight: 500;
}
.offer-card {
  background: #fff;
  color: #000;
  max-width: 430px;
  height: auto;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 0px 5px 4px rgba(0, 0, 0, 0.2);
}
.hero-call {
  background: var(--bs-red);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  width: 150px;
  height: 50px;
  font-family: var(--quicksand);
  color: var(--primary);
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
  text-decoration: none;
  position: relative;
  z-index: 99;
  transition: 0.2s;
}
.form-control {
  font-family: var(--quicksand);
  font-weight: 500 !important;
  box-shadow: none !important;
}
.new-call {
  width: 210px;
  height: 55px;
  background: transparent;
  font-family: var(--quicksand);
  justify-content: space-between;
  padding-right: 20px;
  box-sizing: border-box;
  border-radius: 30px;
  border: 3px solid #198754;
  transition: 0.3s;
}
.line {
  width: 40%;
  height: 1px;
  background: var(--bs-gray-200);
}
.text-italic {
  font-style: italic;
  margin: 0 10px;
}
.circular-call {
  background: var(--bs-green);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.ph-no {
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--bs-green);
}
.get-call {
  font-family: var(--quicksand);
}
.offer-percentage {
  width: 85px;
  height: 85px;
  background: linear-gradient(45deg, #ee0979, #ff6a00);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  top: -30px;
  left: -20px;
  border: 7px solid #fff;
  color: #fff;
  border-radius: 50%;
}
.offer-percentage p {
  font-size: 25px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 0;
}
.offer-percentage p span {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.flower-circle {
  position: absolute;
  top: -37px;
  left: -26px;
  width: 96px;
}
/* ============================= */

/* ============================= */
/* student-review */
.review-img1 {
  width: 300px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.review-img2 {
  width: 170px;
  position: absolute;
  left: 0;
  bottom: -70px;
  z-index: 1;
}
.review {
  background-color: var(--primary);
  padding-top: 65px;
  padding-bottom: 80px;
}
.review-title {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 99;
}
.title-h2 {
  font-size: 25px;
  font-weight: 700;
  font-family: var(--plyfair);
  letter-spacing: 2px;
}
.title-para {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--poppins);
}
.review-card {
  background-color: var(--primary);
  border-radius: 5px;
  border: 1px solid #000;
  padding: 20px;
  min-height: 580px;
  transition: all 0.2s ease-in-out;
}
.review-card:hover{
  border: 1px solid var(--bs-red);
}
.review-card h3 {
  font-size: 20px;
  font-family: var(--quicksand);
  font-weight: 700;
  margin-bottom: 2px0;
}
.review-card p {
  margin-bottom: 0;
  font-size: 15px;
  font-family: var(--quicksand);
  font-weight: 500;
  line-height: 1.5;
}
.review-img {
  width: 40px;
  height: 40px;
}
.review-card .star-google {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px;
}
.review-card .star-google i {
  color: #ffb200;
  margin: 0 5px 0 0;
}
.review-card .star-google img {
  width: 30px;
  height: 30px;
  margin-left: auto;
  display: inline-flex;
}
/* ============================= */

/* ============================= */
/* placement */
.placement-img1 {
  width: 250px;
  position: absolute;
  bottom: -85px;
  right: -40px;
}
.red-shape {
  left: -40px;
  bottom: 28px;
  z-index: 1;
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  animation: shake-1 3s infinite;
}
@keyframes shake-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.red-circle {
  top: 260px;
  right: -10%;
  z-index: 1;
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  animation: shake 3s infinite;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.placement {
  padding-top: 100px;
  padding-bottom: 130px;
  position: relative;
  background-image: url("../images/background/h8-testimonial-bg.e67c7a94.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  overflow: hidden;
}
.placement-title {
  max-width: 850px;
  margin: 0 auto;
}

/* ============================= */

/* ============================= */
/* overview */
.overview-img1 {
  width: 150px;
  position: absolute;
  bottom: -45px;
  left: 0px;
}
.overview {
  padding: 80px 0;
  position: relative;
}
.institute-quality {
  padding: 15px;
  list-style-type: none;
  border: 1px solid #ccc;
}
.institute-quality li {
  font-size: 15px;
  font-family: var(--poppins);
  font-weight: 400;
  display: flex;
  align-items: start;
  gap: 15px;
  margin-bottom: 10px;
}
.bi-check-circle-fill {
  color: blue;
  font-size: 15px;
}
.accordion {
  width: 100%;
  background-color: #ffffff;
}
.accordion-item {
  margin-bottom: 5px;
  border: none !important;
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-header {
  background-color: #e9ecef;
  padding: 12px;
  cursor: pointer;
  width: 100%;
  display: flex;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}
.accordion-header h3 {
  color: var(--ternary);
  font-size: 17px;
  font-weight: 500;
  font-family: var(--poppins);
  margin: 0;
}
.accordion-header:hover {
  background-color: #e1e3e4;
}
.arrow {
  transform: rotate(90deg);
  -webkit-text-stroke: 1px #000;
}
.accordion-header.active .arrow {
  transform: rotate(270deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 35px;
  background-color: #ffffff;
  border-radius: 5px;
}
.accordion-content-list {
  padding: 0;
  margin: 0;
  color: #000;
}
.accordion-content-list li {
  margin-bottom: 10px;
  font-size: 16px;
}
.get-in-touch {
  background: #8a0206;
  color: var(--primary);
  width: 100%;
  margin: 50px auto 0;
  position: sticky;
  top: 50px;
  padding: 35px;
  border-radius: 20px;
}
.label-input-holder {
  margin: 1rem 0;
}
.label-input-holder label {
  margin-bottom: 5px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
/* ============================= */

/* ============================= */
/* footer  */
.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/background/—Pngtree—minimalistic\ cartoon\ cute\ christmas\ background_975222.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.footer-logo {
  width: 150px;
}
.footer-para {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  font-family: var(--quicksand);
  line-height: 25px;
}
.footer-para a {
  text-decoration: none;
  color: var(--primary);
  text-decoration: underline;
}
/* ============================= */

/* ============================= */
/* Media queries */
@media (min-width: 576px) {
  .nav-bar {
    padding: 20px;
  }
  .nav-logo {
    width: 130px;
  }
  .form-img {
    top: -40px;
    left: -30px;
    width: 250px;
  }
  .form-img2 {
    width: 480px;
    bottom: -50px;
    left: -30px;
  }
  .santa-img {
    position: absolute;
    left: 0;
    top: 280px;
    width: 150px;
    z-index: 99;
  }
  .deer-img {
    position: absolute;
    right: 0;
    bottom: 260px;
    width: 180px;
    z-index: 99;
  }
  .countdown {
    width: 320px;
  }
  .special-offer {
    font-size: 30px;
    line-height: 30px;
  }
  .title {
    font-size: 55px;
    line-height: 45px;
  }
  .sale {
    font-size: 120px;
    line-height: 105px;
    margin-bottom: 20px;
  }
  .percent {
    font-size: 18px;
  }
  .offer-card {
    padding: 40px;
  }
  .review-card {
    min-height: 390px;
  }
  .title-h2 {
    font-size: 30px;
  }
  .review-img2 {
    width: 200px;
  }
  .placement-img1 {
    width: 330px;
    bottom: -110px;
    right: -55px;
  }
  .red-shape {
    left: -55px;
    bottom: 50px;
    width: 150px;
    height: 150px;
  }
  .red-circle {
    top: 190px;
    width: 150px;
    height: 150px;
  }
}

@media (min-width: 768px) {
  .nav-button {
    height: 35px;
    width: 130px;
  }
  .wish-img {
    width: 480px;
  }
  .special-offer {
    font-size: 30px;
    line-height: 30px;
  }
  .title {
    font-size: 55px;
    line-height: 45px;
  }
  .title-h2 {
    font-size: 40px;
  }
  .sale {
    font-size: 120px;
    line-height: 105px;
    margin-bottom: 20px;
  }
  .percent {
    font-size: 18px;
  }
  .santa-img {
    width: 210px;
  }
  .deer-img {
    width: 230px;
    bottom: 0px;
  }
  .review {
    padding: 100px 0;
  }
  .review-card {
    min-height: 520px;
  }
  .review-img1 {
    width: 400px;
  }
  .title-para,
  .institute-quality li {
    font-size: 17px;
  }
  .review-slider .owl-nav {
    position: absolute;
    z-index: -1;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  .review-slider .owl-nav .owl-next,
  .review-slider .owl-nav .owl-prev {
    font-size: 75px !important;
    color: var(--bs-red) !important;
  }
  .review-slider .owl-nav .owl-next:hover,
  .review-slider .owl-nav .owl-prev:hover {
    background-color: transparent;
  }
  .review-slider .owl-nav .owl-next {
    position: relative;
    left: 30px;
  }
  .review-slider .owl-nav .owl-prev {
    position: relative;
    right: 30px;
  }
  .std-slider .owl-nav {
    position: absolute;
    top: 30% !important;
  }
  .review-img2 {
    width: 280px;
    bottom: -150px;
  }
  .overview {
    padding: 120px 0;
  }
  .overview-img1 {
    width: 220px;
    bottom: -65px;
  }
  .placement {
    padding: 130px 0;
  }
}
@media (min-width: 992px) {
  .santa-img {
    width: 150px;
  }
  .deer-img {
    width: 200px;
  }
  .hero-section {
    padding: 0;
  }
  .form-img2 {
    width: 440px;
  }
  .review-card {
    min-height: 410px;
  }
  .review-img1 {
    width: 500px;
  }
  .placement {
    padding: 150px 0;
  }
  .placement-img1 {
    width: 400px;
    bottom: -134px;
    right: -68px;
  }
  .red-circle {
    top: 85px;
    right: 25%;
  }
  .red-shape {
    left: -55px;
    bottom: 20px;
    width: 190px;
    height: 190px;
  }
}
@media (min-width: 1200px) {
  .santa-img {
    width: 180px;
    top: 80px;
  }
  .deer-img {
    width: 170px;
  }
  .form-img {
    width: 320px;
  }
  .form-img2 {
    width: 490px;
  }
  .review-card {
    min-height: 475px;
  }
  .review-img1 {
    width: 600px;
  }
  .review-slider .owl-nav .owl-next {
    position: relative;
    left: 40px;
  }
  .review-slider .owl-nav .owl-prev {
    position: relative;
    right: 40px;
  }
}
@media (min-width: 1400px) {
  .santa-img {
    width: 250px;
  }
  .deer-img {
    width: 250px;
    bottom: 150px;
  }
}
