/* GLOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea, label {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
button, input, textarea,select {
    outline: none !important;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 15px) calc(1em + 15px);
    background-repeat: no-repeat;
}
/* GLOBAL_CSS_CHANGES_END_HERE */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/* Chrome, Safari, Edge, Opera */

/* GLOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --white: #ffffff;
    --black: #000000;
    --para-color: #434343;
    --main-color: #FF6202;
    --futura-book: "Futura-Book";
    --futura-heavy: "Futura-Heavy";
    --futuralight-bt: "futura-light-bt";
    --futuramedium-bt: "futura-medium-bt";
}
/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Futura-Book";
    src: url("../webfonts/Futura-Book.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Futura-Heavy";
    src: url("../webfonts/Futura-Heavy.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
	font-family: "futura-light-bt";
	src: url("../webfonts/futura-light-bt.ttf");
	font-weight: regular;
	font-style: normal;
}
@font-face {
    font-family: "futura-medium-bt";
    src: url("../webfonts/futura-medium-bt.ttf");
    font-weight: regular;
    font-style: normal;
}
/* FONT_CSS_END_HERE */

/* ONCLICK-TOP */
.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'unicons';
	content: '\f062';
	font: var(--fa-font-solid);
	text-align: center;
	font-size: 16px;
	color: var(--black);
	mix-blend-mode: difference;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\f062';
	font: var(--fa-font-solid);
	text-align: center;
	font-size: 16px;
	opacity: 0;
	background-image: linear-gradient(298deg, var(--white), var(--black));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--black);
	stroke-width: 4;
	mix-blend-mode: difference;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
/* ONCLICK-TOP */

/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 5px;
}
body::-webkit-scrollbar-track {
    background: var(--white); 
}
body::-webkit-scrollbar-thumb {
	background-color: var(--black);
}
/* SCROLL-CSS */

/* LOADER-CSS */
/* LOADER-CSS */

/* HEADER-CSS */

.marquee__part {
    flex-shrink: 0;
    padding: 0 4px;
    font-smooth: always;
    margin: 0px 10px;
}
.marquee {
    background: transparent;
    color: #EEE;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.667vw;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    background: var(--black);
}
.marquee__inner {
-webkit-font-smoothing: antialiased;
    width: fit-content;
    display: flex;
    flex: auto;
    flex-direction: row;
}
.marquee__part p{
	font-family: var(--futura-light);
	font-size: 12px;
	color: var(--white);
}
.marquee__part p i{
	margin: 0px 0px 0px 10px;
}
.header-main-wrapper {
    border-bottom: 1px solid #F0F0F0;
    padding: 0px 0px 10px 0px;
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0px 0px 0px;
}
.header-links ul{
	display: flex;
	align-items: center;
	gap: 20px;
}
.header-links ul li a{
	font-family: var(--futuramedium-bt);
	font-size: 16px;
	color: var(--black);
	position: relative;
	transition: 0.5s all;
}
.header-links ul li a:hover::before{
	transform: scaleX(1);
}
.header-links ul li a:hover::after{
	transform: scaleX(1);
}
.header-links ul li a::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--main-color);
    position: absolute;
    top: -13px;
    border-radius: 0px;
    right: 0px;
	transform: scaleX(0);
	transition: transform 0.5s ease;
}
.navDropDownList {
    background: #fff;
    display: flex;
    flex-direction: column;
    width: 200px;
    position: absolute;
    transform: translateX(-50%);
    border-radius: 10px;
    padding: 15px;
    display: none;
    top: 120%;
    left: 78%;
    align-items: self-start !important;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    z-index: 9999999;
}
.navDropDownList1 {
    background: #fff;
    display: flex;
    flex-direction: column;
    width: 200px;
    position: absolute;
    transform: translateX(-50%);
    border-radius: 10px;
    padding: 15px;
    display: none;
    top: 120%;
    left: 78%;
    align-items: self-start !important;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    z-index: 9999999;
}
.navDropDown {
    position: relative;
}
.navToggle,
.navToggle1,
.navToggle2,
.navToggle3{
	cursor: pointer;
}
/* .header-links ul li a::after{
	content: '';
    width: 100%;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    bottom: 0px;
    border-radius: 0px;
    right: 0px;
	transform-origin: left;
	transform: scaleX(0);
	transition: transform 0.5s ease;
} */
.header-links ul li a i{
	margin: 0px 10px 0px 0px;
}
/* HEADER-CSS */

