/*@import url("https://fonts.googleapis.com/css2?family=Prosto+One&family=Roboto:wght@100;300;400;500;700;900&display=swap");*/
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');
/* ================================
   CUSTOM CLASSES
   ================================ */
.bd-instructor-wrapper.style-one .bd-instructor-info, .bd-offcanvas-overlay, a,
.btn,
button,
span,
sub,
sup,
p,
input,
select,
textarea,
img,
svg,
.transition-3,
li,
h1,
h2,
h3,
h4,
h5,
h6, .body__overlay {
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Oxygen", sans-serif;
    color: var(--color-dark);
}
:root {
    /**  @font family declaration */
    --bd-ff-body: "Oxygen", sans-serif;
    --bd-ff-title: "Oxygen", sans-serif;
    --bd-ff-style: "Big Shoulders Display", sans-serif;
    --bd-ff-p: "Oxygen", sans-serif;
    --ff-fontawesome: "Font Awesome 6 Free";
    --ff-icomoon: "icomoon";
    /** @color declaration */
    --color-white: #FFFFFF;
    --theme-color: #5671f1;
    --color-dark: #000d83;
    --bd-white: #FFFFFF;
    --bd-black: #000000;
    --bd-light: #C8C8C8;
    --bd-theme-black: #00170F;
    --bd-placeholder: rgba(30, 30, 30, 0.4);
    --bd-body-primary: #FFFFFF;
    --bd-primary: #07A169;
    --bd-secondary: #FFB800;
    --bd-success: #00db22;
    --bd-info: #0dcaf0;
    --bd-warning: #ffc107;
    --bd-danger: #FF0033;
    --bd-teal: #20c997;
    --bd-body-text: #808080;
    --bd-taxonomy-color: #4d4d4d;
    --bd-label-color: #0A0A0A;
    --bd-rating-color: #FEC300;
    --bd-text-muted: #6c757d;
    --bd-gray: #C5C6C7;
    --bd-light-gray: #D5D5D5;
    --bd-bg-primary: #F5F5F5;
    --bd-bg-secondary: #EDF3F5;
    --bd-border-primary: #E5E5E5;
    --bd-border-secondary: rgba(220, 220, 220, 1);
    --bd-gradient-1: linear-gradient(90deg, #F5F5F5 52.13%, rgba(245, 245, 245, 0.7) 100%);
    --primary-rgb: 7, 161, 105;
    --primary-rgb-0: rgba(var(--primary-rgb), 0.0);
    --primary-rgb-05: rgba(var(--primary-rgb), 0.05);
    --primary-rgb-1: rgba(var(--primary-rgb), 0.1);
    --primary-rgb-15: rgba(var(--primary-rgb), 0.15);
    --primary-rgb-5: rgba(var(--primary-rgb), 0.5);
    --primary-rgb-7: rgba(var(--primary-rgb), 0.7);
    --secondary-rgb: 251, 140, 0;
    --secondary-rgb-0: rgba(var(--secondary-rgb), 0.0);
    --secondary-rgb-1: rgba(var(--secondary-rgb), 0.1);
    --secondary-rgb-05: rgba(var(--secondary-rgb), 0.05);
    --secondary-rgb-15: rgba(var(--secondary-rgb), 0.15);
    --secondary-rgb-3: rgba(var(--secondary-rgb), 0.3);
    --secondary-rgb-5: rgba(var(--secondary-rgb), 0.5);
    --secondary-rgb-7: rgba(var(--secondary-rgb), 0.7);
    /** extra color */
    --bd-extra-color01: #4C6EF5;
    --bd-extra-color02: #FF8C00;
    --bd-extra-color03: #9F7AEA;
    --bd-extra-color04: #D946EF;
    --bd-extra-color05: #38BDF8;
    --bd-extra-color06: #EC4899;
    --bd-extra-color07: #22C55E;
    --bd-extra-color08: #3B82F6;
    /** @font weight declaration */
    --bd-fw-normal: normal;
    --bd-fw-thin: 100;
    --bd-fw-elight: 200;
    --bd-fw-light: 300;
    --bd-fw-regular: 400;
    --bd-fw-medium: 500;
    --bd-fw-sbold: 600;
    --bd-fw-bold: 700;
    --bd-fw-ebold: 800;
    --bd-fw-black: 900;
    /** @font size declaration */
    --bd-fs-body: 16px;
    --bd-fs-p: 16px;
    --bd-fs-h1: 68px;
    --bd-fs-h2: 48px;
    --bd-fs-h3: 38px;
    --bd-fs-h4: 28px;
    --bd-fs-h5: 22px;
    --bd-fs-h6: 20px;
    --bd-fs-b1: 14px;
    --bd-fs-b2: 16px;
    --bd-fs-b3: 18px;
    --bd-fs-b4: 22px;
    /** @transition value declaration */
    --transition: all .3s ease-in-out;
    --transition-5: all .5s ease-in-out;
}


/*----------------------------------------*/
/*  2.5 Background
/*----------------------------------------*/
.bd-noise-bg {
    position: relative;
    z-index: 5;
}
.bd-noise-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg/theme-1-bg.webp);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.theme-bg {
    background-color: var(--bd-primary);
}

.theme-bg-05 {
    background-color: var(--primary-rgb-05);
}

.primary-bg {
    background-color: var(--bd-bg-primary);
}

.theme-bg-secondary {
    background-color: var(--bd-bg-secondary);
}

.full-black-bg {
    background-color: var(--bd-black);
}

.theme-black {
    background-color: var(--bd-theme-black);
}

.secondary-bg {
    background-color: var(--bd-secondary);
}

.secondary-bg-05 {
    background-color: var(--secondary-rgb-05);
}

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

.info-bg {
    background-color: var(--bd-info);
}

.warning-bg {
    background-color: var(--bd-warning);
}

.danger-bg {
    background-color: var(--bd-danger);
}

.teal-bg {
    background-color: var(--bd-teal);
}

.gary-bg {
    background-color: var(--bd-gray);
}

.white-bg {
    background-color: var(--bd-white);
}

.gradient-bg {
    background: linear-gradient(92.77deg, rgba(7, 161, 105, 0.15) 1.33%, rgba(251, 140, 0, 0.15) 129.72%) !important;
}

.bd-kinder-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: luminosity;
    opacity: 0.05;
    z-index: -1;
}
.bd-kinder-bg-overlay::before {
    content: "";
    height: 50%;
    width: 84%;
    position: absolute;
    top: 0;
    inset-inline-start: 8%;
    background: linear-gradient(180.87deg, var(--bd-primary) 0.69%, rgba(17, 161, 145, 0) 96.75%);
    z-index: -1;
}


/* Global Utility Classes */
.section-spacing {
    padding: 80px 0;
}

.section-spacing-bottom {
    padding-bottom: 80px;
}

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

.g-30,
.gx-30 {
    --bs-gutter-x: 30px;
}

.g-30,
.gy-30 {
    --bs-gutter-y: 30px;
}

.g-15,
.gy-15 {
    --bs-gutter-y: 15px ;
}

.gy-30 > * {
    padding-top: 15px;
    padding-bottom: 15px;
}

.p-relative {
    position: relative;
}

.fix {
    overflow: hidden;
}

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

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

.bg-attach-fix {
    background-attachment: fixed;
}

/* Theme Colors */
.theme-bg {
    background-color: var(--bd-primary);
}
.bg{
    background: #f6f6f6;
}
.primary-bg {
    background-color: var(--bd-bg-primary);
}

.text-secondary {
    color: var(--bd-secondary) !important;
}

.white-text {
    color: var(--bd-white);
}
/*#common-home {
    overflow: hidden;
}*/
body {
  width: 100%;
  height: 100%;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  color: #757f95;
}
legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
label {
  font-size: 12px;
  font-weight: normal;
}
/* Chrome border line */
button:focus {
  outline: none !important;
}
/* container */
/*#container {
  width: 100%;
  min-height: 100%;
  position: absolute;
  margin-bottom: 300px;
}*/

/* top */
#top {
  background-color: var(--bs-tertiary-bg);
  border-bottom: 1px solid var(--bs-border-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 5px;
}
#top ul.list-inline {
  margin-bottom: 0;
}
#top .list-inline-item > a, #top .list-inline-item .dropdown > a {
  font-size: 1.1em;
  color: var(--bs-gray-600);
  line-height: 40px;
  vertical-align: middle;
  padding: 10px 0px 5px 0px;
}
/* logo */
.header-top {
  background-color: #5671f1;
  padding: 14px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 4px solid #5671f1;
}
.header-top::before {
  content: "";
  position: absolute;
  left: 5%;
  top: 0;
  bottom: 0;
  border-radius: 50px 50px 0 0;
  border: 2px solid #ffffff;
  border-bottom: 0;
  width: 55%;
  left: -30px;
  border-radius: 0;
  border: 0;
  transform: skew(-30deg);
  border-right: 5px solid #ffffff;
  background-color: #030034;
}
.header-sign-btn a.bd-btn.btn-primary{
	background-color: #005fcc;
	border-color: #005fcc;
}
.header-top-left ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0 20px;
  margin-bottom: 0;
  padding: 0;
}
.header-top-left ul li{
    position: relative;
    min-width: fit-content;
}
.header-top-left ul li:first-child {
  position: relative;
}
/*.header-top-left ul li:first-child::before {
	position: absolute;
	content: "";
	width: 1px;
	height: 20px;
	inset-inline-end: -26px;
	top: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-50%);
}*/
.header-top-left ul li a {
	color: #fff;
	font-size: 16px;
	transition: all 0.3s linear;
}
.header-top-left ul li span {
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 14px;
	margin-inline-end: 12px;
}
.header-top-left ul li a i{
    color: #f7931e;
}
.header-top-left ul li span i::before, .header-top-right a i::before{
  font-size: 14px;
}
.header-top-left ul li span i span, .header-top-right a i span{
	color: #fff;
	font-size: 0px;
    margin: 0;
}
.header-top-right a {
	color: #fff;
	font-size: 16px;
    margin-left: 5px;
}
.header-top-right a.dropdown-item{
    color: #000000;
    margin-left: 0;
}
.header-top-right span {
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 14px;
	margin-inline-end: 12px;
}
.header-style-one {
  background-color: transparent;
  box-shadow: 0px 1px 2px 1px rgba(3, 11, 30, 0.06), 0px 1px 1px 0px rgba(3, 11, 30, 0.1);
}
.header-right{
    min-width: fit-content;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 99;
	padding: 15px 0px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 10px 25px 10px 20px;
}
/* search */
#search {
  margin-bottom: 10px;
}
#search .form-control-lg {
  height: 40px;
  font-size: 12px;
  line-height: 20px;
  padding: 0 10px;
}
#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 0.57rem 35px;
  text-shadow: 0 1px 0 #FFF;
}
/* menu */
#menu ul li .caret::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* REQUIRED for solid icons */
  margin-left: 5px;
  font-size: 14px;
  display: inline-block;
  transition: all 0.3s ease-out;
}

#menu .navbar-nav > li > a:hover .caret::after {
  transform: rotate(180deg);
  color: #07A169;
}
#menu ul li .caret{
  font-size: 0;
}
#menu .navbar-nav{
	display: inline-flex;
	gap: 0 44px;
}
#menu .navbar-nav > li > a {
  color: #00170F !important;
  padding: 28px 0px;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s linear;
}
#menu .navbar-nav > li > a:hover, #menu .dropdown-menu a:hover {
  color: #07A169;
}
#menu .dropdown-menu a{
  transition: all 0.3s;
  margin-bottom: 0px;
  font-size: 16px;
    display: block;
    border-bottom: 1px dashed #dedede;
    padding: 10px 18px;
    color: #272727;
    text-transform: none;
}
#menu .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  min-width: 230px;
}
#menu .dropdown-menu li {
    padding: 0 10px;
    font-size: 12px;
}
#menu .dropdown-inner {
  display: flex;
  flex-direction: column;
}
#menu .dropdown-inner ul {
  width: 100%;
  min-width: 200px;
}
@media (min-width: 960px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
  #menu .dropdown-inner {
    flex-direction: row;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-2 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -600px;
  }
}
#category {
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
#menu .navbar-toggler i {
  color: #fff;
  border-color: #fff;
  font-size: 0.9em;
}
/* default boostrap changes */
div.required .col-form-label:before, div.required .form-label:before {
  content: "* ";
  color: #F00;
  font-weight: bold;
}
.form-switch-lg {
  font-size: 20px;
  min-height: 30px;
  line-height: 30px;
}
.nav-tabs {
  margin-bottom: 15px;
}
.form-check .form-check-input {
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
    .bd-offcanvas-contact{
        display: none;
    }
  .col-form-label {
    text-align: right;
  }
  .close-nav, .navbar-header.xs-toggle{
    display: none;
  }
}
/*----------------------------------------*/
/*  Social Media Styles
/*----------------------------------------*/
.app-btn img {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    max-width: 100%;
}
.social-icon-list {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0px;
}

.social-icon-list li {
    list-style: none;
}
.social-icon-list li i{
    font-size: 0;
}
.social-icon-list li i::before{
    font-size: 16px;
}
.theme-social ul li a {
    color: var(--bd-theme-black);
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: inline-flex;
    border: 1px solid var(--bd-border-primary);
    border-radius: 50%;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.theme-social ul li a i {
    transition: all 0.3s ease-in-out;
}

.theme-social ul li a:hover {
    color: var(--bd-white);
    border-color: var(--bd-primary);
    background-color: var(--bd-primary);
}

.theme-social ul li:hover .facebook {
    background-color: #1877F2;
    border-color: #1877F2;
}

.theme-social ul li:hover .twitter {
    background-color: #1DA1F2;
    border-color: #1DA1F2;
}

.theme-social ul li:hover .linkedin {
    background-color: #0A66C2;
    border-color: #0A66C2;
}

.theme-social ul li:hover .instagram {
    background-color: #E4405F;
    border-color: #E4405F;
}

.theme-social ul li:hover .youtube {
    background-color: #FF0000;
    border-color: #FF0000;
}

.theme-social.social-brand-color ul li a {
    color: var(--bd-white);
    border: none;
    transform: translateY(0px);
}

.theme-social.social-brand-color ul li:hover {
    transform: translateY(-3px);
}

.theme-social.social-brand-color ul li .facebook {
    background-color: #1877F2;
}

.theme-social.social-brand-color ul li .twitter {
    background-color: #1DA1F2;
}

.theme-social.social-brand-color ul li .linkedin {
    background-color: #0A66C2;
}

.theme-social.social-brand-color ul li .instagram {
    background-color: #E4405F;
}

.theme-social.social-brand-color ul li .youtube {
    background-color: #FF0000;
}
#information-information {
    overflow: hidden;
}
/*----------------------------------------*/
/*  Contacts css
/*----------------------------------------*/
.map-part-contact{
	padding-bottom: 100px;
}
.btn-contact{
	margin-top: 30px;
}
#form-contact input{
	height: 50px;
	margin-bottom: 30px;
} 
.contact-form-wrapper {
    margin-right: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .contact-form-wrapper {
        margin-right: 0;
    }
}

.contact-form-thumb img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

.contact-address-box {
    background: var(--bd-white);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s;
}
.contact-address-box:hover {
    transform: translateY(-15px);
    background-color: var(--bd-primary);
}
.contact-address-box:hover .icon {
    background-color: var(--bd-white);
}
.contact-address-box:hover .title {
    color: var(--bd-white);
}
.contact-address-box:hover .content p {
    color: var(--bd-white);
}
.contact-address-box .icon {
    background-color: var(--primary-rgb-1);
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.contact-address-box .icon i {
    color: var(--bd-primary);
    font-size: 0px;
    transition: all 0.3s;
}
.contact-address-box .icon i::before {
    font-size: 24px;
}
.contact-address-box .title {
    margin-top: 25px;
    margin-bottom: 15px;
    transition: all 0.3s;
    font-size: 20px;
    font-weight: var(--bd-fw-bold);
}
.contact-address-box .content p {
    margin-bottom: 0;
    transition: all 0.3s;
    color: var(--bd-body-text);
    line-height: 30px;
}

.contact-map {
    margin-top: 80px;
}
.contact-map iframe {
    width: 100%;
    border-radius: 8px;
}
.content a {
     color: inherit;
    outline: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    background: transparent;
}
.authentication-form-wrapper {
    background-color: var(--bd-white);
    box-shadow: 0px 4px 80px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 30px 30px;
    text-align: start;
}
.authentication-form-wrapper .title {
    font-size: 32px;
}
.authentication-form-wrapper .subtitle {
    color: var(--bd-body-text);
    margin-bottom: 20px;
}
.authentication-form-logo {
    text-align: center;
    margin-bottom: 20px;
}
.authentication-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(0, 23, 15, 0.6);
    width: 100%;
    height: 100%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    inset-block-start: 0;
    inset-block-end: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 5;
}
.authentication-cover::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    inset-block-start: 0;
    inset-block-end: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}
.authentication-cover-content {
    width: 70%;
    height: 20rem;
    position: relative;
}
.authentication-cover-content .section-title {
    color: var(--bd-white);
    font-weight: var(--bd-fw-sbold);
}
.authentication-cover-content .section-paragraph {
    color: var(--bd-white);
}

.sign-link {
    color: var(--bd-taxonomy-color);
    font-size: 16px;
}

.divider-wrapper {
    display: flex;
    position: relative;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.divider-line {
    position: relative;
    background-image: linear-gradient(90deg, #46494D, rgba(33, 38, 45, 0));
    width: 100%;
    height: 1px;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
}
.divider-line.left-line {
    background-image: linear-gradient(-90deg, #46494D, rgba(33, 38, 45, 0));
}
.divider-title {
    position: relative;
    padding: 0 15px;
    width: 420px;
    text-align: center;
}

.alter-sign {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.sign-up-label a {
    color: var(--bd-primary);
}

/*----------------------------------------*/
/*  Footer Styles
/*----------------------------------------*/
.footer-widget .footer-widget-title {
    margin-bottom: 20px;
}
.footer-widget-logo {
    margin-bottom: 20px;
}
.footer-widget-description {
    color: #ffffff;
    margin-bottom: 25px;
}
.footer-widget-description.light-color {
    color: var(--bd-white);
}
.footer-widget .footer-widget-links ul li {
    list-style: none;
    font-weight: var(--bd-fw-medium);
}
.footer-widget .footer-widget-links ul li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
}
.footer-widget .footer-widget-links ul li:not(:last-child) {
    margin-bottom: 10px;
}
.footer-widget .footer-widget-links.has-white ul li a {
    color: var(--bd-white);
}
.footer-area.has-footer-space {
    padding: 190px 0 100px;
}
.footer-widget-contact-info a {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}
@media (max-width: 575px) {
    .footer-area.has-footer-space {
        padding: 65px 0 65px;
    }
}

.footer-widget-links ul {
	padding: 0;
  margin-bottom: 0;
}

.footer-widget-contact-item {
    display: flex;
    gap: 10px;
    color: var(--bd-taxonomy-color);
}
.footer-widget-contact-item span {
    font-weight: 500;
}
.footer-widget-contact-item a:hover {
    color: var(--bd-primary);
}
.footer-widget-contact-item:not(:last-child) {
    margin-bottom: 10px;
}
.footer-widget-contact-item.has-white {
    color: var(--bd-white);
}
.footer-widget-contact-item.has-white a {
    color: rgba(255, 255, 255, 0.9);
}
.footer-widget-contact-item.has-white a:hover {
    color: var(--bd-secondary);
}

.footer-subscribe-form {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .footer-subscribe-form {
        flex-wrap: wrap;
    }
}
.footer-subscribe-form.style-two {
    position: relative;
    margin-bottom: 15px;
}
.footer-subscribe-form.style-two input {
    padding-inline-start: 20px;
    padding-inline-end: 130px;
}
.footer-subscribe-form.style-two .btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}
.footer-subscribe-form.style-two.place-text-white input {
    color: var(--bd-white);
}
.footer-subscribe-form.style-two.place-text-white input::placeholder {
    color: var(--bd-light);
}

/*.footer-1-col-2 {
    margin-left: 100px;
}*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-1-col-2 {
        margin-left: 50px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .footer-1-col-2 {
        margin-left: 0;
    }
}

/*.footer-1-col-3 {
    margin-left: 70px;
}*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-1-col-3 {
        margin-left: 50px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .footer-1-col-3 {
        margin-left: 0;
    }
}

.footer-4-col-2 {
    margin-inline-start: 130px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .footer-4-col-2 {
        margin-inline-start: 100px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-4-col-2 {
        margin-inline-start: 90px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .footer-4-col-2 {
        margin-inline-start: 0px;
    }
}

.footer-4-col-3 {
    margin-inline-start: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .footer-4-col-3 {
        margin-inline-start: 50px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-4-col-3 {
        margin-inline-start: 32px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .footer-4-col-3 {
        margin-inline-start: 0px;
    }
}

.footer-top {
    border-bottom: 1px solid var(--bd-white);
}

.footer-wave {
    padding-top: 125px;
}

.wave {
    background: url("../images/shape/wave.svg") repeat-x;
    position: absolute;
    top: 40px;
    width: 6400px;
    height: 198px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
}
.wave:nth-of-type(2) {
    top: 40px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}
.wave-wrapper {
    height: 135px;
    width: 100%;
    position: absolute;
    top: -10px;
    left: 0;
    background: var(--bd-white);
}

/*----------------------------------------*/
/*  Footer Styles
/*----------------------------------------*/
.footer-area.style-two .footer-widget-title {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.65);
}
.footer-area.style-two .footer-widget-links ul li {
    list-style: none;
}
.footer-area.style-two .footer-widget-links ul li a {
    color: var(--bd-white);
}
.footer-area.style-two .footer-widget-links ul li:not(:last-child) {
    margin-bottom: 10px;
}
.footer-area.style-two .footer-widget-description {
    color: var(--bd-white);
}
.footer-area.style-two .checkout-option label {
    color: var(--bd-white);
}
.footer-widget .footer-widget-title {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    font-family: "Oxygen", sans-serif;
}
.footer-widget .footer-widget-title.has-color-off {
    color: rgba(255, 255, 255, 0.6);
}
.footer-widget.footer-2-col-2 {
    margin-left: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .footer-widget.footer-2-col-2 {
        margin-left: 0;
    }
}
.footer-widget.footer-2-col-3 {
    margin-left: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .footer-widget.footer-2-col-3 {
        margin-left: 0;
    }
}
.footer-widget.footer-2-col-4 {
    margin-left: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .footer-widget.footer-2-col-4 {
        margin-left: 0;
    }
}

.footer-3-col-2 {
    margin-left: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .footer-3-col-2 {
        margin-left: 0;
    }
}

.footer-3-col-3 {
    margin-left: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .footer-3-col-3 {
        margin-left: 0;
    }
}

.footer-5-col-2 {
    margin-left: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .footer-5-col-2 {
        margin-left: 0;
    }
}

/*@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .footer-shape {
        display: none;
    }
}*/
.footer-shape .shape-1 {
    position: absolute;
    bottom: 0;
    left: 20px;
    z-index: 6;
    opacity: 0.6;
}
.footer-shape .shape-2 {
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: 6;
    opacity: 0.6;
}

.footer-top-shape img {
    width: 100%;
}

/*----------------------------------------*/
/*  3.4.1 Copyright Style
/*----------------------------------------*/
.footer-copyright-area {
    padding-bottom: 20px;
}
.footer-area-main-content.section-space{
    padding-bottom: 50px;
}
.footer-copyright-area.style-one {
    padding: 27px 0;
    border-top: 1px solid var(--bd-border-primary);
}
.footer-copyright-area.style-two {
    padding: 15px 0;
}
.footer-copyright-area.style-two .footer-copyright-text p {
    color: var(--bd-white);
}
.footer-copyright-area.style-two .footer-copyright-text p a {
    color: var(--bd-secondary);
}
.footer-copyright-area .footer-copyright-text p a {
    color: var(--bd-primary);
    padding: 0 0 2px 0;
}

.footer-copyright-list ul {
    display: flex;
    margin-bottom: 0;
}

.footer-copyright-list .underline a {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}
@media (max-width: 575px) {
    .footer-copyright-list ul {
        flex-wrap: wrap;
    }
}
.footer-copyright-list ul li {
    list-style: none;
    position: relative;
    margin-right: 10px;
    padding-left: 10px;
    color: #ffffff;
}
.footer-copyright-list ul li:first-child::before {
    display: none;
}
/*.footer-copyright-list ul li::before {
    position: absolute;
    height: 11px;
    width: 1px;
    background: rgba(0, 0, 0, 0.3);
    content: "";
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}*/

.footer-copyright p {
    color: #ffffff;
    margin-bottom: 0;
}
.footer-copyright p a {
    color: var(--bd-primary);
    transition: all 0.3s ease-in-out;
}

.copyright-bg {
    position: relative;
    padding-top: 40px;
    padding-bottom: 20px;
    z-index: 6;
}
.copyright-bg::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(./image/catalog/copy-right-shape-2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 5;
}
.copyright-bg .footer-copyright p {
    color: var(--bd-theme-black);
}
.copyright-bg .footer-copyright p a {
    color: var(--bd-theme-black);
}
.section-space {
    padding-top: 100px;
    padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-space {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .section-space {
        padding-top: 65px;
        padding-bottom: 65px;
    }
}

.section-space-top {
    padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-space-top {
        padding-top: 80px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .section-space-top {
        padding-top: 65px;
    }
}

.section-space-bottom {
    padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-space-bottom {
        padding-bottom: 80px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .section-space-bottom {
        padding-bottom: 65px;
    }
}

.section-space-medium {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-space-medium {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .section-space-medium {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.section-space-medium-bottom {
    padding-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-space-medium-bottom {
        padding-bottom: 60px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .section-space-medium-bottom {
        padding-bottom: 50px;
    }
}

.section-space-small {
    padding-top: 60px;
    padding-bottom: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .section-space-small {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.section-space-small-top {
    padding-top: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .section-space-small-top {
        padding-top: 50px;
    }
}

.section-space-small-bottom {
    padding-bottom: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .section-space-small-bottom {
        padding-bottom: 50px;
    }
}

.section-space-large {
    padding-top: 150px;
    padding-bottom: 150px;
}

.section-space-top-large {
    padding-top: 150px;
}

.section-space-bottom-large {
    padding-bottom: 150px;
}

.section-title-space {
    margin-bottom: 50px;
}
@media (max-width: 575px) {
    .section-title-space {
        margin-bottom: 40px;
    }
}

.section-space-margin {
    margin-top: 100px;
    margin-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-space-margin {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .section-space-margin {
        margin-top: 65px;
        margin-bottom: 65px;
    }
}

.section-space-margin-bottom {
    margin-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-space-margin-bottom {
        margin-bottom: 80px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .section-space-margin-bottom {
        margin-bottom: 65px;
    }
}

/* breadcrumb */
.breadcrumb-content{
	align-items: center;
	display: flex;
	margin: 0 auto;
	height: 100%;
}
.slider-text-i{
	margin: 0 auto;
}
.bg-light-slider .container{
	height: 100%;
}
.bg-light-slider.bg-breadcrumb {
	background-image: url('../../../image/catalog/breadcrumb-bg.jpg');
    /* height: 580px; */
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 9;
    padding-top: 200px;
    padding-bottom: 150px;
}
.bg-light-slider.bg-breadcrumb::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 0, 52, 0.7);
    z-index: -1;
}
.breadcrumb-subtitle{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--bd-white);
    background-color: rgba(3, 0, 52, 0.7);
    padding: 0 10px;
    border-radius: 50px;
    display: inline-flex;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.breadcrumb-title{
	font-size: 68px;
	font-weight: 700;
	margin-bottom: 15px;
	max-width: 850px; 
}
.breadcrumb-desc{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.breadcrumb {
  margin: 0 0 20px 0;
  padding: 8px 0;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  background-color: var(--bs-tertiary-bg);
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li.breadcrumb-item {
  text-shadow: 0 1px 0 #FFF;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
}
.breadcrumb > li.breadcrumb-item:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: -5px;
  width: 29px;
  height: 29px;
  border-right: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  transform: rotate(-45deg);
}
.breadcrumb > li.breadcrumb-item + li:before {
  content: "";
  padding: 0;
}
/* Theme Custom CSS */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}
#cookie div {
  font-size: 16px;
  color: #FFFFFF;
}
/* ================================
   SLIDER SECTION
   ================================ */
.banner-navigation-btn-two button {
    position: absolute;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    z-index: 55;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    color: var(--bd-white);
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s linear;
    border: none;
}
.banner-navigation-btn-two .banner-navigation-next {
    left: auto !important;
    right: 24px;
}
.banner-navigation-btn-two button i{
	font-size: 0;
}
.banner-navigation-btn-two button i::before{
	font-size: 25px;
}
.banner-navigation-btn-two button:hover {
    color: var(--bd-theme-black);
    background-color: var(--bd-white);
}
.banner-slider-wrapper {
  min-height: 830px;
}
.banner-bg-image::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 23, 0.8);
  opacity: 0.6;
}
.bdSliderActive .swiper-slide-active .banner-bg-image {
  transform: scale(1.15);
}
.banner-bg-image {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}
.banner-content-two {
  padding-top: 200px;
  padding-bottom: 140px;
  max-width: 1040px;
  margin: 0 auto;
}
div#pjWrapperTaxiBooking_theme11 {
    text-align: left;
}
.bdSliderActive .swiper-slide-active .banner-subtitle {
  animation-delay: 1s;
  animation-duration: 0.5s;
}
.banner-title.white-text{
    font-size: 68px;
    margin-bottom: 25px;
    font-weight: 700;
}
.banner-form .form-list .form-list-item .description {
    color: var(--bd-white);
    font-size: 16px;
    margin-bottom: 0;
}
.fa-solid, .fas {
    font-weight: 900;
}
.banner-form .form-list .form-list-item .icon {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    color: var(--bd-primary);
}
.banner-form .form-list .form-list-item .icon i{
	font-size: 0;
}
.banner-form .form-list .form-list-item .icon i::before{
	font-size: 16px;
}
.banner-form .form-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.banner-form .form-list .form-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pjTbs-body.serch-11 {
    padding: 0 !important;
}
#pjWrapperTaxiBooking_theme11 .container-fluid {
    padding: 0;
}
#pjWrapperTaxiBooking_theme11 .pjTbs-box{
	margin-bottom: 0 !important
}
/*.banner-content-two .banner-form-input input {
    width: 100%;
    height: 60px;
    border-radius: 50px;
    outline: none;
    border: 0;
    padding-inline-start: 30px;
    padding-inline-end: 87px;
    font-size: 16px;
    line-height: 32px;
    font-weight: 500;
    backdrop-filter: blur(20px);
    background-color: var(--bd-white);
    color: #525258;
}*/
/*.banner-content-two .banner-form-input {
    position: relative;
    border-radius: 50px;
    padding: 6px 6px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}
.banner-content-two .banner-form-input button {
    position: absolute;
    inset-inline-end: 10px;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
}*/
.banner-content-two .banner-subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bd-white);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0 10px;
  border-radius: 50px;
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.bdSliderActive .swiper-slide-active .banner-title {
  animation-delay: 1.2s;
  animation-duration: 0.7s;
}
a, .btn, button, span, sub, sup, p, input, select, textarea, img, svg, li, h1, h2, h3, h4, h5, h6 {
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.bdSliderActive .swiper-slide-active .banner-subtitle,
.bdSliderActive .swiper-slide-active .banner-title, .bdSliderActive .swiper-slide-active .banner-form-input, 
.bdSliderActive .swiper-slide-active .form-list {
    animation-fill-mode: both;
    animation-name: bdFadeInUp;
}
.bdSliderActive .swiper-slide-active .bd-banner-title {
    animation-delay: 1.2s;
    animation-duration: 0.7s;
}
.bdSliderActive .swiper-slide-active .form-list {
    animation-delay: 1.4s;
    animation-duration: 0.9s;
}
.bdSliderActive .swiper-slide-active .banner-form-input {
    animation-delay: 1.3s;
    animation-duration: 0.8s;
}
@-webkit-keyframes bdFadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

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

@keyframes bdFadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }

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

.bdFadeInUp {
    -webkit-animation-name: bdFadeInUp;
    animation-name: bdFadeInUp
}

@-webkit-keyframes bdFadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }

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

@keyframes bdFadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }

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

.bdFadeInUpBig {
    -webkit-animation-name: bdFadeInUpBig;
    animation-name: bdFadeInUpBig
}

/* ================================
   ABOUT SECTION
   ================================ */

.about-section {
    position: relative;
}

.about-decorative-shapes .shape-circle-large,
.about-decorative-shapes .shape-circle-small,
.about-decorative-shapes .shape-book {
    position: absolute;
}

.about-decorative-shapes .shape-circle-large {
    position: absolute;
    top: 150px;
    left: 507px;
    z-index: -1;
}

.about-decorative-shapes .shape-circle-small {
    position: absolute;
    top: 300px;
    left: 610px;
    z-index: -1;
}

.about-decorative-shapes .shape-book {
    position: absolute;
    bottom: 100px;
    right: 270px;
}

.about-media-container {
    position: relative;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-image-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-experience-badge {
    background: var(--bd-primary);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: var(--bd-white);
}
.about-experience-badge p{
	font-size: 16px;
	margin-bottom: 0;
	margin-top: 5px;
}
.experience-number {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
}

.about-image-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.about-image-wrapper.about-image-small {
    max-height: 200px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-testimonial-card {
    background: var(--bd-white);
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0px 6px 100px 0px rgba(8, 5, 33, 0.1);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stats {
    flex: 1;
}

.stats-number {
    font-size: 38px;
    font-weight: bold;
    margin: 0;
}
.gap-15 {
    gap: 15px;
}
.mb-10 {
    margin-bottom: 10px;
}
.about-testimonial-card p{
    font-size: var(--bd-fs-p);
    font-family: var(--bd-ff-p);
    font-weight: var(--bd-fw-normal);
    color: var(--bd-body-text);
    margin-bottom: 0;
}
/*.about-content-container {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    height: 100%;*/
/*}*/

.about-text-content {
    width: 100%;
}
.about-section .about-content-container {
    margin-left: 30px;
}
/* Section Headers */
.section-header {
    margin-bottom: 30px;
}

.section-header-wrapper {
    margin-bottom: 30px;
}

.section-subtitle {
    display: inline-block;
    color: var(--bd-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bd-label-color);
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--bd-body-text);
}

.text-underline-mark {
    position: relative;
    z-index: 2;
    display: inline-block;
}
.text-underline-mark::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    width: 100%;
    z-index: -1;
    height: 100%;
    background: url(../../../image/catalog/down-mark-line.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    -webkit-animation: section-animation 3s infinite;
    animation: section-animation 3s infinite;
}
@keyframes section-animation {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}

/*.text-underline-mark::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -5px;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 3px;*/
/*    background: linear-gradient(to right, var(--bd-primary), var(--bd-secondary));*/
/*}*/

/* Features List */
.features-list ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.features-list {
    margin: 35px 0 50px;
}
.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--bd-body-text);
}

.features-list li i {
    color: var(--bd-primary);
    font-size: 18px;
}

.list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bd-primary);
    color: var(--bd-white);
    font-size: 12px;
}

