/**************************/
/* HEADER */
/**************************/
.header-background {
  background-image: url("../images/head-bg.jpg");
  background-size: cover; /* Adjust background size as needed */
  background-position: center; /* Adjust background position as needed */
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #ffffff; */
  /* Because we want header to be sticky later */
  /* height: 12.6rem; */
  padding: 0 4.8rem;
  position: relative;
  /* background-image: url("../images/head-bg.webp"); */
  /* border-bottom: 1px solid #eee; */
  border-top: 1px solid #eee;
  transition: top 0.3s ease;
}

.header {
  height: 14.6rem;
  padding-bottom: -1rem;
}

/* Sticky navigation */
.sticky .header {
  /* transform: translateX(-100%); */
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 12rem;
  padding-bottom: 0;
  /* padding-right: 0; */
  background-color: rgb(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-top: 2rem;
}

.logo {
  height: 15.8rem;
  width: 25rem;
}

.logo-name {
  font-size: 2rem;
  font-weight: 500;
  color: #333;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-sub {
  padding-top: 14rem;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.6rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #cf711f;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #294679;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #cf711f;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  /* background-image: url("../images/header.webp"); */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;

  /* background-color: #bac8ff; */
  /* padding: 4.8rem 0 9.6rem 0; */
}

.hero {
  position: relative;
  height: 175rem;
}

.hero-description {
  font-size: 2.2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
  color: #000;
  /* font-weight: 600; */
}
.hero-img {
  width: 100%;
}

.delivered-meals {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}

.delivered-imgs {
  display: flex;
}

.delivered-imgs img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #bac8ff;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
}

.delivered-text span {
  color: #4c3852;
  font-weight: 700;
}

/**************************/
/* FEATURED IN SECTION */
/**************************/

.section-featured {
  padding: 4.8rem 0 3.2rem 0;
}

.heading-featured-in {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #888;
}

.logos {
  display: flex;
  justify-content: space-around;
}

.logos img {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
}

/**************************/
/* About SECTION */
/**************************/
.section-about {
  padding: 5.6rem 0;
}

.support-image {
  width: 35rem;
  height: 26rem;
  filter: brightness(129%);
  border-radius: 2rem;
}

.support-img-container {
  margin-top: 5rem;
  margin-left: -2.8rem;
  margin-bottom: 3.2rem;
}

/**************************/
/* Support SECTION */
/**************************/

.section-support {
  padding: 8.6rem 0;
  margin-bottom: -5rem;
  background-color: #faf7f2;
  background-size: cover;
  background-position: center;
}

/**************************/
/* HOW IT WORKS SECTION */
/**************************/

.section-how {
  padding: 6.6rem 0px;
  margin-top: -140rem;
  overflow: hidden;
  row-gap: 6.6rem;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.6rem;
  line-height: 1.8;
  display: flex;
  justify-content: center;
  align-items: start;
}

.step-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-box::before,
.step-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 84%;
  /* height: 60%; */
  padding-bottom: 70%;
  background-color: #add8e6;
  z-index: -2;
}

.step-img-box::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: #fae5d3;
  z-index: -1;
}

.step-img {
  width: 82%;
  border-radius: 2rem;
  /* z-index: 10; */
}

/**************************/
/* training SECTION */
/**************************/

/**************************/
/* ABOUT US SECTION */
/**************************/

.section-training {
  padding: 6.7rem 0px;
  background-color: #bac8ff;
}

/**************************/
/* MEALS SECTION */
/**************************/

.section-meals {
  padding: 9.6rem 0;
}

.meal {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
}

.meal:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.meal-content {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}

.meal-tags {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
  font-weight: 600;
}

.tag--vegetarian {
  background-color: #51cf66;
}
.tag--vegan {
  background-color: #94d82d;
}
.tag--paleo {
  background-color: #ffd43b;
}

.meal-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.meal-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.meal-attribute {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.meal-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #294679;
}

.meal-img {
  width: 100%;
}

.all-recipes {
  text-align: center;
  font-size: 1.8rem;
}

/**************************/
/* TESTIMONIALS SECTION */
/**************************/

.section-testimonials {
  background-color: #bac8ff;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}

.testimonials-container {
  padding: 9.6rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

/**************************/
/* MEALS SECTION */
/**************************/

.section-pricing {
  padding: 9.6rem 0;
}

.pricing-plan {
  border-radius: 11px;

  width: 75%;
}

.pricing-plan--starter {
  justify-self: end;
  border: 2px solid #bac8ff;
  padding: 4.6rem;
}

.pricing-plan--complete {
  background-color: #bac8ff;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}

.pricing-plan--complete::after {
  content: "Best value";
  position: absolute;
  top: 6%;
  right: -18%;

  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name {
  color: #4c3852;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

.feature-icon {
  color: #294679;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #bac8ff;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */

  /* top / horizontal / left */
  padding: 4.8rem 0 8.8rem;
}

.cta {
  display: grid;
  /* 2/3 = 66.6% + 1/3 = 33.3% */
  grid-template-columns: 2fr 1fr;
  /* background-color: #cf711f; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;

  background-image: linear-gradient(to right bottom, #cf711f, #294679);
  color: #fff;
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #fff;
}

.cta .heading-secondary {
  /* color: #294679; */
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(255, 183, 131, 0.35),
      rgba(255, 183, 131, 0.35)
    ),
    url("../images/logo-1.jpg");

  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  color: #333;
  background-color: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.1rem rgba(253, 242, 233, 0.5);
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 6.8rem 0;
  font-weight: 500;
  border-top: 1px solid #eee;
  color: #114e81;
  position: relative;
}

.grid--footer {
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 11.6rem 8.4rem;
  justify-content: center;
  align-items: start;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-top: -3.8rem;
  background-color: #faf7f2;
  border-radius: 200%;
  width: 24rem;
}

.social-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #cf711f;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  /* color: #767676; */
  margin-top: auto;
  margin-left: -9rem;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: #cf711f;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #114e81;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #114e81;
}

.social-links-list {
  display: flex;
  column-gap: 1.4rem;
}

.social-icon-name {
  font-size: 1.4rem;
  padding-top: 0.5rem;
}

.vedio {
  height: 55rem;
  width: 100%;
  /* background-color: #000; */
  text-align: center;
  position: relative;
}

.vedio-quotes {
  width: 103rem;
  height: 28rem;
  z-index: 20;
  top: -94.6rem;
  left: 21rem;
  /* background-color: #e6e6e6; */
  /* opacity: 0.7; */
  position: relative;
  border-radius: 2rem;
}

.hero-quote-head {
  color: #114e81;
}

.quotes {
  position: relative;
  color: white;
  font-size: 2.9rem;
  /* font-style: italic; */
  text-align: center;
  top: 2.6rem;
  letter-spacing: 0.1rem;
}

.composition {
  position: relative;
  margin-left: -3rem;
  margin-top: 15rem;
}

.composition__photo {
  width: 60%;
  height: 28rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 1.4rem;
  position: absolute;
  z-index: 10;
  transition: all 0.2s;
  outline-offset: 2rem;
}

.composition__photo--p1 {
  left: 0;
  top: -32rem;
}

.composition__photo--p2 {
  right: -6rem;
  top: -22rem;
  z-index: 12;
}

.composition__photo--p3 {
  left: 16%;
  top: -8rem;
  z-index: 9;
}

.composition__photo:hover {
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}

.training-text {
  margin-right: 2rem;
}

.training-text-box {
  margin-top: 2.8rem;
}

.about-center {
  text-align: center;
}

.icon {
  width: 10rem;
}

.training-heading {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.easa-nav-drop,
.train-nav-drop {
  display: none;
  margin-top: 1rem;
  position: absolute;
  background-color: #fff; /* White background */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add a box shadow for better visibility */
}

.easa-nav-drop ul,
.train-nav-drop ul {
  padding: 0;
}

.easa-nav-drop ul li,
.train-nav-drop ul li {
  list-style-type: none;
  padding: 1.6rem;
  font-size: 1.6rem;
  border-bottom: 1px solid #333; /* Black divider */
}

.drop-icon {
  position: absolute;
  padding-top: 0.2rem;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  font-size: 1.8rem;
  font-weight: 500;
}

.vedio-source {
  object-fit: cover;
  height: 74%;
  width: 100%;
  filter: brightness(94%);
  background-position: bottom;
}

/* .vedio-quotes {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
} */

.part66-nav,
.part147-nav {
  margin-right: 1.5rem;
}

.cta-popup {
  /* display: none; */
  /* position: absolute; */
  z-index: 9999;
}

.cta-popup {
  display: none;
  position: fixed; /* Change to fixed for centering */
  top: 40%; /* Position at 50% from the top */
  left: 50%; /* Position at 50% from the left */
  transform: translate(-50%, -50%); /* Center the pop-up */
  z-index: 999;
  width: 50rem;
  height: 65rem;
  margin-top: 6rem;

  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
  padding: 20px; /* Adjust padding as needed */
  backdrop-filter: blur(10rem); /* Apply backdrop filter */
}

.cta-pop-text {
  padding: 2.8rem 1.4rem 2.4rem 0.4rem;
}

#part66 {
  background-color: #faf7f2;
}

#part147 {
  padding-bottom: 14rem;
  background-color: #114e81;
  color: #fff;
}

.part147-heading,
.part147-subheading {
  color: #fff;
  font-weight: 600;
}

.part147-heading {
  color: #cf711f;
  border-bottom: 2px solid #cf711f;
}

/* .training-bottom {
  color: #faf7f2;
} */

.part147-subheading {
  font-weight: 400 !important;
  font-size: 3.6rem;
  line-height: 1.2;
  margin-bottom: 1.6rem;
  /* color: #fff; */
  /* font-style: italic; */
}

.section-support,
.section-about {
  z-index: 999;
}

.icon {
  color: #cf711f;
  fill: #cf711f;
  filter: hue-rotate(180deg);
}

.transparent-background {
  opacity: 2;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 10%,
      transparent 105%
    ),
    url(/images/contact-us.jpg);
  background-color: #cf711f;
  background-repeat: no-repeat;
  background-size: cover;
  /* z-index: -1; */
  position: relative;
  background-position: 30%;
  height: 86rem;
}

.section-transparent {
  position: relative;
}

.section-about {
  color: #000;
}

.section-text-support {
  position: relative;
  border-radius: 9999px;
  border-left: 1px solid #114e81;
  border-right: 1px solid #114e81;
  border-radius: 0.9rem; /* Adjust border radius as needed */
  padding: 20px; /* Adjust padding as needed */
  width: 90rem;
  margin-top: 2rem;
}

.section-para-support {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 8rem;
}

.section-title-support {
  margin-bottom: 3.6rem;
}

.section-text-support::before,
.section-text-support::after {
  content: "";
  position: absolute;
  width: 20px; /* Adjust size of corner */
  height: 20px; /* Adjust size of corner */
  background-color: #114e81; /* Color of the corner */
}

.section-text-support::before {
  top: -2px; /* Adjust position to align with border */
  left: -2px; /* Adjust position to align with border */
  border-top-left-radius: 10px; /* Adjust border radius to match container */
}

.section-text-support::after {
  bottom: -2px; /* Adjust position to align with border */
  right: -2px; /* Adjust position to align with border */
  border-bottom-right-radius: 10px; /* Adjust border radius to match container */
}

.footer {
  background-color: #faf7f2;
}

.copy-right {
  position: absolute;
  bottom: 2rem;
  color: #114e81;
  right: 49rem;
  font-size: 1.6rem;
}

/* Hide dropdown menus by default */
.easa-nav-drop,
.train-nav-drop {
  display: none;
}

.part66-nav.active .easa-nav-drop:hover,
.part147-nav.active .train-nav-drop:hover {
  cursor: pointer;
}

/* Show dropdown menu when parent li is clicked */
.part66-nav.active .easa-nav-drop,
.part147-nav.active .train-nav-drop {
  display: block;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd; /* Add a border for elegance */
  border-radius: 4px; /* Add some border radius for rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.section-hero {
  position: relative;
  height: 214rem;
  width: 100%;
}

.background-vedio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background-image: url(../images/header-3.jpg);

  /* background-image: url(../images/header-3.webp); */
  /* background-color: #cf711f; */
  background-position: center bottom;
  background-size: cover;

  z-index: -1; /* Ensure the video stays in the background */
}

.vedio-quotes {
  position: absolute;
  top: 9%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  /* z-index: 999; */
}

.quotes {
  margin: 0 auto;
}

.header-btn-div {
  position: absolute;
  bottom: 2rem; /* Adjust as needed */
  left: 72%;
  transform: translateX(-50%);
  text-align: center;
  top: 19%;
  z-index: 997;
}

.heading-primary,
.hero-description {
  opacity: 0;
  position: relative;
}

.heading-primary {
  animation: slideRight 1s forwards;
}

.hero-description {
  animation: slideLeft 1s forwards;
  font-weight: 600;
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.butn {
  opacity: 0;
  position: relative;
}

.btn--full {
  animation: slideFromBack 1s forwards;
  animation-delay: 0.5s; /* Adjust the delay as needed */
}

.btn--outline {
  margin-top: 3.2rem;
  animation: slideFromBack 1s forwards;
  animation-delay: 1s; /* Adjust the delay as needed */
}

@keyframes slideFromBack {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.window-img {
  display: block;
}

.mobile-img {
  display: none;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.offcanvas-header {
  padding-top: 2rem !important;
  padding-right: 1.6rem !important;
}

.btn-close {
  padding-right: 3rem !important;
  font-size: 1.6rem;
  color: #333 !important;
}

.offcanvas-body ul li {
  list-style-type: none;
  font-size: 2.2rem;
  padding-left: 13rem;
  font-weight: 500;
  padding-bottom: 2rem;
}

.offcanvas-anchore {
  text-decoration: none;
  color: #cf711f;
}

.offcanvas-anchore:hover,
.offcanvas-anchore:active {
  color: #cf711f;
  border-bottom: solid 1px #cf711f;
}

.offcanvas-anchore:visited,
.offcanvas-anchore:link {
  color: #cf711f;
}

.offcanvas-body {
  margin-top: 6rem !important;
}

.btn-mobile-nav,
.icon-mobile-nav,
.offcanvas {
  display: none;
}

.btn-mobile-nav .btn {
  display: none !important;
}

.footer-sub-1 ul {
  padding-left: 0rem !important;
}

.footer-sub-3 ul {
  padding-left: 0rem !important;
}

.logo {
  height: 20.8rem;
  width: 26rem;
}

.training-bottom {
  color: #fff;
}

.link-underline:hover,
.link-underline:active {
  color: #cf711f;
  border-bottom: 2px solid #cf711f;
}

/* Modal CSS */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-content {
  width: 35% !important;
  height: 8rem !important;
  border-radius: 1.3rem !important;
}

.modal-close-succ {
  margin-right: -23rem !important;
  margin-top: -2rem !important;
}

.success-modal-para {
  font-size: 2rem;
}

.social-icon-name:hover{
cursor:pointer;
}