/* INDEX-CSS */
.index-banner-wrap-text h6 {
    font-family: var(--futura-heavy);
    font-size: 55px;
    color: var(--black);
    margin: 0px 0px 10px 0px;
}
.number{
	position: relative;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px #000;
    text-shadow: 2px 1px 0 #000;
	z-index: 3;
}
.number-light{
	position: relative;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px #fff;
	z-index: 3;
    text-shadow: 3px 0px 0 #fff;
}
.index-banner-wrap-text p {
    font-family: var(--futuralight-bt);
    color: var(--para-color);
    font-size: 20px;
    margin: 0px 0px 20px 0px;
}
.index-banner-wrapper {
    padding: 60px 0px;
    height: 70vh;
    display: flex;
    align-items: center;
}
.index-banner-wrap-main{
	position: relative;
}
.index-banner-wrap-circle img {
    border-radius: 100px;
    box-shadow: 0px 0px 20px 7px #00000059;
}
.index-banner-wrap-circle {
    position: absolute;
    bottom: -150px;
    left: -50px;
    animation: rotate 9s linear infinite;
}
.ornge-btn {
    font-family: var(--futura-heavy);
    font-size: 14px;
    color: var(--white);
    width: 200px;
    height: 50px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    border: 2px solid #2E2F35;
    box-shadow: 3.10986px 3.10986px 0px 0px #2E2F35;
	transition: 0.5s all;
}
.ornge-btn i{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	background: var(--white);
	color: var(--black);
}
.ornge-btn:hover {
    border: 0;
    box-shadow: none;
    color: var(--white);
    gap: 20px;
}
.light-blue-btn {
    font-family: var(--futura-heavy);
    font-size: 14px;
    color: var(--white);
    width: 200px;
    height: 50px;
    background-color: #38487A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    border: 2px solid #2E2F35;
    box-shadow: 3.10986px 3.10986px 0px 0px #2E2F35;
	transition: 0.5s all;
}
.light-blue-btn i{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	background: var(--white);
	color: var(--black);
}
.light-blue-btn:hover {
    border: 0;
    box-shadow: none;
    color: var(--white);
    gap: 20px;
}
.dark-blue-btn {
    font-family: var(--futura-heavy);
    font-size: 14px;
    color: var(--white);
    width: 200px;
    height: 50px;
    background-color: #061A59;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    border: 2px solid #2E2F35;
    box-shadow: 3.10986px 3.10986px 0px 0px #2E2F35;
	transition: 0.5s all;
}
.dark-blue-btn i{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	background: var(--white);
	color: var(--black);
}
.dark-blue-btn:hover {
    border: 0;
    box-shadow: none;
    gap: 20px;
    color: var(--white);
}
.index-banner-wrap-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}
.index-first-wrapper{
    padding: 80px 0px;
    background-color: #FFEFE5;
    position: relative;
}
.index-first-wrap-text{
    text-align: center;
}
.index-first-wrap-text h6 {
    font-family: var(--futura-heavy);
    font-size: 50px;
    color: var(--black);
    width: 70%;
    margin: 0px auto 120px auto;
}
.index-first-wrap-box-text{
    text-align: center;
}
.index-first-wrap-box-text p {
    font-family: var(--futuramedium-bt);
    font-size: 20px;
    color: #111111;
    width: 50%;
    margin: 0 auto;
}
.index-first-wrap-main-fbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.index-first-wrap-box {
    width: 250px;
    text-align: center;
    border-right: 1px dotted #111111;
}   
.index-first-wrap-box-img {
    margin: 0px 0px 10px 0px;
    height: 60px;
    transition: 0.3s linear;
}
.index-first-wrap-box:last-child{
    border-right: none;
}
.index-first-wrap-box:hover .index-first-wrap-box-img{
    transform: translate(0px , -10px);
}
.index-circle-left{
    position: absolute;
    left: 0;
    bottom: 0;
}
.index-circle-right{
    position: absolute;
    right: 0;
    top: 0;
}
.index-second-wrapper{
    padding: 80px 0px;
}
.index-second-wrap-text h6{
    font-family: var(--futura-heavy);
    font-size: 70px;
    color: var(--black);
    display: flex;
}
.index-second-wrap-text h6 p {
    color: var(--white);
    background-color: #4B0C8E;
    font-size: 40px;
    padding: 15px 10px;
    transform: rotate(-5deg) translate(15px, -5px);
}
.ornge-sm-btn {
    font-family: var(--futura-heavy);
    font-size: 14px;
    color: var(--white);
    width: 160px;
    height: 50px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    border: 2px solid #2E2F35;
    box-shadow: 3.10986px 3.10986px 0px 0px #2E2F35;
	transition: 0.5s all;
}
.ornge-sm-btn i{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	background: var(--white);
	color: var(--black);
}
.ornge-sm-btn:hover {
    border: 0;
    box-shadow: none;
    color: var(--white);
    gap: 20px;
}
.index-second-wrap-r-text h6{
    font-family: var(--futuramedium-bt);
    font-size: 25px;
    color: #111111;
    position: relative;
    margin: 0px 0px 15px 0px;
}
.index-second-wrap-r-text h6::before{
    content: '';
    position: absolute;
    width: 24%;
    height: 3px;
    background-color: #111111;
    bottom: -5px;
}
.index-second-wrap-r-text p{
    font-family: var(--futuralight-bt);
    font-size: 16px;
    color: var(--para-color);
    margin: 0px 0px 10px 0px;
}
.m-custom{
    margin: 0px 0px 50px 0px;
}
.index-second-wrap-text{
    position: relative;
}
.index-second-hand-img {
    position: absolute;
    right: 0;
    top: -110px;
    animation: float 3s ease infinite;
}
.index-third-wrapper{
    padding: 80px 0px;
    background-color: #FFEFE5;
}
.index-third-warp-top-text{
    text-align: center;
}
.index-third-warp-top-text h6 {
    font-family: var(--futura-heavy);
    font-size: 50px;
    color: var(--black);
    width: 60%;
    margin: 0px auto 10px auto;
}
.index-third-warp-top-text p{
    font-family: var(--futuralight-bt);
    color: var(--para-color);
    font-size: 20px;
    margin: 0px auto 20px auto;
    width: 70%;
}
.index-third-tabs nav {
    background-color: var(--white);
    border-radius: 10px;
    padding: 5px;
    margin: 0px 0px 60px 0px;
}
.index-third-tabs .nav-tabs .nav-link {
    font-family: var(--futura-book);
    font-size: 16px;
    color: var(--black);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
    transition: .5s all;
}
.index-third-tabs .nav-tabs .nav-link:hover{
    border: 2px solid #4B0C8E;
}
.index-third-tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--white);
    background-color: #4B0C8E;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover{
    border-color: transparent;
}
.index-third-tabs .nav {
    gap: 10px;
}
.index-third-tabs .nav-tabs{
    border: none;
}
.index-third-text h6 {
    font-family: var(--futura-heavy);
    font-size: 17px;
    color: #1B1B1B;
    margin: 0px 0px 5px 0px;
}
.index-third-text a{
    font-family: var(--futura-heavy);
    font-size: 14px;
    color: #1B1B1B;
}
.index-third-text a i{
    color: #FF6D2C;
    transform: translate(5px ,0px);
    transition: 0.5s all;
}
.index-third-text a:hover i {
    transform: translate(10px ,0px);
}
.index-third-textf {
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
    height: 70px;
}
.index-third-text ul{
    display: flex;
    align-items: center;
    gap: 5px;
}
.index-third-text ul li{
    color: #E0A819;
}
.index-third-img img{
    border-radius: 10px;
}
.index-third-top-icon{
    border-radius: 12px;
    opacity: 0.88;
    background: #FAFAFA;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 8px;
}
.index-third-top-icon span{
    font-family: var(--futura-heavy);
    font-size: 14px;
    color: #111111;
}
.index-third-box-main{
    position: relative;
    overflow: hidden;
}
.index-third-img{
    overflow: hidden;
    border-radius: 10px;
}
.index-third-img img{
    transition: 0.3s linear;
}
.index-third-box-main:hover .index-third-img img{
    transform: scale(1.1);
}
.index-third-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.index-third-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-fourth-wrapper {
    padding: 80px 0px;
    margin: 0% 0% 0% 10%;
    position: relative;
}
.index-fourth-testi-qf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 20px 0px;
}
.index-fourth-testi-qstars ul{
    display: flex;
    align-items: center;
    gap: 10px;
}
.index-fourth-testi-qstars ul li{
    color: #ECBD00;
    font-size: 20px;
    transition: .5s;
}
.index-fourth-testi-iconf{
    display: flex;
    align-items: center;
    gap: 10px;
}
.index-fourth-testi-box {
    border: 1px solid #D1D1D1;
    padding: 30px;
    border-radius: 10px;
    transition: .5s;
}
.index-fourth-wrap-text h6 {
    font-family: var(--futura-heavy);
    font-size: 45px;
    color: var(--black);
}
.index-fourth-testi-text p{
    font-family: var(--futuralight-bt);
    font-size: 16px;
    color: var(--para-color);
    margin: 0px 0px 10px 0px;
    transition: .5s;
}
.index-fourth-testi-iconf h2 {
    font-family: var(--futura-heavy);
    font-size: 20px;
    color: var(--black);
    transition: .5s;
}
.index-fourth-slider .owl-nav {
    position: absolute;
    left: -430px;
    bottom: 70px;
}
.owl-prev i {
    color: #b1b1b1 !important;
    font-size: 50px;
}
.owl-next i {
    color: var(--black) !important;
    font-size: 50px;
}
.owl-next,.owl-prev{
    transition: 0.5s all;
}
.owl-theme .owl-nav .owl-next:hover {
    background: transparent;
    text-decoration: none;
    transform: translate(15px, 0px);
}
.owl-theme .owl-nav .owl-prev:hover {
    background: transparent;
    text-decoration: none;
    transform: translate(-10px, 0px);
}
.index-fifth-wrapper{
    padding: 80px 0px;
    background-color: #FFEFE5;
    position: relative;
    overflow: hidden;
}
.index-fifth-wrap-text h6{
    font-family: var(--futura-heavy);
    font-size: 45px;
    color: var(--black);
    margin: 0px 0px 10px 0px;
}
.index-fifth-wrap-text p {
    font-family: var(--futuralight-bt);
    font-size: 16px;
    color: var(--para-color);
    margin: 0px 0px 20px 0px;
}
.index-fifth-wrap-text ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0px 0px 20px 0px;
}
.index-fifth-wrap-text ul li{
    display: flex;
    gap: 10px;
}
.index-fifth-wrap-text ul li i{
    font-size: 30px;
    color: #4B0C8E;
}
.index-fifth-wrap-text ul li p{
    font-family: var(--futuramedium-bt);
    font-size: 18px;
    color: var(--black);
}
.index-fifith-img{
    position: relative;
}
.index-fifith-img img {
    position: absolute;
    right: -220px;
    top: -80px;
}
.index-fifth-wrap-text{
    position: relative;
}
.index-fifth-wrap-text::before {
    content: '';
    width: 20px;
    height: 720px;
    background-color: #ffefe594;
    position: absolute;
    right: -44px;
    top: -80px;
}
.index-fifth-wrap-text::after {
    content: '';
    width: 40px;
    height: 720px;
    background-color: #ffefe594;
    position: absolute;
    right: -54px;
    top: -90px;
}
.index-banner-wrap-img {
    animation: float 2s ease-in-out infinite;
    position: relative;
}
.index-banner-wrap-img img{
    position: absolute;
    right: 0;
    top: -260px;
}
.is-visible{
    opacity: 1;
    animation: hide 5s ease-in-out infinite;
}
.is-hidden{
    opacity: 0;
    animation: visible 5s ease-in-out infinite;
}
.is-delay{
    animation-delay: 1s;
}
.is-delay1{
    animation-delay: 3s;
}
.is-delay2{
    animation-delay: 6s;
}
.is-delay3{
    animation-delay: 9s;
}
/* INDEX-CSS */

