/*
d9078c
site color
*/

/*
|----------------------------------------------------------------------
|       Body Main Css
|----------------------------------------------------------------------
*/

@font-face {
	font-family: "Rubik Light";
	src: url("../fonts/Rubik-Light.ttf");
}

@font-face {
	font-family: "Rubik Regular";
	src: url("../fonts/Rubik-Regular.ttf");
}

@font-face {
	font-family: "Rubik Medium";
	src: url("../fonts/Rubik-Medium.ttf");
}

@font-face {
	font-family: "Rubik Bold";
	src: url("../fonts/Rubik-Bold.ttf");
}

@font-face {
	font-family: "Nunito Regular";
	src: url("../fonts/Nunito-Regular.ttf");
}

@font-face {
	font-family: "Nunito SemiBold";
	src: url("../fonts/Nunito-SemiBold.ttf");
}

@font-face {
	font-family: "Nunito Bold";
	src: url("../fonts/Nunito-Bold.ttf");
}

@font-face {
	font-family: "Nunito ExtraBold";
	src: url("../fonts/Nunito-ExtraBold.ttf");
}

@font-face {
	font-family: "Barlow Medium";
	src: url("../fonts/Barlow-Medium.ttf");
}

.lite {
	font-family: "Rubik Light", sans-serif !important;
}

.regular {
	font-family: "Rubik Regular", sans-serif !important;
}

.medium {
	font-family: "Rubik Medium", sans-serif !important;
}

.bold {
	font-family: "Rubik Bold", sans-serif !important;
}

.regular_sec {
	font-family: "Nunito Regular", sans-serif !important;
}

.semi_sec {
	font-family: "Nunito SemiBold", sans-serif !important;
}

.bold_sec {
	font-family: "Nunito Bold", sans-serif !important;
}

.x_bold_sec {
	font-family: "Nunito ExtraBold", sans-serif !important;
}

.medium_bar {
	font-family: "Barlow Medium", sans-serif !important;
}

html {
	height: 100%;
}

body {
	position: relative;
	min-height: 100%;
	/* background-color: #f8f9fa; */
	/*background: #d9078c;*/
	background: #fff;
	color: #0b0b0b;
	font-size: 14px;
	font-family: "Rubik Regular", sans-serif;
	line-height: 1.3;
	margin: 0;
	padding: 0;
	padding-top: 60px;
	letter-spacing: 0.2px;
	word-break: break-word;
	transition: all ease 0.5s;
	overflow-x: hidden;
}

body {
	display: flex;
	flex-flow: column;
}

body.dark {
	background-color: #212b30;
}

body.flow {
	overflow: hidden !important;
}

body > main {
	flex: 1;
}

body > main:after {
	/* content: ''; */
	position: absolute;
	bottom: 28px;
	left: 36%;
	width: 100px;
	height: 100px;
	background: #d9078c;
	border-radius: 75%;
	opacity: 0.25;
	/* -webkit-clip-path: polygon(100% 0, 100% 65px, 0 65px, 0 0); */
	/* -o-clip-path: polygon(100% 0, 100% 65px, 0 65px, 0 0); */
	/* clip-path: polygon(100% 0, 100% 65px, 0 65px, 0 0); */
	z-index: -1;
}

::selection {
	background: #d9078c;
	color: #fff;
}

::-moz-selection {
	background: #d9078c;
	color: #fff;
}

body a {
	color: #fff;
	word-break: break-word;
}

body a,
body span {
	display: inline-block;
	text-decoration: none;
}

body a:hover,
body a:focus {
	color: #d9078c;
	outline: none !important;
	text-decoration: none !important;
}

ul {
	margin: 0;
	padding: 0;
}

ul li {
	display: inline-block;
}

ul li a {
	transition: all ease 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #0b0b0b;
	font-family: "Rubik Medium", sans-serif;
	line-height: 1.2;
	margin: 0 0 10px;
}

p {
	margin: 0 0 10px;
}

p > a {
	color: #3c9cdb;
}

p > a:hover {
	color: #d9078c;
}

.relative {
	position: relative;
}

.tableDv {
	display: table;
	width: 100%;
	height: 100%;
}

