/* **** Table of Contents 
1. Reset
2. Typography
3. Utilities
   3.1 - Text Color
   3.2 - Link Color
   3.3 - Background Color
   3.4 - Borders
   3.5 - Border Radius
   3.6 - Background Image Related
   3.7 - Object Fit
   3.8 - Line Clamp
   3.9 - Font Weight
   3.10 - Spacing
   3.11 - Others
4. Components
   4.1 - Buttons
   4.2 - Pagetitle
   4.3 - Pagination
   4.4 - Forms
   4.5 - Social Icons
   4.6 - Content Box
   4.7 - Cards
        4.7.1 - Product Card
        4.7.2 - Blog Card
   4.8 - Tables
   4.9 - Scroll Top Button
   4.10 - Quantity Generator Button
   4.11 - Price Range Filter
   4.12 - Accordion
   4.13 - Custom Tab
5. Section wise common styles
6. Vendor Overriding
7. Layouts
   7.1 - Header
   7.2 - Footer
8. Pages(Each page will contain its own media queries)
   8.1 - Home
   8.2 - About Us
   8.3 - Contact Us
   8.4 - Blog Single
   8.5 - Blog Archive
   8.6 - Product Single
   8.7 - Exam Single
   8.8 - Exam Archive

**** */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&display=swap");
:root {
  --color-primary: #460c4c;
  --color-secondary: #d1b371;
  --color-dark: #1a041d;
  --color-text: #4c3250;
  --color-light: #fef1ff;
  --color-border: #dfcce0;
  --color-primaryShade: #601568;
  --color-secondaryShade: #be9d55;
  --color-darkShade: #282a2d;
  --color-link: #460c4c;
  --bg-color-body: #fff;
  --color-lightText: #d1d1d1;
  --font-base: "Lato", "Arial", sans-serif;
  --shadow-base: rgba(0, 0, 0, 0.12) 0px 1px 3px,
    rgba(0, 0, 0, 0.24) 0px 1px 2px;
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-base: 1rem;
  --border-radius-xl: 1.25rem;
  --border-radius-2xl: 1.875rem;
  --border-radius-3xl: 2.25rem;
  --border-radius-4xl: 3rem;
}

/* ---- 1. Reset ---- */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  padding: 0;
  margin: 0;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: var(--font-base);
  /* background-color: var(--bg-color-body); */
  background-color: var(--bg-color-body);
  color: var(--color-text);
  line-height: 1.6;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--color-link);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:visited,
a:hover,
a:active {
  text-decoration: none;
}
a:hover {
  color: var(--color-secondaryShade);
}

input,
select,
textarea,
label {
  display: block;
}
::-moz-selection {
  background-color: var(--color-primary);
  color: #fff;
}
::selection {
  background-color: var(--color-primary);
  color: #fff;
}
section {
  position: relative;
}

/* ---- 2. Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 1.25rem;
}
h1 {
  font-size: 2.125rem;
  line-height: 1.25;
}
h2 {
  font-size: 1.75rem;
  line-height: 1.3;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.35;
}
h4 {
  font-size: 1.375rem;
  line-height: 1.4;
}
h5 {
  font-size: 1.25rem;
  line-height: 1.5;
}
h6 {
  font-size: 1.125rem;
  line-height: 1.6;
}
p {
  font-size: 1rem;
  line-height: 1.65;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 3.125rem;
  }
  h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1400px) {
  h1 {
    font-size: 3.5rem;
  }
  h3 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1700px) {
  h1 {
    font-size: 3.75rem;
  }
  p {
    font-size: 1.0625rem;
  }
}

/* ---- 3. Utilities ---- */
/* ---- 3.1 Text Colors ---- */
.text--primary {
  color: var(--color-primary);
}
.text--secondary {
  color: var(--color-secondary);
}
.text--dark {
  color: var(--color-dark);
}
.text--para {
  color: var(--color-text);
}
.text--primaryShade {
  color: var(--color-primaryShade);
}
.text--lightText {
  color: var(--color-lightText);
}
.text--sm {
  font-size: 0.875rem;
}
.text--xs {
  font-size: 0.75rem;
}

/* ---- 3.2 Link Color ---- */
.link--primary {
  color: var(--color-primary);
}
.link--primary:hover {
  color: var(--color-primaryShade);
}
.link--secondary {
  color: var(--color-secondary);
}
.link--secondary:hover {
  color: var(--color-secondaryShade);
}
.link--light {
  color: #fff;
}
.link--light:hover {
  color: rgba(255, 255, 255, 0.85);
}
.link-hover--underline:hover {
  text-decoration: underline;
}
.link--dark {
  color: var(--color-dark);
}
.link--dark:hover {
  color: var(--color-primary);
}

/* ---- 3.3 - Background Colors ---- */
.bg--primary {
  background-color: var(--color-primary);
}
.bg--secondary {
  background-color: var(--color-secondary);
}
.bg--dark {
  background-color: var(--color-dark);
}
.bg--light {
  background-color: var(--color-light);
}
.bg--body {
  background-color: var(--bg-color-body);
}
.bg--primaryShade {
  background-color: var(--color-primaryShade);
}
.bg--secondaryShade {
  background-color: var(--color-secondaryShade);
}
.bg--darkShade {
  background-color: var(--color-darkShade);
}

/* ---- 3.4 - Borders ---- */
.border--solid {
  border-style: solid;
}
.border--dotted {
  border-style: dotted;
}
.border--1 {
  border-width: 1px;
}
.border--2 {
  border-width: 2px;
}
.border--4 {
  border-width: 4px;
}
.border--6 {
  border-width: 6px;
}
.border--8 {
  border-width: 8px;
}
.border--10 {
  border-width: 10px;
}
.border--primary {
  border-color: var(--color-primary);
}
.border--primaryShade {
  border-color: var(--color-primaryShade);
}
.border--secondary {
  border-color: var(--color-secondary);
}
.border--secondaryShade {
  border-color: var(--color-secondaryShade);
}
.border--dark {
  border-color: var(--color-dark);
}
.border--borderColor {
  border-color: var(--color-border);
}
.border--extraLight {
  border-color: rgba(0, 0, 0, 0.1);
}

/* ---- 3.5 - Border Radius ---- */
.rounded--sm {
  border-radius: var(--border-radius-sm);
}
.rounded--md {
  border-radius: var(--border-radius-md);
}
.rounded--lg {
  border-radius: var(--border-radius-lg);
}
.rounded--base {
  border-radius: var(--border-radius-base);
}
.rounded--xl {
  border-radius: var(--border-radius-xl);
}
.rounded--2xl {
  border-radius: var(--border-radius-2xl);
}
.rounded--3xl {
  border-radius: var(--border-radius-3xl);
}
.rounded--3xl {
  border-radius: var(--border-radius-4xl);
}

/* ---- 3.6 - Background Image Related ---- */
.bg--center {
  background-position: center center;
}
.bg--right {
  background-position: center right;
}
.bg--left {
  background-position: center left;
}
.bg--top-right {
  background-position: top right;
}
.bg--bottom-right {
  background-position: bottom right;
}
.bg--top-left {
  background-position: topleftt;
}
.bg--bottom-left {
  background-position: bottom left;
}
.bg--bottom-center {
  background-position: bottom center;
}
.bg--cover {
  background-size: cover;
}
.bg--no-repeat {
  background-repeat: no-repeat;
}
.bg--contain {
  background-size: contain;
}

/* ---- 3.7 - Object Fit ---- */
.object-fit-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

/* ---- 3.8 - Line Clamp ---- */
.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp--2 {
  -webkit-line-clamp: 2;
}
.line-clamp--3 {
  -webkit-line-clamp: 3;
}
.line-clamp--4 {
  -webkit-line-clamp: 4;
}
.line-clamp--5 {
  -webkit-line-clamp: 5;
}

/* ---- 3.9 - Font Weight ---- */
.fw-medium {
  font-weight: 500;
}

/* ---- 3.10 - Spacing ---- */

