/*
Theme Name: Quick Refund Tax 
Author: the Quick Refund Tax team
Version: 4
Requires at least: 4.4
Requires PHP: 5.2.4
*/


/*
#general
#loader
#social-media 
#header    

*/

:root {
	--blue: #149dcc;
	--pink: #f5325c;
}

.admin-bar .navbar-fixed-top {
    top: 32px;
}

/*---------------------------------------
    #general               
-----------------------------------------*/

* {
	margin: 0;
	padding: 0;
}

body {
	background: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-style: normal;
	font-weight: 400;
}

p {
	color: #000;
	font-size: 16px;
	line-height: 30px;
}

a,
button {
	text-decoration: none !important;
	outline: none;
}

.site-inner { overflow : hidden;  }

/*---- form ----*/

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	height: 45px;
	padding: 15px;
	background: #f5f5f5;
	border: 1px solid #fff;
	border-radius: 0;
	color: #000;
	font-size: 16px;
}

textarea { resize : none; }

a { outline : none; }

textarea {
	height: 100px; 
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
	color: #000;
	font-weight: 300;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
	outline: none;
	border: 1px solid var(--blue);
}

input[type="submit"] {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
	font-size: 16px !important;
	border-radius: 6px;
	padding: 0;
	font-weight: 300;
	transition: 1s;
	border: none;
	width: 215px;
	height: 61px;
	line-height: 61px;
	text-transform: none;
	margin: auto;
	display: inherit;
}

input[type="submit"]:hover {
	background: #000;
}

.main-heading h2 {
	font-size: 18px;
	font-weight: 600;
	color: var(--blue);
	position: relative;
	text-transform: uppercase;
}

.main-heading h2:before {
	position: absolute;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
	top: 20px;
}


/*---------------------------------------
    #loader               
-----------------------------------------*/

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	background: none repeat scroll 0 0 #000;
}

.spinner {
	border: 1px solid transparent;
	border-radius: 3px;
	position: relative;
}

.spinner:before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 45px;
	height: 45px;
	margin-top: -10px;
	margin-left: -10px;
	border-radius: 50%;
	border: 1px solid #000;
	border-top-color: #ffffff;
	animation: spinner .9s linear infinite;
}

@-webkit-@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}


/*---------------------------------------
    #social-media               
-----------------------------------------*/

.social-media ul {
	padding: 0;
	margin: 0;
}

.social-media ul li {
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 45px;
	text-align: center;
	margin-right: 15px;
	border-radius: 100px;
	cursor: pointer;
	background: transparent;
	font-size: 18px;
	border: 2px solid #fff;
}

.social-media ul li a {
	color: #fff;
	border-bottom: none;
	display : block;
}

.social-media ul li:hover a {
	color: #fff;
	opacity: 0.7;
}

.social-media ul li.fb:hover {
	background: #6081c4;
	border: 2px solid #6081c4;
}

.social-media ul li.insta:hover {
	background: linear-gradient(to left, #fcaf45, #c13584, #405de6);
}

.social-media ul li.tw:hover {
	background: #00aced;
	border: 2px solid #00aced;
}

.social-media ul li.ld:hover {
	background: #0077b5;
}

.social-media ul li.utub:hover {
	background: red;
}

.btn {
	background: var(--blue);
	color: #fff;
	box-shadow: 4px 4px 0px #72c4e0;
	width: 125px;
	height: 45px;
	line-height: 45px;
	padding: 0;
	font-size: 16px;
	font-weight: 300;
	border-radius: 8px;
	transition: 1s;
}

.btn:hover,
.btn:focus {
	background: #000;
	box-shadow: none;
	color: #fff;
}


/*---------------------------------------
    #header               
-----------------------------------------*/

.custom-navbar {
	background: #fff;
}

.custom-navbar .nav li a {
	color: #000;
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 40px;
	transition: all 0.4s ease-in-out;
}

.custom-navbar .navbar-brand {
	color: var(--blue);
	font-weight: bold;
	font-size: 30px;
	line-height: 40px;
	text-transform: uppercase;
	height: auto;
}

.custom-navbar .navbar-brand span {
	color: #000;
}

.custom-navbar .nav li a:hover {
	background: transparent;
	color: var(--blue);
}

.custom-navbar .navbar-nav>li>a:hover,
.custom-navbar .navbar-nav>li>a:focus {
	background-color: transparent;
}

.custom-navbar .nav li.active>a,
.custom-navbar .nav li.current-menu-item>a {
	background-color: transparent;
	color: var(--blue);
}

.custom-navbar .navbar-toggle {
	border: none;
	padding-top: 10px;
}

.custom-navbar .navbar-toggle {
	background-color: transparent;
}

.custom-navbar .navbar-toggle .icon-bar {
	background: #000;
	border-color: transparent;
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
	max-height: initial;
	border-top: 1px solid #ccc;
}

@media(min-width:768px) {
	.custom-navbar {
		background: #fff;
		border-bottom: 4px solid var(--blue);
		padding: 14px 0px;
	}
	.navbar-fixed-bottom .navbar-collapse,
	.navbar-fixed-top .navbar-collapse {
		border-top: none;
	}
	.custom-navbar.top-nav-collapse {
		background: #fff;
		padding: 0;
	}
}


/*---------------------------------------
   Slider              
-----------------------------------------*/

#home-slide {  
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	color: #ffffff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100vh;
	text-align: center;
	box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4);
}

