* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*::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");
}

/* roboto font */
@font-face {
    font-family: "Roboto-Black";
    src: url("../fonts/Roboto/Roboto-Black.ttf");
}

@font-face {
    font-family: "Roboto-Bold";
    src: url("../fonts/Roboto/Roboto-Bold.ttf");
}

@font-face {
    font-family: "Roboto-Medium";
    src: url("../fonts/Roboto/Roboto-Medium.ttf");
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("../fonts/Roboto/Roboto-Regular.ttf");
}

/* common css */
:root {
    --white-color: #fff;
    --black-color: #000;
    --gray-color: #6c757d;
    --blue-color: #2B98E3;
}

body {
    background: #191D23;
    font-family: 'Nunito Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--white-color);
    font-weight: 700;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: var(--gray-color);
}

p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--white-color);
}

p:last-child {
    margin-bottom: 0;
}

p span {
    color: var(--gray-color);
}

p a {
    color: var(--gray-color);
    font-size: inherit;
    font-family: inherit;
}

.textNormal {
    font-weight: 400;
}

.textMedium {
    font-weight: 500;
}

.textSemiBold {
    font-weight: 600;
}

.textBold {
    font-weight: 700;
}

.textBlack {
    font-weight: 900;
}

.textWhite {
    color: var(--white-color);
}

.textBlack {
    color: var(--black-color);
}

.textCenter {
    text-align: center;
}

.textRight {
    text-align: right;
}

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(--white-color);
}

span {
    display: inline-block;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 40px;
    position: relative;
}

.section-heading h2::after {
	content: '';
	position: absolute;
	width: 100PX;
	height: 3px;
	left: 50%;
	bottom: -10px;
	background: var(--blue-color);
	transform: translateX(-50%);
}

.section-heading p {
    font-size: 22px;
    line-height: 32px;
    color: var(--gray-color);
    margin-bottom: 0;
}
.btn-check:focus + .btn, .btn:focus, .form-control:focus, .accordion-button:focus {
    box-shadow: none;
}
.btn.btn-blue {
    font-size: 20px;
    padding: 12px 40px;
    background: var(--blue-color);
    color: var(--white-color);
    border-radius: 50px;
    border: none;
    display: flex;
    align-items: center;
    font-weight: 700;
    border: 2px solid var(--blue-color);
}

.btn.btn-blue.transparent {
    background: transparent;
    color: var(--blue-color);
}

.btn.btn-blue img {
    max-width: 30px;
    margin-right: 10px;
}

section {
    padding-bottom: 80px;
    overflow: hidden;
}

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

.bg {
    background: var(--gray-color);
}

img,
video {
    max-width: 100%;
}

.button-box ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 40px;
	row-gap: 10px;
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--white-color);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--blue-color);
    width: 25px;
}

.owl-nav {
    margin-top: 0;
}

.owl-nav button {
	position: absolute;
	top: 100%;
	transform: translate(0%, 10px);
}

.owl-nav button.owl-prev {
    left: 47%;
}

.owl-nav button.owl-next {
    right: 47%;
}

.owl-nav button:hover {
    background: transparent !important;
}

/* 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 #fff;
}

#header {
    background-color: transparent;
    padding: 12px 0;
    transition: .5s all;
    border-bottom: 2px solid var(--blue-color);
}

#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .logo-box img {
    max-width: 200px;
    width: 100%;
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    font-size: 25px;
    color: black;
    cursor: pointer;
    display: none;
}

#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
}

#header .button-box {
    margin-left: 20px;
}

#header .button-box ul {
	column-gap: 20px;
}

#header .button-box .btn.btn-blue {
    padding: 8px 30px;
}

#header nav ul li {
    display: inline-block;
    padding: 5px;
    position: relative;
}

#header nav ul li a {
    color: black;
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 18px;
    font-family: "Roboto-Medium";
}

/* homeBanner css */
#homeBanner {
    background: #14181D;
    padding: 40px 0 120px;
}

/* system css */
#system .box {
    text-align: center;
}

#system .box img {
    max-width: 130px;
    margin-bottom: 10px;
}

#system .system-box {
    box-shadow: 0 0 20px #00000052;
    padding-top: 20px;
    background: #191D23;
    border-radius: 15px;
    padding: 40px 20px;
}

#system {
    overflow: visible;
    margin-top: -30px;
}

#system .box h4 {
    font-size: 25px;
    margin-bottom: 0;
}

#system .col-md-3 {
    position: relative;
}

#system .col-md-3::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    right: 0;
    top: 50%;
    background: #545454;
    transform: translateY(-50%);
}
#system .col-md-3:last-child:after {
    display: none;
}

/* celebs css */
#celebs .box video {
	border-radius: 15px;
	margin-bottom: 5px;
}
#celebs h4 {
	font-size: 25px;
}

