/* Fonts */
:root {
  --default-font: "Roboto serif", sans-serif;
  --heading-font: "Roboto serif", sans-serif;
  --nav-font: "Roboto serif", sans-serif;
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;
  --accent-color: #dc5050;
  --accent-color-rgb: 232, 69, 69;
  --heading-color: #32353a;
  --heading-color-rgb: 50, 53, 58;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
  --yellow-color: #fffe00;
  --contrast-color-rgb: 255, 255, 255;
  --nav-color: #3a3939;
  --nav-hover-color: #e84545;
  --nav-dropdown-color: #3a3939;
  --nav-dropdown-hover-color: #e84545;
  --nav-dropdown-background-color: #ffffff;
  scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(235, 236, 248, 0.5019607843);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #dadada;
}

/* Global Colors */
/* Nav Menu Colors */
/* Smooth scroll */
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: rgba(var(--accent-color-rgb));
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.btn-enqu {
  color: var(--default-color);
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  padding: 0.85rem 2rem;
  background-color: var(--background-color);
  border-radius: 35px;
  display: inline-block;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  color: var(--default-color);
  padding: 8px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header .logo img {
  max-height: 90px;
  margin-right: 6px;
}
.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}
.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}
.header .btn-getstarted {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}
.header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: rgba(var(--accent-color-rgb), 0.85);
}

.text-yellow {
  color: var(--yellow-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }
  .header .navmenu {
    order: 3;
  }
}
/* Global Header on page scroll
---------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #e84545;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}
/* Home Page Custom Header
-----------------------------*/
.index-page .header {
  --background-color: #dc5050;
  --heading-color: #ffffff;
  --nav-color: #000000;
  --nav-hover-color: #230252;
}
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #d83535;
}

/* Home Page Custom Header on page scroll
------------------------------*/
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a {
    color: var(--default-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a {
    color: var(--nav-hover-color);
  }
  .navmenu .active {
    color: var(--accent-color);
  }
  .navmenu .active:focus {
    color: var(--nav-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  .navmenu .megamenu {
    position: static;
  }
  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }
  .navmenu .megamenu ul li {
    flex: 1;
  }
  .navmenu .megamenu ul li a, .navmenu .megamenu ul li:hover > a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }
  .navmenu .megamenu ul li a:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .megamenu ul li .active {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .megamenu:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
  }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
  }
  .navmenu a {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--accent-color-rgb), 0.1);
  }
  .navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i, .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul,
  .navmenu .megamenu ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul,
  .navmenu .megamenu ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active,
  .navmenu .megamenu > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #f4f4f4;
  color: var(--contrast-color);
  background-color: var(--default-color);
  font-size: 14px;
}
.footer .footer-top {
  padding-top: 50px;
}
.footer .footer-about .logo {
  line-height: 0;
  margin-bottom: 25px;
}
.footer .footer-about .logo img {
  margin-right: 6px;
}
.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}
.footer .footer-about p {
  font-size: 18px;
  font-family: var(--heading-font);
  font-weight: 500;
}
.footer .social-links {
  align-items: center;
}
.footer .social-links:before {
  content: "";
  width: 60%;
  height: 2px;
  background: var(--contrast-color);
  display: inline-block;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--default-color-rgb), 0.5);
  font-size: 22px;
  color: var(--contrast-color);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer h4 {
  color: var(--contrast-color);
  font-size: 36px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}
