:root {
	--main-color: #4c79fa;
	--title-color: #222429;
	--paragraph-color: #696969;
}
body{
	margin: 0;
	padding: 0;
	color: var(--paragraph-color);
	font-size: 16px;
	font-weight: normal;
	font-family: 'Space Grotesk', sans-serif;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6{
	color: var(--title-color);
	font-weight: bold;
	line-height: 1.2;
}
h1{
	font-size: 48px;
}
h2{
	font-size: 36px;
}
h3{
	font-size: 24px;
}
h4{
	font-size: 20px;
}
h5{
	font-size: 18px;
}
h6{
	font-size: 16px;
}

a{
	text-decoration: none;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.site{
    background-color: #060b2b;
}

/*
==================
 Header
==================
*/

.site-header{
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}
.site-header .menu-bar .menu-container{
	max-width: 1320px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: auto;
}
.site-header .menu-bar .site-logo a{
	display: inline-block;
}
.site-header .menu-bar .site-logo .site-name{
    color: #fff;
}
.site-header .menu-bar .nav-menu .menu-ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}
.site-header .menu-bar .nav-menu .menu-ul ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}
.site-header .menu-bar .nav-menu li{
	position: relative;
}
.site-header .menu-bar .nav-menu li a {
	display: inline-block;
	color: var(--title-color);
	font-weight: 600;
	padding: 38px 21px;
	text-decoration: none;
}
.site-header .menu-bar .nav-menu li a i{
	font-size: 10px;
	margin-left: 3px;
}
.site-header .menu-bar .search-icon {
    cursor: pointer;
    background-color: rgba(255,255,255,0.1);
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-align: center;
    border-radius: 50%;
}
.site-header .menu-bar .search-icon i{
    color: #fff;
	font-size: 14px;
}

/* Sub Menu */

.site-header .menu-bar .nav-menu li .sub-menu{
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	width: 270px;
	background-color: #fff;
	padding: 10px 0;
	top: 130%;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
}
.site-header .menu-bar .nav-menu li:hover .sub-menu{
	top: 100%;
	visibility: visible;
	opacity: 1;
	z-index: 99;
}
.site-header .menu-bar .nav-menu .sub-menu li a{
	display: block;
	color: var(--title-color);
	padding: 10px 20px;
}

/* Transparent Menu */

.site-header.transparent-menu{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 99;
	box-shadow: none;
}
.site-header.transparent-menu .menu-bar .nav-menu li a {
	color: #fff;
}
.site-header.transparent-menu .menu-bar .nav-menu .sub-menu li a {
	color: var(--title-color);
}
.site-header.transparent-menu .menu-bar .search-icon i {
	color: #fff;
}

/* Sticky Header */

.site-header.transparent-menu.sticky-nav{
    position: fixed;
    background-color: #060B2B;
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
}

/*
==================
 Mobile Menu
==================
*/

.mobile-menu{
	position: absolute;
	top: 0;
	z-index: 99;
	width: 100%;
	display: none;
}
.mobile-menu .menu-bar{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 30px;
}
.mobile-menu .menu-toggle{
	cursor: pointer;
}
.mobile-menu .menu-toggle i{
	color: #fff;
	font-size: 24px;
}
.mobile-menu .menu-ul {
	margin: 0;
	padding: 30px 20px;
	list-style: none;
	position: absolute;
	width: 100%;
	top: 100%;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
	z-index: 99;
	display: none;
}
.mobile-menu .menu-ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--title-color);
	font-weight: 600;
	text-decoration: none;
	padding: 10px 10px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.mobile-menu .menu-ul li a:hover{
    color: var(--main-color);
}
.mobile-menu .menu-ul .sub-menu{
	margin: 0;
	padding: 0 0 0 20px;
	list-style: none;
	display: none;
}

@media(max-width: 1200px){

	.site-header{
		display: none;
	}
	.mobile-menu{
		display: block;
	}
}

.mobile-menu.sticky-nav{
    position: fixed;
    background-color: #060B2B;
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
}