.list-icon.white {
    color: var(--bd-white);
    background: rgba(255, 255, 255, 0.2);
}

/* Action Buttons */
.features-list ul li i {
    width: 25px;
    height: 25px;
    min-width: 25px;
    background-color: rgba(7, 161, 105, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-primary);
    font-size: 0;
    border-radius: 50%;
}

.features-list ul li i::before {
    font-size: 13px;
}
.about-action-button {
    margin-top: 30px;
}

.bd-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.bd-btn.btn-primary {
    background: var(--bd-primary);
    color: var(--bd-white);
    border: 2px solid var(--bd-primary);
    font-size: 16px;
}

.bd-btn.btn-primary:hover {
    background: transparent;
    color: var(--bd-primary);
}

.bd-btn.btn-outline-border-primary {
    background: transparent;
    color: var(--bd-primary);
    border: 2px solid var(--bd-primary);
}

.bd-btn.btn-outline-border-primary:hover {
    background: var(--bd-primary);
    color: var(--bd-white);
}

.bd-btn.btn-outline-primary {
    background: transparent;
    color: #075A3B;
    border: 1px solid var(--bd-primary);
    font-size: 16px;
}

.bd-btn.btn-outline-primary:hover {
    background: var(--bd-primary);
    color: var(--bd-white);
}

.bd-btn.btn-outline-border-secondary {
    background-color: var(--bd-secondary);
    color: var(--bd-white);
    border: 1px solid var(--bd-secondary);
}

.bd-btn.btn-outline-border-secondary:hover {
    color: var(--bd-secondary);
    border-color: var(--bd-secondary);
    background-color: transparent;
}

.bd-btn.btn-outline-border-white {
    background-color: var(--bd-white);
    color: var(--bd-theme-black);
    border: 1px solid var(--bd-white);
}

.bd-btn.btn-outline-border-white:hover {
    color: var(--bd-white);
    border-color: var(--bd-white);
    background-color: transparent;
}

.bd-btn.btn-small {
    padding: 8px 20px;
}

/* ================================
   COUNTER SECTION
   ================================ */

.counter-section {
    position: relative;
}

.counter-container {
    display: grid;
    gap: 30px;
    padding: 70px 100px;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.counter-item {
    text-align: center;
    position: relative;
    z-index: 29;
}
.counter-container .counter-item:not(:last-child)::after {
    position: absolute;
    content: "";
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.5);
}
.counter-content {
    color: var(--bd-label-color);
}

.counter-number {
    color: var(--bd-white);
    font-size: 48px;
}

.counter-number .purecounter {
    color: var(--bd-white);
    font-size: 48px;
}

.counter-item p {
    font-size: 16px;
    color: var(--bd-white);
    margin: 0;
}

.counter-decorative-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.counter-decorative-shapes > div {
    position: absolute;
}

.counter-decorative-shapes .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.counter-decorative-shapes .shape-2 {
    position: absolute;
    top: 21px;
    left: 393px;
    z-index: 5;
    animation: scaleZeroOne 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate both;
}

.counter-decorative-shapes .shape-3 {
    position: absolute;
    top: -33px;
    right: 241px;
    z-index: 5;
}

.counter-decorative-shapes .shape-4 {
    position: absolute;
    top: 22px;
    right: 32px;
    z-index: 5;
}

.counter-decorative-shapes .shape-5 {
    position: absolute;
    bottom: -33px;
    left: 253px;
    z-index: 5;
}

.counter-decorative-shapes .shape-6 {
    position: absolute;
    bottom: 22px;
    right: 366px;
    z-index: 5;
    animation: scaleZeroOne 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate both;
}

.counter-decorative-shapes .shape-7 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
}

/* ================================
   WHY CHOOSE SECTION
   ================================ */

.why-choose-section {
    position: relative;
}

.why-choose-card {
    background: var(--bd-white);
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.why-choose-item {
    text-align: center;
}

.why-choose-icon {
    display: inline-block;
    margin-bottom: 20px;
}

.why-choose-icon img:hover {
    transition: all 0.3s 0s ease-out;
}

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

.why-choose-content {
    text-align: center;
}

.why-choose-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--bd-label-color);
    margin-bottom: 15px;
}

.why-choose-description {
    font-size: 16px;
    line-height: 30px;
    color: #4F4F4F;
    margin: 0;
}

/* ================================
   PARTNERS SECTION
   ================================ */

.partners-section {
    position: relative;
}

.partners-header-wrapper.has-margin {
    padding-right: 40px;
}

.partners-grid-wrapper {
    position: relative;
}

.partners-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.partner-logo-item {
    border: 1px solid var(--bd-border-primary);
    transition: all 0.3s linear;
    padding: 15px 15px;
    text-align: center;
}

.partner-logo-item:hover {
    box-shadow: 0 10px 50px 0 rgba(26, 46, 85, 0.1);
    background-color: var(--bd-white);
}

.partner-logo-item a {
    display: block;
}
.partners-grid-container .partner-logo-item:first-child {
    border-width: 0;
}
.partners-grid-container .partner-logo-item:nth-child(2) {
    border-width: 0 0 0 1px;
}
.partners-grid-container .partner-logo-item:nth-child(3) {
  border-width: 0 1px 0 1px;
}
.partners-grid-container .partner-logo-item:nth-child(4) {
    border-width: 0;
}
.partners-grid-container .partner-logo-item:nth-child(5) {
    border-width: 1px 0 0 0;
}
.partners-grid-container .partner-logo-item:nth-child(6) {
    border-width: 1px 0 0 1px;
}
.partners-grid-container .partner-logo-item:nth-child(7) {
    border-width: 1px 1px 0 1px;
}
.partners-grid-container .partner-logo-item:last-child {
    border-width: 1px 0 0 0;
}
/* ================================
   VIDEO SECTION
   ================================ */

.video-section {
    min-height: 500px;
    display: flex;
    align-items: center;
}
.video-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 23, 15, 0.4);
    inset: 0;
    z-index: -1;
}
.video-bg-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.video-section .container {
    position: relative;
    z-index: 2;
}

.video-content-wrapper {
    color: var(--bd-white);
}

.video-content .section-title {
    color: var(--bd-white);
}

.video-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

.video-play-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bd-white);
    color: var(--bd-primary);
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.video-play-btn.has-bg {
    background: rgba(255, 255, 255, 0.95);
}

.video-play-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================
   BLOG SECTION
   ================================ */

.blog-section {
    position: relative;
}

.blog-card {
    background: var(--bd-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-thumbnail-wrapper {
    position: relative;
}

.blog-thumbnail {
    overflow: hidden;
    transition: all 0.3s ease-out 0s;
    position: relative;
}
.blog-card:hover .blog-thumbnail::before {
    animation: shine 800ms;
}

.blog-card .blog-thumbnail::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    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);
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.blog-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    bottom: -40px;
    right: 15px;
}

.date-circle-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bd-white);
    color: var(--bd-primary);
    font-weight: 600;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
}

.date-circle-badge.primary {
    background: var(--bd-primary);
    color: var(--bd-white);
}

.date-circle-badge .subtitle {
    display: block;
    font-size: 14px;
    font-weight: 400;
}

.blog-content {
    padding: 40px 30px 30px 30px;
    background-color: var(--bd-bg-primary);
    border-radius: 0 0 6px 6px;
}

.blog-meta-list {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    color: var(--bd-text-muted);
}

.blog-meta-item i{
  font-size: 0;
  margin-right: 5px;
}

.blog-meta-list a{
    color: var(--bd-taxonomy-color);
}
.blog-meta-list i{
    color: var(--bd-primary);
}
.blog-meta-item i::before{
  font-size: 16px;
}

.blog-meta-item.has-separator {
    padding-right: 15px;
    border-right: 1px solid var(--bd-border-primary);
}

.meta-icon {
    color: var(--bd-primary);
}
.meta-icon i{
	font-size: 0;
}
.meta-icon i::before{
	font-size: 14px;
}
.meta-text {
    color: var(--bd-body-text);
}

.meta-author {
    color: var(--bd-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-author:hover {
    color: var(--bd-primary);
    opacity: 0.8;
}

.blog-content .title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.25;
}

.blog-content .title.underline {
    position: relative;
}

.blog-content .title a {
    color: var(--bd-label-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content .title a:hover {
    color: var(--bd-primary);
}

.blog-pagination {
    margin-top: 40px;
    text-align: center;
}

.bd-dots-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.bd-dots-pagination.has-primary .swiper-pagination-bullet-active {
    background: var(--bd-primary);
}

.pagination-small-active .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
}

.cta-content {
    color: var(--bd-white);
}

.cta-content .section-title {
    color: var(--bd-white);
    font-weight: 600;
    margin-bottom: 30px;
}
.course-details-list ul{
	padding: 0;
}
.cta-content .course-details-list ul li {
    color: var(--bd-white);
    align-items: center;
    font-size: 16px;
}
.course-details-list ul li:not(:last-child) {
    margin-bottom: 15px;
}
.course-details-list ul li i{
	font-size: 0;
}
.course-details-list ul li i::before{
	font-size: 14px;
}
.course-details-list ul li {
    list-style: none;
    display: flex;
    gap: 10px;
}

.cta-action-buttons {
    margin-top: 30px;
    gap: 10px;
}

.cta-image-wrapper {
    position: relative;
}

.cta-thumbnail-container {
    position: relative;
}

.cta-thumbnail {
    border-radius: 12px;
    overflow: hidden;
}

.cta-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.cta-thumbnail-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.cta-decorative-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cta-decorative-shapes .shape-1 {
    position: absolute;
    top: 0px;
    left: 0px;
}

.cta-decorative-shapes .shape-2 {
    position: absolute;
    bottom: 00px;
    right: 0px;
}
/*Faq*/
#faqc2, #faqc3, #faqc4, #faqc5, #faqc6{
  margin-top: 30px;
} 
.faq-row {
    display: block;
}

.faq-content {
    display: inline-block;
    width: 66%;
}
.faq-section .faq-page ul {
    padding: 0!important
}

.faq .heading-text,.faxible_price .heading-text {
    max-width: 500px;
    margin: 0
}

.faq .d-flex,.faxible_price .d-flex {
    align-items: center
}

.faq {
    background-color: #F2F6F9;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: -15px;
    margin-right: -15px;
    padding: 100px 0
}

.faq .panel.panel-default {
    background: #fff;
    border: none;
    box-shadow: none;
    border-radius: 12px;
    margin-bottom: 25px
}

.faq .panel.panel-default h4 a {
    font-size: 16px;
    font-weight: 600
}

.faq .panel.panel-default .panel-body {
    font-size: 16px;
    line-height: 24px
}

.faq .panel-group,.service_content_about .service_info_box {
    margin-top: 50px
}
.faq-row {
    display: block;
}

.stiky-menu-faq {
    display: inline-block;
    vertical-align: top;
}

.faq-content {
    display: inline-block;
    width: 66%;
}
.faq .panel-title {
    font-weight: 600;
    font-size: 18px
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
}

.faq-section h2 span {
    color: var(--bd-primary)
}

.faq-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px
}

.faq-section .panel-title span, .faq-section .panel-title a {
    text-decoration: none;
    display: block;
    color: #0e0d18;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3em;
    letter-spacing: 0;
    padding-bottom: 25px;
    padding-top: 25px
}

.faq-section a.collapsed::after,.faq-section a::after {
    font-weight: 400;
    font-family: FontAwesome;
    font-size: 14px;
    cursor: pointer;
    float: right
}

.faq-section .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border: none;
    padding: 0 0 25px;
    font-size: 16px;
    color: #757575;
    line-height: 24px
}

.faq-section .panel-group .panel {
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 0
}

.faq-page {
    margin-top: 70px
}

.faq-section a.collapsed::after {
    content: '\f067';
    color: #0e0d18
}
.main-color, .services-menu ul li a:hover, .social_icons li a {
     color: #E95C1D;
}
@media (min-width: 768px) {
    .stiky-menu-faq {
        position:sticky;
        top: 6px;
    }

    .slider-xs {
        display: none
    } 
}

.faq-section a::after {
    content: '\f068';
    color: #000
}

.services-menu {
    border: 1px solid var(--bd-primary);
    border-radius: 15px;
    padding: 30px;
    background-color: #fff;
}

.service-content, .service-section, .services-menu {
    margin-bottom: 30px;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.services-menu ul li {
    padding-bottom: 15px;
    margin-top: 15px;
    border-bottom: 1px solid #e6e6e6;
}

.services-menu ul li a {
    color: #757575 !important;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
}


.services-menu ul li a:hover {
    color: var(--bd-primary) !important;
}
.list-unstyled ul li a font{

    background-color: transparent;
}
.province-title i {
    font-size: 0px;
    color: var(--bd-primary);
    margin-right: 5px;
}
.province-title i::before {
    font-size: 20px;
}
ul.branches-list {
    padding-left: 25px;
}
ul.branches-list li {
    list-style-type: none;
}
.branches-list li {
    margin-bottom: 5px;
}
.branches-list li a {
    font-size: 16px;
    color: #1d3052;
    text-decoration: underline;
    font-weight: 600;
    line-height: 28px;
}
h5.province-title {
    font-size: 20px;
    margin-top: 50px;
}
.saperate-me {
    padding-top: 35px;
    padding-bottom: 35px;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}
/*----------------------------------------*/
/* Missions Visions css
/*----------------------------------------*/
.why-choose-area.fix{
  margin-bottom: 100px;
}
.why-choose-area .counter-style-five.has-transparent .counter-content h2 {
    color: var(--bd-theme-black);
    font-size: 48px;
    font-weight: 700;
}
.why-choose-area .counter-style-five.has-transparent .counter-content p {
    color: var(--bd-body-text);
}

.mission-vision-box {
    border: 1px solid var(--bd-border-primary);
    border-radius: 8px;
    padding: 30px 30px;
    position: relative;
    overflow: hidden;
}

.mission-vision-shape {
    position: absolute;
    right: -30px;
    top: -30px;
    opacity: 0.1;
}

.mission-vision-icon {
    margin-bottom: 15px;
    display: inline-block;
}
.mission-vision-icon img {
    height: 64px;
    object-fit: cover;
}

.mission-vision-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}
.mission-vision-desc {
    font-size: var(--bd-fs-p);
    font-family: var(--bd-ff-p);
    font-weight: var(--bd-fw-normal);
    color: var(--bd-body-text);
    margin-bottom: 30px;
    line-height: 30px;
}
.core-values-bg {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.core-values-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 0;
}

.core-values-box {
    padding: 30px 30px;
    background-color: var(--bd-white);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-bottom: 30px;
}
.core-values-box.bg-flashlight::after {
    background: var(--bd-white);
}

.core-values-icon {
    display: flex;
    width: 80px;
    height: 80px;
    background-color: transparent;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--bd-primary);
    font-size: 33px;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding: 15px;
}
.core-values-icon img {
    width: 50px;
}
.core-values-icon::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border: 1px dashed var(--bd-primary);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    -webkit-animation-name: rotate-infinite;
    -webkit-animation-duration: 55s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

/* rotate infinite animation */
@-webkit-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-moz-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-ms-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.core-values-title {
    color: var(--bd-primary);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 28px;
}
p.core-values-desc {
    color: var(--bd-body-text);
}

.mission-vision-thumb-mask {
    -webkit-mask-image: url("../../../image/catalog/mission-vision-thumb-mask.webp");
    mask-image: url("../../../image/catalog/mission-vision-thumb-mask.webp");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    display: inline-flex;
}
.mission-vision-thumb-mask img {
    width: 100%;
    height: 100%;
}
 
.promotion-thumb-mask {
    -webkit-mask-image: url(../image/catalog/wave-mask.svg);
    mask-image: url(../image/catalog/wave-mask.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    display: inline-flex;
}
 
.promotion-list-two ul {
    display: flex;
    list-style: none;
    align-items: center;
    background-image: linear-gradient(100.88deg, var(--secondary-rgb-1) 0.6%, var(--primary-rgb-1) 100%);
    padding: 0 30px;
    gap: 95px;
    border-radius: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .promotion-list-two ul {
        padding: 0 15px;
        gap: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
    .promotion-list-two ul {
        gap: 0 30px;
    }
}
@media (max-width: 575px) {
    .promotion-list-two ul {
        flex-wrap: wrap;
        gap: 0px;
    }
}
.promotion-list-two ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 20px 0;
}
.promotion-list-two ul li:first-child::before {
    content: "";
    position: absolute;
    background-color: var(--bd-border-primary);
    height: 100%;
    width: 1px;
    top: 0;
    inset-inline-end: -42px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .promotion-list-two ul li:first-child::before {
        display: none;
    }
}
.promotion-list-two ul li .promotion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 70px;
    width: 70px;
    min-width: 70px;
    font-size: 36px;
    border-radius: 50%;
    color: var(--bd-white);
}
.promotion-list-two ul li span {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
}

.mvs-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.mvs-box p {
    text-align: justify;
}

.story-thumb img {
    border-radius: 8px;
}


/*----------------------------------------*/
/*  Sections Title
/*----------------------------------------*/
.section-title {
    font-weight: var(--bd-fw-sbold);
    font-family: var(--bd-ff-title);
}
.section-title.bottom-line {
    border-bottom: 1px solid var(--bd-border-primary);
    padding-bottom: 15px;
    position: relative;
}
.section-title.bottom-line::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    width: 10%;
    height: 3px;
    background-color: var(--bd-primary);
    transition: all 0.3s ease-in-out;
}
.section-subtitle {
    color: #076440;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.section-subtitle.bg-field {
    background-color: rgba(7, 161, 105, 0.15);
    border-radius: 6px;
    height: 32px;
    padding: 0 14px;
}
.section-subtitle.white {
    color: var(--bd-white);
}
.section-subtitle.secondary {
    color: var(--bd-secondary);
}

.down-mark-line {
    position: relative;
    z-index: 2;
    display: inline-block;
}
.down-mark-line::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    width: 100%;
    z-index: -1;
    height: 100%;
    background: url(../image/catalog/down-mark-line.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    -webkit-animation: section-animation 3s infinite;
    animation: section-animation 3s infinite;
}

@keyframes section-animation {
    0% {
        width: 0;
    }
    15% {
        width: 100%;
    }
    85% {
        opacity: 1;
    }
    90% {
        width: 100%;
        opacity: 0;
    }
    to {
        width: 0;
        opacity: 0;
    }
}
.down-mark-line-2 {
    position: relative;
    z-index: 2;
    display: inline-block;
}
.down-mark-line-2::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    background: url(../image/catalog/down-mark-line-2.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    -webkit-animation: section-animation 3s infinite;
    animation: section-animation 3s infinite;
}

.down-mark-line-3 {
    position: relative;
    z-index: 2;
    display: inline-block;
}
.down-mark-line-3::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    background: url(../image/catalog/down-mark-line-3.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    -webkit-animation: section-animation 3s infinite;
    animation: section-animation 3s infinite;
}

.section-bg {
    background-color: var(--bd-white);
    border-radius: 8px;
    padding: 15px 15px;
    box-shadow: 0px 1px 2px 1px rgba(3, 11, 30, 0.06), 0px 1px 1px 0px rgba(3, 11, 30, 0.1);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    border-bottom: 3px solid var(--bd-primary);
}

