/*!
Theme Name: designekatrit theme
Theme URI: http://underscores.me/
Author: designekatrit
Author URI: http://designekatrit
Description: designekatrit
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: designekatrit
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

designekatrit theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

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

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}


/* =========================================================
   Bootstrap-Like Default Style System
   ========================================================= */

/* ===== CSS RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  background: #fff;
  color: #212529;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: #0d6efd;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  padding: 0 15px;
  margin: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* ===== GRID SYSTEM ===== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*="col-"] {
  padding: 0 15px;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 16px;
}

.btn-primary {
  background: #0d6efd;
  color: #fff;
}

.btn-primary:hover {
  background: #0b5ed7;
}

.btn-success {
  background: #198754;
  color: #fff;
}

.btn-danger {
  background: #dc3545;
  color: #fff;
}

/* ===== FORM ===== */
input,
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 16px;
}

label {
  display: block;
  margin-bottom: 5px;
}

/* ===== TABLE ===== */
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border: 1px solid #dee2e6;
}

th {
  background: #f8f9fa;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #212529;
  padding: 1rem;
}

.navbar a {
  color: #fff;
  margin-right: 15px;
}

/* ===== CARD ===== */
.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* ===== ALERTS ===== */
.alert {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.alert-success {
  background: #d1e7dd;
  color: #0f5132;
}

.alert-danger {
  background: #f8d7da;
  color: #842029;
}

.alert-warning {
  background: #fff3cd;
  color: #664d03;
}

/* ===== FLEX UTILITIES ===== */
.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

/* ===== SPACING UTILITIES ===== */
.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

/* ===== TEXT UTILITIES ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #0d6efd;
}

.text-success {
  color: #198754;
}

.text-danger {
  color: #dc3545;
}

/* ===== BACKGROUND UTILITIES ===== */
.bg-primary {
  background: #0d6efd;
  color: #fff;
}

.bg-dark {
  background: #212529;
  color: #fff;
}

.bg-light {
  background: #f8f9fa;
}

/* ===== BORDER & SHADOW ===== */
.rounded {
  border-radius: 8px;
}

.shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ===== DISPLAY ===== */
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.w-100 {
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .row {
    flex-direction: column;
  }

  [class*="col-"] {
    width: 100%;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

  /*rtl:ignore*/
  float: left;

  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {

  /*rtl:ignore*/
  float: right;

  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* TOP HEADER */
.top-header {
  width: 100%;
 
	    position: sticky;
    top: 0;
    z-index: 9999;
    background: #FFF5E9;
}

/* HEADER TOP */
.header-top {
  background: #FFF5E9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

/* LOGO */
.site-logo img {
  height: auto;
  width: 182px;
}

/* LANGUAGE */
.header-lang {
  display: flex;
  gap: 20px;
}

.header-lang a {
  text-decoration: none;
  color: #F37D1E;
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
}

/* NAVBAR */
.main-navbar {
  background: radial-gradient(50% 713.25% at 50% 50%, #F37D1E 63.46%, #D55B32 100%);
box-shadow: 0px 12.5px 18.75px -3.75px #0000001A;

}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 16px;
  transition: 0.3s;
  line-height: 24px;
  font-weight: 400;
}

.nav-menu li a:hover, 
.nav-menu li.current-menu-item a{
  background: rgba(255, 255, 255, 0.15);
}

/* RESPONSIVE */
@media(max-width:1200px) {

  .container {
    width: 95%;
  }

  .nav-menu li a {
    padding: 15px;
    font-size: 18px;
  }
}



.head-section-head{
	margin: 0 0 50px;
}
.head-section-head .head-section-title{
	margin-bottom: 10px;
	text-transform: uppercase;
}
.head-section-head .head-section-title span{
	color: #000;
}
.head-section-head .head-section-para{
	color: #9F9FA9;
	font-weight: 400;
	font-size: 20.55px;
	line-height: 32px;
	text-align: center;
	max-width: 695px;
    margin: 0 auto;

}

.head-section-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: #F37D1E;
    margin: 0 0 50px;
	text-transform: uppercase;
}
.head-section-title span{
	color: #000;
}
.head-section-title-clr{
	color: #000;
}
.head-section-title-clr span{
	color: #F37D1E;
}
/**banner**/
/* =========================
       UNIQUE HERO SECTION
    ========================== */

.uhs-main-wrapper {
  width: 100%;
  height: 727px;
  height: auto;	
  position: relative;
  overflow: hidden;
}

.uhs-swiper-slider {
  width: 100%;
  height: 100%;
}

.uhs-slide-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.uhs-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.uhs-slide-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0.10) 70%,
      rgba(0, 0, 0, 0.03) 100%);
  z-index: 1;
	display: none;
}

/* Content Fixed */
.uhs-fixed-content {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  z-index: 20;
  color: #fff;
  max-width: 650px;
}

.uhs-main-heading {
      font-size: 72px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-shadow: 0 0 6px rgb(0 0 0 / 35%);
    letter-spacing: 2px;
    max-width: 100px;
}

.uhs-sub-heading {
 font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 35px;
    text-shadow: 3px 0px 6px rgb(255 255 255);
    color: #000;
    line-height: 41px;
}

.uhs-btn {
  display: inline-block;
  padding: 16px 34px;
  background: #F37D1E;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 60px;
	text-transform: uppercase;
}

.uhs-btn:hover {
  background: #da581d;
	text-decoration: none;
}

/* Stats */
.uhs-stats-row {
      display: flex;
    gap: 60px;
    flex-wrap: wrap;
/*     position: absolute; */
    bottom: -100px;
       text-align: left;
    width: 327px;
	padding-top: 100px;
}

.uhs-single-stat h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
	text-shadow: 0 0 6px rgba(255, 0, 0, 0.35);
}

.uhs-single-stat p {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Swiper Arrows */
.uhs-swiper-slider .swiper-button-next,
.uhs-swiper-slider .swiper-button-prev {
  color: #fff!important;
  z-index: 50!important;
	 background: #000!important;
    padding: 20px!important;
    right: 0px!important;
    left: unset!important;
    bottom: 0px!important;
    top: unset!important;
	border-radius: 0px!important;
}

.uhs-swiper-slider .swiper-button-next:after,
.uhs-swiper-slider .swiper-button-prev:after {
  font-size: 20px!important;
  font-weight: 800!important;
}
.uhs-swiper-slider .swiper-button-next:after, .uhs-swiper-slider .swiper-button-prev:after {
   
    color: #fff;
}	
.uhs-swiper-slider .swiper-button-prev {
    right: 39px!important;
}

/* Pagination */
.uhs-swiper-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
}

.uhs-swiper-slider .swiper-pagination-bullet-active {
  background: #f36b2c;
  opacity: 1;
}


/* =========================
       FOOTER
    ========================== */
.site-footer {
/*   background: #f5821f; */
  color: #fff;
  padding: 128px 60px 15px;
	padding: 48px 60px 15px;
    background-size: cover;
    background-repeat: no-repeat;
	min-height: 803px;
	    display: flex;
    flex-direction: column;
    justify-content: end;
}
.site-footer-logo-box {
    display: flex;
	gap: 30px;
	    align-items: flex-start;
}
.site-footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
	max-width: 800px;
	margin-top: 40px;
}

.site-footer-column {
  flex: 1;
  min-width: 220px;
}

.site-footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Logo Area */
.site-footer-logo-box img {
  width: 150px;
  display: block;
}

/* Quick Links */
.site-footer-links {
  list-style: none;
}

.site-footer-links li {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  transition: 0.3s ease;
}

.site-footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}


.getInTouch_form {
    max-width: 723px;
    margin: auto;
}
.getInTouch_form .form-control {
    border: none;
    border-bottom: 0.64px solid #64748B;
    border-radius: 0px;
    padding: 7px 0;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 18px;
    color: #64748B;
}
.getInTouch_form .form-control:focus{
	outline: none;
}
.getInTouch_form textarea.form-control {
    resize: none;
    height: 90px;
    font-family: inherit;
}
.getInTouch_form .courses_main_btn {
    height: 56px;
    border: none;
    font-size: 20px;
	max-width: 430px;
	cursor: pointer;
	margin: 0px auto 0px!important;
	width: 100%;
    display: block;
}
.getNotifi {
    color: #64748B;
    margin: -20px 0 0;
    display: block;
	text-align: center;
}
/* Contact */
.site-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.site-footer-contact-item i {
  margin-top: 4px;
  font-size: 15px;
}

.site-footer-contact-item a,
.site-footer-contact-item span {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

/* Social Icons */
.site-footer-social {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

.site-footer-social a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}

.site-footer-social a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* Bottom */
.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 50px;
  padding-top: 19px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer-contact-item svg {
  position: relative;
  top: 4px;
	flex: none;
}
.anw-content p:last-child {
    margin: 0;
}
/* Responsive */
@media(max-width:768px) {

  .site-footer {
    padding: 35px 25px 15px;
  }

  .site-footer-wrapper {
    flex-direction: column;
    gap: 35px;
  }

  .site-footer-title {
    margin-bottom: 18px;
  }
}


.our_stories {
  padding: 100px 0 30px;
}
.our_stories .primary_heading h2 {
   color: rgba(243, 125, 30, 1);
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
	    text-transform: uppercase;
}
.our_stories .primary_heading h2 span{
	
	 color: #000;
}
.stories-section {
  overflow: hidden;
	position: relative;
}
.stories-section:before, 
.stories-section:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 99%;
    height: 113px;
    background-color: #fff;
    z-index: 9;
    border-radius: 100%;
    top: -61px;
}
.stories-section:after {
    bottom: -61px;
	top: unset;
}
.storiesSwiper .swiper-slide {
    width: 220px !important;
	transition: all 0.6s;
}
.storiesSwiper .swiper-slide:hover{
	 width: 260px !important;
	transition: all 0.6s;
}
.storiesSwiper .swiper-slide:hover .story-card{
	height: 500px;
	transition: all 0.6s;
}

.story-card {
  position: relative;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: #222;
	transition: all 0.6s;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(to top, rgb(0 0 0 / 0%), rgba(0, 0, 0, 0.05));
}
.story-overlay {
    width: 40px;
    height: 40px;
    display: inline-flex;
    margin: auto;
    background: #f58220e6;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
}
.story-overlay h3 {
  background: #000;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 4px;
  text-align: center;
  margin: 0;
  max-width: 90%;
}
.storiesSwiper .swiper-button-prev, .storiesSwiper .swiper-button-next {
    width: 50px;
    height: 50px;
    background: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
}
.storiesSwiper .swiper-button-prev:after, .storiesSwiper .swiper-button-next:after{
	    font-size: 24px;
}

.story-poster,
.story-preview{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.story-preview{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    visibility:hidden;
}

.story-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.story-card:hover .story-overlay{
    opacity:0;
}
/* Popup */

.story-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.story-popup.active {
  display: flex;
}

.story-popup-inner {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.story-popup video {
  width: 100%;
  border-radius: 20px;
  background: #000;
}

.story-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

@media(max-width:767px) {
  .story-card {
    height: 320px;
  }

}

.courses_section{
    width:100%;
    padding:80px 0 40px;
/* 	background: linear-gradient(180deg, rgba(255, 223, 198, 0) 0%, #EF9840 50.96%, #EF9840 100%); */
	background-color:#fff5e9bf;

}

.courses_sec_bx{
    margin:auto;
/*     padding:21px 36px;
    background:rgba(255, 245, 233, 1);
    border-radius:30px; */
	

    display:flex;
    gap:25px;
    justify-content:center;
    flex-wrap:wrap;
}

/* CARD */
.courses_card {
    position: relative;
    overflow: hidden;
    border-radius: 11px;
    cursor: pointer;
    background: #fff;
	box-shadow: 0px 3.98px 5.97px -1px rgba(0, 0, 0, 0.1);
    transition: all .4s ease;
    flex: 1 1 calc(25% - 26px);
    max-width: calc(25% - 26px);
	border-top: 0.8px solid rgba(0, 0, 0, 0.1);
}

.courses_card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.courses_card_thumbs{
	width: 100%;
	height: 313px;
	overflow: hidden;
}

/* HOVER EFFECT */

.courses_overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding: 13px; 
/* 	min-height: 55px;
	height: 55px; */
   background: rgba(255, 255, 255, 0.8);

    transition:all .4s ease;
    overflow:hidden;
}

.courses_content{
    position:static;
    width:100%;
   transition:all .4s ease;
	display: none;
}

.courses_overlay h3{
    font-size:18px;
	line-height: 27px;
    font-weight:700;
    color:rgba(30, 41, 59, 1);
    margin:0px;
}

.courses_content p{
    font-size:15px;
    line-height:1.7;
    color:#444;  
}

/* HOVER */
.courses_card:hover .courses_overlay{
    height: auto;
	min-height: auto;
    background:rgba(255,255,255,0.88);
}

.courses_card:hover .courses_content{
	display: block;
}
.courses_card .courses_card_thumbs img, 
.story-card img{
	 transition: transform 0.5s ease;
}
.courses_card:hover .courses_card_thumbs img, 
.story-card:hover img{
	 transition: transform 0.5s ease;
	transform: scale(1.1);
}

/* BUTTON */

.courses_bottom_btn {
    text-align: center;
    margin-top: 44px;
    margin-bottom: 24px;
	flex: 1 1 100%;
    max-width: 100%;
   display: inline-flex;
    justify-content: center;
    gap: 80px;
	width: 100%;
}
.courses_main_btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
	font-size: 16px;
    padding:8px 20px;
    background:rgba(243, 125, 30, 1);
    color:rgba(239, 245, 255, 1);
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    letter-spacing:.5px;
   text-transform: uppercase;
    transition:.3s;
   
}

