@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

:root {
 --primary: #1677f8;
  --darkBlack: #03101b;
  --black: #2d4151;
  --darkgray: #6f7075;
  --gray: #5e6166;
  --white: #fff;
  --yellow: #fffdaa;
  --orange: #ffb74b;

}

body {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.54px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}

input:focus {
  outline: 0;
}

.font_redhat {
  font-family: "Red Hat Display", sans-serif;
}

.font_dm {
  font-family: "DM Serif Display", serif;
}

.text_light {
  color: var(--black);
}

.text_dark {
  color: var(--darkBlack);
}

.text_white {
  color: var(--white);
}

.text_primary {
  color: var(--primary);
}

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

.text_orange {
  color: var(--orange);
}

.bg_primary {
  background: var(--primary);
}

.bg_dark {
  background-color: var(--darkBlack);
}
.bg_darkgray {
  background-color: var(--darkgray);
}

.bg_light {
  background: var(--black);
}

.bg_yellow {
  background: var(--yellow);
}
.bg_orange {
  background: var(--orange);
}

.btn_transparent {
  background: transparent;
  border: 0;
  padding: 0;
}

h1,
.h1 {
  font-size: 96px;
  line-height: 105px;
}

h2,
.h2 {
  font-size: 48px;
  line-height: 60px;
}

h3,
.h3 {
  font-size: 40px;
  line-height: 50px;
}

h4,
.h4 {
  font-size: 32px;
  line-height: 42px;
}

h5,
.h5 {
  font-size: 24px;
  line-height: 32px;
}

h6,
.h6 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}

h6.small,
.h6.small {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

p {
  font-size: 18px;
  line-height: 28px;
  color: var(--darkBlack);
  font-weight: 400;
}

p.small {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  font-weight: 400;
}

p.big {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.text_12 {
  font-size: 12px !important;
  line-height: 18px !important;
}

.text_14 {
  font-size: 14px !important;
  line-height: 22px !important;
}

.text_16 {
  font-size: 16px !important;
  line-height: 26px !important;
}

.text_18 {
  font-size: 18px !important;
  line-height: 30px !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.5s ease;
}

a:hover {
  color: inherit;
}

.fw_100 {
  font-weight: 100;
}

.fw_200 {
  font-weight: 200;
}

.fw_300 {
  font-weight: 300;
}

.fw_400 {
  font-weight: 400;
}

.fw_500 {
  font-weight: 500;
}

.fw_600 {
  font-weight: 600;
}

.fw_700 {
  font-weight: 700 !important;
}

.fw_900 {
    font-weight: 900 !important;
}

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

img {
  max-width: 100%;
}

.sec_padding {
  padding: 100px 0;
}
.sec_padding_top {
  padding-top: 100px;
}
.sec_padding_bottom {
  padding-bottom: 100px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-60 {
  margin-bottom: 60px;
}

.cmn_btn {
  display: inline-block;
  padding: 14px 25px;
  font-size: 14px;
  line-height: 18px;
  border-radius: 8px;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.5s ease;
}

.btn_white {
  background: var(--white);
  color: var(--darkBlack);
  border: 1px solid var(--white);
}

.btn_white:hover {
  background: transparent;
  color: var(--white);
  transition: 0.5s ease;
}

.btn_primary {
      display: inline-flex;
    align-items: center;
    justify-content: center;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  padding: 14px 25px;
  font-size: 14px;
  line-height: 18px;
  border-radius: 8px;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.5s ease;
}
.btn_primary img{
	margin-right:7px;
}
.btn_primary:hover {
  background: transparent;
  color: var(--primary);
  transition: 0.5s ease;
}

.btn_yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--darkBlack);
  border: 1px solid var(--yellow);
  padding: 14px 25px;
  font-size: 14px;
  line-height: 18px;
  border-radius: 8px;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.5s ease;
}

.btn_yellow:hover {
  background: transparent;
  color: var(--yellow);
  transition: 0.5s ease;
}

.btn_light {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 0;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 18px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.5s ease;
}

.btn_light:hover {
  background: #fff;
  color: var(--primary);
  transition: 0.5s ease;
}

.btn_primary.small {
  padding: 14px 20px;
  font-size: 12px;
  line-height: 16px;
}

.section_title {
  margin: 0 0 45px;
  text-align: center;
}


.banner_slider_content .btn_primary:hover {
    border-color: #1677f8 !important;
    color: #1677f8 !important;
}

/* header css start */

header {
  padding: 40px 48px;
  transition: 0.5s ease;
}

header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--white);
  padding: 24px 48px !important;
  box-shadow: 0 6px 15px rgba(64, 79, 104, 0.15);
  transition: 0.5s ease;
}


.header_wrap .navbar {
  background: transparent !important;
}

/* .header_wrap {
  padding: 40px 48px;
} */

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

.header_wrap .navbar_wrap .navbar-nav {
  gap: 50px;
    margin: 0 auto;
}

.header_wrap .navbar_wrap .nav-item .nav-link,
.country_dropdown .dropdown-toggle {
  color: var(--darkBlack);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  padding: 10px 0;
}

.header_wrap .navbar_wrap .nav-item .nav-link:hover {
  color: var(--black);
}

.header_right>ul {
  display: flex;
  gap: 0 15px;
  align-items: center;
}

.dropdown-toggle {
  padding-right: 10px !important;
}

.dropdown-toggle::after {
  border: 0;
  background-image: url(../images/dropdown-arrow.svg);
  width: 12px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translate(0, -50%);
}

.dropdown-menu {
  border-radius: 8px;
  border: 0;
  box-shadow: 0 0 4px #00000021;
}

.dropdown-menu li a {
  color: var(--black);
  font-size: 14px;
  line-height: 20px;
  padding: 8px 18px;
  font-weight: 600;
}

.country_dropdown {
  padding: 0 15px;
/*   border-left: 1px solid #0f0f0f3b; */
}

.country_dropdown .dropdown-toggle::after {
  right: 5px;
}

.mobile_dropdown_menu{
   display: none;
}

.navbar_wrap  .navbar-nav .menu-item{
	position: relative;
}
.navbar_wrap  .navbar-nav .menu-item .sub-menu{
	opacity: 0;
	visibility: hidden;
	        position: absolute;
	top: 100%;
    left: 0;
	    border-radius: 8px;
    border: 0;
    box-shadow: 0 0 4px #00000021;
	    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
	    z-index: 1000;
}
.navbar_wrap  .navbar-nav .menu-item:hover .sub-menu{
	opacity: 1;
	visibility: visible;
}
.navbar_wrap  .navbar-nav .menu-item:hover .sub-menu li a{
	color: var(--black);
    font-size: 14px;
    line-height: 20px;
    padding: 8px 18px;
    font-weight: 600;
	    width: 100%;
	text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.navbar_wrap  .navbar-nav .menu-item:hover .sub-menu li a:hover {
    color: #1e2125;
    background-color: #e9ecef;
}
.navbar_wrap .navbar-nav .menu-item.menu-item-has-children a{
	position:relative;
}
.navbar_wrap .navbar-nav .menu-item.menu-item-has-children > a:before{
	content: "";
	border: 0;
    background-image: url(../images/dropdown-arrow.svg);
    width: 12px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translate(0, -50%);
}
.header_right .country_dropdown .dropdown-menu[data-bs-popper] {
    top: 120%;
    width: 100%;
}
.header_right .country_dropdown .dropdown-toggle{
	box-shadow:none !important;
	outline:none !important;
	border:0 !important;
}
/* header css end */

/* index page css start */

/* banner css start */
.banner_slide_wrap {
  padding: 120px 0 150px;
/*   background-image: url(../images/banner-new-bg.jpg); */
  color: var(--white);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  min-height: 850px;
  display: flex;
  align-items: center;
}

.banner_slide_wrap.homeBanner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgb(0 0 0 / 0%) 0%, rgba(0, 0, 0, 0.5) 120%, #0000000d 100%);
  z-index: -1;
	display:block !important;
}

.banner_slide_wrap.homeBanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*   background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 60%, #000000eb 100%); */
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 0%) 40%, #000000db 100%);
  z-index: -1;
	display:block !important;
}


.banner_slide_wrap p {
  color: var(--white);
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 26px;
}

.banner_slider_content p {
  max-width: 700px;
 
}

.insight_banner  .banner_slider_content p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.banner_slider_content p.trainers {
    max-width: unset !important;
}

.banner_slider_content h1 {
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 70px;
  position: relative;
  z-index: 9;
}

.insight_banner_detail h1 {
    font-size: 48px !important;
}

.banner_slider_content h1 span {
  position: relative;
}

.banner_slider_content h1 b {
    font-weight: 200;
    font-size: 35px;
    line-height: 50px;
    display: inline-block;
    position: relative;
    top: -10px;
}