/* INNER-CSS */
.common-banner-wrapper{
    background-image: url(../images/inner-banner-bg.png);
    background-position: center;
    background-size: cover;
    padding: 50px 0px 70px 0px;
    position: relative;
}
.common-banner-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 25px;
    bottom: 20px;
    left: 0;
    background-color: transparent;
    border-top: 8px solid var(--main-color);
    border-bottom: 8px solid var(--main-color);
}
.common-banner-wrap-text ul{
    display: flex;
    align-items: center;
    gap: 5px;
}
.common-banner-wrap-text ul li a{
    font-size: 16px;
    font-family: var(--futuramedium-bt);
    color: var(--white);
}
.common-banner-wrap-text ul li .nav-active{
    font-family: var(--futura-heavy);
}
.common-banner-wrap-text h6 {
    font-size: 50px;
    font-family: var(--futura-heavy);
    color: #fff;
    letter-spacing: 2.4px;
}
.training-first-wrapper{
    padding: 100px 0px;
}
.training-first-wrap-text{
    position: relative;
}
.training-first-hand-img{
    position: absolute;
    top: 0;
    right: -40px;
    animation: float 3s ease infinite;
}
.training-first-wrap-text h6{
    font-size: 50px;
    font-family: var(--futura-heavy);
    color: #000;
    margin: 0px 0px 10px 0px;
}
.training-first-wrap-text h3{
    font-size: 24px;
    font-family: var(--futuramedium-bt);
    color: #000;
    margin: 0px 0px 10px 0px;
}
.training-first-wrap-text img{
    margin: 0px 0px 10px 0px;
}
.training-first-wrap-text p{
    font-family: var(--futuralight-bt);
    font-size: 16px;
    color: var(--para-color);
    margin: 0px 0px 10px 0px;
}
.training-first-wrap-box{
    margin: 0px 0px 10px 0px;
}
.training-first-wrap-box-img img{
    margin: 0px 0px 10px 0px;
}
.training-first-wrap-box-text h3{
    font-size: 24px;
    font-family: var(--futuramedium-bt);
    color: var(--black);
    border-bottom: 2px solid var(--black);
    padding: 0px 0px 5px 0px;
    margin: 0px 0px 10px 0px;
    width: 50%;
}
.training-first-wrap-box-text p{
    font-family: var(--futuralight-bt);
    font-size: 16px;
    color: var(--para-color);
}
.training-second-wrapper{
    background-color: #FFEFE5;
    padding: 50px 0px;
}
.training-second-wrap-text {
    text-align: center;
    margin: 0px 0px 50px 0px;
}
.training-second-wrap-text h6 {
    font-size: 50px;
    font-family: var(--futura-heavy);
    color: var(--black);
    margin: 0px 0px 5px 0px;
}
.training-second-wrap-text p {
    font-family: var(--futuralight-bt);
    font-size: 16px;
    color: var(--para-color);
    width: 75%;
    margin: 0 auto 10px auto;
}
.training-second-wrap-box-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}
.training-second-wrap-box {
    text-align: center;
    width: 300px;
    border-right: 1px dotted #111111;
    padding: 0px 50px 0px 0px;
}
.training-second-wrap-box:last-child{
    border-right: 0;
}
.training-second-wrap-box-img img {
    margin: 0px 0px 20px 0px;
    mix-blend-mode: darken;
    transition: .5s all;
}
.training-second-wrap-box:hover .training-second-wrap-box-img img {
    transform: translate(0px, -10px);
}
.training-second-wrap-box-text h3{
    font-size: 20px;
    font-family: var(--futuramedium-bt);
    color: var(--black);
    margin: 0px 0px 5px 0px;
}
.training-second-wrap-box-text p{
    font-family: var(--futuralight-bt);
    font-size: 14px;
    color: var(--para-color);
}
.training-second-wrap-text .ornge-btn{
    width: 250px;
    margin: 0 auto 20px auto;
}
.training-third-wrapper {
    padding: 200px 0px;
}
.training-fourth-wrap-box-img {
    overflow: hidden;
    margin: 0px 0px 20px 0px;
    border-radius: 15px;
}
.training-fourth-wrap-box-img img {
    transition: .5s all;
    height: 100%;
    object-fit: cover;
}
.training-fourth-wrap-box:hover .training-fourth-wrap-box-img img {
    transform: scale(1.1);
}
.training-fourth-wrap-box-text h4{
    font-size: 24px;
    font-family: var(--futuramedium-bt);
    color: var(--black);
    margin: 0px 0px 10px 0px;
}
.training-fourth-wrap-box-text p{
    font-family: var(--futuralight-bt);
    font-size: 14px;
    color: var(--para-color);
}
.training-course-box-text h4 {
    font-size: 20px;
    font-family: var(--futuramedium-bt);
    color: var(--black);
    margin: 0px 0px 10px 0px;
}
.training-course-box-text a{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-family: var(--futuramedium-bt);
    color: var(--black);
}
.training-course-box-text a i{
    color: var(--main-color);
}
.training-course-box-img{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin: 0px 0px 20px 0px;
}
.training-course-box-img span{
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: #FAFAFA;
    border-radius: 12px;
    padding: 10px;
    font-size: 14px;
    font-family: var(--futuramedium-bt);
    color: var(--black);
}
.training-fourth-wrapper {
    padding: 50px 0px;
}
/* INNER-CSS */

