/* ---------------------------------------------------------- */
/* -----------------------SITE HEADER------------------------ */
/* ---------------------------------------------------------- */

.site_header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	color: #fff;
	z-index: 99;
}

.site_header .header_brand svg .color_1,
.site_header .header_brand svg .color_2{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.site_header .header_brand svg .color_1{fill: var(--white);}
.site_header .header_brand svg .color_2{fill: var(--white);}

body:not(.home) .site_header .header_brand svg .color_1,
.site_header.open .header_brand svg .color_1{fill: var(--primary);}
body:not(.home) .site_header .header_brand svg .color_2,
.site_header.open .header_brand svg .color_2{fill: var(--secondary);}

body:not(.home) .site_header,
.site_header.open{
	background-color: #fff;
	-webkit-box-shadow: 0 5px 5px 0 rgba(0,0,0,0.05);
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.05);
}

body:not(.home) .site_header .header_top{
	background-color: var(--primary);
	border-bottom-color: transparent
}

.site_header.open .header_top{
	display: none !important;
}
.site_header.open .header_main{
	height: 100px;
}

body:not(.home) .site_header .site_nav .main_menu li:not(.link_primary) a,
.site_header.open .site_nav .main_menu li:not(.link_primary) a{
	color: var(--primary);
}
body:not(.home) .site_header .site_nav .main_menu a::after,
.site_header.open .site_nav .main_menu a::after{
	background-color: var(--primary);
}
.site_header .site_nav .main_menu > li:hover > ul{
	background-color: rgba(0,0,0,0.95);
}
body:not(.home) .site_header .site_nav .main_menu > li:hover > ul,
.site_header.open .site_nav .main_menu > li:hover > ul{
	background-color: #fff;
}

body:not(.home) .site_header .btn-trigger span,
.site_header.open .btn-trigger span{
	background-color: var(--primary);
}

.header_top{
	height: 50px;
	font-size: 14px;
	border-bottom: 1px solid rgba(255,255,255,0.4);
}

.header_top a:hover{
	text-decoration: underline;
}

.header_rss{
	list-style: none;
	margin: 0;
	padding: 0;
}
.header_rss > li:not(:last-child){
	margin-right: 10px;
}

.header_rss svg{
	width: 18px;
	height: 18px;
}

.header_main{
	height: 130px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.site_nav .main_menu{
	list-style: none;
	margin: 0;
	padding: 0;
}

.site_nav .main_menu a{
	position: relative;
	display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 38px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 16px;
	font-weight: 400;
}

.site_nav .main_menu a::after{
	content: '';
	display: block;
	position: absolute;
	background-color: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
	z-index: 10;
}

.site_nav .main_menu > li:not(.link_primary) > a::after{
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 1px;
}

.site_nav .main_menu li:not(.link_primary).current_page_parent > a::after,
.site_nav .main_menu li:not(.link_primary).current-page-ancestor > a::after,
.site_nav .main_menu li:not(.link_primary).current-menu-item > a::after,
.site_nav .main_menu li:not(.link_primary):hover > a::after{
	opacity: 1;
}

.site_nav .main_menu li{
	position: relative;
}
.site_nav .main_menu > li:not(:last-child){
	margin-right: 40px;
}

.site_nav .main_menu .link_primary a{	
	background-color: var(--info);
	border-radius: 50em;
	padding-left: 20px;
	padding-right: 20px;
}

.site_nav .main_menu .link_primary a:hover{
	background-color: var(--secondary);
}

.site_nav .main_menu > li > ul{
	position: absolute;
	list-style: none;
	margin: 0;
	padding: 0 20px 0 20px;
	left: -20px;
	top: 100%;
	max-height: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	overflow: hidden;
}

.site_nav .main_menu > li:hover > ul{
	max-height: 340px;
	padding: 25px 20px 10px 20px;
}

.site_nav .main_menu > li > ul a{
	white-space: nowrap;
}

.site_nav .main_menu > li > ul a:hover{
	text-decoration: underline;
}

/* ---------------------------------------------------------- */
/* ------------------------HOME PANO------------------------- */
/* ---------------------------------------------------------- */

.home_pano{
	height: 80vh;
	min-height: 620px;
	padding-top: 90px;
}

.home_pano .pano_content h1{
	font-weight: 700;
	margin-bottom: 40px;
}

.home_pano .card_cta_cfo{
	max-width: 340px;
	margin-left: auto;
	padding: 30px 20px;
	font-size: 16px;
}

.home_pano .card_cta_cfo .card_icon{
	margin-bottom: 20px;
}

.home_pano .card_cta_cfo h3{
	font-size: 25px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 10px;
}

.pano_cpa-logo{
	max-width: 260px;
}

/* -------------------------------------------------------------- */
/* ------------------------HOME SERVICES------------------------- */
/* -------------------------------------------------------------- */

.home_services{
	-webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.08);
	box-shadow: 0 5px 15px 0 rgba(0,0,0,0.08);	
	margin-top: -80px;
	max-width: 1480px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 40px;
	padding-bottom: 35px;
}

