
@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,700;1,400;1,700&display=swap");


html,
body {
	height: 100%;
	font-family: "Arimo", sans-serif;
	-webkit-font-smoothing: antialiased;
}
body{
	background: #ffffff;
}
a{
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #a566f2;
	font-family: "Arimo", sans-serif;
	font-weight: 700;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
	line-height: 1.4;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 16px;
	color: #7E858B;
	line-height: 1.8;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

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

ul,
ol {
	padding: 0;
	margin: 0;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #ffffff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #A567F2;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #A567F2;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #A567F2;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #A567F2;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #A567F2;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #A567F2;
		border-left-color: transparent;
	}
}

/*---------------------
   Helper CSS
 -----------------------*/

.section-title {
	text-align: center;
	margin-bottom: 55px;
}

.section-title img {
	margin-bottom: 15px;
}

.section-title h2 {
	font-weight: 400;
	font-size: 38px;
	text-transform: uppercase;
}

.section-title p {
	padding-top: 15px;
	margin-bottom: 0;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/*---------------------
  Commom elements
-----------------------*/

.site-btn {
	display: inline-block;
	font-size: 16px;
	padding: 16px 15px;
	min-width: 180px;
	color: #fff;
	background: #A567F2;
	line-height: 1;
	text-align: center;
	font-weight: 700;
	border: none;
	border-radius: 2px;
}

.site-btn i {
	font-size: 24px;
	position: relative;
	top: 5px;
	margin-left: 4px;
}

.site-btn:hover {
	color: #fff;
}

.section__title {
	text-align: center;
	padding-bottom: 40px;
	margin-bottom: 45px;
	position: relative;
}

.section__title:after {
	position: absolute;
	content: "";
	width: 60px;
	height: 4px;
	left: calc(50% - 30px);
	bottom: 0;
	background: #A567F2;
}

.section__title h2 {
	margin-bottom: 0;
	text-transform: uppercase;
}

@media (max-width: 576px) {
	.section__title h2 {
		font-size: 24px;
	}
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #ffffff;
	z-index: 99999;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 500px;
	font-size: 34px;
	border: none;
	border-bottom: 2px solid #ededed;
	background: 0 0;
	color: #999;
}

@media (max-width: 576px) {
	.search-model-form input {
		width: 100%;
		font-size: 24px;
	}
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 39px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.pt83 {
	padding-top: 83px;
}

/*---------------------
   Header section
 -----------------------*/

.header {
	padding: 40px 45px 0;
	padding-top: 40px;
}

@media (max-width: 576px) {
	.header {
		padding: 40px 0 0;
	}
}

@media (max-width: 576px) {
	.header__social {
		display: none;
	}
}

.header__social a,
.header__switches a {
	display: inline-block;
	color: #fff;
	/*! padding-top: 5px; */
	margin-right: 0px;
	font-size: 16px;
	padding: 5px;background: #a567f2;
	width: 30px;
	height: 30px;
	text-align: center;
	border-radius: 50%;
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s;
	line-height: 20px;
	border: 1px solid #a567f2;
}
.header__social a:hover, .header__switches a:hover {
	background: #000000;
	color: #FFF;
	border: 1px solid #a567f2;
}
.header__social a:last-child,
.header__switches a:last-child {
	margin-right: 0;
}

.header__social a.nav-switch,
.header__switches a.nav-switch {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #a567f2;
	text-align: center;
	padding-top: 9px;
	margin-top: -9px;
}

@media (max-width: 576px) {
	.header__social a.nav-switch,
	.header__switches a.nav-switch {
		display: inline-block;
	}
}

.header__switches {
	text-align: right;
	z-index: 999;
	position: relative;
}

@media (max-width: 576px) {
	.header__switches {
		text-align: center;
		padding-top: 20px;
	}
}

/*----------
   Menu
 ---------*/

.main__menu {
	position: relative;
	right: 0;
	padding-top: 25px;
	text-align: center;
	z-index: 999;
}

@media (max-width: 576px) {
	.main__menu .nav__menu {
		display: none;
	}
}

.main__menu .nav__menu>li {
	display: inline-block;
	position: relative;
}

.main__menu .nav__menu>li:last-child a {
	margin-right: 0;
}

.main__menu .nav__menu>li>a {
	position: relative;
	font-size: 16px;
	color: #927BAE;
	font-weight: 700;
	padding: 5px 2px;
	margin-right: 40px;
	text-transform: uppercase;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.main__menu .nav__menu>li>a {
		margin-right: 20px;
	}
}

.main__menu .nav__menu>li>a:after {
	position: absolute;
	content: "";
	width: 0;
	height: 6px;
	left: 0;
	bottom: 0px;
	background: #A567F2;
	z-index: -1;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	transform: skewX(70deg);
}

.main__menu .nav__menu>li>a.menu--active {
	color: #a567f2;
}

.main__menu .nav__menu>li>a.menu--active:after {
	width: 100%;
}

.main__menu .nav__menu>li:hover a {
	color: #a567f2;
}

.main__menu .nav__menu>li:hover a:after {
	width: 100%;
}

.main__menu .nav__menu>li:hover .sub__menu {
	top: 100%;
	opacity: 1;
	visibility: visible;
	margin-top: 15px;
}

.main__menu .nav__menu>li .sub__menu {
	position: absolute;
	text-align: left;
	padding: 10px 0;
	width: 170px;
	left: 0;
	top: 100%;
	margin-top: 50px;
	-webkit-box-shadow: 0 9px 50px rgba(0, 0, 0, 0.1);
	box-shadow: 0 9px 50px rgba(0, 0, 0, 0.1);
	background: #fff;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.main__menu .nav__menu>li .sub__menu:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 25px;
	left: 0;
	top: -25px;
}

.main__menu .nav__menu>li .sub__menu>li {
	display: block;
}

.main__menu .nav__menu>li .sub__menu>li>a {
	display: block;
	display: block;
	padding: 5px 15px;
	color: #7E858B;
	text-transform: none;
	margin: 0;
	font-size: 14px;
	font-weight: 700;
}

.main__menu .nav__menu>li .sub__menu>li>a:hover {
	color: #222222;
}

.main__menu .nav__menu>li .sub__menu>li>a:after {
	display: none;
}

.slicknav_menu {
	background: #f7f7f7;
	padding: 0;
	margin-bottom: 30px;
	text-align: left;
	display: none;
}

@media (max-width: 576px) {
	.slicknav_menu {
		display: block;
	}
}

.slicknav_btn {
	display: none;
}

.slicknav_nav ul {
	margin: 0;
}

.slicknav_nav .slicknav_row:hover {
	border-radius: 0;
	background: transparent;
	color: #222222;
}

.slicknav_nav a:hover {
	border-radius: 0;
	background: transparent;
	color: #222222;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
	padding: 11px 25px;
	margin: 0;
	color: #222222;
	font-size: 16px;
	font-weight: 700;
	border-bottom: 1px solid #e9e9e9;
}

.slicknav_nav .slicknav_item a {
	border-bottom: none;
}

/*---------------------
   Hero section
 -----------------------*/

.hero__section {
	padding-top: 120px;
	margin-bottom: 90px;
}

@media (max-width: 576px) {
	.hero__section {
		padding-top: 30px;
	}
}

.slide-item {
	padding: 0 5px;
	outline: none;
	cursor: pointer;
}

.slick-center.slide-item img {
	padding: 0;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.hero-slider .slick-track {
	-webkit-transition: all 0.1s;
	-o-transition: all 0.1s;
	transition: all 0.1s;
}

.slide-item img {
	height: 570px;
	padding: 65px 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

@media (max-width: 576px) {
	.slide-item img {
		padding: 0;
	}
}

.hero-text-slider {
	text-align: center;
	padding-top: 50px;
	max-width: 800px;
	margin: 0 auto;
}
.site-logo{
	z-index: 999;
	position: relative;
}
.bg-curve {
	position: absolute;
	width: 60%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: top right;
	background-size: contain;
	top: 0;
	right: 0;
	opacity: 0.6;
	z-index: -999;
}
/*---------------------
   Footer section
 -----------------------*/

.footer__copyright__text {
	text-align: center;
	padding-bottom: 5px;
}

.footer__copyright__text p {
	font-size: 16px;
}

.footer__copyright__text i {
	color: #d32a2a;
}

.footer__copyright__text a {
	color: #7E858B;
	text-decoration: underline;
}

.footer__copyright__text a:hover {
	color: #A567F2;
}

/*------------------
   About page
 ------------------*/

.about__page {
	padding: 90px 60px 150px;
}

@media (max-width: 576px) {
	.about__page {
		padding: 30px 0 150px;
	}
}

.about__title {
	display: inline-block;
	margin-bottom: 50px;
	position: relative;
}

.about__title:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 6px;
	left: 0;
	bottom: 31px;
	background: #A567F2;
	opacity: 0.5;
	z-index: -1;
	transform: skewX(70deg);
}

.about__text {
	padding-bottom: 50px;
}

.about__text img {
	padding-top: 20px;
}

.about__meta {
	overflow: hidden;
	margin-bottom: 35px;
}

.about__meta img {
	float: left;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-right: 15px;
	padding-top: 0;
}

.about__meta__info {
	overflow: hidden;
	padding-top: 25px;
}

.about__meta__info h5 {
	margin-bottom: 5px;
}

.about__meta__info p {
	text-transform: uppercase;
	font-size: 12px;
	color: #A567F2;
}

.experience__item {
	padding-top: 15px;
	margin-bottom: 20px;
}

.experience__item h4 {
	font-size: 20px;
	margin-bottom: 20px;
}

.skills__text {
	padding-bottom: 50px;
}

.skills__text p {
	margin-bottom: 40px;
}

.single-progress-item {
	margin-bottom: 30px;
}

.single-progress-item h6 {
	margin-bottom: 10px;
}

.progress-bar-style {
	height: 6px;
	background: #E8E8E8;
}

.progress-bar-style .bar-inner {
	height: 100%;
	background: #A567F2;
}

/*-------------------
   Gallery Page
 -------------------*/

.gallery__page {
	padding: 80px 15px 65px;
}

@media (max-width: 576px) {
	.gallery__page {
		padding: 30px 15px 65px;
	}
}

.gallery__warp {
	max-width: 1570px;
	margin: 0 auto;
}

.gallery__item {
	display: block;
	margin-bottom: 30px;
}

.gallery__item img {
	min-width: 100%;
}

.fr-position-outside {
	left: 0;
	top: 0;
	right: auto;
	bottom: auto;
}

.fr-position-text {
	color: #fff;
}

.fr-window-skin-fresco.fr-window-ui-outside .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-outside .fr-close:hover .fr-close-background {
	background-color: transparent;
}

.fr-thumbnail-active {
	border: 2px solid #A567F2;
}

/*----------------
   Blog Page
 ----------------*/

.blog__page {
	padding: 90px 0 55px;
}

@media (max-width: 576px) {
	.blog__page {
		padding: 30px 0 55px;
	}
}

.blog__warp {
	max-width: 1570px;
	padding: 0 15px;
	margin: 0 auto;
}

.blog__item {
	height: 370px;
	position: relative;
	margin-bottom: 30px;
	background-position: center;
}

.blog__item.blog__item--long {
	height: 770px;
}

.blog__item::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(43%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.49)));
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43%, rgba(0, 0, 0, 0.49) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43%, rgba(0, 0, 0, 0.49) 100%);
}