.team_engagement_banner_wrap .banner_slider_content h1 b {
    font-weight: 200;
    font-size: 30px !important;
    line-height: 50px;
    display: inline-block;
    position: relative;
    top: -10px;
}
/*.banner_slider_content h1 span::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: -4px;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*  width: 150%;*/
/*  height: 100%;*/
/*  background-image: url(http://wvnew.coaxcloud.com/wp-content/uploads/2024/10/highlight.svg);*/
/*  background-repeat: no-repeat;*/
/*  background-size: contain;*/
/*  z-index: -1;*/
/*  background-position: center;*/
/*}*/

.mobile_img_wrap {
  text-align: center;
}
.banner_slider_content .btn_primary:hover{
	border-color: #fff;
	color:#fff;
}

.banner_wrap .title .social_wrap ul li a {
  color: var(--black);
  transition: 0.5s ease;
}

.social_wrap ul li a {
  font-size: 24px;
}

.social_wrap ul li a:hover {
  color: var(--primary);
  transition: 0.5s ease;
}

.banner_left_wrap p {
  max-width: 650px;
}

.bannerSlider {
  position: relative;
}

.bannerSlider .swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  width: fit-content;
  padding: 12px 15px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bannerSlider .swiper-pagination-bullet {
  background: rgb(255 255 255 / 58%);
}

.bannerSlider .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.64);
}

/* banner css end */

/* insights sec start */
.insights_sec {
  padding: 80px 0;
}

.insights_box h5 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
}

.insights_box .img_wrap {
  height: 250px;
  margin: 0 0 24px;
  border-radius: 15px;
  overflow: hidden;
}


.insights_box .img_wrap img {
  transition: 0.5s ease;
}

.insights_box .img_wrap:hover img {
  transform: scale(1.01);
  transition: 0.5s ease;
}

.insights_box p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.insights_box .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* insights sec end */

/* training sec css start */

.training_sec {
  padding: 50px 0;
  margin-top: 100px;
  /*   background-image: url(../images/point-bg.jpg); */

}

.training_slider{
    padding-bottom: 30px;
}

.training_sec .title {
/*   max-width: 600px; */
  margin: 0 auto 50px;
}

.training_box {
  padding: 15px;
  text-align: center;
  border-radius: 24px;
  background: #E8F1FE;
  transition: 0.5s ease;
  height: 100%;
}

.training_box:hover {
  background: var(--primary);
  box-shadow: 0 0 4px #03101b21;
}
.training_box:hover h5,
.training_box:hover p,
.training_box:hover a{
	color: #fff;
}
.training_box:hover .img_wrap img{
	filter: brightness(0) invert(1);
}

.training_box .img_wrap {
  margin-bottom: 20px;
}

