:root {
	--site-font: "Manrope", sans-serif;
	--signature-font: "Style Script", cursive;
	--main-color: #0064e8;
	--white-color: #ffffff;
	--black-color: #000000;
	--content-color: #7f7f82;
	--button-size: 16px;
	--duration: .3s;
}
html{
	overflow-x: hidden;
}
body{
	overflow-x: hidden;
	font-family: var(--site-font);
}
.clear-both{
	clear: both;
}

h2{
	font-size: 30px;
	font-weight: 800;
	color: var(--black-color);
}
h3{
	font-size: 26px;
	font-weight: 600;
	color: var(--black-color);
}
h4{
	font-size: 20px;
	font-weight: bold;
	color: var(--black-color);
}
h5{
	font-size: 18px;
	font-weight: 500;
	color: var(--black-color);
}
h6{
	font-size: 16px;
	font-weight: 500;
	color: var(--black-color);
}

p{
	color: var(--content-color);
}
.info{
	color: var(--content-color);
	font-weight: 500;
}
.text-white{
	color: var(--white-color);
}
.site-spacing{
	margin: 50px 0;
}
.site-spacing-bottom{
	margin-bottom: 50px;
}
.site-spacing-top{
	margin-top: 50px;
}
.site-padding{
	padding: 50px 0;
}


.small-title{
	font-size: 18px;
	color: var(--main-color);
	font-weight: 700;
	text-transform: uppercase;
}

header{
	padding: 30px 0;
}
header .header-wrap .logo-wrap p{
	font-size: 18px;
	font-weight: bold;
	color: var(--black-color);
}
header .header-wrap .logo-wrap span{
	font-size: 14px;
	font-weight: bold;
	color: #8f939d;
}
header .header-wrap nav ul li a{
	padding: 0 15px;
	color: var(--black-color);
	font-weight: bold;
	text-decoration: none;
}
header .header-wrap nav ul li a:hover, header .header-wrap nav ul li a:active, header .header-wrap nav ul li a:focus,
header .header-wrap nav ul li a.active{
	color: var(--main-color);
	text-decoration: none;
}
header .menu-btn{
	display: none;
}

.site-btn{
	background: var(--main-color);
	color: var(--white-color);
	font-size: var(--button-size);
	font-weight: bold;
	padding: 10px 20px;
	border-radius: 10px;
	transition-duration: var(--duration);
	border: solid 2px transparent;
}
.site-btn:hover{
	background: var(--black-color);
	color: var(--white-color);
	transition-duration: var(--duration);
}



.btn-reviews span{
	background: #2bcc71;
	width: 30px;
	height: 30px;
	border-radius: 100%;
}

.white-btn{
	background: var(--white-color);
	color: var(--black-color);
	border: solid 2px #eaeaea;
}


.hero .tag{
	background: #e2f0fe;
	color: var(--main-color);
	font-size: 14px;
	font-weight: bold;
	padding: 10px 20px;
	border-radius: 50px;
}
.hero h1{
	font-size: 48px;
	font-weight: 800;
}
.hero h1 span{
	color: var(--main-color);
}
.hero p{
	color: var(--content-color);
	font-weight: 600;
}
.hero ul.verified{
	margin-bottom: 40px;
}
.hero ul.verified li{
	font-weight: bold;
	color: var(--black-color);
}
.hero ul.verified li i{
	font-size: 18px;
	color: var(--main-color)
}

.hero ul.available li{
	font-weight: bold;
}
.hero ul.available a{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: var(--main-color);
	color: var(--white-color);
}
.hero ul.available a i{
	color: var(--white-color);
}
.hero ul.available a.fi{
	background: #2bcc71;
	transition-duration: var(--duration);
}
.hero ul.available a.link{
	background: #17bded;
	transition-duration: var(--duration);
}
.hero ul.available a.wa{
	background: #34cd6c;
	transition-duration: var(--duration);
}

.hero ul.available a.fi:hover {
	background: #22b863;
	transition-duration: var(--duration);
}

.hero ul.available a.link:hover {
	background: #12a8d6;
	transition-duration: var(--duration);
}