.tableCell {
	display: table-cell;
	vertical-align: middle;
}

.toggle {
	position: absolute;
	top: 12px;
	left: 25px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 10px;
	transition: all ease 0.5s;
	z-index: 4;
}

.toggle span,
.toggle span:before,
.toggle span:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background: #ddd;
	border-radius: 50px;
	transition: all ease 0.5s;
}

.toggle span {
	position: relative;
	display: block;
	width: 22px;
	margin: 7px auto;
}

.toggle span:before {
	top: -7px;
}

.toggle span:after {
	bottom: -7px;
}

.toggle.active span {
	background: transparent !important;
}

.toggle.active span:before {
	transform: rotate(405deg);
}

.toggle.active span:before,
.toggle.active span:after {
	top: 0;
}

.toggle.active span:after {
	transform: rotate(-45deg);
}

.blockquote {
	background: #fafafa;
	color: #151d23;
	font-size: 14px;
	padding: 10px 10px 10px 20px;
	border: 1px solid #f0f5f9;
	border-left: 4px solid #d9078c;
}

.secHeading {
	position: relative;
	color: #d9078c;
	font-size: 24px;
	font-family: "Rubik Bold", sans-serif;
	text-transform: uppercase;
	padding-bottom: 18px;
	margin-bottom: 30px;
}

.secHeading:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 5px;
	background: #d9078c;
}

.secHeading > span {
	display: block;
}

.secHeading > em {
	color: #d9078c;
}

.text-center.secHeading:before,
.text-center .secHeading:before {
	left: 0;
	right: 0;
	margin: auto;
}

p.pre {
	font-size: 18px;
	font-family: "Rubik Regular", sans-serif;
	margin: -15px 0 25px;
}

.color {
	color: #d9078c !important;
}

.background {
	background: #d9078c !important;
}

/*
|----------------------------------------------------------------------
|       Body Main Button
|----------------------------------------------------------------------
*/

.webBtn {
	position: relative;
	min-width: 160px;
	height: 46px;
	background: #d9078c;
	/* color: #0b0b0b !important; */
	color: #fff !important;
	font-size: 13px;
	font-family: "Nunito ExtraBold", sans-serif;
	text-align: center;
	padding: 16px 20px 0;
	padding-bottom: 20px !important;
	letter-spacing: 1px;
	white-space: nowrap;
	line-height: 1;
	text-transform: uppercase;
	border: 0;
	border-radius: 8px;
	/* box-shadow: inset #d9078c 0 0 0 1px, 0 3px 6px 0 rgba(0, 0, 0, 0.07); */
	outline: none !important;
}

.smBtn {
	min-width: 40px;
	height: 34px;
	font-size: 14px;
	padding: 7px 15px 0;
	text-transform: none;
}

.lgBtn {
	height: 60px;
	font-size: 18px;
	padding: 18px 40px 0;
	/* text-transform: uppercase; */
}

.cnclBtn {
	background: #111;
	color: #fff !important;
	box-shadow: none;
}

.blockBtn {
	display: flex;
	align-items: center;
	padding: 2px 20px 0 !important;
}

.blockBtn.full {
	width: 100%;
}

.blockBtn em {
	flex: 1;
	text-align: left;
}

.txtBtn {
	padding-top: 10px;
}

.txtBtn em small {
	display: block;
	font-size: 9px;
	font-family: "Nunito SemiBold", sans-serif;
	text-transform: none;
	margin-top: -4px;
}

.webBtn i {
	position: relative;
	top: 3px;
	font-size: 18px;
	line-height: 0;
	/* transition: all ease 0.5s; */
}

.blockBtn i {
	top: initial;
	/* align-self: center; */
	line-height: 1;
	/* margin: 0 !important; */
}

/* a.blockBtn i {
    top: 3px;
} */

.webBtn i.fi-arrow-right {
	margin-left: 30px;
}

.webBtn i.fi-arrow-left {
	margin-right: 30px;
}

.webBtn:focus,
.webBtn:hover {
	background: #e95295;
	color: #fff !important;
	transform: translateY(-1.5px);
}

.webBtn .spinner {
	width: auto;
	height: auto;
	background: inherit;
	border-radius: inherit;
	overflow: hidden;
}

.webBtn .spinner ~ i {
	visibility: hidden;
}

.webBtn .spinner,
.webBtn .spinner:before,
.webBtn .spinner:after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}

.webBtn .spinner:before,
.webBtn .spinner:after {
	content: "";
	width: 18px;
	height: 18px;
	border: 3px solid;
	animation: spinner 0.5s linear infinite;
	border-radius: 75%;
}

.webBtn .spinner:before {
	border-right-color: transparent;
	border-bottom-color: transparent;
}

.webBtn .spinner:after {
	border-top-color: transparent;
	border-left-color: transparent;
	opacity: 0.5;
}

.webBtn.smBtn .spinner:before,
.webBtn.smBtn .spinner:after {
	width: 14px;
	height: 14px;
}

.webBtn.lgBtn .spinner:before,
.webBtn.lgBtn .spinner:after {
	width: 20px;
	height: 20px;
}

@-webkit-keyframes spinner {
	0% {
	}
	100% {
	}
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

*[disabled] {
	cursor: not-allowed !important;
}

a[disabled],
button[disabled] {
	opacity: 0.8;
}

/*
|----------------------------------------------------------------------
|       Body Inner Css
|----------------------------------------------------------------------
*/

h1 {
	font-size: 30px;
}

h2 {
	font-size: 26px;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 16px;
}

img {
	width: 100%;
	display: block;
}

em {
	font-style: normal;
}

strong {
	font-family: "Rubik Medium", sans-serif;
	font-weight: normal;
}

input,
button,
select,
textarea {
	text-decoration: none !important;
	outline: none !important;
}

.ease,
body a,
body .webBtn {
	transition: all ease 0.5s;
}

.contain,
.contain-fluid {
	position: relative;
	max-width: 1120px;
	padding: 0 15px;
	margin: auto;
	min-height: 1px;
}

.contain-fluid {
	max-width: 1600px;
}

.contain:before,
.contain:after,
.contain-fluid:before,
.contain-fluid:after {
	display: table;
	content: "";
}

.contain:after,
.contain-fluid:after {
	clear: both;
}

section {
	position: relative;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.formRow {
	margin: 0 -5px;
}

.formRow [class*="col-"],
.formRow [class^="col-"] {
	padding: 0 5px;
}

.flexBox {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flexDv {
	width: 100%;
}

.flexRow {
	margin: 0 -10px;
}

.flexRow > .col {
	padding: 0 10px;
}

.bTn {
	display: flex;
	flex-flow: wrap;
	margin: 0 -2px;
}

.bTn > * {
	margin: 2px;
}

.text-left.bTn,
.text-left .bTn {
	justify-content: flex-start;
}

.text-center.bTn,
.text-center .bTn {
	justify-content: center;
}

.text-right.bTn,
.text-right .bTn {
	justify-content: flex-end;
}

/*_____ upperlay _____*/

.upperlay {
	position: fixed;
	top: 60px;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	background: #000;
	opacity: 0;
	z-index: 28;
}

.upperlay.active {
	display: block;
}

/*
|----------------------------------------------------------------------
|       Popup
|----------------------------------------------------------------------
*/

.popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(25, 33, 37, 0.95);
	color: #414141;
	padding: 20px 0;
	overflow: auto;
	z-index: 101;
}

.popup ._inner {
	position: relative;
	max-width: 600px;
	/*background: #f7f8f9;*/
	background: #fff;
	padding: 35px;
	margin: auto;
	border-radius: 10px;
	box-shadow: 0 7px 14px 0 rgba(59, 65, 94, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
}

.popup.big-popup ._inner {
	max-width: 800px;
}

.popup.small-popup ._inner {
	max-width: 420px;
}

.popup ._inner h1,
.popup ._inner h2,
.popup ._inner h3,
.popup ._inner h4,
.popup ._inner h5,
.popup ._inner h6 {
	color: inherit;
}

.popup ._inner h2 {
	font-size: 20px;
	padding-right: 25px;
	margin-bottom: 15px;
}

.popup ._inner h3 {
	background: #d9078c;
	color: #fff;
	font-size: 16px;
	margin: -15px -15px 15px;
	padding: 15px 15px 14px;
	padding-right: 30px;
	border-radius: 4px 4px 0 0;
}

.popup ._inner .secHeading {
	margin-bottom: 20px;
}

.popup ._inner p {
	font-size: 16px;
	margin-bottom: 5px;
}

.popup ._inner .txtGrp {
	color: #5f5f5f;
	margin-bottom: 10px;
}

.popBtn {
	cursor: pointer;
}

.popup .crosBtn {
	position: absolute;
	top: 6px;
	right: 5px;
	width: 28px;
	height: 28px;
	color: #778ca3;
	font-size: 18px;
	text-align: center;
	padding: 2px 0 0;
	cursor: pointer;
	z-index: 5;
}

.popup .crosBtn:before {
	content: "\2715";
}

.popup .list > li {
	display: flex;
	margin-bottom: 10px;
}

.popup .list > li > div:nth-child(1) {
	width: 120px;
	min-width: 120px;
	font-family: "Rubik Medium", sans-serif;
	margin-right: 10px;
}

.popup .list > li > div:nth-child(2) {
	width: 100%;
}

.popup .blockLst {
	margin: -15px;
}

/*
|----------------------------------------------------------------------
|       Dropdown
|----------------------------------------------------------------------
*/

.dropBtn {
	cursor: pointer;
}

.dropDown {
	position: relative;
	z-index: 1;
}

.dropCnt {
	/*display: none;*/
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	margin-top: 10px;
	transition: all ease 0.5s;
}

.dropCnt.active {
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}

.dropLst {
	top: 20px;
	left: 0;
	z-index: 50;
	min-width: 160px;
	max-width: 260px;
	background: #fff;
	border-top: 3px solid #d9078c;
	box-shadow: rgba(21, 24, 68, 0.1) 0 0 20px 0;
}

.dropLst > li,
.dropLst > li > a {
	display: block;
}

.dropLst > li > a {
	padding: 5px 12px 4px;
	border-bottom: 1px solid #f0f5f9;
	color: #2f2f2f;
}

.dropLst > li > a:hover {
	background: #fafafa;
}

/*_____ more _____*/

.more {
	position: relative;
	width: 20px;
	min-width: 20px;
	height: 20px;
	/*padding-bottom: 10px;*/
	margin: 0 auto;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all ease 0.5s;
}

.more > span,
.more > span:before,
.more > span:after {
	width: 3px;
	height: 3px;
	border-radius: 75%;
	background: #fff;
	transition: all ease 0.5s;
	z-index: 2;
}

.more > span:before,
.more > span:after {
	position: absolute;
	content: "";
}

.more > span:before {
	left: 0;
}

.more > span:after {
	right: 0;
}

.more:hover > span,
.more:hover > span:before,
.more:hover > span:after {
	background: #0b0b0b;
}

/*
|----------------------------------------------------------------------
|       Page Loader
|----------------------------------------------------------------------
*/

#pageloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: #192125;
	z-index: 999999;
}

.loader {
	width: 40px;
	height: 40px;
	border: 4px solid #d9078c;
	border-right: 0;
	border-radius: 75%;
	animation: spin 0.5s linear infinite;
}

@-webkit-keyframes spin {
	0% {
	}
	100% {
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

/*
|----------------------------------------------------------------------
|       Ico Css
|----------------------------------------------------------------------
*/

.ico,
.icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.ico {
	background: #d9078c;
	border-radius: 75%;
	/*overflow: hidden;*/
}

.ico a,
.icon a {
	width: 100%;
	height: 100%;
	display: block;
}

.ico img,
.icon img {
	width: 100%;
	height: 100%;
	object-position: center;
}

.ico img {
	object-fit: cover;
	border-radius: 75%;
}

.icon img {
	object-fit: contain;
}

.ico > i.dot {
	bottom: 12px;
	left: initial;
	right: -3px;
	width: 10px;
	height: 20px;
	/* background-image: url('../images/medal.svg'); */
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
	font-style: normal;
	text-align: center;
	border: 0;
	border-radius: 0;
	z-index: 5;
}

.ico > i.dot:before {
	/*content: '\e96a';*/
	display: block;
	color: #fff;
	font-size: 8px;
	font-family: "font-icon";
	line-height: 0;
}

/*
|----------------------------------------------------------------------
|       RateYo
|----------------------------------------------------------------------
*/

.jq-ry-container {
	position: relative;
	display: block;
	cursor: pointer;
	box-sizing: content-box;
	line-height: 0;
	direction: ltr;
}

.jq-ry-container[readonly="readonly"] {
	cursor: default;
}

.jq-ry-container > .jq-ry-group-wrapper {
	position: relative;
	width: 100%;
}

.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group {
	position: relative;
	line-height: 0;
	white-space: nowrap;
	z-index: 1;
}

.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group > svg {
	display: inline-block;
}

.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group.jq-ry-normal-group {
	width: 100%;
}

.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group.jq-ry-rated-group {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	overflow: hidden;
	z-index: 3;
}

/*
|----------------------------------------------------------------------
|       Editor
|----------------------------------------------------------------------
*/

.ckEditor h1,
.ckEditor h2,
.ckEditor h3,
.ckEditor h4,
.ckEditor h5,
.ckEditor h6 {
	margin: 15px 0;
	clear: both;
}

.ckEditor h1 {
	font-size: 26px;
}

.ckEditor h2 {
	font-size: 22px;
}

.ckEditor h3 {
	font-size: 18px;
}

.ckEditor h4 {
	font-size: 14px;
}

.ckEditor ul:not([class]) > li > h1,
.ckEditor ol:not([class]) > li > h1,
.ckEditor ul:not([class]) > li > h2,
.ckEditor ol:not([class]) > li > h2,
.ckEditor ul:not([class]) > li > h3,
.ckEditor ol:not([class]) > li > h3,
.ckEditor ul:not([class]) > li > h4,
.ckEditor ol:not([class]) > li > h4,
.ckEditor ul:not([class]) > li > h5,
.ckEditor ol:not([class]) > li > h5,
.ckEditor ul:not([class]) > li > h6,
.ckEditor ol:not([class]) > li > h6,
.ckEditor ul:not([class]) > li > p,
.ckEditor ol:not([class]) > li > p {
	display: inline;
	margin: 0 !important;
	overflow: initial !important;
}

.ckEditor ul:not([class]),
.ckEditor ol:not([class]) {
	padding: 0;
	padding-left: 20px;
	margin: 0 0 10px;
	list-style-position: inside;
}

.ckEditor ul:not([class]) > li,
.ckEditor ol:not([class]) > li {
	display: list-item;
	margin-bottom: 5px;
}

.ckEditor ul:not([class]) > li ul,
.ckEditor ol:not([class]) > li ol {
	margin: 5px 0 7px;
}

.ckEditor ul:not([class]) {
	list-style-type: disc;
}

.ckEditor ul:not([class]) > li ul {
	list-style-type: circle;
}

.ckEditor blockquote {
	background: rgba(0, 0, 0, 0.04);
	font-size: 16px;
	margin: 0 0 20px;
	padding: 10px 20px;
	border-left: 5px solid;
}

.ckEditor img {
	width: 100% !important;
	height: auto !important;
}

.ckEditor figure,
.ckEditor p > img {
	float: right;
	width: 260px !important;
	margin: 5px 0 15px;
	margin-left: 15px;
	/*clear: both;*/
}

.ckEditor figure:nth-of-type(odd) {
	float: left;
}

.ckEditor p[style="text-align:left"] > img,
.ckEditor p[style="text-align:left;"] > img,
.ckEditor p[style="text-align: left"] > img,
.ckEditor p[style="text-align: left;"] > img {
	float: left;
}

.ckEditor p > a {
	display: inline !important;
}

.ckEditor i,
.ckEditor em {
	font-style: italic;
}

.ckEditor strong {
	font-family: "Rubik Medium", sans-serif;
}

/*
|----------------------------------------------------------------------
|       Header
|----------------------------------------------------------------------
*/

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: #000;
	z-index: 30;
}

.logo {
	float: left;
	width: 130px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	padding: 0;
	z-index: 1;
}

.logo > a {
	display: block;
}

.logo > a img {
	/* -webkit-filter: brightness(0) invert(1); */
	filter: none;
}

nav {
	float: right;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-top: 18px;
}

nav > ul {
	display: flex;
}

#nav {
	flex: 1;
}

nav > ul > li {
	position: relative;
}

nav > ul > li > a {
	height: 34px;
	color: #fff;
	font-size: 14px;
	font-family: "Nunito Bold", sans-serif;
	text-align: center;
	padding: 8px 18px 0;
	padding-bottom: 20px !important;
	text-transform: uppercase;
}

nav > ul > li.active > a,
nav > ul > li > a:hover {
	color: #d9078c !important;
}

nav > ul > li.btnLi > a {
	min-width: 100px;
	border-radius: 8px;
	box-shadow: inset #7f7f7f 0 0 0 2px;
}

nav > ul > li.btnLi > a:hover {
	background: #7f7f7f;
	color: #fff !important;
}

nav > ul > li.btnLi.active > a {
	background: transparent;
	color: #d9078c !important;
	box-shadow: inset #d9078c 0 0 0 2px;
}

nav > ul > li.lang {
	display: none;
}

nav > ul > li.lang > a {
	display: flex !important;
	align-items: center;
}

nav > ul > li.lang > a img {
	position: relative;
	top: -1px;
	width: 22px;
	height: 22px;
	margin-right: 15px;
}

nav > #btn {
	display: none;
}

#lang {
	float: right;
	margin-left: 20px;
}

#lang {
	float: right;
	display: flex;
	align-items: center;
	height: 60px;
	padding-left: 15px;
	margin-left: 20px;
	border-left: 1px solid #484848;
}

#lang img {
	width: 20px;
	min-width: 20px;
	height: 20px;
}

#lang .dropBtn img {
	width: 26px;
	min-width: 26px;
	height: 26px;
	margin-right: 24px;
}

#lang .dropBtn:before {
	content: "\e93d";
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	color: #484848;
	font-size: 14px;
	font-family: "font-icon";
	font-weight: bold;
	line-height: 1;
	margin-top: -5px;
}

#lang .dropCnt {
	top: 100%;
	left: initial;
	right: 0;
	background: #111;
	min-width: 154px;
	border: 1px solid #484848;
	border-top: 0;
}

#lang .dropCnt > li {
	display: block;
	border-top: 1px solid #484848;
}

#lang .dropCnt > li a {
	display: flex !important;
	align-items: center;
	color: #fff;
	font-size: 13px;
	font-family: "Nunito Bold", sans-serif;
	padding: 15px 20px;
	line-height: 1;
}

#lang .dropCnt > li:nth-child(3) a {
	font-size: 16px;
}

#lang .dropCnt > li a:hover {
	background: #222;
}

#lang .dropCnt > li.active a {
	background: #222;
}