.home_services .card_service{
	width: 14.285%;
}

.home_services .card_service:not(:last-child){
	border-right: 1px solid #D5D9DD;
}

.home_services .card_service:hover{
	box-shadow: none !important;
}

.home_services .card_service > a{
	padding: 25px 30px;
}

.home_services .card_service .card_icon{
	height: 50px;
}

.home_services .card_service .card_content h3{
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
}

/* ---------------------------------------------------------------- */
/* ------------------------HOME INDUSTRIES------------------------- */
/* ---------------------------------------------------------------- */

.home_industries .card_industries .card_icon{
	height: 65px;
}

/* ---------------------------------------------------------------- */
/* ------------------------HOME BOOK BANNER------------------------ */
/* ---------------------------------------------------------------- */

.home_book-consultation{
	background-position: center;
	background-size: cover;
}

/* ---------------------------------------------------------- */
/* ------------------------HOME BLOG------------------------- */
/* ---------------------------------------------------------- */

.home_blog .slick_blog{
	margin-left: -15px;
	margin-right: -15px;
}

.slick_blog .slick-list{
	padding-bottom: 15px;
}

.slick_blog .card_blog{
	margin-left: 15px;
	margin-right: 15px;
}

.card_blog .card_content{
	position: relative;
	margin-top: -100px;
	margin-left: 15px;
	margin-right: 15px;
	padding: 35px 25px 30px 25px;
	font-size: 17px;
	font-weight: 400;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	-webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.08);
	box-shadow: 0 5px 15px 0 rgba(0,0,0,0.08);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.card_blog .card_content .categories{
	font-weight: 300;
	font-size: 15px;
	text-transform: uppercase;
}

.card_blog .card_content .categories a:hover{
	color: var(--primary);
}