.hero ul.available a.wa:hover {
	background: #2fb85f;
	transition-duration: var(--duration);
}
.hero .profile-image{
	width: 100%;
	margin: auto;
	
}
.hero .profile-image img{
	width: 100%;
	height: auto;
}
.hero .profile-info{
	position: absolute;
	right: -80px;
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	padding: 20px;
	border-radius: 10px;
	background: var(--white-color);
	width: 170px;
	top: 50%;
	transform: translateY(-50%);
}
.hero .profile-info img{
    height: 40px;
    width: auto;
    margin: 0 0 10px 0;	
}
.hero .profile-info h3{
	font-size: 20px;
}
.fiverr-top-rated span{
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	color: var(--black-color) !important;
}

.hero .profile-image .dot-animation{
	position: absolute;
	top: 20%;
	animation: zoom-in-zoom-out 15s ease infinite;
	transform: translateX(0%) translateY(0%);
}
@keyframes zoom-in-zoom-out {
   0% {
    transform: translateX(0%) translateY(0%) scale(1.5, 1.5);
  }
  50% {
    transform: translateX(0%) translateY(0%) scale(1.1, 1.1);
  }
  100% {
    transform: translateX(0%) translateY(0%) scale(1.5, 1.5);
  }
}

.top-animate{
	transform: translateY(100%);
}
.left-animate{
	transform: translateX(-100%);
}
.right-animate{
	transform: translateX(1000%);
}

.counters-inner{
	background: #132134;
	border-radius: 15px;
	margin-top: -2px;
	color: var(--white-color);
	padding: 40px 40px;
}
.counters-inner .icon{
	font-size: 24px;
	color: var(--main-color);
}
.counters-inner .odometer{
	color: var(--white-color);
}
.counters-inner .counter-wrap{
	font-size: 26px;
	font-weight: 500;
}
.counters-inner h3{
	margin-right: 2px;
}
.counters-inner p{
	font-size: 16px;
	font-weight: bold;
	color: var(--content-color);
}
.counters-inner .ci{
	position: relative;
}
.counters-inner .ci:after{
	content: "";
	position: absolute;
	right: 15px;
	top: 10%;
	bottom: 10%;
	background: var(--content-color);
	width: 2px;
	opacity: .5;
}
.counters-inner .col-sm-3:last-child .ci:after{
	display: none;
}

.services .service-item{
	background: var(--white-color);
	color: var(--black-color);
	border: solid 2px #eaeaea;
	padding: 30px;
	border-radius: 12px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	transition-duration: var(--duration);
}
.services .service-item:hover{
	background: #e2f0fe;
	transition-duration: var(--duration);
	border: solid 2px var(--main-color);
}
.services .service-item i{
	font-size: 24px;
	color: var(--main-color);
	background: #f8f8f9;
	width: 50px;
	height: 50px;
	border-radius: 100%;	
	display: flex;
	align-items: center;
	justify-content: center;
}
.services .service-item h3{
	font-size: 16px;
	font-weight: bold;
}
.services .service-item div{
	width: calc(100% - 50px);
}

.review .carousel .carousel-control-prev,
.review .carousel .carousel-control-next{
	background: var(--white-color);
	width: 50px;
	height: 50px;
	box-shadow: 0 0 5px rgba(0,0,0,.3);
	opacity: 1;
	border-radius: 100%;
	top: calc(50% - 25px);
}
.review .carousel .carousel-control-prev{
	left: -25px;
}
.review .carousel .carousel-control-next{
	right: -25px;
}
.review .carousel .carousel-control-prev i,
.review .carousel .carousel-control-next i{
	color: var(--black-color);
	
}
.review .carousel .carousel-indicators{
	margin: 0;
	bottom: -30px;
	gap: 5px;
}
.review .carousel .carousel-indicators button{
	background: var(--content-color);
	width: 10px;
	height: 10px;
	border-radius: 100%;
	padding: 0;
	border: 0;
}
.review .carousel .carousel-indicators button.active{
	background: var(--main-color);
}

