/*--------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------

[Table of contents]
Default CSS
Preloader
Header
Hero Area
Section Heading
Course Category Area
Courses Area
About Area
Call To Action Area
Video Area
Course Area
Discount Area
Webinar Area
Webinar Single Page
Video Area
Counter Area
Pricing Area
Faq Area
Testimonial Area
Newsletter Area
Why Choose Area
Become Instructor Page
Login Form
Instructor Area
Key Topic
Contact
Instructors
Blog Page
Page Title Area
Instructor Profile Page
Course Single Page
Contact Page
Footer

--------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------
    Default CSS (Modern Light Theme)
---------------------------------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Rubik:wght@400;500;600;700;800;900&display=swap");

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: #ffffff;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

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

a,
a:visited,
a:focus,
a:active,
a:hover {
  text-decoration: none;
  outline: none;
}

a,
button {
  transition: all 0.3s ease-in-out;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-weight: 500;
}

button:focus {
  outline: 0;
}

a {
  color: #2c3e50;
  font-size: 16px;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: #1b5e20;
  margin: 0 0 15px;
}

h1 {
  font-size: 60px;
  line-height: 72px;
}

h2 {
  font-size: 42px;
  line-height: 52px;
}

h3 {
  font-size: 28px;
  line-height: 38px;
}

h4 {
  font-size: 22px;
  line-height: 28px;
}

h5 {
  font-size: 18px;
  line-height: 28px;
}

h6 {
  font-size: 16px;
  line-height: 26px;
}

/* Paragraph */
p {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #4a4a4a;
  margin-bottom: 15px;
}

/* Container */
.container {
  max-width: 1240px !important;
  margin: 0 auto;
  padding: 0 15px;
}

