/*======================
   01.fonts
========================*/
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Black.eot');
    src: url('../fonts/Gotham-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Black.woff2') format('woff2'),
        url('../fonts/Gotham-Black.woff') format('woff'),
        url('../fonts/Gotham-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.eot');
    src: url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Bold.woff2') format('woff2'),
        url('../fonts/Gotham-Bold.woff') format('woff'),
        url('../fonts/Gotham-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.eot');
    src: url('../fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Medium.woff2') format('woff2'),
        url('../fonts/Gotham-Medium.woff') format('woff'),
        url('../fonts/Gotham-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.eot');
    src: url('../fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Book.woff2') format('woff2'),
        url('../fonts/Gotham-Book.woff') format('woff'),
        url('../fonts/Gotham-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root{
	--seablue: #5DB4C8;
	--yellow: #F9D207;
	--dark: #000000;
}

/*======================
   02. Basic css
========================*/
::-moz-selection{
	background-color: var(--yellow);
	color: #000;
}
::selection{
	background-color: var(--yellow);
	color: #000;
}
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.5;
	font-family: 'Gotham';
	background-color: #1D1F1F;
	color: #fff;
	font-weight: 400;
	font-size: 2rem;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}
p a{
	color: inherit;
}
p a:hover{
	color: var(--dark);
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #1D1F1F;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 5.0rem;
	height: 5.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5.0rem;
	height: 5.0rem;
	border-radius: 100%;
	background: var(--yellow);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	z-index: 999;
	width: 4.0rem;
	margin-left: auto;
}
.hamburger-menu span {
	background: #fff;
	width: 100%;
	height: .4rem;
	display: block;
	margin: .6rem 0;
	border-radius: 2rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(190%) rotate(135deg);
	-ms-transform: translateY(190%) rotate(135deg);
	transform: translateY(190%) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	-ms-transform: translateY(-325%) rotate(-135deg);
	transform: translateY(-325%) rotate(-135deg);
}
header {
	position: fixed;
	top: 0;
	z-index: 1024;
	width: 100%;
	padding: 2rem 0;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
}
header .container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
/*sticky START CSS*/
header.sticky {
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(255, 255, 255, .1);
           box-shadow: 0 .8rem 2.0rem 0 rgba(255, 255, 255, .1);
   background-color:#000;
}
.logo{
	width: 100%;
	max-width: 15rem;
}
.menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.menu>ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.menu>ul>li {
   padding: 1.2rem 2.2rem;
   margin-left: 2rem;
}
.menu>ul>li>a {
	letter-spacing: 0.1rem;
	color: #fff;
	line-height: 1.1;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.menu>ul>li.active>a,
.menu>ul>li>a:hover {
	color: var(--yellow) !important;
}
.menu .button.blue_btn {
	margin-left: 4.8rem;
	font-size: 2.4rem;
	padding: 1.25rem 2.6rem;
}
.button {
	display: inline-block;
	padding: 1.4rem 3.5rem;
	color: var(--dark);
	background-color: var(--yellow);
	border-radius: 4rem;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
	border: none;
	font-size: 2.4rem;
	text-transform: capitalize;
}
.button:hover{
	background-color: var(--seablue);
	color: var(--dark);
}
.outline{
	background-color: transparent;
	color: var(--yellow);
	border: 0.2rem solid var(--yellow);
}
.outline:hover{
	background-color: #fff;
	border-color: #fff;
	color: var(--dark) !important;
}
.button.white_btn{
	background-color: #fff;
	color: var(--yellow);
}
.button.white_btn:hover{
	color: #fff;
	background-color: var(--dark);
}
.black_btn{
	background-color: var(--dark);
	color: #fff;;
}
.black_btn:hover{
	background-color: var(--yellow);
}
.outline.white_btn{
	color: #fff;
	border: 0.2rem solid #fff;
	background-color: transparent;
	padding: 1.2rem 2.8rem;
}
.outline.white_btn:hover{
	border-color: var(--dark);
}

/*home area*/
.home_area {
    padding: 5rem 0 6rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
    background-color: #000;
}
.home_area::after{
	position: absolute;
	content: '';
	height: 100%;
	background-color: rgba(29, 31, 31, 0.85);
	z-index: -1;
	bottom: 0;
	width: 100%;
}
.home_area::before{
	position: absolute;
	content: '';
	height: 10rem;
	background-color: #1d1f1f;
	z-index: 1;
	bottom: 0;
	width: 100%;
}
.home_content{
	max-width: 70rem;
}
.home_content h1 {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}
.home_content p{
	margin-top: 3rem;
}
.home_content ul{
	list-style: disc;
	padding-left: 2rem;
}
.home_content ul li{
	margin-top: 2rem;
}
.home_content h1 span{
	color: var(--yellow);
}
h2 {
    font-size: 5rem;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
}
h2 span{
	color: var(--yellow);
}

/*medicine area*/
.about_area{
	padding-bottom: 7rem;
}
.about_area h2{
	margin-bottom: 4rem;
}
.about_area p{
	max-width: 85rem;
	margin-top: 2.5rem;
}
.about_area p a{
    text-decoration: underline;
}
.about_area p a:hover{
    color: var(--yellow);
}
.about_area img {
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 8/8;
}
.about_area ul{
	list-style: disc;
	padding-left: 2rem;
}
.about_area ul li{
	margin-top: 2rem;
}

/*expertise area*/
.expertise_area{
	background-color: #000;
	padding: 9rem 0;
}
.slider1 .owl-dots{
	margin-top: 4rem;
}
.slider1 .owl-dots button{
	border: 0.1rem solid var(--yellow);
	background-color: transparent;
}
.slider1 .owl-nav button{
	height: auto;
	width: auto;
	background-color: transparent;
	padding: 0;
	color: var(--dark);
	font-size: 6rem;
	top: calc(50% - 4rem)
}
.slider1 .owl-nav button:hover{
	background-color: transparent;
	color: var(--yellow);
}
.slider1 .owl-nav button.owl-prev{
	left: -5rem;
}
.slider1 .owl-nav button.owl-next{
	right: -5rem;
}
.slider1 .owl-stage{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.expertise_box {
    background-color: #1D1F1F;
    position: relative;
    padding: 4rem 4rem 4rem;
    height: 100%;
	border-bottom: 0.6rem solid var(--yellow);
	border-radius: 2rem;
}
h3{
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.3;
}
.expertise_box h3{
	margin-bottom: 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-column-gap: 1.7rem;
	   -moz-column-gap: 1.7rem;
	        column-gap: 1.7rem;
}
.expertise_box h3 img{
	height: 4.5rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.expertise_box .button{
	font-size: 2.2rem;
	position: absolute;
	left: 4rem;
	bottom: 4rem;
}

/*training area*/
.training_area{
	padding: 10rem 0;
}
.training_area h3{
	color: var(--yellow);
	margin-top: 4rem;
	margin-bottom: 2rem;
}
.training_area ul{
	list-style: disc;
}
.training_area ul li::marker{
	color: var(--yellow);
}
.training_area h4{
	color: var(--yellow);
	margin-top: 4rem;
	font-size: 2rem;
	line-height: 1.3;
	font-weight: 800;
	margin-bottom: 0.5rem;
}
/*partner area*/
.partner_area{
	background-color: #fff;
	color: var(--dark);
	padding: 4rem 0;
}
.marquee{
    overflow: hidden;
}
.js-marquee-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
}
.js-marquee-wrapper>div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
}
.marquee img {
    max-height: 6.5rem;
	width: 100%;
	max-width: 24rem;
	-o-object-fit: contain;
	   object-fit: contain;
}

/*footer area*/
footer {
    padding: 2rem 0 3rem;
}
.social_icons{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
}
.social_icons a{
	height: 5rem;
	width: 5rem;
	border-radius: 50%;
	background-color: var(--yellow);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: var(--dark);
	font-size: 2.4rem;
}
.social_icons a:hover{
	background-color: #fff;
	color: var(--dark);
}
/*return-to-top START CSS*/
.back-to-top {
	font-size: 2.5rem;
	width: 5rem;
	height: 5rem;
	line-height: 5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3rem;
	right: 3rem;
	border-radius: 50%;
	background: var(--yellow);
	z-index: 1000;
}
.back-to-top i {
	color: var(--dark);
}

.owl-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 2rem;
}
.owl-dots button{
	height: 1.2rem;
	width: 1.2rem;
	border-radius: 50%;
	padding: 0.1rem;
	margin: 0 0.5rem;
	background-color: var(--dark);
}
.owl-dots button.active{
	background-color: var(--yellow);
}

.owl-nav button{
	background-color: var(--dark);
	color: #fff;
	height: 5rem;
	width: 5rem;
	padding: 0;
	font-size: 2.6rem;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.owl-nav button:hover{
	background-color: var(--yellow);
}
.owl-nav button.owl-prev{
	left: 0;
}
.owl-nav button.owl-next{
	right: 0;
}

.academy_area .row{
	margin-left: -5rem;
	margin-right: -5rem;
}
.academy_area .row>div{
	padding-left: 5rem;
	padding-right: 5rem;
}
.academy_area img{
	aspect-ratio: 13/9;
	-o-object-fit: cover;
	   object-fit: cover;
}
.academy_area p{
	margin-top: 2.5rem;
}