/* ---- 3.11 - Others ---- */
.scroll--disabled {
  overflow-y: hidden;
}
.shadow--base {
  -webkit-box-shadow: var(--shadow-base);
  box-shadow: var(--shadow-base);
}
.has-effect--scale-up,
.has-effect--tilt-once {
  overflow: hidden;
}
.has-effect--scale-up img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
.has-effect--tilt-once img {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
.has-effect--scale-up:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.has-effect--tilt-once:hover img {
  -webkit-transform: scale(1.2) rotate(4deg);
  transform: scale(1.2) rotate(4deg);
}
.filter--invert {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.subheading {
  background-color: #fce2ff;
  padding: 0.5rem;
  line-height: 1;
  font-size: 0.9375rem;
}

/* ---- 4. Components ---- */
/* ---- 4.1 Buttons ---- */
.button {
  display: inline-block;
  padding: 0.875rem 2rem;
  color: var(--color-dark);
  font-weight: 700;
  background-color: #fff;
  border-radius: 0;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  white-space: nowrap;
}
.button--primary {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: #fff;
}
.button--primary:hover {
  background-color: var(--color-primaryShade);
  border: 2px solid var(--color-primaryShade);
  color: #fff;
}
.button--secondary {
  background-color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  color: var(--color-dark);
}
.button--secondary:hover {
  background-color: var(--color-secondaryShade);
  border: 2px solid var(--color-secondaryShade);
  color: var(--color-dark);
}
.button--white {
  background-color: #fff;
  border: 2px solid #fff;
  color: var(--color-primary);
}
.button--white:hover {
  background-color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  color: var(--color-primaryShade);
}
.button--dark {
  background-color: var(--color-dark);
  border: 2px solid var(--color-dark);
  color: #fff;
}
.button--dark:hover {
  background-color: var(--color-darkShade);
  border: 2px solid var(--color-darkShade);
  color: #fff;
}
.button--primary-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.button--primary-outline:hover {
  background-color: var(--color-primaryShade);
  border: 2px solid var(--color-primaryShade);
  color: #fff;
}
.button--dark-outline {
  background-color: transparent;
  border: 2px solid var(--color-dark);
  color: var(--color-dark);
}
.button--dark-outline:hover {
  background-color: var(--color-dark);
  color: #fff;
}
.button--white-outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.button--white-outline:hover {
  background-color: #fff;
  color: var(--color-dark);
}

/* ---- 4.2 Pagetitle ---- */
.pagetitle-block {
  padding: 8.5rem 0 4rem;
}
.pagetitle-block .breadcrumb {
  margin-bottom: 0;
}
.pagetitle-block .breadcrumb .breadcrumb-item a,
.pagetitle-block .breadcrumb .breadcrumb-item.active,
.breadcrumb-item::before {
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}
.pagetitle-block .breadcrumb .breadcrumb-item.active {
  color: #fff;
  pointer-events: none;
}
.pagetitle-block .breadcrumb .breadcrumb-item.active span {
  background-color: var(--color-primary);
  padding: 0.125rem 0.375rem;
}
.pagetitle-block .breadcrumb .breadcrumb-item:hover {
  color: var(--color-secondary);
}
.pagetitle-block .pagetitle {
  margin-bottom: 1rem;
}
.pagetitle-block.pagetitle-block--has-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
}
/* body.single-product .pagetitle-block .pagetitle,
body.single-post .pagetitle-block .pagetitle {
  font-size: 1.875rem;
} */
@media (min-width: 768px) {
  .pagetitle-block {
    padding: 9rem 0 5rem;
  }
}
@media (min-width: 992px) {
  .pagetitle-block {
    padding: 11rem 0 6rem;
  }
}
@media (min-width: 1200px) {
  .pagetitle-block .pagetitle {
    font-size: 3.5rem;
  }
}

/* ---- 4.3 Pagination ---- */
.pagination-wrapper .pagination {
  margin-top: 2.5rem;
}
.pagination-wrapper .pagination .page-item .page-link {
  background-color: transparent;
  border: 0;
  color: var(--color-dark);
  border-radius: 50%;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
}
.pagination-wrapper .pagination .page-item .page-link:hover {
  color: var(--color-primary);
}
.pagination-wrapper .pagination .page-item.active .page-link {
  background-color: var(--color-primary);
  color: #fff;
}
@media (min-width: 992px) {
  .pagination-wrapper .pagination {
    margin-top: 3.125rem;
  }
}
@media (min-width: 1700px) {
  .pagination-wrapper .pagination {
    margin-top: 3.75rem;
  }
}

/* ---- 4.4 Forms ---- */
.form .form__field {
  position: relative;
}
.form .form__field .form__input-label {
  display: inline-block;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  position: relative;
  font-weight: 600;
}
.form .form__field .form__input-label.required::after {
  content: "*";
  position: absolute;
  top: 0;
  right: -0.5rem;
  color: var(--bs-danger);
}

.form .form__field .form__input {
  padding: 0.75rem 1rem;
  background-color: transparent;
  border: 1px solid var(--color-border);
  width: 100%;
  color: var(--color-dark);
  font-weight: 600;
  min-height: 2.9375rem;
  border-radius: 0;
}

.form .form__field textarea.form__input {
  height: 10rem;
}
.form .form__field .form__input:focus {
  border: 1px solid var(--color-secondary);
  outline: 1px solid var(--color-secondary);
}
.form.form--light .form__input {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}
.form input[type="checkbox"],
.form input[type="radio"] {
  accent-color: var(--color-primary);
}
.form .form__field .form__input::-webkit-input-placeholder {
  font-weight: 400;
  color: var(--color-text);
}
.form .form__field .form__input::-moz-placeholder {
  font-weight: 400;
  color: var(--color-text);
}
.form .form__field .form__input:-ms-input-placeholder {
  font-weight: 400;
  color: var(--color-text);
}
.form .form__field .form__input::-ms-input-placeholder {
  font-weight: 400;
  color: var(--color-text);
}
.form .form__field .form__input::placeholder {
  font-weight: 400;
  color: var(--color-text);
}
.form .form__field .form__input--hide-number-button::-webkit-outer-spin-button,
.form .form__field .form__input--hide-number-button::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form .form__field .form__input--hide-number-button[type="number"] {
  -moz-appearance: textfield;
}
@media (min-width: 1400px) {
  .form .form__field .form__input {
    padding: 0.875rem 1rem;
  }
}

/* ---- 4.5 - Social Icons ---- */
.social-icons li:not(:last-child) {
  margin-right: 1.25rem;
}
.social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-dark);
  font-size: 1rem;
  width: 1.875rem;
  height: 1.875rem;
}
.social-icons.social-icons--light li a {
  background-color: #fff;
  color: var(--color-primary);
}
.social-icons li:hover a,
.social-icons.social-icons--light li:hover a {
  background-color: var(--color-secondary);
}