/*================
 Preloader
==================*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111;
    z-index: 99999;
}
.preloader.style1{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.preloader.style1 .loader{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader.style1 .loader .ring{
    position: relative;
    height: 150px;
    width: 150px;
    margin: -30px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top: 4px solid #24ecff;
    animation: animate 4s linear infinite;
}
@keyframes animate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.preloader.style1 .loader .ring::before{
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    background: #24ecff;
    box-shadow: 0 0 0 5px #24ecff33,
    0 0 0 10px #24ecff22,
    0 0 0 20px #24ecff11,
    0 0 20px #24ecff,
    0 0 50px #24ecff;
}
.preloader.style1 .loader .ring:nth-child(2){
    animation: animate2 4s linear infinite;
    animation-delay: -1s;
    border-top: 4px solid transparent;
    border-left: 4px solid #93ff2d;
}
.preloader.style1 .loader .ring:nth-child(2)::before{
    content: "";
    position: absolute;
    top: initial;
    bottom: 12px;
    left: 12px;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    background: #93ff2d;
    box-shadow: 0 0 0 5px #93ff2d33,
    0 0 0 10px #93ff2d22,
    0 0 0 20px #93ff2d11,
    0 0 20px #93ff2d,
    0 0 50px #93ff2d;
}
@keyframes animate2{
    0%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(0deg);
    }
}
.preloader.style1 .loader .ring:nth-child(3){
    position: absolute;
    top: -66.66px;
    border-top: 4px solid transparent;
    border-left: 4px solid #e41cf8;
    animation: animate2 4s linear infinite;
    animation-delay: -3s;
}
.preloader.style1 .loader .ring:nth-child(3)::before{
    content: "";
    position: absolute;
    top: initial;
    bottom: 12px;
    left: 12px;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    background: #e41cf8;
    box-shadow: 0 0 0 5px #e41cf833,
    0 0 0 10px #e41cf822,
    0 0 0 20px #e41cf811,
    0 0 20px #e41cf8,
    0 0 50px #e41cf8;
}
.preloader.style1 .loader p{
    position: absolute;
    color: #fff;
    font-size: 1.5em;
    font-family: consolas;
    bottom: -150px;
    letter-spacing: 0.15em;
}

/*================
 Search Popup
==================*/