/* Buttons */
/* Enhanced Bright Green Button (Menu-style) */
.btn-default a,
button.btn-default {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1b5e20;
  /* Deep green text for contrast */
  background: linear-gradient(135deg, #b9f6ca, #69f0ae);
  /* Softer bright green gradient */
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 255, 128, 0.25);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.btn-default a:hover,
button.btn-default:hover {
  background: linear-gradient(135deg, #00e676, #76ff03);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 255, 128, 0.4);
  transform: translateY(-1.5px);
}

/* Optional active state if used in navigation context */
.btn-default a.active,
button.btn-default.active {
  background: #43a047;
  color: #ffffff;
}

/* Utility Classes */
.bg-gray {
  background-color: #f9f9f9 !important;
}

.shadow-none {
  box-shadow: none !important;
}

.bg-cover {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Gradient Overlay */
.overlay {
  position: relative;
}

/* .overlay::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(42, 123, 155, 0.8) 0%, rgba(87, 199, 133, 0.8) 50%, rgba(237, 221, 83, 0.8) 100%);
    z-index: 1;
} */

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 38px;
    line-height: 48px;
  }

  h2 {
    font-size: 32px;
    line-height: 42px;
  }

  h3 {
    font-size: 24px;
    line-height: 34px;
  }

  p {
    font-size: 15px;
    line-height: 24px;
  }
}

/* Optional: subtle zoom-in effect on modal show */
.modal.fade .modal-dialog {
  transform: scale(0.95);
  transition: transform 0.3s ease-out;
}

.modal.fade.show .modal-dialog {
  transform: scale(1);
}

/*--------------------------------------------------------------------
    Preloader
---------------------------------------------------------------------*/
.preloader {
  background-color: #130f40;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.d-table {
  width: 100%;
  height: 100%;
}

/*-------------------------------------------------------------------------------------
    Header
---------------------------------------------------------------------------------------*/
.header-top-area {
  background: green;
  overflow: hidden;
  padding: 15px 0;
}

.header-top-wrap {
  display: flex;
  align-items: center;
}

.header-course-search {
  flex-basis: 20%;
  position: relative;
  margin-right: 15px;
}

.header-course-search input {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-family: "Rubik", sans-serif;
  padding-left: 20px;
  height: 40px;
  border-radius: 6px;
  color: #333;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  /* subtle shadow */
}

.header-course-search input:focus {
  background-color: #ffffff;
  border-color: #43a047;
  /* vibrant green */
  outline: none;
}

.header-course-search span {
  position: absolute;
  color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  top: 10px;
  right: 20px;
}

.header-contact-info {
  flex-basis: 65%;
  padding-right: 25px;
}

.header-contact-info li {
  font-family: "Rubik", sans-serif;
  color: #ffffff;
  display: inline-block;
  padding-right: 40px;
  font-weight: 500;
}

.header-contact-info li i {
  margin-right: 4px;
}

.header-top-social {
  flex-basis: 15%;
}

.header-top-social li {
  display: inline-block;
}

.header-top-social li a {
  display: block;
  text-align: center;
  width: 28px;
  height: 28px;
  font-size: 15px;
  line-height: 28px;
  margin: 0 3px;
  color: #555;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-top-social li a:hover {
  background: #ffee58;
  /* light yellow */
  color: #000;
  transform: scale(1.1);
  /* slight zoom */
}

.header-btm-area {
  padding: 20px 0;
  transition: 0.5s;
  position: relative;
  color: #ffffff;
  background: linear-gradient(90deg, #81c784 0%, #d0f8ce 50%, #81c784 100%);
  background-repeat: repeat-x;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
}

.main-menu-wrap {
  display: flex;
  align-items: center;
}

.site-logo {
  flex-basis: 20%;
}

.site-logo img {
  max-width: 160px;
}

.main-menu-area {
  flex-basis: 65%;
}

.header-cart {
  flex-basis: 6%;
}

.header-log-reg {
  flex-basis: 19%;
}

.main-menu-area ul li {
  display: inline-block;
  position: relative;
  padding: 0 10px;
}

.main-menu-area ul li a {
  display: block;
  padding: 10px 5px;
  font-size: 18px;
  font-weight: 700;
  color: #1b5e20;
  /* deep green */
  border-radius: 6px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.main-menu-area ul li a.active {
  color: #ffffff;
  background: #43a047;
  /* medium green background */
}

.main-menu-area ul li a:hover {
  color: #ffffff;
  background: #66bb6a;
  /* lighter green on hover */
}

/* Submenu Styling */
.main-menu-area .sub-menu {
  position: absolute;
  top: 40px;
  z-index: 99;
  background: #ffffff;
  width: 220px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
  border-top: 4px solid #81c784;
  /* green accent */
  padding: 5px 0;
}

.main-menu-area .sub-menu li {
  border-bottom: 1px solid #e0f2f1;
  display: block;
}

.main-menu-area .sub-menu li:last-child {
  border-bottom: none;
}

.main-menu-area ul .sub-menu li a {
  font-size: 16px;
  color: #1b5e20;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
  background-color: #f1f8e9;
  /* soft green tint */
}

.main-menu-area ul li:hover ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.main-menu-area ul li ul li a:hover {
  padding-left: 25px;
  background: #a5d6a7;
  /* hover soft green */
  color: #004d40;
}

.header-cart a {
  color: #333;
  font-size: 20px;
  position: relative;
  transition: 0.3s;
}

.header-cart a:hover {
  color: #0d47a1;
}

.header-cart a span {
  position: absolute;
  right: -15px;
  top: -6px;
  background-color: #0d47a1;
  color: #fff;
  font-family: "Rubik";
  border-radius: 50%;
  padding: 1px 5px;
  font-size: 13px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}

.header-log-reg ul {
  display: flex;
  /* Use flexbox for horizontal alignment */
  gap: 12px;
  /* Space between buttons */
  padding: 5px 20px;
  margin: 0;
  /* Remove default ul margin */
  list-style: none;
  /* Remove bullets */
  align-items: center;
  /* Vertically center buttons if different heights */
}

.header-log-reg ul li {
  margin: 0;
  /* Remove extra margin */
  padding: 0;
  color: #333;
}

.header-log-reg ul li a {
  display: inline-block;
  padding: 8px 22px;
  font-size: 15px;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  color: #00796b;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  border: 2px solid #00796b;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
  /* Prevent buttons from wrapping */
}

.header-log-reg ul li a:hover {
  color: #004d40;
  background: #a5d6a7;
  border-color: #004d40;
  cursor: pointer;
}

.sidebar-content .header-log-reg {
  margin-bottom: 30px;
}

@media (max-width: 657px) {
  .header-log-reg ul {
    flex-direction: column;
    /* Stack vertically on small screens */
    gap: 8px;
    padding: 10px 20px;
  }

  .header-log-reg ul li a {
    color: #000 !important;
    border-color: #000 !important;
    background: #fff !important;
    width: 100%;
    /* Full width on mobile for better touch */
    text-align: center;
  }

  .header-log-reg ul li a:hover {
    color: #004d40 !important;
    background: #a5d6a7 !important;
    border-color: #004d40 !important;
  }
}

.header-area.sticky {
  position: fixed;
  z-index: 99;
  width: 100%;
  background-color: #fff;
  top: 0;
  transition: 0.5s;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.header-area.sticky .header-top-area {
  display: none;
}

.header-area.sticky .header-btm-area {
  padding: 16px 0;
  transition: 0.5s;
  position: relative;
  color: #ffffff;
  background: linear-gradient(90deg, #81c784 0%, #d0f8ce 50%, #81c784 100%);
  background-repeat: repeat-x;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
}

.sidebar-inner {
  position: relative;
  padding: 45px;
}

.sidebar-close {
  position: absolute;
  top: 48px;
  right: 45px;
}

.sidebar-logo {
  padding-bottom: 30px;
  border-bottom: 1px solid transparent;
}

.sidebar-logo img {
  max-width: 140px;
}

.sidebar-wrap {
  position: fixed;
  right: -485px;
  top: 0;
  width: 445px;
  height: 100%;
  /* color: #ffffff; */
  background: linear-gradient(90deg, #81c784 0%, #81c784 100%);
  overflow-y: scroll;
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.15);
  z-index: 9999999;
  transition: all 0.5s ease-out 0s;
}

.sidebar-wrap.sidebar-opened {
  right: 0px;
}

.header-toggle-btn {
  display: none;
  margin-left: 0;
  justify-content: flex-end;
}

.header-toggle-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: 50%;
  color: #130f40;
  transition: 0.3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  top: 5px;
}

.header-toggle-btn a::before {
  content: "";
  position: absolute;
  height: 40px;
  width: 40px;
  top: 50%;
  left: 50%;
  color: #130f40;
  border-radius: 6px;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-out;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav {
  background: transparent;
  margin-top: 0;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: #130f40;
  border-top: 1px solid #ebebeb;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0 !important;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: transparent;
}

.sidebar-close-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  font-size: 16px;
  background: #fff;
  color: #333;
  transition: 0.3s;
}

.sidebar-close-btn:hover {
  background: #f0f0f0;
  color: #000;
}

.mean-container .mean-nav ul li li a {
  opacity: 1;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: -6px;
  font-size: 24px;
}

.mobile-menu.mean-container {
  overflow: hidden;
}

.sidebar-content .search-form {
  margin: 20px 0 25px;
}

.sidebar-content .search-form span {
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 20px;
  color: #888;
}

.sidebar-content .contact-info {
  padding: 0;
}

.sidebar-content .contact-info li {
  margin: 0;
  padding: 6px 0;
  color: #444;
}

.sidebar-content .social-icon li {
  display: inline-block;
}

.sidebar-content .social-icon li a {
  margin: 0 10px 0 0;
}

.sidebar-content .social-icon {
  margin: 20px 0 30px;
}

.sidebar-content .social-icon li span {
  font-family: "Rubik";
  margin-right: 10px;
  font-size: 16px;
  color: #444;
}

.sidebar-content .header-log-reg {
  margin-bottom: 30px;
}

/*-------------------------------------------------------------------------------------
    Hero Area
---------------------------------------------------------------------------------------*/
.hero-area {
  background-image: url(../images/banner-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0;
  position: relative;
}

.hero-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 1, 51, 0.7);
}

.caption-content {
  position: relative;
  padding: 0 10%;
}

.caption-content h4 {
  color: #ff630e;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 2px;
  font-weight: 600;
}

.caption-content h2 {
  font-size: 70px;
  line-height: 77px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.caption-content p {
  color: #fff;
  padding: 0 200px;
}

.caption-content ul {
  margin: 45px 0px 0;
}

.caption-content ul li {
  display: inline-block;
  margin-right: 19px;
}

.caption-content li a {
  display: block;
  background-color: #ff630e;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.caption-content li a:hover {
  color: #ff630e;
  background-color: #fff;
}

.caption-content li .btn-bg {
  background-color: #fff;
  color: #ff630e;
}

.caption-content li .btn-bg:hover {
  background-color: #ff630e;
  color: #fff;
}

.hero-area.two {
  background-image: url(../images/banner-4.jpg);
}

.hero-area.two:before {
  background-color: transparent;
  background-image: linear-gradient(60deg, #050133 50%, #05013340 100%);
  opacity: 0.8;
}

.caption-content.two {
  padding-right: 20%;
  padding-left: 0;
}

.caption-content.two p {
  padding: 0 200px 0 0;
}

.hero-area.three {
  background-image: url(../images/banner-5.jpg);
}

.content h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  color: #fff;
}

.content p {
  color: #fff;
}

.course-search {
  position: relative;
  margin: 50px 100px 55px;
  padding: 30px;
  background-color: #ffffffbd;
  border-radius: 10px 10px 10px 10px;
}

.course-search input {
  height: 60px;
  padding-left: 20px;
  font-family: "Rubik";
}

.search-btn {
  position: absolute;
  top: 35px;
  right: 31px;
  height: 50px;
  padding: 0 20px;
  border-radius: 4px;
  background-color: #ff630e;
  color: #fff;
  font-size: 20px;
  margin-right: 5px;
  border: 0;
}

.hero-feat {
  padding: 0 20%;
}

.feat-icon img {
  width: 60px;
}

.feat-cont h3 {
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  margin: 0;
}

.feat-cont p {
  color: #fff;
}

.feat-cont {
  padding-left: 20px;
}

.hero-area.four {
  background-image: url(../images/banner-6.jpg);
  padding-bottom: 270px;
}

/*-------------------------------------------------------------------------------------
    Section Heading
---------------------------------------------------------------------------------------*/

.sec-heading {
  margin-bottom: 0px;
}

.sec-heading h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  color: #00e676;
  /* Bright neon green to match theme */
  letter-spacing: 1px;
}

.sec-heading h2 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
}

/*-------------------------------------------------------------------------------------
    Category Area - Bright Background + Dark Modern Cards
-------------------------------------------------------------------------------------*/
.category-area {
  padding: 40px 0;
}

/* Section Heading */
.sec-heading h4 {
  color: #00e676;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sec-heading h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1b5e20;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Card Container */
.category-single {
  background: #ffffff;
  /* Full white background */
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  /* margin-bottom: 30px; */
  border: 1px solid #e0e0e0;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  min-height: 100%;
}

.box-1 {
  display: flex;
  border: 2px solid #43a047;
  border-radius: 10px;
  padding: 20px;
  box-shadow: inset 5px 5px 20px 0px #4f8b7d;
  background: #9cd89d52;
  justify-content: space-between;
  align-items: center;
}

.img-dtproduct {
  display: flex;
  justify-content: center;
  /* horizontally center */
  align-items: center;
  /* vertically center */
  padding: 10px;
  /* border: 1px solid #ddd;
  border-radius: 8px; */
  background-color: transparent;
  max-width: 100%;
  height: auto;
  /* optional fixed height: e.g., 300px */
  overflow: hidden;
  text-align: center;
}

.img-dtproduct img {
  max-width: 50%;
  height: auto;
  object-fit: contain;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-single:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

/* Image Style */
.category-single a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.category-single img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(1) contrast(1);
}

.category-single a:hover img {
  transform: scale(1.05);
  filter: brightness(1.05) contrast(1.05);
}

/* Title */
.category-single h4 a {
  color: #1b5e20;
  font-size: 30px;
  font-weight: 700;
  margin-top: 14px;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-single h4 a:hover {
  color: #00e676;
}

/* "All Products" Button */
.btn-default a {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1b5e20;
  /* Deep green text for contrast */
  background: linear-gradient(135deg, #b9f6ca, #69f0ae);
  /* Softer bright green gradient */
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 255, 128, 0.25);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.btn-default a:hover {
  background: linear-gradient(135deg, #00e676, #76ff03);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 255, 128, 0.4);
  transform: translateY(-1.5px);
}

/* Optional active state if used in navigation context */
.btn-default a.active,
button.btn-default.active {
  background: #43a047;
  color: #ffffff;
}

/* Spacing Between Rows */
.category-area .row:not(:last-child) {
  margin-bottom: 10px;
}

.prod-2 {
  width: 700px;
}

/* Responsive Improvements */
@media (max-width: 992px) {
  .category-single img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .sec-heading h2 {
    font-size: 28px;
  }

  .prod-1 {
    display: block !important;
  }

  .box-1 {
    display: block !important;
    text-align: center;
  }

  .prod-2 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 220px;
    margin: 0 auto;
    text-align: center;
  }

  .category-single img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .category-single img {
    height: auto;
  }

  .category-single h4 a {
    font-size: 30px;
  }

  .btn-default a {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------------------------
    Courses Area
---------------------------------------------------------------------------------------*/

.course-card.two {
  margin: 10px 5px;
  -webkit-box-shadow: 0 0;
  box-shadow: 0 0;
}

.course-card.two:hover {
  -webkit-box-shadow: 0 0;
  box-shadow: 0 0;
}

.course-card.two h5 {
  position: absolute;
  top: 7px;
  left: 5px;
  color: #fff;
  background-color: #ff630e;
  padding: 4px 15px;
  font-size: 12px;
  line-height: 22px;
  margin-top: 15px;
  margin-left: 15px;
  border-radius: 4px;
  font-family: "Rubik", Sans-serif;
}

.slider.owl-carousel .owl-nav>div {
  position: absolute;
  top: 233px;
  left: -66px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
  border-radius: 4px;
  margin-left: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 900;
  color: #696969;
}

.feature-area.two button {
  position: absolute;
  border: 0;
  height: 30px;
  top: 6px;
  right: 19px;
  color: #ff630e;
  background-color: transparent;
}

.feature-area.two input {
  font-family: "Rubik", sans-serif;
  padding-left: 20px;
}

.tutor-course-form select {
  font-family: "Rubik", sans-serif;
  height: 50px !important;
  color: #130f40;
}

.tutor-courses h5 {
  color: #130f40;
  font-family: "Rubik";
  font-weight: 400;
  font-size: 16px;
}

.tutor-courses span {
  font-weight: 600;
}

.feature-text {
  color: #353535;
  padding: 10px 0;
  margin-top: 10px;
}

.course-sidebar .form-check-label {
  font-size: 16px;
  font-family: "Rubik";
  cursor: pointer;
  color: #130f40;
}

.search-result {
  margin-bottom: 50px;
}

.course-sidebar-search input {
  height: 50px;
  padding-left: 50px;
  font-family: "Rubik";
}

.course-sidebar-search {
  position: relative;
  margin-right: 25px;
}

.course-sidebar-search button {
  position: absolute;
  top: 12px;
  border: 0;
  background-color: transparent;
  font-size: 20px;
  color: #949597;
  left: 10px;
}

.course-sidebar h4 {
  font-size: 20px;
  color: #130f40;
  margin: 40px 0 18px;
  font-weight: 700;
}

.course-archive {
  padding: 100px 0;
}

.form-check {
  margin-bottom: 14px;
}

.course-card.four h5 {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
  background-color: #ff630e;
  padding: 4px 15px;
  font-size: 12px;
  line-height: 22px;
  border-radius: 4px;
  font-family: "Rubik", Sans-serif;
}

.course-card-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px;
  background-color: #fff;
  border-radius: 4px;
}

.course-card-icon img {
  width: 15px;
}

.course-rating ul li i {
  margin-right: 2px;
}

.course-content.four {
  padding: 25px 15px 15px;
}

.course-price.four span {
  color: #ff630e;
  font-size: 16px;
  font-weight: 500;
  float: left;
}

.course-cart {
  float: right;
}

.course-meta li {
  display: inline-block;
  margin-right: 20px;
  font-family: "Rubik";
}

.course-meta li i {
  margin-right: 2px;
  color: #757c8e;
}

.course-title {
  margin: 6px 0 15px;
}

.course-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Rubik";
  color: #5b616f;
  margin-top: 16px;
}

.course-author .avator {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #7fc562;
  display: block;
  text-align: center;
  border-radius: 50%;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
}

.course-author span {
  font-weight: 500;
  margin-left: 6px;
  color: #130f40;
}

.course-cart i {
  color: #ff630e;
}

.course-cart a {
  margin-left: 5px;
  color: #130f40;
  font-weight: 500;
}

.course-cart a:hover {
  color: #ff630e;
}

.course-pagination li {
  display: inline-block;
}

.course-pagination li a,
.course-pagination li span {
  background-color: #eff1f7;
  display: block;
  width: 45px;
  height: 45px;
  line-height: 46px;
  border-radius: 4px;
  margin: 0 4px;
  font-weight: 700;
  font-size: 18px;
}

.course-pagination li span,
.course-pagination li a:hover {
  background-color: #ff630e;
  color: #fff;
}

.course-carousel.owl-carousel .owl-nav>div {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 40px;
  color: #696969;
  left: -30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.course-carousel.owl-carousel .owl-nav>div:hover {
  color: #ff630e;
}

.course-carousel.owl-carousel .owl-nav .owl-next {
  left: auto;
  right: -30px;
}

.course-card.bg-gray.two {
  margin: 0;
}

/*-------------------------------------------------------------------------------------
    About Area
---------------------------------------------------------------------------------------*/

.about-area {
  padding: 85px 0 210px;
}

.about-img {
  margin-top: 100px;
  position: relative;
}

.about-img>img {
  width: 300px;
}

.about-img img {
  border-radius: 20px;
}

.about-img-inner {
  position: absolute;
  top: -85px;
  right: 50px;
  width: 300px;
}

.about-img-two {
  position: absolute;
  top: 145px;
  right: 0;
  width: 270px;
}

.about-cont {
  margin-left: 50px;
}

.about-cont h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ff630e;
  letter-spacing: 1px;
}

.about-cont h2 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-cont a {
  margin-top: 30px;
}

.about-img.two {
  width: 100%;
  margin-top: 0;
}

.about-area.three .sec-heading {
  margin-top: 40px;
}

.about-area.four {
  padding: 210px 0 75px;
}

.about-img-four img {
  border-radius: 20px;
}

.about-area.four .sec-heading {
  margin: 55px 140px 0;
}

.about-area.five {
  padding: 0;
}

.row.about-counter-wrap {
  margin: 0 130px;
}

.about-img-four.margin {
  margin-top: -110px;
}

/*-------------------------------------------------------------------------------------
    Call To Action Area
---------------------------------------------------------------------------------------*/
.call-to-action-area {
  background-image: url(../images/banner-1.jpg);
  padding: 90px 0 100px;
}

.call-to-action-cont h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ff630e;
  letter-spacing: 1px;
}

.call-to-action-cont h2 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.call-to-action-cont .btn-default a {
  margin-top: 20px;
  color: #1b5e20;
  /* Deep green text for contrast */
  background: linear-gradient(135deg, #b9f6ca, #69f0ae);
  /* Softer bright green gradient */
}

.call-to-action-cont .btn-default a:hover {
  background: linear-gradient(135deg, #00e676, #76ff03);
  color: #ffffff;
}

/*-------------------------------------------------------------------------------------
    Video Area
---------------------------------------------------------------------------------------*/
.video-area {
  padding: 100px 0 90px;
}

.video-area.two {
  padding: 100px 0;
}

.video-cont-two {
  margin: 55px 0 0 40px;
}

.video-cont-two .btn-default a {
  margin: 0;
}

/*-------------------------------------------------------------------------------------
    Course Area
---------------------------------------------------------------------------------------*/

.course-area {
  padding: 90px 0 210px;
  background: url(../images/bg-product.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.course-area::before {
  content: "";
  background-color: rgba(19, 15, 64, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

.course-card {
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #fff;
  position: relative;
}

.course-card:hover {
  -webkit-box-shadow: 0 10px 40px rgba(51, 51, 51, 0.1);
  box-shadow: 0 10px 40px rgba(51, 51, 51, 0.1);
}

.course-content {
  padding: 30px 35px;
}

.course-price {
  color: #ff630e;
  font-size: 24px;
  font-weight: 700;
}

.course-title a {
  color: #130f40;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.course-title a:hover {
  color: #ff630e;
}

.star-rating-group {
  color: #f4c150;
  display: inline-block;
  text-align: left;
  font-size: 18px;
}

.course-rating-count {
  margin-left: 5px;
  font-size: 16px;
  font-family: "Rubik", Sans-serif;
  color: #696969;
}

.course-content-footer {
  border-top: 1px solid #efecec;
  padding-top: 20px;
  margin: 25px 0;
  font-size: 15px;
  font-family: "Rubik", Sans-serif;
  color: #696969;
}

.course-duration {
  float: left;
}

.course-user {
  float: right;
}

.course-content-footer ul li i {
  color: #696969;
  margin-right: 2px;
}

.course-card.three .course-thumbnail {
  position: relative;
}

.course-card.three h5 {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #ff630e;
  background-color: #fff;
  padding: 4px 15px;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  border-radius: 4px;
  font-family: "Rubik", Sans-serif;
}

.category-btn a {
  margin-top: 30px;
}

.feat-course-area {
  padding: 90px 0;
}

.course-area.two {
  padding: 90px 0;
}

.course-area.three {
  padding: 90px 0 100px;
}

/*-------------------------------------------------------------------------------------
    Discount Area
---------------------------------------------------------------------------------------*/

.discount-area {
  background-color: #2a2a3d;
  /* background-image: url(../images/bg-2.png); */
  background-position: bottom center;

  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}

.discount-area-two {
  padding: 0 0 20px;
}

.discount-wrap {
  color: #ffffff;
  background: linear-gradient(90deg, #81c784 0%, #d0f8ce 50%, #81c784 100%);
  /* margin-top: -210px; */
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.discount-wrap.two {
  margin-top: 0;
}

.discount-wrap.three {
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(51, 51, 51, 0.1);
  box-shadow: 0px 20px 40px 0px rgba(51, 51, 51, 0.1);
  padding: 50px;
  border-radius: 20px;
  margin-top: -100px;
}

.discount-img {
  /* border: 10px solid #fff;
  border-radius: 10px 0 0px 10px; */
  width: 25%;
  float: left;
  height: 100px;
}

.discount-img img {
  object-fit: cover;
}

.discount-cont {
  padding: 40px 50px 20px;
  width: 55%;
  float: left;
}

.discount-cont h2 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;
  padding-bottom: 15px;
  color: #1b5e20;
}

.discount-cont h4 {
  color: #00e676;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 26px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.discount-cont p {
  color: #1b5e20;
}

#countdown {
  margin: 40px 0;
}

.syotimer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.syotimer__body>div {
  margin-right: 60px;
}

.syotimer-cell__value {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.syotimer-cell__unit {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  font-family: "Rubik", sans-serif;
  text-transform: uppercase;
}

.discount-cont .btn-default a {
  color: #1b5e20;
  /* Deep green text for contrast */
  background: linear-gradient(135deg, #b9f6ca, #69f0ae);
  /* Softer bright green gradient */
  margin-top: 10px;
}

.discount-cont .btn-default a:hover {
  background: linear-gradient(135deg, #00e676, #76ff03);
  color: #ffffff;
}

.discount-area.two {
  background: none;
  padding-top: 20px;
}

.discount-wrap.two {
  background-image: url(../images/banner-1.jpg);
  position: relative;
  border-radius: 50px;
  padding: 100px 0px;
}

.discount-wrap.two:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: linear-gradient(140deg, #050133 50%, #ffffff57 100%);
  opacity: 0.86;
}

.discount-cont.two {
  width: auto;
  float: none;
  padding: 0 50px;
}

.countdown-two .syotimer-cell {
  width: 25%;
  height: 110px;
  background-color: #130f408f;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #ffffff21;
  border-radius: 10px 10px 10px 10px;
  -webkit-box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 50%);
  box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 50%);
  margin-left: 6px;
  margin-right: 6px !important;
  padding: 16px 0px 5px 0px;
  text-align: center;
}

.syotimer-cell__value {
  color: #ff630e;
}

.discount-cont.three .syotimer__body>div {
  text-align: center;
}

.discount-cont.three {
  padding: 0 0 0 45px;
}

.discount-cont.three h2,
.discount-cont.three .syotimer-cell__unit {
  color: #130f40;
}

.discount-cont.three .btn-default a {
  color: #1b5e20;
  /* Deep green text for contrast */
  background: linear-gradient(135deg, #b9f6ca, #69f0ae);
  /* Softer bright green gradient */
}

.discount-cont.three #countdown {
  margin: 0 0 25px;
}

.discount-cont.three .btn-default a:hover {
  background: linear-gradient(135deg, #00e676, #76ff03);
  color: #ffffff;
}

/*-------------------------------------------------------------------------------------
    Webinar Area
---------------------------------------------------------------------------------------*/

.Webinar-area {
  padding: 0 0 250px;
}

.webinar-single {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  margin-bottom: 30px;
  transition: 0.5s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.webinar-single:hover {
  -webkit-box-shadow: 0 10px 40px rgba(51, 51, 51, 0.1);
  box-shadow: 0 10px 40px rgba(51, 51, 51, 0.1);
}

.webinar-img {
  position: relative;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
  display: flex;
  align-items: center;
  /* vertically center */
  justify-content: center;
  /* horizontally center */
  background: transparent;
}

.webinar-img img,
.pdp-detail img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.pdp-detail {
  position: relative;
  padding-top: 56.25%;
}

.price {
  font: 16px;
  font-weight: bold;
}

.webinar-content {
  padding: 15px 20px 0 20px;
  width: 100%;
  text-align: center;
}

.webinar-content h3 {
  color: #130f40;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
}

.webinar-content h3:hover {
  color: #76ff03;
}

.webinar-meta li {
  display: inline-block;
  margin-right: 10px;
}

.webinar-meta li i {
  color: #76ff03;
  margin-right: 5px;
}

.webinar-meta span {
  color: #696969;
  font-family: "Rajdhani", Sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
  margin-left: 12px;
}

.webinar-content p {
  margin-top: 15px;
}

.webinar-btn a {
  font-size: 15px;
  line-height: 25px;
  color: #ff630e;
  border: 1px solid #ff630e;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: "Rubik", sans-serif;
  display: inline-block;
  margin-top: 5px;
}

.webinar-btn a:hover {
  color: #fff;
  background-color: #ff630e;
}

.webinar-area.two {
  background-color: #f7f7f7;
  padding: 100px 0;
}

.webinar-area.three {
  padding: 100px 0 70px;
}

.webinar-area.four {
  padding: 80px 0 90px;
}

.Webinar-area.two {
  padding: 90px 0 70px;
}

/*-------------------------------------------------------------------------------------
    Webinar Single Page
---------------------------------------------------------------------------------------*/
.webinar-single-area {
  padding: 100px 0;
}

.webinar-meta-info li {
  display: inline-block;
  font-weight: 700;
  font-size: 24px;
  margin-right: 35px;
  line-height: 34px;
}

.webinar-meta-info li img {
  width: 22px;
  margin-right: 10px;
}

.webinar-meta-info {
  width: 85%;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
  padding: 40px;
  margin-top: -50px;
  background-color: #fff;
  border-radius: 10px;
}

#countdown.countdown-three .syotimer__body {
  padding: 0 230px;
  margin-top: 100px;
}

#countdown.countdown-three .syotimer__body>div {
  margin-right: 25px;
}

#countdown.countdown-three .syotimer-cell__value {
  color: #130f40;
}

#countdown.countdown-three .syotimer-cell__unit {
  color: #130f40;
  font-weight: 500;
}

#countdown.countdown-three .syotimer-cell {
  -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
  width: 160px;
  height: 160px;
  padding-top: 45px;
  border-radius: 100%;
  text-align: center;
}

.webinar-single-area h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
}

.webinar-single-desc .about {
  margin-bottom: 50px;
  margin-top: 100px;
}

.webinar-single-desc li {
  padding: 10px 0;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #696969;
}

.webinar-single-desc li i {
  color: #ff630e;
  padding-right: 8px;
}

.key-topic-single h4 {
  font-weight: 700;
}

.key-topic-single img {
  width: 20px;
  margin-right: 15px;
}

.key-topic-single p {
  padding-left: 35px;
}

.webinar-single-desc list-content {
  margin-bottom: 86px;
  overflow: hidden;
}

.webinar-single-desc .list-content {
  margin-bottom: 50px;
}

.webinar-single-desc .list-content h2 {
  margin-left: -15px;
}

.key-topic h2 {
  margin-bottom: 25px;
}

.speakers-area {
  padding: 70px 0;
}

.speakers-area h2 {
  margin-left: 15px;
  margin-bottom: 30px;
}

.contact-form.webinar {
  margin-left: 0;
}

.webinar-registration.contact h2 {
  margin-bottom: 30px;
}

.webinar-area.four.single {
  padding-bottom: 0;
}

.webinar-area.four.single h2 {
  margin-left: 15px;
  margin-bottom: 20px;
}

/*-------------------------------------------------------------------------------------
    Video Area
---------------------------------------------------------------------------------------*/
.video-player-wrap {
  background-image: url(../images/banner-6.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0px 240px 0px;
  margin-top: -270px;
  border: 15px solid #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 40px rgba(51, 51, 51, 0.2);
  box-shadow: 0 10px 40px rgba(51, 51, 51, 0.2);
  position: relative;
}

.video-player-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.video-player-wrap-two {
  background-image: url(../images/banner-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0;
  border-radius: 10px;
}

.d-table {
  width: 100%;
  height: 100%;
}

.video-player a {
  display: inline-block;
  width: 80px;
  height: 80px;
  font-size: 30px;
  line-height: 80px;
  padding: 0 28px;
  background-color: #fff;
  color: #ff630e;
  position: relative;
  border-radius: 4px;
}

.video-player a:hover {
  background-color: #ff630e;
  color: #fff;
}

.video-player a:before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  height: 90px;
  width: 90px;
  border: 3px solid #fff;
  border-radius: 4px;
  -webkit-animation: icon-bubble 1s infinite forwards linear 0.5s;
  animation: icon-bubble 1s infinite forwards linear 0.5s;
}

.video-player a:after {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  height: 90px;
  width: 90px;
  border: 3px solid #fff;
  border-radius: 4px;
  -webkit-animation: icon-bubble 1s infinite forwards linear;
  animation: icon-bubble 1s infinite forwards linear;
}

@-webkit-keyframes icon-bubble {
  0% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 1;
  }

  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.8;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.55;
  }

  75% {
    -webkit-transform: scale(1.32);
    transform: scale(1.32);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}

@-webkit-keyframes icon-bubble {
  0% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 1;
  }

  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.8;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.55;
  }

  75% {
    -webkit-transform: scale(1.32);
    transform: scale(1.32);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes icon-bubble {
  0% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 1;
  }

  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.8;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.55;
  }

  75% {
    -webkit-transform: scale(1.32);
    transform: scale(1.32);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}

.video-cont {
  background-color: #fff;
  padding: 50px;
  margin-top: -90px;
  border-radius: 10px;
}

.video-cont h2 {
  font-size: 45px;
  font-weight: 700;
  margin: 0;
}

.counter-single {
  margin-left: 25px;
}

.counter-wrap {
  padding: 100px 65px 0;
}

.counter-single h2 {
  color: #ff630e;
  font-size: 50px;
  font-weight: 700;
}

.counter-single p {
  color: #130f40;
  font-size: 20px;
}

.video-player.two a {
  background-color: #fff;
  color: #ff630e;
}

.video-player.two a:hover {
  background-color: #ff630e;
  color: #fff;
}

.video-player.two a:before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  height: 90px;
  width: 90px;
  border: 3px solid #ff630e;
  border-radius: 4px;
  -webkit-animation: icon-bubble 1s infinite forwards linear 0.5s;
  animation: icon-bubble 1s infinite forwards linear 0.5s;
}

.video-player.two a:after {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  height: 90px;
  width: 90px;
  border: 3px solid #ff630e;
  border-radius: 4px;
  -webkit-animation: icon-bubble 1s infinite forwards linear;
  animation: icon-bubble 1s infinite forwards linear;
}

.video-player-wrap-two.alt {
  background-image: url(../images/img-lg-8.jpg);
}

/*-------------------------------------------------------------------------------------
    Counter Area
---------------------------------------------------------------------------------------*/

.counter-area {
  background-color: #130f40;
  background-image: url(../images/banner-bg-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 95px 0 80px;
  position: relative;
}

.counter-title.two p {
  color: #fff;
}

.counter-area-two {
  background-color: #f7f7f7;
  padding: 95px 0 80px;
}

/*-------------------------------------------------------------------------------------
    Pricing Area
---------------------------------------------------------------------------------------*/

.pricing-area {
  padding: 90px 0 100px;
}

.pricing-table {
  padding: 50px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 15px rgba(51, 51, 51, 0.1);
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.pricing-table:hover {
  -webkit-box-shadow: 0 20px 40px rgba(51, 51, 51, 0.1);
  box-shadow: 0 20px 40px rgba(51, 51, 51, 0.1);
}

.pricing-table h2 {
  font-size: 23px;
  font-weight: 600;
  line-height: 34px;
}

.pricing-table-currency {
  font-size: 24px;
  font-weight: 700;
  color: #130f40;
}

.pricing-table-price-text {
  color: #130f40;
  font-family: "Rajdhani", Sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
}

.pricing-table-body {
  margin-top: 25px;
}

.pricing-table-body li {
  color: #696969;
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 15px;
}

.pricing-feat-text {
  display: inline-block;
}

.pricing-table-feature-tooltip {
  border-bottom: 1px dotted;
  cursor: pointer;
}

.pricing-table-feature-tooltip-text {
  position: absolute;
  top: 221px;
  left: 50px;
  width: 250px;
  padding: 10px 20px;
  background-color: #fdece2;
  color: #000;
  font-family: "Rubik", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  visibility: hidden;
}

.pricing-table-feature-tooltip:hover .pricing-table-feature-tooltip-text {
  visibility: visible;
  opacity: 1;
}

.pricing-table button {
  border: 0;
  color: #fff;
  background-color: #ff630e;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 26px;
  letter-spacing: 1px;
  margin-top: 23px;
}

.pricing-table button:hover {
  background-color: #130f40;
}

/*-------------------------------------------------------------------------------------
    Faq Area
---------------------------------------------------------------------------------------*/

.faq-area {
  background-color: #f7f7f7;
  padding: 100px 0;
}

.faq-img {
  padding-right: 40px;
}

.faq-img img {
  border-radius: 20px;
}

.card {
  margin: 0px;
  border: none;
}

.card-header {
  position: relative;
  background-color: #fff;
  border-bottom: none;
  padding: 0;
  letter-spacing: 1px;
}

.card-body.current {
  display: block;
}

.card-header a:before {
  content: "\f067";
  font-family: "fontawesome";
  position: absolute;
  color: #ff630e;
  font-size: 12px;
  right: 15px;
}

.card-header.active a:before {
  content: "\f068";
}

.card-header a {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 25px;
  color: #130f40;
  display: block;
  position: relative;
  padding: 20px 25px;
}

.card-header a:hover {
  color: #ff630e;
}

.card-body {
  padding: 0;
  color: #696969;
  font-size: 16px;
  line-height: 28px;
  font-family: "Rubik", Sans-serif;
  padding: 0 25px 25px;
}

.card-header.two a:hover {
  color: #130f40;
}

.faq-area.two {
  background-color: #fff;
}

.faq-area.two .card-header {
  -webkit-box-shadow: 0 0 5px rgb(51 51 51 / 10%);
  box-shadow: 0 0 5px rgb(51 51 51 / 10%);
}

.faq-area.two .card-body {
  -webkit-box-shadow: 0 0 15px rgb(51 51 51 / 10%);
  box-shadow: 0 0 15px rgb(51 51 51 / 10%);
}

.faq-area.three {
  padding: 90px 0 80px;
}

/*-------------------------------------------------------------------------------------
    Testimonial Area
---------------------------------------------------------------------------------------*/

.testimonial-area {
  padding: 90px 0 100px;
}

.testi-single {
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 0 15px rgb(51 51 51 / 10%);
  box-shadow: 0 0 15px rgb(51 51 51 / 10%);
  padding: 35px 30px;
  border-radius: 10px;
  margin-top: 50px;
}

.testi-single:hover {
  -webkit-box-shadow: 0 10px 40px rgb(51 51 51 / 10%);
  box-shadow: 0 10px 40px rgb(51 51 51 / 10%);
}

.testi-client-info {
  overflow: hidden;
}

.testi-quote {
  color: #ff630e;
  font-size: 40px;
  display: inline-block;
  margin-bottom: 15px;
}

.testi-rating i {
  color: #f0932b;
  font-size: 18px;
  margin: 0 2px 6px;
  display: inline-block;
}

.testi-cont-inner p {
  margin: 10px 0 40px;
  font-family: "Rubik", Sans-serif;
}

.testi-client-img img {
  border: 2px solid #e6f0fa;
  max-width: 60px;
  border-radius: 50%;
  height: auto;
}

.testi-client-img {
  padding-right: 30px;
  max-width: 30%;
  float: left;
}

.testi-client-details {
  max-width: 70%;
  float: left;
}

.testi-client-details h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin: 0 0 6px;
  color: #130f40;
}

.testi-client-details h6 {
  font-family: "Rubik", Sans-serif;
  font-weight: 400;
  color: #696969;
}

.testimonial-area.two {
  padding: 95px 0 150px;
}

.testi-single.two {
  border: 1px solid #e6f0fa;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 20px;
  margin: 0;
}

.testi-carousel.owl-carousel .owl-dot {
  background-color: #0c2461;
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
}

.testi-carousel.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: -60px;
}

.testi-carousel.owl-carousel .owl-dot.active {
  background-color: #ff630e;
}

/*-------------------------------------------------------------------------------------
    Newsletter Area
---------------------------------------------------------------------------------------*/

.newsletter-wrap {
  /* background-color: #130F40; */
  /* background-image: url(../images/bg-2.png); */
  background: linear-gradient(90deg, #81c784 0%, #d0f8ce 50%, #81c784 100%);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
  border-radius: 50px;
  margin-top: 50px;
}

.newsletter-wrap.overlay:before {
  border-radius: 50px;
}

.newsletter-wrap h2 {
  color: #1b5e20;
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;
  margin: 0;
}

.form-section {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.subscribe-form input {
  font-family: "Rajdhani", sans-serif;
  padding-left: 25px;
  height: 55px;
  font-size: 16px;
  border-radius: 5px 0 0 5px;
  font-weight: 500;
  width: 100%;
  border: 0;
  position: relative;
  flex-grow: 1;
}

.subscribe-form button {
  position: relative;
  right: 0;
  border: 0;
  height: 55px;
  color: #1b5e20;
  /* Deep green text for contrast */
  background: linear-gradient(135deg, #b9f6ca, #69f0ae);
  /* Softer bright green gradient */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 5px 5px 0;
  padding: 0 20px;
  font-size: 16px;
  flex-grow: 0;
  white-space: nowrap;
}

.subscribe-form input:focus {
  outline: 0;
}

.subscribe-form button:hover {
  background: linear-gradient(135deg, #00e676, #76ff03);
  color: #ffffff;
}

.newsletter-area.two {
  background-image: url(../images/banner-1.jpg);
  padding: 95px 0 100px;
}

.newsletter-area.two.bg {
  background-image: url(../images/banner-bg.jpg);
}

/*-------------------------------------------------------------------------------------
    Why Choose Area
---------------------------------------------------------------------------------------*/

.why-choose-area {
  padding: 100px 0 65px;
}

.why-choose-area h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
  margin-bottom: 15px;
}

.why-choose-btn {
  margin: 50px 160px 0 0;
}

.why-choose-btn a {
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 26px;
  letter-spacing: 1px;
  padding: 14px 30px;
}

.why-choose-btn a:hover {
  background-color: #130f40;
}

.why-choose-cont-wrap {
  margin-top: 25px;
}

.why-choose-single {
  margin-bottom: 20px;
  overflow: hidden;
}

.why-choose-icon {
  width: 12%;
  float: left;
  margin-top: 5px;
}

.why-choose-icon img {
  width: 45px;
}

.why-choose-cont {
  width: 88%;
  float: left;
  padding-left: 15px;
}

.why-choose-cont h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.why-choose-area .sec-heading {
  padding-left: 0;
  margin-bottom: 20px;
}

.why-choose-img {
  padding-right: 35px;
}

.why-choose-img img {
  border-radius: 20px;
}

.why-choose-area.three {
  padding: 95px 0 100px;
}

.choose-single.three {
  padding: 40px 20px 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.choose-single.three:hover {
  -webkit-box-shadow: 0 20px 30px rgba(51, 51, 51, 0.1);
  box-shadow: 0 20px 30px rgba(51, 51, 51, 0.1);
}

.why-choose-icon.three {
  margin: 0 0 20px;
  width: 100%;
  float: none;
}

.why-choose-cont.three {
  max-width: 100%;
  float: none;
}

/*-------------------------------------------------------------------------------------
    Become Instructor Page
---------------------------------------------------------------------------------------*/

.work-area {
  padding: 80px 0;
}

.step-flow {
  padding: 0 30px;
}

.steps-icon img {
  width: 45px;
  margin: 40px;
}

.steps-icon {
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 10%);
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
  width: 125px;
  height: 125px;
  margin: 0 auto;
}

.steps-label {
  padding: 7px 10px;
  color: #fff;
  background: #ff630e;
  font-family: "Rubik", Sans-serif;
  font-size: 12px;
  position: absolute;
  top: 5px;
  right: 0px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 20px;
  line-height: 1;
}

.step-flow h2 {
  margin: 25px 0 15px;
  color: #130f40;
  font-family: "Rajdhani", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.countdown-steps {
  margin-left: 67px;
}

.step-flow.two span {
  font-family: "Rajdhani", Sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  color: #151515;
  margin: 17px;
}

.step-flow.two p {
  margin-left: 20p;
}

.countdown.two {
  margin: 25px 0 0;
}

.work-area.two {
  padding: 75px 0 10px;
}

.revenue-area {
  padding: 100px 0;
}

.revenue-img {
  margin-right: 30px;
}

.revenue-img img {
  border-radius: 20px;
}

.sec-heading p {
  margin: 20px 0 40px;
}

.register-btn a {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background-color: #ff630e;
  padding: 14px 30px;
  border-radius: 4px;
}

.register-btn a:hover {
  background-color: #130f40;
}

.joining-area {
  padding: 100px 0 60px;
}

.joining-img img {
  border-radius: 20px;
  margin-bottom: 26px;
}

.joining-area p {
  font-size: 18px;
}

.register-area.two {
  padding: 110px 0;
}

.regist-group {
  padding: 55px;
  -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
  border-radius: 10px;
}

.registration-form-wrap {
  -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
  padding: 40px;
  border-radius: 5px;
}

.registration-form-wrap input {
  height: 50px;
  font-family: "Rubik";
  font-size: 15px;
}

.registration-form-wrap label {
  font-family: "Rubik";
  color: #696969;
  font-size: 16px;
}

.registration-form-wrap input::-webkit-input-placeholder {
  color: #b0b6c8;
}

.registration-form-wrap input:-ms-input-placeholder {
  color: #b0b6c8;
}

.registration-form-wrap input::placeholder {
  color: #b0b6c8;
}

.registration-form-wrap .form-group {
  margin-bottom: 20px;
}

/*-------------------------------------------------------------------------------------
    Login Form
---------------------------------------------------------------------------------------*/
.login-area {
  padding: 100px 0;
}

.login-form-wrap {
  padding: 60px 55px;
  -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
}

.login-form-wrap h3 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.login-form-wrap input {
  height: 50px;
  font-family: "Rubik";
  border-radius: 6px;
}

.login-form-wrap .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.login-form-wrap input[type="checkbox"] {
  height: auto;
}

.login-form-wrap .checkbox label,
.forgot-pass a {
  font-size: 16px;
  color: #757c8e;
  font-family: "Rubik";
}

.login-btn a {
  display: inline-block;
  background-color: #ff630e;
  width: 100%;
  padding: 15px 0 13px;
  border-radius: 6px;
  height: 50px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 25px 0 20px;
}

.login-btn a:hover {
  background-color: #130f40;
}

.new-registration {
  color: #5b616f;
  font-family: "Rubik";
  font-size: 16px;
}

.new-registration a {
  display: inline-block;
  color: #ff630e;
  font-weight: 500;
  margin-left: 10px;
}

.new-registration a:hover {
  color: #0056b3;
}

/*-------------------------------------------------------------------------------------
    Instructor Area
---------------------------------------------------------------------------------------*/

.instruction-area {
  background-color: #f7f7f7;
  padding: 100px 0 130px;
}

.instruction-single {
  padding: 20px;
  -webkit-box-shadow: 0 0 15px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 15px rgba(51, 51, 51, 0.1);
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #fff;
  position: relative;
}

.instruction-single:hover {
  -webkit-box-shadow: 0 10px 50px rgba(51, 51, 51, 0.1);
  box-shadow: 0 10px 50px rgba(51, 51, 51, 0.1);
}

.instruction-img img {
  border-radius: 8px;
}

.instruction-cont h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 30px;
}

.instruction-btn {
  margin-bottom: -45px;
  margin-top: 35px;
}

.instruction-btn a {
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background-color: #ff630e;
  padding: 14px 30px;
  border-radius: 4px;
}

/*-------------------------------------------------------------------------------------
    Learn
---------------------------------------------------------------------------------------*/

.learn {
  padding: 40px 0 45px;
}

.icon {
  max-width: 10%;
  display: block;
  float: left;
  margin-top: 1px;
}

.learn-cont {
  max-width: 90%;
  margin-left: 36px;
}

.icon i {
  color: #ff630e;
  font-size: 25px;
}

/*-------------------------------------------------------------------------------------
    Key Topic
---------------------------------------------------------------------------------------*/

.icon img {
  width: 20px;
  margin: 3px 10px 0 6px;
}

.learn-cont h4 {
  font-weight: 700;
}

/*-------------------------------------------------------------------------------------
    Contact
---------------------------------------------------------------------------------------*/

.contact-form {
  padding: 30px 50px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 15px 0px rgb(51 51 51 / 10%);
  box-shadow: 0px 0px 15px 0px rgb(51 51 51 / 10%);
}

.contact label {
  margin-top: 20px;
  color: #130f40;
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
}

.contact label:after {
  content: " *";
  color: #f56c6c;
  margin-left: 3px;
}

.contact p {
  margin: 17px 0 7px;
  color: #130f40;
}

.contact input {
  padding: 15px 0px 15px 20px;
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
  height: 55px;
  border-radius: 5px;
}

.contact textarea {
  height: 130px;
}

.contact-btn {
  margin: 20px 0;
}

.contact-btn button {
  background-color: #ff630e;
  color: #fff;
  border-radius: 4px;
  padding: 14px 30px;
  font-family: "Rajdhani", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 26px;
  letter-spacing: 1px;
  border: none;
}

.contact-btn button:hover {
  background-color: #130f40;
}

/*-------------------------------------------------------------------------------------
    Instructors
---------------------------------------------------------------------------------------*/

.team-area {
  padding: 95px 0 70px;
}

.instructor-single {
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
  padding: 10px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.instructor-single.shadow-none {
  -webkit-box-shadow: 0 0;
  box-shadow: 0 0;
}

.instructor-single:hover {
  -webkit-box-shadow: 10px 0 30px rgba(51, 51, 51, 0.15);
  box-shadow: 10px 0 30px rgba(51, 51, 51, 0.15);
}

.instructor-single.shadow-none:hover {
  -webkit-box-shadow: 0 0;
  box-shadow: 0 0;
}

.instructor-image {
  position: relative;
}

.instructor-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ff630e;
  width: 65%;
  margin: 0 auto;
  padding: 10px 0;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.instructor-single li {
  display: inline-block;
}

.instructor-single li a {
  display: block;
  text-align: center;
  font-size: 15px;
  margin: 0 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
}

.instructor-single li a:hover {
  color: #130f40;
}

.instructor-single:hover .instructor-links {
  visibility: visible;
  opacity: 1;
  bottom: 40px;
}

.instructor-body {
  padding: 26px 0 5px;
}

.instructor-body h4 {
  color: #130f40;
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
}

/*-------------------------------------------------------------------------------------
    Blog Page
---------------------------------------------------------------------------------------*/

.blog-area {
  background-color: #fff;
  padding: 90px 0 100px;
}

.blog-post-single {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-post-single:hover {
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-post-content {
  padding: 30px 20px 15px;
}

.blog-post-content h3 a {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: capitalize;
  color: #130f40;
}

.blog-post-content h3 a:hover {
  color: #ff630e;
}

.post-meta {
  margin-bottom: 15px;
}

.post-media img {
  border-radius: 5px 5px 0 0;
  object-fit: cover;
}

.post-meta li {
  display: inline-block;
  margin-right: 15px;
}

.post-meta li a i {
  font-size: 15px;
  color: #ff630e;
}

.blog-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta span {
  margin-left: 8px;
  text-transform: uppercase;
  font-family: "Rajdhani", Sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1px;
  color: #696969;
}

.post-meta span:hover {
  color: #ff630e;
}

.blog-area.two {
  padding: 100px 0;
}

.widget {
  padding: 30px 40px 40px;
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 15px rgba(51, 51, 51, 0.1);
}

.search-form {
  position: relative;
}

.search-form input {
  width: 100%;
  height: 55px;
  border: 0;
  background-color: #f1f1f1;
  padding-left: 20px;
  border-radius: 5px;
  font-family: "Rubik";
}

.search-form button {
  position: absolute;
  right: 40px;
  top: 30px;
  height: 55px;
  width: 60px;
  border: 0;
  background-color: #ff630e;
  font-size: 20px;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  color: #fff;
}

.search-form button:hover {
  background-color: #130f40;
}

.widget h4 {
  color: #130f40;
  padding-bottom: 15px;
  font-weight: 700;
  font-size: 24px;
}

.latest-post.widget {
  padding-bottom: 20px;
}

.recent-post-single {
  overflow: hidden;
  margin-bottom: 20px;
}

.recent-post-thumb.two img {
  margin: 0;
}

.recent-post-cont.two {
  padding: 0 0 0 20px;
}

.recent-post-cont.two a {
  color: #130f40;
  font-family: "Rajdhani";
  font-weight: 700;
}

.recent-post-cont.two span {
  color: #696969;
}

.menu-services-icon.two {
  margin: 0 0 0 15px;
}

.widget-list li {
  padding: 0 0 15px;
}

.widget-list li a {
  color: #696969;
  font-family: "Rubik";
}

.widget-list li i {
  color: #ff630e;
  padding-right: 5px;
}

.menu-list.widget {
  padding-bottom: 20px;
}

.widget-list li a:hover {
  color: #ff630e;
}

.all-posts-wrap {
  padding-right: 40px;
}

.blog-posts {
  margin: 0 0 100px;
}

.blog-posts h3 {
  margin-bottom: 15px;
}

.blog-post-thumb img {
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
}

.blog-posts-meta {
  padding-bottom: 10px;
}

.blog-posts-meta ul li i {
  margin-right: 6px;
  font-size: 16px;
  color: #ff630e;
}

.blog-posts-meta ul li {
  display: inline-block;
}

.blog-posts-meta ul li a {
  color: #696969;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 15px;
  margin-right: 15px;
}

.blog-posts-meta ul li a:hover {
  color: #ff630e;
}

.blog-posts h3 a {
  color: #130f40;
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
}

.blog-posts h3 a:hover {
  color: #ff630e;
}

.blog-area.two p {
  line-height: 1.8;
}

.blog-posts.two {
  margin: 0 30px 0 0;
}

.omexo-post-btn {
  margin: 30px 0 0;
  overflow: hidden;
}

.omexo-post-btn a {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 26px;
  letter-spacing: 1px;
  background-color: #ff630e;
  border-radius: 4px;
  padding: 14px 30px;
  color: #fff;
  display: inline-block;
}

.omexo-post-btn a:hover {
  background-color: #130f40;
}

.blog-pagination li {
  display: inline-block;
}

.blog-pagination li a,
.blog-pagination li span {
  width: 55px;
  height: 55px;
  background-color: #f7f7f7;
  display: block;
  border: 1px solid #e6f0fa;
  border-radius: 5px;
  font-weight: 500;
  line-height: 55px;
  font-family: "Rubik";
  font-size: 16px;
  margin: 0 5px;
}

.blog-pagination li i {
  font-size: 20px;
}

.blog-pagination li a:hover,
.blog-pagination li span {
  border-color: #ff630e;
  background-color: #ff630e;
  color: #fff;
}

.feature-page.two {
  margin: 0 250px;
}

.entry-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 30px 0 15px;
}

.block-quote {
  background-color: #f5f5f5;
  border: 0;
  padding: 25px 30px 35px;
  margin: 35px 0;
}

.block-quote i {
  color: #dedede;
  font-size: 30px;
  font-style: italic;
  line-height: 40px;
}

.block-quote p {
  margin: 0 0 8px;
  font-style: italic;
  line-height: 1.8;
}

.block-quote h6 {
  color: #ff630e;
  font-size: 18px;
  font-weight: 700;
}

.blog-post-thumb.two {
  margin: 0 30px 0 0;
}

.blog-post-thumb.two ul li {
  padding-bottom: 8px;
  font-family: "Rubik", sans-serif;
  line-height: 28px;
  font-weight: 400;
  font-size: 16px;
  color: #696969;
}

.entry-footer {
  margin-top: 15px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
  position: relative;
}

.post-tags {
  font-size: 16px;
  font-weight: 500;
  color: #130f40;
  font-family: "Rubik", sans-serif;
  padding-right: 20px;
}

.post-tag a {
  display: inline-block;
  background-color: #ff630e;
  color: #fff;
  font-size: 13px;
  padding: 0px 12px;
  border-radius: 4px;
  margin-right: 0;
  margin-left: 8px;
}

.entry-footer ul {
  position: absolute;
  top: 26px;
  left: 56px;
}

.entry-footer ul li {
  display: inline-block;
  margin-right: 10px;
}

.entry-footer ul li a {
  display: inline-block;
  background-color: #ff630e;
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 4px;
}

.comment-form input {
  height: 50px;
}

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

.comment-respond h4 {
  font-size: 24px;
  font-weight: 700;
  color: #130f40;
}

.comment-respond p {
  margin-bottom: 28px;
}

.comment-respond form {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #696969;
}

/*-------------------------------------------------------------------------------------
    Page Title Area
---------------------------------------------------------------------------------------*/

.page-banner-area {
  background-image: url(../images/banner-6.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0 100px;
  position: relative;
}

.page-banner-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(61 154 146 / 71%);
}

.banner-content h1 {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 700;
}

.banner-content p {
  color: #fff;
}

.banner-content a {
  color: #fff;
  padding-right: 10px;
}

.banner-content span {
  padding-right: 10px;
}

/*-------------------------------------------------------------------------------------
    Instructor Profile Page
---------------------------------------------------------------------------------------*/

.inst-profile-area {
  padding: 100px 0;
}

.instructor-info {
  padding: 20px 20px 50px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.1);
  border-radius: 10px;
  text-align: center;
}

.instructor-img {
  background-image: url(../images/overlay-bg.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 50px 50px 30px;
}

.instructor-img img {
  border-radius: 4px;
}

.instructor-body h4 {
  color: #130f40;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.ins-social-icons li {
  display: inline-block;
}

.ins-social-icons li a {
  display: block;
  text-align: center;
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 38px;
  margin: 0 3px;
  color: #fff;
  background-color: #ff630e;
  border-radius: 4px;
}

.contact-info {
  padding: 30px 0 20px;
}

.contact-info li {
  margin: 0 30px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 22px;
  padding: 10px 0;
  color: #696969;
}

.contact-info li i {
  color: #ffffff;
  font-size: 14px;
  padding-right: 5px;
}

.contact-btn a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background-color: #ff630e;
  padding: 12px 30px;
  border-radius: 4px;
}

.contact-btn a:hover {
  background-color: #130f40;
}

.inst-profile-area h3 {
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
}

.inst-profile-area .course-title {
  line-height: normal;
  font-size: inherit;
}

.inst-profile-area .category-btn a {
  margin-top: 0;
}

.about-instructor {
  padding: 20px;
}

.skill-single {
  margin-bottom: 15px;
}

.skill-rate {
  padding: 20px;
}

.skill-name {
  color: #696969;
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
  line-height: 28px;
}

.skill-level-text {
  color: #696969;
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
  line-height: 28px;
  float: right;
}

.progress {
  border-radius: 100px;
  height: 10px;
  background-color: #fca97c;
}

.progress-bar {
  background-color: #ff630e;
}

.experience {
  padding: 20px 0 20px 20px;
}

.counter-single.three {
  margin: 0 10px 0 20px;
  padding: 25px 20px 20px 20px;
  background-color: #f7f7f7;
  border-radius: 10px;
}

.courses {
  padding: 35px 20px 0;
}

.ins-profile-counter {
  margin-bottom: 20px;
}

.category-btn.two a {
  margin: 32px 0 10px;
}

.instructor-details h4 {
  font-weight: 700;
}

/*-------------------------------------------------------------------------------------
    Course Single Page
---------------------------------------------------------------------------------------*/

.course-single-area {
  padding: 100px 0 70px;
}

.course-single-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.course-single-meta .course-author img {
  max-width: 35px;
  border-radius: 50%;
  margin-right: 10px;
}

.course-single-meta .course-author strong {
  margin-left: 10px;
  color: #3f435b;
  font-size: 16px;
}

.course-single-meta .course-rating {
  margin: 0 35px;
}

.course-single-meta .course-rating i {
  color: #f4c150;
  margin: 0 2px;
  font-size: 17px;
}

.course-single-meta .course-rating span {
  color: #5b616f;
  font-family: "Rubik";
  font-size: 16px;
}

.course-whishlist,
.course-reply {
  color: #212327;
  font-family: "Rubik";
  margin-right: 30px;
  font-size: 17px;
}

.course-whishlist i,
.course-reply i {
  margin-right: 6px;
}

.course-single-meta .course-author {
  margin: 0;
}

.course-categories li {
  display: inline-block;
  font-family: "Rubik";
  color: #757c8e;
  font-size: 16px;
}

.course-categories li a {
  background-color: #f5f5f5;
  padding: 5px 10px;
  margin: 0 2px 10px;
  border-radius: 4px;
  color: #696969;
  font-size: 15px;
  display: inline-block;
}

.course-categories li a:hover {
  background-color: #ff630e;
  color: #fff;
}

.course-categories {
  margin: 25px 0 50px;
}

.course-content-tab .nav-link.active {
  border: 0;
  border-bottom: 2px solid #ff630e;
  color: #ff630e;
}

.course-content-tab .nav-tabs .nav-link:focus,
.course-content-tab .nav-tabs .nav-link:hover {
  border-color: transparent;
}

.course-content-tab .nav-tabs .nav-link.active:focus,
.course-content-tab .nav-tabs .nav-link.active:hover {
  border-bottom-color: #ff630e;
}

.course-content-tab .nav-link {
  font-family: "Rubik";
}

.course-content-tab .nav-tabs {
  margin-bottom: 30px;
}

.course-about-cont h3,
.course-content-list h3,
.instructor-info-wrap h3 {
  font-weight: 500;
  font-family: "Rubik";
  font-size: 20px;
  line-height: 30px;
}

.course-about-cont {
  margin-bottom: 30px;
}

.course-content-list li {
  font-family: "Rubik";
  color: #696969;
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 18px;
}

.course-content-list li i {
  color: #ff630e;
  margin-right: 5px;
}

.instructor-info-inner {
  border: 1px solid #dee2e6;
  border-radius: 5px;
}

.instructor-avator img {
  max-width: 50px;
  border-radius: 50%;
}

.instructor-avator span {
  font-weight: 500;
  font-family: "Rubik";
  font-size: 18px;
  margin-left: 10px;
}

.instructor-avator {
  padding: 30px;
}

.instructor-course-info {
  border-top: 1px solid #dee2e6;
  padding: 20px 30px;
}

.instructor-course-info .rating-text i {
  color: #f4c150;
  margin: 0 2px;
  font-size: 17px;
}

.instructor-course-info span {
  color: #5b616f;
  font-family: "Rubik";
  font-size: 17px;
}

.instructor-course-info span span {
  padding-left: 15px;
}

.ins-course-info-meta i {
  margin-right: 6px;
}

.ins-course-info-meta strong {
  font-weight: 400;
  color: #212327;
  margin-right: 6px;
}

.instructor-info-wrap {
  margin-top: 20px;
}

.instructor-info-wrap h3 {
  margin-bottom: 16px;
}

.course-curriculum .card {
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.course-curriculum .course-lesson {
  border-top: 1px solid #dee2e6;
  padding: 10px 25px 0;
}

.course-curriculum .card-body {
  padding: 0;
}

.course-curriculum .course-lesson i {
  color: #b4b7c0;
  padding-right: 10px;
}

.course-curriculum .course-lesson .lesson-text i {
  padding-right: 0;
  padding-left: 10px;
}

.course-curriculum .course-lesson p {
  color: #212327;
}

.course-curriculum .card-header a {
  color: #41454f;
  font-family: "Rubik";
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}

.course-curriculum .card-header.active a,
.course-curriculum .card-header a:hover {
  color: #ff630e;
}

.course-curriculum h3,
.review-contents h3 {
  color: #ff630e;
  font-weight: 700;
  margin-bottom: 15px;
}

.review-content-inner {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 45px 50px;
  overflow: hidden;
}

.review-ratings {
  float: left;
  width: 30%;
}

.rating-bar {
  float: left;
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #5b616f;
  font-family: "Rubik";
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.review-ratings i {
  color: #f4c150;
  font-size: 20px;
  margin-right: 10px;
}

.review-ratings h2 {
  font-weight: 700;
  font-size: 65px;
  letter-spacing: 6px;
  margin-bottom: 30px;
}

.review-ratings p {
  margin: 15px 0 0;
}

.rating-progress {
  background-color: #e3e5eb;
  height: 8px;
  width: 76%;
  border-radius: 4px;
  margin: 0 20px;
  position: relative;
}

.rating-star {
  position: relative;
}

.rating-star:before {
  content: "\f006";
  font-family: "FontAwesome";
  position: absolute;
  right: 15px;
  color: #f4c150;
}

.rating-progress-value {
  background-color: #f4c150;
  position: absolute;
  height: 8px;
  width: 40%;
  right: 0;
  border-radius: 4px;
}

.course-widget {
  -webkit-box-shadow: 0 0 30px rgb(51 51 51 / 10%);
  box-shadow: 0 0 30px rgb(51 51 51 / 10%);
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 30px;
}

.course-widget li {
  padding: 10px 0;
  color: #212327;
  font-family: "Rubik";
  font-size: 16px;
}

.course-widget li i {
  color: #ff630e;
  margin-right: 4px;
}

.course-widget li:last-child {
  padding-bottom: 0;
}

.course-widget h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
}

.course-single-info.course-widget {
  padding: 0;
}

.course-single-info .course-price span {
  font-size: 36px;
  color: #212327;
  padding: 25px 30px 20px;
  display: inline-block;
}

.course-player iframe {
  width: 100%;
  height: 210px;
  border-radius: 10px;
  border: 0;
}

.course-enroll-btn a {
  background-color: #ff630e;
  padding: 14px 0;
  display: block;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.course-enroll-btn a:hover {
  background-color: #130f40;
}

.course-enroll-btn {
  padding: 0 30px 30px;
  border-bottom: 1px solid #ddd;
}

.course-info-list {
  padding: 19px 30px 30px;
}

.course-info-list .info {
  color: #212327;
  font-weight: 500;
}

.course-info-list li i {
  margin-right: 10px;
}

/*-------------------------------------------------------------------------------------
    Contact Page
---------------------------------------------------------------------------------------*/

.contact-area {
  padding: 100px 0;
}

.contact-desc {
  margin: 60px 50px 40px 0;
}

.contact-area h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
}

.contact-info-single {
  margin-bottom: 30px;
}

.contact-icon img {
  width: 45px;
}

.contact-icon {
  max-width: 30%;
  float: left;
  margin: 7px 20px 0 0;
}

.contact-cont h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 5px;
}

.contact-form {
  padding: 50px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 15px rgba(51, 51, 51, 0.1);
}

.contact-form input {
  height: 55px;
  font-family: "Rubik";
  padding-left: 20px;
  margin-bottom: 20px;
}

.contact-form textarea {
  padding: 15px 0px 15px 20px;
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
}

.submit-btn a {
  display: inline-block;
  padding: 14px 30px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background-color: #ff630e;
  border-radius: 4px;
}

.submit-btn a:hover {
  background-color: #130f40;
}

/*-------------------------------------------------------------------------------------
    Footer
---------------------------------------------------------------------------------------*/


.footer-top-area {
  color: #ffffff;
  background: linear-gradient(90deg, #81c784 0%, #d0f8ce 50%, #81c784 100%);
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget.logo {
  padding-right: 40px;
}

.footer-widget h4 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #1b5e20;
  font-weight: 700;
}

.footer-widget li {
  padding: 0 0 15px;
}

.footer-widget li a {
  display: block;
  color: #000000;
  font-weight: 400;
  font-family: "Rubik";
}

.footer-widget li a:hover {
  color: #1b5e20;
}

.footer-widget.footer-cat li i {
  color: #000000;
  padding-right: 5px;
}

.site-logo img,
.sidebar-logo img {
  margin-bottom: 0px !important;
}

.footer-widget.logo img,
.site-logo img,
.sidebar-logo img {
  max-width: 110px;
  margin-bottom: 20px;
  /* animation: hue-rotate 0.8s infinite; */
}

@-webkit-keyframes hue-rotate {
  0% {
    -webkit-filter: hue-rotate(0deg);
  }

  50% {
    -webkit-filter: hue-rotate(100deg);
  }

  100% {
    -webkit-filter: hue-rotate(0deg);
  }
}

@keyframes hue-rotate {
  0% {
    filter: hue-rotate(0deg);
  }

  50% {
    filter: hue-rotate(100deg);
  }

  100% {
    filter: hue-rotate(0deg);
  }
}

.footer-widget.logo p {
  color: #dedede;
}

.footer-widget.logo img {
  max-width: 160px;
  margin-bottom: 20px;
}

.footer-widget.logo p {
  color: #1b5e20;
}

.footer-widget.logo h6 {
  color: #1b5e20;
  font-weight: 700;
  margin: 25px 0 10px;
}

.footer-social-icons li {
  display: inline-block;
  padding-right: 15px;
}

.footer-social-icons li a,
.footer-widget.footer-contact li p {
  color: #1b5e20;
}

.footer-social-icons li a:hover,
.recent-post-cont a:hover {
  color: #ffffff;
}

.footer-post-single {
  overflow: hidden;
  margin-bottom: 20px;
}

.recent-post-thumb {
  float: left;
  width: 30%;
}

.recent-post-cont {
  float: left;
  width: 70%;
  padding: 0 20px 0 10px;
}

.recent-post-thumb img {
  border-radius: 5px;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.recent-post-cont a {
  display: block;
  color: #dedede;
  font-family: "Rubik";
  font-weight: 400;
}

.recent-post-cont span {
  color: #dedede;
  font-size: 13px;
  font-family: "Rubik";
}

.footer-widget.footer-contact li {
  color: #1b5e20;
  font-family: "Rubik";
  position: relative;
  padding-left: 35px;
  font-size: 15px;
  line-height: 25px;
}

.footer-widget.footer-contact li i {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 6px;
  color: #1b5e20;
}

.footer-widget.footer-contact li i.fa.fa-map-marker {
  font-size: 30px;
}

.footer-widget.footer-contact li i.fa.fa-phone {
  font-size: 24px;
}

.footer-widget.footer-contact .info {
  margin-top: 10px;
}

.footer-bottom-area {
  background: green;
  color: #ffffff;
  padding: 20px 0;
}

.footer-bottom-area p {
  color: #ffffff;
}

.privacy-content p strong {
  color: #000;
}

.privacy-content p a {
  color: #ff630e;
  font-weight: bold;
}

.accord-list {
  margin: 0px;
  padding-left: 20px;
}

.accord-list li {
  position: relative;
  display: flex;
  flex-direction: column;
}

.accord-list li::before {
  content: "\f0a4";
  font-family: "FontAwesome";
  font-weight: normal;
  position: absolute;
  color: #1b5e20;
  left: -20px;
}

.accord-list li strong {
  color: #ff630e;
  padding-left: 15px;
}

.accord-list li p {
  padding-left: 15px;
}

.card-body span {
  margin-bottom: 10px;
  display: block;
}

.card-body p a {
  color: #ff630e;
  font-weight: bold;
}

.card-body p a:hover {
  color: #050133;
}

.card-image {
  background: #ffffff;
  display: block;
  padding-top: 100%;
  position: relative;
  width: 100%;
}

.card-image img,
.card-video a img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-video a {
  padding-top: 100%;
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.legal-about-areas,
.bank-area,
.opport-area {
  padding: 80px 0;
}

.pdf-table .table {
  border-spacing: 10px;
  border-collapse: inherit !important;
}

.pdf-table thead th {
  font-size: 18px !important;
  text-transform: uppercase;
}

.pdf-table thead th,
.pdf-table td,
.pdf-table th {
  border: none;
  font-size: 16px;
  font-weight: 700;
  vertical-align: middle;
  background-color: #ff630e;
  color: #fff;
}

.pdf-table td a {
  padding: 5px 20px;
  width: fit-content;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  text-align: center;
  margin: 0 auto;
  height: 40px;
}

.pdf-table td a:hover {
  border-color: #050133;
  background-color: #050133;
}

.sect-head p {
  font-size: 25px;
  margin-bottom: 10px;
  color: #050133;
}

.sect-head p strong {
  color: #050133;
}

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

.legal-title h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #130f40;
}

.opport-list {
  font-weight: 700;
  font-size: 20px;
  line-height: 34px;
  color: #130f40;
}

.opport-list li {
  padding-left: 20px;
}

.achiver-main {
  display: flex;
  gap: 25px;
  /* margin-bottom: 150px; */
  padding: 20px 0 20px;
  cursor: pointer;
}

.achiver-list {
  padding: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.4);
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.4);
  margin-bottom: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid transparent;
}

.achiver-list:hover {
  box-shadow: none;
  border-color: #0e0a38;
}

.achiver-list:hover .achiver-images {
  border-color: transparent;
}

.achiver-images {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #050133;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 5px;
}

.achiver-title h3,
.achiver-title h4 {
  font-weight: bold;
  margin-bottom: 5px;
}

.achiver-title city {
  color: #00e676;
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 768px) {
  .form-section {
    display: block;
    flex-direction: row;
    width: 100%;
  }

  .discount-wrap {
    display: block;
  }
}

@media (max-width: 657px) {
  .header-log-reg ul li {
    color: #000 !important;
  }

  .header-log-reg ul li a {
    color: #000 !important;
  }
}

#popupImage {
  height: 100% !important;
  object-fit: cover !important;
  width: 100% !important;
}