* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: "Roboto-Medium";
}

/* common css */
@font-face {
    font-family: "Roboto-Black";
    src: url("../fonts/Roboto-Black.ttf")
}

@font-face {
    font-family: "Roboto-Bold";
    src: url("../fonts/Roboto-Bold.ttf")
}

@font-face {
    font-family: "Roboto-Medium";
    src: url("../fonts/Roboto-Medium.ttf")
}

:root {
    --white-color: white;
    --black-color: black;
    --red-color: #ea0000;
    --blue-color: #002947;
    --light-blue-color: #7d9ec8;
    --pink-color: #f994ba;
    --grey-color: #bfcbd4;
}

.light-blue-color {
    background-color: var(--light-blue-color);
}
.pink-color {
    background-color: var(--pink-color);
}
.blue-color {
    background-color: var(--blue-color);
}


body {
    background-color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1;
    color: var(--blue-color);
    font-family: "Roboto-Black";
}

h1 {
	font-size: 60px;
	line-height: 70px;
}

h2 {
    font-size: 60px;
    line-height: 70px;
}

h2 span {
	color: var(--green-color);
}


h3 {
    font-size: 50px;
    line-height: 60px;
}

h4 {
	font-size: 35px;
	line-height: 45px;
}

h5 {
	font-size: 30px;
	line-height: 40px;
	font-family: "Roboto-Bold";
}

h6 {
	font-size: 25px;
	line-height: 35px;
	font-family: "Roboto-Bold";
}

p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 25px;
    color: var(--gray-color);
}

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

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

a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
}

span {
    display: inline-block;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading p {
    font-size: 22px;
    line-height: 32px;
    color: var(--gray-color);
    margin-bottom: 0;
}

.btn.btn-blue {
	font-size: 30px;
	padding: 12px 40px;
	background-color: var(--blue-color);
	color: white;
	border-radius: 50px;
	border: none;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
}

.btn.btn-blue img {
    max-width: 50px;
    margin-right: 15px;
}

.btn.btn-blue span h4 {
	color: var(--white-color);
	margin-bottom: 0;
	line-height: 40px;
}
.btn.btn-blue span {
	line-height: 30px;
	text-align: left;
}

section {
    padding: 70px 0;
}

footer {
    padding: 70px 0;
}

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

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.bg {
    background: var(--green-color);
}

.mt {
    margin-top: 30px;
}

.mb {
    margin-bottom: 30px;
}

.textAlign {
    text-align: center;
}

/* common css */


/* homeBanner css start */
#homeBanner {
	background-image: url("../images/banner.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: 100% 100%;
	min-height: 100vh;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
#homeBanner .box.box1 .img-box img {
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
	display: block;
}
#homeBanner .box.box2 .logo-box img {
	max-width: 250px;
	margin-bottom: 30px;
}
#homeBanner .text-box h4 {
	font-style: italic;
	font-family: "Roboto-Medium";
	color: var(--red-color);
	margin-bottom: 0;
}
#homeBanner .session-box .top-box ul {
	display: inline-flex;
	align-items: center;
	column-gap: 15px;
}
#homeBanner .session-box ul li.box {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
}
#homeBanner .session-box ul li.box{
	animation: number 3s infinite;
	transition-timing-function: cubic-bezier(0.47,2.02,.31,-.36);
}
@keyframes number {
	0% {		
		transform: scale(1.1);		
		transition-duration: .3s;
	}
	50% {
		transform: scale(1);
			
	}
	100% {		
		transform: scale(1.1);		
		transition-duration: .3s;
	}
	}
#homeBanner .session-box ul li h4, #homeBanner .session-box ul li h5 {
	margin-bottom: 0;
	font-family: "Roboto-Black";
}
#homeBanner .link-box ul {
	display: flex;
	align-items: center;
	margin-top: 40px;
}
#homeBanner .session-box .end-box {
	display: inline-flex;
	column-gap: 80px;
	background-color: var(--grey-color);
	padding: 15px 30px;
	border-radius: 12px;
	margin: 30px 0;
}
#homeBanner .session-box .end-box .right-box li ul {
	display: flex;
	column-gap: 15px;
}
#homeBanner .session-box ul li.box.white h4 {
	color: var(--white-color);
}
#homeBanner .link-box h6 {
	color: var(--red-color);
	text-transform: capitalize;
	margin-bottom: 0;
}
#homeBanner .link-box ul {
	display: inline-flex;
	align-items: center;
}
#homeBanner .link-box h4 {
	font-family: "Roboto-Bold";
	text-transform: capitalize;
	margin-bottom: 0;
}
#homeBanner .link-box ul li:first-child {
	padding-right: 40px;
	margin-right: 40px;
	border-right: 2px solid var(--blue-color);
}
/* homeBanner css end */