* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: "Poppins-Medium";
}

*::before,
*::after {
    box-sizing: border-box;
}

.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}

/* poppins font */
@font-face {
    font-family: "Poppins-Black";
    src: url("../fonts/Poppins/Poppins-Black.ttf");
}

@font-face {
    font-family: "Poppins-Bold";
    src: url("../fonts/Poppins/Poppins-Bold.ttf");
}

@font-face {
    font-family: "Poppins-Medium";
    src: url("../fonts/Poppins/Poppins-Medium.ttf");
}

@font-face {
    font-family: "Poppins-Regular";
    src: url("../fonts/Poppins/Poppins-Regular.ttf");
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
}

/* DMSerifDisplay-Italic font */
@font-face {
    font-family: "DMSerifDisplay-Italic";
    src: url("../fonts/DMSerifDisplay-Italic.ttf");
}

/* common css */
:root {
    --white-color: #fff;
    --black-color: #000;
    --blue-color: #002948;
    --gray-color: #7a7a7a;
    --red-color: #ff4142;
}

body {
	background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: unset;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--black-color);
    font-family: "Poppins-SemiBold";
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: var(--red-color);
    font-family: "DMSerifDisplay-Italic";
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.textNormal {
    font-weight: 400;
}
.textMedium {
    font-weight: 500;
}
.textSemiBold {
    font-weight: 600;
}
.textBold {
    font-weight: 700;
}
.textWhite {
    color: var(--white-color);
}
.textBlack {
    color: var(--black-color);
}

p:last-child {
    margin-bottom: 0;
}

p span {
    color: var(--green-color);
}

p a {
    color: var(--green-color);
    font-size: inherit;
    font-family: inherit;
}

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: 1.2;
    color: var(--blue-color);
}

span {
    display: inline-block;
}

.section-heading {
	text-align: center;
	margin-bottom: 25px;
}

.section-heading p {
    font-size: 22px;
    line-height: 32px;
    color: var(--gray-color);
    margin-bottom: 0;
}

.btn.btn-blue {
	font-size: 16px;
	padding: 10px 20px;
	background: var(--blue-color);
	color: var(--white-color);
	border-radius: 50px;
	border: 2px solid transparent;
}
.btn.btn-blue.transparent {
	background: transparent;
	border-color: var(--blue-color);
	color: var(--blue-color);
}

.btn.btn-blue img {
    max-width: 30px;
    margin-right: 10px;
}

section {
    padding-top: 80px;
    overflow: hidden;
}

footer {
	padding: 50px 0 30px;
	position: relative;
	border-left: 1px solid #fff;
	text-align: center;
}

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

.bg {
    background: var(--green-color);
}

.textCenter {
    text-align: center;
}

img {
    max-width: 100%;
}

.button-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}

.swiper-vertical .swiper-pagination-bullet,
.swiper-horizontal .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: transparent;
    outline: 2px solid #AAB0BC;
    margin: 0 10px !important;
    opacity: 1;
}
.swiper-vertical .swiper-pagination-bullet-active,
.swiper-horizontal .swiper-pagination-bullet-active {
	background: var(--blue-color);
	border-color: var(--blue-color);
	outline-offset: 3px;
}

.owl-theme .owl-dots .owl-dot span {
	background: #d9d9d9;
	width: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #ff4142;
}
.owl-nav {
    margin-top: 0;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.owl-nav button.owl-prev {
    left: 0;
}
.owl-nav button.owl-next {
    right: 0;
}

/* header css start */
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

#header.show {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	animation: smoothScroll 1s forwards;
	z-index: 1000;
	box-shadow: 0 0 10px 2px #0000001f;
	background: #fff;
}

#header {
	background: transparent;
	padding: 15px 0;
	transition: .5s all;
	position: relative;
	z-index: 111;
}

#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .logo-box img {
	max-width: 260px;
	width: 100%;
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    font-size: 25px;
    color: #000;
    cursor: pointer;
    display: none;
}

#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
}

#header .button-box {
    margin-left: 10px;
}

#header nav ul li {
    display: inline-block;
    padding: 5px;
    position: relative;
}

#header nav ul li a {
	color: #000;
	padding: 10px 10px;
	border-radius: 5px;
	font-size: 16px;
	text-transform: uppercase;
	font-family: "Poppins-Medium";
}

/* homeBanner css */
#homeBanner {
	background-image: url("../images/banner-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 100% 100%;
	margin-top: -95px;
	padding-top: 150px;
}
#homeBanner .content-box {
	text-align: center;
}
#homeBanner .button-box ul {
	justify-content: center;
	padding-top: 20px;
}
#homeBanner .row {
	justify-content: center;
}

