@font-face {
  font-family: "notosans";
  src: url("../fonts/NotoSerif-Regular.ttf");
}

@font-face {
  font-family: "opensans";
  src: url("../fonts/OpenSans-Regular.ttf");
}

:root {
  --primary-color: #0c2278;
  --secondary-color: #ffb400;
  --bg-primary-color: #f0eae8;
  --light-gray: #d9d9d9;
  --white-color: #ffffff;
  --black-color: #000000;
  --notosans: "notosans";
  --opensans: "opensans";
  /* --polysans-neutralitalic: "polysans-neutralitalic";
  --polysans-median: "polysans-median";
  --manrope-regular: "manrope-regular";
  --manrope-medium: "manrope-medium";
  --mixta-pro-medium: "mixta-pro-medium"; */
  --fs-xsmall: 12px;
  --fs-small: 14px;
  --fs-regular: 16px;
  --fs-large: 18px;
  --fs-xl: 20px;
  --fs-xxl: 24px;
  --fs-26: 26px;
  --title-fs: 32px;
  --banner-title-fs: 55px;
}

/* --------------- general ------------------- */
* {
  scroll-behavior: smooth;
}

body {
  font-family: var(--opensans);
  background-color: #f9fafb;
  color: #111827;
}

html,
body {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: var(--notosans);
}

body {
  font-size: var(--fs-regular);
  line-height: 30px;
  color: var(--black-color);
  overflow-x: hidden;
}

.section {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--black-color);
}

h1,
h2 {
  font-size: 50px;
  font-family: var(--notosans);
}

p {
  margin-bottom: 0;
  color: var(--black-color);
}

.form-control:focus,
.form-check-input:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

input.form-control,
select.form-select {
  padding: 12px 16px;
  border-radius: 4px;
}

.section-title {
  margin-bottom: 40px;
}

.section-title .subtitle {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-title .title {
  color: var(--black-color);
  font-size: 40px;
  font-weight: 400;
  line-height: 60px;
}

.section-title .title-two {
  color: var(--black-color);
  font-size: 40px;
  line-height: 58px;
  margin-bottom: 15px;
}

.section-title .section-content {
  font-size: var(--fs-small);
  color: var(--black-color);
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
}

/* ------------------- buttons ------------------ */

.btn-main,
.btn-main:focus,
.btn-main:active,
.btn-main.active {
  padding: 8px 12px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  color: var(--white-color);
  font-weight: 400;
  background-color: var(--primary-color) !important;
  text-decoration: none;
  transition: all 0.3s;
  font-size: var(--fs-small);
  line-height: 14px;
}

.btn-main img {
  margin-left: 8px;
  margin-top: 2px;
  transition: all 0.3s;
}

.btn-main:hover {
  background-color: #413023 !important;
  border: 1px solid #413023 !important;
  color: var(--white-color) !important;
}

.btn-two,
.btn-two:focus,
.btn-two:active,
.btn-two.active {
  padding: 12px 16px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  color: var(--black-color);
  font-weight: 400;
  background-color: var(--secondary-color) !important;
  text-decoration: none;
  transition: all 0.3s;
  font-size: var(--fs-regular);
  line-height: 14px;
  width: fit-content;
  border: 1px solid var(--secondary-color) !important;
}

.btn-two img {
  margin-left: 8px;
  margin-top: 3px;
  width: auto !important;
}

.btn-two:hover {
  background-color: var(--white-color) !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--white-color) !important;
}

.btn-three {
  padding: 15px 25px !important;
  background: linear-gradient(90deg, #1439c6 -10.59%, #00060c 300.59%);
  color: #ffffff !important;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0px;
  border: transparent;
}

.btn-three::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 0;
  content: "";
  background-color: #0f0d1d;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.btn-three::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 0;
  content: "";
  background-color: #0f0d1d;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.btn-three i {
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
}

.btn-three:hover {
  color: #ffffff;
}

.btn-three:hover i {
  transform: translate(5px);
}

.btn-three:hover::before,
.btn-three:hover::after {
  height: 100%;
}

.btn-six {
  background: transparent;
  padding: 12px 30px 12px 25px;
  border-radius: 0px;
  color: #fff;
  border: 2px solid var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.btn-six:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  content: "";
  background-color: var(--secondary-color);
  transition: 0.5s;
  z-index: -1;
}

.btn-six span {
  position: relative;
}