.title-underline {
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-underline svg {
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: -1;
}
.title-underline svg path {
    stroke: var(--bd-secondary);
    stroke-dasharray: 560;
    stroke-dashoffset: 560;
    animation: section_stroke 3s linear forwards infinite;
    -webkit-animation: section_stroke 3s linear forwards infinite;
}
.title-underline.primary svg path {
    stroke: var(--bd-primary);
}

@keyframes section_stroke {
    0% {
        stroke-dashoffset: 560;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -560;
    }
}
/* Elements section title */
.elements-line {
    display: flex;
    position: relative;
    align-items: center;
    margin: 0 -15px;
}
@media (max-width: 575px) {
    .elements-line {
        justify-content: center;
    }
}
.elements-title {
    position: relative;
    padding: 0 15px;
    width: max-content;
}
@media (max-width: 575px) {
    .elements-title {
        width: auto;
    }
}

.separator-line {
    position: relative;
    background-image: linear-gradient(90deg, #46494D, rgba(33, 38, 45, 0));
    width: 100%;
    height: 1px;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
}
@media (max-width: 575px) {
    .separator-line {
        width: auto;
        background-image: none;
    }
}
.separator-line.line-left {
    background-image: linear-gradient(-90deg, #46494D, rgba(33, 38, 45, 0));
}
@media (max-width: 575px) {
    .separator-line.line-left {
        background-image: none;
    }
}
.separator-line.line-right {
    background-image: linear-gradient(90deg, #46494D, rgba(33, 38, 45, 0));
}
@media (max-width: 575px) {
    .separator-line.line-right {
        background-image: none;
    }
}

.text-primary-custom {
    color: var(--bd-primary) !important;
}


.counter-style-five {
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: 0 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .counter-style-five {
        gap: 0 50px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-style-five {
        gap: 0 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-style-five {
        gap: 0 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .counter-style-five {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 575px) {
    .counter-style-five {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width:450px) {
    .counter-style-five {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.counter-style-five .counter-item:hover .counter-content::after {
    opacity: 1;
}
.counter-style-five .counter-content {
    position: relative;
    padding: 30px 50px;
    text-align: center;
    border-radius: 12px;
    background: var(--bd-white);
    box-shadow: 0px 4px 10px 0px rgba(131, 131, 131, 0.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-style-five .counter-content {
        padding: 50px 25px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter-style-five .counter-content {
        padding: 15px 10px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .counter-style-five .counter-content {
        padding: 35px 10px;
    }
}
@media (max-width:450px) {
    .counter-style-five .counter-content {
        padding: 20px 10px;
    }
}
.counter-style-five .counter-content h2 {
    margin-bottom: 5px;
}
.counter-style-five.has-transparent .counter-content {
    background: transparent;
    box-shadow: none;
    padding: 0 0;
}
.counter-style-five.has-transparent .counter-content h2 {
    color: var(--bd-white);
}
.counter-style-five.has-transparent .counter-content p {
    color: rgba(255, 255, 255, 0.8);
}
.counter-style-five .counter-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bd-secondary);
    font-size: 35px;
    margin-bottom: 20px;
}
.pt-50 {
    padding-top: 50px;
}
.white-text {
    color: var(--bd-white) !important;
}
.section-wrapper {
    position: relative;
}
.core-values-box-wrapper {
    position: relative;
}


/*----------------------------------------*/
/*  Teams css
/*----------------------------------------*/
.instructor-wrapper.style-one .instructor-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.instructor-wrapper.style-one .instructor-item:hover .instructor-thumb a::before {
    opacity: 0.5;
}
.instructor-wrapper.style-one .instructor-item:hover .instructor-info {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) scale(1, 1);
    transform: translateX(-50%) translateY(0) scale(1, 1);
}
.instructor-wrapper.style-one .instructor-item:hover .instructor-social .icon-1 {
    transform: translateX(0px);
    opacity: 1;
}
.instructor-wrapper.style-one .instructor-item:hover .instructor-social .icon-2 {
    transform: translateX(0px);
    opacity: 1;
}
.instructor-wrapper.style-one .instructor-item:hover .instructor-social .icon-3 {
    transform: translateX(0px);
    opacity: 1;
}
.instructor-wrapper.style-one .instructor-item:hover .instructor-social .icon-4 {
    transform: translateX(0px);
    opacity: 1;
}
.instructor-wrapper.style-one .instructor-thumb a::before {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    background-color: var(--bd-primary);
}
.instructor-wrapper.style-one .instructor-info {
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: calc(100% - 40px);
    background-color: var(--bd-white);
    padding: 15px 15px;
    border-radius: 6px;
    text-align: center;
    z-index: 3;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(0) scale(1, 0);
    transform: translateX(-50%) translateY(0) scale(1, 0);
    transform-origin: bottom center;
}
.instructor-wrapper.style-one .instructor-social {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}
.instructor-wrapper.style-one .instructor-social .social-icon-list {
    flex-direction: column;
}
.instructor-wrapper.style-one .instructor-social .icon-1 {
    opacity: 0;
    transform: translateX(-35px);
    transition: all 0.3s ease-in-out;
}
.instructor-wrapper.style-one .instructor-social .icon-2 {
    opacity: 0;
    transform: translateX(-35px);
    transition: all 0.4s ease-in-out;
}
.instructor-wrapper.style-one .instructor-social .icon-3 {
    opacity: 0;
    transform: translateX(-35px);
    transition: all 0.5s ease-in-out;
}
.instructor-wrapper.style-one .instructor-social .icon-4 {
    opacity: 0;
    transform: translateX(-35px);
    transition: all 0.6s ease-in-out;
}
.instructor-wrapper.style-two {
    text-align: center;
}
.instructor-wrapper.style-two:hover .instructor-social {
    opacity: 1;
}
.instructor-wrapper.style-two:hover .instructor-social .icon-1 {
    transform: translateY(-40px);
    opacity: 1;
}
.instructor-wrapper.style-two:hover .instructor-social .icon-2 {
    transform: translateY(-40px);
    opacity: 1;
}
.instructor-wrapper.style-two:hover .instructor-social .icon-3 {
    transform: translateY(-40px);
    opacity: 1;
}
.instructor-wrapper.style-two:hover .instructor-social .icon-4 {
    transform: translateY(-40px);
    opacity: 1;
}
.instructor-wrapper.style-two:hover .instructor-thumb a::before {
    opacity: 0.5;
}
.instructor-wrapper.style-two:hover.hover-style .instructor-thumb-wrap {
    border-radius: 16px 16px 16px 16px;
}
.instructor-wrapper.style-two:hover.hover-style .instructor-thumb img {
    border-radius: 16px 16px 16px 16px;
}
.instructor-wrapper.style-two .instructor-thumb-wrap {
    margin-bottom: 15px;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bd-white);
    position: relative;
}
.instructor-wrapper.style-two .instructor-thumb {
    position: relative;
}
.instructor-wrapper.style-two .instructor-thumb img {
    border-radius: 16px;
}
.instructor-wrapper.style-two .instructor-thumb a::before {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: var(--bd-primary);
    border-radius: 16px;
}
.instructor-wrapper.style-two .instructor-social {
    position: absolute;
    bottom: 0px;
    left: 50%;
    z-index: 5;
    opacity: 0;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
    width: 100%;
}
.instructor-wrapper.style-two .instructor-info .name {
    margin-bottom: 5px;
}
.instructor-wrapper.style-two .instructor-info span {
    color: var(--bd-taxonomy-color);
    display: block;
}
.instructor-wrapper.style-two.hover-style .instructor-thumb-wrap {
    border-radius: 250px 250px 0px 0px;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.instructor-wrapper.style-two.hover-style .instructor-thumb img {
    border-radius: 6px 6px 0 0;
}
.instructor-wrapper.style-three:hover .instructor-thumb a::before {
    opacity: 1;
    background: linear-gradient(180deg, var(--primary-rgb-5) 100%, var(--primary-rgb-5) 0);
}
.instructor-wrapper.style-three:hover .instructor-thumb a::after {
    opacity: 1;
}
.instructor-wrapper.style-three:hover .instructor-social .icon-1 {
    transform: translateY(-40px);
    opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-three:hover .instructor-social .icon-1 {
        transform: translateX(0px);
    }
}
.instructor-wrapper.style-three:hover .instructor-social .icon-2 {
    transform: translateY(-40px);
    opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-three:hover .instructor-social .icon-2 {
        transform: translateX(0px);
    }
}
.instructor-wrapper.style-three:hover .instructor-social .icon-3 {
    transform: translateY(-40px);
    opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-three:hover .instructor-social .icon-3 {
        transform: translateX(0px);
    }
}
.instructor-wrapper.style-three:hover .instructor-social .icon-4 {
    transform: translateY(-40px);
    opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-three:hover .instructor-social .icon-4 {
        transform: translateX(0px);
    }
}
.instructor-wrapper.style-three .instructor-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.instructor-wrapper.style-three .instructor-item .designation {
    color: rgba(255, 255, 255, 0.8);
}
.instructor-wrapper.style-three .instructor-thumb a::before {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
    transition: all 0.3s linear;
    background: linear-gradient(180deg, var(--primary-rgb-0) 0%, var(--primary-rgb-7) 100%);
}
.instructor-wrapper.style-three .instructor-info {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}
.instructor-wrapper.style-three .instructor-social {
    position: absolute;
    bottom: 21%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-three .instructor-social {
        bottom: 35%;
    }
}
.instructor-wrapper.style-four .instructor-item {
    text-align: center;
}
.instructor-wrapper.style-four .instructor-item:hover .instructor-thumb-wrapper::after {
    transform: rotate(-90deg);
}
.instructor-wrapper.style-four .instructor-item:hover .instructor-thumb a::after {
    opacity: 0.5;
}
.instructor-wrapper.style-four .instructor-item:hover .instructor-social .icon-1 {
    transform: translateX(25px);
    opacity: 1;
}
.instructor-wrapper.style-four .instructor-item:hover .instructor-social .icon-2 {
    transform: translateX(25px);
    opacity: 1;
}
.instructor-wrapper.style-four .instructor-item:hover .instructor-social .icon-3 {
    transform: translateX(25px);
    opacity: 1;
}
.instructor-wrapper.style-four .instructor-thumb-wrapper {
    border-radius: 100%;
    position: relative;
    z-index: 2;
    transition: 0.3s;
    position: relative;
    padding: 20px;
}
.instructor-wrapper.style-four .instructor-thumb-wrapper .instructor-thumb a {
    display: block;
    position: relative;
}
.instructor-wrapper.style-four .instructor-thumb-wrapper .instructor-thumb a img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.instructor-wrapper.style-four .instructor-thumb-wrapper .instructor-thumb a::after {
    background: var(--bd-primary);
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.instructor-wrapper.style-four .instructor-thumb-wrapper .instructor-social {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
    margin-left: -25px;
}
.instructor-wrapper.style-four .instructor-thumb-wrapper .instructor-social .icon-1 {
    transform: translateY(0px);
    opacity: 0;
}
.instructor-wrapper.style-four .instructor-thumb-wrapper .instructor-social .icon-2 {
    transform: translateY(0px);
    opacity: 0;
}
.instructor-wrapper.style-four .instructor-thumb-wrapper .instructor-social .icon-3 {
    transform: translateY(0px);
    opacity: 0;
}
.instructor-wrapper.style-four .instructor-thumb-wrapper .instructor-social .icon-4 {
    transform: translateY(0px);
    opacity: 0;
}
.instructor-wrapper.style-four .instructor-thumb-wrapper::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-image: url(../../../image/catalog/instructor-border-shape.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    transition: 0.5s all;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .instructor-wrapper.style-four .instructor-info .name {
        font-size: 22px;
    }
}
.instructor-wrapper.style-five .instructor-item {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.instructor-wrapper.style-five .instructor-item:hover .instructor-info-wrapper {
    transform: translateY(0);
}
.instructor-wrapper.style-five .instructor-item:hover .instructor-thumb a::before {
    opacity: 0.3;
}
.instructor-wrapper.style-five .instructor-item:hover .instructor-social {
    padding: 10px 0;
}
.instructor-wrapper.style-five .instructor-thumb {
    height: 408px;
    position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-five .instructor-thumb {
        height: 100%;
    }
}
.instructor-wrapper.style-five .instructor-thumb a::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease-out 0s;
    background-image: linear-gradient(180deg, var(--primary-rgb-0), var(--primary-rgb-7) 65%);
}
.instructor-wrapper.style-five .instructor-thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.instructor-wrapper.style-five .instructor-info {
    padding: 22px;
}
.instructor-wrapper.style-five .instructor-info-wrapper {
    background-image: linear-gradient(100.88deg, #E1F9F0 0.6%, #EEE0CE 100%);
    border-radius: 6px 6px 0 0;
    text-align: center;
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 100%;
    transform: translateY(52px);
    transition: all 0.3s ease-out 0s;
}
.instructor-wrapper.style-five .instructor-info-wrapper .designation {
    font-size: 16px;
    line-height: 26px;
    color: var(--bd-taxonomy-color);
    display: inline-block;
}
.instructor-wrapper.style-five .instructor-social {
    background-color: var(--bd-primary);
}
.instructor-wrapper.style-six .instructor-item {
    padding: 0 30px 30px;
    position: relative;
    z-index: 1;
    text-align: center;
}
.instructor-wrapper.style-six .instructor-item::after {
    content: "";
    height: 75%;
    width: 100%;
    background-color: var(--bd-white);
    border-radius: 10px;
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.instructor-wrapper.style-six .instructor-item:hover .instructor-thumb a::after {
    opacity: 0.5;
}
.instructor-wrapper.style-six .instructor-item:hover .instructor-social .icon-1 {
    transform: translateX(25px);
    opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-six .instructor-item:hover .instructor-social .icon-1 {
        transform: translateX(0px);
    }
}
.instructor-wrapper.style-six .instructor-item:hover .instructor-social .icon-2 {
    transform: translateX(25px);
    opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-six .instructor-item:hover .instructor-social .icon-2 {
        transform: translateX(0px);
    }
}
.instructor-wrapper.style-six .instructor-item:hover .instructor-social .icon-3 {
    transform: translateX(25px);
    opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-six .instructor-item:hover .instructor-social .icon-3 {
        transform: translateX(0px);
    }
}
.instructor-wrapper.style-six .instructor-item:hover .instructor-social .icon-4 {
    transform: translateX(25px);
    opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-six .instructor-item:hover .instructor-social .icon-4 {
        transform: translateX(0px);
    }
}
.instructor-wrapper.style-six .instructor-thumb {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 310px;
    width: 100%;
}
.instructor-wrapper.style-six .instructor-thumb-wrapper {
    margin-bottom: 25px;
    position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-six .instructor-thumb {
        height: 100%;
    }
}
.instructor-wrapper.style-six .instructor-thumb a::after {
    background: var(--bd-primary);
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.instructor-wrapper.style-six .instructor-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.instructor-wrapper.style-six .instructor-social {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
    margin-left: -25px;
    width: 100%;
}
.instructor-wrapper.style-seven .instructor-item {
    position: relative;
}
.instructor-wrapper.style-seven .instructor-item:hover .instructor-thumb a::after {
    opacity: 0.5;
}
.instructor-wrapper.style-seven .instructor-item:hover .instructor-social .icon-1 {
    transform: translateX(25px);
    opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-seven .instructor-item:hover .instructor-social .icon-1 {
        transform: translateX(0px);
    }
}
.instructor-wrapper.style-seven .instructor-item:hover .instructor-social .icon-2 {
    transform: translateX(25px);
    opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-seven .instructor-item:hover .instructor-social .icon-2 {
        transform: translateX(0px);
    }
}
.instructor-wrapper.style-seven .instructor-item:hover .instructor-social .icon-3 {
    transform: translateX(25px);
    opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-seven .instructor-item:hover .instructor-social .icon-3 {
        transform: translateX(0px);
    }
}
.instructor-wrapper.style-seven .instructor-item:hover .instructor-social .icon-4 {
    transform: translateX(25px);
    opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .instructor-wrapper.style-seven .instructor-item:hover .instructor-social .icon-4 {
        transform: translateX(0px);
    }
}
.instructor-wrapper.style-seven .instructor-thumb {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}
.instructor-wrapper.style-seven .instructor-thumb a::after {
    background: var(--bd-primary);
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.instructor-wrapper.style-seven .instructor-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.instructor-wrapper.style-seven .instructor-social {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
    margin-left: -25px;
    width: 100%;
}
.instructor-wrapper.style-seven .instructor-info {
    position: absolute;
    inset-inline-start: 30px;
    inset-block-end: 30px;
}
.instructor-wrapper.style-seven .instructor-info .name {
    padding: 0 25px;
    margin-bottom: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    position: relative;
    z-index: 5;
}
.instructor-wrapper.style-seven .instructor-info .name::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(255, 255, 255, 0.34);
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11.8px);
    -webkit-backdrop-filter: blur(11.8px);
}
.instructor-wrapper.style-seven .instructor-info .designation {
    padding: 0 15px;
    color: var(--bd-white);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    position: relative;
    z-index: 5;
}
.instructor-wrapper.style-seven .instructor-info .designation::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(170, 170, 170, 0.34);
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11.8px);
    -webkit-backdrop-filter: blur(11.8px);
}
.instructor-wrapper.style-eight {
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--bd-border-primary);
    padding: 30px 30px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
    .instructor-wrapper.style-eight {
        flex-direction: column;
        align-items: start;
    }
}
.instructor-wrapper.style-eight:hover {
    border-color: var(--bd-primary);
}
.instructor-wrapper.style-eight:hover .instructor-thumb img {
    transform: scale(1.05);
}
.instructor-wrapper.style-eight .instructor-thumb {
    width: 200px;
    height: 220px;
    min-width: 200px;
    overflow: hidden;
    border-radius: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
    .instructor-wrapper.style-eight .instructor-thumb {
        width: 100%;
        height: 100%;
        min-width: 100%;
    }
}
.instructor-wrapper.style-eight .instructor-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
.instructor-wrapper.style-eight .instructor-info .name {
    margin-bottom: 10px;
}
.instructor-wrapper.style-eight .instructor-info span {
    display: block;
}
.instructor-wrapper.style-eight .instructor-info span:not(:last-child) {
    margin-bottom: 5px;
}
.instructor-wrapper.style-nine {
    text-align: center;
}
.instructor-wrapper.style-nine:hover .instructor-social {
    opacity: 1;
}
.instructor-wrapper.style-nine:hover .instructor-social .icon-1 {
    transform: translateY(-40px);
    opacity: 1;
}
.instructor-wrapper.style-nine:hover .instructor-social .icon-2 {
    transform: translateY(-40px);
    opacity: 1;
}
.instructor-wrapper.style-nine:hover .instructor-social .icon-3 {
    transform: translateY(-40px);
    opacity: 1;
}
.instructor-wrapper.style-nine:hover .instructor-social .icon-4 {
    transform: translateY(-40px);
    opacity: 1;
}
.instructor-wrapper.style-nine:hover .instructor-thumb a::before {
    opacity: 0.5;
}
.instructor-wrapper.style-nine:hover .instructor-thumb-wrap {
    background-color: var(--bd-secondary);
}
.instructor-wrapper.style-nine:hover.hover-style .instructor-thumb-wrap {
    border-radius: 6px 6px 6px 6px;
}
.instructor-wrapper.style-nine .instructor-thumb-wrap {
    background-color: var(--bd-white);
    padding: 5px;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.instructor-wrapper.style-nine .instructor-thumb {
    position: relative;
}
.instructor-wrapper.style-nine .instructor-thumb img {
    border-radius: 16px;
}
.instructor-wrapper.style-nine .instructor-thumb a::before {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: var(--bd-primary);
    border-radius: 16px;
}
.instructor-wrapper.style-nine .instructor-social {
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 100%;
    z-index: 5;
    opacity: 0;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}
.instructor-wrapper.style-nine .instructor-info {
    margin-top: 20px;
}
.instructor-wrapper.style-nine .instructor-info .name {
    margin-bottom: 5px;
}
.instructor-wrapper.style-nine .instructor-info span {
    color: var(--bd-taxonomy-color);
}
.instructor-wrapper.style-nine.light-color .instructor-info .name {
    color: var(--bd-white);
}
.instructor-wrapper.style-nine.light-color .instructor-info span {
    color: rgba(255, 255, 255, 0.9);
}
.instructor-wrapper.style-ten {
    text-align: center;
}
.instructor-wrapper.style-ten:hover .instructor-social {
    opacity: 1;
}
.instructor-wrapper.style-ten:hover .instructor-social .icon-1 {
    transform: translateY(-40px);
    opacity: 1;
}
.instructor-wrapper.style-ten:hover .instructor-social .icon-2 {
    transform: translateY(-40px);
    opacity: 1;
}
.instructor-wrapper.style-ten:hover .instructor-social .icon-3 {
    transform: translateY(-40px);
    opacity: 1;
}
.instructor-wrapper.style-ten:hover .instructor-social .icon-4 {
    transform: translateY(-40px);
    opacity: 1;
}
.instructor-wrapper.style-ten:hover .instructor-thumb a::before {
    opacity: 0.5;
}
.instructor-wrapper.style-ten .instructor-thumb-wrap {
    position: relative;
    -webkit-mask-image: url(../../../image/catalog/instructor-mask-bg.webp);
    mask-image: url(../../../image/catalog/instructor-mask-bg.webp);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    display: inline-flex;
    background-color: var(--primary-rgb-1);
    padding: 10px;
    margin: -10px;
    margin-bottom: 5px;
}
.instructor-wrapper.style-ten .instructor-thumb {
    position: relative;
    -webkit-mask-image: url(../../../image/catalog/instructor-mask-bg.webp);
    mask-image: url(../../../image/catalog/instructor-mask-bg.webp);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    display: inline-flex;
}
.instructor-wrapper.style-ten .instructor-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.instructor-wrapper.style-ten .instructor-thumb a::before {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: var(--bd-primary);
    border-radius: 16px;
}
.instructor-wrapper.style-ten .instructor-social {
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 100%;
    z-index: 5;
    opacity: 0;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}
.instructor-wrapper.style-ten .instructor-info h6 {
    margin-bottom: 5px;
}
.instructor-wrapper.style-ten .instructor-info span {
    color: var(--bd-taxonomy-color);
}
.instructor-details-thumb img {
    border-radius: 8px;
}
.instructor-social .icon-1 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.3s ease-in-out;
}
.instructor-social .icon-2 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.4s ease-in-out;
}
.instructor-social .icon-3 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.5s ease-in-out;
}
.instructor-social .icon-4 {
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.6s ease-in-out;
}
.mt-15px {
    margin-top: 15px !important;
}

.instructor-info .underline {
    font-size: var(--bd-fs-h6);
    color: var(--bd-theme-black);
    margin-top: 0px;
    line-height: 1.25;
    margin-bottom: 0;
    font-weight: var(--bd-fw-bold);
    word-break: break-word;
}
.underline a {
    display: inline;
    color: var(--bd-theme-black);
    background-image: linear-gradient(var(--bd-primary), var(--bd-primary)), linear-gradient(var(--bd-primary), var(--bd-primary));
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 83%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
    padding: 0 0 1% 0;
}

.underline a:hover {
    background-size: 0 1px, 100% 1px;
    color: var(--bd-primary) !important;
}

.instructor-info span {
    color: var(--bd-body-text);
}
.section-paragraph {
    color: var(--bd-body-text);
}




/*----------------------------------------*/
/*  Testimonials css
/*----------------------------------------*/
.testimonial-wrapper.style-one .testimonial-item {
    padding: 30px 30px;
    background-color: var(--bd-bg-primary);
    border-radius: 6px;
}
.testimonial-wrapper.style-one .testimonial-meta .author {
    display: flex;
    align-items: center;
    gap: 0 15px;
}
.testimonial-wrapper.style-one .testimonial-meta .author .thumb {
    width: 60px;
    height: 60px;
    min-width: 60px;
}
.testimonial-wrapper.style-one .testimonial-meta .author .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-wrapper.style-one .testimonial-meta .rating i {
    font-size: 16px;
    color: var(--bd-rating-color);
}
.testimonial-wrapper.style-one .testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
}
.testimonial-wrapper.style-two .testimonial-item {
    padding: 20px 30px;
    background-color: var(--bd-bg-primary);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.testimonial-wrapper.style-two .testimonial-meta .author {
    display: flex;
    align-items: center;
    gap: 0 10px;
    margin-bottom: 10px;
}
.testimonial-wrapper.style-two .testimonial-meta .author .thumb {
    width: 50px;
    height: 50px;
    min-width: 50px;
}
.testimonial-wrapper.style-two .testimonial-meta .author .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-wrapper.style-two .testimonial-meta .rating i {
    font-size: 16px;
    color: var(--bd-rating-color);
}
.testimonial-wrapper.style-two .testimonial-shape {
    position: absolute;
    top: -70px;
    right: -55px;
}
.testimonial-wrapper.style-three .testimonial-item {
    padding: 30px 30px;
    background-color: var(--bd-bg-primary);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.testimonial-wrapper.style-three .testimonial-top-logo {
    max-width: 180px;
    margin-bottom: 20px;
}
.testimonial-wrapper.style-three .testimonial-content {
    margin-bottom: 30px;
}
.testimonial-wrapper.style-three .testimonial-meta .author {
    display: flex;
    align-items: center;
    gap: 0 10px;
    margin-bottom: 10px;
}
.testimonial-wrapper.style-three .testimonial-meta .author .thumb {
    width: 50px;
    height: 50px;
    min-width: 50px;
}
.testimonial-wrapper.style-three .testimonial-meta .author .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-wrapper.style-three .testimonial-meta .rating i {
    font-size: 16px;
    color: var(--bd-rating-color);
}
.testimonial-wrapper.style-three .testimonial-shape {
    position: absolute;
    top: -100px;
    right: -85px;
}
.testimonial-wrapper.style-four .testimonial-item {
    padding: 90px 30px 30px;
    background-color: var(--bd-bg-primary);
    border-radius: 6px;
    position: relative;
    text-align: center;
    margin-top: 60px;
}
.testimonial-wrapper.style-four .testimonial-meta .rating i {
    font-size: 16px;
    color: var(--bd-rating-color);
}
.testimonial-wrapper.style-four .testimonial-top-thumb {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}
.testimonial-wrapper.style-four .testimonial-top-thumb .thumb {
    width: 120px;
    height: 120px;
    min-width: 120px;
}
.testimonial-wrapper.style-four .testimonial-top-thumb .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-wrapper.style-four .testimonial-content {
    margin-bottom: 25px;
}
.testimonial-wrapper.style-four .testimonial-content p {
    font-size: 18px;
}
.testimonial-wrapper.style-four .testimonial-meta .author {
    margin-bottom: 3px;
}
.testimonial-wrapper.style-four .testimonial-meta .name {
    margin-bottom: 3px;
}
.testimonial-wrapper.style-five .testimonial-item {
    padding-left: 200px;
    padding-right: 200px;
    display: grid;
    grid-template-columns: 300px auto;
    align-items: center;
    justify-content: space-between;
    column-gap: 50px;
    position: relative;
    overflow-x: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .testimonial-wrapper.style-five .testimonial-item {
        padding-left: 100px;
        padding-right: 100px;
        grid-template-columns: 260px auto;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-wrapper.style-five .testimonial-item {
        padding-left: 50px;
        padding-right: 50px;
        grid-template-columns: 250px auto;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .testimonial-wrapper.style-five .testimonial-item {
        padding-left: 0;
        padding-right: 0;
        grid-template-columns: auto;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }
}
.testimonial-wrapper.style-five .testimonial-item .thumb img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .testimonial-wrapper.style-five .testimonial-item .thumb img {
        width: 260px;
        height: 260px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-wrapper.style-five .testimonial-item .thumb img {
        width: 250px;
        height: 250px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .testimonial-wrapper.style-five .testimonial-item .thumb img {
        width: 200px;
        height: 200px;
    }
}
.testimonial-wrapper.style-five .testimonial-content .user {
    max-width: 200px;
    margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .testimonial-wrapper.style-five .testimonial-content .user {
        margin: 0 auto;
        margin-bottom: 15px;
    }
}
.testimonial-wrapper.style-five .testimonial-content .description {
    margin: 0px;
    color: var(--bd-theme-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}
.testimonial-wrapper.style-five .testimonial-content .author {
    color: var(--bd-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    line-height: normal;
}
.testimonial-wrapper.style-six .testimonial-item .testimonial-rating i {
    color: var(--bd-rating-color);
}
.testimonial-wrapper.style-six .testimonial-content p {
    font-size: 22px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
} 
.testimonial-wrapper.style-six .testimonial-rating {
    margin-bottom: 15px;
}
.testimonial-rating i, .testimonial-quote i{
  font-size: 0;
} 
.testimonial-quote i::before{
  font-size: 64px;
} 
.testimonial-content{
  margin-bottom: 50px;
}
.testimonial-meta{
  display: flex;
  align-items: center;
  justify-content: space-between; 
}
.testimonial-rating i::before{
  font-size: 16px;
}
.testimonial-wrapper.style-six .testimonial-meta .author {
    display: flex;
    align-items: center;
    gap: 0 15px;
}
.testimonial-wrapper.style-six .testimonial-meta .author .thumb {
    height: 68px;
    width: 68px;
    min-width: 68px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .testimonial-wrapper.style-six .testimonial-meta .author .thumb {
        height: 52px;
        width: 52px;
        min-width: 52px;
    }
}
.testimonial-wrapper.style-six .testimonial-meta .author .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-wrapper.style-six .testimonial-meta .author .name {
    color: var(--bd-white);
    margin-bottom: 3px;
}
.testimonial-wrapper.style-six .testimonial-meta .designation {
    color: rgba(255, 255, 255, 0.8);
}
.testimonial-wrapper.style-six.has-bg .testimonial-item {
    background-color: var(--bd-white);
    padding: 30px 30px;
    border-radius: 12px;
}
.testimonial-wrapper.style-six.has-bg .testimonial-content p {
    color: var(--bd-theme-black);
    margin-bottom: 0px;
}
.testimonial-wrapper.style-six.has-bg .testimonial-meta .author .name {
    color: var(--bd-theme-black);
    font-size: 16px;
    font-weight: 600;
}
.testimonial-wrapper.style-six.has-bg .testimonial-meta .author .designation {
    color: var(--bd-theme-black);
}
.testimonial-wrapper.style-six.has-bg .testimonial-quote i {
    color: var(--bd-theme-black);
}
.testimonial-wrapper.style-six.has-bg.has-bg-primary .testimonial-item {
    background-color: var(--bd-bg-primary);
}
.testimonial-wrapper.style-seven .testimonial-item {
    background: var(--bd-bg-primary);
    padding: 30px 30px;
    z-index: 2;
    border-radius: 6px;
}
.testimonial-wrapper.style-seven .testimonial-meta .author {
    display: flex;
    align-items: center;
    gap: 0 15px;
}
.testimonial-wrapper.style-seven .testimonial-meta .author .thumb {
    width: 65px;
    height: 65px;
    min-width: 65px;
}
.testimonial-wrapper.style-seven .testimonial-meta .author .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-wrapper.style-seven .testimonial-meta .rating i {
    font-size: 16px;
    color: var(--bd-rating-color);
}
.testimonial-wrapper.style-seven .testimonial-content .highlight-text {
    color: var(--bd-primary);
    margin-bottom: 10px;
}
.testimonial-wrapper.style-seven .testimonial-content .description {
    margin-bottom: 25px;
}
.testimonial-wrapper.style-seven .testimonial-content .rating i {
    font-size: 16px;
    color: var(--bd-rating-color);
}
.testimonial-wrapper.style-eight .testimonial-thumb-wrapper {
    position: relative;
    padding-right: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .testimonial-wrapper.style-eight .testimonial-thumb-wrapper {
        padding-right: 20px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .testimonial-wrapper.style-eight .testimonial-thumb-wrapper {
        padding-right: 0;
    }
}
.testimonial-wrapper.style-eight .testimonial-thumb {
    height: 639px;
    width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .testimonial-wrapper.style-eight .testimonial-thumb {
        height: 699px;
    }
}
.testimonial-wrapper.style-eight .testimonial-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.testimonial-wrapper.style-eight .testimonial-counter {
    align-items: center;
    background: var(--bd-white);
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    left: -130px;
    padding: 20px 25px;
    position: absolute;
    top: 95px;
    gap: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .testimonial-wrapper.style-eight .testimonial-counter {
        left: 0;
        bottom: 30px;
        top: auto;
    }
}
.testimonial-wrapper.style-eight .testimonial-counter-thumb {
    max-width: 40px;
}
.testimonial-wrapper.style-eight .testimonial-counter-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 3px;
}
.testimonial-wrapper.style-eight .testimonial-counter-content p {
    font-size: 15px;
}
.testimonial-wrapper.style-eight .testimonial-quote {
    margin-bottom: 30px;
}
.testimonial-wrapper.style-eight .testimonial-quote img {
    width: 70px;
}
.testimonial-wrapper.style-eight .testimonial-description {
    margin-bottom: 40px;
}
.testimonial-wrapper.style-eight .testimonial-description p {
    font-size: 24px;
    line-height: 1.5;
}
.testimonial-wrapper.style-eight .testimonial-avater {
    display: flex;
    gap: 20px;
    align-items: center;
}
.testimonial-wrapper.style-eight .testimonial-avater-thumb img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    object-fit: cover;
}
.testimonial-wrapper.style-eight .testimonial-avater-title {
    margin-bottom: 5px;
}
.testimonial-wrapper.style-eight .testimonial-avater-designation {
    color: var(--bd-taxonomy-color);
}
.testimonial-wrapper.style-nine .testimonial-item {
    display: flex;
    align-items: center;
    gap: 30px 80px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background-color: var(--bd-white);
    padding: 80px 80px 80px 80px;
    justify-content: space-between;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-wrapper.style-nine .testimonial-item {
        gap: 30px 50px;
        padding: 60px 30px 60px 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .testimonial-wrapper.style-nine .testimonial-item {
        padding: 40px 40px 40px 40px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px 0;
    }
}
@media (max-width:450px) {
    .testimonial-wrapper.style-nine .testimonial-item {
        padding: 40px 30px 40px 30px;
    }
}
.testimonial-wrapper.style-nine .testimonial-quotes-wrap {
    width: 362px;
    height: 362px;
    padding: 47px;
    border-radius: 100%;
    border: 1px solid var(--bd-border-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
@media (max-width:450px) {
    .testimonial-wrapper.style-nine .testimonial-quotes-wrap {
        width: 290px;
        height: 290px;
    }
}
.testimonial-wrapper.style-nine .testimonial-quotes {
    width: 268px;
    height: 268px;
    background-color: var(--bd-primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
@media (max-width:450px) {
    .testimonial-wrapper.style-nine .testimonial-quotes {
        width: 180px;
        height: 180px;
    }
}
.testimonial-wrapper.style-nine .testimonial-meta-thumb-1 {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 3px solid var(--bd-white);
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.15));
    animation: scaleUp 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate both;
}
.testimonial-wrapper.style-nine .testimonial-meta-thumb-1 img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.testimonial-wrapper.style-nine .testimonial-meta-thumb-2 {
    position: absolute;
    top: 50px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 3px solid var(--bd-white);
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.15));
    animation: scaleUp 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate both;
}
.testimonial-wrapper.style-nine .testimonial-meta-thumb-2 img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.testimonial-wrapper.style-nine .testimonial-meta-thumb-3 {
    position: absolute;
    bottom: -20px;
    left: 130px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 3px solid var(--bd-white);
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.15));
    animation: scaleUp 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate both;
}
.testimonial-wrapper.style-nine .testimonial-meta-thumb-3 img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.testimonial-wrapper.style-nine .testimonial-content .rating {
    margin-bottom: 16px;
}
.testimonial-wrapper.style-nine .testimonial-content .rating i {
    font-size: 16px;
    color: var(--bd-rating-color);
}
.testimonial-wrapper.style-nine .testimonial-content .description {
    font-size: 18px;
    margin-bottom: 20px;
}
.testimonial-wrapper.style-nine .testimonial-meta .author {
    display: flex;
    align-items: center;
    gap: 0 15px;
}
.testimonial-wrapper.style-nine .testimonial-meta .author .name {
    line-height: 1;
}
.testimonial-wrapper.style-nine .testimonial-meta .author .thumb {
    width: 60px;
    height: 60px;
    min-width: 60px;
}
.testimonial-wrapper.style-nine .testimonial-meta .author .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-wrapper.style-ten .testimonial-item {
    padding: 30px 30px;
    border-radius: 24px;
    transition: all 0.3s ease-out;
    background-color: #dcfdf1;
}
.testimonial-wrapper.style-ten .testimonial-item:hover {
    filter: drop-shadow(5px 5px 0 var(--bd-primary));
}
.testimonial-wrapper.style-ten .testimonial-item.bg-2 {
    background-color: #fff5db;
}
.testimonial-wrapper.style-ten .testimonial-item.bg-2:hover {
    filter: drop-shadow(5px 5px 0 var(--bd-secondary));
}
.testimonial-wrapper.style-ten .testimonial-item .name {
    color: var(--bd-theme-black);
}
.testimonial-wrapper.style-ten .testimonial-content p {
    font-size: 18px;
    color: #424242;
}
.testimonial-wrapper.style-ten .testimonial-rating a {
    color: var(--bd-rating-color);
}
.testimonial-wrapper.style-ten .testimonial-avatar-thumb {
    height: 68px;
    width: 68px;
}
.testimonial-wrapper.style-ten .testimonial-avatar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-wrapper.style-ten .testimonial-thumb {
    height: 639px;
    width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .testimonial-wrapper.style-ten .testimonial-thumb {
        height: 699px;
    }
}
.testimonial-wrapper.style-ten .testimonial-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.testimonial-wrapper.style-eleven .testimonial-item {
    margin-top: 10px;
}
.testimonial-wrapper.style-eleven .testimonial-item .testimonial-rating i {
    color: var(--bd-rating-color);
}
.testimonial-wrapper.style-eleven .testimonial-content p {
    font-size: 30px;
    line-height: 1.5;
    color: var(--bd-theme-black);
    margin-bottom: 30px;
    font-weight: var(--bd-fw-medium);
}
.testimonial-wrapper.style-eleven .testimonial-content-wrap {
    position: relative;
}
.testimonial-wrapper.style-eleven .testimonial-meta .author {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    margin-bottom: 15px;
}
.testimonial-wrapper.style-eleven .testimonial-meta .author .thumb {
    width: 100px;
    height: 100px;
    min-width: 100px;
    padding: 5px;
}
.testimonial-wrapper.style-eleven .testimonial-meta .author .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.testimonial-wrapper.style-eleven .testimonial-meta .author .circle {
    margin-left: -105px;
    animation: shape-rote 35s linear infinite;
}
.testimonial-wrapper.style-eleven .testimonial-meta .details .name {
    color: var(--bd-theme-black);
    font-weight: var(--bd-fw-sbold);
    margin-bottom: 3px;
}
.testimonial-wrapper.style-eleven .testimonial-meta .designation {
    color: var(--bd-theme-black);
}
.testimonial-wrapper.style-eleven .testimonial-quote {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.testimonial-wrapper.style-eleven .testimonial-quote i {
    color: rgba(7, 161, 105, 0.15);
    font-size: 64px;
}
.testimonial-nav button {
    position: absolute;
    font-size: 70px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 55;
    color: var(--bd-primary);
}
.testimonial-nav .testimonial-button-next {
    left: auto !important;
    right: 0;
}
.testimonial-video {
    width: 50%;
    position: absolute;
    height: 100%;
    inset-inline-start: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .testimonial-video {
        width: 100%;
        position: relative;
        height: 500px;
    }
}
.testimonial-video::before {
    content: "";
    background: var(--bd-theme-black);
    height: 100%;
    width: 100%;
    opacity: 0.4;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
}
.testimonial-video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 5px solid var(--bd-white);
    font-size: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.testimonial-video-btn i {
    color: var(--bd-white);
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}
.testimonial-video-btn:hover {
    border-color: var(--bd-primary);
}
.testimonial-video-btn:hover i {
    color: var(--bd-primary);
}
.testimonial-video-btn.animation-two {
    position: relative;
}
.testimonial-video-btn.animation-two:hover::before {
    border-color: var(--bd-primary);
}
.testimonial-video-btn.animation-two:hover::after {
    border-color: var(--bd-primary);
}
.testimonial-video-btn.animation-two::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 50%;
    border: 1.5px solid var(--bd-white);
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}
.testimonial-video-btn.animation-two::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 50%;
    border: 1.5px solid var(--bd-white);
    -webkit-animation: ripple 2s linear 1s infinite;
    animation: ripple 2s linear 1s infinite;
}
.testimonial-bg {
    position: absolute;
    inset-inline-end: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    background-position: right;
    background-repeat: no-repeat;
    opacity: 0.1;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.testimonial-bg::before {
    content: "";
    background: linear-gradient(90.87deg, #00BBAE 0.69%, rgba(0, 187, 174, 0) 96.75%);
    left: 0px;
    top: 0;
    height: 100%;
    width: 80%;
    position: absolute;
}
.testimonial-bg-two {
    position: absolute;
    inset-inline-end: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}
.testimonial-wrap {
    margin-inline-start: 150px;
    position: relative;
    z-index: 9;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .testimonial-wrap {
        margin-inline-start: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-wrap {
        margin-inline-start: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .testimonial-wrap {
        margin-inline-start: 0;
    }
}
.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.testimonial-navigation button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--bd-bg-primary);
    color: var(--bd-primary);
    font-size: 20px;
    border-radius: 100%;
}
.testimonial-navigation button:hover {
    color: var(--bd-white);
    background-color: var(--bd-primary);
}

.dots-pagination {
    display: flex;
    gap: 8px;
    margin-top: 50px;
    justify-content: center;
}
.dots-pagination .swiper-pagination-bullet {
    height: 5px;
    width: 20px;
    border-radius: 10px;
    background: var(--secondary-rgb-7);
    opacity: 1;
    margin: 0 !important;
}
.dots-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--bd-secondary);
}
.dots-pagination.has-primary .swiper-pagination-bullet {
    background: rgba(7, 161, 105, 0.3);
}
.dots-pagination.has-primary .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--bd-primary);
}
.dots-pagination.pagination-small-active {
    margin-top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .dots-pagination.pagination-small-active {
        margin-top: 50px;
    }
}

.testimonial-shape-quote {
    position: absolute;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
}
@media only screen and (min-width: 1700px) and (max-width: 1800px) {
    .testimonial-shape-quote {
        right: -200px;
    }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .testimonial-shape-quote {
        right: -150px;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .testimonial-shape-quote {
        right: 0px;
    }
}

.testimonial-sec-bg {
    z-index: 5;
}
.testimonial-sec-bg::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background: var(--bd-primary);
    z-index: -1;
}

.testimonial-shape-wrap .shape-1 {
    position: absolute;
    top: 58px;
    left: 74px;
}
.testimonial-shape-wrap .shape-2 {
    position: absolute;
    right: 74px;
    top: 330px;
}
.testimonial-shape-wrap .shape-3 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -2;
}
.testimonial-shape-wrap .shape-4 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -2;
}
.testimonial-shape-wrap .shape-5 {
    position: absolute;
    right: 0;
    top: 0;
}
.testimonial-shape-wrap .shape-6 {
    position: absolute;
    left: 0;
    top: 255px;
}

.testimonial-shape-2 .group {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    margin: 0 auto;
}
.testimonial-shape-2 .group .thumb {
    width: 100px;
    height: 100px;
    min-width: 100px;
    padding: 5px;
}
.testimonial-shape-2 .group .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.testimonial-shape-2 .group .circle {
    margin-left: -105px;
}
.testimonial-shape-2 .shape-1 {
    position: absolute;
    left: 300px;
    top: 220px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-shape-2 .shape-1 {
        left: 60px;
    }
}
.testimonial-shape-2 .shape-2 {
    position: absolute;
    right: 300px;
    top: 220px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-shape-2 .shape-2 {
        right: 60px;
    }
}
.testimonial-shape-2 .shape-3 {
    position: absolute;
    left: 400px;
    bottom: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-shape-2 .shape-3 {
        left: 30px;
    }
}
.testimonial-shape-2 .shape-4 {
    position: absolute;
    right: 400px;
    bottom: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-shape-2 .shape-4 {
        right: 30px;
    }
}


.testimonial-wrapper.style-six .testimonial-item .testimonial-rating i {
    color: var(--bd-rating-color);
}


/*----------------------------------------*/
/*  Whys Chooses css
/*----------------------------------------*/
.why-choose-wrapper.style-one .why-choose-item {
    position: relative;
    text-align: center;
    padding: 0px 30px 30px 0px;
    margin-top: 25px;
}
.why-choose-wrapper.style-one .why-choose-item:hover .why-choose-icon-thumb {
    animation: bd-bounce 800ms ease-out alternate;
    -webkit-animation: bd-bounce 800ms ease-out alternate;
}
.why-choose-wrapper.style-one .why-choose-item::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--bd-border-primary);
    right: 0;
    bottom: 0;
}
.why-choose-wrapper.style-one .why-choose-icon-thumb {
    max-width: 70px;
    margin: 0 auto 20px;
    position: relative;
}
.why-choose-wrapper.style-one .why-choose-icon-thumb .why-choose-icon {
    position: absolute;
    right: -35px;
    transform: translate(-50%, -50%);
    top: 10px;
    font-size: 60px;
    color: var(--bd-primary);
}
.why-choose-wrapper.style-one .why-choose-title {
    margin-bottom: 15px;
}
.why-choose-wrapper.style-two .why-choose-item {
    position: relative;
    text-align: center;
    padding: 30px 30px;
    background-color: var(--bd-bg-primary);
    border-radius: 6px;
}
.why-choose-wrapper.style-two .why-choose-item.bg-flashlight::after {
    background-color: var(--bd-bg-primary);
}
.why-choose-wrapper.style-two .why-choose-item:hover .why-choose-icon svg * {
    stroke: var(--bd-primary);
}
.why-choose-wrapper.style-two .why-choose-title {
    margin-bottom: 15px;
}
.why-choose-wrapper.style-two .why-choose-icon {
    margin-bottom: 15px;
    display: block;
}
.why-choose-wrapper.style-three .why-choose-item {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bd-white);
    border-radius: 12px;
    z-index: 4;
    transition: all 0.3s linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .why-choose-wrapper.style-three .why-choose-item {
        padding: 20px 15px;
    }
}
.why-choose-wrapper.style-three .why-choose-item:hover {
    box-shadow: 0px 6px 100px 0px rgba(8, 5, 33, 0.1);
}
.why-choose-wrapper.style-three .why-choose-item:hover .why-choose-icon img {
    animation: bd-bounce 800ms ease-out alternate;
    -webkit-animation: bd-bounce 800ms ease-out alternate;
}
.why-choose-wrapper.style-three .why-choose-icon {
    margin-bottom: 15px;
    display: inline-block;
}
.why-choose-wrapper.style-three .why-choose-icon img {
    width: 64px;
    transition: all 0.3s linear;
}
.why-choose-wrapper.style-three .why-choose-content {
    position: relative;
    z-index: 9;
}
.why-choose-wrapper.style-four .why-choose-icon-wrapper {
    -webkit-mask-image: url(../../../image/catalog/why-mask.webp);
    mask-image: url(../../../image/catalog/why-mask.webp);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    display: inline-flex;
    width: 115px;
    height: 115px;
    background-color: var(--bd-white);
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s linear;
}
.why-choose-wrapper.style-four .why-choose-icon {
    font-size: 36px;
    color: var(--bd-primary);
    line-height: 1;
}
.why-choose-wrapper.style-four .why-choose-title {
    color: var(--bd-white);
}
.why-choose-wrapper.style-four .why-choose-description {
    color: rgba(255, 255, 255, 0.7);
}
.why-choose-thumb-wrap {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    margin-left: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .why-choose-thumb-wrap {
        margin-left: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .why-choose-thumb-wrap {
        margin-left: 0;
        flex-wrap: wrap;
    }
}
.why-choose-thumb-wrap .thumb-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .why-choose-thumb-wrap .thumb-column {
        flex-direction: row;
        width: 100%;
    }
}
.why-choose-thumb-wrap .thumb-column .thumb-one {
    height: 250px;
    width: 250px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .why-choose-thumb-wrap .thumb-column .thumb-one {
        height: 100%;
        width: 100%;
    }
}
.why-choose-thumb-wrap .thumb-column .thumb-one img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.why-choose-thumb-wrap .thumb-column .thumb-two {
    height: 250px;
    width: 250px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .why-choose-thumb-wrap .thumb-column .thumb-two {
        height: 100%;
        width: 100%;
    }
}
.why-choose-thumb-wrap .thumb-column .thumb-two img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.why-choose-thumb-wrap .main-thumb {
    height: 360px;
    width: 100%;
    margin-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .why-choose-thumb-wrap .main-thumb {
        height: 100%;
        margin-top: 0;
    }
}
.why-choose-thumb-wrap .main-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.why-shape-group .shape-1 {
    position: absolute;
    top: -120px;
    right: -200px;
    z-index: -1;
}
.why-shape-group .shape-2 {
    position: absolute;
    top: -50px;
    right: 115px;
    z-index: -1;
}
.why-shape-group .shape-3 {
    position: absolute;
    bottom: -50px;
    right: 250px;
    z-index: -1;
    animation: opacity-on-off 5s ease-in-out 1s infinite alternate-reverse both;
}
.why-shape-group .shape-4 {
    position: absolute;
    top: 213px;
    left: 0;
    z-index: -1;
    transform: rotate(90deg);
}
.why-shape-group .shape-5 {
    position: absolute;
    top: -40px;
    left: 0;
    z-index: -1;
}
.why-shape-group .shape-6 {
    position: absolute;
    bottom: -50px;
    right: -200px;
    z-index: -1;
    animation: scaleUpCenter 4s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate-reverse none;
}

.choose-thumb {
    position: relative;
    -webkit-mask-image: url(../image/catalog/why-mask.webp);
    mask-image: url(../image/catalog/why-mask.webp);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    display: inline-flex;
}
.choose-thumb-mask {
    position: relative;
    -webkit-mask-image: url(../image/catalog/why-mask.webp);
    mask-image: url(../image/catalog/why-mask.webp);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    display: inline-flex;
    background-color: var(--bd-white);
    padding: 10px;
    margin-left: -20px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
    justify-content: space-between;
    align-items: center;
}
@media (max-width:450px) {
    .why-choose-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 0;
    }
}

@keyframes bd-bounce {
    0%, 100%, 20%, 50%, 80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0) translateX(0%);
    }
    40% {
        -webkit-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        transform: translateY(-8px) translateX(0%);
    }
    60% {
        -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
        transform: translateY(-4px) translateX(0%);
    }
}
@keyframes scaleUpCenter {
    0% {
        transform: scale(0.2);
    }
    100% {
        transform: scale(0.5);
    }
}
@keyframes opacity-on-off {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}
/*----------------------------------------*/
/*  Postboxs css
/*----------------------------------------*/
.blog-feature-thumb {
    margin-bottom: 30px;
}
.blog-feature-thumb img {
    border-radius: 8px;
    width: 100%;
}
.blog-feature-thumb.full-width img {
    width: 100%;
}

/* blockquote CSS */
.post-details-blockquote blockquote {
    padding: 40px 40px;
    border-radius: 10px;
    position: relative;
    background-color: var(--primary-rgb-05);
}
.post-details-blockquote blockquote::before {
    position: absolute;
    content: "";
    width: 4px;
    width: 100%;
    height: 7px;
    top: 0;
    inset-inline-start: 0;
    background: var(--bd-primary);
    border-radius: 10px 10px 0 0;
}
.post-details-blockquote blockquote .icon {
    font-size: 70px;
    display: block;
    margin-bottom: 30px;
    color: var(--bd-primary);
    line-height: 1;
}
.post-details-blockquote blockquote .title {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 38px;
}
.post-details-blockquote blockquote .name {
    position: relative;
    position: relative;
    display: block;
    margin-left: 50px;
}
.post-details-blockquote blockquote .name::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background-color: var(--bd-primary);
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

/* post slider CSS */
.postbox-slider-navigation button {
    position: absolute;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    top: 44%;
    left: 24px;
    color: var(--bd-white);
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.05);
    background-color: var(--bd-bg-primary);
    z-index: 15;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    color: var(--bd-theme-black);
}
.postbox-slider-navigation button:hover {
    background-color: var(--bd-primary);
    color: var(--bd-white);
}
.postbox-slider-navigation .post-navigation-next {
    left: auto !important;
    right: 24px;
}

.post-pagination {
    position: absolute;
    bottom: 20px;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
}
.post-pagination .post-slider-pagination {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
}
.post-pagination .post-slider-pagination .swiper-pagination-bullet {
    height: 5px;
    width: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    margin: 0 !important;
}
.post-pagination .post-slider-pagination .swiper-pagination-bullet-active {
    background: var(--bd-primary);
    width: 20px;
}

.postbox-video {
    overflow: hidden;
}
.postbox-video::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--bd-theme-black);
    opacity: 0.45;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.postbox-audio {
    height: 350px;
}

