/* Font Family */

@font-face {
  font-family: 'poppins-light';
  src: url('../fonts/poppins/Poppins-Light.ttf');
}

@font-face {
  font-family: 'poppins-thin';
  src: url('../fonts/poppins/Poppins-Thin.ttf');
}

@font-face {
  font-family: 'poppins-regular';
  src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
  font-family: 'poppins-medium';
  src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
  font-family: 'poppins-semi-bold';
  src: url('../fonts/poppins/Poppins-SemiBold.ttf');
}

@font-face {
  font-family: 'poppins-bold';
  src: url('../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
  font-family: 'poppins-extra-bold';
  src: url('../fonts/poppins/Poppins-ExtraBold.ttf');
}

@font-face {
  font-family: 'poppins-black';
  src: url('../fonts/poppins/Poppins-Black.ttf');
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Light.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* Base */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primaryColor: #0053aa;
  --secondaryColor: #89dcf6;

  --ghostWhite: #f4f4f9;
  --babyPowderWhite: #fdfffc;

  --oxfordBlue: #002147;
  --green: #00b67a;
  --successGreen: #f4d35e;
  --failRed: #d63163;
  --warningYellow: #ffcd38;

  --bgGrey: #e0daf1;
  --bgGrey2: #f7f7f7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--babyPowderWhite);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.container {
  display: block;
  margin: auto auto;
}

.container-medium {
  max-width: 1400px;
}

.container-small {
  max-width: 1200px;
  transition: all 400ms;
}

/* Utilities */

.hide {
  display: none;
}

.show-animation {
  animation: fade-up;
  animation-duration: 1s;
}

.grids {
  display: flex;
}

.grids .grid-50 {
  width: 50%;
}

.heading-h2 {
  font-size: 32px;
  color: var(--oxfordBlue);
  text-align: center;
}

.heading-h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--oxfordBlue);
}

.page-title {
  font-size: 32px;
  color: var(--oxfordBlue);
  text-align: center;
}

.page-sub {
  text-align: center;
  color: var(--oxfordBlue);
  font-size: 18px;
  line-height: 27px;
  margin-top: 10px;
  padding-left: 150px;
  padding-right: 150px;
}

.page-text {
  font-size: 17px;
  line-height: 27px;
  color: var(--oxfordBlue);
}

.text-align-center {
  text-align: center;
}

.bg-success {
  background-color: var(--successGreen);
}

