body {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #181A1F;
    overflow-x: hidden;
    background: #f4f4f4;
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
}

.main-header {
    position: absolute;
    left: 0;
    top: 0px;
    right: 0;
    z-index: 999;
    padding: 20px 0;
}

.main-header .header-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    align-items: center;
}

.main-header .header-menu li {
    margin-right: 38px;
}

.main-header .header-menu li:last-child {
    margin-right: 0;
}

.main-header .header-menu li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    padding: 3px;
}

.main-header .header-menu li a:after {
    content: "";
    width: 0;
    height: 4px;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    background: #46b24c;
    transition: width 0.2s ease-in-out;
}

.main-header .header-menu li a:hover:after, .main-header .header-menu li.active a:after {
    width: 100%;
}

.main-header .header-menu li a.contact-cta {
    background: #46b24c;
    border-radius: 5px;
    padding: 10px 25px;
    transition: background 0.2s ease-in-out;
}

.main-header .header-menu li a.contact-cta:after {
    display: none;
}

.main-header .header-menu li a.contact-cta:hover, .main-header .header-menu li.active a.contact-cta {
    background: #006bcc;
}

.main-header .header-info i {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.main-header .header-logo img {
    width: 190px;
    height: auto;
}

@media only screen and (max-width: 767px) {
    .main-header .header-logo img {
        width: 150px;
        height: auto;
    }
}

.offcanvas_menu {
    display: none;
}

@media only screen and (max-width: 991px) {
    .offcanvas_menu {
        display: block;
    }
}

.off_canvars_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    cursor: crosshair;
    background: #232323;
    top: 0;
}

@media only screen and (max-width: 991px) {
    .off_canvars_overlay.active {
        opacity: 0.5;
        visibility: visible;
    }
}

.offcanvas_menu_wrapper {
    width: 290px;
    position: fixed;
    background: #fff;
    z-index: 9999;
    top: 0;
    height: 100vh;
    transition: 0.5s;
    left: 0;
    margin-left: -300px;
    padding: 50px 15px 30px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper.active {
    margin-left: 0;
}

.canvas_close {
    position: absolute;
    top: 10px;
    right: 13px;
}

.canvas_close a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    width: 32px;
    height: 32px;
    display: block;
    text-align: center;
    line-height: 30px;
    border: 1px solid #ededed;
    border-radius: 50%;
    color: #181A1F;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
}

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

.offcanvas_main_menu li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ededed;
    color: #181A1F;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.offcanvas_main_menu li a:hover, .offcanvas_main_menu li.active a {
    color: #006bcc;
}

#main-content {
    padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
    #main-content {
        padding-bottom: 70px;
    }
}

.main-banner, .newlander-container {
    background: url('../images/banner-bg.jpg') no-repeat center;
    background-size: cover;
    padding: 140px 0 180px;
    position: relative;
}


.main-banner:before, .newlander-container:before {
    content: "";
    background: #222A32;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main-banner .container, .newlander-container .container {
    position: relative;
    z-index: 1;
}

.main-banner h1 {
    font-size: 36px;
    text-transform: capitalize;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .main-banner, .newlander-container {
        padding: 100px 0 180px;
    }

    .main-banner h1 {
        font-size: 27px;
        margin-bottom: 20px;
    }
}

.main-banner p {
    color: #FFFFFF;
}

.main-banner img {
    border-radius: 5px;
}

.main-options {
    position: relative;
    z-index: 2;
    margin-top: -100px;
    margin-bottom: 85px;
}

.main-options .options-wrap {
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0px 5px 0px #006bcc;
    padding: 30px 0;
}

.main-options .options-wrap .options-item {
    border-right: 2px solid #D7D7D7;
}

.main-options .options-wrap .options-item:last-child {
    border-right: 0;
}

.main-options .options-wrap .options-item .img-wrap {
    width: 89px;
    height: 89px;
    background: #46b24c;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 40px;
    color: #fff;
}