.faq .accordion-item{
	margin-bottom: 20px;
	border: 0;
	border: solid 1px var(--main-color);
	border-radius: 10px;
	overflow: hidden;
}
.faq .accordion-item .accordion-header button{
	color: var(--black-color);
    font-weight: bold;
	background: transparent !important;
	box-shadow: none !important;
	padding: 25px;
	transition-duration: var(--duration);
}
.faq .accordion-item .accordion-body{
	padding-top: 0 !important;
	background: #e2f0fe !important;
}
.faq .accordion-item:last-child{
	margin-bottom: 0;
}
.faq .accordion-item .accordion-header button[aria-expanded="true"]{
	background: #e2f0fe !important;
	color: var(--main-color);
	transition-duration: var(--duration);
}
.faq .accordion-item .accordion-collapse.show{
	background: #e2f0fe !important;
	transition-duration: var(--duration);
}


.technologies{
	background: #f5f6f8;
}
.technologies .tech-item{
	background: var(--white-color);
	box-shadow: 0 0 15px rgba(0,0,0,.1);
	border-radius: 10px;
	padding: 25px 15px;
	border: solid 1px transparent;
	transition-duration: var(--duration);
}
.technologies .tech-item p{
	color: var(--black-color);
	font-weight: bold;
}
.technologies .tech-item:hover{	
	border-color: var(--main-color);
	transition-duration: var(--duration);
}


.choose .service-item{
	border-color: transparent;
	box-shadow: 0 0 5px rgba(0,0,0,.1);
}
.choose .service-item i{
	border-radius: 10px;
	background: #e2f0fe;
	transition-duration: var(--duration);
}
.choose .service-item:hover{
	border-color: var(--main-color) !important;
}
.choose .service-item:hover i{
	background: var(--white-color);
	transition-duration: var(--duration);
}


.before-footer{
	background: #142234;
	color: var(--white-color);
}
.before-footer .row{
	margin: 0 -50px;
}
.before-footer .col-sm-8, .before-footer .col-sm-4{
	padding: 0 50px;
	position: relative;
}
.before-footer .col-sm-8:after{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background: var(--content-color);
	width: 2px;
	opacity: .5;
}
.before-footer .about{
	color: var(--white-color);
	opacity: .7;
}
.before-footer .signature{
	font-family: var(--signature-font);
	font-style: italic;
	font-weight: normal;
	font-size: 32px;
}
.before-footer ul li{
	position: relative;
	padding-left: 30px;
	color: var(--white-color);
	opacity: .7;
	margin-bottom: 15px;
}
.before-footer ul li i{
	position: absolute;
	left: 0;
	top: 5px;
}
.before-footer ul li:last-child{
	margin-bottom: 0;
}

footer{
	background: #0a1a2c;
}
footer p{
	color: var(--white-color);
	opacity: .7;
}
footer .site-logo p{
	color: var(--white-color) !important;
	opacity: 1;
	font-weight: 500;
}
footer .site-logo span{
	color: var(--white-color) !important;
	opacity: .7;
}
footer .social-link li{
	float: left;
	margin-right: 10px;
}
footer .social-link li:last-child{
	margin-right: 0;
}
footer .social-link li a{
	float: left;
	width: 34px;
	height: 34px;
	border: solid 1px var(--white-color);
	color: var(--white-color);
	text-align: center;
	line-height: 34px;
	font-size: 14px;
	border-radius: 100%;
	transition-duration: var(--duration);
}
footer .social-link li:hover a{
	background: var(--white-color);
	color: var(--main-color);
	transition-duration: var(--duration);
}
	
footer ul.menu-links li{
	float: left;
	width: 100%;
	margin-bottom: 10px;
	color: var(--white-color);
	opacity: .7;
}
footer ul.menu-links li:last-child{
	margin-bottom: 15px;
}
footer ul.menu-links li a{
	float: left;
	width: 100%;
	color: var(--white-color);
	text-decoration: none;
	transition-duration: var(--duration);
}
footer ul.menu-links li:hover{
	transition-duration: var(--duration);
	opacity: 1;
	
}