#home-slide h1 {
	font-size: 48px;
	text-transform: uppercase;
	font-weight: 900;
	color: var(--blue);
}

#home-slide h3 {
	font-size: 24px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 25px;
}

#home-slide span {
	font-size: 18px;
	font-weight: 400;
	border: 1px dotted;
	color: #fff;
	padding: 2px 8px;
	margin: 15px;
}


/*------ slider img ------*/

#slider .item img {
	width: 100% !important;
}


/*------ owl-buttons ------*/

#slider .owl-controls .owl-buttons {
	margin: 0;
	position: absolute;
	top: 50%;
	width: 100%;
	margin-top: 0px;
}

#slider .owl-controls .owl-buttons .owl-prev,
#slider .owl-controls .owl-buttons .owl-next {
	width: 100px;
	height: 55px;
	text-indent: -999em;
	opacity: 9;
	border-radius: 0;
	margin: 0;
	border: none;
}

#slider .owl-controls .owl-buttons .owl-prev {
	float: left;
	background: url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/left-slide-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
}

#slider .owl-controls .owl-buttons .owl-next {
	float: right;
	background: url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/right-slide-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
}

#slider .owl-controls .owl-buttons .owl-prev:hover {
	background: #000 url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/left-slide-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
}

#slider .owl-controls .owl-buttons .owl-next:hover {
	background: #000 url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/right-slide-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
}


/*------ owl-pagination ------*/

#slider .owl-controls .owl-pagination {
	position: absolute;
	width: 100%;
	bottom: 15px;
	display: none;
}

#slider .owl-controls .owl-page span {
	width: 10px;
	height: 10px;
	background: #fff;
	margin: 35px 14px;
}


/*------ slider-caption ------*/

.banner-main .caption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.banner-main .caption .table1 {
	width: 100%;
	height: 100%;
	display: table;
}

.banner-main .caption .table2 {
	width: 100%;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	background: rgba(36, 24, 46, 0.85);
}

.banner-main .caption .content {
	padding: 0px;
	text-align: center;
	float: right;
	width: 100%;
	margin-top: 50px;
}

.banner-main .caption h1 {
	font-size: 72px;
	color: var(--pink);
	text-transform: none;
	font-weight: 400;
	letter-spacing: 0.10px;
	line-height: 48px;
	font-family: 'Pacifico', cursive;
}

.banner-main .caption p {
	color: #fff;
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	text-shadow: 0 1px #ffffff;
	padding: 0px 155px;
	margin-top: 30px;
}

.banner-main h1 {
	font-size: 72px;
	color: var(--pink);
	text-transform: none;
	font-weight: 400;
	letter-spacing: 0.10px;
	line-height: 48px;
	font-family: 'Pacifico', cursive;
}

.banner-main p {
	color: #fff;
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	text-shadow: 0 1px #ffffff;
	padding: 0px 155px;
	margin-top: 30px;
} 

/*---------------------------------------
  #contactinfo             
-----------------------------------------*/

.contactinfo {
	margin-top: -100px;
	background: #000;
	padding: 25px 50px 30px 50px;
}