.main-options .options-wrap .options-item .img-wrap img {
    margin: 0 auto;
}

.main-options .options-wrap .options-item h4 {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #000000;
    margin-bottom: 5px;
}

.main-options .options-wrap .options-item span {
    display: block;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #797979;
}

.main-options .options-wrap .options-item a {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
    color: #46b24c;
    display: flex;
    text-decoration: none;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.main-options .options-wrap .options-item a:after {
    content: "";
    background: url('../images/svg/arrow.svg') no-repeat center;
    width: 18px;
    height: 17px;
    transform: translateX(10px);
    transition: transform 0.2s ease-in-out;
}

.main-options .options-wrap .options-item a:hover:after {
    transform: translateX(20px);
}

@media only screen and (max-width: 991px) {
    .main-options .options-wrap .options-item {
        padding: 0 20px;
    }

    .main-options .options-wrap .options-item h4 {
        font-size: 14px;
    }

    .main-options .options-wrap .options-item span {
        font-size: 12px;
    }

    .main-options .options-wrap .options-item a {
        font-size: 13px;
    }

    .main-options .options-wrap .options-item a:after {
        width: 12px;
        height: 12px;
        background-size: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .main-options .options-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-options .options-wrap .options-item {
        border-right: none;
        border-bottom: 2px solid #D7D7D7;
        margin: 0 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .main-options .options-wrap .options-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 500px) {
    .main-options .options-wrap .options-item {
        margin-left: 0;
        margin-right: 0;
    }
}


h3.section-title {
    font-size: 24px;
    color: #252525;
    margin-bottom: 0;
}

a.with-arrow {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
    color: #46b24c;
    display: inline-flex;
    text-decoration: none;
    align-items: center;
}

a.with-arrow:after {
    content: "";
    background: url('../images/svg/arrow.svg') no-repeat center;
    width: 18px;
    height: 17px;
    margin-left: 10px;
}

@media only screen and (max-width: 767px) {
    h3.section-title {
        font-size: 16px;
    }

    a.with-arrow {
        font-size: 13px;
    }

    a.with-arrow:after {
        width: 12px;
        height: 12px;
        background-size: 100%;
    }
}

a.cta, a.cta-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    padding: 3px;
    background: #46b24c;
    border-radius: 5px;
    padding: 10px 25px;
    transition: background 0.2s ease-in-out;
    display: inline-block;
}

a.cta:hover, a.cta-btn:hover {
    background: #006bcc;
}



.article-item-wrap .article-item .article-content {
    background: #fff;
    height: 100%;
}

.article-item-wrap .article-item .article-content img {
    border-radius: 5px 5px 0 0;
}

.article-item-wrap .article-item .article-content .teaser {
    padding: 30px;
}


@media only screen and (max-width: 500px) {
    .article-item-wrap .article-item .article-content img {
        height: 150px;
        object-fit: cover;
    }

    .article-item-wrap .article-item .article-content .teaser {
        padding: 15px;
    }
}

.inside-articles .article-item-wrap .article-item .article-content img {
    height: 150px;
    object-fit: cover;
}

.article-item-wrap .article-item .article-content .teaser h2 {  
    font-size: 18px;
    line-height: 28px;
    color: #181A1F;
}

.article-item-wrap .article-item .article-content .teaser p {
    font-size: 16px;
    color: #181A1F;
    opacity: 0.8;
}

footer.footer-area {
    background: #19202D;
    color: #A0B4C7;
}

footer.footer-area a {
    color: #A0B4C7;
    text-decoration: underline;
}

footer.footer-area p {
    font-size: 13px;
}

ul.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

ul.footer-links li {
    margin-right: 20px;
    color: #A0B4C7;
}

ul.footer-links li:last-child {
    margin-right: 0;
}

ul.footer-links li a {
    color: #A0B4C7;
    text-decoration: none;
}

ul.footer-links li a:hover {
    text-decoration: underline;
}

footer .copyright {
    border-top: 1px solid #313E56;
}

footer .copyright * {
    font-size: 13px;
    color: #A0B4C7;
}

footer .copyright p {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    ul.footer-links li a {
        font-size: 14px;
    }
}

.newlander-container {
    background-color: white;
    padding: 140px 0 180px !important;
}

.newlander-img {
    width: 100%;
    border-radius: 5px;
    margin-top: 40px;
}

.newlander-container .headline h1 {
    font-size: 36px;
    text-transform: capitalize;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 30px;
}

.newlander-container .headline h2 {
    font-size: 25px;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 30px;
}

.newlander-container .headline {
    color: #fff;
}

.newlander-container .cta-btn {
    margin-top: 10px;
}

.newlander-container .align-items-end {
    align-items: flex-start !important;
}

@media only screen and (max-width: 767px) {
    .newlander-container {
        padding: 100px 0 40px !important;
    }

    .newlander-container .headline h1 {
        font-size: 27px;
        margin-bottom: 20px;
    }

    .newlander-container .headline h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) {

    .newlander-container {
        padding: 140px 0 60px !important;
    }

    .newlander-container .order-md-1 {
        order: 2 !important;
    }

    .newlander-container .order-md-2 {
        order: 1 !important;
    }

    .newlander-img {
        margin-top: 0;
    }

    .newlander-container .cta-btn {
        margin-top: 30px;
    }
}

.segment-inbetween {
    background-color: #46b24c;
    padding: 40px 0;
    text-align: center;
    color: white;
}

.segment-inbetween h3 {
    margin-bottom: 0;
}

.newlander-segment {
    padding: 50px 0 40px 0;
}

/* FORM */
.common-form {
	padding: 30px;
	background-color: white;
	margin-bottom: 60px;
}
.common-form h2{
	font-weight: 700;
	font-size: 36px;
	text-align: center;
}
.common-form h3 {
	font-weight: 500;
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
}
.common-form input[type="text"], 
.common-form input[type="email"],
.common-form select {
	width: 100%;
	height: 50px;
	outline: none;
	margin-bottom: 15px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.15);
}
.common-form textarea {

}
.common-form input[type="submit"]{
	width: 100%;
	height: 50px;
	line-height: 44px;
	outline: none;
	margin-top: 10px;
	text-align: center;
	background-color: #46b24c;
	color: white;
	transition: all 200ms ease-in;
	letter-spacing: 2px;
	border: 3px solid #46b24c;
}

.common-form input[type="submit"]:hover {
	background-color: transparent;
	text-decoration: none;
	color: #46b24c;
}
.common-form label {
	font-size: 12px;
	margin-top: 4px;
}
.common-form textarea {
	width: 100%;
	border: none;
	padding: 20px;
	outline: none;
	border: 1px solid rgba(0,0,0,0.1);
}
.common-form.comment {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.10);
}