.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul a {
  color: rgba(var(--default-color-rgb), 0.8);
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
.footer .footer-contact sup {
  font-size: 10px;
  vertical-align: super;
}
.footer .footer-contact p {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 500;
}
.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: var(--background-color);
}
.footer .copyright sup {
  font-size: 10px;
  vertical-align: super;
}
.footer .copyright p {
  margin-bottom: 0;
  color: var(--default-color);
  font-size: 24px;
}
.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer .copyright p {
    margin-bottom: 0;
    color: var(--default-color);
    font-size: 20px;
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}
.scroll-top:hover {
  background-color: rgba(var(--accent-color-rgb), 0.8);
  color: #ffffff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}
#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}
#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}
#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}
#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  position: relative;
}
.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--heading-font);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
}
.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}
.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--heading-color);
}
.page-title nav {
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 20px 0;
}
.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.page-title nav ol li + li {
  padding-left: 10px;
}
.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.3);
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.hero {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  width: 100%;
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.hero:before {
  content: "";
  /* background: rgba(var(--background-color-rgb), 0.5); */
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero h2 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}
.hero .banner-text-two {
  color: var(--yellow-color);
}
.hero .banner-text-two p {
  margin: 5px 0px;
  font-size: 20px;
  font-style: italic;
  border-radius: 35px;
  line-height: 24px;
}
.hero .banner-text-two p span {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
}
.hero .banner-text-two h3 {
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 36px;
}
.hero .form-section {
  background-color: var(--accent-color);
  border-radius: 40px 0px 40px 40px;
  padding: 50px;
}
.hero .form-section h3 {
  color: var(--yellow-color);
}
.hero .form-section .sign-up-form {
  margin-top: 20px;
  border-radius: 7px;
}
.hero .form-section .sign-up-form .form-control {
  border: none;
  padding: 0.85rem 0.75rem;
  border-radius: 0px;
}
.hero .form-section .sign-up-form .form-control:active, .hero .form-section .sign-up-form .form-control:focus {
  outline: none;
  box-shadow: none;
}
.hero .form-section .sign-up-form input[type=submit] {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--yellow-color);
  border-color: var(--accent-color);
  padding: 0.85rem 0.75rem;
  border-radius: 35px;
  color: #000000;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
}
.hero .form-section .sign-up-form input[type=submit]:hover {
  background-color: #ffca05;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 33px;
    margin-bottom: 40px;
  }
  .hero .banner-text-two h3 {
    font-size: 26px;
  }
  .hero p {
    font-size: 18px;
  }
  .hero .form-section {
    padding: 35px;
  }
}
/* About Section - Home Page
------------------------------*/
.about {
  --background-color: #f4f4f4;
}
.about .career h2 {
  font-size: 32px;
  font-style: italic;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 42px;
}
.about .career .industrial-design p {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 0.5rem;
}
.about .career .p-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  font-family: var(--heading-font);
}
.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: rgba(var(--accent-color-rgb), 0.05);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}
.about .content h2 {
  font-weight: 700;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}
.about .content .read-more:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
  padding-right: 19px;
}
.about .content .read-more:hover i {
  margin-left: 10px;
}
.about .icon-box {
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  background-color: #fff;
}
.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: rgba(var(--accent-color-rgb), 0.05);
  color: var(--accent-color);
}
.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}
.about .icon-box p {
  margin-bottom: 0;
}
.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.about .icon-boxes .col-md-6:nth-child(2) .icon-box, .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

/* Stats Section - Home Page
------------------------------*/
.stats {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  position: relative;
  padding: 120px 0;
}
.stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.stats:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.6);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.stats .container {
  position: relative;
  z-index: 3;
}
.stats .stats-item {
  padding: 30px;
  width: 100%;
}
.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}
.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--default-color-rgb), 0.6);
}

/* Courses Section - Home Page
------------------------------*/
.courses {
  background-color: var(--accent-color);
}
.courses .section-title h2 {
  color: var(--yellow-color);
  font-size: 36px;
}
.courses .short-term-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.courses .short-term-6 .p-text {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 500;
  color: var(--contrast-color);
  width: 416px;
  text-align: right;
}
.courses .short-term-6 .p-text span {
  color: var(--yellow-color);
}
.courses .short-term-12 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.courses .short-term-12 .p-text {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 500;
  color: var(--contrast-color);
  width: 416px;
  text-align: left;
}
.courses .short-term-12 .p-text span {
  color: var(--yellow-color);
}
.courses .term-12 {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .courses .short-term-6 {
    align-items: flex-start;
  }
  .courses .short-term-6 .p-text {
    font-size: 24px;
    font-weight: 500;
    width: 100%;
    text-align: left;
  }
  .courses .short-term-12 .p-text {
    width: 100%;
  }
}
.journey {
  background-color: var(--yellow-color);
}
.journey .term-12 {
  display: flex;
  justify-content: flex-end;
}
.journey .left-sec {
  text-align: right;
}
.journey .left-sec h2 {
  font-size: 32px;
  font-style: italic;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 42px;
}
.journey .left-sec p {
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .journey .left-sec {
    text-align: left;
  }
}
/* exam-coaching Section - Home Page
------------------------------*/
.exam-coaching {
  --default-color: #ffffff;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  padding: 80px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.exam-coaching .section-title h2 {
  color: var(--yellow-color);
}
.exam-coaching img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.exam-coaching:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}
.exam-coaching .container {
  position: relative;
  z-index: 3;
}
.exam-coaching .coaching-para-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}
.exam-coaching .coaching-para-text p {
  color: var(--default-color);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0.5rem;
}
.exam-coaching .coaching-para-text .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}
.exam-coaching .coaching-para-text .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/* kredocoaching
------------------------------*/
.kredocoaching {
  background: url("../../assets/img/kredo-img/Pattern.png") center/cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.kredocoaching .section-title h2 {
  color: var(--accent-color);
}
.kredocoaching .section-title p {
  color: #7c7b7b;
}
.kredocoaching .sec-row {
  border-bottom: rgba(217, 109, 103, 0.6745098039) dashed 2px;
}
.kredocoaching .sec-row h3 {
  font-size: 24px;
  font-weight: 700;
}
.kredocoaching .sec-row p {
  color: #7c7b7b;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.kredocoaching .sec-row p span {
  color: var(--accent-color);
}

/* end kredocoaching
------------------------------*/
.success {
  background-color: var(--accent-color);
}
.success .section-title h2 {
  color: var(--yellow-color);
}
.success .roar-content {
  color: var(--contrast-color);
}
.success .roar-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
}
.success .roar-content p {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
}

