*{
	margin:0;
	padding:0;
}
body{
	background:#FFFFFF;
	position: relative;
}
:root{
	--baseColor: #21A438;
	--ashColor: #706F6F;
	--baseGray: #F0F0F0;
	--baseBlack: #000000;
	--baseLight: #FFFFFF;
	
	--lightText: #F2F2F2;
	--darkText: #121212;
	--grayText: #DDDDDD;
	
	--baseBtnText: 'Yusei Magic', sans-serif;
	--baseHeading: 'Raleway', sans-serif;
	--baseParagraph: 'Montserrat', sans-serif;
}

/* ========== Custom CSS Starts ========== */


/* ===== CSS For "Common Cases" Starts Here ===== */
.grid_item{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;	
}
/* ======================== */
.clickable_link{
	margin-top: 20px;
}
.clickable_link a{
	color: var(--lightText);
	background: var(--baseColor);
	font-family: var(--baseParagraph);
	font-weight: 600;
	font-size: 20px;
	display: inline-block;
	padding: 10px 15px;
	border-radius: 5px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.clickable_link a img{
	width: 24px;
	position: relative;
	top: -1.5px;
	margin-right: 5px;
}
.clickable_link a:hover{
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
/* =========================== */
.vertical_padding{
	padding: 50px 0px;
}
/* =========================== */
.heading{
	margin-bottom: 10px;
	text-align: center;
}
.heading h3{
	color: var(--darkText);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 30px;
	margin-bottom: 0px;
}
.heading p{
	color: var(--darkText);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 16px;
	max-width: 760px;
	margin: 0px auto;
	margin-top: 10px;	
}
.heading .headline{
	margin: 15px 0px;
	margin-top: 5px;
}
.heading .headline span{
	width: 100px;
	height: 2px;
	background: var(--baseColor);
	display: inline-block;
}
/* ===== CSS For "Common Cases" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Top Part" Starts Here ===== */
.header{
	background: var(--baseBlack);
	padding: 7.5px 0px;
}
.header .top_bar{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 15px 1fr;
    grid-template-columns: 3fr 1fr;
    grid-auto-rows: auto;
    gap: 15px;	
}
.header .top_bar .left_numbers{
	
}
.header .top_bar .left_numbers ul{
	margin-bottom: 0px;
}
.header .top_bar .left_numbers ul li{
	list-style: none;
	display: inline-block;
	margin-right: 20px;
	color: var(--lightText);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 14px;
}
.header .top_bar .left_numbers ul li:last-child{
	margin-right: 0px;
}
.header .top_bar .left_numbers ul li span{
	font-weight: 600;
	font-size: 16px;
}
.header .top_bar .left_numbers ul li i{
	color: var(--baseColor);
	font-size: 20px;
	position: relative;
	top: 1.5px;
	margin-right: 2.5px;
}
.header .top_bar .left_numbers ul li a{
	font-weight: 600;
	color: var(--lightText);
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.header .top_bar .left_numbers ul li a:hover{
	color: var(--baseColor);
}

.header .top_bar .right_social ul{
	margin-bottom: 0px;
	text-align: right;
}
.header .top_bar .right_social ul li{
	list-style: none;
	display: inline-block;
	margin-left: 15px;
}
.header .top_bar .right_social ul li:first-child{
	margin-left: 0px;
}
.header .top_bar .right_social ul li i{
	color: var(--baseColor);
	font-size: 20px;
}
.header .top_bar .right_social ul li a{
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;	
}
.header .top_bar .right_social ul li a:hover i{
	color: var(--lightText);
}
/* ===== CSS For "Top Part" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Navbar" Starts Here ===== */
/* ===== Humberger Menu Icon ===== */
.navbar-toggler{
	padding:0px;
}
.navbar-toggler:focus{
	outline: none;
}
.animated-icon2{
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
.animated-icon2 span{
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.animated-icon2 span {
	background: var(--baseColor);
}
.animated-icon2 span:nth-child(1) {
	top: 0px;
}
.animated-icon2 span:nth-child(2),
.animated-icon2 span:nth-child(3) {
	top: 10px;
}
.animated-icon2 span:nth-child(4) {
	top: 20px;
}
.animated-icon2.open span:nth-child(1) {
	top: 11px;
	width: 0%;
	left: 50%;
}
.animated-icon2.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.animated-icon2.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.animated-icon2.open span:nth-child(4) {
	top: 11px;
	width: 0%;
	left: 50%;
}
/* ===== Humberger Menu Icon ===== */

.navbar{
	background: var(--baseLight);
	padding: 10px 10px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar.need_bg{
	
}
.navbar .navbar-brand img{
	max-width: 160px;
}
.navbar .navbar-brand{
	color: var(--baseColor);
	font-family: var(--baseBtnText);
	font-weight: 600;
	font-size: 36px;
	display: inline-block;
	text-decoration: none;
	padding: 0px;
}
.navbar .navbar-nav .nav-item {
	margin: 0px 10px;
}
.navbar .navbar-nav .nav-item:last-child{
	margin-right: 0px;
}
.navbar .navbar-nav .nav-item .nav-link{
	color: var(--darkText);
	font-family: var(--baseParagraph);
	font-weight: 600;
	font-size: 16px;
	padding: 5px 5px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	position: relative;
}
.navbar .navbar-nav .nav-item .nav-link:after{
	content: "";
	background: var(--baseColor);
	width: 0%;
	height: 2px;
	border-radius: 2px;
	position: absolute;
	left: 5px;
	bottom: 8px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar .navbar-nav .nav-item .nav-link:hover{
	color: var(--baseColor);
}
.navbar .navbar-nav .nav-item:hover .nav-link:after {
	width: calc(100% - 10px);
}

.navbar .navbar-nav .nav-item .call_now{
	color: var(--lightText);
	background: var(--baseColor);
	padding: 7.5px 10px;
	border-radius: 25px;
	position: relative;
	top: -5px;
}
.navbar .navbar-nav .nav-item .call_now img{
	max-width: 24px;
	position: relative;
	top: -0.5px;
	margin-right: 5px;
}
.navbar .navbar-nav .nav-item .call_now:after{
	display: none;
}
.navbar .navbar-nav .nav-item .call_now:hover{
	color: var(--lightText);
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
/* ===== CSS For "Navbar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */

/* ===== CSS For "Colored Banner" Starts Here ===== */
.colored_banner{
	background: var(--baseColor);
	padding: 15px 0px;
}
.colored_banner ul{
	margin-bottom: 0px;
	text-align: center;
}
.colored_banner ul li{
	list-style: none;
	display: inline-block;
	margin: 0px 15px;
	color: #000000;
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 24px;
}
.colored_banner ul li i{
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	display: inline-block;
}
.colored_banner ul li img{
	max-width: 24px;
}
/* ===== CSS For "Colored Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */

/* ===== CSS For "Head Banner" Starts Here ===== */
.banner_wrap{
	background: url(images/banner_bg.jpg) no-repeat;
	background-position: center center;
	background-size: cover;
}
.banner_wrap .overlay{
	background: rgba(0,0,0, 0.75);
	padding: 25px 0px;
}
.banner{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 4fr 25px 5fr;
    grid-template-columns: 4fr 5fr;
    grid-auto-rows: auto;
    gap: 25px;	
}
.banner .left_contents{
	
}
.banner .left_contents h2{
	color: var(--lightText);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 48px;
	margin-bottom: 0px;
}
.banner .left_contents h3{
	color: var(--lightText);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 32px;
	margin: 15px 0px;	
}
.banner .left_contents p{
	color: var(--lightText);
	font-family: var(--baseParagraph);
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 0px;
}
.banner .left_contents .shield_images{
	margin-top: 30px;
}
.banner .left_contents .shield_images img{
	max-width: 260px;
}

/*	==========================	*/

.the_form{
	background: var(--baseColor);
	padding: 20px;
	border-radius: 10px;
}
.the_form .title h3{
	color: #000000;
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 30px;
	margin-bottom: 15px;
	text-align: center;
}
.the_form .form-group{
	margin-bottom: 10px;
}
.the_form .form-control{
	color: #121212;
	background: rgba(255,255,255, 0.75);
	height: inherit;
	padding: 7.5px 15px;
	border-radius: 3.5px;
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 16px;
}
.the_form .form-control:focus,
.the_form .form-control:active{
	border: 1px solid #000000;
}
.the_form .addressline1{
	margin-bottom: 10px;
}

.the_form .sub_title{
	
}
.the_form .sub_title h5{
	color: #000000;
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 5px;
}

.the_form .submit_button button {
	color: #FFFFFF;
	background: #121212;
	display: block;
	width: 100%;
	border-radius: 2.5px;
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 18px;
	padding: 10px 15px;
}

/* The radio */
.radio {
	display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	color: #000000;
	font-family: var(--baseHeading);
	font-weight: 500;
	font-size: 15px;
}
/* Hide the browser's default radio button */
.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom radio button */
.checkround {
    position: absolute;
    top: 1px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #C7E8CD ;
    border-color:#000000;
    border-style:solid;
    border-width:2px;
	border-radius: 50%;
}
/* When the radio button is checked, add a blue background */
.radio input:checked ~ .checkround {
    background-color: #C7E8CD;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkround:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the indicator (dot/circle) when checked */
.radio input:checked ~ .checkround:after {
    display: block;
}
/* Style the indicator (dot/circle) */
.radio .checkround:after {
	left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000000;
}
/* ===== CSS For "Head Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Recent Work" Starts Here ===== */
.recent_works .top_texts h2{
	color: var(--darkText);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 42px;
	margin-bottom: 0px;
	text-align: center;
}
.recent_works .top_texts .clickable_link{
	margin: 30px 0px;
	text-align: center;
}
.clickable_link ul{
	margin-bottom: 0px;
	text-align: center;
}
.clickable_link ul li{
	list-style: none;
	display: inline-block;
	margin: 0px 15px;
	color: #000000;
	font-family: var(--baseParagraph);
	font-weight: 600;
	font-size: 20px;
}
.recent_works .single_work{
	margin: 0px 7.5px;
}
.recent_works .single_work img{
	border-radius: 5px;
	border: 2px solid var(--baseColor);
}

.recent_works .slick-prev:before{
	display:none;
}
.recent_works .slick-next:before{
	display:none;
}
.recent_works .slick-prev {
	background: url(images/left_arrow.png) no-repeat;
	background-position: center center;
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
}
.recent_works .slick-next {
	background: url(images/right_arrow.png) no-repeat;
	background-position: center center;
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
}
/* ===== CSS For "Recent Work" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Restoration Pros" Starts Here ===== */
.the_pros_wrap{
	background: var(--baseGray);
	padding: 30px 0px;
}
.the_pros{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 30px;	
}
.the_pros .left_image{
	
}
.the_pros .left_image img{
	border-radius: 5px;
}
.the_pros .right_contents{
	
}
.the_pros .right_contents .heading{
	text-align: left;
}
.the_pros .right_contents ul{
	margin-bottom: 0px;
}
.the_pros .right_contents ul li{
	list-style: none;
	margin-bottom: 10px;
	color: #000000;
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 18px;
	position: relative;
	padding-left: 30px;
}
.the_pros .right_contents ul li:before{
	content:"\f058";
	font: 24px FontAwesome;
	color: var(--baseColor);
	position: absolute;
	left: 0px;
	top: -3px;
}
.the_pros .right_contents ul li:last-child{
	margin-bottom: 0px;
}
/* ===== CSS For "Restoration Pros" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Services Area" Starts Here ===== */
.services_area_wrap{
	background: url(images/service_area.jpg) no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}
.services_area_wrap .overlay{
	background: rgba(0,0,0, 0.75);
	padding: 30px 0px;
}

.services_area{
	background: rgba(0,0,0, 0.75);
	padding: 30px;
	border-radius: 10px;
}
.services_area .heading{
	
}
.services_area .heading h3{
	color: var(--lightText);
}
.the_areas{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 30px;
	max-width: 680px;
	margin: 0px auto;
}
.the_areas ul{
	margin-bottom: 0px;
}
.the_areas ul li{
	list-style: none;
	margin-bottom: 15px;
	color: var(--lightText);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 18px;
	position: relative;
	padding-left: 25px;	
}
.the_areas ul li:before{
	content:"\f00c";
	font: 20px FontAwesome;
	color: var(--baseColor);
	position: absolute;
	left: 0px;
	top: 0px;	
}
.the_areas ul li:last-child{
	margin-bottom: 0px;
}
/* ===== CSS For "Services Area" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Services" Starts Here ===== */
.services_wrap{
	background: var(--baseGray);
	padding: 30px 0px;
}
.services_wrap .heading{
	margin-bottom: 20px;
}
.the_services{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 30px;
}
.the_services .left_image img{
	border-radius: 5px;
}
.the_services ul{
	margin-bottom: 0px;
}
.the_services ul li{
	list-style: none;
	margin-bottom: 10px;
	color: var(--darkText);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 18px;
	position: relative;
	padding-left: 25px;	
}
.the_services ul li:before{
	content:"\f00c";
	font: 20px FontAwesome;
	color: var(--baseColor);
	position: absolute;
	left: 0px;
	top: 0px;	
}
.the_services ul li:last-child{
	margin-bottom: 0px;
}

.services_wrap .highlighed_texts p{
	color: var(--baseColor);
	font-family: var(--baseParagraph);
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 0px;
	margin-top: 25px;
	text-align: center;
}
/* ===== CSS For "Services" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "How It Works" Starts Here ===== */
.steps{
    
}
.steps .single_step{
	border: 1px solid #DADCE0;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0,0,0, 0.1);
	max-width: 760px;
	margin: 0px auto;
	margin-bottom: 25px;
}
.steps .single_step:last-child{
	margin-bottom: 0px;
}
.steps .single_step .title{
	background: var(--baseColor);
	padding: 10px 15px;
	border-radius: 5px 5px 0px 0px;
}
.steps .single_step .title h4{
	color: var(--darkText);
	font-family: 'Yusei Magic', sans-serif;
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 0px;
	text-align: center;
}
.steps .single_step .texts{
	padding: 20px;
}
.steps .single_step .texts p{
	color: var(--darkText);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 0px;
	text-align: center;
}
/* ===== CSS For "How It Works" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "BathTub Refinish Pros" Starts Here ===== */
.restoration_pros_wrap{
	background: var(--baseGray);
	padding: 40px 0px;
}
.restoration_pros{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 30px;
}
.restoration_pros .single_box{
	background: var(--baseLight);
	padding: 20px;
	text-align: center;
	box-shadow: 0px 0px 15px rgba(0,0,0, 0.1);
	border-radius: 5px;
}
.restoration_pros .single_box h4{
	color: var(--darkText);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 15px;	
}
.restoration_pros .single_box p{
	color: var(--darkText);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 15px;
}
.restoration_pros .single_box p:last-child{
	margin-bottom: 0px;
}

.restoration_pros_wrap .bottom_texts p{
	color: var(--baseColor);
	font-family: var(--baseParagraph);
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 0px;
	margin-top: 25px;
	text-align: center;
}
/* ===== CSS For "BathTub Refinish Pros" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Footer Top" Starts Here ===== */
.call_pros_wrap{
	background: url(images/bg1.jpg) no-repeat;
	background-position: center center;
	background-size: cover;
}
.call_pros_wrap .overlay{
	background: rgba(0,0,0, 0.75);
	padding: 40px 0px;
}
.call_pros_wrap .heading{
	margin-bottom: 20px;
}
.call_pros_wrap .heading h3{
	color: var(--lightText);
}

.call_pros_wrap .boxes{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 30px;	
}
.call_pros_wrap .boxes .single_box{
	background: rgba(0,0,0, 0.75);
	padding: 20px;
	text-align: center;
	box-shadow: 0px 0px 15px rgba(0,0,0, 0.1);
	border-radius: 5px;
}
.call_pros_wrap .boxes .single_box p{
	color: var(--lightText);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 10px;	
}
.call_pros_wrap .boxes .single_box p:last-child{
	margin-bottom: 0px;
}
.call_pros_wrap .bottom_texts p{
	color: var(--baseColor);
	font-family: var(--baseParagraph);
	font-weight: 600;
	font-size: 18px;
	max-width: 760px;
	margin: 0px auto;
	margin-top: 25px;
	text-align: center;
}
/* ===== CSS For "Footer Top" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Footer" Starts Here ===== */
.footer{
	background: var(--baseBlack);
	padding: 10px 0px;
}
.footer p{
	color: var(--lightText);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 0px;
	text-align: center;
}
/* ===== CSS For "Footer" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ============================== */
.scrolltotop{
	color: #FFFFFF;
	background: var(--baseColor);
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	cursor:pointer;
	border-radius:2.5px 2.5px 0px 0px;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	transition:all 0.2s linear;
	position:fixed;
	bottom: 0px;
	right:5%;
	z-index:99999999;	
}
.scrolltotop:hover{
	-webkit-box-shadow:0px 0px 10px var(--baseColor);
	-moz-box-shadow:0px 0px 10px var(--baseColor);
	box-shadow:0px 0px 10px var(--baseColor);
}
.scrolltotop img{
	width: 24px;
}
/* ============================== */