.post-form {
	font-size: 11px;
	margin-bottom: 0;
	margin-top: 10px;
	text-align: center;
}

.main-question {
	padding: 20px 20px;
	color: white;
    text-align: center;
}
.main-question a, .side-by-side {
	height: 50px;
	line-height: 50px;
	letter-spacing: 2px;
	padding: 0px 50px;
	display: inline-block;
	margin: 10px;
	color: white;
	background-color: #46b24c;
	font-weight: 500;
	font-size: 20px;
	transition: all 200ms ease-in;
	border-radius: 5px;
    min-width: 230px;
}

@media (max-width: 500px) {
    .main-question a, .side-by-side {
        font-size: 14px;
    }
}

.main-question a:hover, .side-by-side:hover {
	background-color: #006bcc;
	color: white;
	text-decoration: none;
}

.main-question h2
{
	font-size:28px;
}

/** Start Phone field Customization **/

.common-form input[type="tel"], .common-form input[type="number"] {
    width: 100%;
    height: 50px;
    outline: none;
    margin-bottom: 0;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.phone-wrap {
	position: relative;
}

.phone-wrap input {
	margin-bottom: 0;
}

.phone-wrap span.country-code {
	position: absolute;
	top: 0;
	left: 0;
	position: absolute;
    top: 0;
    left: 0;
    color: #797979;
    font-family: Arial, Helvetica, sans-serif;
    padding: 13px 15px;
    border-right: 1px solid #d9d9d9;
}

.phone-wrap span#validation-message {
	color: red;
    font-size: 0.88rem;
    padding: 10px 10px 0;
    display: inline-block;
	opacity: 1;
}