.postbox-audio iframe {
    width: 100%;
    height: 100%;
}

/* post slider end */
/* bd-postbox-meta */
.postbox-thumb img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

.postbox-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid var(--bd-border-primary);
    border-bottom: 1px solid var(--bd-border-primary);
}

.postbox-navigation {
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}
.postbox-navigation::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 1px;
    background-color: var(--bd-border-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .postbox-navigation::before {
        top: 60%;
        height: 1px;
        width: 100%;
    }
}

.postbox-more-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
    color: var(--bd-body-text);
    transition: all 0.3s ease-in-out;
}
.postbox-more-link:hover {
    color: var(--bd-primary);
}

.postbox-author {
    padding: 30px 30px;
    border-radius: 6px;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    background-color: var(--bd-white);
    display: flex;
    align-items: start;
    gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .postbox-author {
        flex-wrap: wrap;
    }
}
.postbox-author .thumb {
    width: 170px;
    height: 170px;
    min-width: 170px;
}
.postbox-author .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.blog-postbox-comment .postbox-comment-box {
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    background-color: var(--bd-white);
}

.blog-widget {
    background: var(--bd-white);
    box-shadow: 0px 10px 30px rgba(28, 51, 84, 0.08);
    padding: 30px 30px;
    border-radius: 5px;
}
.widget-title{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}
.bd-widget-list ul{
    padding: 0;
}
.blog-widget:not(:last-child) {
    margin-bottom: 30px;
}
.blog-widget.widget_categories ul li {
    align-items: center;
    display: flex;
    justify-content: space-between;
    color: var(--bd-theme-black);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}
.blog-widget.widget_categories ul li:not(:last-child) {
    margin-bottom: 10px;
}


/* tag cloud */
.tagcloud a {
    font-size: 16px !important;
    color: var(--bd-taxonomy-color);
    font-weight: 500;
    border: 1px solid var(--bd-border-primary);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 36px;
    margin: 5px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.tagcloud a:hover {
    color: var(--bd-white);
    background-color: var(--bd-primary);
    border-color: var(--bd-primary);
}

.sidebar-promotion .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}



/* Menu index */
/*----------------------------------------*/
/*  Blogs css
/*----------------------------------------*/
.blog-wrapper.blog-standard {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
.blog-wrapper.blog-standard:not(:last-child) {
    margin-bottom: 30px;
}
.blog-wrapper.blog-standard:hover .blog-thumb::before {
    animation: shine 800ms;
}
.blog-wrapper.blog-standard:hover .blog-thumb img {
    transform: scale(1.1);
}
.blog-wrapper.blog-standard .blog-thumb {
    width: 100%;
    height: 400px;
    overflow: hidden;
    transition: all 0.3s ease-out 0s;
    position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .blog-wrapper.blog-standard .blog-thumb {
        height: 100%;
    }
}
.blog-wrapper.blog-standard .blog-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    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);
}
.blog-wrapper.blog-standard .blog-thumb img {
    object-fit: cover;
    transition: all 0.3s ease-out 0s;
    overflow: hidden;
}
.blog-wrapper.blog-standard .blog-meta-item {
    display: flex;
    align-items: center;
    gap: 15px 20px;
    padding: 18px 30px;
    flex-wrap: wrap;
    background-color: var(--primary-rgb-05);
    margin-bottom: 0;
    margin-right: 0;
}
.blog-wrapper.blog-standard .blog-meta-item span {
    font-size: 16px;
    display: flex;
    gap: 6px;
    align-items: center;
}
.blog-wrapper.blog-standard .blog-meta-item span i {
    color: var(--bd-primary);
}
.blog-wrapper.blog-standard .blog-content {
    padding: 30px 30px;
    border-radius: 0 0 10px 10px;
    background-color: var(--bd-white);
}
.blog-wrapper.blog-standard .blog-title {
    font-size: 32px;
}
.blog-wrapper.style-one {
    background: var(--bd-white);
    border-radius: 6px;
}
.blog-wrapper.style-one:hover .blog-thumb img {
    transform: scale3d(1.07, 1.07, 1.07);
}
.blog-wrapper.style-one .blog-thumb {
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    height: 280px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .blog-wrapper.style-one .blog-thumb {
        height: 100%;
    }
}
.blog-wrapper.style-one .blog-thumb img {
    width: 100%;
    height: 100%;
    transition: all 1.1s cubic-bezier(0, 0, 0.2, 1);
}
.blog-wrapper.style-one .blog-content {
    padding: 30px 30px;
}
.blog-wrapper.style-one .blog-content .title {
    border-bottom: 1px solid var(--bd-border-primary);
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.blog-wrapper.style-two {
    position: relative;
    border: 1px solid var(--bd-border-primary);
    padding: 30px;
    border-radius: 6px 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width:450px) {
    .blog-wrapper.style-two {
        padding: 20px;
    }
}
.blog-wrapper.style-two:hover .blog-thumb img {
    transform: scale3d(1.07, 1.07, 1.07);
}
.blog-wrapper.style-two .blog-thumb {
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    border-radius: 6px 6px;
}
.blog-wrapper.style-two .blog-thumb .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
}
.blog-wrapper.style-two .blog-thumb img {
    width: 100%;
    height: 280px;
    transition: all 1.1s cubic-bezier(0, 0, 0.2, 1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .blog-wrapper.style-two .blog-thumb img {
        height: 100%;
    }
}
.blog-wrapper.style-two .content .blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--bd-border-primary);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.blog-wrapper.style-two .content .border-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--bd-border-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}
.blog-wrapper.style-two .content .border-btn:hover {
    background: var(--bd-primary);
    border-color: var(--bd-primary);
}
.blog-wrapper.style-two .content .border-btn:hover i {
    color: var(--bd-white);
}
.blog-wrapper.style-two .title {
    margin-bottom: 15px;
}
.blog-wrapper.style-two .btn-inner .link {
    font-weight: var(--bd-fw-medium);
}
.blog-wrapper.style-two .btn-inner .link:hover {
    color: var(--bd-primary);
}
.blog-wrapper.style-three {
    background: var(--bd-white);
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    height: 100%;
    border-radius: 6px 6px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .blog-wrapper.style-three {
        grid-template-columns: 230px 1fr;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .blog-wrapper.style-three {
        grid-template-columns: 1fr;
    }
}
.blog-wrapper.style-three:hover .blog-thumb img {
    transform: scale3d(1.07, 1.07, 1.07);
}
.blog-wrapper.style-three .blog-thumb {
    overflow: hidden;
    position: relative;
    height: 100%;
    border-radius: 6px 0 0 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-wrapper.style-three .blog-thumb {
        height: 265px;
    }
}
@media (max-width:450px) {
    .blog-wrapper.style-three .blog-thumb {
        height: 250px;
    }
}
.blog-wrapper.style-three .blog-thumb img {
    transition: all 1.1s cubic-bezier(0, 0, 0.2, 1);
    height: 100%;
    width: 100%;
}
.blog-wrapper.style-three .blog-content {
    padding: 30px 30px;
}
.blog-wrapper.style-three .blog-content .title {
    border-bottom: 1px solid var(--bd-border-primary);
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.blog-wrapper.style-three .blog-content p {
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.blog-wrapper.style-four:hover .icon-text-btn span {
    opacity: 1;
    visibility: visible;
    margin-left: 0;
}
.blog-wrapper.style-four:hover .blog-thumb img {
    transform: scale3d(1.07, 1.07, 1.07);
}
.blog-wrapper.style-four .blog-content {
    padding: 30px 30px 23px;
    border-radius: 0 0 6px 6px;
    background-color: var(--bd-white);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
.blog-wrapper.style-four .blog-content p {
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.blog-wrapper.style-four .title {
    margin-bottom: 15px;
}
.blog-content a{
	color: #000;
}
.blog-slider-navigation i{
	font-size: 0;
}
.blog-slider-navigation i::before{
	font-size: 16px;
}
.blog-slider-navigation {
    position: absolute;
    top: 4px;
    right: 0;
}
.similar-articles-area .section-title-space{
	position: relative;
}
.blog-content a:hover{
	color: var(--bd-primary);
}
.blog-wrapper.style-four .blog-thumb {
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    width: 100%;
    height: 250px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .blog-wrapper.style-four .blog-thumb {
        height: 100%;
    }
}
.blog-wrapper.style-four .blog-thumb img {
    width: 100%;
    height: 100%;
    transition: all 1.1s cubic-bezier(0, 0, 0.2, 1);
}
.blog-wrapper.style-four .blog-meta-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
@media (max-width: 575px) {
    .blog-wrapper.style-four .blog-meta-list {
        gap: 8px 0;
    }
}
.blog-wrapper.style-five {
    position: relative;
}
.blog-wrapper.style-five:hover .blog-thumb img {
    transform: scale3d(1.07, 1.07, 1.07);
}
.blog-wrapper.style-five .blog-thumb {
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 6px;
}
.blog-wrapper.style-five .blog-thumb img {
    width: 100%;
    min-height: 300px;
    transition: all 1.1s cubic-bezier(0, 0, 0.2, 1);
}
.blog-wrapper.style-five .title {
    margin-bottom: 20px;
    margin-top: 15px;
}
.blog-wrapper.style-five .blog-content {
    background-color: var(--bd-white);
    padding: 30px 30px;
    box-shadow: 0px 4px 10px 0px rgba(131, 131, 131, 0.1);
    margin-top: -85px;
    position: relative;
    z-index: 5;
    margin-left: 20px;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
}
.blog-wrapper.style-six {
    display: grid;
    grid-template-columns: 260px auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-wrapper.style-six {
        grid-template-columns: 230px auto;
    }
}
@media (max-width: 575px) {
    .blog-wrapper.style-six {
        grid-template-columns: auto;
    }
}
.blog-wrapper.style-six .blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    margin-bottom: 0;
    z-index: 2;
}
.blog-wrapper.style-six:hover .blog-thumb a img {
    transform: scale(1.05);
}
.blog-wrapper.style-six:hover .icon-text-btn span {
    opacity: 1;
    visibility: visible;
    margin-left: 0;
}
.blog-wrapper.style-six:hover .image-hover-effect a::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.blog-wrapper.style-six .blog-thumb {
    overflow: hidden;
    border-radius: 8px 0px 0px 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-wrapper.style-six .blog-thumb {
        height: 322px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .blog-wrapper.style-six .blog-thumb {
        border-radius: 8px 8px 0px 0px;
    }
}
.blog-wrapper.style-six .blog-thumb img {
    max-width: 100%;
    height: 100%;
}
.blog-wrapper.style-six .blog-content {
    padding: 30px 30px 30px 30px;
    border-radius: 0px 8px 8px 0px;
    background-color: var(--bd-bg-primary);
}
@media (max-width: 575px) {
    .blog-wrapper.style-six .blog-content {
        border-radius: 0px 0px 8px 8px;
    }
}
.blog-wrapper.style-six .blog-content .blog-meta-list {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.blog-wrapper.style-seven .blog-thumb {
    border-radius: 6px;
    overflow: hidden;
}
.blog-wrapper.style-seven .blog-thumb img {
    min-height: 260px;
    height: 100%;
    width: 100%;
}
.blog-wrapper.style-seven .blog-content {
    padding: 30px 30px;
    background: var(--bd-white);
    box-shadow: 0px 20px 40px rgba(28, 51, 84, 0.1);
    border-radius: 0 0 5px 5px;
}
.blog-wrapper.style-seven:hover .blog-thumb img {
    transform: scale3d(1.07, 1.07, 1.07);
}
.blog-wrapper.style-eight {
    border-radius: 6px;
    overflow: hidden;
}
.blog-wrapper.style-eight:hover .blog-thumb img {
    transform: scale3d(1.07, 1.07, 1.07);
}
.blog-wrapper.style-eight .blog-thumb {
    overflow: hidden;
    transition: all 0.3s ease-out 0s;
    position: relative;
}
.blog-wrapper.style-eight .blog-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 1.1s cubic-bezier(0, 0, 0.2, 1);
}
.blog-wrapper.style-eight .blog-content {
    position: relative;
    padding: 20px 25px;
    border: 1px solid var(--bd-border-primary);
    border-top: 0;
    border-radius: 0 0 6px 6px;
    padding-inline-start: 52px;
    border-inline-start: 0;
    transition: all 0.3s ease-out 0s;
}
.blog-wrapper.style-eight .date {
    position: absolute;
    bottom: 0;
    height: 100%;
    writing-mode: vertical-lr;
    left: 0;
    transform: rotate(-180deg);
}
.blog-wrapper.style-eight .date span {
    background: var(--bd-secondary);
    color: var(--bd-white);
    padding: 0px 2px;
    height: 100%;
    display: inline-block;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}
.blog-wrapper.style-eight .blog-meta-item {
    position: relative;
    margin-inline-end: 15px;
    padding-inline-end: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .blog-wrapper.style-eight .blog-meta-item {
        margin-inline-end: 8px;
        padding-inline-end: 8px;
    }
}
.blog-wrapper.style-eight .blog-meta-item::before {
    position: absolute;
    content: " ";
    width: 1px;
    height: 20px;
    inset-inline-end: 0px;
    top: 50%;
    background: var(--bd-border-primary);
    transform: translateY(-50%);
}
.blog-wrapper.style-eight .blog-meta-item:last-child::before {
    display: none;
}
.blog-wrapper.style-eight .blog-meta-list {
    margin-bottom: 10px;
}
.blog-wrapper.style-eight .blog-title {
    margin-bottom: 15px;
}
.blog-wrapper.style-eight .blog-content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.blog-wrapper.style-nine {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.blog-wrapper.style-nine::after {
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 5px;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 37.57%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 37.57%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.blog-wrapper.style-nine .blog-thumb {
    overflow: hidden;
}
.blog-wrapper.style-nine .blog-content {
    padding: 30px 25px 25px 30px;
    background-color: transparent;
    box-shadow: none;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.blog-wrapper.style-nine:hover .blog-thumb img {
    transform: scale3d(1.07, 1.07, 1.07);
}
.blog-wrapper.style-nine .blog-meta-item .meta-author {
    color: var(--bd-white);
}
.blog-wrapper.style-nine .blog-meta-item .meta-text {
    color: var(--bd-white);
}
.blog-wrapper.style-ten {
    overflow: hidden;
}
.blog-wrapper.style-ten .blog-thumb {
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}
.blog-wrapper.style-ten .blog-thumb img {
    height: 250px;
    width: 100%;
    transition: all 1.1s cubic-bezier(0, 0, 0.2, 1);
}
.blog-wrapper.style-ten .blog-thumb-wrapper {
    position: relative;
}
.blog-wrapper.style-ten:hover .blog-thumb img {
    transform: scale3d(1.07, 1.07, 1.07);
}
.blog-wrapper.style-ten .blog-content {
    padding: 40px 30px 30px 30px;
    background-color: var(--bd-bg-primary);
    border-radius: 0 0 6px 6px;
}
.blog-wrapper.style-ten .blog-content .title {
    margin-bottom: 25px;
}
.blog-wrapper.style-ten .blog-meta-list {
    margin-bottom: 15px;
}
.blog-wrapper.style-eleven {
    border-radius: 24px;
    overflow: hidden;
}
.blog-wrapper.style-eleven .blog-content {
    padding: 30px 30px;
    border: 1px solid var(--bd-border-primary);
    border-radius: 0 0 24px 24px;
}
.blog-wrapper.style-eleven .blog-thumb-wrapper {
    position: relative;
    overflow: hidden;
}
.blog-wrapper.style-eleven:hover .blog-thumb img {
    transform: scale3d(1.07, 1.07, 1.07);
}
.blog-wrapper.style-eleven .blog-badge.bottom {
    left: 30px;
    bottom: 0;
}
.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
}
.blog-badge.badge-right {
    left: auto;
    right: 15px;
}
.blog-badge.bottom {
    top: auto;
    bottom: 15px;
}
.blog-badge-circle {
    position: absolute;
    right: 15px;
    bottom: -40px;
}
.blog-badge-circle .circle-badge {
    flex-direction: column;
    line-height: 1.1;
}
.blog-badge-circle .circle-badge .subtitle {
    font-size: 14px;
    font-weight: 400;
}

.blog-column {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 30px;
    }
}

.blog-slider-navigation button {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: transparent;
    border: 1px solid var(--bd-primary);
    border-radius: 6px;
    color: var(--bd-primary);
    transition: all 0.3s ease-in-out;
}
.blog-slider-navigation button:hover {
    background-color: var(--bd-primary);
    color: var(--bd-white);
}

@keyframes shine {
    100% {
        left: 125%;
    }
}
.blog-wrapper .blog-thumb {
    overflow: hidden;
    transition: all 0.3s ease-out 0s;
    position: relative;
}
.blog-wrapper .blog-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    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);
}
.blog-wrapper:hover .blog-thumb::before {
    animation: shine 800ms;
}
.postbox-desc {
    font-size: var(--bd-fs-p);
    font-family: var(--bd-ff-p);
    font-weight: var(--bd-fw-normal);
    color: #595959; 
    margin-bottom: 30px;
    line-height: 30px;
}
.details-content-title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: var(--bd-fw-bold);
}
.post-details-blockquote span i {
    font-size: 0;
}
.post-details-blockquote span i::before {
    font-size: 70px;
}
.post-details-blockquote .name {
    color: var(--bd-body-text);
    font-size: var(--bd-fs-body);
    font-weight: normal;
    line-height: 1.5;
}

.mb-30 {
    margin-bottom: 30px;
}

.post-details-list ul li::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--bd-primary);
    border-radius: 50%;
    left: -20px;
    top: 8px;
}
.post-details-list ul li {
    list-style: none;
    position: relative;
    margin-left: 20px;
    color: #595959;
    font-size: var(--bd-fs-body);
    font-weight: normal;
    line-height: 1.5;
}

.post-details-list ul li:not(:last-child) {
    margin-bottom: 10px;
}
.social-icon-list li i {
    font-size: 0px;
}
.social-icon-list li i::before {
    font-size: var(--bd-fs-body);
}
.core-values-area {
	background-image: url(../../../image/catalog/core-values.webp);
}
.instructor-social .social-icon-list li i {
	font-size: 0px;
  color: #fff;
}
.instructor-social .social-icon-list li i::before {
    font-size: var(--bd-fs-body);
}
.instructor-social .social-icon-list li{
    transform: translateY(0px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.instructor-wrapper:hover .instructor-social li {
    transform: translateX(25px);
    opacity: 1;
}


/*----------------------------------------*/
/*  Features csss
/*----------------------------------------*/
.feature-wrapper.style-one .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.feature-wrapper.style-one .feature-item:hover .icon svg {
    stroke-dasharray: 45;
    stroke-dashoffset: 350;
    -webkit-animation: line-dash 20s linear backwards alternate-reverse infinite;
    animation: line-dash 20s linear backwards alternate-reverse infinite;
}
.feature-wrapper.style-one .feature-item .icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bd-white);
    border-radius: 50%;
    min-width: 85px;
}
.feature-wrapper.style-one .feature-item .description {
    color: var(--bd-white);
    font-size: 20px;
}
.feature-wrapper.style-two {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--bd-white);
    border-radius: 6px 6px 0 0;
    margin-top: -100px;
    position: relative;
    z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .feature-wrapper.style-two {
        grid-template-columns: repeat(1, 1fr);
        box-shadow: 0px 4px 10px 0px rgba(131, 131, 131, 0.1);
    }
}
.feature-wrapper.style-two .feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .feature-wrapper.style-two .feature-item {
        padding: 20px 30px;
    }
}
.feature-wrapper.style-two .feature-item:hover .feature-icon {
    transform: rotateY(180deg);
    color: var(--bd-primary);
}
.feature-wrapper.style-two .feature-item.has-active {
    background: var(--bd-primary);
}
.feature-wrapper.style-two .feature-item.has-active .feature-icon {
    color: var(--bd-white);
}
.feature-wrapper.style-two .feature-item.has-active .feature-title {
    color: var(--bd-white);
}
.feature-wrapper.style-two .feature-item.has-active .feature-icon svg * {
    stroke: var(--bd-white);
}
.feature-wrapper.style-two .feature-icon {
    transition: all 0.8s ease;
}
.feature-wrapper.style-two .feature-icon svg {
    width: 60px;
    height: 60px;
    transition: all 0.3s linear;
}
.feature-wrapper.style-two .feature-title {
    color: var(--bd-theme-black);
}
.feature-wrapper.style-three {
    border: 1px solid var(--bd-border-secondary);
    border-radius: 24px;
    overflow: hidden;
}
.feature-wrapper.style-three ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .feature-wrapper.style-three ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .feature-wrapper.style-three ul {
        grid-template-columns: repeat(1, 1fr);
    }
}
.feature-wrapper.style-three ul li {
    border-left: 1px solid var(--bd-border-secondary);
    transition: all 0.3s ease-out 0s;
    position: relative;
    list-style: none;
    width: 322px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .feature-wrapper.style-three ul li {
        width: 300px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .feature-wrapper.style-three ul li {
        width: 100%;
    }
}
.feature-wrapper.style-three ul li:first-child {
    border-left: 0;
}
.feature-wrapper.style-three ul li::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    border-radius: 24px;
    transition: all 0.3s ease-out 0s;
    background-color: var(--primary-rgb-1);
}
.feature-wrapper.style-three ul li:hover {
    border-color: transparent;
    border-radius: 24px;
    transition: all 0.3s ease-out 0s;
}
.feature-wrapper.style-three ul li:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}
.feature-wrapper.style-three ul li:hover + li {
    border-left: transparent;
}
.feature-wrapper.style-three .feature {
    text-align: center;
    transition: all 0.3s ease-out 0s;
}
.feature-wrapper.style-three .feature-content {
    padding: 42px;
    position: relative;
    z-index: 1;
}
.feature-wrapper.style-three .feature-icon {
    font-weight: 600;
    height: 120px;
    width: 120px;
    border-radius: 100%;
    padding: 0px;
    background-color: var(--primary-rgb-1);
    text-align: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease-out 0s;
}
.feature-wrapper.style-three .feature-icon i {
    font-size: 50px;
    line-height: 120px;
    display: inline-block;
    color: var(--bd-primary);
    transition: all 0.3s ease-out 0s;
}
.feature-wrapper.style-three .feature-title {
    color: var(--bd-theme-black);
    margin-bottom: 20px;
    transition: all 0.3s ease-out 0s;
}
.feature-wrapper.style-three .feature-content p {
    color: var(--bd-theme-black);
    transition: all 0.3s ease-out 0s;
}
.feature-wrapper.style-three .feature-content:hover .feature-icon {
    background-color: var(--bd-primary);
}
.feature-wrapper.style-three .feature-content:hover .feature-icon i {
    color: var(--bd-white);
}
.feature-wrapper.style-three .feature-content:hover .feature-title {
    color: var(--bd-theme-black);
}
.feature-wrapper.style-three .feature-content:hover p {
    color: var(--bd-body-text);
}

.overview-box {
    display: grid;
    grid-template-columns: 350px 350px 350px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .overview-box {
        grid-template-columns: repeat(3, 1fr);
        gap: 0 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .overview-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .overview-box {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}
@media (max-width: 575px) {
    .overview-box {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}

.overview-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}
.overview-wrapper:hover .icon svg {
    stroke-dasharray: 90;
    stroke-dashoffset: 890;
    -webkit-animation: line-dash 20s linear backwards alternate-reverse infinite;
    animation: line-dash 20s linear backwards alternate-reverse infinite;
}
.overview-wrapper .icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: var(--bd-white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overview-wrapper:not(:last-child)::after {
    position: absolute;
    content: "";
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 84px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 46.81%, rgba(255, 255, 255, 0) 100%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .overview-wrapper:not(:last-child)::after {
        right: -15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .overview-wrapper:not(:last-child)::after {
        right: 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .overview-wrapper:not(:last-child)::after {
        display: none;
    }
}

.line-dash svg {
    stroke-dasharray: 45;
    stroke-dashoffset: 350;
    -webkit-animation: line-dash 5s linear backwards alternate-reverse infinite;
    animation: line-dash 5s linear backwards alternate-reverse infinite;
}

@keyframes line-dash {
    100% {
        stroke-dashoffset: 0;
    }
}
.sidebar-sticky {
    position: sticky;
    top: 120px;
}
/* ================================
   RESPONSIVE DESIGN
   ================================ */
   @media(min-width: 600px) and (max-width: 768px){
   	.breadcrumb-title {
		    font-size: 40px;
		}
		.bg-light-slider.bg-breadcrumb {
		    height: 400px;
		}
   }

   @media(max-width: 599px){
   	.breadcrumb-title {
		    font-size: 32px;
		}
		.bg-light-slider.bg-breadcrumb {
		    height: 400px;
		}
   }

@media (max-width: 1199px) {
    .about-section .about-content-container {
        margin-left: 0;
    }
    .header-inner,.header-top {
      padding-left: 15px;
      padding-right: 15px
    }
    .section-title {
        font-size: 32px;
    }

    .about-images-grid {
        gap: 15px;
    }
    .counter-container {
        gap: 15px;
        padding: 30px 15px;
    }
    .blog-content {
        padding: 40px 15px 15px 15px;
    }
}

@media (max-width: 991px) {
    .section-spacing {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .partners-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
	.post-details-blockquote blockquote .title,.details-content-title {
	    font-size: 20px;
	}
	.post-details-blockquote blockquote {
	    padding: 30px 30px;
	}
	.blog-widget{
		padding: 20px;
	}
    .blog-widget.widget_categories{
        margin-top: 15px;
    } 
  .faq-content{
    width: 100%; 
  }
  .faq-section h2 {
    font-size: 28px;
  }
  .faq-section .panel-title span, .faq-section .panel-title a {
      padding-bottom: 16px;
      padding-top: 16px;
  }
  .faq-section .panel-title span, .faq-section .panel-title a {
      font-size: 16px;
  }
  .why-choose-area.fix{
    margin-bottom: 30px;
  }
  .why-choose-wrapper.style-two{
    margin-bottom: 15px;
  }
  .testimonial-wrapper.style-six .testimonial-content p {
    font-size: 16px;
 }
  .mission-vision-title,.why-choose-area .counter-style-five.has-transparent .counter-content h2 {
      font-size: 30px;
  }
  .sidenav .close-nav {
    background-color: #161616;
    padding: 12px 15px;
    width: 100%;
    display: inline-block;
    color: #fff;
    letter-spacing: 1px;
  }
  body.active .sidenav {
    overflow-x: unset;
    overflow-y: scroll;
  }
  .sidenav, body.active::before {
    top: 0;
    left: 0;
    height: 100%;
  }
  .sidenav {
    width: 0;
    position: fixed;
    transition: .5s;
    overflow-x: hidden;
    box-shadow: 5px 0 5px 0 rgb(0 0 0 / .06);
    clear: both;
    background-color: #fff;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    z-index: 9999;
  }
  .sidenav .close-nav {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 15px;
    width: 100%;
    display: flex;
    color: #fff;
    letter-spacing: 1px;
    justify-content: space-between;
  }
  .close-nav img{
      max-width: 140px;
  }
    .bd-offcanvas-contact.mb-30 {
        padding: 15px;
        margin-top: 30px;
    }
    #menu .navbar-nav > li > a{
        font-weight: 400;
    }
    .bd-offcanvas-contact ul{
        padding: 0;
    }
    .bd-offcanvas-contact ul li{
        margin-bottom: 20px;
        color: var(--bd-body-text);
    }
    .bd-offcanvas-contact ul li a{
        color: var(--bd-body-text);
    }
    .bd-offcanvas-contact-icon i{
        display: inline-block;
        width: 36px;
        height: 36px;
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        border-radius: 50%;
        background: transparent;
        color: var(--bd-theme-black);
        border: 1px solid var(--bd-border-secondary);
        margin-right: 10px;
    }
    .bd-offcanvas-contact-icon i{
        font-size: 0;
    }
    .bd-offcanvas-contact-icon i::before{
        font-size: 16px;
    }
  .closebtn {
    background-color: #fff;
    border: none;
    padding: 0;
    float: right;
    width: 30px;
    font-size: 28px;
    color: var(--bd-primary);
  }
  #menu .navbar-nav > li > a {
      color: #fff;
      padding: 15px 15px;
      display: flex;
      width: 100%;
      justify-content: space-between;
  }
    #menu ul li .caret {
        font-size: 0;
        color: #7F8387;
        border: 1px solid #7F8387;
        width: 30px;
        height: 30px;
        text-align: center;
    }
    #menu .navbar-nav > li > a:hover .caret::after {
        transform: rotate(180deg);
        color: #07A169;
        font-size: 18px;
        margin: 0;
    }
    #menu ul li .caret::after{
        font-size: 18px;
        margin: 0;
    }
  #menu .navbar-nav{
    display: block;
  }
  .navbar-toggler-icon-xs {
    width: 1.75rem;
    height: 1.5rem;
    margin-left: 0;
    display: block;
    font-size: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' fill-rule='evenodd' stroke='%231a1817' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.1 5.9c1.93.21 4.562.247 7.897.108C16 5.8 19.765 6.115 20 6.1c.326-.02.659-.054 1-.1M3 12.2c-.112-.211.222-.311 1-.3 3.31.047 8.782.199 11 .1 3-.133 5-.133 6 0M3 18c-.667-.067.833-.1 4.5-.1 1.949 0 4.08.181 6.5.2 1.422.011 3.755-.022 7-.1'/%3E%3C/svg%3E") 50% / 100% 100% no-repeat;
}
    #menu .navbar-collapse {
        display: block;
    }
    .header-top{
      display: block;
    }
    .header-top-left ul {
        gap: 0 10px;
        flex-wrap: wrap;
    }
    .header-top-left ul li span {
        margin-inline-end: 5px;
    }
    .header-top-left ul li:first-child::before{
      display: none;
    }
    .header-top-right.text-md-end {
        text-align: center;
    }
    .bd-btn {
        padding: 8px 15px;
    }
    .header-left #logo img{
      max-width: 120px;
      height: auto;	
    }
    .banner-title.white-text{
      font-size: 32px;
    }
    .banner-form .form-list {
        flex-wrap: wrap;
        gap: 15px;
    }
    .banner-slider-wrapper {
        min-height: 430px;
    }
    .banner-content-two {
        padding-top: 100px;
        padding-bottom: 70px;
    }
    .about-experience-badge,.about-testimonial-card{
        padding: 15px 10px;
    }
    .header-left #logo{
      margin-left: 35px;
    }
    .section-spacing {
        padding: 40px 0;
    }

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

    .counter-container {
        grid-template-columns: 1fr;
    }

    .counter-number {
        font-size: 36px;
    }

    .why-choose-card {
        padding: 30px 20px;
    }

    .partners-grid-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .video-section {
        min-height: 400px;
    }
    .cta-content{
      margin-top: 30px;
    }
    .g-30, .gy-30 {
        --bs-gutter-y: 0;
    }
    .partners-header-wrapper.has-margin{
      margin-right: 0;
    }
    .section-spacing-bottom{
      padding-bottom: 30px;
    }
    .section-space {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .navbar-header.xs-toggle {
        position: absolute;
        left: 0;
        top: 12px;
    }
}
@media(min-width: 992px) and (max-width: 1199px){
  .banner-title.white-text {
      font-size: 30px;
  }
  .banner-slider-wrapper {
      min-height: 530px;
  }
  .theme-social ul li a {
      width: 30px;
      height: 30px;
  }
  .social-icon-list{
    gap: 10px;
  }

}
@media(min-width: 768px) and (max-width: 991px){
  .banner-slider-wrapper {
      min-height: 530px;
  }
  .counter-container {
      grid-template-columns: repeat(2, 1fr);
  }
  .cta-content {
      margin-top: 50px;
  }
}
/* ================================
   SWIPER OVERRIDES
   ================================ */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    height: auto;
}

.swiper-wrapper {
    align-items: stretch;
}


.banner-navigation-btn-two {
    display: none;
}

.floating_wp {
    bottom: 75px;
    right: 40px;
    background-color: #0B602D;
    border-radius: 50px;
    z-index: 100;
    padding: 6px 22px;
    align-content: center
}

.floating-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999
}

.floating-contact-buttons .float-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: #0B602D;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
    transition: transform .15s,box-shadow .15s,background-color .15s;
    white-space: nowrap
}

.floating-contact-buttons .float-btn i {
    margin-right: 8px;
    font-size: 18px
}

.floating-contact-buttons .float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,.3);
    text-decoration: none
}

.floating-contact-buttons .float-call {
    background: #0052AD
}

.floating-contact-buttons .float-whatsapp {
    background: #0B602D
}

.floating-contact-buttons .float-quote {
    background: #7A4A00
}
.instructor-thumb {
  width: 110px;        /* was 90px */
  height: 110px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  transition: all .25s ease;
}

/* Font Awesome icon groter */
.instructor-thumb i {
  font-size: 42px;     /* was ~34px */
  color: #0B602D;
}

/* Hover blijft rustig */
.instructor-wrapper:hover .instructor-thumb {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
}
.fs-0{
font-size: 0 !important;
}
.header-top-right{
    display: flex;
    gap: 20px;
}
header{
background: #5671f1;
}
.hs-1 .hero-single {
    padding-top: 150px;
    padding-bottom: 120px;
}
.hero-section .hero-single {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.hero-section .hero-single::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}
.hero-section .hero-single .hero-content {
    height: 100%;
}
.hs-1 .hero-single .hero-content .hero-sub-title {
    background: #f7931e;
    color: #ffffff;
    font-size: 24px;
    letter-spacing: 2px;
    padding: 4px 25px 4px 15px;
    clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0 0);
    font-weight: 300;
    border-radius: 50px 0 0 50px;
    display: inline-block;
    font-family: "Oxygen", sans-serif;
    text-transform: uppercase;
}
.hero-section .hero-single .hero-content .hero-title {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    margin: 20px 0;
    text-transform: capitalize;
}
.hs-1 .hero-single .hero-content .hero-title {
    font-size: 66px;
    font-family: "Oxygen", sans-serif;
}
.hs-1 .hero-single .hero-content .hero-title span{
    color: #5671f1;
    -webkit-text-stroke: 1px #ffffff;
}   
.hero-section .hero-single .hero-content p {
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}
.hero-section .hero-single .hero-content .hero-btn {
    display: flex;
    justify-content: start;
    gap: 1rem;
    margin-top: 35px;
}
.theme-border-btn, .theme-btn2, .theme-btn {
    font-size: 16px;
    color: #ffffff;
    padding: 10px 22px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: none;
    background: #5671f1;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
    z-index: 1;
}
.theme-btn2 {
    background: #f7931e;
    color: #ffffff;
}
.hs-1 .hero-single .booking-form {
    position: relative;
    z-index: 1;
}
.booking-form-wrap {
    background: #ffffff;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
    padding: 18px 25px 25px 25px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.hs-1 .hero-single .booking-form-wrap {
    position: absolute;
}
.booking-form-wrap .shape {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 50px solid #5671f1;
    border-radius: 50%;
    opacity: 0.08;
}

.booking-form-wrap .title {
    color: #000d83;
    margin-bottom: 15px;
}
.booking-form-wrap .ss-main, .booking-form-wrap .form-group {
    margin-bottom: 0;
}
.form-group .form-icon {
    position: relative;
}
.form-group .form-icon i {
    position: absolute;
    top: 16px;
    left: 15px;
    color: #5671f1;
    z-index: 1;
}
.ss-main {
  display: flex;
  flex-direction: row;
  position: relative;
  user-select: none;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  border: 1px solid #dcdee2;
  outline: 0;
  box-sizing: border-box;
  transition: background-color 0.2s;
  overflow: hidden;
  min-height: 50px;
  border-radius: 10px;
  color: #000d83;
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  padding: 10px 10px 10px 40px;
  margin-bottom: 0;
}
.ss-main .ss-values {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 7px;
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}
.ss-main .ss-values .ss-single {
    display: block;
    margin: auto 0px auto 5px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1 1 auto;
    max-width: calc(100% - 20px);
    margin-left: 0;
}
.ss-main .ss-arrow {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 12px;
    height: 12px;
    margin: auto 7px auto 7px;
}
.ss-main .ss-arrow {
    width: 14px;
    height: 14px;
    margin-right: 10px;
}

/*about us*/
.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}
.pb-150 {
    padding-bottom: 150px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-120 {
    padding-top: 120px;
}
.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.pb-100{
    padding-bottom: 100px;
}
.pb-80{
    padding-bottom: 80px;
}
.pt-80{
    padding-top: 80px;
}
.about-left {
    position: relative;
    margin-right: 30px;
}
.about-left .shape {
    position: absolute;
    right: 10px;
    top: 40px;
    width: 150px;
    height: 150px;
    border: 20px solid #f7931e;
    border-radius: 50%;
    z-index: -1;
}
.img, img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
    height: auto;
}
.about-img .img-1 img {
    border-radius: 100px 10px 10px 10px;
}
.about-img .img-3 {
    text-align: right;
}
.about-img .img-3 img {
    width: 85%;
    border-radius: 10px 10px 10px 100px;
}
.about-img .img-2 img {
    border-radius: 10px 100px 10px 10px;
}
.about-experience {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: #5671f1;
    border-radius: 50%;
    text-align: center;
    padding: 18px 10px 10px 10px;
    margin-top: 50px;
    border: 10px solid #ffffff;
}
.about-experience h4 {
    color: #ffffff;
    font-size: 40px;
    font-family: "Oxygen", sans-serif;
}
.about-experience p {
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
    font-family: "Oxygen", sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.about-right {
    position: relative;
    display: block;
}
.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.site-heading .site-title-tagline {
    display: inline-block;
    color: var(--color-white);
    font-weight: 500;
    text-transform: capitalize;
    font-size: 18px;
    background: var(--theme-color);
    border-radius: 50px;
    padding: 2px 15px 2px 3px;
    margin-bottom: 15px;
}
.site-heading .site-title-tagline i {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--color-white);
    color: var(--theme-color);
    text-align: center;
    border-radius: 50px;
    margin-right: 5px;
}
.site-heading .site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 45px;
    color: var(--color-dark);
    margin-bottom: 0;
    font-family: "Oxygen", sans-serif;
}
.site-heading .site-title span {
    color: var(--theme-color);
}
.about-content {
    margin-top: 25px;
    margin-bottom: 15px;
}
.about-content .about-item {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}
.about-content .about-item .icon {
    width: 65px;
    height: 65px;
    line-height: 60px;
    text-align: center;
    background: var(--theme-color);
    border-radius: 50px;
}
.about-content .about-item .icon img {
  width: 40px;
  filter: brightness(0) invert(1);
}
.about-content .about-item .content {
  flex: 1;
}
.about-content .about-item .content h4 {
  font-size: 17px;
  color: var(--color-dark);
  margin-bottom: 8px;
  font-weight: 600;
  font-family: "Oxygen", sans-serif;
  line-height: 1.2;
}
.about-content .about-list {
  background: rgba(247, 147, 30, 0.05);
  padding: 15px 20px;
  border-radius: 15px;
}
.about-content .about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-dark);
  font-family: "Oxygen", sans-serif;
  margin-bottom: 5px;
}
.about-content .about-list li img {
  width: 20px;
}

