/*--------------------------------------------------------------
## Reset CSS
--------------------------------------------------------------*/
* {
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

table td.c2a em {
	font-size: 10px;
	line-height: 12px;
}


.table-striped>tbody>tr>* {
	vertical-align: middle;
}
.table-striped>tbody>tr:nth-child(4n+1)>*,
.table-striped>tbody>tr:nth-child(4n+2)>* {
	--bs-table-bg-type: #fff;
}

.table-striped>tbody>tr:nth-child(4n+3)>*,
.table-striped>tbody>tr:nth-child(4n+4)>* {
	--bs-table-bg-type: var(--bs-table-striped-bg);
}

/*--------------------------------------------------------------
## Basic Styles
--------------------------------------------------------------*/

:root {
    --gold: #d1a545;
    --green: #41A584;
    --darkGreen: #41A584;
    --lightGreen: #95DDC5;
    --blue: #226B72;
    --lightOrange: #FFECDC;
    --black: #333;
    --white: #faf6ee;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.5;
}

body:not(.page-template-landing-page) {
	padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.4;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

@media (max-width: 767px) {
	h1 {
		font-size: 22px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 18px;
	}

	h4,
	h5 {
		font-size: 16px;
	}
}

ul {
    margin-left: 0;
}

ul li {
    position: relative;
    padding-left: 20px
}

ul li:before {
    position: absolute;
    top: 7px;
    left: 0;
    height: 10px;
    width: 10px;
    background-color: var(--green);
    border-radius: 50%;
    content: ''
}

a,
a:visited {
	text-decoration: none;
	color: var(--green);
}

p {
	margin-bottom: 15px;
	text-align: justify;
}

p.sm {
	font-size: 12px;
}

strong {
	font-weight: bolder;
}

.wrapper {
	width: 100%;
	overflow-x: hidden;
}

.btn-cta {
	font-weight: bold;
    border: none;
}

.btn-orange {
    background-color: #ff7f00;
    color: #fff !important;
}

.btn-orange:hover {
    background-color: #e66b00;
    color: #fff;
}

.btn-green {
	background-color: #2B9134;
	color: #fff !important;
}

.btn-green:hover {
    background-color: #0E562E;
    color: #fff;
}

.btn-red {
	background-color: #B83A37;
	color: #fff !important;
}

.btn-red:hover {
	background-color: #D9615E;
    color: #fff;
}

/*--------------------------------------------------------------
## Site Header
--------------------------------------------------------------*/

.site-header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 10px;
	transition: .3s ease;
}

.page-template-landing-page .site-header {
	position: static;
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #F3F5F2;
	padding: 20px 35px;
	border-radius: 8px;
}

.page-template-landing-page .site-header .container {
	justify-content: center;
	margin-bottom: 15px;
}

.site-header .menu {
	display: flex;
}
.site-header .menu li {
	padding-left: 0;
}
.site-header .menu li:before {
	display: none;
}
.site-header .menu li + li {
	margin-left: 20px;
}
.site-header .menu li a {
	color: var(--black);
}
.site-header.scrolled {
	top: 0;
	background-color: var(--lightGreen);
	background-color: #F3F5F2;
	box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    transition: all 0.3s ease-in-out;
}
.site-header.scrolled .logo img {
	width: 200px;
}
.site-header.scrolled .menu {
	font-size: 16px;
}
.site-header .show-nav {
	display: none;
}

@media screen and (max-width: 992px) { 

	body:not(.page-template-landing-page) {
		padding-top: 100px;
	}

	.site-header {
		top: 0;
	}
	.site-header .logo img {
		width: 220px;
	}

	.site-header .show-nav {
		position: relative;
		display: block;
		font-size: 16px;
		padding: 5px 15px;
		border-radius: 5px;
		background-color: var(--green);
		color: #fff;
		z-index: 99;
	}
	.site-header .menu {
		position: fixed;
		font-size: 24px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		top: 0;
		right: -200vw;
		height: 100vh;
		width: 100%;
		background-color: var(--lightGreen);
		text-transform: uppercase;
		transition: .3s ease;
		z-index: 9;
	}
	.site-header .menu.show {
		right: 0;
	}
	.site-header .menu li + li {
		margin-left: 0;margin-top: 15px;
	}
	.site-header.scrolled .show-nav {
		font-size: 14px;
		padding: 3px 15px;
	}

}


/*--------------------------------------------------------------
## Content Box
--------------------------------------------------------------*/

.content-box {
	background-color: var(--lightGreen);
	padding: 15px;
	border-radius: 8px;
}


/*--------------------------------------------------------------
## Site Footer
--------------------------------------------------------------*/

.site-footer {
	font-size: 14px;
	background-color: var(--green);
	padding: 20px 0 0;
}
.site-footer a {
	color: #fff;
}
.site-footer .footer__head,
.site-footer .footer__bottom .container { 
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.site-footer .footer__bottom {
	background-color: var(--black);
	color: #fff;
	padding: 15px 0;
}
.site-footer .footer__bottom p {
	margin-bottom: 0;
}


@media screen and (max-width: 992px) { 

	.site-footer .footer__head,
	.site-footer .footer__bottom .container {
	flex-direction: column;
}

}

/*--------------------------------------------------------------
## Widgets
--------------------------------------------------------------*/
/* Default table */
img.broker-logo {
	display: inline-block;
    background: #333;
    padding: 5px 0;
    border-radius: 8px;
}

/* Rating grid */
.broker-rating-grid .item {
	background: #333;
	border-radius: 12px;
	color: #fff;
	padding: 10px;
    background: var( --green );
    text-align: left;
    display: flex;
    align-items: center;
}

.broker-rating-grid a {
	position: relative;
}

.broker-rating-grid a:first-child .item {
	background: linear-gradient(to bottom, #fdaa63, #B87137);
	color: #111;
	color: #fff;
	text-shadow: 1px 1px 0 #B87137;
}

.broker-rating-grid .item img {
	display: inline-block;
	max-width: 125px;
    margin-right: 10px;
    background: #333;
    padding: 5px 0;
    border-radius: 8px;
}

.broker-rating-grid .item span.rank {
	display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #4998cb;
    border-radius: 5px;
    padding: 6px 5px 2px 5px;
    margin-right: 10px;
    font-weight: bold;
}

.broker-rating-grid a:first-child .item span.rank {
	color: #111;
}

.broker-rating-grid .item span.brand-data {
	text-align: left;
    display: inline-block;
    width: 100%;
    line-height: 1.25
}

.broker-rating-grid .item span.brand-data div.rating {
	font-size: 12px;
	margin: 3px 0;
}

.broker-rating-grid .item span.brand-data div.rating .rating-box {
	background: #fff;
    color: #333;
    padding: 3px 5px 1px 5px;
    border-radius: 12px;
    -webkit-box-shadow: 0 0 1px #777;
    box-shadow: 0 0 1px #777;
    line-height: 1;
    display: inline-block;
}

.broker-rating-grid .item span.brand-data div.rating .rating-box img {
	background: transparent;
	padding: 0;
	margin: 0;
	border-radius: 0;
	margin-top: -3px;
}

.broker-rating-grid .item span.brand-data em {
	position: absolute;
    bottom: 2px;
    font-size: 8px;
    width: 100%;
    left: 25px;
    right: 0;
    visibility: hidden;
    visibility: visible;
}

.broker-rating-grid .item:hover span.brand-data em {
	visibility: visible;
}

.broker-rating-grid a:first-child span.label {
	position: absolute;
	font-size: 12px;
	top: -4px;
	left: 10px;
	padding: 3px 5px;
	line-height: 1;
	font-weight: bold;
	border-radius: 5px;
	letter-spacing: 0.5px;
	box-shadow: 2px 2px 5px #717171;
	background-color: #B87137;
	color: #fff;
}

@media (max-width: 380px) {
	.broker-rating-grid .item img {
		max-width: 80px;
		height: 100%;
	}

	.broker-rating-grid .item span.brand-data div.rating {
		font-size: 10px;
	}
}

/* Detailed grid */
.broker-listing-grid {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.broker-listing-grid .item {
	border: 2px solid #dee2e6;
	overflow: hidden;
}

.broker-listing-grid .item .c2a-box-wrapper {
	background-color: #f2f2f2;
}

.broker-listing-grid .item .c2a-box {
	webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	overflow: hidden;
	margin-right: -15px;
	padding-right: 15px;
	/*border-right: 2px solid #dee2e6;*/
	padding-top: 15px;
	padding-bottom: 15px;
	height: 100%;
}

.broker-listing-grid .item .c2a-box img {
	padding: 10px;
	border-radius: 10px;
	background: #333;
	width: 100%;
}

.broker-listing-grid .item .c2a-box .btn-cta {
	margin-top: 10px;
	width: 100%;
	padding: 10px 0;
}

.broker-listing-grid .item .c2a-box .rating {
	margin-top: 10px;
	font-size: 12px;
}

.broker-listing-grid .item .c2a-box .extra-info {
	margin-top: 10px;
	font-size: 12px;
}

.broker-listing-grid .item .c2a-box .extra-info a {
	color: #0264FA;
}

.broker-listing-grid .item .features-box {
	position: relative;
	background: var( --green );
	overflow: hidden;
}

.broker-listing-grid .item .features-box .brand-name {
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	line-height: 2;
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.broker-listing-grid .item .features-box .brand-name a {
	color: #fff;
	width: 100%;
	width: calc( 100% - 30px );
}

.broker-listing-grid .item .features-box .features-grid {
	border-top: 2px solid #dee2e6;
	background-color: #fff;
}

.broker-listing-grid .item .features-box .features-grid .feature {
	margin: 3px 0;
}

.broker-listing-grid .item .features-box .features-grid .feature .title {
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	border-bottom: 2px solid #ccc;
}

.broker-listing-grid .item .features-box .features-grid .feature .content {
	font-size: 12px;
	min-height: 36px;
	text-align: left;
}

.broker-listing-grid .item .brand-disclaimer {
	background: var( --lightOrange );
	position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 12px;
	font-style: italic;
}

.broker-listing-grid .item .brand-disclaimer::before {
	content: '';
	border-top: 2px solid #dee2e6;
	position: absolute;
	top: 0;
	left: -1px;
	height: 1px;
	width: calc(100% + 2px);
	display: block;
}

.broker-listing-grid .item .brand-description {
	padding: 15px;
}

@media (max-width: 768px) {
	.broker-listing-grid .item .features-box .features-grid .feature .content {
		min-height: auto;
		text-align: center;
		font-size: 14px;
	}
}