.phone-wrap span#validation-message.hidden {
	opacity: 0;
}

@media only screen and (max-width: 768px) {
	.common-form input[type="tel"], .common-form input[type="number"] {
		height: 40px;
		border-radius: 20px;
	}

	.phone-wrap span.country-code {
		padding: 8px 10px;
	}
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}


/** End Phone field Customization **/

.newlander-segment .common-form {
    margin-bottom: 0px;
}

.newlander-segment-header.light {
    color: white;
}
.newlander-segment-header.light::before {
    background-color: white;
}

.newlander-segment-header::before {
    content: ' ';
    display: block;
    width: 50px;
    height: 5px;
    background-color: black;
    margin: 0 auto;
    margin-bottom: 20px;
}

.newlander-segment-header {
    text-align: center;
    margin-bottom: 30px;
}

.newlander-how-item p {
    color: #000;
}

.text-theme {
    color: #46b24c;
}
.newlander-how-item {
    padding: 30px 20px;
    background-color: white;
    text-align: center;
    height: 100%;
}
.newlander-how-item h3{
    padding: 0 10px;
    color: #46b24c;
    font-weight: 800;
}
.newlander-what-content {
    text-align: center;
}
.newlander-segment-header .site-logo {
    width: 300px;
    max-width: 90%;
    margin-bottom: 20px;
    background: #384760;
    mix-blend-mode: multiply;
    padding: 30px;
}
.hand-money {
    height: 400px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: -40px;
}
.newlander-what-item {
    margin: 20px 0;
    text-align: center;
}
.newlander-what-item img {
    width: 240px;
    height: 240px;
    overflow: hidden;
    border-radius: 120px;
    object-fit: cover;
}
.newlander-feature-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50px;
    border: 4px solid #46b24c;
    display: block;
    margin: 0 auto;
    color: #46b24c;
    font-size: 50px;
    margin-bottom: 20px;
}
.newlander-feature-item {
    text-align: center;
    padding: 20px 0;
}
.cta-btn.small {
    height: 30px;
    line-height: 30px;
    padding: 0px 15px;
}
.plain-lander {
    padding-top: 40px;
}
.common-form .site-logo {
    margin: 0 auto;
    display: block;
    width: 350px;
    max-width: 100%;
    margin-bottom: 20px;
}
.lander-hand-money {
    position: absolute;
    width: 50vw;
    top: 0;
}
.oval {
  width: 220px;
  height: 100px;
    background: white;
    color: black;
    border-radius: 50%;
    text-align: center;
    padding: 15px 10px;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
}
.oval h3 {
    font-weight: 800;
    color: #46b24c;
}
.bg-theme .headline h1, .bg-theme h4 {
    color: white;
}
.newlander-list li {
    font-weight: 600;
    line-height: 40px;
}
#about.newlander-segment {
    background-color: white;
    margin-bottom: -100px;
}

@media only screen and (max-width: 767px) {
    #about.newlander-segment {
        margin-bottom: -70px;
    }
}

@media only screen and (max-width: 992px) {
    .modal-item .cta-btn {
        position: inherit;
        height: auto;
        line-height: normal;
        padding: 15px 10px;
    }


}