.btn-six i {
  margin-right: 8px;
  display: inline-block;
  transform: rotate(45deg);
  position: relative;
  bottom: 1px;
  color: var(--secondary-color);
  transition: 0.5s;
}

.btn-six:hover {
  border: 2px solid var(--secondary-color);
  color: #fff;
}

.btn-six:hover:before {
  width: 100%;
}

.btn-six:hover i {
  color: #fff;
  transform: rotate(0deg);
}

/* ------------------- header ------------------ */
/* .header {
  background: rgba(48, 48, 48, 0.3);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
} */

.header {
  border-top: 3px solid var(--primary-color);
}

.header .header-top {
  background-color: var(--primary-color);
  padding: 12px 0px;
  position: relative;
  z-index: 3;
}

.header .header-top a {
  color: var(--white-color);
  text-decoration: none;
  font-size: 15px;
}

.header .header-top .social-title {
  font-weight: 400;
  font-size: 16px;
  display: inline-block;
  margin: 0 10px 0 0;
  color: var(--white-color);
}

.header .header-top .social li {
  font-size: 14px;
  display: inline-block;
  color: var(--white-color);
  margin: 0 15px 0 0;
}

.header .header-top .info li {
  position: relative;
  padding: 0 20px 0 0;
  margin: 0 17px 0 0;
  color: var(--white-color);
  font-size: 15px;
}

.header .header-top .info li:not(:last-child):before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: white;
  width: 1px;
  height: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.social-icons {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  justify-content: end;
}

.social-icons li {
  margin-right: 15px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  color: #fff;
  transition: all 300ms ease;
  background-color: rgba(255, 255, 255, 0.3);
}

.header .header-top li:hover,
.header .header-top li:hover a,
.social-icons a:hover {
  color: var(--secondary-color);
}

.header .navbar-brand {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 22px;
  font-family: var(--opensans);
}

.header .logo,
.header .mobile-logo {
  height: 50px;
  width: auto;
}

.header .navbar {
  padding: 15px 0px;
  transition: all 0.3s;
}

header.fixed-header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  background: var(--white-color);
  z-index: 1024;
  box-shadow: 0px 4px 4px 0px #0000001a;
  animation: slideDown 0.3s ease;
}

/* Smooth appearance animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header .navbar-nav li {
  margin-right: 10px;
}

.header .navbar-nav li a {
  color: var(--black-color);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--opensans);
  padding: 0px 8px;
}

.header.fixed-header .navbar-nav li a {
  color: var(--black-color);
}

.bottom-header .icon-btn {
  background: transparent;
  border: none;
  margin-left: 30px;
}

header.fixed-header .bottom-header .navbar-nav li a,
header.fixed-header .bottom-header .navbar-nav li a.active,
.bottom-header.fixed .navbar-nav li a,
.bottom-header.fixed .navbar-nav li a.active {
  color: var(--black-color);
}

.offcanvas-header .btn-close {
  background-image: url("../img/icons/close-black.png");
  top: 35px;
  right: 30px;
  position: absolute;
  opacity: 1;
  width: 24px;
  height: 24px;
  padding: 0px !important;
  background-size: 24px 24px;
}

.offcanvas-header .btn-close:focus {
  box-shadow: none;
}

.header .navbar-toggler {
  border: none;
  padding: 0;
  box-shadow: none;
}

.header .navbar-toggler-icon {
  background-image: none;
  width: 35px;
  height: 35px;
}

.header.fixed-header .navbar-toggler-icon {
  filter: brightness(0) !important;
}

.header .btn-main {
  margin-left: 24px;
}

.header .navbar-nav li.active a,
.header .navbar-nav li a:hover {
  color: var(--secondary-color);
}

/* --------------------- footer ------------------- */
.footer {
  color: var(--white-color);
  padding-top: 70px;
  padding-bottom: 30px;
  position: relative;
  background-color: var(--primary-color);
  z-index: 1;
  overflow: hidden;
}

.footer-logo {
  height: 75px;
}

.footer-text {
  color: #efeff0;
  margin-bottom: 0;
}

.footer-title {
  color: #efeff0;
  margin-bottom: 14px;
  font-size: 25px;
}

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

.footer-title-two {
  color: #f8b520;
  margin-bottom: 10px;
  font-size: var(--fs-regular);
}

.footer-list li {
  transition: all 0.5s;
}