/*====================
22. Feature css 
======================*/
.feature-area {
  position: relative;
  z-index: 1;
}
.feature-item {
  position: relative;
  transition: var(--transition);
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-item::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 10px;
  bottom: 1px;
  width: 50%;
  background: var(--theme-color);
  border-radius: 30px;
  transform: skewX(5deg);
  z-index: -1;
}
.feature-content {
  display: flex;
  gap: 25px;
  background: var(--color-white);
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 30px;
}
.feature-content .count {
  position: absolute;
  left: 25px;
  bottom: 0px;
  font-size: 50px;
  font-weight: 800;
  color: var(--theme-color);
  font-family: "Oxygen", sans-serif;
  opacity: 0.1;
}
.feature-icon {
  position: relative;
  z-index: 1;
}
.feature-icon img {
  width: 65px;
}
.feature-icon::before {
  content: "";
  position: absolute;
  left: -14px;
  top: -14px;
  width: 50px;
  height: 50px;
  border: 5px solid var(--theme-color);
  border-radius: 50px;
  z-index: -1;
}
.feature-info {
  flex: 1;
}
.feature-info h4 {
  color: var(--color-dark);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  font-family: "Oxygen", sans-serif;
}
.feature-info p {
  color: var(--body-text-color);
  margin-top: 10px;
}

/* ===================
23. Counter css 
====================== */
.counter-area.ng-mt {
  margin-top: -120px;
}
@media all and (max-width: 767px) {
  .counter-area.ng-mt {
    margin-top: -40px;
  }
}
.counter-wrap {
  position: relative;
  padding: 20px;
  background: var(--color-dark);
  border-radius: 50px;
}
@media all and (max-width: 767px) {
  .counter-wrap {
    padding: 30px;
  }
}
.counter-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50px;
  opacity: 0.5;
}
.counter-wrap.cw-full {
  border-radius: 0;
}
.counter-wrap.cw-full::before {
  border-radius: 0;
}
.counter-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  text-align: center;
  padding: 20px 15px 20px 20px;
  border-radius: 15px;
  z-index: 1;
}
.counter-box .icon {
  width: 100px;
  height: 100px;
  line-height: 82px;
  font-size: 35px;
  border-radius: 50px;
  text-align: center;
  color: var(--color-white);
  background: #f7931e;
  border: 4px solid var(--color-white);
}
.counter-box .icon img {
  width: 58px;
  filter: brightness(0) invert(1);
}
.counter-box .info {
  display: flex;
  justify-content: center;
  gap: 2px;
}
.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--color-white);
  font-size: 50px;
  font-weight: 900;
}
.counter-box .unit {
  font-size: 25px;
  color: #f7931e;
  font-weight: 500;
  line-height: 1;
  margin: 3px 0 0 3px;
}
.counter-box .title {
  color: var(--color-white);
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

/* ===================
24. Video css 
====================== */
.video-area {
  position: relative;
  margin-top: 120px;
}
.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.video-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.01);
  border-radius: 20px;
}
.video-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 550px;
  z-index: 1;
}
@media all and (max-width: 767px) {
  .video-wrap {
    height: 250px;
  }
}
.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*===================
25. Contact us css 
=====================*/
.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  text-align: center;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 30px;
  background: var(--color-white);
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  overflow: hidden;
  z-index: 1;
}
.contact-info::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 30px solid var(--theme-color);
  opacity: 0.05;
  z-index: -1;
}
.contact-info:hover {
  transform: translateY(-8px);
}
.contact-info .icon {
  font-size: 35px;
  color: var(--color-white);
  text-align: center;
}
.contact-info .icon img {
  width: 50px;
}
.contact-info .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}
.contact-info .content p {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 16px;
}
.contact-img img {
  width: 100%;
  border-radius: 40px;
}
.contact-form {
  background: var(--color-white);
  padding: 30px;
  border-radius: 40px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.contact-form-header {
  margin-bottom: 30px;
}
.contact-form-header h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}
.contact-form-header p {
  color: var(--body-text-color);
}
.contact-form .form-message.success, .contact-form .form-message.error {
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 10px 18px;
}
.contact-form .form-message.success {
  color: #41be7d;
  background: rgba(65, 190, 125, 0.1);
}
.contact-form .form-message.error {
  color: #ff7f7f;
  background: rgba(255, 127, 127, 0.1);
}
.contact-map {
  margin-bottom: -9px;
}
.contact-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 50px;
}

/*====================
26. Error css 
======================*/
.error-wrap {
  text-align: center;
}
.error-wrap h2 {
  font-size: 250px;
  letter-spacing: 5px;
  font-weight: bold;
  color: var(--theme-color);
}
@media all and (max-width: 767px) {
  .error-wrap h2 {
    font-size: 160px;
  }
}
.error-wrap h2 span {
  color: var(--color-dark);
}
.error-wrap h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}
.error-wrap img {
  width: 100%;
}
.error-wrap .theme-btn {
  margin-top: 30px;
}

/*====================
27. Terms/privacy css 
====================== */
.terms-content:not(:last-child) {
  margin-bottom: 54px;
}
.terms-content:first-child {
  margin-top: -3px;
}
.terms-content .terms-list {
  margin-top: 37px;
  padding: 0;  
}
.terms-content .terms-list.numbers-list{
    list-style-type: none;
}
.terms-content .terms-list li:not(:last-child) {
  margin-bottom: 16px;
}
.terms-content h3 {
  margin-bottom: 23px;
  position: relative;
  font-weight: 700;
}
.terms-content p:not(:last-child) {
  margin-bottom: 26px;
}

/*====================
28. Coming soon css 
======================*/
.coming-soon {
  position: relative;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  min-height: 100vh;
  width: 100%;
  z-index: 1;
}
.coming-soon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.coming-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75vh;
}
.coming-content {
  text-align: center;
}
.coming-info h1 {
  color: var(--color-white);
  font-weight: 700;
  font-size: 50px;
}
@media all and (max-width: 767px) {
  .coming-info h1 {
    font-size: 40px;
  }
}
.coming-info p {
  font-size: 18px;
  color: var(--color-white);
  margin-top: 10px;
}

.coming-countdown-wrap {
  margin-top: 30px;
  margin-bottom: 30px;
}
.coming-countdown .time-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.coming-countdown .time {
  background: var(--color-white);
  width: 125px;
  border-radius: 15px;
  padding: 14px 10px;
}
.coming-countdown .time span {
  display: block;
}
.coming-countdown .time span:first-child {
  color: var(--theme-color);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
}
.coming-countdown .time .unit {
  color: var(--color-dark);
  font-weight: 500;
}
.coming-countdown .divider {
  display: none;
}

.coming-newsletter-form .form-group {
  position: relative;
}
.coming-newsletter-form .form-group .form-control {
  padding: 17px 150px 17px 20px;
  border-radius: 50px;
  border-color: transparent;
  color: var(--color-dark);
}
.coming-newsletter-form .form-group .form-control::-moz-placeholder {
  color: var(--color-dark);
}
.coming-newsletter-form .form-group .form-control::placeholder {
  color: var(--color-dark);
}
.coming-newsletter-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}
.coming-newsletter-form .theme-btn {
  position: absolute;
  right: 5px;
  top: 6px;
  padding: 9px 15px;
}

.coming-social {
  margin-top: 40px;
  text-align: center;
}
.coming-social a {
  display: inline-block;
  background: var(--theme-color);
  color: var(--color-white);
  margin: 5px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: var(--box-shadow2);
}
.coming-social a:hover {
  background: #f7931e;
}

/*====================
29. Faq css 
======================*/
.faq-area .accordion-item {
  border: none;
  background: var(--color-white);
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.faq-area .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-area .accordion-button {
  border-radius: 0px;
  background: transparent;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-dark);
  box-shadow: none;
}
@media all and (max-width: 991px) {
  .faq-area .accordion-button {
    font-size: 16px;
  }
}
.faq-area .accordion-button::after {
    content: "\f107";
    background: none;
    color: var(--theme-color);
    font-size: 24px;
    font-weight: 900; /* 🔥 REQUIRED for solid icons */
    font-family: "Font Awesome 6 Free";
    width: unset;
    height: unset;
    margin-right: 8px;
}
.faq-area .accordion-button:not(.collapsed) {
  color: var(--theme-color);
  background: transparent;
  border-bottom: 1px dashed var(--theme-color);
  box-shadow: none;
}
.faq-area .accordion-button:not(.collapsed)::after {
    content: "\f107";
    transform: rotate(-180deg);
}
.faq-area .accordion-button span {
  width: 45px;
  height: 45px;
  /* margin-right: 15px; */
}
.faq-area .accordion-button span i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  color: var(--color-white);
}
.faq-area .accordion-body {
  color: var(--body-text-color);
}
@media all and (max-width: 991px) {
  .faq-area .faq-content {
    margin-bottom: 50px;
  }
}
.faq-area .faq-img img {
  width: 92%;
  border-radius: 20px;
}

/* ===================
30. Team css 
====================== */
.team-area {
  position: relative;
}
.team-img {
  position: relative;
}
.team-img img {
  border-radius: 50px;
}
.team-social-btn {
  position: absolute;
  right: -3px;
  bottom: 0;
  width: 60px;
  height: 60px;
  background: var(--color-white);
  border-top-left-radius: 50%;
  padding: 8px;
}
.team-social-btn::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: transparent;
  box-shadow: 5px 5px 0 5px var(--color-white);
  border-bottom-right-radius: 20px;
}
.team-social-btn::after {
  content: "";
  position: absolute;
  top: -20px;
  right: 3px;
  width: 20px;
  height: 20px;
  background: transparent;
  box-shadow: 5px 5px 0 5px var(--color-white);
  border-bottom-right-radius: 20px;
}
.team-social-btn button {
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  border: none;
}
.team-social {
  position: absolute;
  right: 9px;
  bottom: 25px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.team-social a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 5px;
  background: var(--color-white);
  color: var(--theme-color);
  border-radius: 50px;
}
.team-social a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}
.team-social-wrap:hover .team-social {
  opacity: 1;
  visibility: visible;
  bottom: 60px;
}
.team-content {
  margin-top: 10px;
}
.team-content h4 a {
  color: var(--color-dark);
  font-size: 20px;
}
.team-content h4 a:hover {
  color: var(--theme-color);
}
.team-content span {
  color: var(--theme-color);
  font-weight: 500;
  font-size: 15px;
}

/* team single css  */
@media all and (max-width: 991px) {
  .team-single-img {
    margin-bottom: 20px;
  }
}
.team-single-img img {
  border-radius: 20px;
}
.team-single-content {
  padding-left: 15px;
}
.team-single-name {
  margin-bottom: 10px;
}
.team-single-name p {
  font-weight: 500;
  color: var(--theme-color);
}
.team-single-info {
  margin-top: 20px;
}
.team-single-info li {
  margin: 10px 0;
}
.team-single-info-left {
  font-weight: 500;
}
.team-single-info-left i {
  color: var(--theme-color);
  margin-right: 5px;
}
.team-single-info-right {
  margin-left: 10px;
}
.team-single-social a {
  height: 35px;
  width: 35px;
  line-height: 32px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  border-radius: 50px;
  margin-right: 5px;
}
.team-single-social a:hover {
  background: var(--theme-color);
  color: var(--color-dark);
}
.team-single-overview {
  margin-top: 70px;
}
@media all and (max-width: 991px) {
  .team-single-overview-img {
    margin-top: 20px;
  }
}
.team-single-overview-img img {
  border-radius: 20px;
}

/*====================
31. Testimonial css 
======================*/
.testimonial-item {
  position: relative;
  margin: 2px;
}
.testimonial-item::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(to top right, var(--theme-color) 40%, transparent 75%);
  border-radius: 35px;
  z-index: -1;
}
.testimonial-item .content {
  background: var(--color-white);
  border-radius: 33px;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-item .content .icon {
  position: absolute;
  right: 20px;
  top: 0px;
  opacity: 1;
  z-index: -1;
}
.testimonial-item .content .icon img {
  width: 70px;
}
.testimonial-item .content .rating {
  color: #fba707;
  margin-bottom: 10px;
}
.testimonial-item .content .quote p {
  color: #757f95;
  line-height: 1.8;
}
.testimonial-item .content .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  border-top: 1px dashed var(--theme-color);
  padding-top: 15px;
}
.testimonial-item .content .author-img img {
  width: 55px;
  border-radius: 50px;
}
.testimonial-item .content .author-info h4 {
  font-size: 18px;
  color: var(--color-dark);
  line-height: 1.2;
  font-weight: 600;
}
.testimonial-item .content .author-info p {
  color:#f7931e;
}
.ts-bg {
  position: relative;
}
.ts-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../../image/catalog/testibg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  opacity: 0.3;
}

/* testimonial-slider */
.owl-dots {
  text-align: center;
  margin-top: 30px;
}
.owl-dots .owl-dot span {
  background: var(--theme-color);
  margin: 5px 7px;
  border-radius: 10px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
  position: relative;
}
.owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
}
.owl-dots .owl-dot.active span::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1.6px solid var(--theme-color);
  border-radius: 50px;
}

/*====================
32. Brand css 
======================*/
.brand-area .brand-item {
  width: 100%;
  background: #f6f6f6;
  border-radius: 15px;
  text-align: center;
  padding: 10px 10px 10px 10px;
}
.brand-area .brand-item .brand-img {
  margin: 0 auto;
}
.brand-area .brand-thumb .brand-content h4 {
  font-size: 17px;
  margin-bottom: 2px;
  color: var(--color-dark);
}
.brand-area .brand-thumb .brand-content h4 a{
  font-size: 17px;  
  color: var(--color-dark);
  font-weight: 600;
}
.brand-area .brand-item .brand-content span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}

/*====================
33. Choose css 
======================*/
.choose-area {
  position: relative;
  overflow: hidden;
}
.choose-area.choose-bg {
  position: relative;
  background: #f6f6f6;
  z-index: 1;
}
.choose-area.choose-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 31%;
  background: var(--theme-color);
  z-index: -1;
}
.choose-area .text-shape {
  position: absolute;
  top: -20px;
  right: 0;
  writing-mode: sideways-lr;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 230px;
  line-height: 230px;
  font-weight: 800;
  letter-spacing: 5px;
}
@media all and (min-width: 992px) and (max-width: 1199px) {
  .choose-area .text-shape {
    right: -100px;
  }
}
@media all and (max-width: 991px) {
  .choose-area .text-shape {
    top: unset;
    bottom: 20px;
    line-height: 205px;
  }
}
@media all and (max-width: 767px) {
  .choose-area .text-shape {
    font-size: 100px;
    line-height: 100px;
  }
}
.choose-content-wrap {
  margin-top: 30px;
}
.choose-item {
  display: flex;
  gap: 20px;
  background: var(--color-white);
  padding: 15px;
  border-radius: 20px;
  position: relative;
  margin-top: 25px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.choose-item .icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  line-height: 77px;
  background: var(--theme-color);
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  text-align: center;
}
.choose-item .icon img {
  width: 50px;
  filter: brightness(0) invert(1);
}
.choose-item .info h4 {
  color: var(--color-dark);
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}
.choose-img {
  width: 95%;
}

/*====================
34. Cta css 
======================*/
.cta-area.ng-mt {
  margin-top: -120px;
}
.cta-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 40px;
  border-radius: 25px;
  overflow: hidden;
  z-index: 1;
}
.cta-wrap::before {
  content: "";
  position: absolute;
  background: var(--theme-color);
  border-radius: 25px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.9;
  z-index: -1;
}
.cta-text h3 {
  color: var(--color-white);
  font-size: 45px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-family: "Oxygen", sans-serif;
}
.cta-text p {
  color: var(--color-white);
}
.cta-number {
  font-size: 32px;
  color: var(--color-white) !important;
  font-weight: 700;
}
@media all and (max-width: 767px) {
  .cta-number {
    font-size: 28px;
  }
}
.cta-number i {
  margin-right: 15px;
}
.cta-btn .theme-btn {
  background: var(--color-white);
  color: var(--theme-color);
}
.cta-btn .theme-btn:hover {
  color: var(--color-white);
}
.cta-divider {
  position: relative;
}
.cta-divider::before {
  position: absolute;
  content: close-quote;
  width: 2px;
  bottom: 0;
  background-color: var(--color-white);
  right: -118px;
  top: 0;
}
.cta-divider:after {
  width: 0px;
  position: absolute;
  content: close-quote;
  height: 0px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid var(--color-white);
  top: 50%;
  transform: translateY(-50%);
  right: -124px;
}

/*====================
35. Car rate css 
======================*/
.car-rate .rate-item {
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 30px;
}
.car-rate .rate-item:hover {
  border-color: transparent;
  outline: 1.6px solid var(--theme-color);
}
.car-rate .rate-img {
  text-align: center;
  margin-bottom: 30px;
}
.car-rate .rate-img img {
  width: 70%;
}
.car-rate .rate-header {
  text-align: center;
}
.car-rate .rate-header h4 {
  font-size: 24px;
  color: var(--color-dark);
}
.car-rate .rate-header p {
  color: var(--theme-color);
  font-weight: 500;
}
.car-rate .rate-content {
  background: var(--theme-color);
  border-radius: 20px;
  padding: 25px;
  position: relative;
  margin-top: 50px;
}
.car-rate .rate-content .rate-icon {
  width: 95px;
  height: 95px;
  line-height: 105px;
  background: var(--color-white);
  margin: auto;
  border-radius: 50%;
  text-align: center;
  margin-top: -80px;
}
.car-rate .rate-content .rate-icon img {
  width: 50px;
}
.car-rate .rate-content .rate-feature {
  margin-top: 20px;
  margin-bottom: 25px;
}
.car-rate .rate-content .rate-feature ul li {
  color: var(--color-white);
  margin: 12px 0;
}
.car-rate .rate-content .rate-feature ul li i {
  margin-right: 5px;
}
.car-rate .rate-content .rate-feature ul li span {
  float: right;
}
.car-rate .rate-content .rate-btn {
  text-align: center;
}
.car-rate .rate-content .rate-btn .theme-btn2 {
  width: 100%;
  display: block;
}

/*====================
36. Blog css
======================*/
.blog-item {
  padding: 20px;
  background: var(--color-white);
  border-radius: 30px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
}
.blog-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.blog-img img {
  border-radius: 12px;
}
.blog-item:hover .blog-img img {
  transform: scale(1.1);
}
.blog-date {
  position: absolute;
  right: 70px;
  top: 2px;
  background: var(--color-white);
  color: var(--theme-color);
  font-weight: 500;
  text-align: center;
  padding: 0px 15px;
  border-radius: 50px;
  border: 3px solid var(--color-white);
  z-index: 1;
}
.blog-meta {
  padding: 14px 0 12px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.blog-meta ul{
    margin-bottom: 0;
}
.blog-meta ul li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
}
.blog-meta ul li a {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 14px;
}
.blog-meta ul li a:hover {
  color: var(--theme-color);
}
.blog-meta ul li i {
  margin-right: 5px;
  color: var(--theme-color);
}
.blog-title{
    margin-bottom: 20px;
}
.blog-title a {
  color: var(--color-dark);
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.blog-title a:hover {
  color: var(--theme-color);
}
.blog-info p {
  color: var(--body-text-color);
  margin-bottom: 20px;
}
.blog-area.blog-border .blog-item {
  border: 1.5px solid var(--theme-color);
  border-radius: 35px;
  box-shadow: none;
}
.blog-area.blog-border .blog-item:hover {
  border-color: #f7931e;
}
.blog-area.blog-border .blog-img {
  border-radius: 20px;
}
.blog-area.blog-border .blog-img img {
  border-radius: 20px;
}
.blog-area.blog-border .blog-title a {
  margin-bottom: 20px;
}

/*========================
37. Blog single css
==========================*/
.blog-single {
  position: relative;
}

/* blog single img */
.blog-single-content img {
  border-radius: 25px;
}

/* blog single meta */
.blog-single .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .blog-single .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }
}
.blog-single .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media all and (max-width: 767px) {
  .blog-single .blog-meta-left ul {
    gap: 10px;
  }
}
.blog-single .blog-meta-left ul li {
  color: var(--color-dark);
  font-weight: 500;
}
.blog-single .blog-meta i {
  margin-right: 5px;
  color: var(--theme-color);
}
.blog-single .blog-meta a {
  color: var(--color-dark);
  font-weight: 500;
}
.blog-single .blog-meta a:hover {
  color: var(--theme-color);
}

/* blog single details */
.blog-single .blog-details-title {
  font-size: 34px;
  color: var(--color-dark);
  font-weight: 700;
  margin-top: 20px;
}

/* blog single blockqoute */
.blog-single .blockqoute {
  background: #f6f6f6;
  border-left: 5px solid var(--theme-color);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 0px;
  position: relative;
}
.blog-single .blockqoute .blockqoute-icon {
  position: absolute;
  right: 20px;
  bottom: 5px;
  color: var(--theme-color);
  font-size: 70px;
}
.blog-single .blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color: var(--color-dark);
  font-size: 16px;
}
.blog-single .blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--theme-color);
  left: 0;
  top: 10px;
}

.service-img img{
    margin-bottom: 20px;
}
/* blog single details tag */
.blog-single .blog-details-tag {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-details-tag ul{
    list-style-type: none;
}
@media all and (max-width: 767px) {
  .blog-single .blog-details-tag {
    flex-direction: column;
    align-items: flex-start;
  }
}
.blog-single .blog-details-tag h4 {
  font-size: 18px;
  color: var(--color-dark);
}
.blog-single .blog-details-tag ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-single .blog-details-tag ul a {
  background: #f6f6f6;
  color: var(--color-dark);
  padding: 5px 18px;
  border-radius: 50px;
  transition: var(--transition);
}
.blog-single .blog-details-tag ul a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

/* blog single author */
.blog-single .blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: #f6f6f6;
  margin: 50px 0;
  padding: 20px;
  border-radius: 50px;
}
@media all and (max-width: 767px) {
  .blog-single .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
}
.blog-single .blog-author-img {
  width: 320px;
}
.blog-single .blog-author-img img {
  border-radius: 50%;
}
.blog-single .blog-author .author-name {
  font-size: 22px;
  color: var(--theme-color);
  margin: 8px 0;
}
.blog-single .blog-author .author-info {
  padding: 0 20px;
}
@media all and (max-width: 767px) {
  .blog-single .blog-author .author-info {
    margin-top: 25px;
  }
}
.blog-single .blog-author .author-info h4 {
  color: var(--color-dark);
  font-size: 17px;
}
.blog-single .blog-author .author-social {
  margin-top: 10px;
}
.blog-single .blog-author .author-social a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  margin-right: 5px;
  color: var(--theme-color);
  transition: var(--transition);
}
.blog-single .blog-author .author-social a:hover {
  color: var(--color-white);
  background: var(--theme-color);
}

/* blog single comment */
.blog-single .blog-comment h3 {
  color: var(--color-dark);
  font-weight: 700;
}
.blog-single .blog-comment-wrap {
  margin: 30px 0;
}
.blog-single .blog-comment-item {
  display: flex;
  align-items: start;
  justify-content: start;
  border: 1px solid var(--border-info-color);
  border-radius: 20px;
  padding: 15px;
  margin-top: 50px;
}
@media all and (max-width: 767px) {
  .blog-single .blog-comment-item {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    background: var(--color-white);
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-radius: 15px;
  }
}
.blog-single .blog-comment-item.reply {
  margin-left: 50px;
}
@media all and (max-width: 767px) {
  .blog-single .blog-comment-item.reply {
    margin-left: 0px;
  }
}
.blog-single .blog-comment-item img {
  width: 80px;
  border-radius: 50%;
}
@media all and (max-width: 767px) {
  .blog-single .blog-comment-item img {
    margin: 0 auto 20px auto;
  }
}
.blog-single .blog-comment-content {
  padding: 0 0 0 20px;
}
.blog-single .blog-comment-content span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}
.blog-single .blog-comment-content a {
  font-weight: 500;
  margin-top: 5px;
  color: var(--theme-color);
}
.blog-single .blog-comment-content a:hover {
  color: #f7931e;
}
.blog-single .blog-comment-content h4 {
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 700;
}

/* blog single comment form */
.blog-single .blog-comment-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 30px;
  background: #f6f6f6;
}
.blog-single .blog-comment-form h3 {
  margin-bottom: 20px;
}

/*==========================
38. Blog sidebar widget css
============================*/
/* sidebar widget */
.blog-sidebar .widget {
  background: #f6f6f6;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 25px;
}

/* sidebar widget title */
.blog-sidebar .widget-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 22px;
  color: var(--color-dark);
  font-weight: 700;
}
.blog-sidebar .widget-title::before {
  position: absolute;
  content: "";
  width: 15px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}
.blog-sidebar .widget-title::after {
  position: absolute;
  content: "";
  width: 30px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 22px;
}

/* sidebar widget search */
.blog-sidebar .widget .search-form .form-group {
  position: relative;
}
.blog-sidebar .widget .search-form .form-control {
  padding-right: 50px;
}
.blog-sidebar .widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 9px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--theme-color);
}

/* sidebar widget category */
.blog-sidebar .widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  color: var(--color-dark);
  border-bottom: 1px solid var(--border-info-color);
  transition: var(--transition);
}
.blog-sidebar .widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}
.blog-sidebar .widget .category-list a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}
.blog-sidebar .widget .category-list a i {
  margin-right: 5px;
  color: var(--theme-color);
}
.blog-sidebar .widget .category-list a span {
  float: right;
}

/* sidebar widget recent post */
.blog-sidebar .widget .recent-post-item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.blog-sidebar .widget .recent-post-img img {
  width: 75px;
  border-radius: 15px;
}
.blog-sidebar .widget .recent-post-info {
  flex: 1;
}
.blog-sidebar .widget .recent-post-info h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.blog-sidebar .widget .recent-post-info h5 a:hover {
  color: var(--theme-color);
}
.blog-sidebar .widget .recent-post-info span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}
.blog-sidebar .widget .recent-post-info i {
  margin-right: 5px;
}