.training_box p {
  font-size: 14px;
  line-height: 20px;
  color: var(--black);
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
   height: 60px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.training_box a {
  color: var(--primary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  transition: 0.5s ease;
}

.training_box a:hover {
  color: var(--white);
  transition: 0.5s ease;
}

/* training sec css end */

.learn_wrapper {
  background: var(--primary);
  padding: 80px 0;
  overflow: hidden;
}

.learn_left_wrapper {
  max-width: 490px;
  position: relative;
  z-index: 10;
}

.learn_left_wrapper h2 {
  color: #fff;
  margin: 20px 0 10px;
}

.learn_left_wrapper p {
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin: 0 0 20px;
}
.learn_left_wrapper .btn_light{
  padding: 12px 18px;
    background: #fff;
    color: #000;
}
.learn_left_wrapper .btn_light:hover{
	background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.learn_mobile_img {
  text-align: center;
  position: relative;
  z-index: 9;
}

.learn_mobile_img:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: url(../images/circles.svg);
  background-repeat: no-repeat;
  background-size: 1000px;
  z-index: -1;
}

/* discover sec css start */

.discover_sec {
  padding: 80px 0;
}

.disover_box {
  background: #c7e8f3;
  padding: 60px;
  border-radius: 32px;
}

.discover_left_wrap ul {
  margin: 30px 0;
}

.discover_left_wrap ul li {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
}

.discover_left_wrap ul li span {
  font-weight: bold;
}

/* discover sec css end */

/* trusted partner sec start */
.trusted_partner_sec {
  padding: 100px 0 0;
}

.company_logo_wrap ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.trusted_partner_sec h3 {
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

/* .company_logo_wrap ul li .img_wrap {
  width: 144px;
} */

/* .company_logo_wrap ul li .img_wrap img {
  width:180px;
  height: 50px;
  object-fit: contain;
  padding: 0 20px;
} */
.company_logo_wrap ul li .img_wrap img {
    width: 170px;
    height: 60px;
    object-fit: contain;
    padding: 0 15px;
}



/* trusted partner css sec end */

/* courses sec css start */
.courses_sec {
  padding: 50px 0;
/*   background-image: url(../images/poplular-courses-bg.jpg); */
  background-size: cover;
}

.courses_box {
  /* padding: 10px; */
}

.courses_box>a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.courses_box .img_wrap {
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 0 15px;
}

.courses_box .img_wrap:hover img {
  transform: scale(1.02) rotate(2deg);
  transition: 0.5s ease;
}

.courses_box .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.5s ease;
}

.courses_box p {
  font-weight: 700;
}

.all_course_btn {
  max-width: 250px;
  width: 100%;
  margin: 30px auto;
}


.top_content_wrap{
    max-width: 840px;
    margin: 0 auto 60px;
    text-align: center;
}

.faq_wrapper{
    padding: 60px 0;
}

/*.accordian_wrapper{*/
/*    max-width: 960px;*/
/*    margin: 0 auto;*/
/*}*/

.accordian_wrapper .accordion .accordion-item{
    background: var(--bgGray);
    padding: 0;
    margin: 0 0 16px;
    border-radius: 12px;
    overflow: hidden;

}
.accordian_wrapper .accordion .accordion-item .accordion-header{
    
}
.accordian_wrapper .accordion .accordion-item .accordion-header .accordion-button{
    background: #E8F1FE;
    box-shadow: none;
    color: #03101b;
    font-size: 24px;
    font-weight: 400;
    padding: 28px 24px;
    line-height: 1;
    position: relative;
    box-shadow: none !important;
    border: 0 !important;
    outline: none !important;
}
/*.accordian_wrapper .accordion .accordion-item .accordion-collapse{*/

/*}*/
/*.accordian_wrapper .accordion .accordion-item .accordion-collapse .accordion-body{*/
/*    padding: 0 24px 24px;*/
/*}*/
.accordian_wrapper .accordion .accordion-item .accordion-collapse .accordion-body p{
    margin: 0;
}

.accordion-button::after{
    /*background-image: none;*/
    /*width: 1px;*/
    /*height: 18px;*/
    /*background: #000;*/
    /*border-radius: 3px;*/
    /*position: absolute;*/
    /*right: 33px;*/
    /*top: 28px;*/
    /*all: unset;*/
}

.accordion-button::after {
    content: '' !important;
    position: absolute !important;
    right: 16px !important;
    top: 13px !important;
    width: 48px !important;
    height: 48px !important;
    background-image: url(https://wvnew.coaxcloud.com/wp-content/uploads/2025/03/minus.svg) !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: unset;
}

.accordion-button:not(.collapsed)::before{
    background-image: none !important;
    display: none !important;
}

/*.accordion-button::before{*/
/*    content: "";*/
/*    background-image: none;*/
/*    width: 18px;*/
/*    height: 1px;*/
/*    background: #000;*/
/*    border-radius: 3px;*/
/*    position: absolute;*/
/*    right: 25px;*/
/*    top: 36px;*/
/*}*/

.accordion-button::before {
    content: "" !important;
    position: absolute !important;
    right: 16px !important;
    top: 13px !important;
    width: 48px !important;
    height: 48px !important;
    background-image: url(https://wvnew.coaxcloud.com/wp-content/uploads/2025/03/add.svg) !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/*.accordion-button:not(.collapsed)::after{*/
/*    background-image: none !important;*/
/*    display: none !important;*/
/*}*/

/* courses sec css end */

/* access sec css start */

.access_sec {
  margin: 100px 0;
/*   background-image: url(../images/point-bg.jpg); */
  background-size: cover;
}

.round_box_wrap {
  /* height: 880px; */
  position: relative;
}

.round_box_wrap>img {
  width: 100%;
  height: 820px;
  object-fit: contain;
}

.round_box_content {
  max-width: 650px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.round_box_content .logo_wrap {
  margin-bottom: 20px;
}

.round_box_content .btn_primary {
  margin-top: 20px;
}

/* access sec css start */

/* read sec css start */
.read_our_sec {
  padding: 80px 0;
}

.read_box {
  position: relative;
}

.read_box .img_wrap {
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 0 15px;
}

.read_box .img_wrap:hover img {
  transform: scale(1.02) rotate(2deg);
  transition: 0.5s ease;
}

.read_box .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.read_box p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.read_box .arrow_box {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
}

.read_box .arrow_box img {
  transition: 0.5s ease;
}

.read_box .arrow_box:hover img {
  transform: rotate(45deg);
  transition: 0.5s ease;
}

/* read sec css end */

/* client sec css start */

.client_sec {
  padding: 80px 0;
}

.client_box {
  background: #e8f1fe;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}

.client_box .img_wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 25px;
  border-radius: 50%;
}

.client_box .img_wrap img {
  width: 100%;
  height: 100%;
  
}

.client_box p:last-child {
  margin: 0;
}

/* client sec css end */

/* trainers sec css start */

.trainer_sec {
  padding-top: 80px;
  padding-bottom: 120px;
}

.trainer_box .img_wrap {
  height: 510px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.trainer_box h6 {
  color: var(--primary);
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}

.trainer_box h5 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 3px;
}

/* trainers sec css end */

/* footer sec css start */
footer {
  background: #1d2a34;
  /* margin-top: 100px; */
}

.sign_up_wrap {
  background: #0f2334;
  color: var(--white);
  padding: 80px 0;
}

.email_wrap {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.email_wrap .form_control {
  padding: 14px 20px;
  font-size: 14px;
  line-height: 16px;
  color: var(--black);
  border-radius: 8px;
  width: 100%;
  border: none;
}

.email_wrap .btn_primary {
  padding: 14px 20px;
  font-size: 14px;
  line-height: 16px;
}

.sign_up_wrap p {
  font-size: 16px;
  line-height: 24px;
}

.sign_up_wrap p span {
  color: #fffda8;
}

.footer_wrap {
  padding: 50px 0 30px;
}

.footer_wrap .footer_logo {
  max-width: 180px;
  margin: 0 0 20px;
}

.contact_us_wrap ul li {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact_us_wrap ul li a {
  color: var(--white);
  opacity: 1;
  font-size: 14px;
  line-height: 18px;
  transition: 0.5s ease;
}

.contact_us_wrap ul li a:hover {
  opacity: 0.8;
  transition: 0.5s ease;
}

.contact_us_wrap ul li h6 {
  font-size: 16px;
  line-height: 20px;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: "Red Hat Display", sans-serif;
}

.footer_wrap .footer_link h6 {
  color: #616a71;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  font-family: "Red Hat Display", sans-serif;
}

.footer_wrap .footer_link ul {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}

.footer_wrap .footer_link ul li a {
  color: #f5f7f7;
  font-size: 16px;
  line-height: 24px;
  transition: 0.5s ease;
}

.footer_wrap .footer_link ul li a:hover {
  color: var(--primary);
  transition: 0.5s ease;
}

.bottom_footer {
  padding: 30px 0 50px;
  border-top: 1px solid #ffffff24;
}

.read_slider .swiper-pagination,
.client_slider .swiper-pagination {
  display: none;
}

/* footer sec css end */

/* index page css end */


/* courses page css start */

.second_banner .banner_slide_wrap {
  background-image: url(../images/courses-banner.jpg);
}

.courses_slider_sec {
  padding-top: 80px;
}

.courses_slider {
  padding-bottom: 30px;
}

.courses_slider_box {
  text-align: center;
}

.courses_slider_box img {
  margin-bottom: 24px;
}

.our_courses_sec {
  padding: 80px 0;
}

.py_80 {
  padding: 80px 0;
}

.py_120 {
  padding: 120px 0;
}

.pt_80 {
  padding-top: 80px;
}

.pb_80 {
  padding-bottom: 80px;
}

.mb80 {
  margin-bottom: 80px;
}

.our_courses_tab ul {
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
    border: 0;
}

.our_courses_tab ul li .nav-link {
  padding: 16px 24px;
  background: #DDF1F8;
  color: var(--darkBlack);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  border-radius: 30px;
  transition: 0.5s ease;
}

.our_courses_tab ul li .nav-link.active {
  background: var(--primary);
  color: var(--white);
}

.our_courses_tab ul li .nav-link:hover {
  background: var(--primary);
  color: var(--white);
  transition: 0.5s ease;
}

/* courses page css end */

/* courses detail page css start */
.courses_detail_banner .banner_slide_wrap {
  background-image: url(../images/courses-detail-banner.jpg);
}

.overview_box {
  padding: 64px;
  background: #C7E8F3;
  color: var(--darkBlack);
  border-radius: 32px;
}

.overview_box h4 {
  font-weight: 700;
  margin-bottom: 60px;
}

.courses_overview_detail h6 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
}

.learning_overview ul li {
  position: relative;
  margin-bottom: 24px;
  padding-left: 36px;
  font-size: 16px;
  line-height: 24px;
}

.learning_overview ul li::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/tick-circle.svg);
  background-repeat: no-repeat
}

.form_group label {
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 5px;
  color: var(--black);
}

.form_group input,
.form_group textarea,
.form_group select{
  padding: 14px 24px;
  font-size: 14px;
  line-height: 20px;
  color: var(--black);
  border: 2px solid #F5F7F7;
  background-color: #e9e9e9;
  border-radius: 8px;
  width: 100%;
  appearance: none;
	outline: 0 !important;
	box-shadow:none !important;
}
.form_group select{
	background: #e9e9e9 url(../images/dropdown-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
}
.checkbox_wrap {
  display: flex;
  gap: 10px;
}

.checkbox_wrap label {
  font-size: 14px;
  line-height: 20px;
  width: calc(100% - 20px);
	    display: flex;
}

.checkbox_wrap span,
.checkbox_wrap p{
	display:block;
	width: 100%;
}

.checkbox_wrap .form-check-input {
  margin-top: 1px;
	margin-right: 8px;
	width: 20px;
    height: 20px;
}

.checkbox_wrap .wpcf7-list-item{
	    margin: 0;
}

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

.whats_new_box .whats_new_img {
  width: 128px;
  height: 105px;
  border-radius: 10px;
}

.whats_new_box .whats_new_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whats_new_box .whats_new_content {
  width: calc(100% - 128px);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
}

.whats_new_box .whats_new_content h4 {
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #03101B;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  margin: 0 0 5px;
}

.whats_new_box .whats_new_content a {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 16px;
  color: #1677F8;
  font-weight: 700;
}


/* courses detail page css end */


.skill_inner_wrapper .learning_overview ul li {
  font-weight: 700;
}

.skill_inner_wrapper .learning_overview ul li::after {
  top: 0;
}

.approaach_wrapper {
  padding: 120px 0;
  background: #1677F8;
}

.approach_accordian_wrapper .accordion .accordion-item {
  background-color: transparent;
  border: 0;
  margin: 0 0 12px;
}

.approach_accordian_wrapper .accordion .accordion-item .accordion-header .accordion-button {
  border-radius: 12px;
  font-family: "Red Hat Display", sans-serif;
  font-size: 20px;
  line-height: 28px;
  background: #C7E8F3;
  color: #0F2334;
  position: relative;
}

.approach_accordian_wrapper .accordion .accordion-item .accordion-header .accordion-button.collapsed {
  background: #0F2334;
  color: #fff;
}

.approach_accordian_wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
  width: 14px;
  height: 2px;
  content: "";
  background: #0F2334;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 4px;

}

.approach_accordian_wrapper .accordion .accordion-item .accordion-header .accordion-button::before {
  width: 2px;
  height: 14px;
  content: "";
  background: #fff;
  border-radius: 4px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.approach_accordian_wrapper .accordion .accordion-item .accordion-header .accordion-button.collapsed::before {
  display: block;
}

.approach_accordian_wrapper .accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
  background: #fff;
}

.approach_accordian_wrapper .accordion .accordion-item .accordion-body * {
  color: #fff;
}

/*15-11-2024*/

.approaach_wrapper ul li {
  margin-bottom: 16px;
}

.approach_box {
  padding: 32px;
  background: #c7e8f3;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.approach_box .left_wrap {
  height: 96px;
  width: 96px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach_box .left_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach_box .left_wrap h6 {
  font-family: "Red Hat Display", sans-serif;
  margin: 0;
  font-weight: 700;
}

.approach_box .right_wrap {
  width: calc(100% - 96px);
  padding-left: 30px;
}

.approach_box .right_wrap h4 {
  margin-bottom: 5px;
}

.approach_box .right_wrap p:last-child {
  margin: 0;
}

/* End latest approach section*/
.title_blue h2 {
  font-size: 88px;
  line-height: 110%;
  color: #1677F8;
  margin: 0 0 70px;
}

.motivate_Wrapper .title_blue {
  margin: 0 0 60px;
}

.topic_box {
      background: #C7E8F3;
    border-radius: 0;
    padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
    box-shadow: 0 11px 15px -6px rgba(0, 0, 0, 0.1);
	aspect-ratio: 10 / 8;
   
}
.topic_box_main{
 position: relative;
    z-index: 9;	
    height: 100%;
}
.topic_box_main:before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: #C4C4C4;
    z-index: -1;
    filter: blur(8px);
    bottom: 1px;
    left: 50%;
    transform: translate(-50%, 0) rotate(7deg);
}
.topic_box .arrow_box a {
  width: 32px;
  height: 32px;
  background: #1677F8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin: 0 0 8px;
}

.topic_box h4 {
  font-size: 22px;
  line-height: 110%;
  color: #03101B;
	font-family: "Red Hat Display", sans-serif;
  margin: 10px;
    font-weight: 700;
}

.event_info_wrapper {
  background: var(--primary);
  padding: 10px 0;
}

.event_info_inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.event_info_inner .btn_light{
	background: #fff;
    color: #000;
}
.event_info_inner .btn_light:hover{
	background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}
.event_info_inner p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  margin-right: 20px;
}

.event_box {
  background: #7C3568;
  border-radius: 20px;
  padding: 8px;
}

.event_title_wrap {
  padding: 12px;
}

.event_title_wrap h4 {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-family: "Red Hat Display", sans-serif;
  margin: 0 0 4px;
  font-weight: 700;
}

.event_title_wrap p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: #fff;
}

.event_content {
  padding: 24px;
  background: #FEF2F2;
  border-radius: 15px;
}

.event_content_in {
  display: flex;
  align-items: center;
  margin: 0 0 24px;
}

.event_content_in .event_img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.event_content_in .event_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event_content_in .event_con_in {
  width: calc(100% - 120px);
  padding-left: 12px;
}

.event_content_in .event_con_in p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.event_content .btn_white {
  width: 100%;
  display: block;
}

.btn_white {
  padding: 18px 30px;
  background: #fff;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: #03101B;
  text-align: center;
  font-weight: 700;
}

.btn_white:hover {
  background: var(--primary);
  color: #fff;
}

.text_wrapper h2 span {
  color: var(--primary);
}

.pro_skill_wrapper .learning_overview ul {
  padding-left: 50px;
}

.pro_skill_wrapper .learning_overview ul li {
  font-weight: 700;
}

.learnFlix_wrapper .learnFlix_img {
  aspect-ratio: 2 / 1;
  border-radius: 10px;
  overflow: hidden;
}

.learnFlix_wrapper .learnFlix_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.learnFlix_tet h2 span {
  color: var(--primary);
}

/* team engagemenrt page css start */
.future_skill_sec .content_box {
  padding: 96px 40px 50px;
  background: var(--yellow);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 12px 0px 0px #f3b960;
}

.future_skill_sec .img_wrap {
  margin: 0 auto -100px;
  text-align: center;
}

.future_challenges_sec .section_title {
  max-width: 800px;
  margin: 0 auto 50px;
}

.future_box {
  background: var(--yellow);
  border-radius: 12px;
  padding: 16px 24px;
  height: 100%;
}

.future_box h6 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}

.future_box p {
  font-size: 14px;
  line-height: 20px;
}

.future_box p:last-child {
  margin-bottom: 0;
}

.leadership_project_sec {
  padding: 120px 0 60px;
  background: #c7e8f3;
  color: var(--darkBlack);
}

.leadership_project_sec p {
  color: var(--darkBlack);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.leadership_project_sec .img_wrap {
  max-width: 550px;
  margin: 0 auto;
}

.hover_img {
  overflow: hidden;
  border-radius: 24px;
}

.hover_img:hover img {
  transform: scale(1.02);
  transition: 0.5s ease;
}

.hover_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.skill_curriculum_sec .skill_box {
  background: var(--yellow);
  padding: 64px;
  border-radius: 12px;
}

.skill_box .list_wrap h6 {
  font-size: 18px;
  line-height: 26px;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}

.skill_box .list_wrap p {
  font-size: 16px;
  line-height: 24px;
}

.skill_curriculum_sec .img_wrap {
  max-width: 500px;
  margin: 0 auto;
}

.img_list_wrap ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.img_list_wrap ul li img {
  min-width: 48px;
}

.img_list_wrap ul li h6 {
  font-size: 18px;
  line-height: 26px;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}

.dowanload_box {
  padding: 64px 40px;
  background: #c7e8f3;
  border-radius: 12px;
  text-align: center;
  /* box-shadow: 0px 12px 0px 0px #f3b960; */
}

.dowanload_box .title {
  max-width: 950px;
  margin: 0 auto;
}

.mb150 {
  margin-bottom: 120px;
}

.bg_title_sec {
  padding: 60px;
  background: #7c3568;
  color: var(--white);
  text-align: center;
}

.book_wrap {
  display: flex;
  align-items: center;
}

.book_wrap .left_Wrap {
  width: 250px;
}

.book_wrap .right_Wrap {
  width: calc(100% - 250px);
  padding-left: 120px;
}

.trusted_client_box {
  padding: 40px;
  text-align: center;
  background: var(--white);
  border-radius: 24px;
  height: 100%;
}

.trusted_client_box .img_wrap {
  margin-bottom: 24px;
}

.trusted_client_box .title {
  font-weight: 700;
}

.trusted_client_sec {
  background: #fffda8;
}

.trusted_client .swiper-slide {
  height: auto;
}

.glance_sec .img_list_wrap p{
    font-size: 14px;
    line-height: 20px;
}

.glance_sec .row{
    align-items: end;
}

.glance_sec .img_list_wrap ul li:last-child p{
    margin-bottom: 0;
}

.team_dowanload_sec .dowanload_box .btn_white{
    font-size: 16px;
    line-height: 20px;
}

.leadership_project_sec  .img_wrap{
    max-width: 350px;
    margin: 0 auto;
    height: 350px;
}

/* team engagemenrt page css end */


/* team engagemenrt page css start */
/* BANNER */
.banner_slide_wrap.team_engagement_banner {
  background-image: url(../images/team_engagement_banner.jpg);
}
.banner_slide_wrap.team_engagement_banner::before,
.banner_slide_wrap.team_engagement_banner::after {
  all: unset;
}
.team_engagement_banner_content h1 {
  font-size: 64px;
  line-height: 70px;
}
.team_engagement_banner_content h1 span {
  font-size: 36px;
  vertical-align: text-bottom;
}
.team_engagement_banner_content p {
  color: #000;
  max-width: 780px;
}

/* FUTURE-SKILL */
.engagement_future_challeng_title h2 {
    font-size: 48px;
    line-height: 60px;
    max-width: 1080px;
    margin: 0 auto;
}

.engagement_future_challeng_info {
    max-width: 800px;
    margin: 40px auto 40px 135px;
}

/* BIG-HEADING */
.bg_title_sec {
  padding: 60px;
  background: #7c3568;
  color: var(--white);
  text-align: center;
}

/* SKILL */
.team_engagement_skill_sec {
  padding: 30px 0 80px;
}
.team_engagement_skill_box {
  text-align: center;
  padding: 60px 40px;
  border-radius: 30px;
  background: #fffda8;
  height: 100%;
}
.team_engagement_skill_box p {
  font-size: 20px;
  line-height: 30px;
  margin-top: 15px;
}

.team_engagement_skill_boxes > .row {
  gap: 40px 0;
}
.team_engagement_skill_boxes > .row > div {
  padding-right: 30px;
  padding-left: 0px;
}

/* LEADER_SHIP */
.team_engagement_leadership_sec {
  background: #ffb74b;
}
.team_engagement_leadership_img {
  height: 100%;
  border-radius: 30px 0 30px;
  position: relative;
  z-index: 0;
}
.team_engagement_leadership_img::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 96%;
  height: 94%;
  border-radius: 30px 0 30px;
  background: #7b3569;
  z-index: -1;
}
.team_engagement_leadership_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 30px 0 30px;
  border: 2px solid #fff;
  padding: 20px;
  background: #fff;
}
.team_engagement_leadership_sec h3 {
  font-size: 50px;
  line-height: 60px;
}
.team_engagement_leadership_sec p {
  font-size: 28px;
  line-height: 40px;
  font-weight: 600;
  max-width: 675px;
   margin: 50px 0;
}
/* TEAM-BOOK */
.team_engagement_book_title {
  max-width: 800px;
  margin: 0 auto;
}
.team_engagement_book_area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