.footer-list li:hover {
  transform: translateY(-4px) !important;
}

.footer-list li:last-child {
  margin-bottom: 0px;
}

.footer-social-links {
  gap: 16px;
}

.footer .copy-right a {
  color: var(--white-color);
}

.footer .copy-right,
.footer-list-two li a {
  color: var(--white-color);
  font-size: var(--fs-small);
}

.footer-list-two {
  gap: 32px;
}

.footer-list-two li a {
  color: var(--light-gray);
}

.footer-list-two li a:hover {
  color: var(--white-color);
}

.footer hr {
  border-color: var(--secondary-color);
  margin: 30px 0px 20px 0px;
}

.footer-section a {
  color: var(--secondary-color);
  transition: all 0.5s;
}

.footer-section a:hover {
  color: var(--white-color);
}

/* -----------------------------Scroll to top------------------------- */

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.scroll-top:after {
  content: "\f176";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--primary-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border: 2px solid var(--primary-color);
  box-shadow: none;
  border-radius: 50%;
}

.scroll-top svg {
  color: var(--primary-color);
  border-radius: 50%;
  background: var(--white-color);
}

.scroll-top svg path {
  fill: none;
}

.scroll-top .progress-circle path {
  stroke: var(--primary-color);
  stroke-width: 20px;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* ----------------------------------Forms------------------------------- */
.form-wrapper {
  padding: 40px 40px;
  border-radius: 0px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  background: #fff;
}

.form-wrapper .info-box {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 25px;
  margin-top: 40px;
}

.form-wrapper .info-box:first-child {
  border-top: none;
  margin-top: 0px;
  padding-top: 0;
}

.form-wrapper h4 {
  color: var(--primary-color);
}

.upload-box {
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 40px 20px;
  background: #f9fafb;
  cursor: pointer;
  transition: 0.3s ease;
}

.form-check-input[type=checkbox] {
  margin-top: 6px;
}

.upload-box:hover {
  background: #f3f4f6;
  border-color: var(--secondary-color);
}

.upload-box.dragover {
  background: #eff6ff;
  border-color: var(--secondary-color);
}

.upload-box input {
  display: none;
}

.upload-icon {
  font-size: 42px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.file-name {
  color: var(--secondary-color);
  font-weight: 600;
}

/* --------------------- banner ------------------- */

.banner-section {
  position: relative;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 88vh;
  height: 100%;
  z-index: 1;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 12.91%, #000000 99.48%);
  z-index: 1;
}

.banner-section .banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.banner-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.banner-carousel .owl-dots .owl-dot span {
  background: var(--white-color) !important;
  width: 33px !important;
  height: 3px;
}

.banner-carousel .owl-dots .owl-dot.active span {
  background-color: var(--secondary-color) !important;
}

.banner-section .banner-subtitle {
  text-transform: uppercase;
  font-size: 15px;
  color: var(--secondary-color);
  letter-spacing: 2.4px;
  margin-bottom: 25px;
  font-weight: 600;
}

.banner-section p {
  color: var(--white-color);
  margin-bottom: 0px;
  text-align: left;
  line-height: 29px;
  font-size: var(--fs-large);
}

.banner-section .banner-title {
  font-size: var(--banner-title-fs);
  color: #fff;
  line-height: 60px;
  margin-bottom: 25px;
  text-align: left;
}

.banner-btn .btn-primary {
  background: #3b82f6;
  border: none;
  padding: 10px 22px;
  font-weight: 600;
}

.banner-btn .btn-outline-light {
  border: 2px solid #fff;
  padding: 10px 22px;
  font-weight: 600;
}

/* ------------------------------Counter Section---------------------------------- */

.counter-section {
  background-image: url("../img/bg/counter-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #021738f5 12.91%, #021738e8 99.48%);
  z-index: -1;
}

.counter-section .counter-item {
  padding: 60px 30px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.counter-section .counter-item:hover {
  transform: translateY(-5px);
}

.counter-section .counter-item:hover .specialtie__thumb img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(94%) saturate(1200%) hue-rotate(2deg) brightness(103%) contrast(104%) !important;
}

.counter-section .counter-item:hover h5 {
  color: var(--secondary-color) !important;
}

.counter-section .counter-item h2 {
  margin: 20px 0px;
  font-size: 30px;
  font-weight: 600;
}

.counter-section .counter-item h5 {
  transition: all 0.5s;
}

.counter-section .counter-item img {
  width: 80px;
  transition: all 0.3s ease;
}

/* -----------------------Process cards------------------- */
.process-card-area-4 {
  position: relative;
  max-width: 1350px;
  display: block;
  margin: auto;
  padding: 0 60px;
  z-index: 2;
}

.process-card-area-4:before {
  content: "";
  position: absolute;
  inset: 0;
  top: 60px;
  height: 265px;
  background-color: var(--black-color);
  z-index: -1;
}

.process-card4 {
  position: relative;
  background-color: var(--white-color);
  padding: 30px;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  z-index: 2;
  height: 100%;
  min-height: 340px;
}

.process-card4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.process-card4_subtitle {
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  display: block;
  text-transform: uppercase;
}

.process-card4_icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-bottom: 20px;
}

.process-card4_icon img {
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.process-card4:hover .process-card4_icon {
  background: var(--white-color);
}

.process-card4:hover .process-card4_icon img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(94%) saturate(1200%) hue-rotate(2deg) brightness(103%) contrast(104%) !important;
}

.process-card4_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.process-card4 .box-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-card4_text {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: -0.3rem;
}

.process-card4:hover:before {
  height: 100%;
}

.process-card4:hover .process-card4_subtitle {
  color: var(--white-color);
}

.process-card4:hover .process-card4_icon img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.process-card4:hover .process-card4_text {
  color: var(--white-color);
}

.process-card4:hover .box-title {
  color: var(--white-color);
}

/* ----------------------------Category Section------------------------------- */

/* ------------------------- card three ------------------- */
.card-three {
  position: relative;
  display: block;
  padding: 30px;
  margin-top: 40px;
  z-index: 1;
  border: 0px;
  text-align: center;
}

.card-three::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  border: 1px solid #e4e5ea;
  border-radius: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.card-three .card-body {
  padding: 35px 5px 25px;
}

.card-three .icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background-color: #e4e5ea;
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 10%);
  transition: all 500ms ease;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-three .icon:before {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  content: "";
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}

.card-three .icon img,
.card-three .icon i {
  transition: all 500ms linear;
  transition-delay: 0.1s;
  z-index: 1;
  font-size: 50px;
  color: var(--primary-color);
}

.card-three .content {
  position: relative;
  display: block;
  top: 12px;
}

.card-three .content .title {
  font-size: 20px;
  margin-bottom: 3px;
  color: #0c2278;
}

.card-three .content p {
  font-size: 15px;
  transition: all 500ms ease;
  margin-bottom: 3px;
}

.card-three .star1 {
  position: absolute;
  bottom: 0px;
  right: 40px;
  transition: all 500ms ease;
  transition-delay: 300ms;
  transform: scale(0);
}

.card-three .star2 {
  position: absolute;
  bottom: 5px;
  right: 5px;
  transition: all 500ms ease;
  transition-delay: 200ms;
  transform: scale(0);
}

.card-three .star3 {
  position: absolute;
  bottom: -30px;
  right: 7px;
  transition: all 500ms ease;
  transform: scale(0);
}

.card-three .star1 img,
.card-three .star2 img,
.card-three .star3 img {
  width: auto;
  opacity: 0.2;
}

.card-three:hover:before {
  background-color: #1239ac;
  border: 1px solid #1239ac;
}

.card-three:hover .icon {
  background-color: #ffb400;
}

.card-three:hover .icon img,
.card-three:hover .icon i {
  transform: scale(0.9);
}

.card-three:hover .content .title {
  color: #fff;
}

.card-three:hover .content p {
  color: #b1c2f5;
}

.card-three:hover .star1,
.card-three:hover .star2,
.card-three:hover .star3 {
  transform: scale(1);
}

/* ------------------ form one ---------------- */
.form-one-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.form-one-section .form-content {
  position: relative;
  display: block;
  background: #f6f6f6;
  padding: 80px 80px 50px 80px;
  height: 100%;
}

.form-one-section .shape1 {
  position: absolute;
  left: 100px;
  top: 30px;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 8s infinite linear;
  animation: zoom-fade 8s infinite linear;
  background-image: url(../img/shapes/1.png);
}

@keyframes zoom-fade {
  0% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.9);
  }
}