.bg-grey2 {
  background-color: var(--bgGrey2);
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-70 {
  margin-top: 70px;
}

/* Loader */

@keyframes loader-bar {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.loader {
  background-color: var(--babyPowderWhite);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 100ms;
}

.loader.animate-bar .loader-bar {
  animation-name: loader-bar;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.loader.inactive {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader .flex-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.loader-bar {
  display: block;
  height: 3px;
  width: 0%;
  background-color: var(--primaryColor);
}

.loader-logo {
  width: 100%;
  max-width: 230px;
  transform: translateY(-80%);
}

/* Components */

.section {
  padding-top: 100px;
  position: relative;
}

.section-start {
  margin-top: 100px;
}

.section-end {
  padding-bottom: 100px;
}

.section-min-height {
  min-height: 60vh;
}

.page-padding {
  padding-top: 150px;
}

.page-padding-2 {
  padding-top: 144px;
}

.btn {
  font-family: inherit;
  display: inline-block;
  font-size: 16px;
  color: #525c69;
  background-color: #dee2e6;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 1000px;
  outline: none;
  border: none;
  cursor: pointer;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-success {
  color: var(--oxfordBlue);
  background-color: var(--successGreen);
  transition: all 300ms;
}

.btn-success:hover {
  opacity: 0.75;
}

.btn-fail {
  color: var(--ghostWhite);
  background-color: var(--failRed);
  transition: all 300ms;
}

.btn-fail:hover {
  opacity: 0.75;
}

.btn-primary {
  color: var(--ghostWhite);
  background-color: var(--primaryColor);
  transition: all 300ms;
}
.btn-outline-primary{
     background-color: var(--ghostWhite) !important;
     color: var(--primaryColor);
     transition: all 300ms;	
     border: 2px solid var(--primaryColor);
}

.btn-primary:hover {
  opacity: 0.9;
}

ul.list {
  font-size: 16px;
  list-style: none;
  padding-left: 17px;
  line-height: 30px;
}

ul.list li::before {
  content: '\2022';
  color: var(--primaryColor);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  opacity: 0.5;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--primaryColor);
  line-height: 28px;
  text-decoration: none;
  position: relative;
}

.logo img {
  width: 180px;
}

.primary-navigation {
  background-color: var(--babyPowderWhite);
  padding-top: 17px;
  padding-bottom: 17px;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.09);
  z-index: 10;
}

.primary-navigation .flex-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.primary-navigation .menu-icon {
  display: none;
}

.primary-navigation .menu-icon svg {
  width: 32px;
  height: 32px;
  cursor: pointer;
  fill: var(--oxfordBlue);
  transform: translateY(3px);
}

.primary-navigation-options {
  display: flex;
  gap: 25px;
  list-style: none;
}

.primary-navigation-options li a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--oxfordBlue);
  color: #f802bb;
  text-decoration: none;
  position: relative;
}

.primary-navigation-options li a:hover::before {
  width: 100%;
  opacity: 1;
}

.primary-navigation-options li a:before {
  content: '';
  display: block;
  background-color: var(--primaryColor);
  width: 0%;
  height: 1.5px;
  position: absolute;
  bottom: -5px;
  opacity: 0;
  transition: all 300ms;
}

.primary-navigation .btn {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
}

/* hero */

.hero {
  min-height: 750px;
  max-height: 750px;
  position: relative;
  overflow: hidden;
}

.hero .flex-1 {
  padding-top: 50px;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  opacity: 0.03;
  pointer-events: none;
}

.hero-title {
  font-size: 40px;
  color: var(--oxfordBlue);
  text-align: center;
}

.hero .product-showcase {
  margin-top: 30px;
}

/* Product Showcase */

@keyframes showcase-category-loading {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.product-showcase-header {
  display: flex;
  list-style: none;
  gap: 30px;
  padding-bottom: 5px;
  border-bottom: 2px solid #0052aa2e;
}

.product-showcase-category {
  font-size: 20px;
  font-weight: 600;
  color: var(--primaryColor);
  flex-grow: 1;
  padding: 10px 20px;
  position: relative;
  cursor: pointer;
}

.product-showcase-category:hover::before {
  content: '';
  display: inline-block;
  background-color: var(--primaryColor);
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -6px;
}

.product-showcase .product-showcase-category:first-of-type.active:before {
  transform: translateX(-20px);
}

.product-showcase-category.active:before {
  content: '';
  display: inline-block;
  background-color: var(--primaryColor);
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -6px;
  opacity: 0.5;
}

.product-showcase-category.active::after {
  animation-name: showcase-category-loading;
  animation-duration: 5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  content: '';
  display: inline-block;
  background-color: var(--primaryColor);
  width: 0%;
  height: 2px;
  position: absolute;
  left: 20px;
  bottom: -6px;
  opacity: 1;
}

.product-showcase-category.active:first-of-type:after {
  left: 0px;
}

.product-showcase-category:hover:first-of-type:before {
  transform: translateX(-20px);
}

.product-showvase-category-container {
  display: none;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  /* position: absolute;
  top: 0;
  left: 0; */
  opacity: 0;
  visibility: hidden;
  transition: all 100ms;
}

.product-showvase-category-container.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.product-showvase-category-container .left {
  width: 35%;
}

.product-showvase-category-container .right {
  width: 65%;
}

.product-showvase-category-container .list {
  color: var(--oxfordBlue);
  font-size: 20px;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 15px;
}

.product-showvase-category-container .btn {
  font-size: 16px;
  font-weight: 500;
}

.product-showvase-category-container .right img {
  display: block;
  width: 90%;
  padding-top: 10px;
  margin: auto auto;
}

.product-showcase-body {
  position: relative;
}

/* Testimonials */

.testimonials {
  padding-top: 30px;
  padding-bottom: 45px;
}

.testimonials-title {
  color: var(--oxfordBlue);
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 30px;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.testimonial-container > div {
  width: 23px;
  height: 23px;

  cursor: pointer;
}

.testimonial-container > div:hover .testimonial-img {
  transform: scale(1.1);
}

.testimonial-container > div:hover .testimonial-info {
  display: flex;
}

.testimonial-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 100px;
}

.testimonial-info {
  color: var(--oxfordBlue);
  display: none;
  flex-direction: column;
  background-color: #fff;
  border: 2px solid var(--primaryColor);
  border-radius: 5px;
  padding: 20px;
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 100%;
  max-width: 350px;
  min-height: 200px;
  z-index: 5;
  transform: translateX(-50%);
}

.testimonial-name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Package */

.packages .flex-1 {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.package {
  color: var(--oxfordBlue);
  padding: 30px 30px;
  border: solid 1px #e8e8e8;
  border-radius: 7px;
  width: 30%;
  position: relative;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  transition: all 300ms;
}

.package:not(:last-of-type) {
  margin-right: 60px;
}

.package:hover {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}

.package-tag {
  color: var(--ghostWhite);
  background-color: var(--failRed);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  padding: 15px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
}

.package-heading {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.package-sub {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  margin-top: 7px;
}

.price.strike-through {
  color: rgb(153, 153, 153);
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  text-decoration: line-through;
  margin-top: 30px;
  margin-bottom: 10px;
}

.price.tbd {
  color: rgb(153, 153, 153);
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  /*text-decoration: line-through;*/
  margin-top: 30px;
  margin-bottom: 10px;
}

.package .main-price-container {
  display: flex;
  justify-content: center;
}

.package .main-price {
  display: inline-block;
  color: var(--oxfordBlue);
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.package .main-price .currency-symbol {
  font-size: 25px;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: -20px;
}

.package .main-price .sub {
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  right: -50;
  bottom: 5px;
}

.package .currency {
  color: rgb(114, 117, 134);
  font-size: 15px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 5px;
}

.package .btn {
  font-size: 17px;
  font-weight: 500;
  margin-top: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.package ul {
  color: var(--oxfordBlue);
  font-weight: 500;
  margin-top: 50px;
  list-style: none;
}

.package ul li {
  display: flex;
  align-items: center;
  line-height: 37px;
}

.package ul li .text {
  font-size: 17px;
}

.package ul li .icon {
  margin-right: 5px;
}

.package ul li .icon svg {
  width: 14px;
  height: 12px;
}

.package ul li .icon.success svg {
  fill: var(--green);
}

.package ul li .icon.warning svg {
  fill: var(--warningYellow);
}

.package ul li .icon.fail svg {
  fill: var(--failRed);
}

/* Features */

.features .features-container {
  margin-top: 60px;
}

.features-container {
  display: flex;
}

.feature-box {
  width: 30%;
  min-height: 430px;
  border-radius: 7px;
  border: solid 1px #e8e8e8;
  overflow: hidden;
}

.feature-box:hover {
  border-color: var(--primaryColor);
}

.feature-box:not(:last-of-type) {
  margin-right: 60px;
}

.feature-box-header {
  display: flex;
  background-color: var(--bgGrey2);
  overflow: hidden;
}

.feature-box-img {
  width: 100%;

  transform: translate(40px, 40px);
}

.feature-box-body {
  color: var(--oxfordBlue);
  padding: 30px 40px;
}

.feature-box-heading {
  font-size: 22px;
  font-weight: 600;
}

.feature-box-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  margin-top: 10px;
}

/* Feature Detail */

.feature-detail .gap-right {
  padding-right: 60px;
}

.feature-detail-heading {
  font-size: 22px;
  font-weight: 600;
  color: var(--oxfordBlue);
  transform: translateY(-20px);
}

.feature-detail-text {
  font-size: 17px;
  color: var(--oxfordBlue);
  margin-top: 10px;
  max-width: 500px;
  line-height: 27px;
  transform: translateY(-20px);
}

.feature-detail-img {
  width: 100%;
}

.feature-img-border{ border: 3px solid #e8e8e8; border-radius: 5px;}

.feature-detail .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
}

/* Category Detail */

#faq {
  overflow: hidden;
  padding-bottom: 50px;
}

.category-detail {
  display: flex;
  margin-top: 60px;
}

.category-detail-heading {
  color: var(--oxfordBlue);
  font-weight: 600;
  font-size: 22px;
  border-left: 4px solid transparent;
  padding-left: 18px;
  cursor: pointer;
}

.category-detail-heading.active {
  border-left: 4px solid var(--primaryColor);
}

.category-detail-heading:not(:last-of-type) {
  margin-bottom: 30px;
}

.category-detail-info {
  color: var(--oxfordBlue);
  padding: 40px 40px;
  border: 1px solid var(--oxfordBlue);
  border-radius: 7px;
  position: absolute;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 400ms;
}

.category-detail-info.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

.category-detail-info-heading {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--primaryColor);
}

.category-detail-info-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.category-detail .left {
  width: 50%;
}

.category-detail .right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  position: relative;
}

/* Featured Logos */

.featured-logos .flex-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Contact */

.contact-img {
  width: 100%;
  border-radius: 7px;
}

.contact .gap-right {
  padding-right: 60px;
}

/* Form */

.group:not(:first-of-type) {
  margin-top: 20px;
}

.group-2 {
  display: flex;
}

.group-2 input:first-of-type {
  margin-right: 20px;
}

.input-style-1 {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e8e8e8;
  outline: none;
  border-radius: 7px;
  transition: all 300ms;
}

.input-style-1:focus {
  border-color: var(--primaryColor);
}

.input-style-2 {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #e8e8e8;
  outline: none;
  border-radius: 7px;
  transition: all 300ms;
}

.input-style-2:focus {
  border-color: var(--primaryColor);
}

.checkbox-container {
  display: block;
  position: relative;
  padding-top: 2px;
  padding-left: 32px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--oxfordBlue);
}

.checkbox-container a {
  color: var(--primaryColor);
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 21px;
  border: 1px solid #e8e8e8;
  background-color: transparent;
  border-radius: 5px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #e8e8e8;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primaryColor);
  border: 1px solid transparent;
}

.checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 4px;
  width: 6px;
  height: 9px;
  border: solid var(--babyPowderWhite);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Page Warning */

.page-warning .flex-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-warning-heading {
  display: block;
  font-size: 45px;
  font-weight: 700;
  color: var(--oxfordBlue);
  text-align: center;
}

.page-warning-sub {
  display: block;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-top: 7px;
  color: var(--oxfordBlue);
}

.page-warning-text {
  font-size: 18px;
  color: var(--oxfordBlue);
  text-align: center;
  line-height: 28px;
  margin-top: 15px;
  max-width: 700px;
}

.page-warning-btns {
  display: flex;
  margin-top: 30px;
}

.page-warning-btns .btn {
  text-align: center;
  min-width: 144px;
}

.page-warning-btns .btn:not(:first-of-type) {
  margin-left: 10px;
}

/* Account */

.account .flex-1 {
  display: flex;
  justify-content: center;
}

.account-form-container {
  max-width: 450px;
  width: 100%;
  padding: 20px;
}

.account-heading {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--oxfordBlue);
}