.courses_main_btn:hover{
    background:#e66d00;
    transform:translateY(-2px);
	text-decoration: none;
}

.courses_bottom_btn .courses_main_btns {
    color: #F37D1E;
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
	display: inline-flex;
    align-items: center;
    gap: 10px;
	transition: all 0.6s;
	padding: 5px 15px 5px 0px;
	border-radius: 50px;
	background: transparent;
	 transition: color 0.4s ease;
	 position: relative;
}

.courses_bottom_btn .courses_main_btns::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 30px;
    height: 30px;
    background: #f37c1e;
    z-index: -1;
    transition: all 0.5s ease;
    border-radius: 50px;
}
.courses_bottom_btn .courses_main_btns:hover::before {
    width: 100%;
    border-radius: 50px;
    height: 50px;
    top: -4px;
}
.courses_bottom_btn .courses_main_btns:hover {
/*     background: #f37d1e; */
    color: #fff;
    
    border-radius: 50px;
}
.courses_bottom_btn .courses_main_btns svg
 {
    background: #F37D1E;
    width: 30px;
    height: 30px;
    display: inline-flex;
    padding: 4px;
    border-radius: 100%;
	 transition: all 0.6s;
}
.courses_bottom_btn .courses_main_btns:hover{
	text-decoration: none;
}
.courses_bottom_btn .courses_main_btns:hover svg {
    transform: translateX(5px);
    transition: all 0.6s;
}
.trusted-video-section {
    padding: 60px 0px;
}

.trusted-video-wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.trusted-video {
    width: 100%;
    display: block;
    border-radius: 0px;
    object-fit: cover;
}

/* Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 32px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}
.video-play-btn.hide {
    opacity: 0;
    visibility: hidden;
}

.partners-section{
    padding:120px 0px 110px;
	background: linear-gradient(180deg, rgba(255, 223, 198, 0) 0%, #EF9840 50.96%, #EF9840 100%);
	overflow: hidden;


}

.partners-container{
   margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
	    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.partners-left{
    width:40%;
}
.partners-left h2{
    font-size:36px;
    font-weight:600;
    color:#F37D1E;
    margin-bottom:11px;
    text-transform:uppercase;
    line-height:34px;
}
.partners-left h2 span{
	color: #000;
}
.partners-left p{
    font-size:18px;
    line-height:30px;
	font-weight: 400;
    color:#64748B;
}
.partners-section .courses_bottom_btn {
	width: 100%;
}
.partners-section .courses_bottom_btn .courses_main_btns {
    color: #fff;
}
.partners-section .courses_bottom_btn .courses_main_btns::before{
	background: #fff;
}
.partners-section .courses_bottom_btn .courses_main_btns:hover{
	color: #f37d1e;
}
.partners-section .courses_bottom_btn .courses_main_btns svg{
	background-color: #fff;
}
.partners-section .courses_bottom_btn .courses_main_btns svg path{
	stroke:rgb(243, 125, 30);
}
.partners-right{
      width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 13px 16px;
    justify-items: center;
}
.partner-item {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff00;
    display: flex;
	padding: 5px;
    align-items: center;
    justify-content: center;
    transition: all 0.6s;
	    border: 1px solid #fff;
}
.partner-item img{
    width:100%;
    height:100%;
    object-fit: contain;
    border-radius:0%;
	
}
.partner-item:hover{
     transform: translateY(-3px);
}

/* =========================
LATEST NEWS SECTION
========================= */

.blogNews{
   padding: 100px 0 50px;
}

.blogNews .section-title{
    text-align:center;
    font-size: 36px;
    font-weight:600;
    color:#F37D1E;
    margin-bottom:50px;
    text-transform:uppercase;
}
.blogNews .section-title span{
	color: #000;
}
.blogNews .news-wrapper{
    display:flex;
    gap:18px;
    align-items:stretch;
}

/* LEFT SIDE */
.blogNews .left-news{
    width: 663px;
}
.left-news .news-image {
    height: 322px;
    width: 100%;
	margin-bottom: 22px;
}
.blogNews .big-news-card{
    display:block;
    overflow:hidden;
    text-decoration:none;
    height:100%;
    transition:.3s;
}
.blogNews .news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
	box-shadow: 0px 4.57px 4.57px 0px #00000040;
	border-radius: 19px;
}

.blogNews .news-content h3{
    font-size:18px;
    line-height:27px;
    color:#000;
    margin-bottom:9px;
    font-weight:600;
}

.blogNews .news-content p{
    font-size:14px;
    line-height:23px;
    color:#64748B;
	font-weight: 400;
	margin: 0px;
}

/* RIGHT SIDE */
.blogNews .right-news{
    flex: 1;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.blogNews .small-news-card{
    display:flex;
    gap:18px;
    text-decoration:none;
    transition:.3s;
	align-items: center;
}
.blogNews .small-image{
    width:205px;
    flex:none;
	height: 129px;
}

.blogNews .small-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:11px;
	box-shadow: 0px 4.57px 4.57px 0px #00000040;
}

.blogNews .small-content{
    flex:1;
}

.blogNews .small-content h4{
    font-size:13px;
    line-height:19px;
    color:#000000;
    margin-bottom:12px;
    font-weight:600;
}

.blogNews .small-content p{
    font-size:10px;
    line-height:16px;
    color:#64748B;
	margin: 0px;
}

/* RESPONSIVE */
@media(max-width:991px){

    .blogNews .news-wrapper{
        flex-direction:column;
    }

    .blogNews .left-news,
    .blogNews .right-news{
        width:100%;
    }

    .blogNews .news-image img{
        height:320px;
    }

    .blogNews .news-content h3{
        font-size:28px;
    }
}

@media(max-width:767px){

    .blogNews{
        padding:60px 0;
    }

    .blogNews .section-title{
        font-size:34px;
    }

    .blogNews .small-news-card{
        flex-direction:column;
    }

    .blogNews .small-image{
        width:100%;
    }

    .blogNews .small-image img{
        height:220px;
    }

    .blogNews .news-content h3{
        font-size:24px;
    }

    .blogNews .small-content h4{
        font-size:18px;
    }
}
/* =========================
INSIGHT NEWS
========================= */

.insight_news{
    padding:80px 0;
    background:#fff;
}

.insight_news_container{
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

/* CARD */

.insight_news_card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    min-height:540px;
    display:block;
    text-decoration:none;
    background:#000;
}

.insight_news_card:hover{
	text-decoration: none;
	color: inherit;
}

/* IMAGE */

.insight_news_image{
    position:absolute;
    inset:0;
}

.insight_news_image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.5s;
}

.insight_news_card:hover .insight_news_image img{
    transform:scale(1.06);
}

/* DARK OVERLAY */

.insight_news_overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.15) 45%,
        rgba(0,0,0,0.25) 100%
    );
}

/* CONTENT */