footer ul.available li{
	font-weight: bold;
}
footer ul.available a{
	width: 44px;
	height: 44px;
	border-radius: 100%;
	background: var(--main-color);
	color: var(--white-color);
}
footer ul.available a i{
	color: var(--white-color);
}
footer ul.available a.fi{
	background: #2bcc71;
	transition-duration: var(--duration);
}
footer ul.available a.link{
	background: #17bded;
	transition-duration: var(--duration);
}
footer ul.available a.wa{
	background: #34cd6c;
	transition-duration: var(--duration);
}
footer ul.available a.email{
	background: var(--main-color);
	transition-duration: var(--duration);
}
footer ul.available a.fi:hover {
	background: #22b863;
	transition-duration: var(--duration);
}
footer ul.available a.link:hover {
	background: #12a8d6;
	transition-duration: var(--duration);
}
footer ul.available a.wa:hover {
	background: #2fb85f;
	transition-duration: var(--duration);
}
footer ul.available a.email:hover{
	background: #015ed8;
	transition-duration: var(--duration);
}


@media (min-width: 992px) and (max-width: 1199px) {
	body{
		font-size: 14px;
	}
	header .header-wrap .logo-wrap p{
		white-space: nowrap;
	}
	.hero h1{
		font-size: 40px;
	}
	.hero ul.verified{
		gap: 10px !important;
	}
	.services .service-item{
		padding: 20px 15px;
	}
	
	.hero .profile-info{
		right: -20px;
		padding: 15px;
		width: 150px;
	}
	.hero .profile-info img{
		height: 30px;
	}
	.hero .profile-info h3{
		font-size: 16px;
	}
	.hero .profile-info p{
		font-size: 14px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	body{
		font-size: 14px;
	}
	header{
		z-index: 99;
	}
	header .header-wrap .logo-wrap p{
		white-space: nowrap;
	}
	header .site-btn{
		margin-left: auto;
	}
	header nav{
		position: absolute;
		left: 0;
		right: 0;
		background: #f5f6f8;
		top: 100%;
		margin: 0;
		padding: 10px 40px;
		display: none;
	}
	header nav ul{
		flex-direction: column;		
	}
	header nav ul li{
		float: left;
		width: 100%;
		text-align: center
	}
	header nav ul li a{
		float: left;
		width: 100%;
		padding: 8px 0 !important;
	}
	header .menu-btn{
		display: block;
		float: right;
		width: 50px;
		height: 50px;
		border-radius: 8px;
		background: var(--black-color);
		padding: 12px 10px;
		margin-left: 15px;
	}
	header .menu-btn span{
		float: left;
		width: 100%;
		height: 2px;
		background: #fff;
		margin:0 0 8px 0;
		position: relative;
		transition-duration: .4s;
	}
	header .menu-btn.active span:nth-child(2){
		opacity: 0; 
	}
	header .menu-btn.active span:nth-child(1){
		transform: rotate(45deg);
		top: 12px;
	}
	header .menu-btn.active span:nth-child(3){
		transform: rotate(-45deg);
		top: -8px;
	}
	
	.hero .col-sm-7, .hero .col-sm-5{
		width: 100%;
	}
	
	.hero h1{
		font-size: 40px;
		text-align: center;
	}
	.hero ul.verified{
		gap: 10px !important;
		width: 100%;
		justify-content: center;
	}
	.hero .tag{
		margin: auto;
		display: table !important;
		float: none !important;
	}
	.hero p,
	.small-title,
	h2,
	.info,
	.before-footer .about{
		text-align: center;
	}
	.hero .hero-action{
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.hero .available {
		width: 100%;
		justify-content: center;
	}
	.hero .profile-image{
		width: 80%;
	}
	
	.hero .profile-info{
		right: -20px;
		padding: 15px;
		width: 150px;
	}
	.hero .profile-info img{
		height: 30px;
	}
	.hero .profile-info h3{
		font-size: 16px;
	}
	.hero .profile-info p{
		font-size: 14px;
	}
	
	.counters .col-sm-3{
		width: 50%;
	}
	.counters .ci{
		flex-direction: column;
		border-bottom: solid 1px var(--content-color);
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	.counters-inner .ci:after{
		right: -15px;
	}
	.counters-inner .icon{
		font-size: 30px;
	}
	.counters-inner .col-sm-3:nth-child(2n+2) .ci:after{
		display: none;
	}
	.counters-inner .col-sm-3:last-child .ci,
	.counters-inner .col-sm-3:nth-last-child(2) .ci{
		border-bottom: 0px;
		margin: 0;
		padding: 0;
	}
	.counters-inner .counter-wrap{
		text-align: center;
	}
	
	.services .service-item{
		padding: 20px 0px;
        flex-direction: column;
        text-align: center;
        justify-content: center !important;
        align-items: center !important;
	}
	.review .review-title{
		flex-direction: column;
		margin-bottom: 30px;
	}
	
	.technologies{
		padding-bottom: 20px;
	}
	.technologies .col-sm-2{
		width: 33.3%;
	}
	.technologies .tech-item{
		margin-bottom: 30px;
	}
	
	.before-footer .col-sm-8, .before-footer .col-sm-4{
		width: 100%;
	}
	.before-footer .signature-wrap{
		justify-content: center !important;
	}
	.before-footer ul{
		display: block !important;
		text-align: center;
		margin-top: 30px !important;
	}
	.before-footer ul li{
		display: inline-block !important;
		margin: 5px 10px !important;
	}
	footer .col-sm-1, footer .col-sm-2, footer .col-sm-3, footer .col-sm-4, footer .col-sm-5, footer .col-sm-6, footer .col-sm-7, footer .col-sm-8, footer .col-sm-9, footer .col-sm-10, footer .col-sm-11, footer .col-sm-12{
		width: 100%;
	}
	footer .logo-wrap{
		justify-content: center;
	}
	footer .site-logo p{
		width: auto !important;
	}
	footer p,
	footer h4{
		text-align: center;
	}
	footer .social-link{
		display: block;
		text-align: center;
		float: none !important;
		clear: both;
		margin-bottom: 30px !important;
		border-bottom: solid 1px var(--content-color);
		padding-bottom: 30px;
	}
	footer .social-link li{
		display: inline-block !important;
		float: none !important;
	}
	footer ul.menu-links li a{
		float: left;
		width: 100%;
		text-align: center;
	}
	footer ul.menu-links{
		margin-bottom: 30px !important;
		border-bottom: solid 1px var(--content-color);
		padding-bottom: 30px;
	}
	footer .available{
		width: 100%;
		justify-content: center;
		border-top: solid 1px var(--content-color);
		padding-top: 30px !important;
		margin-top: 20px !important;
		border-bottom: solid 1px var(--content-color);
		padding-bottom: 30px !important;
	}
}
@media (min-width: 1px) and (max-width: 767px) {
	
	.site-spacing{
		margin: 30px 0;
	}
	.site-spacing-bottom{
		margin-bottom: 30px;
	}
	.site-spacing-top{
		margin-top: 30px;
	}
	.site-padding{
		padding: 30px 0;
	}
	
	header{
		z-index: 99;
		padding: 20px 0;
	}
	header .site-btn{
		position: fixed;
		left: 0;
		bottom: 0;
		border-radius: 0;
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	header .header-wrap .logo-wrap{
	    width: calc(100% - 50px);
	}
	header .header-wrap .logo-wrap p{
		white-space: nowrap;
	}
	header .site-btn{
		margin-left: auto;
	}
	header nav{
		position: absolute;
		left: 0;
		right: 0;
		background: #f5f6f8;
		top: 100%;
		margin: 0;
		padding: 10px 40px;
		display: none;
	}
	header nav ul{
		flex-direction: column;		
	}
	header nav ul li{
		float: left;
		width: 100%;
		text-align: center
	}
	header nav ul li a{
		float: left;
		width: 100%;
		padding: 8px 0 !important;
	}
	header .menu-btn{
		display: block;
		float: right;
		width: 50px;
		height: 50px;
		border-radius: 8px;
		background: var(--black-color);
		padding: 12px 10px;
		margin-left: 0;
	}
	header .menu-btn span{
		float: left;
		width: 100%;
		height: 2px;
		background: #fff;
		margin:0 0 8px 0;
		position: relative;
		transition-duration: .4s;
	}
	header .menu-btn.active span:nth-child(2){
		opacity: 0; 
	}
	header .menu-btn.active span:nth-child(1){
		transform: rotate(45deg);
		top: 12px;
	}
	header .menu-btn.active span:nth-child(3){
		transform: rotate(-45deg);
		top: -8px;
	}
	
	.hero .col-sm-7, .hero .col-sm-5{
		width: 100%;
	}
	
	.hero h1{
		font-size: 30px;
		text-align: center;
	}
	.hero ul.verified{
		gap: 10px !important;
		width: 100%;
		justify-content: center;
		flex-direction: column;
	}
	.hero .tag{
		margin: auto;
		display: table !important;
		float: none !important;
	}
	.hero p,
	.small-title,
	h2,
	.info,
	.before-footer .about{
		text-align: center;
	}
	.hero .hero-action{
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 10px !important;
	}
	.hero .hero-action a{
		margin: 0 !important;
		min-width: 220px;
		justify-content: center;
	}
	.hero .available {
		width: 100%;
		justify-content: center;
		gap: 15px !important;
	}
	.hero ul.available a{
		width: 40px;
		height: 40px;
	}
	.hero .profile-image{
		width: 90%;
	}
	
	.hero .profile-info{
		right: -20px;
		padding: 15px;
		width: 150px;
		top: 65%;
	}
	.hero .profile-info img{
		height: 30px;
	}
	.hero .profile-info h3{
		font-size: 16px;
	}
	.hero .profile-info p{
		font-size: 14px;
	}
	
	.counters-inner{
		padding: 20px;
	}
	.counters .col-sm-3{
		width: 100%;
	}
	.counters .ci{
		flex-direction: column;
		border-bottom: solid 1px var(--content-color);
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	.counters-inner .ci:after{
		display: none;
	}
	.counters-inner .icon{
		font-size: 30px;
	}
	.counters-inner .col-sm-3:last-child .ci{
		border-bottom: 0px;
		margin: 0;
		padding-bottom: 10px;
	}
	.counters-inner .counter-wrap{
		text-align: center;
	}
	
	.services .service-item{
		padding: 20px 0px;
        flex-direction: column;
        text-align: center;
        justify-content: center !important;
        align-items: center !important;
		height: auto;
		margin-bottom: 15px;
	}
	.review .review-title{
		flex-direction: column;
		margin-bottom: 30px;
	}
	.review .carousel .carousel-control-prev, .review .carousel .carousel-control-next{
		display: none;
	}
	
	.technologies{
		padding-bottom: 20px;
	}
	.technologies .col-sm-2{
		width: 100%;
	}
	.technologies .tech-item{
		margin-bottom: 15px;
	}
	
	.before-footer .col-sm-8, .before-footer .col-sm-4{
		width: 100%;
	}
	.before-footer .signature-wrap{
		justify-content: center !important;
		flex-direction: column;
		gap: 15px !important;
	}
	.before-footer ul{
		display: block !important;
        width: 213px !important;
        text-align: left;
        margin: auto !important;
        float: none !important;
        overflow: hidden;
        margin-top: 12px !important;
	}
	.before-footer ul li{
		float: left;
		margin: 5px auto 0 auto !important;
		clear: both;
		font-size: 11px;
		text-align: left;
		padding-left: 22px;
	}
	.before-footer .top-rate{
		left: -4px;
		position: relative;
	}
	footer{
		padding-bottom: 80px !important;
	}
	footer .col-sm-1, footer .col-sm-2, footer .col-sm-3, footer .col-sm-4, footer .col-sm-5, footer .col-sm-6, footer .col-sm-7, footer .col-sm-8, footer .col-sm-9, footer .col-sm-10, footer .col-sm-11, footer .col-sm-12{
		width: 100%;
	}
	footer .logo-wrap{
		justify-content: center;
	}
	footer .logo-wrap .site-logo {
		flex-direction: column !important;
		text-align: center;
	}
	
	footer p,
	footer h4{
		text-align: center;
	}
	footer .social-link{
		display: block;
		text-align: center;
		float: none !important;
		clear: both;
		margin-bottom: 30px !important;
		border-bottom: solid 1px var(--content-color);
		padding-bottom: 30px;
	}
	footer .social-link li{
		display: inline-block !important;
		float: none !important;
	}
	footer ul.menu-links li a{
		float: left;
		width: 100%;
		text-align: center;
	}
	footer ul.menu-links{
		margin-bottom: 30px !important;
		border-bottom: solid 1px var(--content-color);
		padding-bottom: 30px;
	}
	footer .available{
		width: 100%;
		justify-content: center;
		border-top: solid 1px var(--content-color);
		padding-top: 30px !important;
		margin-top: 20px !important;
		border-bottom: solid 1px var(--content-color);
		padding-bottom: 30px !important;
	}
}