#lang .dropCnt > li span {
	flex: 1;
}

#lang .dropCnt > li img {
	margin-left: 16px;
}

/*_____ dot _____*/

.dot {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: 5px;
	height: 5px;
	background: #43b753;
	margin: auto;
	border-radius: 75%;
}

.miniLbl {
	color: #fff;
	font-size: 8px;
	font-family: "Rubik Medium", sans-serif;
	padding: 3px 8px 3px;
	cursor: pointer;
	text-transform: uppercase;
	border-radius: 50px;
	white-space: nowrap;
}

.green {
	background: #43b753;
}

.green-color {
	color: #43b753;
}

.yellow {
	background: #ffcb00;
}

.yellow-color {
	color: #ffcb00;
}

.red {
	background: #ff5465;
}

.red-color {
	color: #ff5465;
}

.blue {
	background: #5883ff;
}

.blue-color {
	color: #5883ff;
}

.gray {
	background: #aaa;
}

.gray-color {
	color: #aaa;
}

/*
|----------------------------------------------------------------------
|       Banner
|----------------------------------------------------------------------
*/

#banner .image.mobile {
	display: none;
}

#banner .contain {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	max-width: 860px;
}

#banner .contain .content {
	max-width: 280px;
}

#banner .contain .content h1 {
	color: #d9078c;
	font-size: 30px;
	padding: 18px 0 0;
	margin: -50px 0 0;
}