.contactinfo h2 {
	text-align: center;
	font-size: 24px;
	color: #fff;
	font-weight: 300;
	margin-top: 0;
	margin-bottom: 25px;
}

.contactinfo .box {
	background: var(--blue);
	text-align: center;
	padding: 18px;
}

.contactinfo .box h3 {
	margin-top: 0;
	color: #fff;
	font-size: 24px;
	font-weight: 300;
}

.contactinfo .box a {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}


/*---------------------------------------
   Content Information              
-----------------------------------------*/

.content-information {
	padding-top: 60px;
	padding-bottom: 60px;
}

.content-information .flag-image {
	    margin-top: -4px;
    max-width: 35px;
    display: inline-block;
}

.content-information .main-heading h2:before {
	content: url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/heading-bottom-border-line-texture1.png);
	left: -3px;
} 

.content-information h3 {
	font-size: 24px;
	color: #000;
	font-weight: 700;
	margin-top: 45px;
	margin-bottom: 18px;
}

.content-information h3 span {
	text-transform: uppercase;
}
.content-information ul{padding-left: 30px;    margin: 0; padding-bottom : 15px; }
.content-information ul li{padding-left: 10px;}
.content-information ul li::marker {
    content: "\f046";
    color: #000;
    font-family: FontAwesome;
    font-size: 15px;
}
.content-information p ,.content-information ul li {
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
	color: #000; 
}

.content-with-image p { padding-right: 85px; }

.content-information .btn {
	margin-top: 50px;
}


/*---------------------------------------
   Services              
-----------------------------------------*/

.services {
	padding-top: 40px;
	padding-bottom: 40px; 
}

.services .main-heading {
	text-align: center;
}

.services .main-heading h2:before {
	content: url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/heading-bottom-border-line-texture2.png);
	left: 0;
	right: 0;
}

.services .main-heading p {
	font-size: 24px;
	font-weight: 700;
	color: #000;
	margin-top: 40px;
}

.services .box {
	margin: 30px 15px;
}

.services .box .img img {
	width: 100%;
}

.services .box .content {
	text-align: center;
	padding: 30px 5px;
	background: #000;
	transition: 0.3s;
}

.services .box .content h4 {
	color: #fff;
	font-size: 21px;
	font-weight: 500;
	margin: 0;
}

.services .box .content h4 a { color: #fff; }

.services .box:hover .content {
	background: var(--blue);
}


/*------ owl-buttons ------*/

#services-slider .owl-controls .owl-buttons {
	margin: 0;
	position: relative;
	top: 50%;
	width: 100%;
}

#services-slider .owl-controls .owl-buttons .owl-prev,
#services-slider .owl-controls .owl-buttons .owl-next {
	width: 57px;
	height: 58px;
	text-indent: -999em;
	opacity: 9;
	border-radius: 0;
	transition: 0.3s;
	border: none;
	margin: 15px;
}

#services-slider .owl-controls .owl-buttons .owl-prev {
	background: #000 url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/left-slide-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
}

#services-slider .owl-controls .owl-buttons .owl-next {
	background: #000 url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/right-slide-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
}

#services-slider .owl-controls .owl-buttons .owl-prev:hover {
	background: var(--blue) url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/left-slide-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
}

#services-slider .owl-controls .owl-buttons .owl-next:hover {
	background: var(--blue) url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/right-slide-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
}


/*---------------------------------------
   Background Banner Css            
-----------------------------------------*/

.background-banner { 
	padding-top: 60px;
	padding-bottom: 60px; 
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.background-banner .main-heading h2:before {
	content: url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/heading-bottom-border-line-texture3.png);
	left: -3px;
}

.background-banner p {
	font-size: 24px;
	font-weight: 700; 
	padding-right: 33%;
	padding-top: 20px;
	padding-bottom: 30px;
}

.background-banner .inline-listing ul { float: left; width: 50%; } 
.background-banner ul { padding-right: 25px; }

.background-banner ul li {
	font-size: 18px;
	line-height: 30px;
	color: #000;
	font-weight: 400;
	padding-left: 10px;
}

.background-banner ul li::marker {
	content: "\f046";
	color: #000;
	font-family: FontAwesome;
	font-size: 15px;
}