/* FOOTER-CSS */
.footer-wrapper{
    padding: 100px 0px 0px 0px;
}
.footer-box{
    border: 3px solid #2E2F35;
    border-radius: 24px 24px 0px 0px;
    padding: 30px 30px 0px 30px;
    border-bottom: 0;
}
.footer-newsletter-flex{
    display: flex;
    align-items: end;
    gap: 20px;
    margin: 0px 0px 100px 0px;
}
.footer-newsletter-text {
    width: 40%;
}
.footer-newsletter-text h6{
    font-family: var(--futura-heavy);
    font-size: 50px;
    color: var(--black);
}
.footer-newsletter-fields {
    width: 55%;
}
.footer-newsletter-btn {
    width: 5%;
}
.footer-newsletter-fields input:first-child{
    margin: 0px 0px 20px 0px;
}
.footer-newsletter-fields input {
    width: 90%;
    background-color: transparent;
    height: 45px;
    border: 0;
    border-bottom: 1px solid #1111114D;
    padding: 10px 0px;
    font-size: 18px;
    font-family: var(--futuralight-bt);
    color: #000000;
}
.footer-newsletter-btn button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #4B0C8E;
    color: var(--white);
    border-radius: 50px;
    font-size: 20px;
    border: 0;
    transition: .5s all;
}
.footer-newsletter-btn button:hover {
    background-color: var(--main-color);
}
.footer-link h6{
    font-size: 20px;
    font-family: var(--futura-heavy);
    color: #111111;
    margin: 0px 0px 10px 0px;
}
.footer-link ul li a {
    font-size: 16px;
    font-family: var(--futuramedium-bt);
    color: #111111;
    line-height: 2;
}
.footer-link p{
    font-size: 16px;
    color: var(--para-color);
    font-family: var(--futuralight-bt);
    margin: 0px 0px 10px 0px;
}
.footer-detail h6{
    font-size: 20px;
    font-family: var(--futura-heavy);
    color: #111111;
    margin: 0px 0px 10px 0px;
}
.footer-detail ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 3;
    font-size: 16px;
    font-family: var(--futuramedium-bt);
    color: #111111;
}
.footer-detail ul li i{
    color: var(--main-color);
    font-size: 20px;
}
.copyright{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #0000001A;
    padding: 10px 0px;
}
.copyright ul{
    display: flex;
    align-items: center;
    gap: 10px;
}
.copyright p{
    font-family: var(--futuramedium-bt);
    font-size: 14px;
    color: var(--black);
}
/* FOOTER-CSS */

/* ANIMATIONS */

@keyframes rotate {
    0%{
       transform: rotate(0deg);
      }
   100%{
       transform: rotate(360deg);
      }
   }
   
   @keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

   @keyframes visible {
	0% {
		opacity: 0;
	}
	50% {
        opacity: 1;
	}
	100% {
        opacity: 0;
	}
}

   @keyframes hidden {
	0% {
		opacity: 1;
	}
	50% {
        opacity: 0;
	}
	100% {
        opacity: 1;
	}
}
/* ANIMATIONS */

/*ADDITIONAL CSS*/
/*ADDITIONAL CSS*/