#banner .contain .content h1:before {
	top: 0;
	bottom: initial;
}

#banner .contain .content h1 > span {
	display: block;
}

/*
|----------------------------------------------------------------------
|       Intro
|----------------------------------------------------------------------
*/

#intro {
	background: #ffe0ee;
	padding: 40px 0;
}

#intro .contain {
	max-width: 660px;
}

#intro .content > h1 {
	padding: 0;
	margin: 0 0 10px;
}

#intro .content > h1:before {
	display: none;
}

#intro .content > h1 > span {
	display: block;
}

#intro .content > p {
	font-size: 18px;
	font-family: "Rubik Light", sans-serif;
}

/*
|----------------------------------------------------------------------
|       Content
|----------------------------------------------------------------------
*/

#content {
	padding: 40px 0;
}

#content .contain {
    max-width: 980px;
}

#content .content > h1 {
	max-width: 460px;
	margin: 0 auto 10px;
}

#content .content > h1:before {
	background: #f8c8de;
}

#content .content > p {
	color: #4e4e4e;
	font-size: 18px;
	font-family: "Rubik Light", sans-serif;
}

/*
|----------------------------------------------------------------------
|       Benefit
|----------------------------------------------------------------------
*/

#benefit {
	background: linear-gradient(180deg, #fff8f8, #fff);
	padding: 50px 0;
}