.simple-banner { box-shadow: inset 0 0 0 2000px rgb(255 255 255 / 40%); }
.overlay-banner { box-shadow: inset 0 0 0 2000px rgb(20 157 204 / 80%); }
.overlay-banner h2, .overlay-banner p, .overlay-banner ul li, .overlay-banner ul li::marker { color: #fff; }
  

/*---------------------------------------
   #company-details              
-----------------------------------------*/

.two-column-content {
	padding-top: 60px;
	padding-bottom: 30px;
}

.two-column-content .box {
	background: #f2f2f2;
	float: left;
	width: 100%;
}

.two-column-content .box h3 {
	text-transform: uppercase;
	font-weight: 600;
}

.two-column-content .box1 {
	padding: 25px;
	margin-bottom: 20px;
}

.two-column-content .box1 p {
	text-transform: uppercase;	
}

.two-column-content .box1 .content {
	position: relative;
	left: 15px;
	top: 15px;
}

.two-column-content .box1 .icon,
.two-column-content .box1 .content {
	float: left;
}

.two-column-content .box1 .content p {
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
}

.two-column-content .box2 {
	padding: 31px;
}

.two-column-content .box2 .content {
	padding-right: 30px;
}

.two-column-content .box2 .content p {
	font-size: 15px;
	line-height: 24px;
	font-weight: 300;
	margin-bottom: 15px;
}


/*---------------------------------------
   #documents              
-----------------------------------------*/

#extra-pad { padding : 40px 0; }

.documents {
	padding-bottom: 40px;
}

.documents .main-heading {
	text-align: center;
}

.documents .main-heading h2:before {
	content: url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/heading-bottom-border-line-texture2.png);
	left: 0;
	right: 0;
}

.documents .main-heading p {
	font-size: 24px;
	font-weight: 700;
	color: #000;
	margin-top: 40px;
}

.tab {
	text-align: center;
}

.tab .nav-tabs {
	display: inline-block;
	position: relative;
	border-bottom: none;
}

.tab .nav-tabs li {
	margin: 0;
}

.tab .nav-tabs li a {
	display: block;
	padding: 8px 15px;
	background: #fff;
	font-size: 18px;
	font-weight: 400;
	color: #000;
	text-align: center;
	border-radius: 0;
	border: none;
	margin-right: 0;
	overflow: hidden;
	z-index: 0;
	position: relative;
	transition: all 0.3s ease 0s;
	margin: 10px;
}

.tab .nav-tabs li.active a,
.tab .nav-tabs li a:hover,
.tab .nav-tabs li a:focus {
	border: 1px dotted var(--blue);
	color: var(--blue);
	text-decoration: none;
}

.tab .tab-content {
	text-align: left;
	/*padding: 20px;
    margin-top: -5px;
    font-size: 15px;
    color: #757575;
    line-height: 26px;
    border-top: 1px solid #e5e5e5;*/
}

.tab .tab-content h3 {
	font-size: 24px;
	margin-top: 0;
}

.documents .tab .box {
	background: #f5f5f5;
	margin-top: 30px;
}

.documents .tab .box:hover h6 {
	background: var(--blue) !important;
}

.documents .tab #Section1 .box {
	margin: 10px;
}

.documents .tab #Section1 .box .content {
	padding: 15px 30px;
}

.documents .tab #Section1 .box .content p {
	font-weight: 600;
}

.documents .tab #Section1 .box {
	min-height: 500px;
}

.documents .tab #Section1 .box h6 {
	background: #000;
	padding: 15px;
	font-size: 18px;
	color: #fff;
	line-height: 24px;
}

.documents .tab #Section1 .box ul {
	padding-left: 15px;
}

.documents .tab #Section1 .box ul li {
	padding-left: 10px;
	color: #000;
	font-size: 16px;
}

.documents .tab #Section1 .box ul li::marker {
	content: "\f046";
	color: var(--blue);
	font-family: FontAwesome;
	font-size: 15px;
}

.documents .tab #Section2 .box {
	min-height: 250px;
	text-align: center;
}

.documents .tab #Section2 .box h6 {
	background: #000;
	padding: 25px 15px;
	font-size: 24px;
	color: #fff;
	line-height: 24px;
}

.documents .tab #Section2 .box .content {
	padding: 15px 6px;
}

.documents .tab #Section2 .box .content p {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}

.documents .tab #Section3 .box {
	text-align: center;
	padding-top: 20px;
	min-height: 250px;
}