/* SKILL-BOXES */
section.team_engagemen_skill_boxes_sec > .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.team_engagemen_skill_boxes_area {
  margin-top: 60px;
}
.team_engagemen_skill_boxes_area > .row {
  gap: 30px 0;
}
.team_engagemen_skill_box {
  text-align: center;
  background: #faf4c0;
  padding: 50px 15px;
}
.team_engagemen_skill_box h6 {
  margin: 20px 0;
  font-weight: 500;
}
.team_engagemen_skill_box img {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
  width: 60px;
  height: 60px;
  background: #7b3569;
  border-radius: 50%;
}

/* ENGAGMEN-DOWNLOAD */
section.dowanload_sec.team_engagemen_dowanload_sec .dowanload_box {
  padding: 60px;
  background: #ffb74b;
  border-radius: 30px;
}
section.dowanload_sec.team_engagemen_dowanload_sec .dowanload_box h3 {
  max-width: 800px;
  margin: 0 auto;
}
section.dowanload_sec.team_engagemen_dowanload_sec .dowanload_box p {
  margin: 30px 0;
}

/* ENGAGMEN-CLIENT */
section.team_engagemen_trusted_client_sec.trusted_client_sec {
  background: #fffda8;
}
section.team_engagemen_trusted_client_sec.trusted_client_sec .swiper-slide {
  height: auto !important;
}
section.team_engagemen_trusted_client_sec.trusted_client_sec
  .trusted_client_box {
  background: #7b3569;
  color: #fff;
  padding: 50px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px;
  justify-content: flex-start;
  height: 100%;
}
section.team_engagemen_trusted_client_sec.trusted_client_sec
  .trusted_client_box
  h5 {
  min-height: 90px;
  place-content: center;
}
section.team_engagemen_trusted_client_sec.trusted_client_sec
  .trusted_client_box
  p {
  color: #fff;
}
/* team engagemenrt page css end */

