@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo:wght@400;600;700;800&display=swap');

* {
	scrollbar-color: #A92D5C #1f2029;
	scrollbar-width: thin;
}

a {
	transition: all ease-in-out 0.35s;
}

/* FONTAWESOME */
@font-face {
	font-family: "Font Awesome 5 Free";
	font-style: normal;
	font-weight: 400;
	font-display: block;
	src: url(../fonts/fa-regular-400.eot);
	src: url(../fonts/fa-regular-400%EF%B9%96.eot#iefix) format("embedded-opentype"), url(../fonts/fa-regular-400.woff2) format("woff2"), url(../fonts/fa-regular-400.woff) format("woff"), url(../fonts/fa-regular-400.ttf) format("truetype"), url(../fonts/fa-regular-400.svg#fontawesome) format("svg")
}

.far {
	font-family: "Font Awesome 5 Free";
	font-weight: 400
}

@font-face {
	font-family: "Font Awesome 5 Brands";
	font-style: normal;
	font-weight: 400;
	font-display: block;
	src: url(../fonts/fa-brands-400.eot);
	src: url(../fonts/fa-brands-400%EF%B9%96.eot#iefix) format("embedded-opentype"), url(../fonts/fa-brands-400.woff2) format("woff2"), url(../fonts/fa-brands-400.woff) format("woff"), url(../fonts/fa-brands-400.ttf) format("truetype"), url(../fonts/fa-brands-400.svg#fontawesome) format("svg")
}

.fab {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400
}

@font-face {
	font-family: "Font Awesome 5 Free";
	font-style: normal;
	font-weight: 900;
	font-display: block;
	src: url(../fonts/fa-solid-900.eot);
	src: url(../fonts/fa-solid-900%EF%B9%96.eot#iefix) format("embedded-opentype"), url(../fonts/fa-solid-900.woff2) format("woff2"), url(../fonts/fa-solid-900.woff) format("woff"), url(../fonts/fa-solid-900.ttf) format("truetype"), url(../fonts/fa-solid-900.svg#fontawesome) format("svg")
}

.fa, .fas {
	font-family: "Font Awesome 5 Free";
	font-weight: 900
}

/* width */
::-webkit-scrollbar {
	width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #d4d4d4;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #A92D5C;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #80173f;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: #000000;
	background: #fff;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

a {
	color: #A92D5C;
}

a:hover {
	color: #89103e;
}

a, a:hover {
	text-decoration: none;
}

ul li, ol li {
	list-style: none;
}

img {
	max-width: 100%
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: 'Lato', sans-serif;
	line-height: 1.5;
	color: #000;
}

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

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

/* FORM STYLE */
.form-control {
	border: 2px solid #DEDEDE;
	color: #646E89;
	padding: 10px 30px;
	border-radius: 0;
}

.form-control:focus {
	border-color: #A92D5C;
	box-shadow: none;
}

input[type="submit"] {
	background-color: #CC2527;
	font-family: 'Roboto', sans-serif;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 0;
	color: #fff;
	-webkit-transition: all ease-in-out 0.35s;
	transition: all ease-in-out 0.35s;
	padding: 12px 66px;
}

input[type="submit"]:hover {
	background-color: #A92D5C;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../images/angel-down.svg) no-repeat;
	background-position: calc(100% - 10px) 50%;
}

select.form-control:not([size]):not([multiple]) {
	height: auto;
}

/* Line Animation*/
.hvr-underline-from-left a {
	position: relative;
}

.hvr-underline-from-left a:after, .hvr-underline-from-left a.selected:after {
	content: "";
	position: absolute;
	width: calc(100%);
	height: 4px;
	background-color:#A92D5C;
	left: 0px;
	bottom: 0px;
	transform: scaleX(0);
	transform-origin: calc(100%) 0;
	transition: transform .35s ease-out;
	border-radius: 3px;
}

.hvr-underline-from-left a:hover:after, .hvr-underline-from-left a.selected:after {
	transform: scaleX(1);
	transform-origin: 0px 0;
}


.hvr-bounce-to-right a {
	position: relative;
	z-index: 2;
}

.hvr-bounce-to-right a:after, .hvr-bounce-to-right a.selected:after {
	content: "";
	position: absolute;
	width: calc(100%);
	height: 100%;
	background-color: var(--green-color);
	left: 0px;
	bottom: 0px;
	transform: scaleX(0);
	transform-origin: calc(100%) 0;
	transition: transform .35s ease-out;
	z-index: -1;
}

.hvr-bounce-to-right a:hover:after, .hvr-bounce-to-right a.selected:after {
	transform: scaleX(1);
	transform-origin: 0px 0;
}


/* HEADER */
.main-header {
	position: sticky;
	top: 0;
	background-color: #fff;
	z-index: 8;
	box-shadow: 0 3px 66px rgba(0, 0, 0, 0.10);
}

.main-header nav ul li a {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	-webkit-transition: all ease-in-out 0.35s;
	transition: all ease-in-out 0.35s;
}

.main-header nav ul li a:hover {
	color: #A92D5C;
}

.main-header nav .sub-menu li:not(:last-child) {
	border-bottom: 1px solid #505050;
}

.main-header nav li.has-child>a::after {
	content: '';
	background: url(../images/arrow-down.svg) no-repeat;
	width: 11px;
	height: 8px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}

.main-header nav .sub-menu li a {
	background-color: rgba(0, 0, 0, 0.8);
	padding: 10px;
	color: #fff;
	display: block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.main-header nav .sub-menu li a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #CC2527;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.main-header nav .sub-menu li a:hover:before,
.main-header nav .sub-menu li a:focus:before,
.main-header nav .sub-menu li a:active:before,
.main-header nav .sub-menu li.active a:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.main-header nav ul li a.login-btn {
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0em;
	border-radius: 0.3em;
	padding: 0.8em 1.8em;
	background: #a92d5c;
	border-color: transparent;
	color: #ffffff;
	font-weight: 900;
	overflow: hidden;
	-webkit-transform: translateZ(0);
	display: block;
	position: relative;
	outline: none !important;
}

.main-header a.login-btn:hover {
	background: #d0cccd;
	color: #000;
}
.main-header{
 -webkit-transition: 0.5s; 
 transition: 0.5s;
}
.main-header .logo img{
	-webkit-transition: 0.5s; 
	transition: 0.5s;
	width: 149px;
}
.main-header.header-fixed .logo img{
	width: 80px;
}
/* BUTTON STYLE */

.main-header .search-form {
	position: relative;
}

.main-header .search-form .search-trigger {
	cursor: pointer;
	background: none;
	height: 12px;
	width: 12px;
	padding: 0;
	border-radius: 100%;
	outline: 0;
	border: 0;
	color: inherit;
	cursor: pointer;
	-webkit-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
	border: 2px solid #000;
	display: block;
}

.main-header .search-form .search-trigger:before {
	content: "";
	position: absolute;
	width: 9px;
	height: 2px;
	background-color: #000;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-top: 9px;
	margin-left: 5px;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.main-header .search-form .search-trigger.close {
	-webkit-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
	border-color: transparent;
}

.main-header .search-form .search-trigger.close:before {
	content: "";
	position: absolute;
	width: 12px;
	height: 2px;
	margin-top: 2px;
	margin-left: 0;
	background-color: #000;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.main-header .search-form .search-trigger.close:after {
	content: "";
	position: absolute;
	width: 12px;
	height: 2px;
	background-color: #000;
	margin-top: 2px;
	margin-left: 0;
	cursor: pointer;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


.main-header .search {
	position: absolute;
	background: #fff;
	right: 0;
	top: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
	width: 100%;
	display: none;
	padding: 15px;
}

.main-header .search input {
	position: relative;
	border: none;
	padding: 5px;
	width: calc(100% - 36px);
}

.main-header .search input:focus,
.main-header .search input:focus-visible {
	box-shadow: none;
	border: none;
	outline: none;
}

.main-header .search button {
	background-color: transparent;
	border: none;
	cursor: pointer;
}

/* BANNER */
.banner-slider,
.banner-slider .bg-img {
	height: 500px;
	overflow: hidden;
}

.banner-slider .slider-content {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	transform: translate(-50%, -50%);
	width: 100%;
}

.banner-slider .slider-content .content-inner {
	text-align: center;
	max-width: 500px;
	margin: 0 auto;

}

.banner-slider .bg-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-slider h2 {
	font-size: 42px;
	font-weight: 800;
	margin-left: 8px;
	text-transform: uppercase;
	font-family: 'Exo', sans-serif;
	color: #fff;
}

/* Service Section*/
.section-service h2,
.section-service h3 {
	text-transform: uppercase;
}

/* certificate */
.section-certificate {
	background: #A92D5C;
}

.section-certificate h2,
.section-certificate h3 {
	color: #fff;
	text-transform: uppercase;
}

.certificate-top {
	width: 80%;
	text-align: center;
	margin: 0 auto;
}

.certificate-single {
	background: rgba(255, 255, 255, 0.16);
	margin-top: 30px;
	padding: 25px;
	text-align: center;
	font-size: 17px;
}

.certificate-single p {
	color: #fff;
	margin-bottom: 0;
}

/* Footer */
.footer-top {
	background: #666666;
	color: #fff;
	text-align: center;
}

.footer-top p {
	font-size: 0.9rem;
	line-height: 1.5rem;
}

.footer-top p:last-child {
	margin: 0;
}

.footer-middle {
	background: #222222;
	color: #666666;
}

.footer-middle ul {
	padding: 0;
	margin: 0;
	display: flex;
}

.footer-middle ul li a {
	color: #999999;
	font-size: 0.9rem;
}

.footer-middle ul li a:hover {
	color: #fff;
	border-bottom: 1px solid #fff;
}

.footer-middle ul li:not(:last-of-type) {
	margin-right: 20px;
}

.footer-middle ul.top {
	margin-bottom: 25px;
}

#toTop {
	position: fixed;
	bottom: 10px;
	left: 10px;
	text-decoration: none;
	display: none;
	transition: 0.5s;
	z-index: 2;
	background: rgba(0,0,0,0.3);
	text-align: center;
    border-radius: 0.3rem;
    height: 50px;
    width: 50px;
	border-radius: 8px;
}
#toTop:focus {
	outline: none;
	text-decoration: none;
}

#toTop i {
	font-size: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
}

#toTop:hover {
	color: #000000;
}

/* Login Page */
.inner-banner {
    background: #fff url(../images/inner-banerr-bg.jpg) no-repeat 0 0;
    background-size: cover;
    height: 210px;
}
.inner-banner .container {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translate(-50%, -50%);
    max-width: 100%;
}
.inner-banner .container h2{
	font-size: 42px;
	font-weight: 800;
	margin-left: 8px;
	text-transform: uppercase;
	font-family: 'Exo', sans-serif;
	color: #fff;
}
.registration-layout {
	max-width: 750px;
	margin: 0 auto;
	padding: 50px;
	background-color: #ffffff;
	box-shadow: 0 3px 66px rgba(0, 0, 0, 0.10);
}

.registration-layout h2 {
	text-align: center;
	margin: 0 0 30px 0;
	color: #A92D5C;
}

.registration-layout .form-group .form-control {
	width: 100%;
	border-radius: 6px;
	outline: 0;
	box-shadow: none;
	background-color: transparent;
	padding-left: 20px;
}

.registration-layout .form-group.active::after {
	width: 100%;
}

.form-control:focus {
	box-shadow: none;
}

.registration-layout .btn-submit {
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0em;
	border-radius: 0.3em;
	padding: 0.8em 1.8em;
	background: #a92d5c;
	border-color: transparent;
	color: #ffffff;
	font-weight: 900;
	overflow: hidden;
	-webkit-transform: translateZ(0);
	display: block;
	position: relative;
	outline: none !important;
	cursor: pointer;
	margin: 25px auto 0 auto;
}

.registration-layout .btn-submit:hover {
	background: #000000;
}