.documents .tab #Section3 .box .icon {
	display: inline-block;
	width: 80px;
	height: 80px;
	background: #000;
	border-radius: 100px;
	color: #fff;
	font-size: 40px;
	line-height: 80px;
	transition: 1s;
}

.documents .tab #Section3 .box:hover .icon {
	background: var(--blue);
}

.documents .tab #Section3 .box .content {
	padding: 30px 15px;
}

.documents .tab #Section3 .box .content p {
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
}


/*------ owl-buttons ------*/

#documents .owl-controls .owl-buttons {
	margin: 0;
	position: absolute;
	top: 50%;
	width: 100%;
}

#documents .owl-controls .owl-buttons .owl-prev,
#documents .owl-controls .owl-buttons .owl-next {
	width: 30px;
	height: 58px;
	text-indent: -999em;
	opacity: 0.1;
	border-radius: 0;
	transition: 0.3s;
	border: none;
}

#documents .owl-controls .owl-buttons .owl-prev {
	background: #000 url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/left-slide-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
	float: left;
	margin-left: -20px;
}

#documents .owl-controls .owl-buttons .owl-next {
	background: #000 url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/right-slide-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
	float: right;
	margin-right: -20px;
}

#documents .owl-controls .owl-buttons .owl-prev:hover {
	background: var(--blue) url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/left-slide-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0.9;
}

#documents .owl-controls .owl-buttons .owl-next:hover {
	background: var(--blue) url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/right-slide-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0.9;
}


/*---------------------------------------
   Connect Us & Contact Info with form         
-----------------------------------------*/

.connect-us {
	padding-top: 50px;
	padding-bottom: 50px;
}

.connect-us h3 {
	font-size: 30px;
	font-weight: 600;
	color: #000;
}

.connect-us p {
	font-size: 16px;
	color: #000;
	margin: 0;
	line-height: 24px;
}

.connect-us a { color: #000; }

.connect-us a:hover {
	color: var(--blue);
}

.connect-us .info-box span {
	font-size: 18px; 
	font-weight: 500;
}

.connect-us .info-box span i { color: #000; }

.connect-us .connect p {
	margin-top: 10px;
}

.connect-us .info-box .hours {
	margin-top: 20px;
	margin-bottom: 20px;
}
 
.connect-us .social-media ul li {
	border: 2px solid #000;
	color : #000;
}

.connect-us .social-media ul li:hover i {
	color: #fff !important;
}

.connect-us input[type="submit"] {
	float: right;
}  

.content-information-form .main-heading {
    text-align: center;
}

.content-information-form .main-heading h2:before {
	content: url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/heading-bottom-border-line-texture2.png);
	left: 0;
	right: 0;
}

.content-information-form .main-heading p {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    color: #414141;
}

.content-information-form .main-heading p span {
    display: inherit;
    font-size: 18px;
    color: #414141;
    font-weight: 500;
}

.contact-form .form-group {
	margin-top: 18px;
	margin-bottom: 5px;
}

/*---------------------------------------
   Accordion Listing              
-----------------------------------------*/

.accordion-listing .main-heading h2 {
	font-size: 24px;
}

.accordion-listing .main-heading h2:before {
	content: url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/heading-bottom-border-line-texture2.png);
	left: -3px;
}

.accordion-listing .panel {
	border: none;
	border-radius: 5px;
	box-shadow: none;
	margin-bottom: 10px;
	background: transparent;
}

.accordion-listing .panel-heading {
	padding: 0;
	border: none;
	border-radius: 5px;
	background: transparent;
	position: relative;
}

.accordion-listing .panel-title a {
	display: block;
	padding: 20px 0px;
	margin: 0;
	background: transparent;
	font-size: 24px;
	font-weight: 300;
	color: #149dcc;
	text-transform: none;
	letter-spacing: 0;
	border: none;
	border-radius: 0px;
	position: relative;
	outline : none;
}

.accordion-listing .panel-title a.collapsed {
	border-bottom: 1px solid #000;
	background: #fff;
	color: #000;
}