.account-btn {
  width: 100%;
}

.account-link {
  display: block;
  text-align: center;
  color: var(--oxfordBlue);
}

.account-link a {
  color: var(--primaryColor);
}

.account .link-group {
  margin-top: 30px;
}

/* Footer */

.footer {
  background-color: var(--bgGrey2);
  padding-top: 50px;
  padding-bottom: 0px;
  min-height: 100px;
}

.footer-logo {
  width: 170px;
}

.footer-payment-methods {
  width: 100%;
  max-width: 250px;
  margin-top: 2px;
}

.footer-text {
  font-size: 16px;
  color: var(--oxfordBlue);
  line-height: 23px;
  margin-top: 10px;
}

.footer .flex-1 {
  display: flex;
}

.footer .flex-2 {
  display: flex;
  align-items: center;
  min-height: 80px;
  margin-top: 20px;
  border-top: 1px solid var(--bgGrey);
}

.footer .flex-2 p {
  color: var(--oxfordBlue);
}

.footer .footer-box {
  width: 25%;
}

.footer-box-about {
  width: 40% !important;
}

.footer-box-heading {
  font-size: 20px;
  font-weight: 600;
  display: block;
  color: var(--oxfordBlue);
  margin-bottom: 15px;
}

.footer-box-list {
  list-style: none;
  line-height: 30px;
  font-size: 16px;
}