section.future_skill_sec.py_80 {
    margin-top: 80px !important;
}

/* .banner_slide_wrap::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 0%) 60%, #000000f2 100%) !important;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 0%) 40%, #000000db 100%) !important;
    z-index: -1;
} */

/* about us page css start */
.tab_wrap .nav-tabs {
  margin-bottom: 40px;
  border: none;
  justify-content: center;
  gap: 15px;
  padding-bottom: 5px;
}

.tab_wrap .nav-item .nav-link {
  padding: 14px 24px;
  font-size: 16px;
  line-height: 20px;
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 30px;
  font-weight: 700;
  white-space: nowrap;
}


.tab_wrap .nav-item .nav-link.active,
.tab_wrap .nav-item .nav-link:hover {
  background: var(--primary);
  color: var(--white);
  transition: 0.5s ease;
}

.trainers_box{
	position:relative;
}

.trainers_box .member_info {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
	z-index: 9;
}
.trainers_box .member_info .subtitle{
	color: #fff;
}

.trainers_box .img_wrap {
  height: 400px;
}

.trainers_box .img_wrap img {
  height: 100%;
  width: 100%;
}

.trainers_box h6{
	    font-family: "DM Serif Display", serif;
    font-size: 28px;
    font-weight: 400;
}
.trainers_box h6.subtitle {
  font-family: "Red Hat Display", sans-serif;
    font-size: 20px;
  font-weight: 700;
    margin: 0 0 7px;
}

.trainers_box .subtitle {
  margin: 0;
  color: var(--primary);
  font-size: 14px;
  line-height: 18px;
}

.trainers_box .img_wrap {
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 0 15px;
  position: relative;
    z-index: 9;
}
.trainers_box .img_wrap a.img_anchor_wrap {
    position: relative;
    display: block;
    z-index: 9;
    height: 100%;
}
.trainers_box .img_wrap a.img_anchor_wrap:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 8.62%, rgba(0, 0, 0, 0.05) 16.56%, rgba(0, 0, 0, 0.12) 23.93%, rgba(0, 0, 0, 0.2) 30.85%, rgba(0, 0, 0, 0.29) 37.42%, rgba(0, 0, 0, 0.39) 43.77%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.61) 56.23%, rgba(0, 0, 0, 0.71) 62.58%, rgba(0, 0, 0, 0.8) 69.15%, rgba(0, 0, 0, 0.88) 76.07%, rgba(0, 0, 0, 0.95) 83.44%, rgba(0, 0, 0, 0.98) 91.38%, #000000 100%);
    z-index: 1;
    opacity: 0.6;
}

.trainers_box .img_wrap:hover img {
  transform: scale(1.02) rotate(2deg);
  transition: 0.5s ease;
}

.trainers_box .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.trainers_box .img_wrap .share_wrap {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  top: 10px;
  right: 10px;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

.trainers_box .img_wrap:hover .share_wrap {
  visibility: visible;
  opacity: 1;
}

.trainers_box .img_wrap .share_wrap img {
  width: 12px;
  height: 12px;
}

.detail_box_wrap {
  padding: 48px;
  background: #DDF1F8;
  border-radius: 16px;
}

.detail_box_wrap .content_wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}

.detail_box_wrap .content_wrap h5{
	position:relative;
    margin-top: 20px;
}
.detail_box_wrap .content_wrap h5:before {
    content: '"';
    font-family: "Space Grotesk", serif;
    position: absolute;
    top: -94px;
    font-size: 100px;
    color: #1677f8;
    line-height: 100px;
    transform: rotate(180deg);
    left: -4px;
}



.detail_box_wrap .content_wrap .img_wrap {
  width: 105px;
  min-width: 105px;
  height: 105px;
  border-radius: 50%;
}

.detail_box_wrap .content_wrap .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_trainer_inner_detail,
.our_story_inner {
  max-width: 1050px;
  margin: 0 auto;
}

.our_story_inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.our_story_inner .detail_box_wrap {
  padding: 64px;
}

.our_story_mian_video {
  height: 520px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.our_story_mian_video>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our_story_mian_video .video_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 rgb(0 0 0 / 16%);
  animation: pulse 2s infinite;

}


@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 rgb(0 0 0 / 16%);
  }

  70% {
    box-shadow: 0 0 0 rgb(0 0 0 / 0);
  }

  100% {
    box-shadow: 0 0 0 rgb(0 0 0 / 16%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 rgb(0 0 0 / 16%);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

.about_small_video {
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.about_small_video>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_small_video .video_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about_small_video .video_btn img {
  max-width: 40px;
}

.about_small_video .text_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #00000066;
  color: var(--white);
  padding: 12px;
  text-align: center;
}

.about_small_video .text_wrap h6 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}

.year_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.year_wrap ul {
  display: flex;
  margin: 0 auto;
  gap: 40px;
  position: relative;
  justify-content: center;
  overflow: auto;
}

.year_wrap ul::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #D8DBDD;
  z-index: -1;
}

.year_wrap ul li input {
  display: none;
}

.year_wrap ul li label {
  padding: 14px 24px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: var(--white);
  outline: #fff solid 8px;
  border-radius: 30px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.year_wrap ul li label img {
  display: none;
}

.year_wrap ul li input:checked~label {
  background: var(--primary);
  color: var(--white);
  display: flex;
  gap: 8px;
}

.year_wrap ul li input:checked~label img {
  display: block;
}


.video_modal .modal-dialog{
  max-width: 900px;
  margin-top: 70px;
}

.video_modal .modal-dialog .modal-body{
  padding: 0;
}
.video_modal .modal-dialog .modal-body iframe{
  margin-bottom: -10px;
  height: auto;
  aspect-ratio: 16/9;
}
.video_modal .modal-header {
  padding: 0;
  position: relative;
}
.video_modal .modal-header .btn-close {
  position: absolute;
  top: -27px;
  right: 0;
  color: #fff;
  filter: brightness(1) invert(1);
  opacity: 1;
}

.timeline_tab_wrapper .nav-tabs .nav-item{
	position:relative;
}
.timeline_tab_wrapper .nav-tabs .nav-item:before{
	content: "";
	  position: absolute;
	  top: 50%;
	  left: 50px;
	  width: 100%;
	  height: 4px;
	  background: #D8DBDD;
	  z-index: -1;
}
.timeline_tab_wrapper .nav-tabs .nav-item:last-child:before{
	display:none;
}
.timeline_tab_wrapper .nav-item .nav-link {
    background: #fff;
}
.timeline_tab_wrapper .nav-tabs{
	    gap: 25px;
}
.client_slider_wrap .swiper-wrapper{
	    justify-content: center;
}





/* about us page css end */


/*Insights 29-10-2024*/

/* insight page css */

.insight_banner .banner_slider_content{
  margin: 0 auto;
}
.banner_slide_wrap:before,
.banner_slide_wrap:after{
  display: none;
}

.insight_top_inner{
  text-align: center;
  aspect-ratio: 4/2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 9;
}
.insight_top_inner:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}

.insight_top_inner h6{
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 20px;
  font-family: "Red Hat Display", sans-serif;
}
.insight_top_inner h2{
  color: var(--white);
  font-size: 48px;
  line-height: 56px;
  font-weight: 500;
}
.popular_insight_box .img img{
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 0 15px;
}
.popular_insight_box h6{
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--primary);
}
.popular_insight_box h4{
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  margin: 0;
}
.popular_insight_box h4 a{
  color: var(--darkBlack);
}
.popular_insight_box h4 a:hover{
  color: var(--primary);
}

.form-select{
  padding: 14px 24px;
  font-size: 14px;
  line-height: 20px;
  color: var(--black);
  border: 2px solid #F5F7F7;
  background-color: #F5F7F7;
  border-radius: 8px;
  width: 100%;
  box-shadow: none !important;
  outline: 0 !important;
  border: 0 !important;
}
.insight_filter_wrap h5{
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin: 0;
}