.accordion-listing .panel-title a:before,
.accordion-listing .panel-title a.collapsed:before {
	content: "\f107";
	font-family: "FontAwesome";
	width: 30px;
	height: 30px;
	line-height: 27px;
	text-align: center;
	font-size: 25px;
	font-weight: 900;
	color: #149dcc;
	position: absolute;
	top: 15px;
	right: 30px;
	transform: rotate(180deg);
	transition: all .4s cubic-bezier(0.080, 1.090, 0.320, 1.275);
}

.accordion-listing .panel-title a.collapsed:before {
	color: #000;
	transform: rotate(0deg);
}

.accordion-listing .panel-body {
	padding: 20px 0px;
	background: #fff;
	font-size: 15px;
	color: #fff;
	line-height: 28px;
	letter-spacing: 0px;
	border-top: none;
	border-radius: 0;
	border-bottom: 1px solid #000;
}

.accordion-listing .panel-body p,
.accordion-listing .panel-body ul li {
	font-size: 18px;
	font-weight: 300;
	line-height: 24px;
	color: #000;
}

.accordion-listing .panel-body ul {
	padding-left: 30px;
}


/*---------------------------------------
   Footer              
-----------------------------------------*/

.footer {
	background: #000;
	padding-top: 50px;
	margin-top: 50px;
}

.footer .title {
	font-size: 22px;
	color: #fff;
	font-weight: 600;
	position: relative;
	margin-bottom: 40px;
}

.footer .title.red-color { color: red;  }

.footer .title:before {
	position: absolute;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
	top: 20px;
	content: url(https://quickrefund.voihost.com/quickrefundtax/wp-content/uploads/2021/07/heading-bottom-border-line-image.png);
	left: 0;
	right: 0;
}

.footer .info-box .connect p { font-size: 16px; line-height : 23px; margin : 10px 0 0 0; }

.footer .info-box span,
.footer .info-box span a { 
	color: #fff;
	font-weight: 400;
}

.footer .info-box span a {
	text-decoration: underline !important;
	padding-left: 10px;
}

.footer .info-box .hours {
	margin-top: 20px;
	margin-bottom: 20px;
}

.footer .info-box .hours p {
	font-size: 16px;
	color: #fff;
	line-height: 24px;
}

.nav-box ul {}

.nav-box ul li {
	list-style: none;
}

.nav-box ul li a {
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	color: #fff;
}

.footer .copyright {
	text-align: center;
	border-top: 1px solid #5a5a5a;
	margin-top: 40px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.footer .copyright p span {
	padding: 0px 8px;
}

.footer .copyright p,
.footer .copyright p a {
	color: #fff;
	font-size: 14px;
	margin: 0;
	font-weight: 300;
}

.footer .copyright p a:hover {
	color: var(--blue);
}

.footer a:hover,.footer a:hover span {
	color: var(--blue)!important;
}


/* Back top */

.go-top {
	background-color: #000;
	bottom: 100px;
	right: 0px;
	color: #ffffff;
	font-size: 32px;
	display: none;
	position: fixed;
	text-decoration: none;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	transition: all 0.4s ease-in-out;
	border-radius: 0px;
	z-index: 1;
}

.go-top:hover {
	background: var(--blue);
	color: #ffffff;
}

.sidebar-sm {
	position: fixed;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.sidebar-sm a {
	display: block;
	text-align: center;
	transition: all 0.3s ease;
	color: white;
	font-size: 24px;
	margin: 10px 0px;
	padding: 10px 18px;
}

.sidebar-sm .facebook {
	background: #5674b9;
	color: white;
}

.sidebar-sm .twitter {
	background: #00aeef;
	color: white;
}

.banner-in {
	position: relative;
	width: 100%;
	    max-height: 500px;
    overflow: hidden; 
}

.banner-in img {
	display: block;
	width: 100%;
	height: 100%;
}

.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 1;
	transition: .5s ease;
	background: rgba(0, 0, 0, 0.7);
}

.breadcrumb-nav {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	padding: 10px 15px;
	line-height: 45px;
	width: 100%;
	margin-top: 50px;
}

.breadcrumb-nav h1 {
	padding: 0;
	margin: 0;
	font-size: 55px;
	font-weight: bold;
	color: var(--blue);
}

.breadcrumb {
	padding: 0;
	margin-bottom: 0;
	background-color: transparent;
}

.breadcrumb li a {
	color: var(--orange);
	font-size: 18px;
	text-decoration: none;
}

.breadcrumb li {
	color: #fff;
	font-size: 18px;
}