/* Faq Section - Home Page
------------------------------*/
.faq {
  background-color: var(--default-color);
  padding: 60px 0;
}
.faq h2 {
  color: var(--accent-color);
}
.faq .faq-list {
  padding: 0% 0.5%;
  list-style: none;
  height: 70vh;
  overflow-y: scroll;
  transition: 0.3s ease-in-out;
}
.faq .faq-list li {
  border-bottom: 1px solid #f1eeef;
  margin-bottom: 10px;
  background: #D9D9D9;
  padding: 2%;
}
.faq .faq-list li h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}
.faq .faq-list .question {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  color: #dc5050;
  transition: 0.3s;
  font-weight: 600;
}
.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  right: 0;
  top: -2px;
  color: #dc5050;
  font-weight: bold !important;
  font-size: 20px;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}
.faq .faq-list .faq-toggle {
  transform: rotate(180deg);
  color: var(--accent-color);
  transition: 0.3s ease-in-out;
}
.faq .faq-list .collapsed {
  color: var(--default-color);
}
.faq .faq-list .collapsed:hover {
  color: var(--default-color);
}
.faq .faq-list .collapsed .faq-toggle {
  transform: rotate(360deg);
  color: var(--accent-color);
  transition: 0.3s ease-in-out;
}
.faq .faq-list ul li {
  border: 0px;
  margin: 0px;
  /* padding-bottom: 10px; */
  padding: 6px 0px;
}

@media (max-width: 768px) {
  .faq .faq-list {
    height: 100%;
    overflow: auto;
  }
}
/* Faq Section - Home Page
------------------------------*/
.contact {
  background-color: var(--yellow-color);
}
.contact .enquire-text p {
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
}
.contact .enquire-text .phone {
  font-size: 30px;
}
.contact .enquire-text .phone .say-hello {
  color: var(--accent-color);
}
.contact .enquire-text .phone a {
  color: var(--default-color);
}
.contact .enquire-text .email {
  font-size: 30px;
}
.contact .enquire-text .email .say-hello {
  color: var(--accent-color);
}
.contact .section-title p {
  color: var(--default-color);
  font-size: 24px;
}
.contact .form-section {
  background-color: var(--accent-color);
  border-radius: 40px 0px 40px 40px;
  padding: 50px;
  position: relative;
  box-shadow: -10px 10px;
}
.contact .form-section h3 {
  color: var(--yellow-color);
}
.contact .form-section .sign-up-form {
  margin-top: 20px;
  border-radius: 7px;
}
.contact .form-section .sign-up-form .form-control {
  border: none;
  padding: 0.85rem 0.75rem;
  border-radius: 0px;
}
.contact .form-section .sign-up-form .form-control:active, .contact .form-section .sign-up-form .form-control:focus {
  outline: none;
  box-shadow: none;
}
.contact .form-section .sign-up-form input[type=submit] {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--yellow-color);
  border-color: var(--accent-color);
  padding: 0.85rem 0.75rem;
  border-radius: 35px;
  color: #000000;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
}
.contact .form-section .sign-up-form input[type=submit]:hover {
  background-color: #ffca05;
}

@media (max-width: 768px) {
  .contact .section-title p {
    color: var(--default-color);
    font-size: 24px;
    text-align: left;
  }
  .contact .email strong {
    font-size: 18px;
  }
  .contact .form-section {
    padding: 35px;
  }
}/*# sourceMappingURL=main-kredo.css.map */