@media only screen and (max-width: 768px) {
    .home-article-item {
        min-width: 90%;
    }
    .common-form h2{
        font-size: 26px;
    }
    .common-form h3 {
        font-size: 20px;
    }
    .common-form input[type="text"], .common-form input[type="email"], .common-form input[type="submit"]{
        height: 40px;
        line-height: 40px;
        border-radius: 20px;
    }

}


@media only screen and (max-width: 768px) {
    .benefit-img {
        width: 100%;
        max-width: 100%;
        flex: none;
        -webkit-flex: none;
        max-height: 160px;
    }
}

@media only screen and (max-width: 500px) {
	.common-form input[type="submit"] {
		font-size: 14px !important;
		line-height: 30px !important;
	}
}

.header-expander {
    margin-bottom: 50px;
}

.header-expander.no-margin {
    margin-bottom: 0;
}

.header-expander:before {
    content: "";
    display: block;
    background: #384760;
    z-index: 1;
    position: relative;
    min-height: 130px;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .header-expander:before {
        min-height: 110px;
    }
}

.title-banner {
    margin-bottom: 30px;
}

.title-banner h1 {
    font-size: 36px;
    text-transform: capitalize;
}

.sidebar .sidebar-box {
    border-radius: 10px;
    display: block;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 33px;
}