@media (max-width: 576px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.blog__item h3 {
		font-size: 22px;
	}
}

.blog__content {
	position: absolute;
	bottom: 30px;
	padding: 0 30px;
	z-index: 2;
}

.blog__content h4 {
	font-size: 22px;
}

.blog__content h4 a {
	color: #fff;
}

.blog__date {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

/*-------------------
   Blog Single Page
 --------------------*/

.blog__slider {
	padding: 70px 0 60px;
}

@media (max-width: 576px) {
	.blog__slider {
		padding: 30px 0 60px;
	}
}

.blog__slider .slick-track {
	margin-left: 380px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog__slider .slick-track {
		margin-left: 250px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 576px) {
	.blog__slider .slick-track {
		margin-left: 0;
	}
}

.blog__slider__item {
	outline: none;
	padding: 0 3px;
}

.blog__container {
	max-width: 1000px;
	padding: 0 15px;
	margin: 0 auto 30px;
}

.blog__container p {
	font-size: 18px;
}

.blog__container h4 {
	font-size: 22px;
	margin-bottom: 20px;
}

.blog__header {
	text-align: center;
}

.blog__cata {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 13px;
	border-radius: 2px;
	color: #fff;
	background: #A567F2;
	margin-bottom: 20px;
}

.blog__single__title {
	font-size: 44px;
	margin-bottom: 30px;
	line-height: 1.2;
}

.blog__metas {
	margin-bottom: 30px;
}

.blog__metas .blog__meta {
	position: relative;
	display: inline-block;
	margin-right: 18px;
	margin-bottom: 5px;
	padding-right: 20px;
	font-size: 14px;
	color: #7E858B;
}

.blog__metas .blog__meta:after {
	position: absolute;
	content: "|";
	font-size: 14px;
	right: 0;
	top: 0;
	color: #7E858B;
}

.blog__metas .blog__meta:last-child {
	margin-right: 0;
	padding-right: 0;
}

.blog__metas .blog__meta:last-child:after {
	display: none;
}

.blog__article blockquote {
	max-width: 1170px;
	margin: 50px auto;
	padding: 45px 45px 55px;
	background-color: #EAEFE5;
	background-image: url("../img/blog-single/quote.png");
	background-repeat: no-repeat;
	background-position: right 60px bottom -10px;
}

.blog__article blockquote p {
	color: #222222;
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 25px;
}

.blog__article blockquote h4 {
	font-size: 16px;
	margin-bottom: 10px;
}

.blog__article blockquote h5 {
	font-size: 14px;
	text-transform: uppercase;
	color: #A567F2;
	letter-spacing: 2px;
}

.blog__banner {
	max-width: 1170px;
	margin: 0 auto;
}

.blog__banner img {
	min-width: 100%;
}

.post__footer {
	border-top: 1px solid #E8E8E8;
	padding-top: 30px;
	margin-bottom: 70px;
}

.post__tags a {
	display: inline-block;
	font-family: "Raleway", sans-serif;
	color: #7E858B;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 21px;
	margin-bottom: 5px;
	margin-right: 2px;
	background-color: #F3F3F3;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.post__tags a:hover {
	background: #A567F2;
	color: #fff;
}

.post__share {
	text-align: right;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 576px) {
	.post__share {
		text-align: left;
		padding-top: 35px;
	}
}

.post__share span {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
}

.post__share a {
	display: inline-block;
	font-size: 16px;
	color: #7E858B;
	margin-left: 30px;
}

.post__share a:first-child {
	margin-left: 0;
}

.comment__area {
	padding-bottom: 100px;
}

.comment__area h2 {
	margin-bottom: 40px;
}

.comment__form input,
.comment__form textarea {
	width: 100%;
	height: 50px;
	font-size: 16px;
	padding: 15px 20px;
	margin-bottom: 26px;
	color: #222222;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.comment__form input:focus,
.comment__form textarea:focus {
	border: 1px solid #A567F2;
}

.comment__form textarea {
	height: 110px;
	resize: none;
	margin-bottom: 50px;
}

.blog__details__comment {
	border-bottom: 1px solid #EBEBEB;
	padding-bottom: 30px;
}

.blog__details__comment h4 {
	color: #222222;
	text-transform: uppercase;
	margin-bottom: 50px;
}

.recent__post {
	padding: 75px 15px 60px;
	border-top: 1px solid #E8E8E8;
}

.recent__post h2 {
	margin-bottom: 65px;
}

.recent__post .blog__item {
	background-position: center;
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Contact part start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#Contact {
    padding: 79px 0 79px;

}

.Contact-info h4 {
    font-family: var(--f2);
    color: #a566f2;
    font-size: 20px;
    margin-bottom: 20px;
}

.Contact-info p {
    /*! font-family: var(--f1); */
    /*! font-size: var(--p); */
    /*! line-height: var(--pl); */
    font-weight: 300;
    color: #000;
    margin-bottom: 20px;
}

.Contact-info p span {
    color: #a566f2;
    font-weight: 600;
    /*! font-family: var(--f1); */
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 18px 10px 10px;
    height: auto;
    background-color: #a566f214;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.75em;
    font-weight: 600;
    color: #a566f2;
    background-image: none;

    border: 1px solid #a566f2;
}

.butn-dark {
    padding: 10px 20px;
    background: #a566f2;
    margin: 3px 0;
    color: #fff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    border: none;
}

.butn-dark:hover {
    color: #a566f2;
    background: #f8f3fe;
}

input:focus,
textarea:focus {
    /* border-bottom-width: 1px; */
    /* border-color: #a566f2; */
    box-shadow: 1px 1px 2px 2px #a566f2;
}
.red-text{
	color: red;
}
.form-control:focus {
    color: #000;
    background-color: #fff;
    border-color: #a566f2;
    outline: 0;
    box-shadow: 6px 7px 4px -2px #a566f2;
}
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             contact part start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */