:root {
    --thm-font: 'Montserrat', sans-serif;
    --thm-reey-font: 'reeyregular';
    --thm-gray: #726f84;
    --thm-gray-rgb: 114, 111, 132;
    --thm-primary: #183e65;
    --thm-primary-rgb: 24, 62, 101;
    --thm-black: #0f0d1d;
    --thm-black-rgb: 15, 13, 29;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-light: #f2f4f8;
    --thm-light-rgb: 242, 244, 248;
    --thm-letter-space-big: 0.1em;
    --thm-letter-space-small: -0.02em;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
}

body.locked {
    overflow: hidden;
}

a {
    color: #001111;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}


.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

/* boxed style */

body.boxed-wrapper {
    background-color: var(--thm-light);
    ;
}

.boxed-wrapper .page-wrapper {
    max-width: 1410px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--thm-base);
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

.boxed-wrapper .page-wrapper__dark {
    background-color: #1c1e22;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--thm-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
	background:#f4c037;
    padding: 20px 50px;
    transition: 500ms;
    letter-spacing: 0.1em;
	font-size:24px;
	line-height:32px;
	color:#111111;
	text-transform:uppercase;
	font-weight:600;
}

.thm-btn:hover {
    background: var(--thm-base);
    color: var(--thm-primary);
}

.section-title {
    margin-top: -12px;
	margin-bottom:30px;
}

.section-title__title {
    margin: 0;
    font-weight: 300;
    color: #111111;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 8px;
    letter-spacing: 1;
}
.section-title__title strong {
    font-weight: 600;
}
.section-title__title span{
	display:block;
}

.section-title__title2 {
    margin: 0;
    font-weight: 300;
    color: #111111;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 8px;
    letter-spacing: 1;
}
.section-title__yellow{
	color:#F4BF00 !important;
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    color: #303030;
    font-size: 26px;
    align-items: center;
    line-height: 34px;
}

.bootstrap-select .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: var(--thm-base);
}

.preloader {
    position: fixed;
    background-color: var(--thm-black);
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    background-image: url(../images/loader.png);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60px auto;
    width: 100%;
    height: 100%;
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--thm-primary);
    position: fixed;
    bottom: 40px;
    right: 10px;
    z-index: 99;
    text-align: center;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.scroll-to-top i {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: var(--thm-black);
}

.scroll-to-top:hover i {
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    padding: 0 60px;
    background: transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 91;
    transition: all 500ms ease;
}

.boxed-wrapper .main-header {
    padding-right: 0;
}

.main-header:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    content: "";
    background-color: rgba(var(--thm-base-rgb), .15);
}
.stricky-header {
    padding: 0 60px;
    background-color: var(--thm-black);
}

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: var(--thm-black);
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important
    }
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
    position: relative;
    display: block;
}

.main-header-three:before {
    display: none;
}

.main-menu-wrapper-three {
    position: relative;
    display: block;
}

.main-menu-wrapper__logo-3 {
    position: relative;
    float: left;
    padding: 10px 0;
}
.main-menu-wrapper__logo-3 img{
	width:180px;
}

.stricky-header.main-menu-three {
    background-color: var(--thm-base);
}

.stricky-header .main-menu-wrapper-three {
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
}

.stricky-header.main-menu-three--dark,
.main-header-three--dark {
    background-color: #fff;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@-webkit-keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: center center;
    }

    50% {
        transform: translateY(50px) translateX(100px) rotate(45deg);
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        transform-origin: center center;
    }
}

@keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: center center;
    }

    50% {
        transform: translateY(50px) translateX(100px) rotate(45deg);
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        transform-origin: center center;
    }
}

@-webkit-keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@-webkit-keyframes banner3Shake {
    0% {
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes banner3Shake {
    0% {
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@-webkit-keyframes squareMover {

    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }

    20%,
    60% {
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%,
    80% {
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes squareMover {

    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }

    20%,
    60% {
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%,
    80% {
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@-webkit-keyframes treeMove {

    0%,
    100% {
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        transform: rotate(10deg) translateX(30px);
    }
}

@keyframes treeMove {

    0%,
    100% {
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        transform: rotate(10deg) translateX(30px);
    }
}


/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: zoom-fade;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}

@keyframes zoom-fade {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}


@-webkit-keyframes service_hexagon_2 {
    0% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(360deg)
    }
}


@keyframes service_hexagon_2 {
    0% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(360deg)
    }
}

@keyframes service_hexagon_2 {
    0% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(360deg)
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;
    z-index: 999;
    visibility: hidden;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

.padding {
    padding: 90px 0;
}

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.banner {
    background: url(../images/banner.webp) center top no-repeat;
	padding: 60px 0 40px;
}
.banner-mob {
display: none;
}

.banner_content{ margin-top:10%;}
.banner h1 {
	font-size:40px;
	line-height:44px;
	color:#032D4F;
	font-weight:700;
}
.banner h1 span{
	display:block;
}
.banner h2 {
	font-size:40px;
	line-height:44px;
	color:#032D4F;
	font-weight:500;
	border-bottom:solid 1px #000;
	display:inline-block;
	padding-bottom:15px;
	margin-bottom:20px;
}
.banner h2 span{
	display:block;
}

.stats-section{
	background-color: rgba(0, 0, 0, .3);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px 0;
    color:#fff;
	border-radius:20px;
	margin-top:10%;
}

.stat-box{
    text-align:center;
    padding:0 10px;
}

.stat-box h3{
    font-size:20px;
    margin:0;
    font-weight:700;
	color:#fff;
}

.stat-box p{
    margin:5px 0 0;
    font-size:16px;
	line-height:20px;
}

.divider{
    width:1px;
    height:50px;
    background:rgba(255,255,255,0.6);
}




.speak{ background:#fff; text-align:center;}
.speak_number{ border:solid 1px #cacaca; padding:30px 20px; border-radius:20px; text-align:center; height:100%;}

.speak-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
	margin-top:-15%;
}

.speak-header h1{ font-size:32px; line-height:40px; color:#032D4F; font-weight:600; background:#FFF; padding:0 15px; margin-bottom:10px;}
.speak_number p{font-size: 18px; line-height: 24px; color: #303030; font-weight:500; margin-bottom:0;}
.speak_number p span{font-size: 15px; line-height: 20px; color: #303030; font-weight:100; display:block;}

.placements{ background:url(../images/placements-bg.webp) no-repeat center top #01609a; text-align:center;}
.placements-block {
  margin-top:5%;
}
.placements-box img {
  border-radius: 20px;
}
.owl-placements .owl-dots {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top:2%;
}
.owl-placements .owl-dot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #fecc00 !important;
  background-color: #fff !important;
}
.owl-placements .owl-dot.active {
  background-color: #fecc00 !important;
}

.owl-placements .owl-nav .owl-next {
cursor: pointer;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position:absolute;
font-size:24px;
background: #fff !important;
color:#e7e7e7 !important;
right: 0px;
top:-20%;
border-radius:50%;
padding: 3px 12px;
}

.owl-placements .owl-nav .owl-prev {
cursor: pointer;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position:absolute;
font-size:24px;
background:#ff803d !important;
color:#02160f !important;
right: 50px;
top:-20%;
border-radius:50%;
padding: 3px 12px;
}

.placement-card{
    width:100%;
    margin:auto;
    text-align:center;
    position:relative;
}

.profile-img{
    position:absolute;
    top:10px;
    left:50%;
    transform:translateX(-50%);
}

.profile-img img{
    width:120px;
    height:120px;
    border-radius:50%;
    border:6px solid #fff;
    object-fit:cover;
}

.placement-info{
    background:#f97933;
    padding:130px 30px 40px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
	text-align:left;
}

.left h2{
    margin:0;
    font-size:30px;
    font-weight:700;
}

.left h3{
    margin:0;
    font-size:26px;
    font-weight:500;
}

.divider{
    width:1px;
    height:60px;
    background:#000;
}

.right{
    display:flex;
    align-items:center;
}

.rupee{
    font-size:28px;
    margin-right:5px;
	color:#000;
}

.package{
    font-size:70px;
    font-weight:700;
	color:#000;
}

.package-text{
    margin-left:10px;
    text-align:left;
	color:#000;
}

.package-text span{
    font-size:28px;
    font-weight:400;
	color:#000;
}

.package-text p{
    margin:0;
    font-size:14px;
	line-height:18px;
	color:#000;
}

.company-logo{
    background:#fff;
    width:160px;
    margin:-25px auto 0;
    padding:10px;
}

.company-logo img{
    width:100%;
}


.recruiters{ background:#fff; text-align:center;}
.recruiters-block{ background:#f4f4f4; border-radius:30px; padding:20px;}

.brand-default {
  padding: 0;
  margin: 0;
}
.brand-default .brand {
  text-align: center;
}
.brand-default .brand img {
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  display: inline-block;
  padding: 17px 5px;
}

.brand-default.brand-style--2 {
  -ms-grid-columns: (1fr) [5];
  grid-template-columns: repeat(5, 1fr);
  display: -ms-grid;
  display: grid;
}
@media only screen and (max-width: 575px) {
  .brand-default.brand-style--2 {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.brand-default.brand-style--2 .brand {
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.brand-default.brand-style--2 .brand::after {
  content: "";
  pointer-events: none;
  display: block;
  left: -1px;
  top: -1px;
  bottom: 0;
  pointer-events: none;
  border: 1px solid #f3d4d4;
  content: "";
  right: 0;
  position: absolute;
}


.brand-default.brand-style--3 {
  -ms-grid-columns: (1fr) [6];
  grid-template-columns: repeat(6, 1fr);
  display: -ms-grid;
  display: grid;
}
@media only screen and (max-width: 575px) {
  .brand-default.brand-style--3 {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.brand-default.brand-style--3 .brand {
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.brand-default.brand-style--3 .brand::after {
  content: "";
  pointer-events: none;
  display: block;
  left: -1px;
  top: -1px;
  bottom: 0;
  pointer-events: none;
  border: 1px solid #f3d4d4;
  content: "";
  right: 0;
  position: absolute;
}







.brand-default.brand-style--4 {
  -ms-grid-columns: (1fr) [8];
  grid-template-columns: repeat(8, 1fr);
  display: -ms-grid;
  display: grid;
}
@media only screen and (max-width: 575px) {
  .brand-default.brand-style--4 {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.brand-default.brand-style--4 .brand {
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.brand-default.brand-style--4 .brand::after {
  content: "";
  pointer-events: none;
  display: block;
  left: -1px;
  top: -1px;
  bottom: 0;
  pointer-events: none;
  content: "";
  right: 0;
  position: absolute;
}



.offer{ background:#fff;}
.offer h3 {font-size: 28px; line-height: 34px; color: #303030; font-weight: 600; text-align:center; margin:2% 0;}
.offer p {font-size: 18px; line-height: 24px; color: #303030; font-weight: 300; text-align:center; margin-bottom: 0;}

.step .step-one-accrodion .accrodion-title {
background-color: #fff;
}

.step-one-accrodion {
position: relative;
display: block;
counter-reset: count;
}

.step-one-accrodion .accrodion {
position: relative;
display: flex;
border-bottom: solid 1px #c2c2c2;
transition: all 500ms ease;
}

.step-one-accrodion .accrodion.active {
background-color: #fff;
border-bottom:solid 1px #c2c2c2;
}

.step-one-accrodion .accrodion-title {
position: relative;
display: flex;
cursor: pointer;
padding: 22px 0px 32px;
padding-top: 23.5px;
padding-left: 0px;
padding-right: 30px;
transition: all 200ms linear;
transition-delay: 0.1s;
width:40%;
justify-content: space-between;
align-items: center;
}

.step-one-accrodion .accrodion-title i{
font-size:50px;
line-height:60px;
color:#9F9F9F;
}

.step-one-accrodion .accrodion-title h4 {
margin: 0;
font-size: 26px;
font-weight: 500;
line-height: 32px;
color: #0e3353;
position: relative;
letter-spacing: var(--thm-letter-space-small);
transition: all 500ms ease;
width:100%;
}

.step-one-accrodion .accrodion-title h4 span {
position: relative;
display: inline-block;
color: var(--thm-primary);
}

.step-one-accrodion .accrodion-title h4 span:before {
counter-increment: count;
content: ""counter(count);
}

.step-one-accrodion .accrodion+.accrodion {
margin-top: 10px;
}

.step-one-accrodion .accrodion.active .accrodion-title {
background-color: transparent;
}

.step-one-accrodion .accrodion.active .accrodion-title h4 {
color: #032D4F;
}
.step-one-accrodion .accrodion.active .accrodion-title i {
color:#FF8031;
}

.step-one-accrodion .accrodion-title h4::before {
content: "\f067";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 17px;
color: #0682be;
position: absolute;
top: 50%;
right: 0;
height: 35px;
width: 35px;
border-radius: 50%;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
transform: translateY(-50%);
transition: all 500ms ease;
display:none;
}

.step-one-accrodion .accrodion.active .accrodion-title h4::before {
content: "\f068";
color: #032D4F;
height: 35px;
width: 35px;
border-radius: 50%;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
display:none;
}

.step-one-accrodion .accrodion-content {
position: relative;
padding: 30px 60px 28px;
border-bottom: 0px solid #e5e5e5;
width:60%;
}

.step-one-accrodion .accrodion.last-chiled.active .accrodion-content {
border-bottom: 0px solid transparent;
}

.step-one-accrodion .accrodion-content p {
margin: 0;
font-size: 18px; 
line-height: 24px; 
color: #303030; 
font-weight: 300;
text-align:left;
}
.step_num {
background-color: #FF8031;
padding:10px 10px;
margin-right:5%;
width:30%;
text-align:center;
}
.step_num span {
font-size: 18px;
line-height:32px;
color: #000;
font-weight: 600;
}


.crc{ background:url(../images/crc-bg.webp) no-repeat center top #01609a; text-align:center;}
.crc p {font-size: 18px; line-height: 24px; color: #fff; font-weight: 300; text-align:center; margin-bottom: 0;}
.crc_box { background:#FF8031; height: 100%; padding:30px 25px; text-align:center;}
.crc_box h1 {font-size: 22px; line-height: 28px; color: #303030; font-weight: 600;}
.crc_box h1 span{display:block;}
.crc_box p {font-size: 18px; line-height: 24px; color: #303030; font-weight: 300; margin-bottom:0;}
.crc_box hr {background: #000; height: 2px;}
.crc_box:hover h1, .crc_box:hover p {
	color: #303030;
}
.crc_box:hover {
background: #fff;
}


.career-built{ background:#fff; text-align:center;}
.career-built p {font-size: 18px; line-height: 24px; color: #303030; font-weight: 300; text-align:center; margin-bottom: 0;}

.internship-section{
    margin:20px auto;
    border:2px solid #ff8c2a;
    border-radius:20px;
    padding:40px;
    background:#fff;
}

.top-content{
    display:flex;
    gap:30px;
	padding:0 50px;
    align-items:flex-start;
}

.title{
    font-size:32px;
    font-weight:600;
    line-height:1.2;
	color: #000;
	text-align:left;
}
.title span{
	display:block;
}

.divider{
    width:2px;
    background:#dcdcdc;
    height:80px;
}

.description{
	font-size: 18px;
	line-height: 22px;
	color: #303030;
	font-weight: 300;
	text-align:left;
}

.middle-title{
    text-align:center;
    margin:30px 0 20px;
    color:#666;
}

.logo-row{
    background:#f2f2f2;
    padding:5px 20px;
    border-radius:15px;
}

.bottom-text{
    text-align:center;
    margin-top:15px;
    color:#888;
    font-size:14px;
}

/* Responsive */

@media (max-width:768px){

.top-content{
    flex-direction:column;
}

.divider{
    display:none;
}

.title{
    min-width:auto;
}

.logo-row{
    gap:25px;
}

}

.global-section{
    padding:40px;
    border:2px solid #ff8c2a;
    border-radius:20px;
    background:#fff;
	text-align:left;
}

.global-wrapper{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

/* Left Content */

.left-content{
    width:35%;
	padding-left:50px;
}

.left-content h2{
    font-size:34px;
    line-height:40px;
	font-weight:600;
    margin-bottom:15px;
}
.left-content h2 span{
	display:block;
}

.left-line{
    width:80px;
    height:3px;
    background:#5b7890;
    margin-bottom:20px;
}

.left-content p{
	font-size: 18px;
	line-height: 22px;
	color: #303030;
	font-weight: 300;
	text-align:left;
}

/* Right Table */

.right-table{
    width:65%;
    background:#f1f1f1;
    padding:15px 40px;
    border-radius:15px;
}

.table{
    width:100%;
    border-collapse:collapse;
}

.table th{
    text-align:left;
    padding:12px;
    border-bottom:1px solid #ddd;
    font-size:18px;
}

.table td{
	font-size:16px;
    padding:0px 12px;
    border-bottom:1px solid #eee;
}

.country{
    display:flex;
    align-items:center;
    gap:10px;
}

.country img{
    width:24px;
    height:16px;
    object-fit:cover;
    border-radius:3px;
}

/* Responsive */

@media (max-width:900px){

.global-wrapper{
    flex-direction:column;
}

.left-content,
.right-table{
    width:100%;
}
}



.incubator{}
.incubator h1{ font-weight:300;}
.incubator h1 span{ display:block; font-weight:600;}
.incubator p{font-size: 18px; line-height: 22px; color: #303030; font-weight:300;}

.incubator_box{ background:#f4f4f4; position:relative; z-index:-99; padding-bottom:40px;}
.incubator_box_bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;}
  
.incubator_box_bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.incubator_number_box{ padding:40px; margin-top:70px; background:#032D4F; border-radius:20px;}
.incubator_number_box p{
  font-size: 17px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
  }
.incubator_number_box p strong{
	font-weight:bold;
  }

.stats {
    display: flex;
    justify-content: space-between;
    background: #ff7a2f;
    color: #fff;
    border-radius: 12px;
    margin: 20px 0;
    padding: 20px;
	margin-top:8%;
  }
  .stat {
    text-align: center;
    flex: 1;
  }
  .stat h3 {
    margin: 0;
    font-size: 40px;
	line-height:50px;
	color:#052c4d;
	font-weight:700;
  }
  .stat p {
    margin: 5px 0 0;
	font-size: 18px;
	line-height: 22px;
	color: #303030;

  }
  .offers {
	text-align: center;
    margin-top: 20px;
  }
  
  .offers h3{
  font-size: 28px;
  line-height: 34px;
  color: #303030;
  font-weight: 600;
  }  

  .offer-box {
    border: 1px solid #c8b37f;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
	margin-top:20px;
  }
  .offer-box span {
    margin: 0 30px;
	font-size:26px;
    color: #303030;
  }
  .footer-text {
	font-size: 18px;
	line-height: 22px;
	color: #303030;
	font-weight:300;
    margin-top: 10px;
  }

.amitians{ background:url(../images/amitians-bg.webp) no-repeat center bottom; text-align:center; padding-bottom:50px;}	
.amitians h1{font-size: 24px; line-height: 32px; color: #333333; font-weight:400;}
.amitians p{font-size: 18px; line-height: 22px; color: #303030; font-weight:300;}

.amitians-block {
  margin-top:10%;
}
.amitians-box img {
  border-radius: 20px;
}
.owl-amitians .owl-dots {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top:2%;
}
.owl-amitians .owl-dot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #fecc00 !important;
  background-color: #fff !important;
}
.owl-amitians .owl-dot.active {
  background-color: #fecc00 !important;
}

.owl-amitians .owl-nav .owl-next {
cursor: pointer;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position:absolute;
font-size:24px;
background: #fff !important;
color:#e7e7e7 !important;
right: 0px;
top:-10%;
border-radius:50%;
padding: 3px 12px;
}

.owl-amitians .owl-nav .owl-prev {
cursor: pointer;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position:absolute;
font-size:24px;
background:#ff803d !important;
color:#02160f !important;
right: 50px;
top:-10%;
border-radius:50%;
padding: 3px 12px;
}

.amitians_list{
width: 100%;
padding:20px;
background:#e2e2e2;
border-radius:20px;
}
.amitians_list h1 {
	font-size:22px;
	line-height:26px;
	color:#333333;
	font-weight:600;
	margin-bottom:5px;
}
.amitians_list p {
	font-size:17px;
	line-height:22px;
	color:#303030;
	margin-bottom:0;
}
.amitians_list span{
	font-size:15px;
	line-height:20px;
	color:#303030;
	font-weight:300;
	display:block;
	margin-bottom:0;
}

.amitians_list img {
	border-bottom:solid 10px #ff803d;
	padding-bottom:15px;
	margin-bottom:15px;
}
.amitians_list hr {
	background:#000;
	height:2px;
	margin:10px 0;
}



/*FAQS Page*/
.faqs-page {
    background-color: #f6f6f6;
}

.faqs-page .faq-one-accrodion .accrodion-title {
    background-color: #f9f9f9;
}

.faq-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.faq-one-accrodion {
    position: relative;
    display: block;
    counter-reset: count;
	margin-top:2%;
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
	background-color:#fff;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active {
    background-color: #eeeeee;
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 22px 0px 22px;
    padding-top: 23.5px;
    padding-left: 40px;
    padding-right: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    background-color: var(--thm-light);
}

.faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #032C4D;
    position: relative;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion-title h4 span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
}

.faq-one-accrodion .accrodion-title h4 span:before {
    counter-increment: count;
    content: ""counter(count);
}

.faq-one-accrodion .accrodion+.accrodion {
    margin-top: 10px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
    background-color: #f9f9f9;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: #032C4D;
}

.faq-one-accrodion .accrodion-title h4::before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 17px;
    color: #b29f6e;
    position: absolute;
    top: 50%;
    right: 0;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f068";
    color: #4d58a8;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 0px 60px 28px;
    border-bottom: 0px solid #e5e5e5;
	background-color: #f9f9f9;
}

.faq-one-accrodion .accrodion.last-chiled.active .accrodion-content {
    border-bottom: 0px solid transparent;
}

.faq-one-accrodion .accrodion-content p {
margin: 0;
font-size: 18px;
line-height: 24px;
color: #303030;
font-weight: 300;
}



.career{ background:#ff803d; text-align:center;}
.career p {font-size: 18px; line-height: 22px; color: #303030; font-weight: 300;}
.career-btn {
  background:#032D4F;
  color: #fff;
  border: none;
  padding: 16px 20px;
  font-size: 24px;
  line-height:32px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  width:100%;
}

/* Hover effect */
.career-btn:hover {
  background: #fff;
  color:#032D4F;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}


.copyright {
    background: #ededed;
    padding: 20px 10px;
    text-align: center;
    color: #2e2e2e;
}

.copyright p{
	text-align:center;
	font-size:15px;
	line-height:20px;
	color:#032C4D;
	margin-bottom:0;
}

@media only screen and (min-width: 320px) and (max-width: 769px) {
.banner{ background:#e5935b; padding:0;}
.banner_content{ display:none;}
.banner-mob {
display: block;
}
.banner .col-md-4{ padding-left:0px !important; padding-right:0px !important;}
.admission-form .col-md-4{ padding-left:10px !important; padding-right:10px !important;}

.padding {
padding: 60px 0;
}	
.section-title__title {
font-size: 18px;
line-height: 24px;
}

.speak_number p, .offer p, .crc p, .crc_box p, .career-built p, .description, middle-title, .amitians p, .incubator p, .footer-text, .faq-one-accrodion .accrodion-content p, .career p {font-size: 15px; line-height: 20px;}

.speak_number {
padding: 10px 10px;
}
.speak-header h1 {
  font-size: 24px;
  line-height: 30px;
}
.left h2 {
  font-size: 24px;
}
.package {
  font-size: 40px;
}
.package-text span {
  font-size: 24px;
}

.owl-placements .owl-nav .owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{ top:-40px;}

h2.resp-accordion{font-size: 17px !important; text-align:left;}
.resp-tab-active::after{ display:none;}

.step-one-accrodion .accrodion {
display: block;
}
.step-one-accrodion .accrodion-title h4 {
font-size: 20px;
line-height: 26px;
}
.step-one-accrodion .accrodion-content p {
  font-size: 15px;
  line-height: 20px;
}
.step-one-accrodion .accrodion-content {
padding: 0px 20px 28px;
width: 100%;
}
.step-one-accrodion .accrodion-title{ width:100%; padding: 0px 0px 10px;}

.step_num {
  background-color: #FF8031;
  padding: 0px 10px;
  margin-right: 5%;
  width: 25%;
  text-align: center;
  border-radius:20px;
}
.step_num span {
  font-size: 13px;
  line-height: 20px;
  color: #000;
  font-weight: 600;
}
.crc_box h1 span {
  display: inline;
}
.internship-section {
  margin: 10px auto;
  padding: 20px;
}
.top-content {
  padding: 0 10px;
}
.title, .left-content h2 {
  font-size: 24px;
}
.title span{
	display:inline;
}
.middle-title {
  text-align: left;
  margin: 10px 10px;
  color: #666;
}
.left-content {
  width: 100%;
  padding-left: 10px;
}
.left-content h2 span{ display:inline;}
.global-section {
  padding: 20px;
}

.right-table {
  width: 100%;
  padding: 15px 10px;
}
.table th {
  padding: 12px;
  font-size: 14px;
  line-height:20px;
}
.table td {
  font-size: 12px;
  line-height:16px;
  padding: 10px 3px;
}

.incubator h1 {
  font-size:24px;
  margin-bottom:20px;
}
.incubator h1 span{
	display:inline;
}
.incubator_box_bg {
  position: static;
}
.incubator_box {
  padding: 0 20px;
}
.incubator_number_box {
  padding: 20px;
  margin-top:20px;
}
.stat h3 {
  font-size: 18px;
}
.stat p {
  font-size: 14px;
  line-height:20px;
}
.offers h3 {
  font-size: 16px;
  line-height: 24px;
  color: #303030;
  font-weight: 500;
}
.offer-box span {
  font-size: 9px;
  margin:0 0;
}

.faq-one-accrodion .accrodion-content {
padding: 0px 20px 28px;
}
.faq-one-accrodion .accrodion-title{ padding-left:20px;}
.faq-one-accrodion .accrodion-title h4::before {
font-size: 15px;
top: 20%;
right: -25px;
}

.career-btn {
font-size: 20px;
}
}

@media (max-width: 767px) {
  .section-title__title {
    font-size: 24px;
    line-height: 30px;
  }
  .section-title__title span {
    display: inline;
  }
  .section-title__tagline {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .main-header {
    padding-left: 0;
    padding-right: 0;
  }
}