.card_blog:hover .card_content{
	-moz-transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.card_blog .card_content h3 a{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.card_blog .card_content h3 a:hover{
	color: var(--primary);
}

/* ------------------------------------------------------------------ */
/* ------------------------HOME TESTIMONIALS------------------------- */
/* ------------------------------------------------------------------ */

.slick_clients,
.slick_testimonials{
	margin-left: -15px;
	margin-right: -15px;
	position: relative;
	margin-bottom: 20px;
}

.slick_clients .slick-arrow,
.slick_testimonials .slick-arrow{
	position: absolute;
	top: calc(50% - 19px);
}
.slick_clients .slick-prev,
.slick_testimonials .slick-prev{
	left: -60px;
}

.slick_clients .slick-next,
.slick_testimonials .slick-next{
	right: -60px;
}

.slick_clients .slick-dots,
.slick_testimonials .slick-dots{
	position: absolute;
	bottom: -40px;
}

.slick_clients .item,
.card_testimonial{
	margin-left: 15px;
	margin-right: 15px;
}

.card_testimonial .card_content > p{
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
}
.card_testimonial .card_content .client{
	font-size: 16px;
	line-height: 1.4;
}

.card_testimonial .card_content .client p{
	margin-bottom: 10px;
}

/* ------------------------------------------------------------- */
/* ------------------------HOME CLIENTS------------------------- */
/* ------------------------------------------------------------- */

.slick_clients .slick-track{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
}

.slick_clients .item{
	height: auto;
}

.slick_clients .item img{
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
}

/* ------------------------------------------------------------- */
/* ------------------------SITE FOOTER-------------------------- */
/* ------------------------------------------------------------- */

.site_footer .footer_brand svg .color_1{fill: var(--white);}
.site_footer .footer_brand svg .color_2{fill: var(--white);}

.site_footer{
	font-size: 16px;
	line-height: 1.6;
	color: #A7ACB2;
}

.footer_brand svg{
	max-width: 118px;
	height: auto;
}

.site_footer h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
}

.site_footer ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.site_footer a:hover{
	color: #fff;
}

.footer_rss svg{
	width: 22px;
	height: 22px;
}

.footer_rss ul li:not(:last-child){
	margin-right: 10px;
}

.footer_bottom{
	border-top: 1px solid #707070;
}

.footer_newsletter form{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	width: 100%;
	background-color: rgba(255,255,255,0.18);
	height: 42px;
	border-radius: 5px;
}

.footer_newsletter form input{
	background-color: transparent;
	border: 0 none;
	padding: 4px 10px;
}

.footer_newsletter form .input{
	width: 100%;
	color: #fff;
	font-size: 14px;
}

.footer_newsletter form .input::placeholder{
	color: #ccc;
	font-weight: 300;
}

.footer_newsletter form .submit{
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23cccccc' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
	background-size: 22px auto;
	font-size: 0;
	color: transparent;
	width: 40px;
	height: 42px;
}

.footer_cpa-logo{
	max-width: 240px;
}

/* ------------------------------------------------------ */
/* ------------------------PAGE-------------------------- */
/* ------------------------------------------------------ */

body:not(.home) main{
	margin-top: 180px;
}

.page_header{
	min-height: 450px;
}

.breadcrumbs{
	font-size: 16px;
	text-transform: uppercase;
}

.breadcrumbs > *{
	vertical-align: middle;
}

.breadcrumbs a{
	opacity: 0.5;
}

.breadcrumbs a:hover{
	opacity: 1;
}

.breadcrumbs span.separator{
	display: inline-block;
	background-image: url("data:image/svg+xml;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-position: center;
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
	background-size: cover;
	margin-left: 4px;
	margin-right: 4px;
	opacity: 0.5;
}

/* ---------------------------------------------------------- */
/* ------------------------ABOUT US-------------------------- */
/* ---------------------------------------------------------- */

.page_faqs{
	position: relative;
}

.page_faqs .imagen{
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
}

#accordionFaq .card-header{
	border-bottom: 1px solid #989898;
}

#accordionFaq .card-header h4{
	font-size: 20px;
}

#accordionFaq button{
	padding: 16px 0 16px 32px;
}
#accordionFaq button::before{
	content: '';
	display: block;
	background-image: url("data:image/svg+xml;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-size: cover;
	width: 12px;
	height: 12px;
	position: absolute;
	left: 0;
	top: calc(50% - 6px);
}

#accordionFaq .card-body{
	padding-top: 30px;
	padding-bottom: 30px;
}

/* ---------------------------------------------------------- */
/* ------------------------SERVICES-------------------------- */
/* ---------------------------------------------------------- */

.checklist{
	list-style: none;
	padding: 0;
}

.checklist>li{
	padding-left: 1.3em;
	background-image: url("data:image/svg+xml;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23004593' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3e%3c/svg%3e");
	background-position: left top 0.32em;
	background-size: 0.7em;
	background-repeat: no-repeat;
}