.footer-box-list a {
  color: var(--oxfordBlue);
}

.footer .footer-box .footer-box-heading:not(:first-of-type) {
  margin-top: 20px;
}

.footer .footer-box:not(.footer-box-about) {
  padding-left: 50px;
}

@media (max-width: 1260px) {
  .container-small {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 992px) {
  .section {
    padding-top: 60px;
  }
  .section-start {
    margin-top: 80px;
  }
  .section-end {
    padding-bottom: 60px;
  }

  .primary-navigation .menu-icon {
    display: initial;
  }

  .primary-navigation .btn {
    display: none;
  }

  .primary-navigation-options {
    display: block;
    background-color: transparent;
    width: 100%;
    height: 0px;
    overflow: hidden;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(79.5px);
    border-top: 2px solid var(--primaryColor);

    transition: all 300ms;
  }

  .primary-navigation-options.active {
    display: block;
    visibility: visible;
    width: 100%;
    height: 350px;
  }

  .primary-navigation-options li {
    background-color: var(--babyPowderWhite);
    border-bottom: 1px solid #dee2e6;
  }

  .primary-navigation-options li a {
    display: block;
    padding: 17px 40px;
  }

  .primary-navigation-options li a:hover::before {
    display: none;
  }

  .hero {
    max-height: unset;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 32px;
  }

  .heading-h2 {
    font-size: 26px;
  }

  .heading-h3 {
    font-size: 20px;
  }

  .page-text {
    line-height: 25px;
  }

  .page-sub {
    font-size: 17px;
    line-height: 25px;
  }

  .category-detail-heading {
    font-size: 19px;
  }

  .product-showcase-category {
    display: none;
  }
  .product-showcase-category.active {
    display: initial;
  }

  .product-showcase-category:not(:first-of-type).active::before {
    transform: translateX(-20px);
  }
  .product-showcase-category:not(:first-of-type).active::after {
    transform: translateX(-20px);
  }

  .product-showvase-category-container {
    flex-direction: column-reverse;
  }

  .product-showvase-category-container .right,
  .product-showvase-category-container .left {
    width: 100%;
  }
  .product-showvase-category-container .right img {
    width: 100%;
  }

  .product-showvase-category-container .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .product-showvase-category-container .list {
    margin-top: 10px;
  }

  .product-showvase-category-container .btn {
    text-align: center;
    width: 100%;
    max-width: 300px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 5px;
  }

  .packages .flex-1 {
    flex-direction: column;
    align-items: center;
  }

  .packages .package {
    margin-right: 0;
    width: 100%;
    max-width: 400px;
  }

  .packages .package:not(:first-of-type) {
    margin-top: 60px;
  }

  .packages .package.with-tag {
    margin-top: 105px;
  }

  .category-detail .left {
    display: none;
  }

  .category-detail .right {
    flex-direction: column;
    width: 100%;
  }

  .category-detail-info {
    position: unset;
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
  }

  .category-detail-info:not(:first-of-type) {
    margin-top: 60px;
  }

  .features-container {
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }

  .feature-box {
    width: 100%;
    max-width: 400px;
  }
  .feature-box:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 60px;
  }

  .featured-logos .flex-1 {
    flex-wrap: wrap;
  }

  .featured-logos .flex-1 > div {
    width: 50%;
  }

  .featured-logos .flex-1 > div:nth-of-type(n + 3) {
    margin-top: 20px;
  }

  .featured-logos .flex-1 > div:nth-of-type(odd) {
    display: flex;
    justify-content: flex-start;
  }

  .featured-logos .flex-1 > div:nth-of-type(even) {
    display: flex;
    justify-content: flex-end;
  }

  .featured-logos .flex-1 > div img {
    display: block;
    width: 70%;
    max-width: 120px;
  }

  .contact .gap-right {
    padding-right: 0;
    margin-bottom: 60px;
  }

  .contact .grids {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .contact .grids .grid {
    width: 100%;
  }

  .feature-detail .grids {
    flex-direction: column;
  }

  .feature-detail .grids.reverse {
    flex-direction: column-reverse;
  }

  .feature-detail .grids .grid {
    width: 100%;
    padding-left: 0;
  }

  .feature-detail .gap-right {
    padding-right: 0;
  }

  .feature-detail-heading,
  .feature-detail-text {
    transform: translateY(0);
    max-width: 100%;
  }

  .feature-detail-text {
    line-height: 25px;
  }
}

@media (max-width: 768px) {
  .testimonials-title {
    font-size: 24px;
  }

  .page-sub {
    padding-left: 0;
    padding-right: 0;
  }

  .footer .flex-1 {
    /* flex-direction: column; */
    flex-wrap: wrap;
  }

  .footer .flex-2 {
    text-align: center;
  }

  .footer .footer-box:first-of-type {
    width: 100% !important;
  }

  .footer .footer-box:not(.footer-box-about) {
    margin-top: 20px;
    padding-left: 0;
    width: 50%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 30px;
  }

  .package-heading {
    font-size: 20px;
  }

  .package-sub,
  .price.strike-through {
    font-size: 16px;
  }

  .package .main-price {
    font-size: 32px;
  }

  .package .currency {
    margin-top: 10px;
  }

  .package-tag {
    font-size: 16px;
  }

  .package .btn {
    font-size: 16px;
  }

  .heading-h2 {
    font-size: 24px;
  }

  .heading-h3 {
    font-size: 18px;
  }

  .category-detail-heading {
    font-size: 18px;
  }

  .contact-title {
    font-size: 24px;
  }

  .container-small {
    padding-left: 35px;
    padding-right: 35px;
  }

  .product-showvase-category-container .list {
    font-size: 18px;
  }

  .product-showvase-category-container .btn {
    font-size: 17px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .page-warning-btns {
    width: 100%;
    flex-direction: column;
  }

  .page-warning-btns .btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .page-warning-btns .btn:not(:first-of-type) {
    margin-left: 0;
    margin-top: 10px;
  }

  .account-heading {
    font-size: 30px;
  }

  .account-link {
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 29px;
  }

  .heading-h2 {
    font-size: 24px;
  }

  .heading-h3 {
    font-size: 18px;
  }
  .page-title {
    font-size: 29px;
  }

  .category-detail-heading {
    font-size: 18px;
  }

  .contact-title {
    font-size: 21px;
  }

  .testimonials-title {
    font-size: 22px;
  }

  .container-small {
    padding-left: 25px;
    padding-right: 25px;
  }

  .product-showvase-category-container .list {
    font-size: 16px;
    line-height: 27px;
  }

  .product-showvase-category-container .btn {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .contact .btn {
    font-size: 16px;
  }

  .account-heading {
    font-size: 8vw;
  }

  .footer .flex-1 {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .footer .footer-box:not(.footer-box-about) {
    width: 100%;
  }
}