/* sidebar widget social */
.blog-sidebar .widget .social-link a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}
.blog-sidebar .widget .social-link a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

/* sidebar widget tag */
.blog-sidebar .widget .tag-list a {
  background: var(--color-white);
  color: var(--color-dark);
  padding: 5px 18px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
}
.blog-sidebar .widget .tag-list a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}

/*====================
39. Auth css 
======================*/
.auth-form {
  padding: 40px;
  background: var(--color-white);
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  border-radius: 25px;
}
@media all and (max-width: 991px) {
  .auth-form {
    padding: 40px 20px;
  }
}

/* auth-header */
.auth-form .auth-header {
  text-align: center;
  margin-bottom: 30px;
}
.auth-form .auth-header img {
  width: 200px;
  margin-bottom: 10px;
}
.auth-form .auth-header h3 {
  color: var(--theme-color);
  margin-bottom: 5px;
  font-weight: 800;
}
.auth-form .auth-header p {
  color: var(--color-dark);
  font-size: 20px;
}

/* auth-group */
.auth-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.auth-group .form-check {
  margin-bottom: 0;
}
.auth-group .form-check-label {
  color: var(--color-dark);
  font-weight: 500;
}
.auth-group .auth-group-link {
  color: var(--theme-color);
  font-weight: 500;
}
.auth-group .auth-group-link:hover {
  color: var(--color-red);
}

/* password-view */
.auth-form .password-view {
  cursor: pointer;
}
.auth-form .password-view i {
  left: unset;
  right: 20px;
  color: var(--body-text-color);
}
.auth-form .password-view.show i::before {
  content: "\f06e";
}

/* auth-btn */
.auth-form .theme-btn {
  width: 100%;
}
.auth-form .theme-btn::before {
  width: 420px;
  height: 420px;
  transition: var(--transition2);
}

/* auth-bottom */
.auth-form .auth-bottom {
  margin-top: 25px;
}
.auth-form .auth-bottom p {
  color: var(--color-dark);
  text-align: center;
}
.auth-form .auth-bottom a {
  color: var(--theme-color);
  font-weight: 500;
}
.auth-form .auth-bottom a:hover {
  color: var(--color-red);
}

/* auth-social */
.auth-form .auth-social {
  border-top: 1px solid var(--border-info-color);
  margin-top: 15px;
}
.auth-form .auth-social p {
  color: var(--color-dark);
  margin: 10px 0;
}
.auth-form .auth-social-list {
  text-align: center;
  margin-bottom: 10px;
}
.auth-form .auth-social-list a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  border-radius: 50px;
  margin: 5px;
}
.auth-form .auth-social-list a:hover {
  background: var(--color-red);
}
.auth-form .auth-social-list a i {
  color: var(--color-white);
}

/*====================
40. Step/process css  
======================*/
.process-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
.process-item .count {
  position: absolute;
  top: -20px;
  left: 0;
  font-weight: 800;
  font-size: 75px;
  line-height: 80px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--border-info-color);
  z-index: -1;
}
.process-item .icon {
  width: 80px;
  height: 80px;
  line-height: 77px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.process-item .icon img {
  width: 50px;
  filter: brightness(0) invert(1);
}
.process-item .content {
  flex: 1;
  background: var(--color-white);
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 20px;
}
.process-item .content h4 {
  font-size: 20px;
  color: var(--color-dark);
}
.process-item .content p {
  color: var(--body-text-color);
  margin-top: 10px;
}

/*====================
41. Footer css
======================*/
.footer-area {
  background: #160648;
  position: relative;
  z-index: 1;
}
.footer-shape img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
}
@media all and (max-width: 991px) {
  .footer-wrap {
    padding-bottom: 0px;
  }
}
.footer-widget {
  position: relative;
}
@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}
.footer-widget-box.about-us {
  margin-right: 50px;
}
.footer-widget-box p {
  color: var(--color-white);
  padding-right: 18px;
  margin-bottom: 20px;
}
.footer-widget-title {
  color: var(--color-white);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 21px;
  z-index: 1;
}
.footer-widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 3px;
  background: #f7931e;
  border-radius: 50px;
}
.footer-logo img {
  width: 230px;
  margin-bottom: 20px;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-list li a {
  color: var(--color-white);
  transition: var(--transition);
  position: relative;
  margin-left: -20px;
}
@media all and (max-width: 1199px) {
  .footer-list li a {
    font-size: 14px;
  }
}
@media all and (max-width: 991px) {
  .footer-list li a {
    font-size: 16px;
  }
}
.footer-list li a:hover {
  margin-left: 0px;
  color: #f7931e;
}
.footer-list li a i {
  margin-right: 5px;
  opacity: 0;
  transition: var(--transition);
}
.footer-list li a:hover i {
  opacity: 1;
}
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}
@media all and (max-width: 767px) {
  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
}
.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: var(--color-white);
  color: #f7931e;
  transition: var(--transition);
}
.footer-social li a i:hover {
  background: #f7931e;
  color: var(--color-white);
}
.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  gap: 10px;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 12px;
}
.footer-contact .icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #f7931e;
  border-radius: 50px;
  text-align: center;
}
.footer-contact .content {
  flex: 1;
}
.footer-contact .content h5 {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 5px;
}
.footer-contact .content a {
  color: var(--color-white);
}
.footer-newsletter h4 {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 20px;
}
.footer-newsletter .newsletter-form .form-group {
  position: relative;
}
.footer-newsletter .newsletter-form .form-icon > i {
  top: 21px;
  left: 15px;
  color: var(--theme-color);
}
.footer-newsletter .newsletter-form .form-control {
  padding: 16px 140px 16px 45px;
  border-radius: 15px;
  box-shadow: none;
}
.footer-newsletter .newsletter-form .form-control:focus {
  outline: 2px solid var(--theme-color);
}
.footer-newsletter .newsletter-form .theme-btn {
  position: absolute;
  right: 5px;
  bottom: 5px;
  border-radius: 50px;
  padding: 5px 15px;
}
.footer-newsletter .newsletter-form .theme-btn span {
  margin-right: 0;
  margin-left: 5px;
}
.footer-payment h4 {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 18px;
}
.footer-payment .payment-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
@media all and (max-width: 1199px) {
  .footer-payment .payment-wrap {
    gap: 25px;
  }
}
@media all and (max-width: 767px) {
  .footer-payment .payment-wrap {
    gap: 15px;
  }
}
.footer-payment .payment-wrap .payment-img {
  width: 80px;
  height: 45px;
  background: var(--color-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-payment .payment-wrap .payment-img img {
  width: 60px;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid var(--border-white-color);
}
.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}
@media all and (max-width: 991px) {
  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }
}
.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}
@media all and (max-width: 991px) {
  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}
.copyright .footer-menu li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}
.copyright .footer-menu li a:hover {
  color: var(--theme-color);
}
.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}
.copyright .copyright-text a {
  color: #f7931e;
  font-weight: 500;
}

/* footer area 2 */
.footer-area.fta-2 .footer-shape img {
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
}
.footer-area.fta-2 .footer-widget-title::before {
  background: #f7931e;
}
.footer-area.fta-2 .footer-contact .icon {
  background: var(--gradient2);
}
.footer-area.fta-2 .footer-newsletter .newsletter-form .form-icon > i {
  color: var(--color-white);
}
.footer-area.fta-2 .footer-newsletter .newsletter-form .form-control:focus {
  border-bottom-color: #f7931e;
}
.footer-area.fta-2 .footer-newsletter .newsletter-form .theme-btn {
  background: var(--gradient2);
}
.footer-area.fta-2 .footer-newsletter .newsletter-form .theme-btn:hover {
  color: #f7931e;
}
.footer-area.fta-2 .footer-list li a:hover {
  color: #f7931e;
}
.footer-area.fta-2 .footer-social li a i {
  color: #f7931e;
}
.footer-area.fta-2 .footer-social li a i:hover {
  background: #f7931e;
  color: var(--color-white);
}
.footer-area.fta-2 .copyright .copyright-text a {
  color: #f7931e;
}

/* footer light */
.footer-area.light {
  background: var(--color-white);
}
.footer-area.light .footer-widget-title {
  color: var(--color-dark);
  font-weight: 800;
}
.footer-area.light .footer-widget-box p {
  color: var(--color-dark);
}
.footer-area.light .footer-newsletter h6 {
  color: var(--color-dark);
  font-weight: 700;
}
.footer-area.light .newsletter-form .form-control {
  color: var(--color-dark);
  border-bottom: 1.5px solid var(--color-dark);
}
.footer-area.light .newsletter-form .form-control::-moz-placeholder {
  color: var(--color-dark);
}
.footer-area.light .newsletter-form .form-control::placeholder {
  color: var(--color-dark);
}
.footer-area.light .newsletter-form .form-control:focus {
  border-bottom-color: var(--theme-color);
}
.footer-area.light .footer-list li a {
  color: var(--color-dark);
}
.footer-area.light .footer-list li a:hover {
  color: var(--theme-color);
}
.footer-area.light .footer-contact .content h6 {
  color: var(--color-dark);
  font-weight: 700;
}
.footer-area.light .footer-contact .content a {
  color: var(--color-dark);
}
.footer-area.light .footer-social li a i {
  background: var(--theme-color);
  color: var(--color-white);
}
.footer-area.light .footer-social li a i:hover {
  background: var(--theme-color);
}
.footer-area.light .copyright {
  border-top-color: var(--border-info-color);
}
.footer-area.light .copyright .copyright-text {
  color: var(--color-dark);
}

.footer-2 .copyright {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px 14px;
}
.footer-2 .footer-payment h4 {
  margin-bottom: 20px;
}
.footer-2 .footer-payment .payment-wrap {
  gap: 8px;
}
.footer-2 .footer-payment .payment-wrap .payment-img {
  width: 60px;
  height: 36px;
  border-radius: 7px;
}
.footer-2 .footer-payment .payment-wrap .payment-img img {
  width: 45px;
}

/*==========================
42. Service css 
============================*/
.service-item {
  position: relative;
  padding: 30px;
  background: var(--color-white);
  border-radius: 30px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.service-item:hover {
  transform: translateY(-5px);
}
.service-item .count {
  position: absolute;
  top: 0px;
  right: 30px;
  font-weight: 800;
  font-size: 80px;
  color: transparent;
  background: linear-gradient(180deg, var(--theme-color) 0%, transparent 70%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.3;
}
.service-icon {
  margin-bottom: 30px;
}
.service-icon img {
  width: 90px !important;
}
.service-content h4 a {
  color: var(--color-dark);
}
.service-content h4 a:hover {
  color: var(--theme-color);
}
.service-content p {
  color: var(--body-text-color);
  margin-top: 10px;
  margin-bottom: 20px;
}
.service-content .theme-btn {
  padding: 6px 20px;
}
.service-img {
  margin-top: 30px;
  overflow: hidden;
  border-radius: 15px;
}
.service-img img {
  border-radius: 15px;
}
.service-item:hover .service-img img {
  transform: scale(1.1);
}
.service-custom {
  background: #f7931e;
  border-radius: 30px;
  padding: 30px;
}
.service-custom .info h4 {
  color: var(--color-white);
  font-size: 28px;
}
.service-custom .info p {
  color: var(--color-white);
  margin-top: 20px;
  margin-bottom: 25px;
}

/* service-slider */
.service-slider .service-item {
  box-shadow: none;
  transform: unset;
}
.service-slider .owl-nav {
  margin-top: 0px;
}
@media all and (max-width: 1199px) {
  .service-slider .owl-nav {
    display: none;
  }
}
.service-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: var(--transition);
}
.service-slider .owl-nav button i {
  display: inline-block;
  height: 42px;
  width: 42px;
  line-height: 42px;
  color: var(--color-white);
  font-size: 25px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.service-slider .owl-nav button:hover i {
  background: var(--theme-color);
  color: var(--color-white);
}
.service-slider .owl-nav .owl-prev {
  left: -20px;
}
.service-slider .owl-nav .owl-next {
  right: -20px;
}

/* ======================
43. Service single
====================== */
.service-sidebar .widget {
  background: var(--color-white);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.service-sidebar .widget .title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.service-sidebar .widget .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background: var(--theme-color);
  border-radius: 50px;
}
.service-sidebar .widget .category a {
  display: block;
  font-size: 16px;
  color: var(--color-dark);
  font-weight: 500;
  padding-bottom: 7px;
  margin-bottom: 7px;
  border-bottom: 1px solid var(--border-info-color);
}
.service-sidebar .widget .category a:hover {
  color: var(--theme-color);
  padding-left: 5px;
}
.service-sidebar .widget .category a i {
  margin-right: 5px;
}
.service-sidebar .widget .category a:last-child {
  padding: 0;
  margin: 0;
  border-bottom: none;
}
.service-sidebar .widget .service-download a {
  display: block;
  color: var(--color-dark);
  font-weight: 500;
  border: 2px solid var(--theme-color);
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 50px;
  transition: var(--transition);
}
.service-sidebar .widget .service-download a:last-child {
  margin-bottom: 0;
}
.service-sidebar .widget .service-download a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}
.service-sidebar .widget .service-download a i {
  margin-right: 10px;
}

.service-details img {
  border-radius: 30px;
}
.service-details .content h3 {
  color: var(--color-dark);
}
.service-details .content .list li {
  font-weight: 500;
  color: var(--color-dark);
  margin-top: 5px;
}
.service-details .content .list li i {
  color: var(--theme-color);
  margin-right: 10px;
}

/*====================
44. Car type css
======================*/
.car-type-item {
  background: var(--color-white);
  border-radius: 20px;
  text-align: center;
  width: 100%;
  position: relative;
  padding: 10px 10px 25px 10px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.car-type-item::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--theme-color);
  border-radius: 50px;
  transition: var(--transition);
}
.car-type-item:hover::before {
  width: 80px;
}
.car-type-item:hover {
  transform: scale(1.02);
}
.car-type-item .content .icon {
  width: 100px;
  margin: auto;
}
.car-type-item .content .icon img {
  width: 100%;
}
.car-type-item .content .info h4 {
  color: var(--color-dark);
  font-size: 16px;
  margin-bottom: 4px;
  transition: var(--transition);
}
.car-type-item .content .info p {
  color: var(--theme-color);
  font-size: 14px;
  font-weight: 500;
}
.car-type-item:hover .info h6 {
  color: var(--theme-color);
}
.car-type-area.bg .car-type-item {
  box-shadow: none;
}

/* cartype-slider */
.cartype-slider .car-type-item {
  margin: 2px;
}
.cartype-slider .car-type-item .content {
  box-shadow: none;
}
.cartype-slider .car-type-item .content .icon img {
  display: unset;
}
.cartype-slider .car-type-item:hover {
  transform: none;
}
.cartype-slider .owl-nav button {
  position: absolute;
  background: var(--theme-color) !important;
  color: var(--color-white) !important;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 20px !important;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%);
}
.cartype-slider .owl-nav button:hover {
  background: var(--theme-color) !important;
}
.cartype-slider .owl-prev {
  left: -16px;
}
@media all and (max-width: 767px) {
  .cartype-slider .owl-prev {
    left: -10px;
  }
}
.cartype-slider .owl-next {
  right: -16px;
}
@media all and (max-width: 767px) {
  .cartype-slider .owl-next {
    right: -10px;
  }
}

/*====================
45. Car css
======================*/
.car-area .car-item {
  background: var(--color-white);
  padding: 15px 20px 15px 20px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}
.car-area .car-img {
  margin: 10px 0;
}
.car-area .car-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.car-area .car-top .type {
  background: var(--color-skyblue);
  color: var(--color-white);
  border-radius: 50px;
  padding: 5px 10px;
  line-height: 1;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.car-area .car-top .favorite-btn {
  width: 32px;
  height: 32px;
  line-height: 33px;
  background: #f7931e;
  color: var(--color-white);
  text-align: center;
  border-radius: 50px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.car-area .car-top .favorite-btn:hover {
  background: var(--theme-color);
}
.car-area .car-content h4 a {
  font-size: 17px;
  color: var(--color-dark);
}
.car-area .car-content h4 a:hover {
  color: var(--theme-color);
}
.car-area .car-content .info-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
}
.car-area .car-content .info-list li {
  color: var(--body-text-color);
  margin: 2px 0;
}
.car-area .car-content .info-list li i {
  color: var(--theme-color);
  width: 25px;
}
.car-area .car-rate {
  font-size: 15px;
  color: var(--body-text-color);
  margin-top: 5px;
}
.car-area .car-rate i {
  color: var(--color-yellow);
}
.car-area .car-rate span {
  font-size: 14px;
}
.car-area .car-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-info-color);
  margin-top: 10px;
  padding-top: 10px;
}
.car-area .car-bottom .theme-btn {
  padding: 2px 13px;
}
.car-area .car-bottom .theme-btn i {
  margin-left: 4px;
}
.car-area .car-price {
  font-weight: 500;
  font-size: 20px;
  color: var(--color-red);
}
.car-area .car-price sub {
  color: var(--body-text-color);
  font-size: 13px;
  bottom: 0;
}
.car-area.car-border .car-item {
  box-shadow: none;
  border: 1px solid var(--border-info-color);
}
.car-area.car-bg .car-item {
  box-shadow: none;
  background: rgb(from var(--theme-color) r g b/0.05);
}

/* car slider */
.car-slider .owl-nav button {
  position: absolute;
  background: var(--theme-color) !important;
  color: var(--color-white) !important;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 20px !important;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%);
}
.car-slider .owl-nav button:hover {
  background: var(--theme-color) !important;
}
.car-slider .owl-prev {
  left: -16px;
}
@media all and (max-width: 767px) {
  .car-slider .owl-prev {
    left: -10px;
  }
}
.car-slider .owl-next {
  right: -16px;
}
@media all and (max-width: 767px) {
  .car-slider .owl-next {
    right: -10px;
  }
}

/* car city */
.car-city {
  position: relative;
}
.car-city .site-heading.light .site-title-tagline {
  background: var(--color-white);
  color: var(--theme-color);
}
.car-city .site-heading.light .site-title-tagline i {
  background: var(--theme-color);
  color: var(--color-white);
}
.car-city .site-heading.light .site-title {
  color: var(--color-white);
}
.car-city .site-heading.light .heading-divider {
  border-bottom-color: var(--color-white);
}
.car-city .site-heading.light .heading-divider::after {
  background-color: var(--theme-color);
}
.car-city .city-shape {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--theme-color);
  width: 100%;
  height: 420px;
}
.car-city .city-shape::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../../image/catalog/city-shape.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.6;
}
.car-city .city-item {
  position: relative;
}
.car-city .city-img {
  position: relative;
}
.car-city .city-img img {
  border-radius: 20px;
}
.car-city .city-img .theme-btn2 {
  position: absolute;
  right: 15px;
  bottom: -15px;
  writing-mode: sideways-lr;
  padding: 14px 4px;
  border: 3px solid var(--color-white);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 3px;
}
.car-city .city-item:hover .city-img .theme-btn2 {
  bottom: 15px;
}
.car-city .city-content {
  margin-top: 15px;
}
.car-city .city-content h4{
    font-weight: 600;
}
.car-city .city-content h4 a {
  color: var(--color-dark);
  font-size: 19px;
  font-weight: 600;
}
.car-city .city-content h4 a:hover {
  color: var(--theme-color);
}
.car-city .city-content span {
  color: var(--theme-color);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding-left: 40px;
}
.car-city .city-content span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 30px;
  border-bottom: 2px solid var(--theme-color);
}

.city-slider.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  line-height: 30px;
  background: #f7931e;
  color: var(--color-white);
  font-size: 25px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  transform: translateY(-50%);
  margin-top: -35px;
  border: 4px solid var(--color-white);
}
.city-slider.owl-carousel .owl-nav .owl-prev {
  left: -22px;
}
@media all and (max-width: 767px) {
  .city-slider.owl-carousel .owl-nav .owl-prev {
    left: -10px;
  }
}
.city-slider.owl-carousel .owl-nav .owl-next {
  right: -22px;
}
@media all and (max-width: 767px) {
  .city-slider.owl-carousel .owl-nav .owl-next {
    right: -10px;
  }
}