.checklist>li:not(:last-child){
	margin-bottom: 0.3em;
}

.query_page-services .card_service{
	padding: 35px 30px;
	-webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.08);
	box-shadow: 0 5px 15px 0 rgba(0,0,0,0.08);
}

.query_page-services .card_service .card_icon{
	height: 50px;
}

.query_page-services .card_service .card_icon img{
	max-height: 100%;
	width: auto;
}

.query_page-services .card_service .card_content h3{
	text-transform: uppercase;
}

.services_form{
	position: relative;
}

.services_form .imagen{
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
}

.form_get-a-quote{
	position: sticky;
	top: 320px;
	padding: 60px;
	margin-top: -430px;
	-webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.08);
	box-shadow: 0 5px 15px 0 rgba(0,0,0,0.08);
	margin-bottom: 120px;
}

/* --------------------------------------------------------- */
/* -----------------------CONTACT US------------------------ */
/* --------------------------------------------------------- */

.mapa iframe{
	display: block;
	position: relative;
	border: 0 none;
}

.slick_offices{
	margin-top: -100px;
	margin-left: -15px;
	margin-right: -15px;
}

.slick_offices .slick-list{
	padding-bottom: 15px;
}

.slick_offices .card_office{
	margin-left: 15px;
	margin-right: 15px;
	padding: 30px 40px;
	-webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.08);
	box-shadow: 0 5px 15px 0 rgba(0,0,0,0.08);
}
.card_office .card_content{
	font-weight: 400;
}

.card_office .card_content .office_data:not(:last-child){
	margin-bottom: 15px;
}

.card_office .card_content .office_data svg{
	color: var(--primary);
	transform: translateY(0.3em);
}

.office_data svg ~ *{
	max-width: calc(100% - 16px - 0.5rem);
}

/* ----------------------------------------------------------- */
/* -----------------------ARCHIVE BLOG------------------------ */
/* ----------------------------------------------------------- */

.card_blog.card_featured .card_content{
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}

aside.archive_filters{
	position: sticky;
	top: 150px;
}

.archive_filters h3{
	border-bottom: 1px solid var(--secondary);
	padding-bottom: 12px;
}

div[class*=filter]{
	font-size: 18px;
	font-weight: 400;
}

div[class*=filter]:not(:last-child){
	margin-bottom: 60px;
}

div[class*=filter] ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

div[class*=filter] ul li{
	padding: 8px 0;
}

div[class*=filter] ul li:not(:last-child){
	border-bottom: 1px solid var(--light);
}

div[class*=filter] ul li a{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

div[class*=filter] ul li a:hover{
	color: var(--primary);
}

.filter_tags li{
	margin: 0 10px 16px 0;
	padding: 0 !important;
	border: 0 none !important;
}

.filter_tags a{
	display: block;
	padding: 7px 16px;
	border-radius: 8px;
	background-color: #E8E8E8;
	font-size: 14px;
}

.filter_tags a:hover{
	background-color: var(--primary);
	color: #fff !important;
}

.archive_filters button.close{
	position: absolute;
	top: 15px;
	right: 15px;
	width: 48px;
	height: 48px;
}

/* ---------------------------------------------------------------- */
/* ------------------------SINGLE ARTICLE-------------------------- */
/* ---------------------------------------------------------------- */

.single_content img{
	max-width: 100%;
	height: auto;
}

.single_content .meta{
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
}

.wp-block-image{
	margin-bottom: 40px;
}

.single_content .meta a{
	text-decoration: underline;
}

.single_content .meta a:not(:last-child){
	margin-right: 10px;
}

/* ---------------------------------------------------------------- */
/* ------------------------MODAL GETAQUOTE------------------------- */
/* ---------------------------------------------------------------- */

#modalGetAQuote .modal-content{
	padding: 40px 30px;
	font-size: 16px;
	font-weight: 400;
}