/* supporting css */
#supporting .box {
	text-align: center;
	border: none;
	height: 100%;
	padding: 50px 20px;
	position: relative;
}
#supporting .box.box3 {
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
}
#supporting {
	background: url('../images/supportingBG.png');
	background-repeat: no-repeat;
	background-position: center;
	padding: 40px 0 80px;
}
#supporting .box::after {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	right: 15px;
	bottom: 15px;
	background: url('../images/supportingRectangle.png');
	background-repeat: no-repeat;
	background-size: contain;
    background-position: center;
}
#supporting .text-box h4 {
	margin-bottom: 5px;
}
#supporting .text-box {
	padding-top: 15px;
}
#supporting .box img {
	max-height: 55px;
	min-height: 55px;
	object-fit: contain;
}
#supporting .container {
	max-width: 1200px;
}

/* online css */
#online .row {
	align-items: center;
}
#online h5 {
    font-family: "Poppins-Medium";
}
#online .img-box img {
	max-width: 450px;
	width: 100%;
}
#online .middle .img-box img {
	width: 70px;
	height: 70px;
	object-fit: contain;
}
#online .middle .content {
	display: flex;
	align-items: center;
	max-width: 200px;
}
#online .middle .content h4 {
	margin-bottom: 5px;
}
#online .middle .text-box {
	padding-left: 10px;
}
#online .middle {
	padding-top: 30px;
}
#online .middle .content p {
	font-size: 14px;
	line-height: 1.2;
}
#online .box.box2 .end .content img {
	width: 90px;
	height: 90px;
	max-width: unset;
	border-radius: 50%;
}
#online .box.box2 .end .content {
	display: flex;
	align-items: center;
	max-width: 330px;
}
#online .box.box2 .end .content h6 {
	font-size: 13px;
}
#online .box.box2 .end .content h5, #online .box.box2 .end .content h6, #online .box.box2 .end .content p {
	margin-bottom: 5px;
	font-family: "Poppins-SemiBold";
}
#online .box.box2 .end .content p {
	font-size: 14px;
}
#online .box.box2 .end {
	padding: 30px 30px;
	background: #f2f2f2;
	margin-top: 40px;
	border-radius: 20px;
	border: 1px solid #fff;
	box-shadow: 0 0 10px #f2f2f2;
}
#online .box.box2 .end .content .text-box {
	padding-left: 10px;
}
#online .box.box2 .end .row {
	row-gap: 10px;
}

/* why css */
#why .box {
	border: 1px solid var(--gray-color);
	padding: 25px;
	border-radius: 15px;
	height: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#why .box.box1 {
	border: none;
	padding: 0;
	border-radius: 0;
}
#why .box.box1 img {
	max-height: unset;
	max-width: 100%;
	margin-bottom: 0;
	height: 100%;
}
#why .box.box1 .img-box {
	height: 100%;
}
#why .row {
	row-gap: 25px;
}
#why .box img {
	max-height: 80px;
    max-width: 80px;
	margin-bottom: 40px;
}

/* take css */
#take .text-box h4 {
	margin-bottom: 5px;
}
#take .text-box p {
	color: var(--white-color);
}
#take .text-box {
	padding-top: 15px;
}
#take .box .content-box img {
	max-height: 50px;
	min-height: 50px;
	object-fit: contain;
}
#take .box .content-box {
	text-align: center;
}
#take .section-heading {
	margin-bottom: 60px;
}
#take .take-box {
	background: url('../images/blueBg.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: 100% 100%;
	padding: 30px 40px 0;
    border-radius: 30px;
}
#take .take-box > .row {
	align-items: center;
}
#take h1,#take h4 {
	color: #fff;
}

/* how css */
#how .list {
	list-style: number;
	padding-left: 15px;
}
#how .list li {
	padding-bottom: 10px;
}
::marker {
	color: var(--gray-color);
}
#how {
	position: relative;
}
#how::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 70%;
	left: 0;
	bottom: 0;
	background: #fff;
}

/* get css */
#get .content-box {
	display: flex;
	align-items: center;
	padding: 15px;
	background: #f2f2f2;
	border-radius: 25px;
}
#get .content-box .img-box {
	width: 40%;
}
#get .content-box .text-box {
	width: 60%;
	padding-left: 20px;
}
#getCarousel .owl-stage-outer {
	padding: 10px 0;
}
#get .content-box {
	display: flex;
	align-items: center;
	padding: 15px;
	background: #f2f2f2;
	border-radius: 25px;
	border: 1px solid #fff;
	box-shadow: 0 0 10px #f2f2f2;
}

/* faq css */
.accordion-button {
	padding: 20px;
	font-size: 18px;
    color: var(--black-color);
    background: transparent;
}
.accordion-button:not(.collapsed) {
	color: var(--black-color);
	background: transparent;
	box-shadow: none;
}
.accordion-item {
	background: transparent;
	border: 1px solid var(--gray-color) !important;
	border-radius: 15px !important;
}
.accordion-item:not(:last-child) {
	margin-bottom: 15px;
}
.accordion-button::after {
	display: none;
}
.accordion-body {
	padding-top: 0;
}

/* footer css */
footer p {
	color: var(--white-color);
}
footer .footer-box {
    background: url('../images/blueBg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 100% 100%;
    padding: 50px 50px;
    border-radius: 25px;
}