/* ---- 4.6 - Content box ---- */
.content-box ul {
  list-style: disc;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  list-style-position: inside;
}
.content-box ul li {
  position: relative;
}
.content-box ul li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.content-box ul:not(:last-child) {
  margin-bottom: 1.25rem;
}
.content-box p:last-child {
  margin-bottom: 0;
}
.content-box img {
  width: 100%;
}
.content-box img:not(:last-child) {
  margin-bottom: 1.25rem;
}
.content-box h1,
.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
  font-weight: 700;
  color: var(--color-dark);
}
.content-box.has-styled-checked-list ul {
  margin-left: 0;
}
.content-box.has-styled-checked-list ul li {
  list-style: none;
}
.content-box.has-styled-checked-list ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  display: inline-block;
  padding-right: 0.75rem;
  vertical-align: middle;
  font-weight: 900;
  margin-top: -0.125rem;
  color: var(--color-primary);
}
.content-box a {
  font-weight: 600;
}
.content-box h1:last-child,
.content-box h2:last-child,
.content-box h3:last-child,
.content-box h4:last-child,
.content-box h5:last-child,
.content-box h6:last-child,
.content-box p:last-child {
  margin-bottom: 0 !important;
}
.content-box.has-h1--has-mb h1,
.content-box.has-h2--has-mb h2,
.content-box.has-h3--has-mb h3,
.content-box.has-h4--has-mb h4,
.content-box.has-h5--has-mb h5,
.content-box.has-h6--has-mb h6,
.has-mb {
  margin-bottom: 2rem;
}
.content-box.has-h1--dark h1,
.content-box.has-h2--dark h2,
.content-box.has-h3--dark h3,
.content-box.has-h4--dark h4,
.content-box.has-h5--dark h5,
.content-box.has-h6--dark h6 {
  color: var(--color-dark);
}
.content-box.has-h1--primary h1,
.content-box.has-h2--primary h2,
.content-box.has-h3--primary h3,
.content-box.has-h4--primary h4,
.content-box.has-h5--primary h5,
.content-box.has-h6--primary h6 {
  color: var(--color-primary);
}
.content-box.has-h1--secondary h1,
.content-box.has-h2--secondary h2,
.content-box.has-h3--secondary h3,
.content-box.has-h4--secondary h4,
.content-box.has-h5--secondary h5,
.content-box.has-h6--secondary h6 {
  color: var(--color-secondary);
}
.content-box.has-h1--white h1,
.content-box.has-h2--white h2,
.content-box.has-h3--white h3,
.content-box.has-h4--white h4,
.content-box.has-h5--white h5,
.content-box.has-h6--white h6 {
  color: #fff;
}
.content-box.has-h1--bold h1,
.content-box.has-h2--bold h2,
.content-box.has-h3--bold h3,
.content-box.has-h4--bold h4,
.content-box.has-h5-bold h5,
.content-box.has-h6--bold h6 {
  font-weight: 700;
}
.content-box.has-h1--semibold h1,
.content-box.has-h2--semibold h2,
.content-box.has-h3--semibold h3,
.content-box.has-h4--semibold h4,
.content-box.has-h5--semibold h5,
.content-box.has-h6--semibold h6 {
  font-weight: 600;
}
.content-box.has-h1--medium h1,
.content-box.has-h2--medium h2,
.content-box.has-h3--medium h3,
.content-box.has-h4--medium h4,
.content-box.has-h5--medium h5,
.content-box.has-h6--medium h6 {
  font-weight: 500;
}
.content-box.has-h1--uppercase h1,
.content-box.has-h2--uppercase h2,
.content-box.has-h3--uppercase h3,
.content-box.has-h4--uppercase h4,
.content-box.has-h5--uppercase h5,
.content-box.has-h6--uppercase h6 {
  text-transform: uppercase;
}
.content-box.has-h1--capitalize h1,
.content-box.has-h2--capitalize h2,
.content-box.has-h3--capitalize h3,
.content-box.has-h4--capitalize h4,
.content-box.has-h5--capitalize h5,
.content-box.has-h6--capitalize h6 {
  text-transform: capitalize;
}
.content-box.has-b-text--semibold b {
  font-weight: 600;
}
.content-box.has-b-text--dark b {
  color: var(--color-dark);
}
.content-box.content-box--prose h1,
.content-box.content-box--prose h2,
.content-box.content-box--prose h3,
.content-box.content-box--prose h4,
.content-box.content-box--prose h5,
.content-box.content-box--prose h6 {
  padding-top: 1.25rem;
}
.content-box.has-highlight-text--primary h2 span {
  color: var(--color-primary);
}
@media (min-width: 992px) {
  .content-box.has-h1--has-mb h1,
  .content-box.has-h2--has-mb h2,
  .content-box.has-h3--has-mb h3,
  .content-box.has-h4--has-mb h4,
  .content-box.has-h5--has-mb h5,
  .content-box.has-h6--has-mb h6,
  .has-mb {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 1400px) {
  .content-box.has-h1--has-mb h1,
  .content-box.has-h2--has-mb h2,
  .content-box.has-h3--has-mb h3,
  .content-box.has-h4--has-mb h4,
  .content-box.has-h5--has-mb h5,
  .content-box.has-h6--has-mb h6,
  .has-mb {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 1700px) {
  .content-box.has-h1--has-mb h1,
  .content-box.has-h2--has-mb h2,
  .content-box.has-h3--has-mb h3,
  .content-box.has-h4--has-mb h4,
  .content-box.has-h5--has-mb h5,
  .content-box.has-h6--has-mb h6,
  .has-mb {
    margin-bottom: 4.25rem;
  }
}

/* ---- 4.7.1 - Product Card ---- */
.product-card .product-card__header .product-card__thumbnail {
  aspect-ratio: 55/42;
  margin-bottom: 0.625rem;
}
.product-card .product-card__body .product-card__year-type {
  font-size: 0.875rem;
  padding: 0.25rem 0.875rem;
  line-height: 1;
  background-color: var(--color-light);
  color: var(--color-primary);
}
.product-card .product-card__body .product-card__title {
  margin-bottom: 1rem;
}
@media (max-width: 1199.98px) {
  .product-card .product-card__body .product-card__title {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .product-card .product-card__body .product-card__title {
    font-size: 1rem;
  }
}

/* ---- 4.7.2 - Blog Card ---- */
.blog-card {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.blog-card .blog-card__header figure {
  aspect-ratio: 5/3;
}
.blog-card .blog-card__header .blog-card__category {
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.875rem;
}
.blog-card .blog-card__body {
  padding: 1.5rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
}
.blog-card .blog-card__body .blog-card__title a {
  color: var(--color-dark);
}
.blog-card .blog-card__body .blog-card__title a:hover {
  color: var(--color-primary);
}

.blog-card .blog-card__body .blog-card__title,
.blog-card .blog-card__body .blog-card__excerpt {
  margin-bottom: 1rem;
}
/* .blog-card .blog-card__body .blog-card__cta a {
  color: var(--color-primary);
  display: inline-block;
  position: relative;
}
.blog-card .blog-card__body .blog-card__cta a:hover {
  color: var(--color-primaryShade);
}
.blog-card .blog-card__body .blog-card__cta a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.125rem;
  width: 0;
  background-color: var(--color-primaryShade);
  transition: all 0.3s ease-in-out;
} */
.blog-card .blog-card__body .blog-card__cta a:hover::after {
  width: 100%;
}
.blog-card .blog-card__footer {
  padding: 0.75rem 1.25rem;
}
.blog-card .blog-card__footer ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-card .blog-card__footer ul li {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  position: relative;
  font-size: 0.875rem;
}
.blog-card .blog-card__footer ul li:first-child {
  padding-left: 0;
}
.blog-card .blog-card__footer ul li:last-child {
  padding-right: 0;
}
.blog-card .blog-card__footer ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0.5625rem;
  left: -0.125rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--color-text);
}

@media (min-width: 992px) {
  .blog-card .blog-card__header .blog-card__icon {
    width: 5.5rem;
    height: 5.5rem;
  }
  .blog-card .blog-card__header .blog-card__icon img {
    max-width: 4rem;
  }
  .blog-card .blog-card__body .blog-card__title,
  .blog-card .blog-card__body .blog-card__excerpt {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1400px) {
  .blog-card .blog-card__body {
    padding: 1.875rem 1.5rem 1rem;
  }
  .blog-card .blog-card__footer {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 1199.98px) {
  .blog-card .blog-card__body .blog-card__title {
    font-size: 1.25rem;
  }
}

/* ---- 4.7.2 - Exam Card ---- */
.exam-card {
  padding: 1.5rem 1rem;
  border: 1px solid var(--color-border);
}
.exam-card:hover {
  border: 1px solid var(--color-primary);
}
.exam-card .exam-card__cta-box a {
  font-weight: 700;
  background-color: #fce2ff;
  padding: 0.625rem 1rem;
  border-radius: 3.75rem;
  display: inline-block;
  line-height: 1;
}
.exam-card .exam-card__cta-box a:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.exam-card .exam-card__excerpt {
  font-size: 0.875rem;
}
@media (min-width: 576px) {
  .exam-card {
    padding: 1.5rem;
  }
  .exam-card .exam-card__excerpt {
    font-size: 1rem;
  }
}

/* ---- 4.7.3 - Project Card ---- */
.project-card .project-card__body p:first-child {
  font-size: 0.875rem;
}
.project-card .project-card__body p:last-child {
  font-size: 0.75rem;
}
@media (min-width: 576px) {
  .project-card .project-card__body p:first-child {
    font-size: 0.9375rem;
  }
}
@media (min-width: 768px) {
  .project-card .project-card__body p:first-child {
    font-size: 1rem;
  }
  .project-card .project-card__body p:last-child {
    font-size: 0.9375rem;
  }
}

/* ---- 4.8 - Tables ---- */
@media (max-width: 767.98px) {
  table.table--responsive thead {
    display: none;
  }
  table.table--responsive tbody tr td {
    display: block;
    border: 0;
  }
  table.table--responsive tbody tr td::before {
    content: attr(data-cell) " : ";
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-dark);
  }
}

/* ---- 4.9 - Button Scroll To Top ---- */
.button--scroll-to-top {
  width: 3.125rem;
  height: 3.125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 3.125rem;
  right: 1.25rem;
  border: 0;
  border-radius: 50%;
  font-size: 1.125rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
  transform: translateY(1.25rem);
  z-index: 1000;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.button--scroll-to-top:hover {
  background-color: var(--color-primary);
}
.button--scroll-to-top.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* ---- 4.10 - Quantity Generator Button ---- */
.quantity-generating-input-container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  border-radius: 0;
}
.quantity-generating-input-container input.qtyminus,
.quantity-generating-input-container input.qtyplus {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--color-primary);
  border: none;
  cursor: pointer;
  line-height: 1;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 0.375rem;
}
.quantity-generating-input-container input.qty {
  width: 100%;
  max-width: 5rem;
  color: var(--color-dark);
  pointer-events: none;
  text-align: center;
  border: 0;
  font-weight: 700;
  font-size: 1.125rem;
}
.quantity-generating-input-container.quantity-generating-input-container--sm {
  padding: 0.5rem 1rem;
}
.quantity-generating-input-container.quantity-generating-input-container--sm
  input.qtyminus,
.quantity-generating-input-container.quantity-generating-input-container--sm
  input.qtyplus {
  width: 1.25rem;
  height: 1.25rem;
}

/* ---- 4.11 - Price Range Filter ---- */
.price-input {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.5em;
  margin-bottom: 0;
}
.price-input .field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 2.75rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.field input {
  -moz-appearance: textfield;
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 1rem;
  margin-left: 0.75rem;
  border-radius: 0.375rem;
  text-align: center;
  border: 1px solid var(--color-border);
  height: 2rem;
}
.price-input input[type="number"]::-webkit-outer-spin-button,
.price-input input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.price-input .separator {
  width: 8.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.slider {
  height: 0.3125rem;
  position: relative;
  background-color: #ddd;
  border-radius: 0.375rem;
}
.slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 0.375rem;
  background-color: var(--color-primary);
}
.range-input {
  position: relative;
}
.range-input input {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  width: 100%;
  height: 0.3125rem;
  top: -0.3125rem;
  background-color: transparent;
  pointer-events: none;
}
input[type="range"]::-webkit-slider-thumb {
  height: 1.0625rem;
  width: 1.0625rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  -webkit-box-shadow: var(--shadow-base);
  box-shadow: var(--shadow-base);
}

input[type="range"]::-moz-range-thumb {
  height: 1.0625rem;
  width: 1.0625rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  pointer-events: auto;
  -moz-appearance: none;
  appearance: none;
  box-shadow: var(--shadow-base);
}

/* ---- 4.12 - Accordion ---- */
.accordion-container {
  position: relative;
  height: auto;
}
.accordion-container .set {
  position: relative;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--color-border);
}
.accordion-container .set > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 0 1rem 2rem;
  text-decoration: none;
  color: var(--color-dark);
  background-color: transparent;
  font-weight: 600;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 1.125rem;
  position: relative;
}
.accordion-container .set > a i {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.accordion-container .set > a::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--color-secondary);
}
.accordion-container .set .content {
  padding: 1rem 0 1.5rem 2rem;
  display: none;
}
.accordion-container .set:not(:last-child) {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .set > a {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .accordion-container .set > a {
    padding: 1rem 0 1rem 2rem;
  }
  .accordion-container .content {
    padding: 1rem 0 1.5rem 2.75rem;
  }
}

/* ---- 4.13 - Custom Tab ---- */
.custom-tab .custom-tab__buttons {
  column-gap: 0.75rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
}
.custom-tab .custom-tab__buttons li button {
  background-color: transparent;
  border: 0;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background: linear-gradient(to bottom, #460c4c, #82198d);
  color: #fff;
}
.custom-tab .custom-tab__buttons li button:hover {
  background: linear-gradient(to bottom, #82198d, #460c4c);
}
.custom-tab .custom-tab__buttons li button.active {
  background: linear-gradient(to bottom, #a16e00, #be9d55);
}
.custom-tab .custom-tab__content .custom-tab__pane {
  display: none;
  transform: none;
  animation: fade-left 0.3s ease-in-out;
}
.custom-tab .custom-tab__content .custom-tab__pane.custom-tab__pane--active {
  display: block;
}
@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .custom-tab .custom-tab__buttons {
    overflow-x: visible;
  }
}
/* ---- 5. Section wise common styles ---- */
section {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 992px) {
  section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1200px) {
  section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* ---- 6. Vendor Overriding ---- */
.offcanvas {
  max-width: 22.5rem;
}
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 0;
  font-size: 1.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.owl-carousel.has-nav-vertical-middle .owl-nav button.owl-prev {
  position: absolute;
  top: calc(50% - 2rem);
  left: 0;
}
.owl-carousel.has-nav-vertical-middle .owl-nav button.owl-next {
  position: absolute;
  top: calc(50% - 2rem);
  right: 0;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  bottom: 0.75rem;
  width: 100%;
}
.owl-theme .owl-dots .owl-dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.owl-theme .owl-dots .owl-dot:not(:last-child) {
  margin-right: 0.625rem;
}
.owl-theme .owl-dots .owl-dot span {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  margin: 0;
}
.owl-theme .owl-dots .owl-dot.active {
  border: 1px solid var(--color-primary);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--color-primaryShade);
}
.owl-carousel.has-stage-outer-pb .owl-stage-outer {
  padding-bottom: 3.5rem;
}
.owl-carousel.has-default-nav-style .owl-nav button.owl-next,
.owl-carousel.has-default-nav-style .owl-nav button.owl-prev,
.owl-carousel.has-default-nav-style .owl-nav button.owl-next:hover,
.owl-carousel.has-default-nav-style .owl-nav button.owl-prev:hover {
  background-color: transparent;
  color: var(--color-primary);
}
strong {
  font-weight: 900;
}
b {
  font-weight: 700;
}
.modal-content {
  border-radius: 0;
  border: 0;
}
.dropdown-menu {
  border: 1px solid var(--color-border);
}
.dropdown-menu li .dropdown-item:hover {
  background-color: var(--color-light);
  color: var(--color-primary);
}

.container {
  max-width: 1496px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

@media (min-width: 992px) {
  .owl-carousel.has-stage-outer-pb .owl-stage-outer {
    padding-bottom: 4rem;
  }
}
@media (min-width: 1700px) {
  .owl-carousel.has-stage-outer-pb .owl-stage-outer {
    padding-bottom: 4.25rem;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .container {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }
}

/* ---- 7. Layouts ---- */
/* ---- 7.1 Header ---- */
.site-header {
  z-index: 1040;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 0;
}
.site-header .site-header__top,
.site-header .site-header__bottom {
  padding: 0.75rem 0;
}
.site-header .site-header__top p {
  font-size: 0.75rem;
}
.site-header,
.site-header .site-header__logo img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.site-header .site-header__logo img {
  max-width: 9rem;
}
.site-header .site-header__button--nav-toggler {
  font-size: 1.375rem;
  background-color: var(--color-primaryShade);
  padding: 0.25rem 0.75rem;
  border: 0;
  color: #fff;
}
.site-header .offcanvas {
  max-width: 22.5rem;
}
.site-header .offcanvas .site-header__btn--account::after {
  color: #fff;
}
.site-header .site-header__nav ul li {
  position: relative;
}
.site-header .site-header__nav ul li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.site-header .site-header__nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 1.25rem;
  text-transform: uppercase;
  color: var(--color-lightText);
  font-weight: 500;
}
.site-header .site-header__nav ul li a i {
  padding: 0.25rem;
  display: inline-block;
}
.site-header .site-header__nav ul li a span.dropdown-button {
  padding: 0.125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 24px;
  height: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.site-header .site-header__nav ul li:hover a,
.site-header .site-header__nav ul li.active a,
.site-header .site-header__nav ul li.current-menu-item a {
  color: var(--color-secondary);
}
.site-header .site-header__nav ul li ul {
  display: none;
  padding-left: 1rem;
}
.site-header .site-header__nav ul li:hover ul {
  display: block;
}
.site-header .site-header__nav ul li ul li a {
  font-size: 90%;
}
.site-header .site-header__nav ul li:hover ul li a {
  color: var(--color-lightText);
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background-color: #330738;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.site-header.site-header--shrinked::before {
  visibility: visible;
  opacity: 1;
  height: 50%;
}
.site-header.site-header--shrinked .wrapper {
  -webkit-box-shadow: var(--shadow-base);
  box-shadow: var(--shadow-base);
}

.site-header .site-header__link--login {
  margin-right: 0.3125rem;
}
.site-header .site-header__button--notification {
  background-color: transparent;
  border: 0;
  font-size: 1.25rem;
  color: #fff;
  margin-right: 0.5rem;
  position: relative;
  padding: 0.5rem;
}
.site-header .site-header__button--notification::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-secondary);
  visibility: hidden;
}
.site-header .site-header__button--notification.active::before {
  visibility: visible;
}
.site-header .dropdown-menu--notification-box {
  width: 13.75rem;
  max-height: 15rem;
  overflow-y: scroll;
  border-radius: 0;
}
.site-header .dropdown-menu--notification-box li a {
  white-space: normal;
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 0.625rem 0.75rem;
}
.site-header .dropdown-menu--notification-box li a small {
  color: var(--color-primaryShade);
  font-weight: 400;
  margin-top: 0.25rem;
}

.site-header .site-header__link--cart {
  color: #fff;
  font-size: 1.25rem;
  margin-right: 1.75rem;
  position: relative;
}
.site-header .site-header__link--cart .count {
  font-size: 0.75rem;
  background-color: var(--color-secondary);
  color: #fff;
  display: inline-grid;
  place-items: center;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  position: absolute;
  top: -0.25rem;
  right: -0.5rem;
  line-height: 1;
}

@media (min-width: 576px) {
  .site-header .site-header__middle .site-header__logo img {
    max-width: 64%;
  }
  .site-header .site-header__button--notification {
    margin-right: 1.25rem;
  }
  .site-header .site-header__logo img {
    max-width: 10rem;
  }
}
@media (min-width: 768px) {
  .site-header .site-header__top p {
    font-size: 0.875rem;
  }
  .site-header .site-header__nav ul li a {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .site-header {
    padding: 1rem 0;
  }
  .site-header .site-header__logo img {
    max-width: 75%;
  }
}
@media (min-width: 1200px) {
  .site-header .site-header__logo img {
    max-width: 80%;
  }
  .site-header .site-header__nav {
    padding-right: 2rem;
  }
  .site-header .site-header__nav ul {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .site-header .site-header__nav ul li:not(:last-child) {
    margin-bottom: 0;
    border-bottom: 0;
    margin-right: 2rem;
  }
  .site-header .site-header__nav ul li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: var(--color-secondary);
    display: none;
  }
  .site-header .site-header__nav ul li.active::before,
  .site-header .site-header__nav ul li.current-menu-item::before {
    display: block;
  }
  .site-header .site-header__nav ul li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    white-space: nowrap;
    color: #fff;
    padding: 2rem 0;
    font-size: 0.875rem;
  }
  .site-header .site-header__nav ul li:hover > a,
  .site-header .site-header__nav ul li.active a,
  .site-header .site-header__nav ul li.current-menu-item a {
    color: var(--color-secondary);
  }
  .site-header .site-header__nav ul li ul {
    display: block;
    -webkit-box-shadow: var(--shadow-base);
    box-shadow: var(--shadow-base);
    min-width: 12rem;
    position: absolute;
    top: 3.25rem;
    left: 0;
    background-color: var(--bg-color-body);
    -webkit-transition: opacity 0.3s ease-in-out,
      -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out,
      -webkit-transform 0.3s ease-in-out;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
  }
  .site-header .site-header__nav ul li ul li {
    margin-right: 0 !important;
    text-align: left;
  }
  .site-header .site-header__nav ul li ul li::before,
  .site-header .site-header__nav ul li ul li.active::before,
  .site-header .site-header__nav ul li ul li.current::before {
    display: none;
  }
  .site-header .site-header__nav ul li ul li a {
    font-size: 96%;
    padding: 0.625rem 0.875rem;
    display: block;
  }
  .site-header .site-header__nav ul li ul li a,
  .site-header .site-header__nav ul li:hover ul li a {
    color: var(--color-dark);
  }
  .site-header .site-header__nav ul li ul li:hover > a,
  .site-header .site-header__nav ul li ul li.active > a,
  .site-header .site-header__nav ul li ul li.current > a {
    color: var(--color-primary);
  }
  .site-header .site-header__nav ul li:hover ul {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
  }
  .site-header .site-header__nav ul li .mega-menu {
    position: fixed;
    left: 2.5rem;
    right: 2.5rem;
    min-height: 20rem;
    background-color: #2b0530;
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .site-header .site-header__nav ul li:hover .mega-menu {
    visibility: visible;
    opacity: 1;
  }
  .site-header .site-header__nav ul li .mega-menu ul {
    opacity: 1;
  }
  .site-header .site-header__nav ul li .mega-menu .nav-tabs {
    padding: 0.75rem 1rem;
    background-color: var(--color-dark);
    box-shadow: none;
    position: relative;
    top: auto;
    border-bottom: 0;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .nav-tabs
    .nav-item
    .nav-link {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 3.75rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    padding: 0.625rem 1.5rem;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .nav-tabs
    .nav-item
    .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .nav-tabs
    .nav-item
    .nav-link.active {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
  }
  .site-header .site-header__nav ul li .mega-menu .tab-content .tab-pane {
    padding: 1.25rem 1rem;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .tab-content
    .tab-pane
    .block {
    display: block;
    padding: 0.75rem;
    text-transform: none;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .tab-content
    .tab-pane
    .block:hover {
    background-color: var(--color-dark);
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .tab-content
    .tab-pane
    .block
    img {
    margin-bottom: 1.5rem;
    max-width: 3rem;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .tab-content
    .tab-pane
    .block
    .block__level {
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    border-radius: 3.75rem;
    background-color: #016e01;
    color: #fff;
    line-height: 1;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .tab-content
    .tab-pane
    .block.block--mid-tier
    .block__level {
    background-color: #d39118;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .tab-content
    .tab-pane
    .block.block--high-tier
    .block__level {
    background-color: #218be2;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .tab-content
    .tab-pane
    .block
    h6 {
    font-size: 1rem;
    text-transform: none;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .tab-content
    .tab-pane
    .block
    p {
    font-size: 0.875rem;
    text-transform: none;
    white-space: normal;
    color: rgba(255, 255, 255, 0.75);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .tab-content
    .tab-pane
    .block:hover
    p {
    color: rgba(255, 255, 255, 0.75);
  }
  .site-header .site-header__nav ul li .mega-menu .trial-block h6 {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
  .site-header .site-header__nav ul li .mega-menu .trial-block h6 span {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    background-color: var(--color-primaryShade);
    margin-left: 0.5rem;
    border-radius: 0;
    position: absolute;
  }
  .site-header .site-header__nav ul li .mega-menu .trial-block ul {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 0.5rem;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .trial-block
    ul
    li:not(:last-child) {
    margin-bottom: 0.625rem;
  }
  .site-header .site-header__nav ul li .mega-menu .trial-block ul li {
    color: var(--color-lightText);
    position: relative;
    padding-left: 1.5rem;
    display: block;
    font-size: 0.875rem;
  }
  .site-header .site-header__nav ul li .mega-menu .trial-block ul li::before {
    font-family: "Font Awesome 6 Free";
    content: "\f02d";
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    color: var(--color-secondary);
    background-color: transparent;
    position: absolute;
    top: 0.125rem;
  }
  .site-header .site-header__nav ul li .mega-menu .trial-block a {
    font-size: 0.875rem;
    text-decoration: underline;
    text-underline-offset: 0.375rem;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .trial-block:nth-child(1)
    h6
    span.badge {
    background-color: #10b63a;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .trial-block:nth-child(2)
    h6
    span.badge {
    background-color: #c76d05;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .trial-block:nth-child(3)
    h6
    span.badge {
    background-color: #42b90b;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .trial-block:nth-child(4)
    h6
    span.badge {
    background-color: #1796c9;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .trial-block:nth-child(5)
    h6
    span.badge {
    background-color: #cb37df;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .trial-block:nth-child(6)
    h6
    span.badge {
    background-color: #37a2df;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .trial-block:nth-child(1)
    ul
    li::before {
    color: #0c8369;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .trial-block:nth-child(2)
    ul
    li::before {
    color: #3047ad;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .trial-block:nth-child(3)
    ul
    li::before {
    color: #aa662f;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .trial-block:nth-child(4)
    ul
    li::before {
    color: #91ac32;
  }
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .trial-block:nth-child(5)
    ul
    li::before {
    color: #2f73b3;
  }
  .site-header .site-header__nav ul li .mega-menu .lg-heading {
    border-left: 4px solid var(--color-secondary);
    padding-left: 1.0625rem;
  }
  .site-header.site-header--shrinked .site-header__logo img {
    max-width: 70%;
  }
  .site-header .site-header__button--notification {
    margin-right: 1.25rem;
  }
}
@media (min-width: 1400px) {
  .site-header .site-header__nav {
    padding-left: 4rem;
  }
  .site-header .site-header__nav ul li a {
    font-size: 1rem;
  }
  /*   .site-header .site-header__nav ul li .mega-menu {
    max-width: 81rem;
  } */
  .site-header .site-header__nav ul li .mega-menu .trial-block ul li {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1700px) {
  .site-header .site-header__logo img {
    max-width: 100%;
  }
  .site-header .site-header__nav {
    padding-right: 2.5rem;
  }
  .site-header .site-header__nav ul li:not(:last-child) {
    margin-right: 2.5rem;
  }
  /*   .site-header .site-header__nav ul li .mega-menu {
    max-width: 88.5rem;
  } */
  .site-header
    .site-header__nav
    ul
    li
    .mega-menu
    .tab-content
    .tab-pane
    .block
    h6 {
    font-size: 1.125rem;
  }
  .site-header .site-header__nav ul li .mega-menu .trial-block ul li {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .site-header .site-header__link--login,
  .site-header .site-header__link--signup {
    padding: 0.75rem;
    font-size: 0.875rem;
  }

  .site-header .dropdown-menu--notification-box {
    position: absolute !important;
    right: -7.5rem !important;
  }
}

/* ---- 7.2 Footer ---- */
.site-footer .site-footer__top {
  padding: 4rem 0;
}
.site-footer .site-footer__top .site-footer__logo img {
  max-width: 10rem;
}
.site-footer .site-footer__top .newsletter-form {
  margin: 1.875rem auto 0 0;
  max-width: 28.125rem;
}
.site-footer .site-footer__top .newsletter-form .form__input {
  min-height: 3.5rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--color-border);
  background-color: transparent;
  color: #fff;
}
.site-footer .site-footer__top .newsletter-form .form__input:focus {
  border: 1px solid var(--color-primary);
}
.site-footer
  .site-footer__top
  .newsletter-form
  .form__input::-webkit-input-placeholder {
  color: var(--color-lightText);
}
.site-footer .site-footer__top .newsletter-form .form__input::-moz-placeholder {
  color: var(--color-lightText);
}
.site-footer
  .site-footer__top
  .newsletter-form
  .form__input:-ms-input-placeholder {
  color: var(--color-lightText);
}
.site-footer
  .site-footer__top
  .newsletter-form
  .form__input::-ms-input-placeholder {
  color: var(--color-lightText);
}
.site-footer .site-footer__top .newsletter-form .form__input::placeholder {
  color: var(--color-lightText);
}

.site-footer .site-footer__top .newsletter-form button[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  display: inline-block;
  text-align: center;
  height: 3.5rem;
  padding: 0.875rem 1.5rem;
  border: 0;
}
.site-footer .site-footer__top .site-footer__nav ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.site-footer .site-footer__top .site-footer__nav ul li a {
  color: var(--color-lightText);
  display: inline-block;
  text-transform: capitalize;
  font-weight: 500;
  transition: padding-left 0.6s ease-in-out;
}
.site-footer .site-footer__top .site-footer__nav ul li a:hover {
  color: var(--color-secondary);
  padding-left: 0.5rem;
}
.site-footer .site-footer__top .contact-list li:not(:last-child) {
  margin-bottom: 1.5rem;
}

.site-footer__bottom {
  background-color: #0e020f;
  padding: 1.25rem 0;
}
.site-footer .site-footer__bottom .bottom-menu li {
  display: inline-flex;
}
.site-footer .site-footer__bottom .bottom-menu li:not(:last-child) {
  margin-right: 1.5rem;
}
.site-footer .site-footer__bottom .bottom-menu li a {
  color: #fff;
  text-transform: capitalize;
}
.site-footer .site-footer__bottom .bottom-menu li a:hover {
  color: var(--color-secondary);
}

.site-footer .modal--get-a-quote .form-wrapper {
  padding: 3.5rem 1.25rem 1.875rem;
}
.site-footer .modal--get-a-quote .form-wrapper .btn-close {
  top: 1rem;
  right: 1rem;
}
.site-footer .modal--get-a-quote .form-wrapper .content-box h3 {
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
  .site-footer .site-footer__top .newsletter-form {
    margin-top: 1.875rem;
  }
}
@media (min-width: 992px) {
  .site-footer .site-footer__top {
    padding: 4.5rem 0;
  }
  .site-footer .site-footer__top .site-footer__nav ul li:not(:last-child) {
    margin-bottom: 1rem;
  }
  .site-footer .site-footer__top .site-footer__nav ul li a {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .site-footer .site-footer__top {
    padding: 5rem 0;
  }
  .site-footer .site-footer__top .site-footer__logo img {
    max-width: 64%;
  }
  .site-footer .modal--get-a-quote .form-wrapper {
    padding: 3.5rem 2rem 1.875rem;
  }
  .site-footer .site-footer__top .contact-list li:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1500px) {
  .site-header .site-header__nav ul li .mega-menu {
    left: 50%;
    right: auto;
    min-height: 20rem;
    transform: translate(-50%, 0);
    width: 1416px;
  }
}
@media (min-width: 1700px) {
  .site-footer .site-footer__top {
    padding: 5.625rem 0;
  }
  .site-footer .site-footer__top .site-footer__logo img {
    max-width: 100%;
  }
  .site-footer .site-footer__top .newsletter-form .form__input {
    min-height: 3.75rem;
  }
  .site-footer .site-footer__top .newsletter-form button[type="submit"] {
    height: 3.75rem;
  }
  .site-footer .site-footer__top .contact-list li:not(:last-child) {
    margin-bottom: 2.25rem;
  }
  .site-footer .site-footer__bottom ul {
    margin-left: -1rem;
  }
  .site-footer .modal--get-a-quote .form-wrapper {
    padding: 4.5rem 2.5rem 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .site-footer .site-footer__bottom ul:not(.social-icons) li a {
    font-size: 0.875rem;
  }
}

/* ---- 8. Pages ---- */
/* ---- 8.1 Home ---- */
.hero-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero-section .content-box h4 {
  color: var(--color-primaryShade);
  margin-bottom: 0.5rem;
}
.hero-section .content-box h1 {
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.hero-section .content-box h6 {
  font-weight: 500;
}
.hero-section .notification-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background-color: #fdebff;
}

.exam-prev-section .owl-carousel .item {
  padding-right: 0.125rem;
  padding-left: 0.125rem;
}
/* .exam-prev-section .form {
  max-width: 30rem;
} */

.home-about-section .img-container {
  margin: 2.5rem 0;
}
.home-about-section .content-box h2 {
  font-weight: 500;
}
.home-about-section .content-box h2 strong {
  color: var(--color-primaryShade);
}
.home-about-section .content-box .content-wrapper {
  display: none;
}

.why-choose-us-section .wrapper .lg-heading {
  font-weight: 900;
  font-size: 5rem;
}
.why-choose-us-section .box-list li:not(:last-child) {
  margin-bottom: 2rem;
}
.why-choose-us-section .box h5 {
  font-weight: 400;
}

.testimonial-section .subheading {
  background-color: #e4c7e7;
}
.testimonial-section .item-container {
  position: sticky;
  top: 6rem;
}

.testimonial-section .testimonial-item {
  padding: 2.5rem 1.25rem;
}

.testimonial-section .testimonial-item .testimonial-item__header,
.testimonial-section .testimonial-item .testimonial-item__body .content-box {
  margin-bottom: 1.5rem;
}
.testimonial-section .testimonial-item .testimonial-item__thumbnail {
  width: 5rem;
  height: 5rem;
}
.testimonial-section
  .testimonial-item
  .testimonial-item__header
  .testimonial-item__rating {
  color: rgb(223, 137, 8);
  font-size: 1.25rem;
}
.testimonial-section
  .testimonial-item
  .testimonial-item__header
  .reviews
  i:not(:last-child) {
  margin-right: 0.5rem;
}
.testimonial-section .owl-carousel .item {
  padding-bottom: 3.75rem;
}
.testimonial-section .owl-carousel .owl-nav {
  display: none;
}
.testimonial-section .item-container:not(:last-child) {
  margin-bottom: 1.5rem;
}

.testimonial-section .cta-box {
  margin-top: 2rem;
}

.cta-section .wrapper {
  background-image: url(../images/cta-section-bg.jpg);
  position: relative;
  padding: 2.5rem 1.25rem;
  background-blend-mode: multiply;
}
.cta-section .wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(69, 12, 75, 1),
    rgba(69, 12, 75, 0.9),
    rgba(69, 12, 75, 0.5),
    rgba(69, 12, 75, 0.3)
  );
}
.cta-section .wrapper .content-box h2 {
  margin-bottom: 1.5rem;
}
.cta-section .wrapper .cta-box {
  margin-top: 1.875rem;
}
.cta-section .wrapper .icon-list li {
  position: relative;
}
.cta-section .wrapper .icon-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  transform: rotate(45deg);
  background-color: var(--color-secondary);
  display: inline-block;
  margin-right: 1rem;
}

.how-it-works-section .step-block {
  border: 1px dashed var(--color-border);
  padding: 1.875rem 1.25rem;
  transition: all 0.3s ease-in-out;
}
.how-it-works-section .step-block:hover {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  transform: translateY(-0.5rem);
}
.how-it-works-section .step-block:hover .content-box h4,
.how-it-works-section .step-block:hover .content-box p,
.how-it-works-section .step-block:hover figure img {
  transition: all 0.3s ease-in-out;
}
.how-it-works-section .step-block:hover figure img {
  filter: brightness(0) invert(1);
}
.how-it-works-section .step-block:hover .content-box h4,
.how-it-works-section .step-block:hover .content-box p {
  color: #fff;
}
.how-it-works-section .step-block .content-box h4 {
  margin-bottom: 0.75rem;
}

.benefit-section .nav-tabs {
  border-bottom: 0;
  position: relative;
}
.benefit-section .nav-tabs::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-border);
}
.benefit-section .nav-tabs .nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primary);
  background-color: var(--color-light);
  border: 0;
  border-radius: 0;
  padding: 0.625rem 1.25rem;
}
.benefit-section .nav-tabs .nav-item .nav-link.active {
  background-color: var(--color-primary);
  color: #fff;
}
.benefit-section .tab-content .tab-pane {
  padding: 1.875rem 0 0 0;
}
.benefit-section .tab-content .tab-pane .content-box ul {
  list-style: none;
}
.benefit-section .tab-content .tab-pane .content-box ul li {
  padding-left: 1.25rem;
  font-size: 1.0625rem;
}
.benefit-section .tab-content .tab-pane .content-box ul li::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0.625rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-secondaryShade);
}
.benefit-section .img-list {
  position: relative;
  overflow: hidden;
  aspect-ratio: 50/33;
}
.benefit-section .img-list li,
.benefit-section .img-list li img {
  width: 100%;
  height: 100%;
}
.benefit-section .img-list li img {
  object-fit: cover;
}
.benefit-section .img-list li {
  position: absolute;
  top: 0;
  right: -100%;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
.benefit-section .img-list li.active {
  right: 0;
  opacity: 1;
}
.benefit-section .grid-row > *:first-child {
  order: 1;
}

.blog-section .owl-carousel .item {
  padding-right: 0.875rem;
  padding-left: 0.875rem;
  padding-bottom: 1rem;
}

@media (min-width: 576px) {
  .cta-section .wrapper {
    padding: 2.5rem 2rem;
  }
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
  .hero-section {
    min-height: 40rem;
  }

  .exam-prev-section .content-box {
    padding-right: 8.33%;
    padding-left: 8.33%;
  }

  .home-about-section .img-container {
    margin: 3.125rem 0 0 0;
  }

  .why-choose-us-section .wrapper {
    position: sticky;
    top: 8rem;
  }
  .why-choose-us-section .list-col {
    padding-left: 5rem;
  }
  .why-choose-us-section .box-list li:not(:last-child) {
    margin-bottom: 7rem;
  }

  .cta-section .wrapper {
    padding: 2.5rem;
  }

  .benefit-section .tab-content .tab-pane .content-box ul li {
    font-size: 1.125rem;
  }

  .testimonial-section .section__header {
    padding-bottom: 3rem;
    position: sticky;
    top: 6rem;
    z-index: 10;
    padding-top: 2rem;
  }
  .testimonial-section .item-container {
    position: relative;
    top: auto;
  }

  .testimonial-section .testimonial-item {
    padding: 2.5rem 1.5rem;
    position: sticky;
    top: 18rem;
  }
  .testimonial-section .item-container:nth-child(2) .testimonial-item {
    margin-top: 60rem;
  }
  .testimonial-section .item-container:nth-child(3) .testimonial-item {
    margin-top: 120rem;
  }
  .testimonial-section .item-container:not(:last-child) {
    margin-bottom: 0;
  }

  .testimonial-section .cta-box {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .hero-section {
    min-height: 48rem;
  }

  .exam-prev-section .content-box {
    padding-right: 0;
    padding-left: 0;
  }

  .stat-section .stat-block h4 {
    font-size: 1.25rem;
  }

  .cta-section .content-box h2 {
    font-size: 2.75rem;
  }
  .cta-section .cta-box {
    margin-top: 2.5rem;
  }
  .cta-section .col-img {
    position: absolute;
    max-width: 34rem;
    bottom: 20%;
    left: 8%;
  }

  .benefit-section .grid-row > *:first-child {
    order: unset;
  }
}

@media (min-width: 1400px) {
  .testimonial-section .row {
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }
  .testimonial-section .row .item-container {
    padding-right: 0.875rem;
    padding-left: 0.875rem;
  }

  .cta-section .col-img {
    max-width: 40rem;
    bottom: 16%;
    left: 5%;
  }

  .how-it-works-section .step-block .content-box h4 {
    font-size: 1.375rem;
    min-height: 3.875rem;
  }

  .testimonial-section .cta-box {
    margin-top: 3.5rem;
  }
}

@media (min-width: 1700px) {
  .hero-section {
    min-height: 56.5rem;
  }

  .testimonial-section .row {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .testimonial-section .row .item-container {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .cta-section .content-box h2 {
    font-size: 3rem;
  }
  .cta-section .cta-box {
    margin-top: 3rem;
  }
  .cta-section .col-img {
    max-width: 50rem;
    bottom: 12%;
    left: 7%;
  }

  .how-it-works-section .step-block .content-box h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section .content-box h1 {
    font-size: 2rem;
  }

  .cta-section .content-box h4 {
    font-size: 1.125rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section .cta-box .button {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }

  .why-choose-us-section .box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .why-choose-us-section .box h5 {
    font-size: 1rem;
  }
}

/* ---- 8.2 About Us Page ---- */
.about-detailed-section .container > .content-box {
  padding: 1.875rem 1.5rem;
  border-left: 4px solid var(--color-primary);
}
.about-detailed-section .container > .content-box h3 {
  line-height: 1.5;
}

.story-section {
  background: #fef1ff url(../images/vision-target-img.png) no-repeat bottom left;
  background-size: 40%;
}
.story-section .content-block {
  padding: 2.5rem 1.5rem;
  border-top: 4px solid var(--color-primary);
}

@media (min-width: 576px) {
  .about-section .content-box {
    padding: 0 1.875rem 2.5rem;
  }

  .story-section .wrapper .content-box {
    padding: 2.5rem 1.875rem;
  }
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
  .about-section .content-box {
    border-width: 3px 3px 3px 0;
    margin-top: 2.75rem;
  }
  .about-section .content-box h2 {
    padding: 1.5rem 3rem;
    margin-bottom: 2.5rem;
    margin-left: -4.375rem;
  }

  .story-section {
    padding: 5.625rem 0;
  }
  .story-section .wrapper {
    padding: 1rem;
  }
  .story-section .wrapper .content-box {
    padding: 3.125rem 2rem 3.125rem;
  }
  .story-section .grid-row {
    padding-left: 33.3%;
  }
}
@media (min-width: 1200px) {
  .story-section {
    padding: 6.25rem 0;
  }
  .story-section .wrapper .content-box h2 {
    margin-bottom: 2.75rem;
  }
}
@media (min-width: 1400px) {
  .about-section .content-box {
    padding: 0 2.5rem 4rem;
  }
  .about-section .content-box h2 {
    padding: 1.75rem 3.5rem;
    margin-bottom: 3rem;
  }

  .story-section .wrapper {
    padding: 1rem 0 1rem 1rem;
  }
  .story-section .wrapper .content-box {
    border-width: 1px 0 1px 1px;
  }
}
@media (min-width: 1700px) {
  .about-section .content-box {
    padding: 0 2.75rem 4.75rem;
  }
  .about-section .content-box h2 {
    padding: 2.125rem 5rem;
    margin-bottom: 3.5rem;
    margin-top: -3.75rem;
    margin-left: -5.25rem;
  }

  .story-section {
    padding: 7.25rem 0;
  }
  .story-section .wrapper .content-box {
    padding: 3.125rem 3rem 3.125rem 4.5rem;
  }
  .story-section .wrapper .content-box h2 {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 991.98px) {
  .about-detailed-section .container > .content-box h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .about-detailed-section .container > .content-box h3 {
    font-size: 1.25rem;
  }
  .about-section .content-box p,
  .about-section .content-box ul {
    font-size: 0.9375rem;
  }
}

/* ---- 8.3 Contact Us Page ---- */
.get-in-touch-section .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 75%;
  width: 100%;
  background-color: var(--color-primary);
}
.get-in-touch-section .contact__top {
  padding: 3.75rem 0;
}
.get-in-touch-section .form-col {
  padding: 2.5rem 1.125rem;
}
.get-in-touch-section .map-container {
  height: 20rem;
}
.get-in-touch-section .get-in-touch__info {
  padding: 1.75rem 1.125rem;
}
.get-in-touch-section .get-in-touch__info a {
  font-size: 1.125rem;
}
.get-in-touch-section .contact__top .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  border-radius: 50%;
  width: 4.25rem;
  height: 4.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 576px) {
  .get-in-touch-section .form-col {
    padding: 3.25rem 1.875rem;
  }
}

@media (min-width: 992px) {
  .get-in-touch-section .map-container {
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .get-in-touch-section .form-col {
    padding: 3.25rem 2.5rem;
  }
}
@media (min-width: 1200px) {
  .get-in-touch-section .get-in-touch__info a {
    font-size: 1.375rem;
  }
}
@media (min-width: 1400px) {
  .get-in-touch-section .contact__top .icon {
    width: 5.25rem;
    height: 5.25rem;
    font-size: 2.5rem;
  }
}
@media (max-width: 991.98px) {
  .get-in-touch-section h5 {
    font-size: 1.125rem;
  }
}

/* ---- 8.4 Blog Single Page ---- */
.blog-single-section .post-wrapper .post__author {
  width: 2.5rem;
  height: 2.5rem;
}
.blog-single-section .post-related-wrapper .block {
  margin-bottom: 2rem;
}

.blog-single-section
  .post-related-wrapper
  .block
  ul
  li
  .blog-sm-item
  .blog-sm-item__thumbnail {
  width: 6rem;
  height: 6rem;
}
.blog-single-section
  .post-related-wrapper
  .block
  ul
  li
  .blog-sm-item
  .blog-sm-item__date {
  line-height: 1;
  font-size: 0.75rem;
  padding: 0.5rem 0.625rem;
}
.blog-single-section
  .post-related-wrapper
  .block
  ul
  li
  .blog-sm-item
  .blog-sm-item__exercpt {
  font-size: 0.875rem;
}
.blog-single-section .post-related-wrapper .block h5 span {
  padding-right: 1.25rem;
  position: relative;
  background-color: var(--bg-color-body);
  font-weight: 700;
}
.blog-single-section .post-related-wrapper .block h5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 1px;
}
.blog-single-section .sidebar-col {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.blog-single-section .post-wrapper .post__content {
  margin: 2.5rem 0;
}
.blog-single-section
  .post-wrapper
  .post__content.content-box
  > p:first-child:first-letter {
  font-size: 3.125rem;
  line-height: 1;
}
.blog-single-section .post-wrapper .social-icons li:not(:last-child) {
  margin-right: 1rem;
}
.blog-single-section .post-wrapper .social-icons li a {
  font-size: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-primary);
  background-color: var(--color-light);
  border-radius: 0.3125rem;
  font-size: 1.125rem;
}
.blog-single-section .post-wrapper .social-icons li a:hover {
  background-color: var(--color-primary);
  color: #fff;
}
@media (min-width: 992px) {
  .blog-single-section .post-related-wrapper {
    position: sticky;
    top: 9rem;
  }
  .blog-single-section .sidebar-col {
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
  }
}
@media (min-width: 1200px) {
  .blog-single-section .post-related-wrapper {
    position: sticky;
    top: 10rem;
  }
}
@media (min-width: 1700px) {
  .blog-single-section .post-related-wrapper {
    position: sticky;
    top: 11.5rem;
  }
}
@media (max-width: 991.98px) {
  .blog-single-section .post-related-wrapper .block ul li .blog-sm-item a {
    font-size: 0.9375rem;
  }
  .post-wrapper .post-wrapper__cta a {
    font-size: 0.875rem;
  }
}

/* ---- 8.5 Blog Archive Page ---- */
.blog-archive-section aside .block:not(:last-child) {
  margin-bottom: 1.875rem;
}
.blog-archive-section aside .block {
  padding: 1.5rem 1.25rem;
}
.blog-archive-section aside .block h4 {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.blog-archive-section aside .block.block--categories ul li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.blog-archive-section aside .block.block--categories input,
.blog-archive-section aside .block.block--categories label {
  display: inline-block;
}
.blog-archive-section aside .block.block--categories input {
  margin-right: 1rem;
  width: 1.125rem;
  height: 1.125rem;
}
.blog-archive-section aside .block.block--categories input {
  accent-color: var(--color-primaryShade);
}
.blog-archive-section aside .block.block--tags ul li {
  position: relative;
}
.blog-archive-section aside .block.block--tags input {
  visibility: hidden;
  position: absolute;
}
.blog-archive-section aside .block.block--tags label {
  padding: 0.25rem 0.825rem;
  border-radius: 3.75rem;
  background-color: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  font-size: 0.9375rem;
  cursor: pointer;
}
.blog-archive-section aside .block.block--tags input:checked ~ label {
  background-color: var(--color-primaryShade);
  color: #fff;
  border: 1px solid var(--color-primaryShade);
}
@media (min-width: 576px) {
  .blog-archive-section aside .block {
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .blog-archive-section aside {
    position: sticky;
    top: 9rem;
  }
}
@media (min-width: 1700px) {
  .blog-archive-section .blog-card .blog-card__title {
    font-size: 1.25rem;
  }
  .blog-archive-section .blog-card .blog-card__excerpt {
    font-size: 1rem;
  }
  .blog-card .blog-card__body .blog-card__title,
  .blog-card .blog-card__body .blog-card__excerpt {
    margin-bottom: 1rem;
  }
}

/* ---- 8.6 Product Single Page ---- */
.product-single-section .info-wrapper:not(:last-child) {
  margin-bottom: 1.875rem;
}
.product-single-section .product-single__pricing,
.product-single-section .product-single__short-desc {
  padding: 1rem 0;
  border: 1px solid var(--color-border);
  border-width: 1px 0 1px;
}
.product-single-section .product-single__pricing .product-single__sale-price {
  color: var(--color-primaryShade);
  line-height: 1;
}
.product-single-section
  .product-single__pricing
  .product-single__regular-price {
  color: #a2a2a2;
  line-height: 1.2;
}
.product-single-section .product-single__highlights .content-box ul {
  margin: 0;
  list-style: none;
}
.product-single-section .product-single__highlights .content-box ul li::before {
  content: "-";
  font-weight: 600;
  margin-right: 1rem;
}
.product-single-section .product-single__meta-text {
  font-size: 1rem;
  color: #a2a2a2;
}
.product-single-section
  .product-single__meta-info
  .product-single__share-list
  li:not(:last-child) {
  margin-right: 0.875rem;
}
.product-single-section
  .product-single__meta-info
  .product-single__share-list
  li
  a {
  font-size: 1.375rem;
  padding: 0.25rem;
  color: var(--color-primaryShade);
}
.product-single-section
  .product-single__meta-info
  .product-single__share-list
  li:hover
  a {
  color: var(--color-primary);
}
.product-single-section .product-single__meta-info > *:not(:last-child) {
  border-right: 1px solid var(--color-border);
}
.product-single-section .product-single__meta-info p {
  font-size: 0.875rem;
}
.product-single-section .product-single__meta-info > *:not(:last-child) i {
  font-size: 1.25rem;
}
.product-single-section .nav-tabs .nav-item.show .nav-link,
.nav-tabs {
  border-bottom: 1px solid var(--color-border);
}
.product-single-section .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
  border-radius: 0;
  color: var(--color-dark);
  font-weight: 600;
  text-transform: uppercase;
}
.product-single-section .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link:hover {
  border: 1px solid transparent;
}
.product-single-section .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}

/* ---- 8.6 Exam Single Page ---- */
.exam-single-section .top-wrap {
  margin-bottom: 3rem;
}

.exam-single-section .top-wrap p {
  margin-bottom: 0.5rem;
}

.exam-single-section .top-wrap .anim-img {
  display: inline-block;
  max-width: 5rem;
}

.exam-single-section .content-wrapper {
  padding: 2.5rem 1rem;
}
.exam-single-section aside {
  position: sticky;
  top: 8rem;
  padding: 1.5rem;
  overflow: hidden;
}
.exam-single-section aside h4 {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.exam-single-section aside ol {
  padding-left: 1rem;
  margin-bottom: 0;
}
.exam-single-section aside ol li {
  color: #fff;
  position: relative;
}

.exam-single-section aside ol li::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: -3.25rem;
  width: 0.625rem;
  height: 0.625rem;
  transform: rotate(45deg);
  opacity: 0;
  background-color: var(--color-secondary);
  transition: all 0.6s ease-in-out;
}

.exam-single-section aside ol li.active::before {
  left: -2.875rem;
  opacity: 1;
}

.exam-single-section aside ol li:not(:last-child) {
  margin-bottom: 1rem;
}
.exam-single-section aside ol li a {
  color: #fff;
  font-size: 1.125rem;
}
.exam-single-section aside ol li.active,
.exam-single-section aside ol li.active a,
.exam-single-section aside ol li:hover,
.exam-single-section aside ol li:hover a {
  color: var(--color-secondary);
}
.exam-single-section .content-wrapper .inner-section:not(:first-child) {
  padding-top: 2rem;
}
.exam-single-section .content-wrapper .inner-section:not(:last-child) {
  padding-bottom: 2rem;
}

.exam-single-section .content-wrapper .inner-section .inner-section__header {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1.875rem;
  align-items: center;
}

.exam-single-section
  .content-wrapper
  .inner-section
  .inner-section__header
  img {
  max-width: 2.5rem;
  margin-right: 1rem;
}

.exam-single-section .content-wrapper .inner-section .inner-section__header h3 {
  margin-bottom: 0;
}

.exam-single-section .content-wrapper .inner-section .price-card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.exam-single-section
  .content-wrapper
  .inner-section
  .price-card
  .price-card__header {
  padding: 4.5rem 1.25rem 1.875rem;
  background: linear-gradient(to bottom, #330738, #601568);
}
.exam-single-section
  .content-wrapper
  .inner-section
  .price-card
  .price-card__header
  .price-card__tag {
  margin-bottom: 0;
  position: absolute;
  right: -0.125rem;
  top: 0.75rem;
  padding: 0.5rem 1.25rem;
  background-color: #099e2e;
  color: #fff;
  line-height: 1;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.exam-single-section
  .content-wrapper
  .inner-section
  .price-card
  .price-card__header
  .price-card__tag::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  right: 1px;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #068626;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
}
.exam-single-section
  .content-wrapper
  .inner-section
  .price-card
  .price-card__header
  .price-card__price {
  font-size: 3.5rem;
  line-height: 1;
}
.exam-single-section
  .content-wrapper
  .inner-section
  .price-card
  .price-card__header
  .price-card__price
  sup {
  font-size: 1.875rem;
}
.exam-single-section
  .content-wrapper
  .inner-section
  .price-card
  .price-card__body {
  padding: 1.875rem 1.25rem;
}
.exam-single-section
  .content-wrapper
  .inner-section
  .price-card
  .price-card__body
  ul {
  list-style: none;
  max-height: 31rem;
  overflow-y: auto;
}
.exam-single-section
  .content-wrapper
  .inner-section
  .price-card
  .price-card__body
  ul
  li {
  position: relative;
  color: var(--color-dark);
  display: flex;
}
.exam-single-section
  .content-wrapper
  .inner-section
  .price-card
  .price-card__body
  ul
  li:not(:last-child) {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.exam-single-section
  .content-wrapper
  .inner-section
  .price-card
  .price-card__body
  ul
  li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  display: inline-block;
  padding-right: 0.75rem;
  vertical-align: middle;
  font-weight: 900;
  margin-top: 1px;
  color: rgb(67, 133, 67);
}

.exam-single-section
  .content-wrapper
  .inner-section
  .price-card
  .price-card__footer {
  padding: 0.625rem 1.25rem 1.875rem;
}
.exam-single-section
  .content-wrapper
  .inner-section.inner-section--pricing
  .inner-section__body
  > .content-box {
  margin-top: 4rem;
}
.exam-single-section
  .content-wrapper
  .inner-section.inner-section--pricing
  .inner-section__body
  > .content-box
  img {
  display: inline-block;
  margin-right: 1rem;
  max-width: 3rem;
}
.exam-single-section
  .content-wrapper
  .inner-section.inner-section--pricing
  .inner-section__body
  > .content-box
  h4 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.exam-single-section .container .grid-row > *:nth-child(1) {
  order: 2;
}
.exam-single-section .container .grid-row > *:nth-child(2) {
  order: 1;
}
.exam-single-section .content-wrapper .inner-section .content-box hr {
  margin: 3rem 0;
}
.exam-single-section
  .content-wrapper
  .inner-section.inner-section--introduction
  .inner-section__body
  .content-box
  .gallery {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 1.25rem;
}

.exam-single-section
  .content-wrapper
  .inner-section
  .inner-section__body
  .content-box
  .gallery
  img {
  border: 1px solid var(--color-border);
}
@media (min-width: 576px) {
  .exam-single-section .content-wrapper {
    padding: 2.5rem 1.875rem;
  }
  .exam-single-section
    .content-wrapper
    .inner-section
    .price-card
    .price-card__body
    .content-box {
    max-width: 75%;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .exam-single-section
    .content-wrapper
    .inner-section
    .price-card
    .price-card__body
    .content-box {
    max-width: 100%;
  }
  .exam-single-section
    .content-wrapper
    .inner-section
    .price-card
    .price-card__header
    p:not(.price-card__tag) {
    min-height: 4.375rem;
  }
}
@media (min-width: 992px) {
  .exam-single-section .content-wrapper {
    padding: 2.5rem;
  }

  .exam-single-section .container .grid-row > *:nth-child(1),
  .exam-single-section .container .grid-row > *:nth-child(2) {
    order: unset;
  }

  .exam-single-section
    .content-wrapper
    .inner-section
    .inner-section__header
    img {
    max-width: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .exam-single-section
    .content-wrapper
    .inner-section
    .price-card
    .price-card__header {
    padding: 4.5rem 1.875rem 1.875rem;
  }
  .exam-single-section
    .content-wrapper
    .inner-section
    .price-card
    .price-card__body {
    padding: 1.875rem 1.875rem;
  }
  .exam-single-section .custom-tab .custom-tab__buttons li button {
    font-size: 1.125rem;
  }
  .exam-single-section
    .content-wrapper
    .inner-section.inner-section--highlights
    .custom-tab
    .custom-tab__buttons {
    width: 30%;
  }
  .exam-single-section
    .content-wrapper
    .inner-section.inner-section--highlights
    .custom-tab
    .custom-tab__buttons
    li
    button {
    display: block;
    width: 100%;
  }
  .exam-single-section
    .content-wrapper
    .inner-section.inner-section--highlights
    .custom-tab
    .custom-tab__content {
    width: 70%;
    padding-left: 1.875rem;
  }
}
@media (min-width: 1400px) {
  .exam-single-section
    .content-wrapper
    .inner-section
    .price-card
    .price-card__body
    .content-box {
    max-width: 90%;
  }
  .exam-single-section
    .content-wrapper
    .inner-section
    .price-card
    .price-card__header
    p:not(.price-card__tag) {
    min-height: 3rem;
  }
}

/* ---- 8.6 Exam Archive Page ---- */
.exam-archive-section .filter-wrapper {
  margin-bottom: 2.5rem;
}
.exam-archive-section .filter-wrapper select {
  max-width: 20rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-light);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
}

/* --- CSS Fixing after backend integration --- */
/* .product-single-section .product-single__pricing > div {
  background-color: transparent;
  color: #fff;
  padding: 1rem!important;
  text-transform: uppercase;
  border: 2px solid var(--color-dark);
} */

.product-single-section .tab-content h4 img {
  display: inline-block;
  max-width: 5rem;
  margin-right: 1rem;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  #respond
  input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  #respond
  input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  input.button {
  font-size: 100%;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 0.875rem 2rem !important;
  font-weight: 700;
  border-radius: 0 !important;
  left: auto;
  display: inline-block;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
  background-color: var(--color-primary) !important;
  border: 2px solid var(--color-primary) !important;
  color: #fff !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  #respond
  input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  #respond
  input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  input.button:hover {
  background-color: var(--color-primaryShade) !important;
  border: 2px solid var(--color-primaryShade) !important;
  color: #fff !important;
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  float: left;
  box-sizing: border-box;
  border: 1px solid var(--color-border) !important;
  padding: 11px 10px 11px !important;
  margin: 0 4px 0 0;
  outline: 0;
  width: 200px !important;
}
/*Sushil starts here*/
.cart-collaterals .order-total {
    font-size: 24px;
}
.woocommerce-cart-form [name="update_cart"][disabled], .woocommerce-cart-form .product-quantity {
	display:none !important;
}
.woocommerce-account-fields #account_password_field::before {
    content: " Create an account by entering the information below. User id and Password will be sent immediately to your email id. If you are a returning customer please login at the top of the page.";
    position: relative;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 5px;
    color: #460c4c;
}
.variations_form.cart select {
    /* border: 1px solid red; */
    background-color: #460C4C;
    color: #fff;
}

.variations_form.cart select {
    margin-left: 20px !important;
    padding: 10px !important;
    display: unset !important;
}
.variations_form.cart .single_variation_wrap {
    display: flex;
    gap: 20px;
}
.includes_tax .woocommerce-Price-amount {
  border: unset;
}
@media (max-width: 767px) {
    .includes_tax {
      display: block;
    }
}

/*Sushil ends here*/

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background-color: transparent;
  border: 1px solid var(--color-border);
  width: 100%;
  color: var(--color-dark);
  font-weight: 600;
  min-height: 2.9375rem;
  border-radius: 0;
  padding: 0.875rem 1rem;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border: 1px solid var(--color-secondary);
  outline: 1px solid var(--color-secondary);
}

form.woocommerce-checkout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  float: left;
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid var(--color-border) !important;
  border-radius: 0 !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 10px !important;
}

.woocommerce .select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 44px;
  margin: 0 0 -4px;
  user-select: none;
  -webkit-user-select: none;
}

.woocommerce
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #444;
  line-height: 40px;
}

.woocommerce
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  display: block;
  padding-left: 16px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  display: block;
  margin-bottom: 0.5rem;
}

.woocommerce table.shop_table {
  border: 1px solid var(--color-border) !important;
  border-radius: 0 !important;
}

.woocommerce-privacy-policy-text {
  margin-bottom: 1.875rem !important;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: var(--color-light) !important;
  border-radius: 0 !important;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background-color: #fad3fd !important;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  content: "";
  display: block;
  border: 1em solid #fad3fd !important;
  border-right-color: transparent !important;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  position: absolute;
  top: -0.75em;
  left: 0;
  margin: -1em 0 0 2em;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: inline-flex !important;
  margin-top: 0.5rem !important;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme span {
  margin-left: 0.625rem;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid var(--color-border) !important;
  border-radius: 0 !important;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background-color: var(--color-light) !important;
}

.woocommerce-info {
  border-top-color: var(--color-primaryShade) !important;
}

.woocommerce-info::before {
  color: var(--color-primary) !important;
}

.showlogin {
  background-color: var(--color-primary);
  padding: 0.5rem;
  color: #fff;
  margin-left: 1rem;
}

.woocommerce nav.woocommerce-pagination {
  text-align: center;
  grid-column: span 4;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 0.875em !important;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--color-primary) !important;
  color: #fff !important;
}

.woocommerce-notices-wrapper {
  grid-column: span 4;
}

.woocommerce-NoticeGroup-checkout {
  grid-column: span 2;
}

.woocommerce-NoticeGroup-checkout .woocommerce-error {
  margin-bottom: 0;
}

.woocommerce table.shop_table td {
  border-top: 1px solid var(--color-border) !important;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  font-size: 1rem !important;
}

/* Exam Single Page - Additional Items */
.exam-single-section .samp-test-block {
  background: linear-gradient(to bottom, #330738, #601568);
  /* padding: 2.5rem 1.5rem; */
  padding: 1rem 1.5rem;
  height: 100%;
}

.exam-single-section .samp-test-block h4 {
  font-weight: 700;
  min-height: 4.25rem;
}

.exam-single-section .samp-test-block h4,
.exam-single-section .samp-test-block h5 {
  color: #fff;
}

.exam-single-section .samp-test-block h5 {
  min-height: 3.75rem;
}

.exam-single-section .samp-test-block a {
  display: block;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  padding-block: 0.125rem;
}

.exam-single-section .samp-test-block a:hover {
  color: var(--color-secondary);
}

.exam-single-section .samp-test-block a:not(:last-child) {
  margin-bottom: 0.5rem;
}

.woocommerce-tabs .tabs {
  display: flex;
  border-bottom: 1px solid var(--color-border);
}

.woocommerce-tabs .tabs li a {
  padding: 0.75rem 1rem;
  background-color: var(--color-light);
  color: var(--color-dark);
  display: block;
}

.woocommerce-tabs .tabs li.active a {
  background-color: var(--color-primary);
  color: #fff;
}

.panel {
  padding-top: 2rem;
}

.price-card__header .newspin {
    position: absolute;
    top: 0px;
    left: 0px;
    color: green;
    font-size: 14px;
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    width: 120px;
    line-height: 1em;
    background-image: url("/wp-content/themes/selective/assets/images/pininfo.png");
    background-size: 100% 100%;
    padding: 30px 10px !important;
}

/* @media (max-width: 1199.98px) {

} */

@media (max-width: 991.98px) {
  form.woocommerce-checkout {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2.5rem 0;
  }
  .exam-single-section .samp-test-block h4 {
    min-height: auto;
  }
  .price-card__header .newspin {
    padding: 20px 0px !important;
  }
  .exam-single-section .content-wrapper .inner-section .price-card .price-card__header .price-card__tag {
    width: 250px;
    top: 0px;
  }
}

@media (max-width: 767.98px) {
  #add_payment_method table.cart td.actions .coupon .input-text,
  .woocommerce-cart table.cart td.actions .coupon .input-text,
  .woocommerce-checkout table.cart td.actions .coupon .input-text {
    width: 100% !important;
    margin-bottom: 1rem !important;
  }

  .woocommerce #content table.cart td.actions .coupon .button.alt,
  .woocommerce #content table.cart td.actions .coupon .input-text + .button,
  .woocommerce table.cart td.actions .coupon .button.alt,
  .woocommerce table.cart td.actions .coupon .input-text + .button,
  .woocommerce-page #content table.cart td.actions .coupon .button.alt,
  .woocommerce-page
    #content
    table.cart
    td.actions
    .coupon
    .input-text
    + .button,
  .woocommerce-page table.cart td.actions .coupon .button.alt,
  .woocommerce-page table.cart td.actions .coupon .input-text + .button {
    float: none !important;
    width: 100% !important;
  }

  .exam-single-section .samp-test-block h4 {
    font-size: 1.25rem;
  }
}


/*==Post id 1035261==*/
.postid-1035261 .bg-temp{
    background: #f0bada;
}
.postid-1035261 .bg-temp-border{
    border-radius: 8px;
    border: 1px solid #fff;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(139, 35, 35, 0.836), 0 6px 20px 0 rgba(180, 113, 113, 0.783);
}
.postid-1035261 .button-wrap a{
    background-color: #a40a66;
        background: linear-gradient(to bottom, #a40a66, #a65f66);
    color:#fff;
    border: 2px solid #a40a66;
}
.postid-1035261 .button-wrap a:hover{
    background: linear-gradient(to bottom, #fff, #fff);
    color: #a40a66;
    border:2px solid #a40a66;
}
.postid-1035261 .edukul-container a{
    background-color: #a40a66;
        background: linear-gradient(to bottom, #a40a66, #a65f66);
    color:#fff;
    border: 2px solid #a40a66;
}
.postid-1035261 .edukul-container a:hover{
    background: linear-gradient(to bottom, #fff, #fff);
    color: #a40a66;
    border:2px solid #a40a66;
}
.postid-1035261 .bg-btn{
    background-color: #a40a66;
        background: linear-gradient(to bottom, #a40a66, #a65f66);
    color:#fff;
    border: 2px solid #a40a66;
}
.postid-1035261 .bg-btn:hover{
    background: linear-gradient(to bottom, #fff, #fff);
    color: #a40a66;
    border:2px solid #a40a66;
}
.postid-1035261 .custom-tab .custom-tab__buttons li button {
    background: linear-gradient(to bottom, #a40a66, #a65f66);
    color: #000;
}
.postid-1035261 .custom-tab .custom-tab__buttons li button.active {
    color: #fff;
}

.postid-1035261 .exam-single-section .samp-test-block {
    background: linear-gradient(to bottom, #a40a66, #a65f66);

}
.postid-1035261 .exam-single-section .content-wrapper .inner-section .price-card .price-card__header {
    background: linear-gradient(to bottom, #a40a66, #a65f66);
}
.postid-1035261 .pagetitle-block .breadcrumb .breadcrumb-item.active span {
    background-color: #a40a66;
}

.postid-1035261 .bg-sidebar {
    background: linear-gradient(to bottom, #a40a66, #a65f66);
    border:2px solid #a40a66;
    color: #1a041d;
}
.postid-1035261 .exam-single-section aside ol li.active, .exam-single-section aside ol li.active a, .exam-single-section aside ol li:hover, .exam-single-section aside ol li:hover a {
    color: #1a041d;
}
.postid-1035261 .text--lightText {
    color: #ffffff;
}
.postid-1035261 .button--scroll-to-top:hover {
    background-color:  #a40a66;
}