.sidebar-heading {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

.sidebar-searchbox form {
    width: 100%;
}

.sidebar-searchbox {
    width: 100%;
    height: 60px;
    position: relative;
    border-radius: 10px;
    background: #ffff;
    display: flex;
    margin-bottom: 30px;
}

.sidebar-searchbox input {
    width: 100%;
    height: 100%;
    border: none;
    color: #545454;
    outline: none;
    padding-left: 30px;
    padding-right: 30px;
    background-color: transparent;
}

.sidebar-searchbox input::placeholder {
    color: #545454;
}

.sidebar-searchbox button[type="submit"] {
    background-color: transparent;
    border: none;
    outline: none;
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    padding: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar-searchbox button[type="submit"]:after {
    content: "\f002";
    font-family: fontawesome;
    color: #181A1F;
    font-size: 25px;
}

p.sidebar-text {
    font-size: 14px;
}

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

.sidebar-box ul li {
    border-bottom: 1px solid rgb(225, 224, 224);
    padding: 13px 0;
}

.sidebar-box ul li:last-child {
    border-bottom: 0;
}

.sidebar-box ul li a {
    font-weight: 700;
    font-size: 14px;
    line-height: 25px;
    color: #545454;
    transition: color 0.2s ease-in-out;
}

.sidebar-box ul li a:hover {
    color: #8f8f8f;
}

.sidebar-box .sidebar-tags {
    display: flex;
    flex-wrap: wrap;
}

.sidebar-box ul.category li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-box ul.category li a:after {
    content: "";
    background: url('../images/svg/arrow.svg') no-repeat center;
    width: 19px;
    height: 17px;
    transform: translateX(-15px);
    transition: transform 0.2s ease-in-out;
    margin-left: 40px;
}

.sidebar-box ul.category li a:hover:after {
    transform: translateX(0px);
}


.center-padding {
	display: flex;
    justify-content: center;
	padding-top: 10px;
    padding-bottom: 10px;
}

.single-article {
    border-radius: 10px;
    display: block;
    width: 100%;
    background-color: #fff;
    padding: 38px;
}

.article-single p, .article-single ul, .article-single ol, .article-single {
    font-size: 14px;
    color: #545454;
}


.article-single h1 {
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 30px;
    color: #181A1F;
}

.article-single h2 {
    font-size: 22px;
    margin-bottom: 30px;
    padding-top: 10px;
}

.article-single h3 {
    font-size: 18px;
    margin-bottom: 30px;
    padding-top: 10px;
}

.article-single ul.article-info {
    display: flex;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    list-style: none;
}

.article-single ul.article-info li {
    margin-right: 30px;
}

.article-single ul.article-info li:last-child {
    margin-right: 0;
}

.article-single ul.article-info li a {
    font-weight: 700;
    color: #545454;
}

.breadcrumbs {
    border-radius: 10px;
    display: block;
    width: 100%;
    background-color: #fff;
    padding: 15px 38px;
    margin-bottom: 33px;
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.breadcrumbs ul li {
    font-weight: 700;
    font-size: 13px;
    color: #545454;
    margin-right: 5px;
}

.related-article .article-item-2 {
    height: 100%;
}

.related-article .article-item-2 img {
    border-radius: 5px 5px 0 0;
    height: 150px;
    object-fit: cover;
    max-width: 100%;
}

.related-article .article-item-2 .teaser {
    padding: 30px;
    background: #fff;
}

@media only screen and (max-width: 500px) {
    .related-article .article-item-2 img {
        height: 150px;
        object-fit: cover;
    }

    .related-article .article-item-2 .teaser {
        padding: 15px;
    }
}

.related-article .article-item-2 h2 {  
    font-size: 18px;
    line-height: 28px;
    color: #181A1F;
}

.related-article .article-item-2 p {
    font-size: 16px;
    color: #181A1F;
    opacity: 0.8;
}

.related-article ul.article-info {
    display: none;
}

.content-header.offer-wall-header {
    min-height: 100px;
    padding: 40px 0 20px 0;
}

.content-header.offer-wall-header p {
    color: #181A1F !important; 
}

/* BENEFITS */
.benefits-content {
	padding: 20px 0;
}
.benefit-item {
	background-color: white;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	transition: all 200ms ease-in;
	margin-bottom: 20px;
	margin-top: 10px;
}
.benefit-item:hover {
	text-decoration: none;
	box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.20);
	transform: scale(1.01);
}
.benefits-heading {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
.filter {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding: .5em .7em;
	border: 1px solid #ccc;
	border-radius: 2px;
}

.filter svg {
	color: inherit;
	font-size: 1.2em;
	margin-right: .5em;
	display: block;
	margin: 0 auto;
	width: 1em;
	height: 1em;
	margin-right: 10px;
}
.filter select {
	-webkit-appearance: none;
	border: 0;
	background: transparent;
	font-size: 1em;
	font-family: inherit;
	outline: none;
	color: inherit;
}

.benefit-img {
	background: #b7b7b7;
	max-width: 300px;
	-webkit-flex: 23.809524 1;
	flex: 23.809524 1;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	overflow: hidden;
}
.benefit-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.benefit-content {
	-webkit-flex: 71.428571 1;
	flex: 71.428571 1;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
}
.benefit-info {
	color: #757575;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	padding: 1em 1.4em 1.4em;
	-webkit-flex: 1 1;
	flex: 1 1;
}
.benefit-info h1 {

}
.benefit-info p {

}
.benefit-info .info-type {
	margin-top: 10px;
}
.benefit-info .info-type .type-icon {
	width: 30px;
	height: 30px;
	display: inline-block;
	float: left;
	border-radius: 15px;
}
.benefit-info .info-type .type-icon img{
	width: 16px;
	height: 16px;
	margin: 7px 7px;

}
.benefit-info .info-type .label {
	text-transform: uppercase;
	display: inline-block;
	float: left;
	margin-left: 8px;
	padding-top: 5px;
}
.type-icon {
	background-color: #006bcc;
}
.type-icon.green {
	background-color: #006bcc;
}
.type-icon.blue {
	background-color: #2d84ce;
}
.type-icon.red {
	background-color: #ff4200;
}

.benefit-right {
	background: #46b24c;
	color: #fff;
	cursor: pointer;
	border: 0;
	font-size: 1.5em;
	max-width: 60px;
	padding: .4em;
	-webkit-flex: 4.761905 1;
	flex: 4.761905 1;
	outline: none;
	-webkit-flex-direction: column;
	flex-direction: column;

	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.benefit-right img{
	width: 20px;
	height: 20px;

}

@media only screen and (max-width: 425px) {
	#nitroContainer{
		width:98%!important;
		height:99%!important;
		margin:0 auto!important;
		z-index:99999;
	}

	#nitroContainer iframe {
		padding: 1%;
		width: 99% !important;
		height: 90% !important;
	}

	#nitroContainer span {
		font-size: 19px;
	}

	#closeThis {
		font-size: 12px!important;
	}

	.in-article
	{
		padding:0px;
	}
}