/* tutorials css */
#tutorials .box video {
	border-radius: 15px;
	margin-bottom: 5px;
}
#tutorials h4 {
	font-size: 25px;
}

/* customer css */
#customer .box {
	text-align: center;
}
#customer .section-heading h4 {
	margin-bottom: 0;
	padding-top: 10px;
	text-transform: uppercase;
	font-size: 25px;
	font-weight: 900;
}
#customer .button-box ul {
	justify-content: center;
}
#customer .customer-box {
	background: #14181D;
	padding: 80px 30px;
	border-radius: 15px;
}

/* faq css */
.accordion-item {
	margin-bottom: 15px;
	background: #14181D;
	border: none;
	border-radius: 40px !important;
}
.accordion-item h2 {
	display: flex;
	align-items: center;
}
.accordion-button {
	padding: 0;
	font-size: 24px;
	color: var(--white-color);
	background-color: transparent;
	font-weight: 700;
	padding: 10px 50px 10px 10px;
}
.accordion-button:not(.collapsed) {
	color: var(--white-color);
	background-color: transparent;
	box-shadow: none;
}
.accordion-item h2 img {
	max-width: 50px;
	margin-right: 15px;
}
.accordion-button::after {
	width: 20px;
	height: 20px;
	background-image: url("../images/down.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 20px;
}
.accordion-button:not(.collapsed)::after {
	background-image: url("../images/down.png");
    background-repeat: no-repeat;
	background-size: contain;
	transform: rotate(-180deg);
}
.accordion-body {
	padding: 10px 20px 10px 75px;
}

/* about css */
#about {
	background: linear-gradient(265deg, rgba(43,152,227,0.2) 0%, rgba(43,152,227,0) 100%);
	padding: 40px 0 0 0;
	margin-bottom: 80px;
}
.section-heading.left {
	text-align: left;
	margin-bottom: 20px;
}
.section-heading.left h2::after {
	left: 0;
	transform: none;
}
#about .row {
	align-items: center;
}

/* user css */
#user .row {
	align-items: center;
}
#user .box.box2 {
	background: #1E2229;
	padding: 40px 40px 60px 40px;
}
#user .box.box2 .text-box p {
	color: #EEEEEE8F;
	font-style: italic;
    padding-bottom: 40px;
}
#user .box.box2 .content-box h5 {
	margin-bottom: 5px;
	text-transform: uppercase;
	font-size: 18px;
	color: var(--blue-color);
}
#user .box.box2 .content-box p {
	color: #EEEEEE;
}
#user .owl-nav button {
	position: absolute;
	top: 100%;
	transform: translate(-50%, -0px);
}
#user .owl-nav button.owl-next {
	right: 0;
}
#user .owl-nav button.owl-prev {
	right: 50px;
    left: auto;
}

/* stay css */
#stay .row {
	align-items: center;
}
#stay .form-control {
	background: #ffffff12;
	border: none;
	padding: 18px;
	border-radius: 40px;
	color: #fff;
	font-size: 18px;
	text-transform: capitalize;
    appearance: textfield;
}
#stay .btn.btn-blue {
	position: absolute;
	right: 10px;
	padding: 8px 30px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50px !important;
	font-size: 18px;
    z-index: 11111;
}
#stay {
	background: linear-gradient(90deg, rgba(43,152,227,0.2) 0%, rgba(43,152,227,0) 90%);
	padding: 80px 0;
}

#back-top {
    position: relative;
}

#back-top {
    position: relative;
    padding: 0;
    text-align: center;
    margin: -25px 0;
    z-index: 111;
    cursor: pointer;
}

#stay .text-box p {
	max-width: 600px;
}

/* footer css */
footer {
    position: relative;
    background: #1E2229;
}
footer .top-box .logo-box img {
    max-width: 100px;
    margin-bottom: 30px;
}

footer .top-box h5 {
	text-transform: uppercase;
	font-weight: 900;
    font-size: 18px;
}
footer .top-box .list-box a {
	font-size: 15px;
	font-weight: 700;
	padding-left: 15px;
	color: #ffffff8f;
    position: relative;
}
footer .top-box .list-box a::after {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 7px;
	height: 7px;
	background: #ffffff8f;
	border-radius: 50%;
}

footer .top-box .list-box li:not(:last-child) {
	margin-bottom: 15px;
}

footer .top-box .link-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
    margin-top: 20px;
}

footer .top-box .link-box ul img {
    max-width: 40px;
}

footer .end-box {
	padding: 10px 0;
	border-top: 1px solid #FF4825;
}

footer .end-box p {
	color: #ffffff75;
	font-size: 15px;
}

footer .end-box .link-box ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

footer .end-box .link-box ul li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
}
footer .top-box {
	padding: 80px 0 10px 0;
	background: linear-gradient(180deg, rgba(30,34,41,0) 0%, rgba(30,34,41,1) 100%);
}