.insight_news_content{
    position:relative;
    z-index:2;

    height:100%;
    padding:20px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* TOP */

.insight_news_author{
    color:#fff;
    font-size:15px;
    font-weight:500;
    margin-bottom:8px;
}

.insight_news_meta{
    color:#e5e5e5;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:10px;
}

/* TITLE */

.insight_news_title{
    color:#fff;
    font-size:30px;
    line-height:1.1;
    font-weight:400;
    margin-top:auto;
    margin-bottom:20px;
    text-transform:uppercase;
}

/* BOTTOM */

.insight_news_bottom{
    display:flex;
    align-items:center;
    gap:22px;

    padding-top:18px;
    border-top:1px solid rgba(255,255,255,0.4);
}

.insight_news_item{
    color:#fff;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:8px;
}
.insight_news .courses_main_btn {
    margin-top: 40px;
}

/* RESPONSIVE */


@media(max-width:767px){

    .insight_news{
        padding:50px 0;
    }

    .insight_news_container{
        grid-template-columns:1fr;
    }

    .insight_news_card{
        min-height:480px;
    }

    .insight_news_title{
        font-size:28px;
    }
}

.anm-main-wrapper{
    width:100%;
    padding:80px 0px 80px;
}


.anm-top-heading{
    text-align:center;
    margin-bottom:50px;
}
.anm-top-heading .head-section-title{
	margin-bottom: 10px;
}
.anm-top-heading p{
    font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
	color: #64748B;
}
.anm-user-icon{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath d='M14.1729 15.7415V14.243C14.1729 13.4482 13.8571 12.6859 13.2951 12.1239C12.7331 11.5618 11.9708 11.2461 11.1759 11.2461H6.68054C5.8857 11.2461 5.12341 11.5618 4.56138 12.1239C3.99934 12.6859 3.68359 13.4482 3.68359 14.243V15.7415' stroke='%2399A1AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.97741 8.17162C10.6326 8.17162 11.9744 6.82984 11.9744 5.17468C11.9744 3.51951 10.6326 2.17773 8.97741 2.17773C7.32225 2.17773 5.98047 3.51951 5.98047 5.17468C5.98047 6.82984 7.32225 8.17162 8.97741 8.17162Z' stroke='%2399A1AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.anm-phone-icon{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath d='M16.2876 12.6728V14.9205C16.2884 15.1292 16.2457 15.3357 16.1621 15.5269C16.0785 15.7181 15.9559 15.8897 15.8022 16.0308C15.6484 16.1718 15.4669 16.2792 15.2692 16.3461C15.0715 16.4129 14.8621 16.4378 14.6543 16.419C12.3487 16.1685 10.1341 15.3807 8.18837 14.1188C6.37808 12.9685 4.84328 11.4337 3.69295 9.62342C2.42673 7.66882 1.63873 5.44343 1.3928 3.12755C1.37408 2.92036 1.3987 2.71154 1.4651 2.51439C1.5315 2.31724 1.63823 2.13608 1.77848 1.98243C1.91873 1.82879 2.08944 1.70603 2.27974 1.62197C2.47003 1.53792 2.67575 1.49441 2.88378 1.49421H5.13149C5.49509 1.49063 5.8476 1.61939 6.12329 1.85649C6.39899 2.09359 6.57907 2.42285 6.62996 2.7829C6.72483 3.50221 6.90077 4.20849 7.15442 4.88825C7.25523 5.15642 7.27704 5.44787 7.21729 5.72805C7.15753 6.00824 7.01871 6.26543 6.81727 6.46914L5.86574 7.42067C6.93231 9.29641 8.4854 10.8495 10.3611 11.9161L11.3127 10.9646C11.5164 10.7631 11.7736 10.6243 12.0538 10.5645C12.3339 10.5048 12.6254 10.5266 12.8936 10.6274C13.5733 10.881 14.2796 11.057 14.9989 11.1519C15.3629 11.2032 15.6953 11.3865 15.9329 11.667C16.1705 11.9474 16.2967 12.3054 16.2876 12.6728Z' stroke='%2399A1AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* GRID */
.anm-content-grid{
/*     display:grid; */
/*    text-align: center; */
    gap:35px;
/*     align-items:stretch; */
}

/* LEFT SIDE */
.anm-instagram-box{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    
   
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
}

/* Instagram Widget Area */
.anm-instagram-widget{
    width:100%;
    height:100%;
	text-align: center;
	margin-bottom: 50px;
}
.anm-instagram-btn a {
       background: linear-gradient(90deg, #FFCF53 0%, #FB5246 17.79%, #F44E53 37.98%, #D33C96 62.02%, #C837AB 81.73%, #535ACA 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    height: 53px;
    max-width: 420px;
    width: 100%;
    font-size: 24px;
    gap: 9px;
    font-weight: 500;
    margin: 30px auto 40px;
}
.anm-instagram-btn a:hover{
	text-decoration: none;
}
/* RIGHT SIDE FORM */
.anm-form-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
	box-shadow: 0px 22.48px 44.95px -10.79px #00000040;

}

.anm-form-header{
    background: linear-gradient(135deg, #FF8F35 0%, #F37D1E 53.37%, #D26A17 100%);
    padding:20px;
}

.anm-form-header h2{
    font-weight: 700;
	font-size: 17.98px;
	line-height: 21.58px;
	text-transform: uppercase;
	color: #fff;

}

.anm-form-header p{
   font-weight: 400;
	font-size: 12.59px;
	line-height: 17.98px;
   color: #DBEAFE;
	margin: 0px;
}
.anm-form-body {
    padding: 57px 35px 0px;
}
.anm-form-body p {
    margin: 0px;
}
.anm-field-group{
    margin-bottom:25px;
	position: relative;
}

.anm-field-label{
    display:block;
    color:#364153;
    margin-bottom:7px;
	
	font-weight: 500;
	font-size: 12.59px;
	line-height: 12.59px;
}

.anm-field-label span{
    color:red;
}

.anm-input-wrap{
    position:relative;
}

.anm-input-icon {
    position: absolute;
    left: 16px;
    top: 12px;
    color: #9aa3b2;
    font-size: 18px;
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 17px;
    height: 17px;
    display: inline-block;
    z-index: 9;
}

.anm-input-field,
.anm-select-field,
.anm-textarea-field{
    width:100%;
    border:none;
    background:#F3F3F5;
    border-radius:10px;
	border: 0.72px solid #E5E7EB;
    padding:5px 5px 5px 45px;
    font-size:13px;
    color:#717182;
    outline:none;
    transition:0.3s ease; 
	height: 43px;
	margin: 0;
}

.anm-select-field{
    appearance:none;
    cursor:pointer;
	padding: 5px 10px;
}

.anm-textarea-field{
    height:57px;
    resize:none;
	padding: 10px;
	font-family: inherit;
   
}

.anm-input-field:focus,
.anm-select-field:focus,
.anm-textarea-field:focus{
    background:#fff;
}

.anm-char-count{
    text-align:right;
    font-size:12px;
    color:#8a8a8a;
    position: absolute;
    right: 0;
    top: -7px;
}

.anm-submit-btn{
    width:100%;
    border:none;
    background:#F37D1E;
    color:#fff;
    height:50px;
    border-radius:7px;
    cursor:pointer;
    transition:0.3s ease;
   font-weight: 700;
	font-size: 17.98px;
	line-height: 17.98px;
	text-align: center;
	text-transform: uppercase;
	box-shadow: 0px 8.99px 13.49px -2.7px #0000001A;
	margin: 0px;

}

.anm-submit-btn:hover{
    background:#dd6f11;
    transform:translateY(-2px);
}

.anm-form-footer {
    color: #6A7282;
    margin: 0px 0px 22px;
    font-weight: 400;
    font-size: 10.79px;
    line-height: 14.39px;
    text-align: center;
}
/* RESPONSIVE */
@media(max-width:991px){

    .anm-content-grid{
        grid-template-columns:1fr;
    }

}

.map_home{
	padding: 40px 0 80px;
}
.map_home_p p{
	    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #64748B;
    max-width: 862px;
    margin: 0 auto 15px;

}
.map_home_p p span {
    background-color: #F37D1E;
    color: #fff;
    padding: 3px 7px;
    border-radius: 20px;
}
.press_news_sec{
	padding: 80px 0 80px;
	background: #FFF5E9;
}
.press_news {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0;
}

/* Card */
.press_news_item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    height: 260px;
    text-decoration: none;
    background: #000;
}
.press_news_image {
    width: 100%;
    height: 100%;
}
/* Image */
.press_news_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Hover zoom */
.press_news_item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.press_news_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
}

.press_news_overlay h3 {
    font-size: 16px;
    margin: 0 0 5px;
}

.press_news_overlay p {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
}
.press_news_card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.press_news_logo img {
    width: 100%;
    height: 114px;
    object-fit: scale-down;
}
.press_news_card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.press_news_card:nth-child(even){
	flex-direction: column-reverse;
}

/* Responsive */
@media (max-width: 1024px) {
    .press_news {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .press_news {
        grid-template-columns: 1fr;
    }
}
.anm-main-wrapper-page{
	padding: 88px 0px;
}	
.anm-main-wrapper .head-section-title {
		margin-bottom: 10px;
	}
.anm-main-wrapper-page .head-section-para {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #4A5565;
    max-width: 877px;
   margin: 0 auto 60px;
}
.anm-main-wrapper-page .anm-content-grid{
    display:grid;
    grid-template-columns: 588px 1fr;
}
    .am-contact-card-wrapper{
      width:100%;
      background:linear-gradient(135deg,#ff8f1f,#b45a05);
      border-radius:20px;
      padding:24px 22px;
      position:relative;
      overflow:hidden;
      color:#fff;
      box-shadow:0 18px 35px rgba(0,0,0,0.12);
		margin-bottom: 30px;
		box-shadow: 0px 25px 50px -12px #00000040;

    }
	
    .am-contact-card-wrapper::after{
      content:"";
      position:absolute;
      top:-35px;
      right:-35px;
      width:120px;
      height:120px;
      background:rgba(255,255,255,0.12);
      border-radius:50%;
    }

    .am-contact-card-heading{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:5px;
      position:relative;
      z-index:2;
    }


    .am-contact-card-heading h2{
      font-size:18px;
      font-weight:600;
    }

    .am-contact-card-subtitle{
      font-size:13px;
      color:rgba(255,255,255,0.9);
      margin-bottom:24px;
      position:relative;
      z-index:2;
    }
.am-contact-info-content p a {
    color: inherit;
    text-decoration: underline;
}
    .am-contact-info-list{
      display:flex;
      flex-direction:column;
      gap:18px;
      position:relative;
      z-index:2;
    }

    .am-contact-info-item{
      display:flex;
      align-items:flex-start;
      gap:14px;
    }

    .am-contact-info-icon{
      width:34px;
      height:34px;
      min-width:34px;
      border-radius:10px;
      background:rgba(255,255,255,0.18);
      display:flex;
      align-items:center;
      justify-content:center;
      backdrop-filter:blur(4px);
    }

    .am-contact-info-icon i{
      font-size:14px;
      color:#fff;
    }

    .am-contact-info-content h4{
      font-size:14px;
      font-weight:500;
      margin-bottom:4px;
      color:#DBEAFE;
    }

    .am-contact-info-content p{
      font-size:14px;
      line-height:1.5;
      color:#fff;
    }

    /* MAP CARD */
    .anm-main-wrapper-page{
      width:100%;
      background:#fff;
      border-radius:16px;
    
      box-shadow:0 10px 30px rgba(0,0,0,0.10);
		
    }

    .am-map-inner-box{
          background: #eef1f5;
    border-radius: 12px;
    height: 244px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border: 10px solid #fff;
    box-shadow: 0px 10px 15px -3px #0000001A;
    }

    .am-map-inner-box i{
      font-size:48px;
      color:#66748d;
      margin-bottom:16px;
    }

    .am-map-inner-box h3{
      font-size:30px;
      color:#66748d;
      margin-bottom:8px;
      font-weight:700;
    }

    .am-map-inner-box p{
      font-size:16px;
      color:#7b8799;
    }

.contactUs_innner {
       background: linear-gradient(180deg, rgba(255, 223, 198, 0) -6.84%, rgb(245 184 122) 47.61%, #f37d1e 100%);
    padding: 100px 0px;
}
.contactUs_cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.contactUs_card_list {
    background: #FFF5E9;
    padding: 46px 30px 30px;
    box-shadow: 0px 31.25px 62.5px -15px #00000040;
    border-radius: 30px;
    flex: 1 1 calc(33% - 17px);
    max-width: calc(33% - 17px);
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    text-align: center;

}
.contactUs_card_action .whatsAppSec img {
    width: 146px;
	transition: all 0.6s;
}

.contactUs_card_action .contactUs_action_a {
    background: #F37D1E;
    width: 146px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    padding: 6px 10px;
    color: #fff;
    font-size: 14px;
    gap: 6px;
    border-radius: 6px;
	transition: all 0.6s;
}
.contactUs_card_action .contactUs_action_a svg {
    width: 20px;
}
.contactUs_card_list:hover .contactUs_card_action .contactUs_action_a, 
.contactUs_card_list:hover .contactUs_card_action .whatsAppSec img{
	transform: translate(0px, -5px);
	transition: all 0.6s;
	text-decoration: none;
}
.contactUs_card_list:hover{
	background-color: #fff;
}

.contactUs_card_hd h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #F37D1E;
	margin-bottom: 20px;
}
.contactUs_card_hd p{
	color: #64748B;
	margin-bottom: 0px;
}
.atm-contact-section {
    background: #fefefe;
    padding: 70px 00px 50px;

}
/* Top Contact */
.atm-contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.atm-contact-item {
    flex: 1;
    min-width: 180px;
}

.atm-icon-box {
    width: 46px;
    height: 46px;
    margin: 0 auto 15px;
    background: #f6eae0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.atm-icon-box svg {
    width: 25px;
    height: 24px;
    object-fit: scale-down;
}
.atm-contact-item h4 {
    color: #4d5966;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}

.atm-contact-item a,
.atm-contact-item p {
    color: #f58220;
    font-size: 17px;
    line-height: 1.6;
    text-decoration: none;
    margin: 0;
}

/* Social Section */
.atm-social-wrapper {
    text-align: center;
    margin-top: 70px;
}

.atm-heading-box {
    display: inline-block;
    background: #f6eae0;
    padding: 12px 22px;
    border-radius: 10px;
}
.atm-heading-box h2 {
    margin: 0;
    font-size: 39px;
    font-weight: 600;
    color:  #f58220;
    text-transform: uppercase;
}
.atm-heading-box h2 span {
    color: #000;
}

.atm-subtitle {
    color: #5c6774;
    font-size: 20px;
    margin-top: 15px;
}

.atm-social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
}
.atm-social-icons svg {
    width: 38px;
    height: 38px;
    object-fit: scale-down;
}
.atm-social-icons a {
    color: #f58220;
    font-size: 42px;
    transition: 0.3s;
}

.atm-social-icons a:hover {
    transform: translateY(-3px);
}

/* Media Section */
.atm-media-wrapper {
    text-align: center;
    margin-top: 90px;
}

.atm-media-text {
    color: #5c6774;
    font-size: 20px;
    line-height: 1.7;
    margin-top: 20px;
}

.atm-media-text strong {
    color: #344054;
    font-weight: 700;
}

.contactUs_forms {
    padding: 120px 0 0;
	    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.contactUs_forms .btn-forms {
    box-shadow: 0px 10.13px 15.19px -3.04px #0000001A;
    background-color: #fff;
    max-width: 389px;
    margin: auto !important;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    line-height: 20.26px;
    text-align: center;
    text-transform: uppercase;
    color: #F37D1E;
    cursor: pointer;
    border-radius: 6px;
    height: 48px;
    display: block;
}
.contactUs_forms .btn-forms:hover{
	background:#F37D1E;
	color: #fff;
}
.contactUs_form_ftr {
    text-align: center;
    padding: 20px 0 0;
    color: #fff;
    border-top: 1px solid #fff;
    margin: 30px auto 0;
       max-width: 760px;
    font-size: 18px;

}

.contactUs_forms .form-control {
    background-color: inherit;
    border: none;
    border-bottom: 1.16px solid #FFFFFF;
    border-radius: 0px;
    padding: 5px 0 10px;
    color: #fff;
}
.contactUs_forms .form-control::placeholder{
	color: #fff!important;
	opacity: 1;
}
.contactUs_forms select option{
	color: #000!important;
}
.contactUs_forms .form-control:focus{
	outline: none;
}
.contactUs_forms .wpcf7-form-control-wrap {
    margin-bottom: 22px;
    display: block;
}


.inner_banner{
  position:relative;
  width:100%;
/*   height:664px; */
  overflow:hidden;
}
.inner_banner_img{
	height: auto!important;
}
.inner_banner_img .inner_banner_image{
	position: static!important;
}

/* Image Tag */
.inner_banner_image{
/*   position:absolute; */
  inset:0;
  width:100%;
  height:100%;
}

.inner_banner_image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Dark Overlay */
.inner_banner_overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.05) 15%,
    rgba(0,0,0,0.70) 70%
  );
  z-index:1;
	display: none;
}

/* Container */
.inner_banner .container{
  position:relative;
  z-index:2;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

/* Content */
.inner_banner_content{
  max-width:580px;
  color:#fff;
}

.inner_banner_title{
  font-size:36px;
  line-height:1.2;
  font-weight:900;
	text-shadow: 0 0 6px rgba(255, 0, 0, 0.35);
  text-transform:uppercase;
  margin-bottom:10px;
}

.inner_banner_subtitle{
  font-size:18px;
  line-height:1.5;
  margin-bottom:35px;
  color:#f2f2f2;
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.35);
}

/* Button */
.inner_banner_btn{
   display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 45px;
    padding: 0 25px;
    border-radius: 14px;
    background: #ff8a14;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s ease;

}

.inner_banner_btn:hover{
  background:#ff7700;
	text-decoration: none;
}

.heading_bg_color {
    text-align: center;
}
.heading_bg_color .head-section-title {
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 15px 35px 10px;
    background: #FFF5E9;
    border-radius: 15px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .inner_banner{
/*     height:500px; */
  }

  .inner_banner_container{
    justify-content:center;
    text-align:center;
  }

  .inner_banner_content{
    text-align:center;
  }

  .inner_banner_title{
    font-size:40px;
  }

  .inner_banner_subtitle{
    font-size:22px;
  }
}

@media(max-width:576px){

  .inner_banner{
/*     height:420px; */
  }

  .inner_banner_container{
    padding:0 20px;
  }

  .inner_banner_title{
    font-size:28px;
  }

  .inner_banner_subtitle{
    font-size:16px;
    margin-bottom:25px;
  }

  .inner_banner_btn{
    min-width:170px;
    height:52px;
    font-size:20px;
  }
}


/* =========================
   CASE STUDY
========================= */

.case_study{
    width:100%;
	padding: 80px 0;
}

.case_study_card{
    background:#FFF5E9;
    border-radius:28px;
	box-shadow: 0px 8.65px 8.65px 0px #00000040;

    display:flex;
    align-items:center;
    justify-content:space-between;

    overflow:hidden;
    position:relative;

    padding:0px 45px 0 45px;

    box-shadow:0 8px 18px rgba(0,0,0,0.12);
}

/* =========================
   CONTENT
========================= */

.case_study_content{
    width:48%;
/*     padding-bottom:35px; */
}

.case_study_title{
    font-weight: 600;
	font-size: 23.77px;
	line-height: 21.64px;
	color:#364153;
    margin-bottom:28px;
}

.case_study_desc{
   font-weight: 400;
	font-size: 15.46px;
	line-height: 21.64px;
	color: #4A5565;
    max-width:580px;
}

/* =========================
   ACTIONS
========================= */

.case_study_actions {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    width: max-content;
    padding: 14px 18px;
    border-radius: 60px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
/*     position: absolute;
    bottom: 40px; */
}

.case_study_views{
    display:flex;
    align-items:center;
    gap:10px;

    min-width:110px;
    height:54px;

    padding:0 24px;

    border:2px solid #f28a1a;
    border-radius:40px;

    color:#f28a1a;
    text-decoration:none;

    font-size:22px;
    font-weight:700;
}

.case_study_icon{
    width:54px;
    height:54px;

    border-radius:50%;

    background:#f28a1a;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    transition:0.3s ease;
}
.case_study_icon svg {
    width: 34px;
    height: auto;
}
.case_study_icon:hover{
    transform:translateY(-2px);
}

/* =========================
   IMAGE
========================= */

.case_study_image{
    width:42%;
    position:relative;
    text-align:right;
}

.case_study_image img {
    width: 100%;
    max-width: 470px;
    display: block;
    margin-left: auto;
    height: 400px;
    object-fit: contain;
}
.case_study_arrow_mobile{
	display: none;
}
/* Arrow Button */

.case_study_arrow{
    position:absolute;
    top:15px;
    right:15px;

    width:62px;
    height:62px;

    border-radius:50%;

    background:#f28a1a;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:38px;
    font-weight:300;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .case_study_card{
        flex-direction:column;
        padding:40px 30px;
        text-align:center;
    }

    .case_study_content{
        width:100%;
        padding-bottom:0;
    }

    .case_study_desc{
        max-width:100%;
    }

    .case_study_actions{
        margin:35px auto 0;
    }

    .case_study_image{
        width:100%;
        margin-top:40px;
        text-align:center;
    }

    .case_study_image img{
        margin:auto;
    }
	.case_study_arrow_mobile{
		display: flex;
	}
	.case_study_arrow{
		display: none;
	}
}

@media(max-width:576px){

    .case_study_card{
        border-radius:18px;
        padding:30px 20px;
    }

    .case_study_title{
        font-size:28px;
    }

    .case_study_desc{
        font-size:16px;
    }

    .case_study_actions{
        gap:12px;
        padding:12px;
    }

    .case_study_views{
        min-width:auto;
        height:46px;
        padding:0 18px;
        font-size:18px;
    }

    .case_study_icon{
        width:46px;
        height:46px;
    }

    .case_study_arrow{
        width:52px;
        height:52px;
        font-size:30px;
    }
	
}
.research_submit .head-section-title {
    text-transform: inherit;
    color: #364153;
	font-size: 30px;
}

.women_rides{
	padding: 80px 0 100px;
}

.blog_items_grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.blog_items_card{
    background:#fff;
    border-radius:14px;
    padding: 15px 28px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
	    transition: 0.3s ease;
	background: linear-gradient(180deg, rgba(255, 222, 195, 0.2) 0%, rgba(243, 125, 30, 0.2) 74.52%);

}
.blog_items_card:hover{
	transform: translateY(-4px);
}
.blog_items_image{
   width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 30px;
}

.blog_items_image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.blog_items_content{
    padding-top:18px;
}

.blog_items_title{
    font-size:24px;
    margin-bottom:14px;
    line-height:1.4;
	color: #364153;
}

.blog_items_title a{
    text-decoration:none;
    color:#222;
}

.blog_items_desc{
    font-size:15px;
    line-height:1.8;
    color:#666;
    margin-bottom:22px;
}

.blog_items_btn{
    width:100%;
    height:54px;
    background:#fff;
    color:#F37D1E;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    font-weight:700;
	font-size: 17.59px;
}
.blog_items_btn:hover{
	text-decoration:none;
	background-color: #F37D1E;
	color: #fff;
}

.blog_items_view_more_wrap{
    margin-top:40px;
}

.blog_items_view_more{
    width:100%;
    height:62px;
    border:none;
    background:#f58220;
    color:#fff;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
	border-radius: 10px;
}
.blog_items_view_more:hover{
	background-color: #d76509;
}

@media(max-width:768px){

    .blog_items_grid{
        grid-template-columns:1fr;
    }

}
.courses_section_inner {
    padding: 80px 0;
}
.courses_section_inner .courses_card {
/*     flex: 1 1 calc(25% - 19px);
    max-width: calc(25% - 19px); */
}
.courses_section_inner .courses_card .courses_card_thumbs {
/*     height: 400px; */
}

.course_learn{
	margin-bottom: 150px;
}
.course_learn:first-child {
    margin-top: 77px!important;
}

    /* Header */
    .course_learn_header{
      display:flex;
      align-items:center;
      gap:14px;
      margin-bottom:22px;
	     position: relative;	
    }
.whatsApp_course {
    position: absolute;
    right: 0;
}
.whatsApp_course img {
    width: 150px;
    height: auto;
}
    .course_learn_icon{
      width:42px;
      height:42px;
      background:#fff4eb;
      border-radius:8px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#f57c20;
      font-size:22px;
    }

    .course_learn_title{
      font-size:25px;
      font-weight:700;
      color:#F37D1E;
      line-height:31px;
    }

    .course_learn_line{
      width:100%;
      height:1px;
      background:#dddddd;
      margin-bottom:26px;
    }

    /* Top Info */
    .course_learn_info{
      display:flex;
      align-items:center;
      gap:80px;
      margin-bottom:28px;
      flex-wrap:wrap;
    }

    .course_learn_info_item{
      display:flex;
      align-items:center;
      gap:12px;
      color:#64748B;
      font-size:18px;
      font-weight:400;
    }

    .course_learn_info_item i{
      color:#f57c20;
      font-size:34px;
    }

    /* Main Layout */
    .course_learn_wrapper{
      display:grid;
      grid-template-columns:1.1fr 0.9fr;
      gap:34px;
      align-items:start;
    }
.course_learn_image {
    width: 100%;
    height: 299px;
}
    /* Left Image */
    .course_learn_image img{
      width:100%;
      height:100%;
      object-fit:cover;
      border-radius:28px;
      display:block;
		box-shadow: 0px 45.46px 90.92px -21.82px #00000040;

    }

    /* Right Content */
    .course_learn_content_title{
      color:#F37D1E;
      font-size:25px;
		line-height: 31px;
      font-weight:700;
      margin-bottom:10px;
    }

    .course_learn_list{
      list-style:none;
    }
.course_learn_list ul{
	list-style-type: none;
	padding: 0px; 
	margin: 0px;
}
    .course_learn_list li{
      font-size:18px;
		line-height: 23px;
      color:#64748B;
      padding:18px 0;
      border-bottom:1px solid #D6D6D6;
      font-weight:400;
    }

    /* Responsive */
    @media(max-width:900px){

      .course_learn_wrapper{
        grid-template-columns:1fr;
      }

      .course_learn_title{
        font-size:28px;
      }

      .course_learn_content_title{
        font-size:30px;
      }

      .course_learn_list li{
        font-size:20px;
      }

      .course_learn_info_item{
        font-size:20px;
      }
    }

.learn_contact_section {
    padding: 80px 0;
}
.learn_contact_section .anm-content-grid {
    grid-template-columns: 588px;
    margin: auto;
    justify-content: center;
}
.course_learn_video {
    position: relative;
	height: 300px;
    overflow: hidden;
    border-radius: 20px;
	    box-shadow: 0px 45.46px 90.92px -21.82px #00000040;
}
.course_learn_video video{
    width:100%;
    height:100%;
    display:block;
	object-fit: cover;
}

.course_learn_play_icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    border-radius:50%;
/*     background:rgba(0,0,0,.5); */
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:2;
}