.form-one-section .sub-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.form-one-section .title {
  color: #141417;
  display: block;
  font-size: 40px;
  line-height: 52px;
  font-weight: 800;
}

.form-one-section .form-control {
  position: relative;
  display: block;
  width: 100%;
  height: 55px;
  background: #fff;
  border: 1px solid #e6e6e6;
  font-size: 16px;
  padding: 10px 30px;
  border-radius: 0px;
}

.form-one-section .form-control::placeholder {
  color: #787878;
}

.form-one-img {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.form-one-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-one-img::before {
  position: absolute;
  top: 0;
  left: -85%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.form-one-img:hover::before {
  animation: shine 1s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* ------------------------- breadcrumb --------------- */
.breadcrumb-section {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url(../img/banner/b1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, #021738f5 12.91%, #021738e8 99.48%);
  z-index: -1;
  opacity: 0.75;
}

.breadcrumb-section .shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.breadcrumb-section .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.breadcrumb-section .shape3 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  animation: swayX 3s linear infinite alternate;
}

@keyframes swayX {
  0% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0px);
  }
}

.breadcrumb-section h4 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 15px;
}

.breadcrumb-section .breadcrumb .breadcrumb-item,
.breadcrumb-section .breadcrumb .breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumb-section .breadcrumb .breadcrumb-item::before {
  display: none;
}