.form-control{
  box-shadow: none !important;
  outline: 0 !important;
  border: 0 !important;
}
.form-control:focus{
  background-color: #F5F7F7;
}
.form_group .form-control.search_input{
  background: #F5F7F7 url(../images/search.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.insight_box .img img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 24px;
  margin: 0 0 15px;
}
.insight_box h6{
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--primary);
}
.insight_box h4{
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  margin: 0 0 15px;
}
.insight_box p{
  display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.insight_box h4 a{
  color: var(--darkBlack);
}
.insight_box h4 a:hover{
  color: var(--primary);
}

.text_64 {
  font-size: 64px;
  line-height: 76px;
}
.text_24 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.24px;
}


li#menu-item-67419 a {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 5px;
    height: max-content;
    justify-content: flex-end;
}
li#menu-item-67419 a span {
    margin: 0 !important;
}


/* popup */
.AI_FAQ_modal {
  place-content: center;
}
.modal-backdrop.show {
  opacity: 0.75;
  background: #0f2334;
}
.AI_FAQ_box_modals {
  max-width: unset;
  margin: 0;
  border-radius: 0;
}
.AI_FAQ_box_modals > .modal-content {
  padding: 80px 128px;
  border-radius: 32px;
  background: #0f2334;
  color: #f5f7f7;
}
.AI_FAQ_box_modals h2 {
  line-height: 120px;
}
.AI_FAQ_box_modals .modal-body {
  gap: 24px;
}
.AI_FAQ_box_modals .modal_inner_info a {
  color: #fffda8;
}