@media only screen and (max-width: 992px) {
	.modal-item .cta-btn {
		position: inherit;
		height: auto;
		line-height: normal;
		padding: 15px 10px;
	}
}

@media only screen and (max-width: 768px) {
	.benefit-img {
		width: 100%;
		max-width: 100%;
		flex: none;
		-webkit-flex: none;
		max-height: 160px;
	}

	.home-article-item {
		min-width: 90%;
	}
	.common-form h2{
		font-size: 26px;
	}
	.common-form h3 {
		font-size: 20px;
	}
	.common-form input[type="text"], .common-form input[type="email"], .common-form input[type="submit"]{
		height: 40px;
		line-height: 40px;
		border-radius: 20px;
	}

	.in-article
	{
		padding:0px;
	}
}

/********** OFFER - GRAPHIC *********/
.main-banner.graphic-1 {
	background: #384760;
	padding-bottom: 60px;
    margin-bottom: -100px;
    padding-top: 130px;
}

@media (max-width: 767px) {
    .main-banner.graphic-1 {
        margin-bottom: -70px;
        padding-top: 110px;
    }
}


.main-banner.graphic-1:before {
    display: none;
}

.main-banner .graphic-bg{
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.4) 100%), url(../images/banner-bg.jpg) repeat 0 0;
    background-repeat: no-repeat;
    background-position: 50% 20%;
    -ms-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    min-height: 300px;
    margin-bottom: -240px;
    padding: 100px 20px 200px 20px;
    text-align: center;
    color: white;
}
.main-banner .graphic-bg h2{
	max-width: 800px;
	margin: 0 auto;
}

.main-banner.graphic-1 .options-container {
	background-color: white;
	max-width: 600px;
	margin: 0 auto;
	color: black;
	padding:  40px;
	box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
	margin-top: 60px;
}
.main-banner.graphic-1 .main-question {
	padding: 40px;
}

@media (max-width: 500px) {
	.main-banner.graphic-1 .main-question {
		padding: 20px;
	}
}

@media (max-width: 320px) {
	.main-banner.graphic-1 .main-question {
		padding: 0px;
	}
}

.main-banner.graphic-1 .main-question h5 {
	margin-bottom: 30px;
}
.main-banner.graphic-1 .main-question a:last-child,
.main-banner.graphic-1 .main-question a.last,
.main-banner.graphic-2 .main-question a:last-child,
.main-banner.graphic-2 .main-question a.last  {
	opacity: 0.6;
}

@media (max-width: 500px) {
	.main-banner .graphic-bg {
		padding: 20px 10px 10px 10px;
		margin-bottom: -170px;
	}

	.main-banner .graphic-bg h2{
		font-size: 1.3rem;
		margin-bottom: 10px;
		margin-top: 10px;
	}

	.main-banner .graphic-bg p {
		line-height: 1.3;
		font-size: 0.9rem;
	}

	.main-banner.graphic-1 .options-container {
		padding: 20px 10px;
	}

	.main-banner.graphic-1 .main-question h5 {
		margin-bottom: 20px;
		font-size: 0.9rem;
	}
}


.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* listicle */

.top-strip {
	background-color: #ffffff; /* Set Default Color here */
}
.top-strip > div{
  color: #000;
}

.listicle-main-header,
.listicle-preview-item-button {
	background-color: #46b24c; /* Set Default Background Color */
}
.header-navigation-listicle{
  background-color: #19202D;
}