/* ---------------------------Admin Dashboard----------------------- */
/* Sidebar */
.admin-sidebar {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Menu */
.admin-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-menu li {
  margin-bottom: 8px;
}

.admin-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: 0.3s;
}

.admin-menu a:hover,
.admin-menu a.active {
  background: var(--primary-color);
  color: #fff;
}

.admin-menu a.active i,
.admin-menu a:hover i {
  color: var(--white-color);
}

.dashboard-header h4 {
  font-weight: 600;
}

/* Cards */
.dash-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.dash-card h6 {
  color: #6b7280;
  margin-bottom: 8px;
}

.dash-card h3 {
  color: var(--primary-color);
  font-weight: 700;
}

.content-wrapper {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.admin-menu a i,
.dashboard-header h4 {
  color: var(--primary-color);
}

.admin-dashboard table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #6c757d;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* .admin-dashboard table .action-btns {
  display: flex;

  align-items: center;
  gap: 8px;
} */

.admin-dashboard table .btn {
  padding: 6px 12px;
  font-size: 0.8rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
  width: fit-content;
}

.admin-dashboard table tr {
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
  border-bottom-width: var(--bs-border-width);
}

.admin-dashboard table td {
  min-width: 150px;
  font-size: 0.85rem;
  border: 0px;
  padding: 10px;
}

/* Make TD full height */
.action-btns {
  height: 100%;
}

/* Flex wrapper */
.action-flex {
  display: flex;
  height: 100%;
  gap: 8px;
}

/* Full width buttons */
.action-flex .btn {
  width: 100%;
}

/* Modal Box */
.item-modal {
  border-radius: 0;
  padding: 10px 20px;
}

.modal-title {
  color: var(--primary-color);
  font-weight: 600;
}

/* Close Button */
.modal-close:focus {
  outline: none;
  box-shadow: none;
}

.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  opacity: 1;
  z-index: 1;
}

/* Icon Box */
/* .item-icon-box {
  background: #f3f4f6;
  border-radius: 10px;
  padding: 40px;
  font-size: 40px;
  color: #9ca3af;
} */
.item-icon-box {
  height: 100%
}

.item-icon-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: var(--bs-border-width) solid var(--bs-border-color);
  object-position: center;
  object-view-box: inset(0%);
  border-radius: 0px !important;
}

/* Details List */
.item-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.item-details-list li {
  margin-bottom: 10px;
  color: #374151;
}

.item-details-list strong {
  width: 140px;
  display: inline-block;
  color: #111827;
}

/* ------------------------- card eight -------------------- */
.card-eight {
  padding: 40px 30px;
  border-radius: 5px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  border: 0px;
  height: 100%;
  transition: all 0.4s ease;
}

.card-eight .card-body {
  position: relative;
  padding: 0;
}

.card-eight .number {
  position: absolute;
  right: 30px;
  top: -5px;
  color: #ffb40078;
  font-size: 60px;
  font-weight: 600;
}

.card-eight .icon img {
  height: 50px;
  width: 50px;
  max-width: unset;
  filter: brightness(0) saturate(100%) invert(14%) sepia(78%) saturate(3200%) hue-rotate(226deg) brightness(85%) contrast(95%);
}