.course_learn_play_icon.hide{
    display:none;
}
.course_learn_play_icon svg {
    width: 27px;
    height: auto;
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0px 10px;
}


/* FAQ CARD */
.faq-card {
    background: #ffffff;
	background: linear-gradient(180deg, rgba(255, 222, 195, 0.2) 0%, rgba(243, 125, 30, 0.2) 74.52%);

    border-radius: 10px;
    padding: 26px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}

/* QUESTION */
.faq-title {
    font-size: 18px;
    font-weight: 600;
    color: #0A0A0A;
    margin: 0 0 10px;
    line-height: 28px;
}

/* ANSWER */
.faq-content {
    font-size: 16px;
    line-height: 24px;
    color: #4A5565;
}

.faq-content p:last-child {
    margin-bottom: 0;
}
.offer_city{
	padding: 80px 0 40px;
}
.uxc-city-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
	    margin: 20px 0 40px;
}

.uxc-city-card {
    height: 42px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 10px;
    display: flex;
	gap: 10px;
    align-items: center;
    padding: 0 16px;
    color: #364153;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    transition: 0.2s ease;
	box-shadow: 0px 1px 2px -1px #0000001A;

}

.uxc-city-card:hover {
    border-color: #ff8c2f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	text-decoration: none;
}

.uxc-city-icon {
    color: #ff7a1a;
    margin-right: 10px;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .uxc-city-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .uxc-city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .uxc-city-grid {
        grid-template-columns: 1fr;
    }
}

.uxc-city-more {
    text-align: center;
}
.uxc-city-more p {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #6A7282;
	margin: 0px;
}
.uxc-city-more p a{
	color: #F37D1E;
}