#benefit .contain {
	max-width: 780px;
}

#benefit .content h1 {
    max-width: 480px;
    margin: 0 auto 50px;
}

#benefit .content h1:before {
	background: #f8c8de;
}

#benefit .lst > li {
	width: 100%;
	margin: 0 0 40px;
}

#benefit .lst > li:not(:nth-last-child(1)) {
	padding: 0 0 40px;
	border-bottom: 1px dashed #d9078c;
}

#benefit .lst .inner {
	display: flex;
}

#benefit .lst .icon {
    width: 110px;
    min-width: 110px;
    height: 120px;
    margin-right: 100px;
}

#benefit .lst .icon img {
    object-position: top;
}

#benefit .lst .secHeading {
	padding-bottom: 0;
	margin-bottom: 0;
}

#benefit .lst .secHeading:before {
	display: none;
}

#benefit .lst .txt {
	position: relative;
	align-self: center;
	z-index: 0;
}

#benefit .lst .txt .number {
    position: absolute;
    top: -30px;
    left: -25px;
    color: #f8c8de;
    font-size: 190px;
    font-family: "Barlow Medium", sans-serif;
    line-height: 0.8;
    z-index: -1;
}

#benefit .lst .txt p {
	font-size: 18px;
	font-family: "Rubik Light", sans-serif;
}

#benefit .lst .txt p:nth-last-child(1) {
    margin-bottom: 0;
}

#benefit .inBlk {
    color: #d9078c;
    font-size: 18px;
	padding: 30px 30px 20px;
    border: 1px dashed #d9078c;
    border-radius: 20px;
}

#benefit .inBlk p > a {
    color: #d9078c;
}

#benefit .inBlk p > a:hover {
	color: #0b0b0b;
}

/*
|----------------------------------------------------------------------
|       Strip
|----------------------------------------------------------------------
*/

body > main {
	position: relative;
}

#strip .content .bTn a {
	min-width: 260px;
}

.popup[data-popup="contact"] form {
	margin-top: 20px;
}

.popup[data-popup="contact"] .confirmBlk {
	display: none;
}

.popup[data-popup="contact"] .confirmBlk .bTn {
	margin-top: 70px;
}

.popup[data-popup="contact"] .confirmBlk .bTn a i {
	margin: 0;
}

/*
|----------------------------------------------------------------------
|       Form
|----------------------------------------------------------------------
*/

label {
	display: block;
	font-family: "Rubik Medium", sans-serif;
	font-weight: normal;
	cursor: pointer;
}

label > a {
	color: #3c9cdb;
}

label > a:hover {
	color: #d9078c;
}

.txtGrp {
	position: relative;
	margin-bottom: 15px;
}

.txtGrp h4 {
	font-size: 14px;
	margin-bottom: 5px;
}