.card-eight .content {
  margin-top: 25px;
}

.card-eight .content h3 {
  font-size: 38px;
  line-height: 30px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 10px;
}

.card-eight .content p {
  color: #666666;
  margin: 0;
}

.card-eight:hover {
  transform: translateY(-5px);
}

/* --------------------------------------------Item Card------------------- */
.single-item {
  position: relative;
  background: var(--white-color);
  padding: 20px;
  border-radius: 50px 50px 50px 0;
  height: 100%;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all 0.5s;
}

.single-item:hover {
  transform: translateY(-5px);
}

.single-item .img-wrap {
  position: relative;
}

.single-item .img-wrap .course-tag {
  position: absolute;
  right: -15px;
  top: 15px;
  background: var(--secondary-color);
  color: var(--white-color);
  border-radius: 40px 40px 40px 0;
  padding: 2px 10px;
  margin-bottom: 10px;
  display: inline-block;
  z-index: 1;
}

.single-item .item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 40px 40px 40px 0;
}

.single-item .item-content {
  padding: 10px;
}

.single-item .item-content h4 {
  font-size: 18px;
  color: var(--black-color);
}

.single-item .item-content p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 10px;
}

.single-item .course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.single-item .course-meta i {
  color: var(--secondary-color);
}

.single-item .course-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.single-item .course-bottom .btn-three.claim-btn {
  background: linear-gradient(90deg,
      var(--secondary-color) -10.59%,
      #5c5c5c 300.59%);
}

.search-filter .btn-three {
  padding: 13px 25px !important;
}

.search-items-section .btn-six {
  padding: 11px 25px;
  color: var(--secondary-color);
}

.search-items-section .btn-six:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.search-items-section .btn-six i {
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
  transform: unset;
}

/* LIST VIEW MODE */
.items-wrapper.list-view .col-lg-4 {
  width: 100%;
}

.items-wrapper.list-view .single-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Image resize in list */
.items-wrapper.list-view .img-wrap {
  width: 420px;
  flex-shrink: 0;
}

.items-wrapper.list-view .img-wrap img {
  height: 300px;
  object-fit: cover;
}

/* Content full width */
.items-wrapper.list-view .item-content {
  flex: 1;
}

/* Meta inline */
.items-wrapper.list-view .course-meta {
  display: flex;
  justify-content: space-between;
}

.view-toggle .btn.active,
.view-toggle .btn:hover,
.view-toggle .btn:focus {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color) !important;
}

.view-toggle .btn.btn-outline-primary {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.btn-three.view-more {
  background: linear-gradient(90deg,
      var(--secondary-color) -10.59%,
      var(--primary-color) 300.59%);
}

/* --------------------- about four --------------------- */
.about-two-section .sub-title {
  position: relative;
  color: #fca028;
  text-transform: uppercase;
  padding-left: 55px;
  display: inline-block;
  margin-bottom: 14px;
}

.about-two-section .sub-title::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #fca028;
}

.about-two-section .shape1 {
  position: absolute;
  z-index: -1;
  right: 0px;
  bottom: 0px;
}

.about-two-section .sub-title::after {
  position: absolute;
  content: "";
  bottom: 6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #fca028;
}

.check-list-six {
  padding-left: 0px;
  list-style: none;
  margin-bottom: 0px;
}

.check-list-six li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 45px;
}

.check-list-six li::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  top: 0px;
  left: 0px;
  color: #fca028;
  border: 1px solid #fca028;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  margin-right: 15px;
  text-align: center;
  border-radius: 50%;
}

.btn-nine {
  background: transparent;
  color: #fca028;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 26px;
  padding: 17px 43px;
  text-align: center;
  z-index: 3;
  position: relative;
  transition: 0.4s;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #fca028;
}

.btn-nine::before {
  content: "";
  position: absolute;
  height: 400px;
  width: 430px;
  top: 50%;
  left: 50%;
  background: #fca028;
  border-radius: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: all 0.5s ease-out 0s;
  z-index: -1;
}

.btn-nine i {
  position: relative;
  top: 0px;
  margin-left: 15px;
  font-size: 13px;
}

.btn-nine:hover {
  color: #fff;
}

.btn-nine:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.dataTables_length .form-select {
  padding: 10px 40px 10px 15px;
}

/* .dataTables_filter {
  padding: 15px 0px;
} */

.btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 1;
}