.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.floating_btn .contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.floating_btn .text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}
.instructor_section{
	padding: 80px 0 80px;
	background: #FFF5E9;
}
.head-section-head.head-section-head-instructor {
    margin-top: 80px;
	    text-align: center;
}
.head-section-head.head-section-head-instructor .head-section-para {
    font-size: 29px;
    line-height: 41px;
    margin-bottom: 40px;
    color: #64748B;
}
    .instructor_cards_wrapper{
      display:flex;
      gap:28px;
      flex-wrap:wrap;
      justify-content:center;
    }

    .instructor_card{
      position:relative;
         width: calc(33.333% - 20px);
		max-width: calc(33.333% - 20px);
    flex: 1 1 calc(33.333% - 20px);
      height:400px;
      border-radius:18px;
      overflow:hidden;
      cursor:pointer;
      background:#000;
    }

    .instructor_card img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      transition:transform 0.5s ease;
    }

    .instructor_card:hover img{
      transform:scale(1.08);
    }

    .instructor_card_overlay{
      position:absolute;
      inset:0;
      background: linear-gradient(0deg, #09090B 0%, rgba(9, 9, 11, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
		    height: 60%;
    bottom: 0;
    top: unset;
    }

    .instructor_card_content{
      position:absolute;
      left:22px;
      bottom:24px;
      z-index:2;
      color:#fff;
		width: calc(100% - 60px);
    }
.instructor_card_experience {
    color: #FF8904;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 20px;
}
    .instructor_card_name{
      font-size:20px;
      font-weight:600;
      margin-bottom:2px;
      line-height:28px;
    }

    .instructor_card_role{
      font-size:16px; 
		line-height: 24px;
      color:#D4D4D8;
      font-weight:400;
    }

.instructor_linkended_url {
    position: absolute;
    right: -28px;
    width: 30px;
    bottom: 0px;
    height: 30px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
.instructor_linkended_url svg {
    width: 21px;
    height: 22px;
    color: #000;
    position: relative;
    top: 2px;
}

.learn_with_us{
	padding: 30px 0 60px;
}
    .learn_with_us_slider_wrap{
        padding: 20px 0 20px 20px;
        overflow: hidden;
    }

    .learn_with_us_slider{
        width: 100%;
        overflow: visible;
		
    }
.learn_with_us_slide_text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 10px;
    color: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(189, 189, 189, 0.180018) 12.98%, rgba(0, 0, 0, 0.73) 100%);
	    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

    .learn_with_us_slide{
        border-radius: 24px;
		overflow: hidden;
        background: #fff;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
		
    }
 .learn_with_us_slider_wrap .swiper-slide{
	 width: 500px!important;
	 padding: 10px 0px 30px;
}

    .learn_with_us_slide img{
        width: 100%;
        height: 322px;
        object-fit: cover;
        display: block;
		transition:all 0.6s;
    }
.learn_with_us_slide:hover img{
	transform: scale(1.1);
}

    /* Optional spacing like screenshot */
    .learn_with_us_slider .swiper-slide{
        width: 32%;
    }

    @media(max-width: 991px){
        .learn_with_us_slider .swiper-slide{
            width: 48%;
        }

        .learn_with_us_slide img{
            height: 320px;
        }
    }

    @media(max-width: 767px){
        .learn_with_us_slider .swiper-slide{
            width: 85%;
        }
		.learn_with_us_slide_text h2 {
			font-size: 14px;
		}

        .learn_with_us_slide img{
            height: 260px;
        }
    } 

.build_feet_section {
    padding: 80px 0 0;
}

    .rpdx-main-wrapper{
      width:100%;
		margin-bottom: 96px;
    }

    .rpdx-heading{
    	font-weight: 600;
		font-size: 34.4px;
		line-height: 41.18px;
		text-transform: uppercase;
		margin-bottom: 14px;
		color: #F37D1E;

    }

    .rpdx-description{
      font-weight: 400;
		font-size: 19.66px;
		line-height: 20.7px;
		color: #4A5565;
      max-width:604px;
		margin-bottom: 40px;
    }

    .rpdx-card-box{
      background:#fff;
      border-radius:58px;
		box-shadow: 0px 20.78px 20.78px 0px #00000040;
     
      overflow:hidden;
    }

    .rpdx-image-holder{
      width:100%;
     }

    .rpdx-image-holder img{
      width:100%;
      display:block;
      object-fit:cover;
    }

  .ultfn-main-wrap{
      width:100%;
    }

    .ultfn-card-box{
      background:#fff;
      border-radius:32px;
      padding:26px 28px 34px;
      text-align:center;

      box-shadow: 0px 11.97px 47.88px 0px #00000014;

    }

    .ultfn-title{
    font-weight: 600;
	font-size: 41.9px;
	line-height: 95.76px;
	text-align: center;
		color: #364153;
		text-transform: uppercase;
		margin-bottom: 11px;

    }

    .ultfn-content{
    font-weight: 400;
	font-size: 29.93px;
	line-height: 44.89px;
	text-align: center;
		color: #4A5565;
      margin-bottom:34px;
      font-weight:400;
    }

    .ultfn-image-wrap{
      width:100%;
      border-radius:28px;
      overflow:hidden;
      background:#ddd;
    }

    .ultfn-image-wrap img{
      width:100%;
      display:block;
      object-fit:cover;
    }
.support_us_page_sec {
    padding: 60px 0;
}
.learn_contact_section .head-section-title {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.workforce_section {
    padding: 100px 0 50px;
}
.workforce_logos {
    display: flex;
    justify-content: center;
    gap: 80px;
	padding: 60px 0 120px;
}
.workforce_logos img{
	box-shadow: 0px 4.86px 8.5px 2.43px #00000045;
    border-radius: 25px;
	width: 224px;
 }
.workforce_logos img:nth-child(2){
	transform: scale(1.4);
}
.workforce_image {
    text-align: center;
}
.workforce_image img{
    box-shadow: 0px 21.09px 21.09px 0px #00000040;
	border-radius: 37px;

}
.workforce_section .head-section-title {
    max-width: 604px;
    margin-left: auto;
    margin-right: auto;
}
.workforce_section .container, 
.build_feet_section .container, 
.support_us_page_sec .container{
	max-width: 909px;
}


/**start responsive**/
@media only screen and (max-width: 1080px){
	.container {
        width: 100%;
        max-width: 100%;
    }
.uhs-main-wrapper {
/*     height: 481px; */
}	
.uhs-stats-row {
    gap: 30px;
    position: static;
 }	
.courses_sec_bx {
    padding: 20px 10px;
    gap: 25px;
}	
.courses_card {
    flex: 1 1 calc(50% - 26px);
    max-width: calc(50% - 26px);
}	
.courses_card_thumbs {
    height: 480px;
}
.partners-container {
    gap: 00px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.partners-left {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}
	.partners-right {
    width: 100%;
    gap: 20px;
    justify-items: center;
		margin-bottom: 20px;
}
.blogNews .small-news-card {
    transition: .3s;
    align-items: baseline;
    flex-direction: column;
}
    .insight_news_container {
        grid-template-columns: repeat(3, 1fr);
    }	
}
@media only screen and (max-width: 860px){
	.main-navbar{
		display: none;
	}
.mobile_trigger_icon {
    display: block !important;
    flex: 1;
	cursor: pointer;
}
.site-logo, .header-lang {
    flex: 1;
	    justify-content: end;
}	
.mobile_trigger_icon svg {
    width: 20px;
    height: auto;
}
nav.main-navbar.active {
    display: block;
	    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
}	
nav.main-navbar.active ul
 {
    display: flex;
    flex-direction: column;
}	
nav.main-navbar.active li {
    width: 100%;
	        text-align: center;
}	
	nav.main-navbar.active .container{
		padding: 0px;
	}	
.header-lang a {
    font-size: 12px;
 }	
.header-lang {
    gap: 8px;
}

    .uhs-main-heading {
        font-size: 24px;
        line-height: 1;
    }	
    .uhs-sub-heading {
        font-size: 14px;
        margin-bottom: 15px;
    }	
.uhs-fixed-content {
        left: 15px;
        right: 15px;
        width: 100%;
        max-width: 100%;
        transform: inherit;
        top: 50px;
    }
.uhs-btn {
        padding: 10px 15px;
        margin-bottom: 25px;
    }	
    .uhs-stats-row {
        gap: 20px;
        flex-wrap: wrap;
    }	
.uhs-single-stat h3 {
        font-size: 18px;
    }	
.uhs-single-stat p {
        font-size: 10px;
        margin-bottom: 0px;
    }
.our_stories {
    padding: 50px 0;
}	
.our_stories .primary_heading h2, 
.partners-left h2, 
.blogNews .section-title, 
.head-section-title{
    font-size: 20px;
	        margin-bottom: 20px;
        line-height: 30px;
	
}	
.stories-section:before, .stories-section:after {
    width: 141%;
    height: 86px;
    top: -61px;
    left: -81px;
}
.stories-section:before, .stories-section:before {
    width: 141%;
    height: 86px;
    top: -61px;
    left: -81px;
}	
.stories-section:after {
    bottom: -61px;
    top: unset;
}	
.map_home {
    padding: 0px 0 50px;
}
.map_home_p p {
    font-size: 16px;
    line-height: 28px;
}
/*     .courses_card_thumbs {
        height: 216px;
    } */
.courses_sec_bx {
        padding: 20px 10px;
        gap: 20px;
    }	
.courses_overlay h3 {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
}
.courses_content p {
    font-size: 13px;
    line-height: 20px;
    color: #444;
    margin: 10px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.courses_main_btn {
    gap: 2px;
    font-size: 14px;
    padding: 8px 16px;
}
.courses_bottom_btn {
    margin-top: 24px;
    margin-bottom: 14px;
}
.partners-section {
    padding: 20px 0px 50px;
}	
.partners-right {
        display: inline-flex;
        flex-wrap: wrap;
	        justify-content: center;
    }	

.partners-container {
        gap: 00px;
     }
.partners-section .container > .text-center {
    margin: 38px 0 0px !important;
}	
	.blogNews{
		padding: 30px 0px;
	}	
	.left-news .news-image {
    height: auto;
 }
    .blogNews .news-image img {
        height: 256px;
    }	
.blogNews .news-content h3 {
        font-size: 18px;
    }	
    .blogNews .small-image img {
        height: 100%;
    }	
.blogNews .small-image {
    width: 100%;
    flex: none;
    height: 113px;
}
.blogNews .right-news {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}
    .blogNews .small-content h4 {
        font-size: 14px;
    }	
    .blogNews .small-news-card {
        flex: 1 1 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }	
.blogNews .small-news-card:nth-child(3) {
    display: none;
}	
.blogNews .small-content p {
    font-size: 14px;
    line-height: 22px;
    color: #64748B;
    margin: 0px;
}	
.blogNews .section-title {
        margin-bottom: 24px;
    }	
    .press_news {
        grid-template-columns: repeat(2, 1fr);
    }	
.press_news_card:nth-child(3), .press_news_card:nth-child(4) {
    display: none;
}
.press_news_logo img {
    width: 100%;
    height: auto;
    object-fit: scale-down;
}	
.press_news_item {
    height: 230px;
}
.insight_news_container {
        grid-template-columns: repeat(2, 1fr);
    }
.insight_news_container .insight_news_card:nth-child(3) {
    display: none;
}
.insight_news_content {
    padding: 10px;
}	
    .insight_news_card {
        min-height: 222px;
		height: 222px;
		border-radius: 10px;
    }	
.insight_news_author {
    font-size: 8px;
    margin-bottom: 2px;
}	
.insight_news_meta {
    font-size: 8px;
    gap: 5px;
}
.insight_news_title {
        font-size: 16px;
        line-height: 22px;
	margin-bottom: 10px;
    }
.insight_news_bottom {
    gap: 6px;
    padding-top: 10px;
}	
.insight_news_item {
    font-size: 8px;
	}
.insight_news_item svg {
    width: 13px;
}
.insight_news .courses_main_btn {
    margin-top: 20px;
}	
.anm-main-wrapper {
    padding: 50px 0px 50px;
}	
.anm-top-heading p {
    font-size: 16px;
    line-height: 25px;
 }	
	.anm-form-card{
		border-radius: 10px;
	}
	.anm-form-header{
		    padding: 15px;
	}	
.anm-form-body {
    padding: 30px 15px 0px;
}	
.anm-submit-btn {
    height: 46px;
    font-size: 15px;
}
.site-footer-column:nth-child(1) {
    order: 1;
}	
/**inenr**/
.courses_section_inner {
    padding: 40px 0;
}
.courses_section_inner .courses_card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
}	
.courses_section_inner .courses_card .courses_card_thumbs {
    height: 216px;
}	
.head-section-head {
    margin: 0 0 30px;
}	
.learn_with_us_slider_wrap .swiper-slide {
    width: 300px !important;
    padding: 10px 0px 30px;
}
    .learn_with_us_slide img {
        height: 180px;
    }	
.learn_with_us {
    padding: 30px 0 0px;
}	
.head-section-head .head-section-para {
    font-size: 16px;
    line-height: 22px;
  }	
.instructor_cards_wrapper {
    gap: 15px;
}	
.head-section-head .head-section-para {
/*     color: #64748B; */
}
	
.instructor_card {
    width: calc(50% - 20px);
	max-width: calc(50% - 20px);
    flex: 1 1 calc(50% - 20px);
    height: 224px;
    border-radius: 10px;
}
.instructor_card_content {
    left: 10px;
    bottom: 10px;
}	
.instructor_card_experience, 
	.instructor_card_role{
    font-size: 10px;
    margin-bottom: 3px;
    line-height: 14px;
}	
.instructor_card_name {
    font-size: 15px;
    margin-bottom: 2px;
    line-height: 19px;
}	
.head-section-head.head-section-head-instructor .head-section-para {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
    max-width: 300px;
}
.head-section-head.head-section-head-instructor a img {
    width: 150px;
}
    .course_learn_title {
        font-size: 20px;
    }	
.course_learn_icon {
    width: 35px;
    height: 35px;
}
.course_learn_header {
    gap: 10px;
    margin-bottom: 10px;
}	
.course_learn_line {
    margin-bottom: 20px;
}	
.course_learn_info_item svg {
    width: 25px;
	        flex: none;
}
    .course_learn_info_item {
        font-size: 14px;
        gap: 4px;
        flex: 1;
    }	
.course_learn_info {
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.course_learn_image {
    height: 235px;
}
.course_learn_content_title {
        font-size: 18px;
    }
.course_learn_list li {
        font-size: 16px;
        padding: 10px 0;
    }	
.course_learn {
    margin-bottom: 50px;
}
    .uxc-city-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
		gap: 6px;
    }	
.uxc-city-more p {
    max-width: 256px;
    margin-left: auto;
    margin-right: auto;
}
.faq-card {
    border-radius: 5px;
    padding: 20px 15px;
}	
.faq-title {
    font-size: 16px;
    line-height: 20px;
}
.learn_contact_section {
    padding: 50px 0;
}
.learn_contact_section .anm-content-grid {
    grid-template-columns: auto;
}
.floating_btn {
    bottom: 10px;
    right: 00px;
}	
.inner_banner {
/*         height: 320px; */
    }	
    .inner_banner_title {
        font-size: 20px;
    }	
	    .inner_banner_btn {
        min-width: 170px;
        height: 43px;
        font-size: 14px;
			    border-radius: 6px;
    }
.workforce_section {
    padding: 50px 0;
}
.workforce_logos {
    gap: 40px;
    padding: 30px 0 80px;
}	
.workforce_logos img {
  
    border-radius: 10px;
    width: 85px;
}	
.workforce_image img {
    border-radius: 10px;
}	
.build_feet_section {
    padding: 30px 0 0;
}
.rpdx-heading {
    font-size: 20px;
    line-height: 24px;
}
.rpdx-description {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 30px;
}	
.rpdx-card-box {
    border-radius: 10px;
}
.rpdx-main-wrapper {
    margin-bottom: 60px;
}	
.support_us_page_sec {
    padding: 20px 0;
}	
.ultfn-card-box {
    border-radius: 10px;
    padding:30px 10px;
}	
.ultfn-title {
    font-size: 20px;
    line-height: 24px;
}
.ultfn-content {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 14px;
}
.ultfn-image-wrap {
    border-radius: 10px;
}	
    .case_study_title {
        font-size: 18px;
        line-height: 20px;
    }	
    .case_study_card {
        border-radius: 10px;
        padding: 30px 20px 0px;
    }	
    .case_study_arrow {
        width: 46px;
        height: 46px;
        font-size: 23px;
		left: 50%;
        transform: translateX(-50%);
        top: -33px;
    }	
	.case_study_arrow svg {
    width: 27px;
}
    .case_study_image {
        position: relative;
        bottom: -15px;
    }	
.case_study {
    padding: 50px 0;
}
.women_rides {
    padding: 50px 0;
}	
.blog_items_title {
    font-size: 18px;
    margin-bottom: 8px;
}
.blog_items_desc {
    font-size: 14px;
    line-height: 20px;
    color: #666;
    margin-bottom: 14px;
}	
.blog_items_btn {
    height: 50px;
    font-size: 16px;
}	
.blog_items_view_more {
    height: 50px;
    font-size: 18px;
    border-radius: 6px;
}
.top-header {
    box-shadow: 0px 0px 5px #ccc;
}	
.anm-main-wrapper-page {
    padding: 50px 0px;
}
.anm-main-wrapper-page .anm-content-grid {
    display: grid;
    grid-template-columns: auto;
}	
}


/* ===== Animation Base ===== */
.fade {
  opacity: 0;
  transition: all 0.8s ease-out;
}
/* ===== Directions ===== */
.fade-top {
  transform: translateY(-50px);
}
.fade-bottom {
  transform: translateY(50px);
}
.fade-left {
  transform: translateX(-50px);
}
.fade-right {
  transform: translateX(50px);
}
/* ===== When visible ===== */
.fade.show {
  opacity: 1;
  transform: translate(0, 0);
}


.arn-section{
	padding:40px 0 0;
	overflow:hidden;
}
/* Main Heading */
.arn-title {
    text-align: center;
    font-size: 160px;
	font-size: 7vw;
    font-weight: 700;
    line-height: 1;
    text-transform: lowercase;
    letter-spacing: -2px;
    color: #f47a1f;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.24) 0%, rgb(252 223 199 / 0%) 19.42%, rgb(255 169 99 / 0%) 0.88%, #f37d1e 65.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
	margin-bottom:0;
}
.arn-subtitle{
    text-align: center;
    color: #f47a1f;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-top: -10px;
    text-transform: uppercase;
}
img.arn-photo.img-fluid.w-100 {
    display: block;
    margin-top: 80px;
}
.arn-row-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.arn-row-col-5 {
    flex: none;
    width: 400px;
}
.arn-row-col-7{
	flex: 1;
}
/* Left image collage */
.arn-visual-wrap{
	position:relative;
	height:420px;
	margin-top:60px;
}

.arn-photo{
 position:static;
}
/* Stats Area */
.arn-stats-box{
	margin-top:60px;
	position:relative;
	padding:30px;
	overflow: hidden;
}
.arn-stats-box::before{
	content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#dddddd 1px, transparent 1px), linear-gradient(90deg, #dddddd 1px, transparent 1px);
    background-size: 30px 33px;
    opacity: .7;
    z-index: 0;
    left: -8px;
}
.arn-stat{
	position:relative;
	z-index:2;
	padding:20px 10px;
}
.arn-number {
    color: #f47a1f;
    font-size: 46px;
    font-weight: 600;
    line-height: 1;
}
.arn-text{
	color:#f47a1f;
	font-size:18px;
	font-weight:500;
	margin-top:8px;
}

.gd-testimonial-section{
    padding:60px 0px;
    background:#fff;
}

.gd-swiper{
    padding-bottom:80px;
}

.gd-slide{
    display:flex;
    justify-content:center;
	    padding-bottom: 180px;
}

.gd-card{
    width:320px;
    min-height:428px;
    background: linear-gradient(116deg, rgba(255, 229, 208, 0.106) 0%, rgba(243, 125, 30, 0.2) 65.92%);
    border-radius:9px;
    text-align:center;
    position:relative;
    padding:20px 22px 120px;
    overflow:visible;
}

.gd-title{
    color:#f47c20;
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
    text-transform:uppercase;
}

.gd-stars{
    margin-bottom:20px;
    font-size:22px;
    letter-spacing:4px;
	    display: flex;
    justify-content: center;
}

.gd-star-active{
    color:#f7b500;
}

.gd-star-inactive{
    color:#7d7d7d;
}

.gd-content{
    color:#f47c20;
    font-size:14px;
    line-height:1.5;
    text-align:left;
}

.gd-content p{
    margin-bottom:18px;
	color: #F37D1E;
	font-size: 14px;
	line-height: 16px;
}

.gd-image-wrap{
    position:absolute;
    bottom:-180px;
    left:50%;
    transform:translateX(-50%);
    width:220px;
}

.gd-image-wrap img{
    width:100%;
    display:block;
}

/* Navigation */
.gd-swiper .swiper-button-next,
.gd-swiper .swiper-button-prev{
    color:#f47c20;
}

.gd-swiper .swiper-pagination-bullet-active{
    background:#f47c20;
}
.gd-cta-sec {
    background: #F37D1E;
    padding: 29px 20px 20px;
    font-weight: 400;
    font-size: 36px;
/*     line-height: 37.37px; */
    text-align: center;
    color: #fff;
}
/* Responsive */
@media(max-width:768px){

    .gd-card{
        width:280px;
        padding:18px 18px 110px;
    }

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

    .gd-image-wrap{
        width:190px;
        bottom:-75px;
    }
}

.newsLetter_sec {
    padding: 80px 0 20px;
    border-top: 1px solid #ccc;
}
.newsletter_forms_main {
    max-width: 600px;
    margin: auto;
}
.newsletter_forms_wrap{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
	    align-items: end;
}
.newsletter_forms-input {
    flex: 1;
}
.newsletter_forms-input .form-control {
    margin: 0;
    border: none;
    padding: 13px 0 10px;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
}
.newsletter_forms-input .form-control:focus{
	outline: none;
}
.newsletter_forms_wrap .courses_main_btn {
    flex: none;
/*     width: 120px; */
    height: 50px;
    border: none;
    border-radius: 0px;
	cursor: pointer;
}
.newsletter_forms p {
    text-align: center;
    margin: 40px 0px;
    color: #64748B;
}
.newsletter_forms p a{
	color: inherit;
	text-decoration: underline;
}

.delivery-card{
    display:flex;
	padding: 7px;
    min-height:360px;
	height: 100%;
    background:#FFF5E9;
    border-radius:6px;
    overflow:hidden;
    box-shadow: 0px 8.7px 8.7px 0px #00000040;

}
.delivery-card:hover .delivery-card__image img{
    transform:scale(1.08);
}
.delivery-card__content{
    width:50%;
    padding:15px;
}

.delivery-card__image{
    width:50%;
    background:#fff;
}
.delivery-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition:transform .6s ease;
}
.delivery-card__tags{
    display:flex;
    gap:5px;
    margin-bottom:25px;
}

.delivery-card__tag{
    background:#f58220;
    color:#fff;
    font-size:8px;
    font-weight:600;
    padding:3px 8px;
    border-radius:3px;
    text-transform:uppercase;
    line-height:1;
}
.delivery-card__text ul, .delivery-card__text ol {
    padding-left: 20px;
}
.delivery-card__title{
       margin: 0 0 15px;
    color: #f58220;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}
.delivery-card__subtitle {
    color: #5f5f5f;
    font-size: 10px;
    text-transform: inherit;
    margin-bottom: 15px;
    letter-spacing: 0;
}
.delivery-card__text{
    color:#4A5565;
    font-size:15px;
    line-height:1.6;
    margin:30px 0px;
}
.delivery-card__text p, .delivery-card__text li{
	 color:#4A5565;
    font-size:15px;
    line-height:1.6;
}

.delivery-card__btn {
    display: inline-block;
    background: #f58220;
    color: #fff;
    padding: 10px 13px;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
}
.delivery-card__btn:hover{
    background:#e26d0b;
    color:#fff;
	 text-decoration: none;
}
.delivery-row {
    display: flex;
    gap: 30px;
	flex-wrap: wrap;
}
.delivery-col {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
}
.job_delivery_cat {
    padding-bottom: 80px;
}

.map_home_inner .map_home_p {
    margin: 50px 0 80px;
}
.map_home_inner .map_home_p p{
	color: #9F9FA9;
    font-weight: 400;
    font-size: 20.55px;
    line-height: 32px;
}

/* ===== SECTION ===== */
.uc-training-section{
    padding:80px 0px;

}
.uc-training-wrap{
	padding: 0 0 0 40px;
}
/* ===== SWIPER ===== */
.uc-training-slider{
    overflow: visible;
	
}
.uc-training-slider .swiper-slide{
    width: 350px!important;
	 flex-shrink:0;
}
/* ===== CARD ===== */
.uc-training-card{
    position:relative;
	width: 350px;
    height:380px;
    border-radius:28px;
    overflow:hidden;
    cursor:pointer;
}

/* IMAGE */
.uc-training-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

/* OVERLAY */
.uc-training-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.65) 0%,
        rgba(0,0,0,.25) 40%,
        rgba(0,0,0,0) 100%
    );
    z-index:1;
}