.txtBox {
	display: block;
	width: 100%;
	height: 36px;
	background: none;
	color: #5f5f5f;
	font-size: 14px;
	font-family: "Nunito SemiBold", sans-serif !important;
	text-align: left;
	padding: 5px 0 6px;
	letter-spacing: 0.5px;
	border: 0;
	border-bottom: 1px solid #adadad;
	border-radius: 0;
	outline: none !important;
	transition: all ease 0.5s;
}

.txtBox:-webkit-autofill {
	transition: background-color 5000s ease-in-out 0s;
}

textarea.txtBox {
	height: 152px;
	resize: none;
}

.txtBox:disabled {
	background: #e3e8ee;
	cursor: not-allowed;
	border-color: #d8dee6 !important;
}

.txtBox::placeholder {
	color: #5f5f5f;
	opacity: 0.8;
}

.txtBox:focus::placeholder {
	opacity: 0.5;
}

.txtBox:hover,
.txtBox:focus {
	border-color: #d9078c;
}

input[type="checkbox"] {
	position: relative;
	top: 4px;
	width: 18px;
	height: 18px;
	margin-top: 0;
	cursor: pointer;
}

input[type="checkbox"] {
	display: inline;
}

input[type="checkbox"]:before,
input[type="checkbox"]:after {
	position: absolute;
	content: "";
	color: inherit;
	transition: all linear 0.3s;
}

input[type="checkbox"]:before {
	content: "";
	top: 8px;
	left: 6px;
	font-size: 12px;
	line-height: 0;
	transform: rotate(40deg);
	z-index: 1;
}

input[type="checkbox"]:after {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 2px;
}

input[type="checkbox"]:checked {
	color: #d9078c;
}

input[type="checkbox"]:checked:before {
	content: "\02143";
}

input[type="checkbox"]:checked:after {
	border-color: #d9078c;
}

input[type="radio"] {
	position: relative;
	width: 18px;
	min-width: 18px;
	height: 18px;
	margin-top: 0;
	cursor: pointer;
}

input[type="radio"] {
	display: inline;
	appearance: initial;
}

input[type="radio"]:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

input[type="radio"]:before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 8px;
	z-index: 1;
}

input[type="radio"]:after {
	background: #ccc;
	border: 1px solid #ccc;
	box-shadow: inset 0 0 0 4px #fff;
}

input[type="radio"]:after {
	border-radius: 75%;
}

input[type="radio"]:checked:after {
	background: #d9078c;
	border-color: #d9078c;
}

.lblBtn {
	display: flex;
	text-align: left;
}

.lblBtn label {
	display: inline !important;
	position: relative;
	top: 0;
	font-size: 15px;
	font-family: "Rubik Regular", sans-serif;
	cursor: pointer;
	line-height: 20px;
	padding-left: 5px;
}

.lblBtn label:nth-child(1) {
	padding-left: 0;
}

input[type="file"].uploadFile {
	display: none;
}

.uploadImg {
	cursor: pointer;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

/*
|----------------------------------------------------------------------
|       Footer
|----------------------------------------------------------------------
*/

footer {
	position: relative;
	background: #000;
	color: #fff;
	font-size: 14px;
	z-index: 1;
}

footer .lst > li {
	display: block;
	margin-bottom: 7px;
}

footer .lst > li > a {
	line-height: 1.2;
}

footer a {
	color: #fff;
}

footer a:hover {
	color: #d9078c !important;
}

/*_____ Copyright _____*/

.copyright {
	/* display: flex; */
	/* align-items: center; */
	/* justify-content: center; */
	padding: 20px 0;
}

.copyright .conect {
	display: flex;
	justify-content: space-evenly;
	margin: -5px -30px;
}

.copyright .conect > li {
	width: 100%;
	font-size: 16px;
	padding: 0 30px;
	border-right: 1px solid #484848;
	text-align: center;
}

.copyright .conect > li:nth-last-child(1) {
	border-right: 0;
}

.copyright .conect > li i {
	font-size: 20px;
	margin-right: 10px;
}

/*_____ scrollbar  _____*/

.scrollbar::-webkit-scrollbar-track {
	background: #e3e8ed;
	border-radius: 50px;
}

.scrollbar::-webkit-scrollbar {
	width: 4px;
	background-color: #e3e8ed;
	border-radius: 50px;
}

.scrollbar::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 50px;
}