/* AI_Q_banner CSS */
.AI_Q_banner {
  background-image: url(https://wvnew.coaxcloud.com/wp-content/uploads/2025/03/hero_slide.png);
 background-position: bottom right;
    background-repeat: no-repeat;
    background-color: #fff;
    padding: 190px 0;
    min-height: 656px;
    place-content: center;
}

.AI_Q_banner_content h1 span.AI_banner_higlight {
  font-size: 24px;
  line-height: 110%;
}
   
.AI_Q_banner_content {
  max-width: 670px;
  width: 100%;
}
.AI_Q_banner_content h1 {
  color: var(--darkBlack);
}

.AI_Q_banner_content p {
  margin: 24px 0 40px;
}


.AI_FAQ_video_box {
  max-width: 640px;
  width: 100%;
  height: 360px;
  border-radius: 12px;
  border: 4px solid #ff4aff;
  margin: 0 auto;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
    height: 100%;
}


/* whats_Q CSS */
.whats_Q {
  background-color: #0f2334;
}
.whats_Q_content {
  padding: 80px 0;
}


/* AI_FAQ CSS */
.AI_FAQ {
  background-color: #fff;
  background-image: url(https://wvnew.coaxcloud.com/wp-content/uploads/2025/03/pruple_shap.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  padding: 80px 0;
}
.AI_FAQ_area > .row {
  gap: 40px 0;
}

.AI_FAQ_box {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0px 0px 50px -10px rgba(17, 24, 39, 0.2);
  padding: 40px 24px;
  min-height: 380px;
   display: grid;
    grid-template-columns: 1fr;
}

.AI_FAQ_box p {
  letter-spacing: -0.16px;
}
.AI_FAQ_area>.row>div:nth-child(5)>.AI_FAQ_box {
    min-height: 330px;
    align-content: center;
    padding: 40px;
}
.AI_FAQ_box.AI_FAQ_box_6 {
  min-height: 456px;
}
.AI_FAQ_box_btn_area {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.AI_FAQ_box_btn_area > a.btn_primary {
  max-width: 256px;
  width: -webkit-fill-available;
}


@media (max-width: 1100px) {
  .AI_Q_banner {
    background-position: 33% 0px;
  }
}



@media (max-width: 640px) {
  /* ENGAGMEN-DOWNLOAD */
  section.dowanload_sec.team_engagemen_dowanload_sec .dowanload_box {
    padding: 40px 30px;
  }
  /* ENGAGMEN-CLIENT */
  section.team_engagemen_trusted_client_sec.trusted_client_sec
    .trusted_client_box {
    padding: 30px;
  }
}

@media (max-width: 575px){
  .insight_top_inner h2 {
    font-size: 26px;
    line-height: 33px;
}
.insight_top_inner h6 {
  font-size: 19px;
  margin: 0 0 10px;
}
.insight_top_inner {
  padding: 30px;
}

.AI_FAQ_box_btn_area {
    gap: 20px;
  }
  .AI_FAQ_box h4 {
    font-size: 24px;
    line-height: 32px;
  }
  
  /* FUTURE-SKILL */
  .engagement_future_challeng_title h2 {
    font-size: 18px;
    line-height: 28px;
  }
  /* SKILL */
  .team_engagement_skill_area p.h4,
  .team_engagemen_skill_boxes_title p.h4 {
    font-size: 16px;
    line-height: 24px;
  }
  /* LEADER_SHIP */
  .team_engagement_leadership_img img {
    width: 85%;
  }
  .team_engagement_leadership_img::after {
    bottom: -15px;
    left: 15px;
    width: 82%;
    height: 100%;
  }
  section.team_engagement_leadership_sec .row {
    gap: 40px;
  }
  .team_engagement_leadership_img img {
    padding: 10px;
  }
  
  .newsletter_inner{
    padding: 25px;
    text-align: center;
  }
  
  	.banner_slider_content h1 b {
        top: 0;
    }
	.insight_img_wra {
    height: 301px;
	}
	
	.detail_box_wrap .content_wrap {
		flex-wrap: wrap;
	}
  
}

@media (max-width: 380px) {
    .AI_FAQ_box_modals h2 {
      font-size: 28px;
  }
  }

.contact_banner .banner_slide_wrap{
  min-height: 200px;
  padding: 65px 0;
 
}
.contact_banner .banner_slider_content {
  margin: 0 auto;
}
.contact_banner .banner_slider_content h1{
  margin: 0;
}
.contact_form_wrapper .form_group textarea{
  height: 290px;
  box-shadow: none;
  outline: 0 !important;
}


/* insight detail page css */

.insight_banner .banner_slide_wrap{
  min-height: 450px;
  padding: 70px 0 50px;
}

.insight_banner_detail .banner_slider_content {
  max-width: 820px;
}

.insight_img_wra {
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    position: relative;
}
.insight_img_wra img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.insight_author img{
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}
.insight_author p{
  font-weight: 600;
}
.insight_detail p a{
  color: #1677f8;   
   text-underline-offset: 5px;
}
.insight_detail p a:hover{
  color: var(--primary);
}

.insight_detail h6{
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  margin: 0 0 15px;
}
.insight_detail p{
  margin: 0 0 25px;
}
.insight_detail h4{
  color: var(--primary);
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  margin: 0 0 15px;
}
.insight_detail h3{
  font-size: 24px;
  line-height: 32px;
  color: var(--darkBlack);
  margin: 0 0 15px;
}
ul.social_icon {
  display: flex;
  align-items: center;
}
ul.social_icon li{
  margin-right: 15px;
}
.newsletter_inner{
  background: #C7E8F3;
  border-radius: 12px;
  padding: 60px;
}



.address_wrapper h4{
  margin: 0 0 25px;
  color: var(--primary);
  font-size: 24px;
  line-height: 30px;
}
.address_box h5{
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: var(--darkBlack); 
  font-family: "Red Hat Display", sans-serif;
}
.address_box p{
  font-size: 16px;
  line-height: 26px;
}
.address_box h6{
  font-size: 14px;
  line-height: 18px;
  margin: 0;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
}
.address_box h6 span{
  display: block;
}
.address_box p a{
  display: block;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.address_box p a:hover{
  color: var(--primary);
}



/* public course css */

.public_course{
  background: url(https://www.workingvoices.com/wp-content/uploads/2024/10/public-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.public_course_inner .user_img{
  width: 210px;
  height: 210px;
  border-radius: 50%;
  margin: 0 auto 24px;
}
.public_course_inner .user_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public_course_inner{
  max-width: 810px;
  margin: 0 auto;
}
.public_course_inner  h2{
  font-size: 48px;
  line-height: 55px;
  color: #fff;
  margin: 0 0 25px;
}
.public_course_inner p{
  color: #fff;
  font-size: 16px;
}
.public_course_inner .btn_white{
  border-radius: 8px;
  font-size: 16px;
  margin-top: 20px;
  display: inline-block;
  border: 1px solid #fff;
}
.public_course_inner .btn_white:hover{
  border: 1px solid #fff;
}

.courses_detail_banner .banner_slide_wrap:before{
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgb(0 0 0 / 0%) -20%, rgb(0 0 0) 120%, #0000000d 100%);
  z-index: -1;
	display:block !important;
}
html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
    background: rgba(0, 0, 0, 0.4);
}
.pum-theme-1627 .pum-container, .pum-theme-lightbox .pum-container {
    padding: 25px !important;
    border-radius: 20px !important;
    border: 0 !important;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3) !important;
    width: calc(100% - 30px) !important;
    max-width: 1140px;
    left: 50% !important;
    transform: translateX(-50%);
    height: auto !important;
}
.pum-theme-1627 .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close {
    right: 10px !important;
    top: 10px !important;
    color: #000 !important;
    font-size: 34px !important;
    box-shadow: none !important;
    background-color: transparent !important;
}



/* Privacy Policy page css start */

.common_banner{
  background-image: url(http://wvnew.coaxcloud.com/wp-content/uploads/2024/11/common-banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #0F2334;
  padding: 100px 0;
}

.common_banner h1{
  color: var(--white);
  text-align: center;
}

.privacy_content{
  padding: 80px 0;
}

.privacy_content p{
  margin: 0 0 20px;
}

.privacy_content p a{
  color: #1677f8;
  text-decoration: underline;
}

.privacy_content ul{
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}

.privacy_content h6{
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #03101B;
  margin: 30px 0 20px;
}

/* Privacy Policy page css end */



.trusted_client_box img {
    width: 64px;
}

/* the team page css start */
.the_team_sec {
  padding-top: 120px;
  padding-bottom: 120px;
}

.the_team_sec .arrow_box {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 15px;
  top: 15px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.the_team_sec .trainer_box .img_wrap:hover .arrow_box {
  visibility: visible;
  opacity: 1;
}

.the_team_sec .arrow_box img {
  height: auto;
  width: auto;
}

.the_team_sec .trainer_box {
  margin-bottom: 50px;
}

.team_model .modal-header {
  border: none;
}

.team_model .modal-content {
  padding: 40px;
  position: relative;
  overflow: auto;
}

.team_model .modal-content .btn-close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.team_model .team_model_wrap {
  max-width: 920px;
}

.team_model_wrap .profile {
  gap: 15px;
  margin-bottom: 30px;
}

.team_model_wrap .profile > img {
  width: 80px;
}

.team_model .team_model_wrap p {
  font-size: 16px;
  line-height: 24px;
}

.team_model .team_model_wrap p span {
  font-weight: bold;
}

.page-id-2194 .banner_slider_content p {
    max-width: 100%;
}

section#video {
    scroll-margin-top: 200px;
}

/* the team page css end */

.banner_with_image {
    background: transparent;
    padding: 0 !important;
    min-height: inherit;
    display: block;
}
.banner_with_image .banner_image_main_Wrapper{
	position:relative;
}
.banner_with_image .banner_image_main_Wrapper .banner_img_wrapper img{
	width: 100%
}
.banner_with_image .banner_slider_content {
	position:absolute;
	left:50%;
	top: 50%;
	transform:translate(-50%, -50%);
	z-index:9;
	width: 100%;
}
.privacy_banner h1{
	    font-size: 60px;
    line-height: 75px;
}
.privacy_content .video--in-content.video{
	    aspect-ratio: 2 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px){
	.banner_with_image.no_mobile .banner_slider_content {
		position: relative;
		left: 0;
		top: 0;
		transform: inherit;
		z-index: 9;
		width: 100%;
		padding: 30px 0;
		background: #eee;
	}
	.banner_with_image.no_mobile .banner_slider_content h1,
	.banner_with_image.no_mobile .banner_slider_content p{
		color: #000;
	}
	.banner_slider_content h1 {
        margin-bottom: 14px !important;
        font-size: 38px !important;
        line-height: 40px !important;
    }
	.banner_slider_content h1 b {
		font-weight: 200;
		font-size: 24px;
		line-height: 30px;
		display: inline-block;
		position: relative;
		top: -10px;
	}
	
	
	.AI_Q_banner {
        height: auto;
        padding: 0;
      }
    
      .text_64 {
        font-size: 36px;
        line-height: 55px;
      }
      
  
  .whats_Q_content {
    padding: 40px 0;
  }
  .whats_Q_content p.text_24 {
    font-size: 18px;
    line-height: 30px;
  }
  
  .AI_FAQ {
    padding: 40px 0;
  }
  .AI_FAQ_area > .row {
    gap: 20px 0;
  }
  
  .AI_FAQ_video_box {
    height: 100%;
}

.AI_FAQ_box,
.AI_FAQ_area>.row>div:nth-child(5)>.AI_FAQ_box {
        min-height: auto;
        padding: 40px 20px;
    }
    
.AI_FAQ_box_modals > .modal-content {
    padding: 20px !important;
  }
  .AI_FAQ_box_modals .modal_inner_info h3,
  .AI_FAQ_box_modals .modal_inner_info a {
    font-size: 20px;
    line-height: 33px;
  }
  .AI_FAQ_box_modals h2 {
    line-height: 40px;
  }
  .AI_Q_banner_content {
        padding: 30px 0 24px;
    }
  .AI_Q_banner_content h1 span.AI_banner_higlight {
    margin-top: 16px;
    width: 100%;
    display: block;
    font-size: 32px;
    line-height: 35px;
    color: var(--primary);
  }
  
  section#video {
    scroll-margin-top: 80px !important;
}

 /* team_engagement_banner CSS */
  .team_engagement_banner_content {
    text-align: center;
  }
  .team_engagement_banner_content p {
    margin: 0 auto;
  }
  .team_engagement_banner_content h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .team_engagement_banner_content h1 span {
    display: block;
  }
  /* LEADER_SHIP */
  .team_engagement_leadership_sec h3 {
    font-size: 24px;
    line-height: 36px;
  }
  .team_engagement_leadership_sec p {
    font-size: 18px;
    line-height: 30px;
  }
  /* SKILL-BOXES */
  .team_engagemen_skill_boxes_area {
    margin-top: 30px;
  }
  .team_engagemen_skill_box {
    padding: 30px 20px;
  }
  
  .team_engagement_skill_boxes > .row > div {
    padding-left: 30px;
}

.team_engagement_skill_boxes > .row > div {
    padding-right: 10px;
    padding-left: 10px;
}
  
   .team_engagement_leadership_sec h3 {
        font-size: 24px;
        line-height: 36px;
    }
    
    .accordion-button::before, .accordion-button::after {
        right: 10px !important;
        top: 16px !important;
        width: 36px !important;
        height: 36px !important;
    }
    
     .accordian_wrapper .accordion .accordion-item .accordion-header .accordion-button {
        font-size: 24px;
        padding: 15px 55px 15px 15px;
        line-height: 30px;
    }
    /*.accordian_wrapper .accordion .accordion-item .accordion-collapse .accordion-body {*/
    /*    padding: 0 15px 15px;*/
    /*}*/
    .accordion-button::after {
        top: 18px;
    }
    .accordion-button::before {
        top: 26px;
    }
    .accordian_wrapper .accordion .accordion-item .accordion-collapse .accordion-body p {
        margin: 0;
        font-size: 14px;
        line-height: 24px;
    }
    .faq_wrapper h2{
        font-size: 40px;
        line-height: 40px;
    }
    .courses_sec h2{
        font-size: 40px;
        line-height: 40px;
    }
}

html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
    overflow-y: auto !important;
}
html.pum-open.pum-open-overlay, html.pum-open.pum-open-overlay.pum-open-fixed .pum-overlay {
    overflow: auto !important;
}
html.pum-open.pum-open-overlay.pum-open-scrollable body>:not([aria-modal=true]) {
    padding-right: 0 !important;
}
html.pum-open.pum-open-overlay.pum-open-scrollable body header.scrolled {
    padding: 24px 48px !important;
}


/* Target Safari only */
@media not all and (min-resolution:.001dpcm) { 
  @supports (-webkit-appearance:none) {

    /* Your custom styles for select fields in Safari */
    select {
      -webkit-appearance: none; /* Removes default styling in Safari */
      appearance: none; /* For other browsers */
      border: 1px solid #ccc; /* Customize border */
      padding: 10px; /* Adjust padding */
      background-color: #fff; /* Background color */
    }

    /* Optional: Add a custom arrow icon */
    select::-ms-expand {
      display: none;
    }
  }
}
.popular_insight_box .img,
.insight_box.post .img{
	position:relative;
}
.popular_insight_box .img .tag,
.insight_box.post .img .tag{
	position: absolute;
    top: 10px;
    left: 10px;
    background: #1677f8;
    font-size: 13px;
    line-height: 22px;
    padding: 2px 10px;
    display: inline-block;
    color: #fff;
    border-radius: 8px;
}
.team_inner_banner{
	position:relative;
}
/* .team_inner_banner:before{
	content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(8.62%, rgba(0, 0, 0, 0.02)), color-stop(16.56%, rgba(0, 0, 0, 0.05)), color-stop(23.93%, rgba(0, 0, 0, 0.12)), color-stop(30.85%, rgba(0, 0, 0, 0.2)), color-stop(37.42%, rgba(0, 0, 0, 0.29)), color-stop(43.77%, rgba(0, 0, 0, 0.39)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(56.23%, rgba(0, 0, 0, 0.61)), color-stop(62.58%, rgba(0, 0, 0, 0.71)), color-stop(69.15%, rgba(0, 0, 0, 0.8)), color-stop(76.07%, rgba(0, 0, 0, 0.88)), color-stop(83.44%, rgba(0, 0, 0, 0.95)), color-stop(91.38%, rgba(0, 0, 0, 0.98)), to(#000000));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 8.62%, rgba(0, 0, 0, 0.05) 16.56%, rgba(0, 0, 0, 0.12) 23.93%, rgba(0, 0, 0, 0.2) 30.85%, rgba(0, 0, 0, 0.29) 37.42%, rgba(0, 0, 0, 0.39) 43.77%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.61) 56.23%, rgba(0, 0, 0, 0.71) 62.58%, rgba(0, 0, 0, 0.8) 69.15%, rgba(0, 0, 0, 0.88) 76.07%, rgba(0, 0, 0, 0.95) 83.44%, rgba(0, 0, 0, 0.98) 91.38%, #000000 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 8.62%, rgba(0, 0, 0, 0.05) 16.56%, rgba(0, 0, 0, 0.12) 23.93%, rgba(0, 0, 0, 0.2) 30.85%, rgba(0, 0, 0, 0.29) 37.42%, rgba(0, 0, 0, 0.39) 43.77%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.61) 56.23%, rgba(0, 0, 0, 0.71) 62.58%, rgba(0, 0, 0, 0.8) 69.15%, rgba(0, 0, 0, 0.88) 76.07%, rgba(0, 0, 0, 0.95) 83.44%, rgba(0, 0, 0, 0.98) 91.38%, #000000 100%);
    opacity: .75;
    z-index: 2;
	display:block !important;
} */
.team_inner_banner:after{
	content: "";
    position: absolute;
	    top: unset;
	    bottom: -1px;
    width: 100%;
    bottom: 0;
    height: 33.3333333333%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(8.62%, rgba(0, 0, 0, 0.02)), color-stop(16.56%, rgba(0, 0, 0, 0.05)), color-stop(23.93%, rgba(0, 0, 0, 0.12)), color-stop(30.85%, rgba(0, 0, 0, 0.2)), color-stop(37.42%, rgba(0, 0, 0, 0.29)), color-stop(43.77%, rgba(0, 0, 0, 0.39)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(56.23%, rgba(0, 0, 0, 0.61)), color-stop(62.58%, rgba(0, 0, 0, 0.71)), color-stop(69.15%, rgba(0, 0, 0, 0.8)), color-stop(76.07%, rgba(0, 0, 0, 0.88)), color-stop(83.44%, rgba(0, 0, 0, 0.95)), color-stop(91.38%, rgba(0, 0, 0, 0.98)), to(#000000));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 8.62%, rgba(0, 0, 0, 0.05) 16.56%, rgba(0, 0, 0, 0.12) 23.93%, rgba(0, 0, 0, 0.2) 30.85%, rgba(0, 0, 0, 0.29) 37.42%, rgba(0, 0, 0, 0.39) 43.77%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.61) 56.23%, rgba(0, 0, 0, 0.71) 62.58%, rgba(0, 0, 0, 0.8) 69.15%, rgba(0, 0, 0, 0.88) 76.07%, rgba(0, 0, 0, 0.95) 83.44%, rgba(0, 0, 0, 0.98) 91.38%, #000000 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 8.62%, rgba(0, 0, 0, 0.05) 16.56%, rgba(0, 0, 0, 0.12) 23.93%, rgba(0, 0, 0, 0.2) 30.85%, rgba(0, 0, 0, 0.29) 37.42%, rgba(0, 0, 0, 0.39) 43.77%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.61) 56.23%, rgba(0, 0, 0, 0.71) 62.58%, rgba(0, 0, 0, 0.8) 69.15%, rgba(0, 0, 0, 0.88) 76.07%, rgba(0, 0, 0, 0.95) 83.44%, rgba(0, 0, 0, 0.98) 91.38%, #000000 100%);
    background-color: unset;
    opacity: .65;
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
	display:block !important;
}

.team_inner_banner{
	align-items: self-end;
    padding: 150px 0 70px;
}
.team_inner_banner .banner_slider_content {
	z-index: 99;
    position: relative;
}

/* Artical css */
.artical_sec {
  background: var(--color-one);
}
.common_title h2 {
  font-size: 48px;
  line-height: 0.9583333333;
  letter-spacing: -1px;
  color: var(--color-two);
}

.artical_info h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.25px;
  color: var(--color-two);
}
.artical_info p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4705882353;
  letter-spacing: 0.25px;
  color: var(--color-two);
  margin-bottom: 20px;
}

.artical_content {
  margin-top: 60px;
}
.img_inner_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px;
}
.artical_box img {
    max-width: 100%;
    object-fit: cover;
    height: auto;
}
.artical_box {
  position: relative;
}

.img_inner_box > * {
  color: #fff;
}
a.common_btn {
  width: auto;
  background-color: #1677f8;
  border-radius: 8px 0 8px 0;
  padding: 12px;
  color: #fff;
  display: inline-flex;
}
.artical_sec,
.our_image_quate {
  padding: 100px 0;
}
.artical_content > .row,
.image_quate_area>.row {
  gap: 30px 0;
}

/* Quate */
.our_image_quate {
  padding-top: 150px;
}
.our_image_quate {
  background-color: #c7e8f3 !important;
}
.img_quate_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  min-height: 440px;
  padding: 50px 95px 100px 95px;
  justify-content: space-between;
  text-align: center;
  border-radius: 30px 0 30px 0;
  margin-top: -70px;
  gap: 30px;
}
.img_quate_box p {
  font-size: 24px;
  line-height: 30px;
  color: var(--color-two);
}
.img_quate_box span {
  font-size: 14px;
  color: #1677f8;
  line-height: 24px;
}