/* TITLE */
.uc-card-content{
    position:absolute;
    left:20px;
    right:20px;
    bottom:22px;
    z-index:2;
}

.uc-card-title{
    color:#fff;
    font-size:22px;
    font-weight:700;
    line-height:1.3;
    margin:0;
}

/* HOVER EFFECT */
.uc-training-card:hover img{
    transform:scale(1.08);
}

.uc-training-card:hover{
/*     transform:translateY(-8px); */
    transition:.4s ease;
}

/* NAVIGATION */
.uc-training-slider .swiper-button-next,
.uc-training-slider .swiper-button-prev, 
.learn_with_us_slider .swiper-button-next,
.learn_with_us_slider .swiper-button-prev, 
.scootySwiper .swiper-button-next,
.scootySwiper .swiper-button-prev, 
.behindMovementSwiper .behindMovement-next,
.behindMovementSwiper .behindMovement-prev, 
.swiper-button-next, 
.swiper-button-prev{
    width:52px!important;
    height:52px!important;
    border-radius:50%;
    background:#ffffff;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    color:#222!important;
}

.uc-training-slider .swiper-button-next:after,
.uc-training-slider .swiper-button-prev:after, 
.learn_with_us_slider .swiper-button-next:after,
.learn_with_us_slider .swiper-button-prev:after, 
.scootySwiper .swiper-button-next:after,
.scootySwiper .swiper-button-prev:after, 
.behindMovementSwiper .behindMovement-next:after,
.behindMovementSwiper .behindMovement-prev:after, 
.swiper-button-next:after, 
.swiper-button-prev:after{
    font-size:18px!important;
    font-weight:700;
	color: #000;
}
.storiesSwiper .swiper-button-next:after, 
.storiesSwiper .swiper-button-prev:after{
   color: #fff!important;
}
.swiper-pagination-bullets {
    text-align: center;
	padding-top: 40px;
}
.swiper-pagination-bullet {
    border: 2px solid #F37D1E!important;
    background-color: #fff!important;
    width: 20px!important;
    height: 20px!important;
	opacity: 1!important;
}
.swiper-pagination-bullet-active{
	background-color: #F37D1E!important;
}
/* RESPONSIVE */
@media(max-width:768px){

    .uc-training-card{
        height:320px;
    }

    .uc-card-title{
        font-size:18px;
    }
}

.meetWomenGallery .learn_with_us_slide img{
	box-shadow: 0px 25.43px 25.43px 0px #00000040;
   height: 518px;
}
/* Unique Stats Section */
.ux-stats-wrapper {
   
    background: #fff;
    padding: 35px 0px;
    border-top: 2px solid #bdbdbd;
    border-bottom: 2px solid #bdbdbd;
   
}
.ux-stats-wrap{
	 display: flex;
    justify-content: space-around;
    align-items: center; 
	flex-wrap: wrap;
}
.ux-stat-box {
    text-align: center;
    min-width: 150px;
}

.ux-stat-icon {
    font-size: 34px;
    color: #65748b;
    margin-bottom: 10px;
}

.ux-stat-title {
    font-size: 15px;
    color: #666;
    font-weight: 500;
    margin: 0 0 8px;

}

.ux-stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #f37021;
    line-height: 1;
  
}
.row-arms{
	align-items: baseline;
}
.uc-training-slider .swiper-wrapper {
/*     justify-content: center; */
}


/* OVERLAY */
.abpopup_overlay{
    position:fixed;
    inset:0;
    background:rgb(0 0 0 / 91%);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

/* OPEN */
.abpopup_overlay.active{
    display:flex;
}

/* BOX */
.abpopup_box{
    width:850px;
    max-width:95%;
    display:flex;
	gap: 0px;
    border-radius:18px;
    overflow:hidden;
    transform:scale(0.8);
    animation:abpopup_zoom .35s ease forwards;
    box-shadow:0 20px 60px rgba(0,0,0,0.3);
}

/* LEFT */
.abpopup_left{
    width:50%;
    position:relative;
}

.abpopup_left img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* RIGHT */
.abpopup_right{
    width:50%;
    padding:30px;
    background: linear-gradient(180deg, #FFDEC3 0%, #F37D1E 74.52%);
    color:#fff;
    position:relative;
}

.abpopup_right h2{
    margin:0;
    text-align:center;
    font-size:26px;
	text-shadow: 0px 2px 0px #00000040;
}
.abpopup_right h2 span{
	color:#F37D1E;
}
.abpopup_right p{
    text-align:center;
    font-size:13px;
    margin:10px 0 20px;
}

/* CLOSE */
.abpopup_close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:26px;
    cursor:pointer;
}

/* FORM */
.abpopup_form input {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 14px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #fff;
    outline: none;
    border-radius: 0px;
}
.abpopup_form input::placeholder{
    color:#fff;
    opacity:0.9;
}

/* BUTTON */
input.abpopup_btn{
    width:100%;
	max-width: 230px;
    padding:12px;
    border:none;
    background:#fff;
    color:#ff6a00;
    font-weight:700;
    border-radius:6px;
    cursor:pointer;
	box-shadow: 0px 6.22px 9.33px -1.87px #0000001A;
	    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

}

/* FOOTER */
.abpopup_footer{
    margin-top:18px;
    font-size:12px;
    text-align:center;
    opacity:0.9;
	position: absolute;
    bottom: 10px;
    width: 100%;
    border-top: 1px solid #fff;
    padding-top: 10px;
	left: 0;
    right: 0;
    max-width: 90%;
    margin: auto;
}
.abpopup_form .wpcf7-not-valid-tip{
	text-align: left;
}

/* ANIMATION */
@keyframes abpopup_zoom{
    to{ transform:scale(1); }
}
.abpopup_overlay.active{
    display:flex !important;
}

.container-wrap {
  width: 100%;
  display: block;
  margin: 0 auto;
}	
.masonry {
  column-count: 3;
  column-gap: 10px;
}
@media (min-width: 768px) {
  .masonry {
    column-count: 3;
  }
}
@media (min-width: 992px) {
  .masonry {
    column-count: 4;
  }
}
@media (min-width: 1199px) {
  .masonry {
    column-count: 4;
  }
}
.masonry .brick {
  box-sizing: border-box;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  counter-increment: brick-counter;
	box-shadow: 0px 23.74px 47.49px -11.4px #00000040;
    border-radius: 35px;
	overflow: hidden;
	margin-bottom: 10px;
}
.masonry img {
 width: 100% !important;
    height: 100% !important;
	max-height: 320px;
    object-fit: cover;
    display: block;
    margin: 0px !important;
}
.ax-single-post{
    background:#fdfdfd;
    overflow:hidden;
}

/* Hero */

.ax-post-hero{
    position:relative;
    height:650px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ax-hero-image{
    position:absolute;
    inset:0;
}

.ax-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ax-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.35)
    );
}

.ax-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
    text-align:center;
    color:#ffffff;
}

.ax-post-cats a{
    display:inline-block;
    padding:10px 18px;
    margin:5px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#ffffff;
    text-decoration:none;
    font-size:13px;
}

.ax-hero-content h1{
    font-size:60px;
    line-height:1.15;
    margin:25px 0;
    font-weight:800;
    color:#ffffff;
}

.ax-post-meta{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    color:rgba(255,255,255,.9);
}

/* Content */

.ax-post-container{
    max-width:850px;
    margin:-100px auto 80px;
    position:relative;
    z-index:5;
    padding:0 15px;
}

.ax-post-content{
    background:#ffffff;
    padding:60px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.ax-post-content p{
    font-size:19px;
    line-height:2;
    color:#475569;
    margin-bottom:25px;
}

.ax-post-content h2{
    font-size:38px;
    margin:50px 0 20px;
    color:#0f172a;
}

.ax-post-content h3{
    font-size:30px;
    margin:40px 0 15px;
    color:#0f172a;
}

.ax-post-content img{
    width:100%;
    border-radius:20px;
    margin:35px 0;
}

.ax-post-content blockquote{
    margin:40px 0;
    padding:35px;
    border-left:5px solid #F37D1E;
    background:#f5f3ff;
    border-radius:15px;
    font-size:24px;
    font-style:italic;
}

/* Tags */

.ax-tags{
    margin-top:40px;
}

.ax-tags a{
    display:inline-block;
    padding:10px 18px;
    margin:5px;
    border-radius:50px;
    background:#eef2ff;
    color:#F37D1E;
    text-decoration:none;
    transition:.3s;
}

.ax-tags a:hover{
    background:#F37D1E;
    color:#ffffff;
}

/* Author */

.ax-author-box{
    margin-top:60px;
    background:#ffffff;
    padding:35px;
    border-radius:25px;
    display:flex;
    gap:25px;
    align-items:center;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.ax-author-avatar img{
    border-radius:50%;
}

.ax-author-info h4{
    margin:0 0 10px;
    font-size:24px;
    color:#0f172a;
}

.ax-author-info p{
    margin:0;
    color:#475569;
    line-height:1.8;
}

/* Responsive */

@media(max-width:768px){

    .ax-post-hero{
        height:500px;
    }

    .ax-hero-content h1{
        font-size:34px;
    }

    .ax-post-container{
        margin:-60px 15px 50px;
    }

    .ax-post-content{
        padding:25px;
    }

    .ax-author-box{
        flex-direction:column;
        text-align:center;
    }
}


/* ===== Page Template ===== */

.ax-page-wrapper{
    background:#fdfdfd;
}

.ax-page-hero{
    position:relative;
    height:450px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.ax-page-banner{
    position:absolute;
    inset:0;
}

.ax-page-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ax-page-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.75)
    );
}

.ax-page-title-wrap{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    padding:20px;
}

.ax-page-title-wrap h1{
    font-size:58px;
    margin-bottom:15px;
    font-weight:800;
}

.ax-page-breadcrumb{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    font-size:15px;
}

.ax-page-breadcrumb a{
    color:#fff;
    text-decoration:none;
}

.ax-page-container{
    max-width:1000px;
    margin:-80px auto 80px;
    padding:0 20px;
    position:relative;
    z-index:10;
}

.ax-page-content{
    background:#fff;
    padding:60px;
    border-radius:30px;
    box-shadow:0 15px 60px rgba(0,0,0,.08);
}

.ax-page-content p{
    font-size:18px;
    line-height:1.9;
    color:#475569;
    margin-bottom:25px;
}

.ax-page-content h2{
    font-size:28px;
    color:#0f172a;
    margin:5px 0 20px;
}

.ax-page-content h3, 
.ax-page-content h4, 
.ax-page-content h5, 
.ax-page-content h6{
    font-size:22px;
    color:#0f172a;
    margin:5px 0 15px;
}

.ax-page-content ul,
.ax-page-content ol{
    margin:20px 0 20px 25px;
}

.ax-page-content li{
    margin-bottom:10px;
    line-height:1.8;
}

.ax-page-content img{
    width:100%;
    height:auto;
    border-radius:20px;
    margin:30px 0;
}

.ax-page-content blockquote{
    padding:35px;
    margin:35px 0;
    background:#f1f5f9;
    border-left:5px solid #6c63ff;
    border-radius:15px;
    font-size:22px;
    font-style:italic;
}

.ax-page-content table{
    width:100%;
    border-collapse:collapse;
    margin:30px 0;
}

.ax-page-content table th,
.ax-page-content table td{
    padding:15px;
    border:1px solid #e2e8f0;
}

@media(max-width:768px){

    .ax-page-hero{
        height:320px;
    }

    .ax-page-title-wrap h1{
        font-size:36px;
    }

    .ax-page-container{
        margin:-40px auto 50px;
    }

    .ax-page-content{
        padding:25px;
    }

    .ax-page-content h2{
        font-size:28px;
    }

    .ax-page-content h3{
        font-size:22px;
    }
}

.video-embed {
    width: 100%;
    height: 100%;
}
.video-embed iframe{
	 width: 100%;
    height: 100%;
}
/**start media quiery**/
@media only screen and (max-width: 1080px){
.uhs-main-heading {
    font-size: 40px;
}
.uhs-main-wrapper .whatsAppSec img {
    width: 130px;
    height: auto;
}
.uhs-sub-heading {
    font-size: 20px;
    margin-bottom: 05px;
    line-height: 24px;
    max-width: 200px;
}
.arn-title {
	font-size: 90px;
}
.arn-subtitle {
    font-size: 20px;
}
.arn-number {
    font-size: 36px;
}
.arn-text {
    font-size: 16px;
}
.our_stories {
    padding: 50px 0 30px;
}
.our_stories .primary_heading h2 {
    font-size: 28px;
    line-height: 30px;
}	
.head-section-title {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 30px;
}
	.head-section-head{
		 margin: 0 0 30px;
	}	
.head-section-title p, 
.partners-left p{
		margin-bottom: 0px;
	}	
body.home .map_home {
    padding: 00px 0 40px;
}

    .courses_sec_bx {
        padding: 20px 10px;
        gap: 25px;
        max-width: 800px;
    }	
.courses_bottom_btn {
    margin-top: 20px;
    margin-bottom: 0px;
    gap: 40px;
}
.courses_bottom_btn .courses_main_btns {
    font-size: 18px;
}	
.courses_bottom_btn .courses_main_btns svg {
    width: 24px;
    height: 24px;
}

.blogNews .right-news > div:last-child {
    display: none;
}
.press_news_sec, 
.insight_news, 
.partners-section,
.blogNews, 
.courses_section, 
.anm-main-wrapper, 
.gd-testimonial-section,
.instructor_section, 
.offer_city,
.faq-section, 
.map_home, 
.uc-training-section,
.wpartner-section,
.case_study, 
.women_rides, 
.courses_section_inner{
		padding: 40px 0;
}
.insight_news_card {
    border-radius: 10px;
    min-height: 380px;
}
.insight_news_title {
    font-size: 20px;
    margin-bottom: 0px;
}
.anm-instagram-btn a {
    height: 46px;
    max-width: 320px;
    font-size: 18px;
    margin: 20px auto 20px;
}
.anm-instagram-btn svg {
    width: 23px;
    height: auto;
}
.site-footer-wrapper {
    gap: 20px;
}

.site-footer-wrapper .site-footer-column:nth-child(1) {
    min-width: 100%;
    max-width: 100%;
}
.site-footer-wrapper .site-footer-column:nth-child(1) ul.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 20px;
    max-width: 413px;
}
.site-footer-wrapper .site-footer-column:nth-child(1) ul.site-footer-links li {
    flex: 1 1 40%;
    max-width: 40%;
}
.site-footer {
    padding: 148px 60px 15px;
    background-position: right;
}
.course_learn_info {
    gap: 20px;
}
.course_learn {
    margin-bottom: 50px;
}	
.course_learn_title {
    font-size: 22px;
    margin: 0px;
}
.whatsApp_course img {
    width: 120px;
    height: auto;
}
.course_learn_info_item {
    font-size:16px;
	    gap: 8px;
}
.course_learn_info_item svg, .course_learn_info_item img {
    width: 30px;
    height: 30px;
    object-fit: scale-down;
}
.course_learn_content_title {
    font-size: 20px;
    line-height: 21px;
    margin-bottom: 6px;
}
.course_learn_list li {
    font-size: 16px;
    line-height: 17px;
    padding: 16px 0;
}
	.gd-card{
		margin: auto;
	}
	.gd-title{
		font-size: 18px;
	}	
.gd-cta-sec {
    padding: 20px;
    font-size: 22px;
    line-height: 28px;
}
.learn_with_us {
    padding: 0px 0 40px;
}
.head-section-head.head-section-head-instructor {
    margin-top: 30px;
	margin-bottom: 0px;
}
.head-section-head.head-section-head-instructor .head-section-para {
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 20px;
}
.whatsAppSec img {
    width: 130px;
}
.faq-card {
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}
.head-section-head .head-section-para {
    font-size: 18px;
    line-height: 28.77px;
}
.uc-training-card {
    width: 270px;
    height: 300px;
    border-radius: 15px;
}
.uc-training-slider .swiper-slide {
    width: 270px;
}
.uc-card-title {
    font-size: 18px;
}
div.meetWomenGallery .swiper-slide {
    width: 500px !important;
}
div.video-slide {
    height: 321px;
}
.newsletter_forms_wrap .courses_main_btn {
    width: 130px;
}
    .case_study_card {
        padding: 40px 30px 0px!important;
    }
.blog_items_grid {
    gap: 10px;
}
.blog_items_card {
    border-radius: 10px;
    padding: 10px 15px;
}
.blog_items_image {
   
    border-radius: 20px;
}
.blog_items_title {
    font-size: 18px;
    margin-bottom: 10px;
}
.blog_items_desc {
    font-size: 14px;
     margin-bottom: 15px;
}
.blog_items_btn {
    height: 46px;
    border-radius: 6px;
    font-size: 16px;
}
.swiper-pagination-bullet {
    width: 16px !important;
    height: 16px !important;
}
	.contactUs_innner{
		padding: 40px 0 0px;
	}
.contactUs_card_list {
    padding: 30px 20px;
    border-radius: 20px;
}
.contactUs_forms {
    padding: 80px 0 0;
    max-width: 600px;
}
.atm-contact-item {
    flex: 1 1 30%;
    min-width: auto;
    max-width: 30%;
}
.atm-contact-grid {
    gap: 60px 20px;
justify-content: center;
}
.atm-heading-box h2 {
    font-size: 28px;
}
.ax-page-hero {
    height: 350px;
}
.ax-page-title-wrap h1 {
    font-size: 28px;
}
.ax-page-content,
.ax-post-content {
    padding: 40px;
    border-radius: 20px;
}
.ax-post-hero {
    height: 400px;
}
.ax-hero-content h1 {
    font-size: 30px;
    margin: 0 0 20px;
}	
}

@media only screen and (max-width: 860px){
.partner-item {
        display: inline-flex;
        width: 150px;
        height: 150px;
}
.partners-section {
    background: linear-gradient(178deg, rgb(255 223 198) 0%, #EF9840 50.96%, #EF9840 100%);
}
    .blogNews .right-news {
        flex: 1;
        display: flex;
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
   }
	.blogNews .right-news > div{
		flex: 1;
	}
    .blogNews .small-news-card {
        flex: 1 1 calc(100% - 5px);
        max-width: calc(100% - 5px);
    }	
    .blogNews .small-image {
        height: 213px;
    }
	.site-footer-column:nth-child(1) {
		order: 0;
}
	.site-footer-wrapper{
		        flex-direction: row-reverse;
	}
	
.site-footer-column {
    flex: 1 1 44%;
    min-width: inherit;
    max-width: 44%;
}
    .courses_section_inner .courses_card {
        flex: 1 1 calc(48% - 10px);
        max-width: calc(48% - 10px);
    }
	    .courses_section_inner .courses_card .courses_card_thumbs {
        height: 400px;
    }
	.course_learn_info{
		flex-wrap: wrap;
	}
    .course_learn_info_item {
        flex: 1 1 48%;
        max-width: 48%;
    }
	    .course_learn_image {
        height: auto;
    }
    .instructor_card {
        width: calc(33% - 20px);
        max-width: calc(33% - 20px);
        flex: 1 1 calc(33% - 20px);
        height: 224px;
        border-radius: 10px;
    }
	.delivery-col {
		flex: 1 1 calc(100% - 15px);
		max-width: calc(100% - 15px);
	}
.delivery-col:nth-child(even) .delivery-card {
    flex-direction: row-reverse;
}
    .blog_items_image {
        height: 400px;
    }
    .blog_items_card {
        padding: 30px;
    }
/* .storiesSwiper .swiper-slide:hover {
    width: 240px !important;
} */
/* .storiesSwiper .swiper-slide:hover .story-card {
    height: 360px;
} */
}	

	@media only screen and (max-width: 520px){
    .uhs-main-wrapper {
/*         height: 208px; */
    }	
   .uhs-main-heading {
        font-size: 20px;
	           margin-bottom: 15px;
    }
 .uhs-main-wrapper .whatsAppSec img {
        width: 122px;
        height: auto;
    }
.uhs-fixed-content {
        top: 20px;
    }
		body.home .uhs-fixed-content, 
		.uhs-fixed-whatsApp .uhs-fixed-content{
			bottom: 0px; 
			top: unset;
			left: 0;
        right: 0;
        text-align: center;
		}
		.uhs-fixed-whatsApp .uhs-fixed-content{
			bottom: 10px;
		}
		body.home .uhs-main-wrapper .whatsAppSec img, 
		.uhs-fixed-whatsApp .uhs-fixed-content .whatsAppSec img{
        width: 169px;
        height: auto;
    }
.uhs-stats-row {
    width: 227px;
    padding-top: 10px;
}
    .uhs-sub-heading {
        font-size: 14px;
        margin-bottom: 05px;
        line-height: 20px;
        max-width: 150px;
    }
.arn-title {
        font-size: 40px;
   }
    .arn-subtitle {
        font-size: 16px;
        letter-spacing: 0px;
    }	
.arn-row-col-5 {
    flex: none;
    width: 100%;
    margin: auto;
}
.arn-photo {
/*     width: 200px; */
    margin: auto;
    text-align: center;
    display: block;
}
.arn-stats-box {
    margin-top: 0px;
    position: relative;
    padding: 10px;
    overflow: hidden;
}
.row-arms {
	align-items: baseline;
    flex-direction: initial !important;
    justify-content: center;
    text-align: center;
}
.row.row-arms .col-6 {
    flex: 1 1 45%;
    max-width: 45%;
}
.arn-number {
        font-size: 26px;
    }	
.arn-text {
        font-size: 14px;
text-align: center;
    }
.arn-sta {
    text-align: center;
	padding: 20px 0;
}
.courses_bottom_btn .courses_main_btns::before {
    width: 22px;
    height: 22px;
}
.courses_bottom_btn .courses_main_btns:hover::before {
    height: 42px;
}
.blogNews .right-news > div {
    flex: 0 0 100%;
}
.blogNews .small-image img,
.blogNews .small-image {
    height: 256px !important;
}
.program-partner .services-grid {
    grid-template-columns: repeat(1, 1fr) !important;
}
.anw-quote-card {
    flex-direction: column;
}
.anw-bottom-line {
    width: 200px;
    height: 30px;
}
.anw-quote-card .anw-image-box {
    width: 100%;
}
.our_stories {
        padding: 20px 0 30px;
    }
    .map_home_p p {
        font-size: 14px;
        line-height: 24px;
    }
    .our_stories .primary_heading h2 {
        font-size: 22px;
        line-height: 24px;
    }
    .head-section-title {
        font-size: 22px;
        line-height: 24px;
        margin: 0 0 5px;
    }
	.head-section-head .head-section-para {
        font-size: 16px;
        line-height: 20px;
    }
    .courses_sec_bx {
        padding: 20px 0px;
        gap: 15px;
    }
    .courses_card {
        flex: 1 1 calc(50% - 9px);
        max-width: calc(50% - 9px);
    }
	.courses_card_thumbs {
        height: 211px;
    }
.courses_overlay h3 {
        font-size: 14px;
        line-height: 15px;
	font-weight:500;
      
    }

    .courses_bottom_btn {
        gap: 20px;
                flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
.courses_bottom_btn .courses_main_btns {
        font-size: 16px;
        text-align: center;
        justify-content: center;
    }
.our_stories .primary_heading h2, .partners-left h2, .blogNews .section-title, .head-section-title {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 30px;
    }
    .blogNews .small-content h4 {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .blogNews .small-image {
        height: 113px;
    }
.masonry .brick {
    border-radius: 13px;
   }
    .blogNews .news-content h3 {
        font-size: 16px;
    }
    .insight_news_card {
        border-radius: 10px;
        min-height: 250px;
    }
    .insight_news_title {
        font-size: 16px;
        margin-bottom: 0px;
    }
.anm-instagram-btn a {
        height: 37px;
        max-width: 246px;
        font-size: 14px;
        margin: 20px auto 20px;
    }
    .site-footer {
        padding: 128px 15px 15px;
		        background-size: 100% 100%;
      
    }
.site-footer-logo-box {
    gap: 15px;
}
.site-footer-logo-box img {
    width: 90px;
}
    .site-footer-title {
        margin-bottom: 10px;
        font-size: 16px;
    }
.site-footer-links li {
    margin-bottom: 10px;
}
    .site-footer-wrapper .site-footer-column:nth-child(1) ul.site-footer-links {
        gap: 0px 0px;
        max-width: 100%;
        flex-direction: column;
		order:1;
    }
    .site-footer-wrapper .site-footer-column:nth-child(1) {
        min-width: 44%;
        max-width: 44%;
    }
.site-footer-column:last-child {
    flex: 1 1 100%;
    max-width: 100%;
    order: 2;
}

    .courses_section_inner .courses_card .courses_card_thumbs {
        height: 225px;
    }
        .courses_sec_bx {
            padding: 0px 0px;
        }

.course_learn_info_item {
                flex: 1 1 calc(47% - 10px);
        max-width: calc(47% - 10px);
        display: flex;
/*         flex-direction: column; */
        text-align: left;
        justify-content: flex-start;
        align-items: center;
    }
.uc-training-slider .swiper-button-next, .uc-training-slider .swiper-button-prev, .learn_with_us_slider .swiper-button-next, .learn_with_us_slider .swiper-button-prev, .scootySwiper .swiper-button-next, .scootySwiper .swiper-button-prev, .behindMovementSwiper .behindMovement-next, .behindMovementSwiper .behindMovement-prev, .swiper-button-next, .swiper-button-prev {
    width: 32px !important;
    height: 32px !important;
}
.uc-training-slider .swiper-button-next:after, .uc-training-slider .swiper-button-prev:after, .learn_with_us_slider .swiper-button-next:after, .learn_with_us_slider .swiper-button-prev:after, .scootySwiper .swiper-button-next:after, .scootySwiper .swiper-button-prev:after, .behindMovementSwiper .behindMovement-next:after, .behindMovementSwiper .behindMovement-prev:after, .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 14px !important;
}
.uhs-swiper-slider .swiper-button-next:after, .uhs-swiper-slider .swiper-button-prev:after {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #fff;
}
.whatsApp_course {
    position: static;
}
.course_learn_header {
    flex-wrap: wrap;
    justify-content: center;
}
.course_learn_info_item {
        font-size: 14px;
        line-height: 17px;
    }	
    .gd-title {
        font-size: 16px;
    }	
.gd-stars {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 18px;
}
.gd-content p {
    font-size: 12px;
    line-height: 18px;
}
    .gd-image-wrap {
        width: 190px;
        bottom: -105px;
    }
    .gd-cta-sec {
        padding: 10px;
        font-size: 16px;
        line-height: 22px;
        margin-top: -76px;
    }
		.gd-cta-sec br{
			display: none;
		}
.learn_with_us_slider_wrap {
    padding: 0px 0 00px 10px;
}
		.learn_with_us_slide{
			border-radius: 10px;
		}
.instructor_card {
        width: 150px;
        max-width: 150px;
        flex: 1 1 150px;
        height: 200px;
        border-radius: 10px;
    }
    .instructor_card_name {
        font-size: 12px;
    }
    .head-section-head.head-section-head-instructor .head-section-para {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px;
    }
		.uxc-city-card{
			font-size: 13px;
			padding: 0 10px;
		}
.faq-card {
        padding: 15px;
    }
.map_home_inner .map_home_p {
    margin: 0px 0 40px;
}
		.delivery-card{
			padding: 0px;
			    min-height: 260px;
		}
.delivery-card__content {
    padding: 10px;
}
.delivery-card__title {
    margin: 0 0 5px;
    font-size: 16px;
}
.delivery-card__text {
    font-size: 14px;
    margin: 10px 0px;
}
.delivery-card__text p, .delivery-card__text li {
    font-size: 11px;
}
.delivery-card__text p{
			display: -webkit-box;
			-webkit-line-clamp: 3;
			-webkit-box-orient: vertical;
			overflow: hidden;
			text-overflow: ellipsis;
		}
.delivery-card__text ul, .delivery-card__text ol {
    padding-left: 12px;
}
.delivery-card__btn {
    padding: 6px 7px;
    font-size: 8px;
}
    div.meetWomenGallery .swiper-slide {
        width: 320px !important;
    }
div.video-slide {
        height: 206px;
        border-radius: 20px;
    }
    .inner_banner {
/*         height: 243px; */
    }
.inner_banner.inner_banner_img {
    height: auto !important;
}
    .blog_items_image {
        height: 270px;
    }
    .contactUs_card_list {
        padding: 15px;
        border-radius: 10px;
        flex: 1 1 100%;
        max-width: 100%;
    }
.contactUs_card_hd h2 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
}
.contactUs_card_hd p {
    font-size: 14px;
}
.contactUs_card_action .whatsAppSec img {
    width: 126px;
}
.contactUs_card_action .contactUs_action_a {
    width: 124px;
    height: 36px;
    padding: 6px 10px;
    font-size: 11px;
}
.contactUs_form_ftr {
    padding: 20px 0 20px;
    margin: 20px auto 0;
    font-size: 16px;
}
.atm-contact-grid {
        gap:30px 00px;
        flex-direction: column;
	    text-align: left;
    }
    .atm-contact-item {
        flex: 1 1 100%;
        max-width: 100%;
        position: relative;
		padding-left: 60px;
    }
		.atm-icon-box{
			position: absolute;
			    left: 0;
		}
.atm-contact-item h4 {
    font-size: 18px;
}
.atm-contact-item a, .atm-contact-item p {
    font-size: 16px;
}
    .atm-heading-box h2 {
        font-size: 18px;
    }
.atm-social-icons svg {
    width: 28px;
    height: 28px;
}
.atm-social-icons {
    gap: 20px;
    margin-top: 0;
}	
.atm-media-wrapper {
    margin-top: 40px;
}
.atm-media-text {
    font-size: 16px;
}
    .site-footer-wrapper .site-footer-column:nth-child(1) ul.site-footer-links li {
        flex: 1 1 100%;
        max-width: 100%;
    }

.abpopup_box {
    width: 100%;
    max-width: 95%;
    flex-direction: column;
    margin: auto;
}
.abpopup_left {
    width: 100%;
}
.abpopup_right {
    width: 100%;
    padding: 30px;
}
.abpopup_left img {
    height: 160px;
}
}



/**start media code**/
@media only screen and (max-width: 1200px){
.inner_banner {
/*     height: 545px; */
}
    .uc-training-slider .swiper-slide {
        width: 270px !important;
    }
    .case_study_card {
        padding: 40px 40px 0px !important;
    }
.women_rides .courses_bottom_btn {
	margin-top: 40px;
}
   .courses_card {
        flex: 1 1 calc(30% - 26px);
        max-width: calc(30% - 26px);
    }
    .courses_card_thumbs {
        height: 248px;
    } 	
}

@media only screen and (max-width: 820px){
	.courses_card {
        flex: 1 1 230px;
        max-width: 230px;
    }
	.delivery-row{
		    justify-content: center;
	}
    .courses_card_thumbs {
        height: 297px;
    }
.storiesSwiper .swiper-slide:hover .story-card {
    height: 360px;
}
    .uhs-main-wrapper {
/*         height: 436px; */
    }	
body.home .uhs-main-wrapper {
        height: 481px;
    }	
   .courses_section_inner .courses_card .courses_card_thumbs {
        height: 348px;
    }
	 .inner_banner {
/*         height: 436px; */
    }
	.wpartner-logo-card {
        width: 82px;
        height: 58px;
    }
	.instructor_linkended_url {
		right: -38px;
		width: 20px;
		height: 20px;
	}
	.instructor_linkended_url svg {
		width: 14px;
		height: 14px;
	}
	.container-wrap {
		width: 440px;
	}
	.contactUs_cards {
		gap: 14px;
		justify-content: center;
	}
	.map_home_inner .map_home_p p, 
	.head-section-head .head-section-para{
		        font-size: 16px;
        line-height: 24px;
	}
  }

@media only screen and (max-width: 440px){
	.uhs-main-wrapper {
/*         height: 227px; */
    }
	.instructor_card_overlay{
		height: 90%;
	}
    body.home .uhs-main-wrapper {
        height: 204px;
    }
	img.arn-photo.img-fluid.w-100 {
    margin-top: 30px;
}
    .story-card {
        height: 381px;
    }	
	.storiesSwiper .swiper-slide{
		width: 200px !important;
	}
	.storiesSwiper .swiper-slide:hover {
		width: 220px !important;
	}
	    .storiesSwiper .swiper-slide:hover .story-card {
        height: 400px;
    }
	    .courses_card_thumbs {
        height: 177px;
    }
	    .courses_card {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
	  .partner-item {
        width: 90px;
        height: 90px;
		          padding: 4px;
    }
	.partners-right{
		gap: 10px;
	}
	.blogNews .right-news > div {
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
    }
	.blogNews .small-image img {
        height: 134px !important;
    }
    .blogNews .small-content p {
        display: none;
    }
	    .blogNews .small-image {
        height: auto !important;
    }
	.uhs-main-wrapper {
/*         height: 227px; */
    }
	.inner_banner {
/*         height: 248px; */
    }
	.courses_section_inner .courses_card .courses_card_thumbs {
        height: 232px;
    }
.case_study_image img {
    height: 330px;
}
    .container-wrap {
        width: 100%;
    }
}
body.home .uhs-main-wrapper{
	height: auto!important;
}
.heading_banner_h1 {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 9;
    background: #fff;
    padding: 5px 10px;
    border-radius: 13px;
	display: none;
}
.heading_banner_h1 .heading_banner_h1_tag{
	margin: 0px;
}