/* car destination */
.car-destination .destination-item {
  background: var(--color-white);
  padding: 15px 15px 15px 20px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.car-destination .destination-item::before {
  content: "";
  position: absolute;
  right: 20%;
  top: 50%;
  width: 100px;
  height: 100px;
  border: 15px solid var(--theme-color);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.15;
  z-index: -1;
}
.car-destination .destination-item .content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.car-destination .destination-item .content span {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 18px;
}
.car-destination .destination-item .content i {
  color: var(--color-dark);
}
.car-destination .destination-item .theme-btn {
  padding: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50px;
}
.car-destination .destination-item .theme-btn i {
  margin-left: 0;
}

/* car sidebar */
.car-sidebar .widget {
  background: var(--color-white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.car-sidebar .widget .title {
  margin-bottom: 25px;
}
.car-sidebar .search-form .form-group {
  position: relative;
}
.car-sidebar .search-form .form-group .form-control {
  padding-right: 50px;
}
.car-sidebar .search-form .form-group button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background: transparent;
  border: none;
  border-radius: 15px;
  color: var(--theme-color);
}
.car-sidebar .form-check {
  margin-bottom: 10px;
}
.car-sidebar .rating .form-check label i {
  color: var(--color-yellow);
}

/* car sort */
.car-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  background: var(--color-white);
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  padding: 5px 5px 5px 20px;
  border-radius: 15px;
}
@media all and (max-width: 767px) {
  .car-sort {
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px;
  }
}
.car-sort .car-showing {
  color: var(--body-text-color);
}
.car-sort .ss-main {
  min-height: 45px;
  margin-bottom: 0;
}

/* car area list */
.car-area.list .car-item {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media all and (max-width: 767px) {
  .car-area.list .car-item {
    gap: 20px;
  }
}
.car-area.list .car-item .car-tag {
  right: unset;
  left: 0;
}
.car-area.list .car-img img {
  width: 260px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 767px) {
  .car-area.list .car-img img {
    width: 100%;
    height: auto;
  }
}
.car-area.list .car-content {
  flex: 1;
  padding-top: 0;
}

/* car single css */
.car-single-wrap {
  position: relative;
}
.car-single-widget {
  background: var(--color-white);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 25px;
}
.car-single-widget h4 {
  color: var(--color-dark);
  font-size: 20px;
}
.car-single-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}
.car-single-top .type {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  padding: 5px 18px;
  background: var(--color-skyblue);
  border-radius: 50px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.car-single-top .title {
  color: var(--color-dark);
  margin-bottom: 10px;
}
.car-single-top .meta li {
  display: inline-block;
  margin-right: 15px;
}
.car-single-top .meta li i {
  color: var(--theme-color);
}
.car-single-top .meta li .rate {
  background: var(--color-yellow);
  color: var(--color-white);
  font-weight: 500;
  font-size: 14px;
  border-radius: 50px;
  padding: 4px 8px;
  margin-right: 2px;
}
.car-single-top .meta li .rate i {
  color: var(--color-white);
}

.car-key-info .car-key-item {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}
.car-key-info .car-key-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  color: var(--color-white);
  font-size: 18px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50px;
  margin-top: 5px;
}
.car-key-info .car-key-content span {
  color: var(--body-text-color);
}
.car-key-info .car-key-content h4 {
  color: var(--color-dark);
  font-size: 15px;
}

.car-single-list li {
  margin: 8px 0;
}
.car-single-list li i {
  color: var(--theme-color);
  margin-right: 5px;
}

.car-single-map iframe {
  height: 300px;
  border-radius: 10px;
}

.car-single-price {
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 15px;
}

.car-single-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.car-single-author img {
  border-radius: 50%;
  width: 100px;
}
.car-single-author-content h4 {
  color: var(--color-dark);
  font-size: 18px;
}
.car-single-author-content span {
  color: var(--theme-color);
  font-weight: 500;
}
.car-single-author-social {
  margin-top: 7px;
  padding-top: 6px;
  border-top: 1px solid var(--border-info-color);
}
.car-single-author-social a {
  margin-right: 9px;
  font-size: 17px;
}
.car-single-author-social a:hover {
  color: var(--theme-color);
}

.car-single-slider .item img {
  border-radius: 20px;
}
.car-single-slider.owl-carousel .owl-nav button {
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: var(--color-white);
  font-size: 25px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.car-single-slider.owl-carousel .owl-nav .owl-prev:hover, .car-single-slider.owl-carousel .owl-nav .owl-next:hover {
  background: var(--color-white);
  color: var(--theme-color);
}
.car-single-slider.owl-carousel .owl-nav .owl-prev {
  left: 20px;
}
.car-single-slider.owl-carousel .owl-nav .owl-next {
  right: 20px;
}

.car-single-dots {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.car-single-dots img {
  width: 23%;
  border-radius: 15px;
  cursor: pointer;
}

/*====================
46. Download css
======================*/
.download-wrap {
  border-radius: 50px;
  overflow: hidden;
  background: rgba(21, 212, 201, 0.08);
  position: relative;
}
.download-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../../image/catalog/download-app-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.25;
  z-index: -1;
}
.download-content {
  padding: 30px;
}
@media all and (max-width: 767px) {
  .download-content {
    padding: 40px 20px;
  }
}
@media all and (min-width: 992px) and (max-width: 1199px) {
  .download-content .site-heading .site-title {
    font-size: 35px;
  }
}
@media all and (min-width: 992px) and (max-width: 1199px) {
  .download-content .site-heading p {
    display: none;
  }
}
.download-btn {
  display: flex;
  gap: 14px;
}
.download-btn a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 13px 13px 10px;
  width: 150px;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.download-btn a i {
  font-size: 32px;
}
.download-btn a.app-store {
  background: #f7931e;
}
.download-btn .content {
  display: flex;
  flex-direction: column;
}
.download-btn .content span {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}
.download-btn .content h5 {
  color: var(--color-white);
  font-family: var(--body-font);
  font-size: 15px;
  margin-top: 5px;
  line-height: 1;
}

/*====================
47. Mail success css
======================*/
.mail-success {
  position: relative;
}
.mail-success-content {
  background: var(--color-white);
  padding: 50px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.mail-success-content h3 {
  text-transform: capitalize;
  color: var(--color-dark);
}
.mail-success-content p {
  color: var(--body-text-color);
  margin-top: 15px;
  margin-bottom: 30px;
}
.mail-success-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 35px;
  color: var(--color-white);
  background: var(--theme-color);
  margin: 0 auto;
  border-radius: 50px;
  margin-bottom: 20px;
}

/*====================
48. Gallery css
======================*/
.gallery-item {
  position: relative;
  width: 100%;
}
.gallery-img {
  height: 100%;
}
.gallery-img img {
  width: 100%;
  border-radius: 40px;
}
.gallery-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gallery-content::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background: var(--theme-color);
  border-radius: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.gallery-content:hover::before {
  opacity: 0.9;
  visibility: visible;
}
.gallery-content:hover .gallery-link {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.gallery-link {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.5s;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  font-size: 50px;
  color: var(--color-white);
}
.gallery-link:hover {
  color: var(--color-white);
}

/*====================
49. Help css 
======================*/
.help-area {
  position: relative;
}
.help-search {
  text-align: center;
  margin-bottom: 60px;
}
.help-search h3 {
  margin-bottom: 5px;
}
.help-search-form {
  margin-top: 20px;
}
.help-search-form .form-group {
  position: relative;
}
.help-search-form .form-group button {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 10px 15px 6px 15px;
  background: transparent;
  border: none;
  color: var(--body-text-color);
}
.help-search-form .form-control {
  padding: 12px 50px 12px 20px;
  border-radius: 12px;
  box-shadow: none;
}
.help-search-form .form-control:focus {
  border-color: var(--theme-color);
}
.help-search-keyword {
  text-align: left;
  margin-top: 5px;
}
.help-search-keyword span {
  color: var(--color-dark);
  font-weight: 500;
}
.help-search-keyword a {
  color: var(--body-text-color);
}
.help-search-keyword a:hover {
  color: var(--theme-color);
}
.help-item {
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid var(--border-info-color);
  border-radius: 25px;
  padding: 30px;
}
.help-item .theme-btn {
  border-radius: 50px;
  padding: 6px 20px;
  margin-top: 25px;
}
.help-icon i {
  font-size: 45px;
  font-weight: 300;
  color: var(--theme-color);
}
.help-content h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 20px;
}
.help-bottom {
  text-align: center;
  margin-top: 30px;
}
.help-bottom p {
  margin-top: 5px;
  margin-bottom: 20px;
}

/*====================
50. Booking css 
======================*/
/* booking-form */
.booking-form {
  position: relative;
  z-index: 1;
}
.booking-form.ng-mt {
  margin-top: -100px;
}
@media all and (max-width: 1199px) {
  .booking-form.ng-mt {
    margin-top: -50px;
  }
}
.booking-form-wrap {
  background: #ffffff;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  padding: 18px 25px 25px 25px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.booking-form-wrap .shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 50px solid var(--theme-color);
  border-radius: 50%;
  opacity: 0.08;
}
.booking-form-wrap .title {
  color: var(--color-dark);
  margin-bottom: 15px;
}
.booking-form-wrap .ss-main,
.booking-form-wrap .form-group {
  margin-bottom: 0;
}
.booking-form-wrap .theme-btn {
  width: 100%;
}

/* book-ride */
.book-ride .booking-form {
  padding: 40px;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.book-ride .booking-form .form-check-label a {
  color: var(--theme-color);
}
.book-ride .book-ride-head {
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-info-color);
}
.book-ride .book-ride-head .title {
  color: var(--color-dark);
  font-size: 30px;
  margin-bottom: 10px;
}
.book-ride .book-ride-head p {
  color: var(--body-text-color);
}

/* car booking */
.car-booking-sidebar {
  padding: 20px 20px 30px 20px;
  border-radius: 20px;
  background: var(--color-white);
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.car-booking-sidebar .title {
  color: var(--color-dark);
  margin-bottom: 20px;
}
.car-booking-sidebar .car-booking-form .form-group:last-child {
  margin-bottom: 0;
}
.car-booking-sidebar .car-booking-form .form-group:last-child .ss-main {
  margin-bottom: 0;
}
.car-booking-selected .img {
  background: #f6f6f6;
  border-radius: 15px;
  padding: 20px;
}
.car-booking-selected h4 {
  color: var(--color-dark);
  margin-bottom: 4px;
}
.car-booking-selected .info {
  margin: 20px 0 20px 0;
}
.car-booking-selected .car-price {
  font-size: 20px;
  font-weight: 500;
  color: var(--theme-color);
}
.car-booking-selected .car-price sub {
  font-size: 14px;
  bottom: 0;
  font-weight: 400;
  color: var(--body-text-color);
}

.car-booking-info {
  padding: 20px 30px 30px 30px;
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.car-booking-info .title {
  color: var(--color-dark);
  margin-bottom: 20px;
}

.car-booking-extra h4 {
  color: var(--color-dark);
  font-size: 18px;
  margin: 15px 0 20px 0;
}
.car-booking-extra .form-check {
  margin-bottom: 12px;
}

.car-booking-list {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.car-booking-list h4 {
  color: var(--color-dark);
  font-size: 16px;
  margin-bottom: 10px;
}
.car-booking-list li {
  margin: 8px 0;
}
.car-booking-list li span {
  float: right;
}
.car-booking-list.booking-total li {
  color: var(--color-dark);
  font-weight: 600;
}
.car-booking-list.booking-total li span {
  color: var(--theme-color);
}

/* booking confirm */
.booking-confirm-content {
  padding: 50px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.booking-confirm-content i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 35px;
  border-radius: 50px;
  text-align: center;
}
.booking-confirm-content h3 {
  color: var(--color-dark);
  margin-top: 20px;
}
.booking-confirm-content p {
  color: var(--body-text-color);
  margin: 15px 0;
}
.booking-confirm-content .theme-btn {
  margin-top: 15px;
}

.booking-summary {
  padding: 50px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.booking-summary-content {
  padding: 80px 0;
}
.booking-summary-list {
  text-align: left;
}
.booking-summary-list h4 {
  color: var(--color-dark);
  font-size: 16px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.booking-summary-list li span {
  float: right;
}

/* ===================
51. Account css 
====================== */
.account-profile a img {
  border: 2px solid var(--theme-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  padding: 2px;
}

/* user sidebar */
.user-sidebar {
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.user-sidebar .sidebar-top {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-info-color);
}
.user-sidebar .sidebar-top .profile-img {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  border-radius: 50px;
  padding: 4px;
  border: 3px solid var(--theme-color);
}
.user-sidebar .sidebar-top .profile-img img {
  border-radius: 50%;
}
.user-sidebar .sidebar-top .profile-img-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  line-height: 28px;
  border-radius: 50px;
  background: var(--theme-color);
  color: var(--color-white);
  text-align: center;
  border: none;
}
.user-sidebar .sidebar-top .profile-img-file {
  display: none;
}
.user-sidebar .sidebar-top h4 {
  font-size: 18px;
  color: var(--color-dark);
}
.user-sidebar .sidebar-top p {
  color: var(--body-text-color);
}
.user-sidebar .sidebar-list li {
  margin: 5px 0;
}
.user-sidebar .sidebar-list li a {
  display: block;
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 15px;
  transition: var(--transition);
}
.user-sidebar .sidebar-list li a:hover {
  color: var(--theme-color);
}
.user-sidebar .sidebar-list li a .icon {
  color: var(--theme-color);
  width: 24px;
}
.user-sidebar .sidebar-list li a .um-angle {
  float: right;
  margin-top: 6px;
}
.user-sidebar .sidebar-list li a.active {
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 10px;
}
.user-sidebar .sidebar-list li a.active i {
  color: var(--color-white);
}
.user-sidebar .sidebar-list li a span {
  float: right;
  line-height: 1;
  padding: 3px 6px;
  border-radius: 10px;
  margin-top: 3.7px;
}
.user-sidebar .sidebar-menu-list {
  border: 1px solid var(--border-info-color);
  border-radius: 12px;
  margin: 0 15px;
  padding: 5px 10px;
}
.user-sidebar .sidebar-menu-list li a {
  position: relative;
  font-size: 14px;
}
.user-sidebar .sidebar-menu-list li a::before {
  content: "\e122";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  left: 4px;
  top: 12px;
  color: var(--theme-color);
  font-size: 8px;
  font-weight: bold;
}

/* user badge */
.user-account .badge {
  border-radius: 50px;
  padding: 5px 12px;
  letter-spacing: 0.2px;
}
.user-account .badge-success {
  background: rgb(from var(--color-green) r g b/0.08);
  color: var(--color-green);
}
.user-account .badge-info {
  background: rgb(from var(--color-purple) r g b/0.08);
  color: var(--color-purple);
}
.user-account .badge-primary {
  background: rgb(from var(--color-skyblue) r g b/0.08);
  color: var(--color-skyblue);
}
.user-account .badge-danger {
  background: rgb(from var(--color-red) r g b/0.08);
  color: var(--color-red);
}

/* user card */
.user-card {
  background: var(--color-white);
  padding: 15px 20px 20px 20px;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
.user-card .title {
  color: var(--color-dark);
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-info-color);
}
.user-card .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-info-color);
}
@media all and (max-width: 767px) {
  .user-card .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.user-card .header .title {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}
.user-card .header .theme-btn {
  padding: 4px 12px;
  font-size: 15px;
}
.user-card .header .right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media all and (max-width: 767px) {
  .user-card .header .right {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.user-card .header .search .form-group {
  position: relative;
  margin-bottom: 0;
}
.user-card .header .search .form-control {
  padding: 10px 20px 10px 35px;
  border-radius: 10px;
  color: var(--color-dark);
}
.user-card .header .search i {
  position: absolute;
  left: 12px;
  top: 15px;
}
.user-card .header .filter .ss-main {
  margin-bottom: 0;
  min-width: 150px;
  min-height: 47px;
}
.user-card h5 {
  font-size: 16px;
  color: var(--color-dark);
}

/* user widget */
.user-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
  border-radius: 20px;
  margin: 10px 0;
  background: rgb(from var(--theme-color) r g b/0.08);
  color: var(--theme-color);
}
.user-widget .info span {
  font-weight: 500;
}
.user-widget .info h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--theme-color);
}
.user-widget .icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 50px;
  background: var(--theme-color);
  color: var(--color-white);
}
.user-widget.c1 {
  background: rgb(from var(--color-skyblue) r g b/0.08);
  color: var(--color-skyblue);
}
.user-widget.c1 h3 {
  color: var(--color-skyblue);
}
.user-widget.c1 .icon {
  background: var(--color-skyblue);
}
.user-widget.c2 {
  background: rgb(from var(--color-green) r g b/0.08);
  color: var(--color-green);
}
.user-widget.c2 h3 {
  color: var(--color-green);
}
.user-widget.c2 .icon {
  background: var(--color-green);
}
.user-widget.c3 {
  background: rgb(from var(--color-red) r g b/0.08);
  color: var(--color-red);
}
.user-widget.c3 h3 {
  color: var(--color-red);
}
.user-widget.c3 .icon {
  background: var(--color-red);
}

/* user form */
.user-form .form-img-upload {
  width: 100%;
  height: 140px;
  border: 2px dashed var(--border-info-color);
  border-radius: 10px;
  cursor: pointer;
}
.user-form .form-img-file {
  display: none;
}
.user-form .form-img-upload span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.user-form .form-img-upload span i {
  margin-right: 5px;
}
.user-form .form-check label a {
  color: var(--theme-color);
}
.user-form .course-single-tab .course-curriculum .accordion-item {
  box-shadow: none;
  border: 1px solid var(--border-info-color);
}
.user-form .course-single-tab .course-curriculum .accordion-item .accordion-body .topic-btn .theme-btn {
  padding: 4px 12px;
  font-size: 15px;
}

/* user table */
.user-table .table {
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-bottom: 0;
}
.user-table .table > :not(caption) > * > * {
  vertical-align: middle;
  padding: 0.6rem 1rem;
}
.user-table .table th {
  color: var(--color-dark);
}
.user-table .table tr {
  background: rgb(from var(--theme-color) r g b/0.04);
  margin-bottom: 10px;
}
.user-table .table td {
  background: unset;
  color: var(--color-dark);
}
.user-table .table td:first-child {
  border-left-style: solid;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.user-table .table td:last-child {
  border-right-style: solid;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.user-table .table .content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media all and (max-width: 767px) {
  .user-table .table .content {
    display: block;
  }
}
.user-table .table .content h4 {
  font-size: 15px;
  margin-bottom: 5px;
}
@media all and (max-width: 767px) {
  .user-table .table .content h4 {
    margin-top: 10px;
  }
}
.user-table .table .content h4 a {
  color: var(--color-dark);
}
.user-table .table .content h4 a:hover {
  color: var(--theme-color);
}
.user-table .table .content p {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 14px;
}
.user-table .table .content span {
  color: var(--color-dark);
}
.user-table .table .info:hover h6 {
  color: var(--theme-color);
}
.user-table .table .info span {
  font-size: 15px;
}
.user-table .table .info .more-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.user-table .table .info .more-info span {
  font-size: 14px;
}
.user-table .table .info .more-info span i {
  margin-right: 5px;
  color: var(--theme-color);
}
.user-table .table .img {
  flex-shrink: 0;
}
.user-table .table .img img {
  width: 80px;
  border-radius: 8px;
}
.user-table .table .title,
.user-table .table .code {
  color: var(--theme-color);
  font-weight: 500;
}
.user-table .table .action-btn {
  border: none;
  padding: 3px 9px;
  border-radius: 8px;
  background: rgb(from var(--theme-color) r g b/0.05);
  color: var(--theme-color);
  font-size: 14px;
  transition: var(--transition);
}
.user-table .table .action-btn:hover {
  background: var(--theme-color);
  color: var(--color-white);
}
.user-table .table .action-icon-btn {
  border: none;
  background: rgb(from var(--theme-color) r g b/0.08);
  width: 32px;
  height: 30px;
  line-height: 30px;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  color: var(--theme-color);
  transition: var(--transition);
}
.user-table .table .action-icon-btn:hover {
  background: var(--theme-color);
  color: var(--color-white);
}
.user-table .table .action-icon-btn.btn-success {
  background: rgb(from var(--color-green) r g b/0.08);
  color: var(--color-green);
}
.user-table .table .action-icon-btn.btn-danger {
  background: rgb(from var(--color-red) r g b/0.08);
  color: var(--color-red);
}
.user-table .table .dropdown-menu {
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  padding: 10px;
}
.user-table .table .dropdown-menu .dropdown-item {
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  color: var(--color-dark);
}
.user-table .table .dropdown-menu .dropdown-item:hover {
  background: var(--theme-color);
  color: var(--color-white);
}
.user-table .table .dropdown-menu .dropdown-item i {
  width: 23px;
  color: var(--theme-color);
}
.user-table .table .dropdown-menu .dropdown-item:hover i {
  color: var(--color-white);
}
.user-table .table .action-dropdown .action-icon-btn {
  line-height: 29px;
}

/*====================
52. Newsletter css
======================*/
.newsletter-area {
  position: relative;
  margin-bottom: -50px;
  z-index: 2;
}
.newsletter-wrap {
  background: #f7931e;
  padding: 25px 25px 25px 30px;
  border-radius: 0 100px 100px 100px;
  border: 20px solid var(--color-white);
}
@media all and (max-width: 991px) {
  .newsletter-wrap {
    padding: 15px;
    border-radius: 0 50px 50px 50px;
  }
}
.newsletter-wrap.bg-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.newsletter-wrap.bg-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../image/catalog/newsletter-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}
.newsletter-wrap .newsletter-content h4 {
  color: var(--color-white);
}
.newsletter-wrap .newsletter-form .form-group {
  margin-bottom: 0;
}
.newsletter-wrap .newsletter-form .form-group .form-icon i {
  top: 22px;
}
.newsletter-wrap .newsletter-form .form-group .form-control {
  padding: 18px 135px 18px 45px;
  border-radius: 14px;
}
.newsletter-wrap .newsletter-form .form-group .theme-btn {
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 4px 15px;
}
.newsletter-wrap .newsletter-form .form-group .theme-btn span {
  margin-right: 0;
}

/*====================
53. Home css
======================*/
/*== Flatpickr css ==*/
.flatpickr-calendar {
  background: var(--color-white);
  border: 1px solid var(--border-info-color);
  border-radius: 10px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: var(--border-info-color);
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: var(--color-white);
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: var(--border-info-color);
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: var(--color-white);
}

.flatpickr-current-month {
  padding-top: 15px;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  left: 12px;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  right: 12px;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 18px;
  color: var(--color-dark);
  border-radius: 50px;
  top: 10px;
  padding: 0;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background: #f6f6f6;
  color: var(--theme-color);
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 400;
  border-radius: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.flatpickr-current-month input.cur-year {
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 400;
}

.flatpickr-current-month input.cur-year::-moz-selection {
  background: transparent;
  color: var(--theme-color);
}

.flatpickr-current-month input.cur-year::selection {
  background: transparent;
  color: var(--theme-color);
}

.numInputWrapper span:hover {
  background: 0 0 !important;
}

.numInputWrapper span.arrowUp:after {
  border-bottom-color: var(--theme-color) !important;
}

.numInputWrapper span.arrowDown:after {
  border-top-color: var(--theme-color) !important;
}

.numInputWrapper:hover {
  background: var(--color-white);
  border-radius: 5px;
}

.numInputWrapper span {
  border: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: var(--color-white);
}

.flatpickr-innerContainer {
  padding: 10px;
}

span.flatpickr-weekday {
  color: var(--theme-color);
}

.flatpickr-day {
  color: var(--body-text-color);
}

.dayContainer,
.flatpickr-days {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(112, 143, 172, 0.5);
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  background: #f6f6f6;
  border-color: #f6f6f6;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #f7931e;
  border: none;
}

.flatpickr-day.selected:hover {
  background: #f7931e;
}

.flatpickr-day.today {
  background: var(--theme-color);
  color: var(--color-white);
  border: none;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  background: var(--theme-color);
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: none;
}

.flatpickr-day.inRange {
  box-shadow: none;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  border-color: var(--border-info-color);
}

.flatpickr-time .numInputWrapper:hover {
  background-color: transparent !important;
}

.flatpickr-time input {
  color: var(--body-text-color);
}

.flatpickr-time input::-moz-selection {
  background: transparent;
  color: var(--theme-color);
}

.flatpickr-time input::selection {
  background: transparent;
  color: var(--theme-color);
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: transparent !important;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  color: var(--body-text-color);
}

/* header-2 */
@media all and (min-width: 992px) {
  .header-2 {
    background: var(--theme-color);
  }
  .header-2 .navbar {
    background: transparent;
  }
  .header-2 .navbar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: var(--color-white);
    width: 91%;
    height: 100%;
    border-radius: 0 50px 50px 0;
  }
  .header-2 .navbar.fixed-top {
    background: var(--color-white);
  }
}
@media all and (min-width: 1400px) and (max-width: 1499px) {
  .header-2 .navbar::before {
    width: 94%;
  }
}
@media all and (min-width: 992px) and (max-width: 1199px) {
  .header-2 .navbar::before {
    width: 98%;
  }
}
.hs-1-1 {
  position: relative;
}
@media all and (min-width: 992px) {
  .hs-1-1 {
    margin-top: -2.8rem;
  }
  .hs-1-1 .hero-single {
    padding-top: 150px;
    padding-bottom: 200px;
  }
}
.hs-1-1 .hero-shape {
  position: absolute;
  left: 0px;
  top: 40px;
  width: 13%;
  z-index: 2;
}
@media all and (max-width: 991px) {
  .hs-1-1 .hero-shape {
    top: 0px;
    width: 25%;
  }
}
@media all and (max-width: 767px) {
  .hs-1-1 .hero-shape {
    top: 0px;
    width: 40%;
  }
}
.hs-1-1 .hero-single .hero-content .hero-sub-title {
  font-size: 24px;
  letter-spacing: 4px;
}
.hs-1-1 .hero-single::before {
  background: rgba(3, 0, 52, 0.85);
}
.hs-1-1 .shape {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 41.5%;
  z-index: -1;
}
@media all and (max-width: 991px) {
  .hs-1-1 .shape {
    width: 70%;
  }
}
@media all and (max-width: 767px) {
  .hs-1-1 .shape {
    width: 90%;
  }
}
@media all and (max-width: 991px) {
  .hs-1-1 .hero-img {
    margin-top: 60px;
  }
}

.booking-form-wrap.bkf-w {
  border-radius: 20px 0 0 20px;
  margin-left: auto;
  width: 88.6%;
}
@media all and (max-width: 1199px) {
  .booking-form-wrap.bkf-w {
    width: 96%;
  }
}

/*== Home 2 css ==*/
.home-2 .footer-area {
  background: transparent;
}
.home-2 .footer-area .footer-shape img {
  opacity: 1;
}

/*== Home 3 css ==*/
.home-3 .footer-area .footer-shape img {
  opacity: 0.5;
  -o-object-fit: cover;
     object-fit: cover;
}

/*== Home 4 css ==*/
.home-4 .header-top {
  border-bottom: 4px solid var(--theme-color);
}
.home-4 .header-top::before {
  width: 55%;
  left: -30px;
  border-radius: 0;
  border: 0;
  transform: skew(-30deg);
  border-right: 5px solid var(--color-white);
}
.home-4 .header-top .header-top-right {
  padding-top: 4px;
}
.home-4 .hs-1 .hero-single {
  padding-top: 150px;
  padding-bottom: 120px;
}
@media all and (max-width: 991px) {
  .home-4 .hs-1 .hero-single {
    padding-top: 100px;
  }
}
.home-4 .hs-1 .hero-single .hero-content .hero-sub-title {
  background: #f7931e;
  color: var(--color-white);
  font-size: 24px;
  letter-spacing: 2px;
  padding: 4px 25px 4px 15px;
  clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0 0);
  font-weight: 300;
  border-radius: 50px 0 0 50px;
}
@media all and (max-width: 767px) {
  .home-4 .hs-1 .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }
}
.home-4 .hs-1 .hero-single .hero-content .hero-title span {
  color: var(--theme-color);
  -webkit-text-stroke: 1px var(--color-white);
}
@media all and (max-width: 767px) {
  .home-4 .hs-1 .hero-single .hero-content .hero-title {
    font-size: 50px;
  }
}
.home-4 .hs-1 .hero-single .booking-form {
  position: relative;
}
.home-4 .hs-1 .hero-single .booking-form-wrap {
  position: absolute;
}
@media all and (max-width: 991px) {
  .home-4 .hs-1 .hero-single .booking-form-wrap {
    position: relative;
    margin-top: 60px;
  }
}
@media all and (min-width: 992px) {
  .home-4 .header {
    background: var(--theme-color);
  }
  .home-4 .navbar {
    background: transparent;
  }
  .home-4 .navbar > .container {
    background: var(--color-white);
    border-radius: 20px;
    padding: 0 25px 0 20px;
  }
  .home-4 .navbar.fixed-top {
    background: var(--color-white);
  }
  .home-4 .hs-1 {
    margin-top: -2.8rem;
  }
}

.about-content .about-list {
    background: rgba(247, 147, 30, 0.05);
    padding: 15px 20px;
    border-radius: 15px;
}
.about-content .about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-dark);
    font-family: "Oxygen", sans-serif;
    margin-bottom: 5px;
}
.counter-box .icon {
    width: 100px;
    height: 100px;
    line-height: 82px;
    font-size: 35px;
    border-radius: 50px;
    text-align: center;
    color: var(--color-white);
    background: #f7931e;
    border: 4px solid var(--color-white);
}
.counter-box .icon img {
    width: 58px;
    filter: brightness(0) invert(1);
}
.counter-box .info {
    display: flex;
    justify-content: center;
    gap: 2px;
}
.counter-box .title {
    color: var(--color-white);
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: "Oxygen", sans-serif;
}
.counter-box .counter {
    display: block;
    line-height: 1;
    color: var(--color-white);
    font-size: 50px;
    font-weight: 900;
}
.counter-box .unit {
    font-size: 25px;
    color: #f7931e;
    font-weight: 500;
    line-height: 1;
    margin: 3px 0 0 3px;
}
.process-item .content {
    flex: 1;
    background: var(--color-white);
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 20px;
}
.process-item .count {
    position: absolute;
    top: -20px;
    left: 0;
    font-weight: 800;
    font-size: 75px;
    line-height: 80px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.08);
    z-index: -1;
}
.brand-thumb{
    width: 100%;
    background: #f6f6f6;
    border-radius: 15px;
    text-align: center;
    padding: 10px 10px 10px 10px;
}
.brand-area .brand-img {
    margin: 0 auto;
}
 .brand-content h4 {
    font-size: 17px;
    margin-bottom: 2px;
}
 .brand-content span {
    font-size: 14px;
    color: var(--theme-color);
    font-weight: 500;
}
.brand-content h4 a{
    font-size: 17px;
    margin-bottom: 2px;
    color: var(--theme-color);   
}
.car-destination .theme-btn i {
    margin-left: 0;
    transform: rotate(-40deg);
}
.car-destination .theme-btn:hover i {
  transform: rotate(0deg);
}
.btn-trans, .btn-trans:hover, .btn-trans:active, .btn:focus-visible{
    background: transparent !important;
    border-color: transparent !important;
    color:#030034;
}
.btn-trans i{
    font-size: 18px;
}
.theme-border-btn i, .theme-btn2 i, .theme-btn i {
    margin-left: 8px;
    transform: rotate(-40deg);
    transition: all .3s ease-in-out;
}
.theme-border-btn:hover i, .theme-btn2:hover i, .theme-btn:hover i {
    transform: rotate(0deg);
}
.container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1200px;
}
@media(max-width:767px){
    .hs-1 .hero-single .booking-form, .about-right{
        padding-top: 40px;
    }
    .pb-100 {
        padding-bottom: 40px;
    }
    .site-heading .site-title-tagline{
        font-size: 16px;
    }
    .site-heading .site-title{
        font-size: 35px;
    }
  .header-top-right {
    display: flex;
    gap: 15px;
    justify-content: start;
    text-align: left;
    z-index: 99;
    position: relative;
    margin-top: 8px;
  }
  .header-top-list{
    min-width: fit-content;
  }
  .header-seo-hidden-menu{
    display: none;
  }
  .header-sign-btn a.bd-btn.btn-primary{
    padding: 8px 12px;
    font-size: 14px;
  }
  .hs-1 .hero-single .booking-form-wrap{
    position: unset;
  }
  .hs-1 .hero-single .hero-content .hero-sub-title{
    font-size: 18px;
    letter-spacing: 0.5px;
    padding: 6px 25px 6px 15px;
  }
  .hs-1 .hero-single .hero-content .hero-title{
    font-size: 36px;
  }
  .hero-section .hero-single, .py-120{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .site-heading{
    margin-bottom: 30px;
  }
  .footer-area{
    padding-top: 40px;
  }
}
@media(min-width:768px) and (max-width:991px){
    .hs-1 .hero-single .booking-form, .about-right{
        padding-top: 60px;
    }
   .hs-1 .hero-single .hero-content .hero-sub-title{
    font-size: 22px;
    letter-spacing:1px;
    padding: 6px 25px 6px 15px;
  }
  .hs-1 .hero-single .hero-content .hero-title{
    font-size: 46px;
  }
  .hero-section .hero-single, .py-120{
    padding-top: 60px;
    padding-bottom: 60px;
  }
}


.owl-theme .owl-dots .owl-dot span{
background: #5671f1 !important;
}
.owl-theme .owl-dots .owl-dot.active span{
    background: #5671f1 !important;
}
 .owl-dots .owl-dot.active span::before{
    content: "";
  position: absolute;
  inset: -4px;
  border: 1.6px solid #5671f1;
  border-radius: 50px;
 }
 .newsletter-wrap .newsletter-form .form-group .theme-btn {
    position: absolute;
    right: 5px;
    bottom: 12px;
    padding: 4px 15px;
}

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;

  .site-title-tagline {
    display: inline-block;
    color: var(--color-white);
    font-weight: 500;
    text-transform: capitalize;
    font-size: 18px;
    background: var(--theme-color);
    border-radius: 50px;
    padding: 2px 15px 2px 3px;
    margin-bottom: 15px;

    &.light {
      background: var(--color-white);
    }

    i {
      font-size: 16px;
      width: 30px;
      height: 30px;
      line-height: 30px;
      background: var(--color-white);
      color: var(--theme-color);
      text-align: center;
      border-radius: 50px;
      margin-right: 5px;
    }
  }

  .site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 45px;
    color: var(--color-dark);
    margin-bottom: 0;

    span {
      color: var(--theme-color);
    }

    .text-gradient {
      color: transparent;
      background-image: var(--gradient3);
      background-clip: text;
    }
  }

  p {
    margin-top: 15px;
  }

  &.inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;

    .site-title {
      font-size: 35px;
    }
  }

  .heading-divider {
    display: inline-block;
    position: relative;
    border-bottom: 4px solid var(--theme-color);
    width: 90px;
    height: 4px;
    border-radius: 50px;
    margin-top:10px;

    &::after {
      content: "";
      position: absolute;
      left: 0;
      top: -1px;
      height: 6px;
      width: 15px;
      border-radius: 0px;
      background-color: var(--color-white);
      animation: heading-move 5s infinite linear;
    }
  }
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(75px);
  }

  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(75px);
  }

  100% {
    transform: translateX(-1px);
  }
}

.hs-1 {
    margin-top: -2.8rem;
}
.footer-contact .icon i, .footer-contact .content{
    color: #ffffff;
}
.breadcrumb{
    background-color: transparent;
    border: 0;
    border-radius: 0;
}
.breadcrumb > li.breadcrumb-item{
    text-shadow: none;
}
.breadcrumb > li.breadcrumb-item > a{
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 16px;
}
.breadcrumb > li.breadcrumb-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    right: 0;
    width: 10px;
    height: 10px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
}
.breadcrumb > li.breadcrumb-item:last-child a {
  color: #f7931e;
}
.breadcrumb > li.breadcrumb-item:last-child::after {
  display: none;
}
footer{
    position: relative;
}

/*Right sidebar*/
.sidebar-popup-about h4 {
    margin-bottom: 10px;
    font-weight: 700;
}
.sidebar-popup-contact {
    margin-top: 20px;
}
.sidebar-popup-content ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.sidebar-popup-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}
.sidebar-popup-contact li .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: var(--color-white);
    background: var(--theme-color);
    text-align: center;
    border-radius: 50px;
}
.sidebar-popup-contact li .content h5 {
    font-size: 16px;
}
.sidebar-popup-contact li .content a {
    color: var(--color-dark);
}
.sidebar-popup-social {
    margin-top: 25px;
}
.sidebar-popup-social h4 {
    margin-bottom: 20px;
    font-weight: 700;
}
.sidebar-popup-social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    margin-right: 8px;
    background: var(--theme-color);
    color: var(--color-white);
    box-shadow: 0px 4px 80px rgba(0, 0, 0, 0.12);
    display: inline-block;
}

.fixed {
    position: fixed;
    z-index: 99;
    top: 0;
    box-shadow: 2px 2px 7px 0 rgba(0, 0, 0, .1);
    background-color: #fff;
    transition: 0.4s top cubic-bezier(.3, .73, .3, .74);
    left: 0;
    right: 0;
    padding: 10px 0;
    transition: all 0.6s ease 0s;    
}

.copyright-border{
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 14px 14px;
}
#container{
    overflow: hidden;
}