section.team_engagement_banner_wrap .btn_primary:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transition: 0.5s ease;
}


@media (max-width: 1900px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 1199px) {
  .img_quate_box {
    padding: 50px 30px 70px 30px;
  }
  .AI_FAQ_box_modals > .modal-content {
    padding: 40px 60px;
  }
  
  section#video {
    scroll-margin-top: 180px;
}

/* MEDIA CSS */
@media (max-width: 1400px) {
  /* team_engagement_banner CSS */
  .team_engagement_banner_content h1 {
    font-size: 52px;
    line-height: 64px;
  }
}
@media (max-width: 1200px) {
  /* SKILL */
  .team_engagement_skill_box {
    padding: 40px 20px;
  }
}

@media (max-width: 1080px) {
  /* LEADER_SHIP */
  .team_engagement_leadership_sec h3 {
    font-size: 36px;
    line-height: 46px;
  }
  .team_engagement_leadership_sec p {
    font-size: 22px;
  }
  /* FUTURE-SKILL */
   .engagement_future_challeng_info {
            max-width: 800px;
            margin: 39px auto 40px 50px;
        }
}

}
@media (max-width: 991px) {
  .common_title h2 {
    font-size: 36px;
  }
  .artical_sec,
  .our_image_quate {
    padding: 50px 0;
  }
  .img_quate_box {
    margin: 0;
  }
  .img_quate_box {
    padding: 40px 20px;
  }
  
   .banner_slide_wrap.team_engagement_banner {
    background-position: 85% 200px;
    background-repeat: no-repeat;
    background-color: #fffda8;
  }
  .team_engagement_banner_content h1 {
    font-size: 48px;
    line-height: 44px;
  }
  .team_engagement_banner_content h1 span {
    font-size: 24px;
  }
  .team_engagement_banner_content p {
    max-width: 570px;
  }
  /* FUTURE-SKILL */
  .engagement_future_challeng_title h2 {
    font-size: 33px;
    line-height: 46px;
    max-width: 950px;
    margin: 0 auto;
  }
  /* SKILL */
  .team_engagement_skill_area p.h4,
  .team_engagemen_skill_boxes_title p.h4 {
    font-size: 20px;
    line-height: 30px;
  }
  /* LEADER_SHIP */
  section.team_engagement_leadership_sec .row {
    gap: 60px;
  }
  .team_engagement_leadership_img {
    text-align: center;
  }
  .team_engagement_leadership_img img {
    width: 60%;
  }
  .team_engagement_leadership_img::after {
    bottom: -15px;
    left: 17%;
    width: 59%;
    height: 100%;
  }
  
     .insight_top_inner h2 {
    font-size: 36px;
    line-height: 44px;
  }
  
  
  .AI_Q_banner {
    background-image: unset;
  }
  .text_64 {
    font-size: 48px;
  }
  
  .AI_FAQ_box_modals > .modal-content {
    padding: 40px 20px;
  }
   .engagement_future_challeng_info {
        margin: 40px auto 40px 15px;
    }
    
}