.search-window{
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999;
	margin-top: -540px;
	transform: translateY(-100%);
	background-color: rgba(0,0,0,0.90);
	-webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.search-active .search-window{
	transform: translateY(0%);
	margin-top: 0;
}
.search-window .search-close {
	position: absolute;
	right: 40px;
	top: 40px;
	margin: 0;
	text-align: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	border: 0;
	padding: 0;
	border-radius: 5px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.search-active .search-window .search-close{
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 1500ms;
	-moz-transition-delay: 1500ms;
	-ms-transition-delay: 1500ms;
	-o-transition-delay: 1500ms;
	transition-delay: 1500ms;
}
.search-window .search-close i{
	display: inline-block;
	color: #ffffff;
	font-size: 24px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	background-color: var(--main-color);
	border-radius: 5px;
}
.search-window form{
	position: absolute;
	max-width: 700px;
	top: 50%;
	left: 15px;
	right: 15px;
	margin:-35px auto 0;
	transform: scaleX(0);
	transform-origin: center;
	background-color: #111111;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.search-active .search-window form{
	transform: scaleX(1);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}
.search-window .form-group{
	position:relative;
	margin:0px; 
	overflow: hidden;
}
.search-window .form-group input[type="text"],
.search-window .form-group input[type="search"]{
	position:relative;
	display: block;
	font-size: 18px;
	line-height: 50px;
	height: 70px;
	width: 100%;
	padding: 10px 170px 10px 30px;
	background-color: #ffffff;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
	border: 0;
	outline: 0;
	border-radius: 5px;
}
.search-window .form-group input[type="submit"],
.search-window .form-group button {
	position: absolute;
	right: 0;
	top: 0px;
	height: 70px;
	width: 140px;
	line-height: 70px;
	background: var(--main-color);
	text-align: center;
	font-size: 24px;
	color: #fff;
	padding: 0;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: none;
	border-radius: 0;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.search-window .form-group input[type="submit"]:hover,
.search-window .form-group button:hover{
	color: #000000;
}
.search-window input::placeholder,
.search-window textarea::placeholder{
	color:#000000;
}

/*
==================
 Breadcrumb
==================
*/

.breadcrumb-area{
	position: relative;
	background-image: url('../images/breadcrumb-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding: 243px 0 153px;
}
.breadcrumb-area .title h1{
	color: #fff;
	font-size: 50px;
	font-weight: bold;
	margin-bottom: 18px;
}
.breadcrumb-area .breadcrumb-items{
	
}
.breadcrumb-area .breadcrumb-items ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.breadcrumb-area .breadcrumb-items ul li i{
	margin-right: 5px;
	font-size: 20px;
}
.breadcrumb-area .breadcrumb-items ul li{
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	margin: 0 3px;
}
.breadcrumb-area .breadcrumb-items ul li:last-child{
	color: var(--main-color);
}
.breadcrumb-area .breadcrumb-items ul li a{
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

/*==============
 Site Main
================*/

.site-main{
	padding: 100px 0 100px;
}
.site-main article {
	margin-bottom: 30px;
	padding: 35px 40px 35px;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,0.1);
}
.site-main article .entry-header{
    margin-bottom: 20px;
}
.site-main article .entry-header .entry-title a{
    color: #fff;
}
.site-main article .entry-header .entry-meta{
    color: #a0a5b9;
}
.site-main article p{
    color: #a0a5b9;
}
.site-main article img{
    width: 100%;
}
.site-main article .entry-footer{
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 15px;
    padding-top: 20px;
}

/*
==================
Blog Grid
==================
*/
.blog-grid{
	background-color: #060b2b;
	padding: 120px 0 90px;
}
.blog-grid .post{
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}
.blog-grid .post .blog-thumb img{
	height: 300px;
	width: 100%;
	object-fit: cover;
}
.blog-grid .post .blog-thumb .date{
    position: absolute;
    background-color: #0c73ff;
    padding: 15px 21px 10px;
    right: 40px;
}
.blog-grid .post .blog-thumb .date h3{
    color: #fff;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}
.blog-grid .post .blog-thumb .date span{
    color: #75affd;
    font-size: 14px;
    line-height: 1;
}
.blog-grid .post .blog-content {
    padding: 23px 30px 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.blog-grid .post .blog-content .blog-meta{
    position: relative;
    display: flex;
    align-items: center;
}
.blog-grid .post .blog-content .blog-meta .bar{
    height: 12px;
    width: 1px;
    background: #7f8388;
    margin-right: 12px;
}
.blog-grid .post .blog-content .category,
.blog-grid .post .blog-content .author{
    position: relative;
    color: #7f8388;
    font-size: 14px;
}
.blog-grid .post .blog-content .category i, 
.blog-grid .post .blog-content .author i {
    margin-right: 5px;
    font-size: 14px;
    margin-right: 5px;
    background: -webkit-linear-gradient(left, #2e4ffe 0%,#4f7efa 100%);
    background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog-grid .post .blog-content .category{
    display: flex;
    align-items: center;
    margin-right: 12px;
}
.blog-grid .post .blog-content .category ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.blog-grid .post .blog-content .blog-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.blog-grid .post .blog-content .description {
    color: #a0a5b9;
    line-height: 26px;
}
.blog-grid .post .blog-content .blog-title a {
    color: #fff;
}
.blog-grid .post .blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.1);
    border-top-style: solid;
    border-top-width: 1px;
    border-top: 0;
    padding-left: 30px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.blog-grid .post .blog-footer p {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}
.blog-grid .post .blog-footer a {
    position: relative;
    display: inline-block;
    color: #a0a5b9;
    padding: 20px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}
.blog-grid .post .blog-footer a::before {
    content: '';
    position: absolute;
    height: 100%;
    background: linear-gradient(to right, #2e4ffe 0%,#4f7efa 100%);
    top: 0;
    right: 0;
    border-bottom-right-radius: 5px;
    width: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    z-index: -1;
}
.blog-grid .post:hover .blog-footer a::before {
    width: 100%;
}
.blog-grid .post:hover .blog-footer a{
    color: #fff;
}
.blog-grid .post .blog-footer a i {
    display: inline-block;
    font-size: 14px;
}

/*==============
 Blog Details
================*/

.blog-details{
	padding: 100px 0 100px;
	background-color: #060b2b;
}
.blog-details h1,
.blog-details h2,
.blog-details h3,
.blog-details h4,
.blog-details h5,
.blog-details h6{
	color: #fff;
}
.blog-details h2{
	font-size: 32px;
	margin-bottom: 15px;
}
.blog-details h3{
	margin-bottom: 15px;
}
.blog-details p{
	color: #a0a5b9;
}
.blog-details .post-thumb img{
	width: 100%;
	border-radius: 5px;
	object-fit: cover;
}
.blog-details .post-content ul{
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}
.blog-details .post-content ul li{
	position: relative;
	color: #fff;
	padding-left: 35px;
	margin-bottom: 19px;
}
.blog-details .post-content ul li::before {
	content: '';
	position: absolute;
	height: 20px;
	width: 20px;
	background: url(../images/list-icon.png);
	left: 0;
	top: 2px;
}
.blog-details .post-meta{
	display: flex;
	align-items: center;
	margin: 23px 0 17px;
}
.blog-details .post-meta .category{
	display: flex;
	align-items: center;
}
.blog-details .post-meta .category i{
	color: var(--main-color);
	font-size: 14px;
	margin-right: 9px;
}
.blog-details .post-meta .post-categories{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	margin-right: 30px;
}
.blog-details .post-meta .post-categories li a{
	color: #a0a5b9;
}
.blog-details .post-meta .author{
	color: #a0a5b9;
	margin-right: 30px;
}
.blog-details .post-meta .author i{
	color: var(--main-color);
	margin-right: 9px;
}
.blog-details .post-meta .date{
	color: #a0a5b9;
}
.blog-details .post-meta .date i{
	color: var(--main-color);
	font-size: 14px;
	margin-right: 9px;
}
.blog-details blockquote {
	position: relative;
	font-size: 18px;
	background-color: rgba(255, 255, 255, 0.05);
	margin: 50px 0 50px;
	padding: 30px 45px 45px;
	border-left: 5px solid var(--main-color);
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
.blog-details blockquote::before{
	content: '';
	position: absolute;
	height: 36px;
	width: 46px;
	background: url(../images/blockquote.png);
	right: 40px;
	bottom: 40px;
}
.blog-details blockquote p{
	color: #fff;
	line-height: 30px;
}
.blog-details blockquote cite {
	color: var(--main-color);
	font-size: 16px;
}
.blog-details .post-footer {
	margin-top: 62px;
	padding: 40px 0 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-details .post-footer .tags{
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}
.blog-details .post-footer .tags span{
	margin-right: 15px;
}
.blog-details .post-footer .tags a{
	display: inline-block;
	color: #a0a5b9;
	font-size: 14px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 3px;
	margin-right: 10px;
	padding: 10px 20px;
}

.comment-form textarea{
	color: #fff;
	outline: 0;
	padding: 20px 25px;
	background-color: transparent;
	border: 1px solid rgba(76, 121, 250, 0.3);
	border-radius: 5px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.comment-form textarea:focus{
	color: #fff;
	border: 1px solid rgba(76, 121, 250, 1);
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"]{
	width: 100%;
	color: #fff;
	outline: 0;
	padding: 12px 25px;
	background-color: transparent;
	border: 1px solid rgba(76, 121, 250, 0.3);
	border-radius: 5px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus{
	color: #fff;
	border: 1px solid rgba(76, 121, 250, 1);
}
.comment-form input[type="submit"] {
    border: 0;
    outline: 0;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #2e4ffe 0%, #4f7efa 100%);
    padding: 20px 35px;
    border-radius: 5px;
}

/*==============
 Sidebar
================*/

.widget-area .widget {
	margin-bottom: 40px;
	padding: 35px 40px 35px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 5px;
}
.widget-area .widget .wp-block-heading {
    color: #fff;
	font-size: 21px;
	margin-bottom: 20px;
}
.widget-area .widget ul,
.widget-area .widget ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
.widget-area .widget ul li a,
.widget-area .widget ol li a {
	color: #a0a5b9;
}
.widget-area .widget ul li a:hover,
.widget-area .widget ol li a:hover {
	color: var(--main-color);
}
.blog-details .widget-area .widget ul li a, .widget-area .widget ol li a {
	color: #a0a5b9;
	font-size: 17px;
}

/*==============
 Footer
================*/

.site-footer{
	padding: 20px 0;
	background-color: var(--main-color);
}
.site-footer .site-info{
	color: #fff;
	text-align: center;
}
.site-footer .site-info a{
	color: #fff;
}

/* Scroll to Top */

.scroll-up {
	position: fixed;
	right: 55px;
	bottom: 80px;
	height: 48px;
	width: 48px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px rgba(0, 119, 249, 0.2);
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transform: translateY(15px) !important;
	transition: all 200ms linear !important;
}
.scroll-up.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) !important;
}
.scroll-up::after {
	position: absolute;
	content: "\F281";
	font-family: bootstrap-icons;
	text-align: center;
	line-height: 46px;
	font-size: 14px;
	font-weight: 400;
	color: var(--main-color);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	transition: all 200ms linear !important;
}
.scroll-up::before {
	position: absolute;
	content: "\f106";
	font-family: "FontAwesome";
	text-align: center;
	line-height: 46px;
	font-size: 18px;
	font-weight: 900;
	opacity: 0;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	transition: all 200ms linear !important;
}
.scroll-up:hover ::after {
	color: var(--main-color);
}
.scroll-up:hover ::before {
	opacity: 1;
}
.scroll-up svg path {
	fill: none;
}
.scroll-up svg.progress-circle path {
	stroke: var(--main-color);
	stroke-width: 4;
	box-sizing: border-box;
	transition: all 200ms linear !important;
}