/*
Theme Name: PolicyVault Wordpress
Author: Blueprint Interactive
Author URI: http://blueprintinteractive.com
Description: Blueprint Interactive Custom Theme.
Version: 1.0
License: GNU General Public License

-------------------------------------------------------------- */
/* Reset
-------------------------------------------------------------- */
* {
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
}

a {
    transition: all ease-in-out 0.4s;
}

/* ::selection {
    background-color: #0C2D4D;
    color: #FFFFFF;
}

::-moz-selection {
    background-color: #0C2D4D;
    color: #FFFFFF;
} */

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

html {
    overflow-y: scroll;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    display: block !important;
    width: 100%;
}

/* WAYPOINTS */
.fade-in-from-left {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -o-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fade-in-from-left.animated {
    animation-name: fade-from-left;
    animation-duration: 0.5s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@keyframes fade-from-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-15px);
        -moz-transform: translateX(-15px);
        -o-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
        transform: translateX(-15px);
    }

    45% {
        opacity: 0.5;
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fade-in-from-bottom {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -o-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
}

.fade-in-from-bottom.animated {
    animation-name: fade-from-bottom;
    animation-duration: 1s;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@keyframes fade-from-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -o-transform: translateY(15px);
        -ms-transform: translateY(15px);
        transform: translateY(15px);
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fade-in-from-right {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -o-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
}

.fade-in-from-right.animated {
    animation-name: fade-from-right;
    animation-duration: 0.5s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@keyframes fade-from-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
        -moz-transform: translateX(40px);
        -o-transform: translateX(40px);
        -ms-transform: translateX(40px);
        transform: translateX(40px);
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

/* HEADER ----------------------------------------------------------- */
.main-header {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    font-size: 0;
    padding: 20px 7%;
    position: relative;
}

.header-logo {
    display: inline-block;
    height: 30px;
    text-decoration: none;
    width: 180px;
    vertical-align: middle;
}

.header-logo.mobile {
    display: none;
}

.header-logo svg {
    height: auto;
    transition: all ease-in-out 0.4s;
    width: 100%;
}

.header-logo:hover svg {
    /*transform: scale(.95);*/
}

.menu-wrapper {
    display: inline-block;
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: calc(100% - 380px);
}

/* .main-header ul {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    width: calc(100% - 380px);
} */

.main-header ul li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

.main-header ul li.menu-item-has-children {
    position: relative;
}

.main-header ul li.menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    z-index: 20;
    width: 250px;
    left: -85%;
    text-align: left;
    /* top: 25px; */
    padding: 30px 30px 20px;
}

.main-header ul li.menu-item-has-children:hover .sub-menu {
    display: block;
}

.main-header ul li.menu-item-has-children .sub-menu li {
    margin: 10px 0;
}

.main-header ul li a {
    color: #4A5568;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    text-decoration: none;
}

.main-header ul li a:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -5px;
    height: 5px;
    width: 100%;
    border-bottom: solid 3px #004E98;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out;
}

.main-header ul li:hover a:after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.main-header ul li:hover .sub-menu a:after {
    transform: none;
    border-bottom: none;
}

.main-header ul li.menu-item-has-children .sub-menu li:hover a:after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.main-header ul li a:hover,
.main-header ul li.current-menu-item a {
    color: #004E98;
}

.sign-in-wrapper {
    display: inline-block;
    margin-left: 12px;
    /* display: none; */
}

.sign-in-wrapper .sign-in-btn {
    color: #4A5568;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    vertical-align: middle;
}

.sign-in-wrapper .sign-in-btn:hover {
    color: #012D57;
}

.sign-in-wrapper .signup-btn {
    background-color: #004E98;
    border-radius: 5px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-left: 15px;
    padding: 10px 20px;
    text-decoration: none;
    vertical-align: middle;
}

.sign-in-wrapper .signup-btn:hover {
    background-color: #012D57;
}

.signed-user-wrapper {
    /* display: inline-block; */
    float: right;
    display: none;
}

.logged-in .sign-in-wrapper {
    display: none;
}

.logged-in .signed-user-wrapper {
    display: inline-block;
}

.signed-user-wrapper a {
    text-decoration: none;
}

.signed-user-wrapper .library-btn {
    display: inline-block;
    height: 35px;
    width: 35px;
    vertical-align: middle;
    margin-right: 10px;
    position: relative;
}

.signed-user-wrapper .library-btn span {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: -35px;
    left: 0;
    margin-left: -46px;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.signed-user-wrapper .library-btn span::after {
    content: "";
    position: absolute;
    /* top: 100%; */
    top: -5px;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
    /* border-color: transparent transparent #555 transparent; */
}

.signed-user-wrapper .library-btn:hover span {
    visibility: visible;
    opacity: 1;
}

.signed-user-wrapper .library-btn svg {
    height: auto;
    width: 100%;
}

.signed-user-wrapper .library-btn svg .hover {
    transition: all ease-in-out 0.4s;
}

.signed-user-wrapper .library-btn:hover svg .hover {
    fill: #012D57;
}

.signed-user-wrapper .notification-btn {
    display: inline-block;
    height: 24px;
    margin: 0 25px;
    width: 20px;
    vertical-align: middle;
}

.signed-user-wrapper .notification-btn svg {
    height: auto;
    width: 100%;
}

.signed-user-wrapper .notification-btn svg .hover {
    transition: all ease-in-out 0.4s;
}

.signed-user-wrapper .notification-btn:hover svg .hover {
    fill: #012D57;
}

.signed-user-wrapper .avatar-wrapper {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.signed-user-wrapper .avatar-wrapper:hover .avatar-inner {
    display: block;
    /* opacity: 1; */
}

.signed-user-wrapper .avatar-wrapper .avatar-img {
    background-color: #000000;
    border: 2px solid #707070;
    border-radius: 50%;
    display: inline-block;
    height: 32px;
    object-fit: cover;
    vertical-align: middle;
    width: 32px;
}

.signin-arrow {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    transition: ease-in all 0.2s;
}

.signed-user-wrapper .avatar-wrapper:hover .avatar-img {
    border-color: #24B57E;
}

.signed-user-wrapper .avatar-wrapper:hover .signin-arrow {
    transform: rotate(180deg);
}

.signed-user-wrapper .avatar-inner {
    background-color: #FFFFFF;
    display: none;
    padding: 20px 30px;
    position: absolute;
    right: 0;
    transition: ease-in all 0.2s;
    width: 220px;
    z-index: 10;
    /* transition: opacity 0.2s ease-out;
    opacity: 0; */
}

.signed-user-wrapper .avatar-inner .avatar-a {
    color: #4A5568;
    display: block;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 0 0;
}

.signed-user-wrapper .avatar-inner .avatar-a:hover {
    color: #012D57;
}

.signed-user-wrapper .avatar-inner .avatar-a svg {
    display: inline-block;
    height: 14px;
    margin-right: 8px;
    width: 14px;
}

.signed-user-wrapper .avatar-inner .avatar-a.logout {
    color: #FF543E;
}

.signed-user-wrapper .avatar-inner .avatar-a.logout:hover {
    color: #012D57;
}

.signed-user-wrapper .avatar-inner .avatar-a:hover svg .hover {
    fill: #012D57;
    height: 16px;
    width: 16px;
}

.signed-user-wrapper .avatar-inner .avatar-a:hover svg .stroke {
    stroke: #012D57;
}

/* MOBILE NAV */
.container {
    cursor: pointer;
    display: block;
    float: right;
    position: relative;
    z-index: 10;

    display: none;
}

.header-nav {
    display: none;
    margin-top: 65px;
}

.bar1,
.bar2,
.bar3 {
    background-color: #012D57;
    height: 5px;
    margin: 6px 0;
    transition: all 0.4s;
    width: 35px;
    z-index: 10;
}

.change .bar1 {
    -webkit-transform: rotate(45deg) translate(8px, 8px);
    transform: rotate(45deg) translate(8px, 8px);
    background-color: #004E98;
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(-45deg) translate(8px, -7px);
    transform: rotate(-45deg) translate(8px, -7px);
    background-color: #004E98;
}

.mobile-nav {
    background-color: #FFFFFF;
    display: block;
    display: none;
    position: absolute;
    right: 0;
    padding: 60px 30px 20px;
    text-align: center;
    width: 300px;
    z-index: 90;
}

.main-header .mobile-nav ul li {
    display: block;
    margin: 10px auto;
}

.main-header .mobile-nav ul li a {
    font-size: 16px;
}

/* FOOTER ----------------------------------------------------------- */
.main-footer {
    background-color: #004E98;
    font-size: 0;
    padding: 50px 5%;
}

.main-footer p {
    font-family: 'Open Sans', sans-serif;
}

.main-footer ul {
    list-style: none;
}

.main-footer ul li {
    margin: 10px auto;
}

.main-footer ul li a {
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all ease-in-out 0.4s;
}

.main-footer ul li a:hover {
    color: #C0C0C0;
}

.main-footer .footer-inner {
    display: inline-block;
    padding: 20px;
    vertical-align: top;
}

.main-footer .footer-inner.one {
    width: 25%;
}

.main-footer .footer-inner.two {
    width: 16.6%;
    min-width: 179px;
}

.main-footer .footer-social-div {
    margin-top: 100px;
    margin-top: 27px;
}

.main-footer .footer-social-div a {
    background-color: #FFFFFF;
    border-radius: 5px;
    display: inline-block;
    padding: 5px;
    text-decoration: none;
    vertical-align: middle;
    box-shadow: 0 0 20px rgba(231, 234, 239, 0.5);
}

.main-footer .footer-social-div a:hover {
    background-color: #012D57;
}

.main-footer .footer-social-div a:nth-of-type(2) {
    /* margin: 10px 5%; */
    margin: 10px 26px;
}

.main-footer .footer-social-div a svg {
    height: 30px;
    width: 30px;
}

.main-footer .footer-inner h4 {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 21px;
    margin-bottom: 30px;
}

.main-footer .footer-inner p {
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 20px auto;
}

.main-footer .footer-inner p a {
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.main-footer .footer-inner p a:hover {
    color: #C0C0C0;
}

.main-footer .footer-logo {
    display: inline-block;
    height: 28px;
    text-decoration: none;
    width: 170px;
}

.main-footer .footer-logo svg {
    height: auto;
    width: 100%;
}

.footer-bottom {
    margin: 30px auto 10px;
    display: flex;
    justify-content: space-between;
    /* width: 95%; */
    flex-wrap: wrap;
    align-items: end;

    margin: 30px auto 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    flex-wrap: wrap;
    align-items: end;
}

.footer-bottom p {
    color: #FFFFFF;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-right: 20px;
}

.footer-bottom p a {
    color: #FFFFFF;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    text-decoration: none;
}

.footer-bottom p a:hover {
    color: #C0C0C0;
}

p.ngo-p a img {
    height: auto;
    width: 185px;
    max-width: 100%;
}

/* .footer-bottom p.copyright-p {
    float: right;
} */

.signup-footer {
    background-color: #D9EDFF;
    position: relative;
    padding: 75px 10% 100px;
}

.max-width {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.signup-footer h5 {
    color: #4A5568;
    font-size: 16px;
    font-weight: 400;
}

.signup-footer h4 {
    color: #012D57;
    font-size: 35px;
    font-weight: 600;
    margin: 20px 0;
    max-width: 600px;
}

.signup-footer .signup-btn {
    background-color: #004E98;
    border-radius: 5px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 40px;
    position: absolute;
    right: 10%;
    text-decoration: none;
    transform: translateY(-50%);
    top: 50%;
    vertical-align: middle;
}

.signup-footer .signup-btn:hover {
    background-color: #0C2D4D;
}

.updates-footer {
    background-color: #F4F7FA;
    padding: 75px 10% 100px;
    font-size: 0;
}

.updates-footer .footer-left {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}

.updates-footer h5 {
    color: #012D57;
    font-size: 16px;
    margin-bottom: 20px;
}

.updates-footer h4 {
    color: #012D57;
    font-size: 35px;
    font-weight: 600;
}

.footer-form-wrapper {
    font-size: 0;
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    text-align: right;
}

.footer-form-wrapper input[type='text'] {
    font-size: 14px;
    padding: 8px 15px;
    vertical-align: middle;
    border: none;
}

.footer-form-wrapper select {
    font-size: 14px;
    padding: 7px 12px;
    vertical-align: middle;
    border-color: #C0C0C0;
}

.footer-form-wrapper input[type='submit'] {
    background-color: #004E98;
    border: none;
    color: #FFFFFF;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 30px;
    text-decoration: none;
    vertical-align: middle;
    transition: all ease-in-out 0.4s;
}

.footer-form-wrapper input[type='submit']:hover {
    background-color: #0C2D4D;
}

/* MAIN CONTENT ----------------------------------------------------- */
.main-content {
    background-color: #F4F7FA;
    min-height: 500px;
}

/* HOMEPAGE ----------------------------------------------------------- */
.homepage-hero {
    position: relative;
}

.homepage-hero-inner-blue {
    bottom: 0;
    background-color: #0C2D4D;
    left: 0;
    right: 0;
    position: absolute;
    opacity: .7;
    top: 0;
}

.homepage-hero-inner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    max-width: 90%;
}

.homepage-hero-inner-content h1 {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 600;
    width: 830px;
    max-width: 100%;
}

.homepage-hero-inner-content form {
    background-color: #FFFFFF;
    border-radius: 4px;
    font-size: 0;
    max-width: 650px;
    margin: 20px auto;
    text-align: left;
    padding: 10px 20px;
    max-width: 100%;
}

.homepage-hero-inner-content form input[type='text'] {
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
    width: 80%;
    vertical-align: middle;
}

.homepage-hero-inner-content form input[type='submit'] {
    background-color: #146ABC;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all ease-in-out 0.4s;
    width: 20%;
    vertical-align: middle;

    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.homepage-hero-inner-content form input[type='submit']:hover {
    background-color: #0C2D4D;
    cursor: pointer;
}

.featured-boxes {
    background-color: #F4F7FA;
    font-size: 0;
    padding: 50px 7%;

    display: table;
    border-spacing: 20px;
    text-align: center;
    margin: 0 auto;
}

.featured-div {
    background-color: #FFFFFF;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
    padding: 30px;
    text-align: center;
    vertical-align: top;
    width: 31.3%;
    max-width: 375px;
    display: table-cell;
}

.featured-div a {
    text-decoration: none;
}

.featured-div:nth-of-type(2) {
    margin: 0 3%;
}

.featured-div img {
    display: block;
    height: auto;
    margin: 0 auto;
    max-height: 54px;
    object-fit: contain;
    transition: all ease-in-out 0.4s;
    width: 54px;
}

.featured-div:hover img {
    transform: scale(1.1);
}

.featured-div h3 {
    color: #004E98;
    font-size: 24px;
    font-weight: 500;
    margin: 30px auto 20px;
    text-align: center;
}

.featured-div p {
    color: #4A5568;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.cta-wrapper {
    background-color: #F4F7FA;
    font-size: 0;
    padding: 50px 9% 100px;
    max-width: 1350px;
    margin: 0 auto;
}

.cta-inner {
    display: inline-block;
    vertical-align: top;
}

.cta-inner.left {
    width: 65%;
}

.cta-inner.right {
    width: 35%;
}

.cta-inner.right img {
    height: auto;
    width: 100%;
}

.cta-inner h4 {
    color: #192C42;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.1;
    max-width: 520px;
    margin-bottom: 30px;
}

.cta-inner .cta-btn {
    border: 2px solid #004E98;
    border-radius: 5px;
    color: #004E98;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 20px 9px;
    text-decoration: none;
}

.cta-inner .cta-btn svg {
    margin-bottom: 2px;
    margin-left: 10px;
    vertical-align: middle;
}

.slick-dots li button:before {
    font-size: 10px;
}

.cta-inner .cta-btn:hover {
    background-color: #004E98;
    color: #FFFFFF;
}

.cta-inner .cta-btn:hover svg #Icon_ionic-ios-arrow-dropright-circle {
    transition: ease-in-out all 0.4s;
}

.cta-inner .cta-btn:hover svg #Icon_ionic-ios-arrow-dropright-circle {
    fill: #FFFFFF;
}

.what-we-do-wrapper {
    background-color: #FFFFFF;
    font-size: 0;
    padding: 100px 9%
}

.what-we-do-inner {
    display: inline-block;
    vertical-align: top;
}

.what-we-do-inner.left {
    margin-right: 5%;
    width: 45%;
}

.what-we-do-inner.left img {
    max-width: 100%;
}

.what-we-do-inner.left h3 {
    color: #192C42;
    font-size: 32px;
    font-weight: 500;
}

.what-we-do-inner.left svg {
    height: auto;
    width: 100%;
}

.what-we-do-inner.right {
    width: 50%;
}

.what-we-do-inner.right .about-box {
    display: inline-block;
    padding: 0 30px 30px;
    vertical-align: top;
    width: 50%;
}

.what-we-do-inner.right .about-box h3 {
    color: #004E98;
    font-size: 25px;
    font-weight: 500;
    margin: 20px 0;
}

.what-we-do-inner.right .about-box img {
    height: auto;
    width: 64px;
}

.what-we-do-inner.right .about-box p {
    color: #4A5568;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.search-section-wrapper {
    font-size: 0;
    overflow: hidden;
    position: relative;
    padding: 100px 5% 160px;
}

.search-section-wrapper .background-texture {
    height: 80%;
    position: absolute;
    right: -5%;
    top: 10%;
}

.search-section-inner {
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.search-section-inner.left {
    float: left;
    padding-right: 5%;
    position: relative;

    /* top: 50%;
    transform: translateY(50%); */
}

.search-section-inner.right {
    float: right;
    padding-right: 5%;
    position: relative;
    z-index: 1;
}

.read-more-btn.center {
    border: 1px solid #004E98;
    border-radius: 4px;
    color: #004E98;
    display: block;
    margin: 10px auto;
    text-decoration: none;
    padding: 10px 20px;
    width: 125px;
}

.read-more-btn.center:hover {
    background-color: #004E98;
    color: #FFFFFF;
}

.search-section-image-wrapper {
    position: relative;
    max-width: 599px;
}

.search-section-inner .background-left {
    position: absolute;
    right: 5%;
}

.search-section-inner .background-right {
    position: absolute;
    top: 50%;
}

.search-section-image-wrapper .search-image {
    box-shadow: 0 3px 30px rgba(101, 131, 148, 0.7);
    height: 230px;
    object-fit: cover;
    position: relative;
    width: 300px;
}

.search-section-image-wrapper .search-image:first-of-type {
    left: 7%;
    top: -38px;
    z-index: 5;
}

.search-section-image-wrapper .search-image:nth-of-type(2) {
    right: 0;
    position: absolute;
    transform: translateY(-50%);
    top: 100px;
    z-index: 3;
}

/* 
.search-section-image-wrapper .search-image:last-of-type {
    left: 13%;
    top: 30px;
    z-index: 1;
} */

.search-section-inner h4 {
    color: #012D57;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.search-terms-wrapper a {
    background-color: #F4F7FA;
    border: 1px solid #C0C0C0;
    border-radius: 3px;
    color: #444444;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin: 0 10px 20px 0;
    padding: 5px 10px;
    text-decoration: none;
}

.search-terms-wrapper a:hover {
    background-color: #444444;
    color: #FFFFFF;
}

.from-our-clients-wrapper {
    padding: 50px 5%;
    background-color: #FFFFFF;
}

.from-our-clients-wrapper h3 {
    color: #004E98;
    font-weight: 500;
    font-size: 40px;
    text-align: center;
    margin-bottom: 45px;
}

.from-our-clients-inner {
    border-spacing: 20px;
    /* display: table; */
    /* position: relative; */
    /* padding: 20px; */
}

.from-our-clients-inner .slick-dots li {
    margin: 0;
}

.from-our-clients-inner .quote-circle {
    right: 0;
    position: absolute;
    top: -30px;
}

.from-our-clients-div {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
    /* display: table-cell; */
    display: inline-block;
    padding: 50px 30px;
    position: relative;
    width: 30%;
    /* margin: 0 30px; */
    vertical-align: top;
}

.from-our-clients-inner .slick-slide {
    padding: 20px;
}

.from-our-clients-inner .slick-prev:before,
.from-our-clients-inner .slick-next:before {
    color: #012D57;
}

.from-our-clients-inner .slick-next {
    right: -8px;
}

.from-our-clients-inner .slick-prev {
    left: -8px;
}

.from-our-clients-inner .quote-p {
    color: #292929;
    font-family: 'Open Sans', sans-serif;
}

.clients-profile-wrapper {
    font-size: 0;
    margin-top: 30px;
}

.clients-profile-wrapper img {
    border-radius: 50%;
    display: inline-block;
    height: 48px;
    object-fit: cover;
    width: 48px;
}

.clients-profile-inner {
    display: inline-block;
    /* padding-left: 20px;
    width: calc(100% - 48px); */
}

.clients-profile-wrapper h5 {
    color: #292929;
    font-size: 14px;
    font-weight: 500;
}

.clients-profile-wrapper p {
    color: #707070;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
}

.whats-new-wrapper {
    background-color: #FFFFFF;
    padding: 50px 5%;
}

.whats-new-wrapper h3 {
    color: #292929;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.whats-new-inner-wrap {
    display: table;
    border-spacing: 30px;
    font-size: 0;
    margin: 0 auto;
}

.whats-new-card {
    display: table-cell;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
    max-width: 350px;
    vertical-align: top;
    width: 33%;
    font-size: 0;
}

.whats-new-card.hover img {
    transform: scale(1.1);
}

.whats-new-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.whats-new-card-img-wrap a {
    text-decoration: none;
}

.whats-new-card-img-wrap img {
    height: 225px;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
    width: 100%;
}

.whats-new-card-img-wrap a:hover img {
    transform: scale(1.1);
}

.whats-new-card-img-wrap .tag-wrapper {
    border: 1px solid #F9F9F9;
    border-radius: 2px;
    bottom: 20px;
    color: #F9F9F9;
    font-size: 11px;
    position: absolute;
    right: 20px;
    padding: 5px 10px;
    text-transform: uppercase;
}

.whats-new-card-inner {
    padding: 30px;
}

.whats-new-card-inner h4 {
    color: #4A5568;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.whats-new-card-inner h4 a {
    /* color: #4A5568; */
    color: #004E98;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.whats-new-card-inner h4 a:hover {
    color: #0C2D4D;
}

.whats-new-card-inner p {
    color: #4A5568;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 20px;
}

.whats-new-card-inner p .bookmark-icon {
    vertical-align: middle;
    text-decoration: none;
    float: right;
    position: relative;
}

.whats-new-card-inner p .bookmark-icon .trash-can {
    height: 20px;
}

.whats-new-card-inner p .bookmark-icon span {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.whats-new-card-inner p .bookmark-icon span::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.whats-new-card-inner p .bookmark-icon:hover span {
    visibility: visible;
    opacity: 1;
}

.whats-new-card-inner p .bookmark-icon:hover #Icon_feather-bookmark,
.whats-new-card-inner p .bookmark-icon.clicked #Icon_feather-bookmark,
.whats-new-card-inner p .bookmark-icon.active #Icon_feather-bookmark {
    fill: #444444;
}

.whats-new-card-inner .read-more-btn {
    color: #004E98;
    font-size: 14px;
    text-decoration: none;
}

.whats-new-card-inner .read-more-btn:hover {
    color: #0C2D4D;
}

.partners-wrapper {
    padding: 50px 7%;
    font-size: 0;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.partners-wrapper h3 {
    color: #292929;
    font-size: 35px;
    font-weight: 500;
    text-align: left;
}

.partner-object {
    width: 16.6%;
    display: inline-block;
    vertical-align: middle;
    margin: 30px auto;
}

.partner-object img,
.partner-object svg {
    height: auto;
    filter: grayscale(1);
    width: 73px;
    transition: all ease-in-out 0.4s;
}

.partner-object a:hover img {
    transform: scale(1.1);
    filter: none;
}

/* ABOUT ----------------------------------------------------------- */
.homepage-hero-inner-blue.about {
    background-color: #000000;
}

.about-page-wrapper {
    background-color: #FFFFFF;
}

.our-story-wrapper {
    text-align: center;
    padding: 50px 5%;
}

.our-story-wrapper .max-width {
    max-width: 900px;
}

.our-story-wrapper h3 {
    color: #012D57;
    font-size: 36px;
    font-weight: 500;
}

.our-story-wrapper p {
    color: #4A5568;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    margin: 30px 0;
}

.how-it-works-wrapper {
    position: relative;
    padding: 40px 5%;
}

.how-it-works-wrapper h2 {
    color: #012D57;
    font-size: 35px;
}

.how-it-works-background {
    background-color: #D9EDFF;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
}

.how-it-works-inner {
    display: table;
    border-spacing: 30px;
    position: relative;
    max-width: 1300px;
    text-align: center;
    margin: 0 auto;
}

.how-it-works-card a {
    text-decoration: none;
}

.how-it-works-card {
    transition: all ease-in-out 0.4s;
}

.how-it-works-card:hover {
    background-color: #f4f4f4;
}

.leadership-wrapper {
    padding: 50px 5%;
}

.leadership-wrapper h3 {
    color: #012D57;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
}

.leadership-wrapper p {
    color: #4A5568;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.team-member-wrapper {
    /* display: table;
    border-spacing: 30px; */
    font-size: 0;
}

.team-member-card {
    /* display: table-cell; */
    display: inline-block;
    vertical-align: top;
    width: 21%;
    margin: 50px 2%;
    transition: all ease-in-out 0.4s;
}

.team-member-card img {
    border: 1px solid #012D57;
    padding: 5px;
    border-radius: 5px;
    filter: grayscale(1);
    width: 100%;
    height: 255px;
    transition: all ease-in-out 0.4s;
    object-fit: cover;
}

.team-member-card h4 {
    color: #012D57;
    font-weight: 500;
    font-size: 22px;
    margin: 20px 0 10px;
    transition: all ease-in-out 0.4s;
}

.team-member-card p {
    color: #4A5568;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.team-member-card a {
    text-decoration: none;
}

.team-member-card:hover img {
    filter: none;
}

.team-member-card:hover h4 {
    color: #146ABC;
}

.show-more-btn {
    background-color: #004E98;
    border-radius: 4px;
    color: #FFFFFF;
    display: block;
    font-size: 14px;
    max-width: 100%;
    margin: 50px auto;
    padding: 15px 20px;
    text-decoration: none;
    text-align: center;
    width: 260px;
}

.show-more-btn svg {
    margin-left: 20px;
}

.show-more-btn:hover {
    background-color: #0C2D4D;
}

/* SOLUTIONS -------------------------------------------------------- */
.solutions-page {
    background-color: #FFFFFF;
}

.homepage-hero.solutions {
    background-image: url('../PolicyVault/images/blue-background.svg');
    background-size: cover;
    min-height: 400px;
    position: relative;
}

.all-plans-btn {
    background-color: #FFFFFF;
    border-radius: 4px;
    display: block;
    color: #004E98;
    font-size: 16px;
    max-width: 100%;
    margin: 50px auto;
    padding: 15px 20px;
    text-decoration: none;
    text-align: center;
    width: 220px;
}

.all-plans-btn:hover {
    background-color: #0C2D4D;
    color: #FFFFFF;
}

.solutions-wrapper {
    padding: 75px 5%;
}

.solutions-wrapper h3 {
    color: #012D57;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 30px;
}

.solutions-inner {
    font-size: 0;
}

.solutions-div {
    display: inline-block;
    width: 30%;
    margin: 0 1.5% 50px;
    vertical-align: top;
}

.solutions-div img {
    display: block;
    height: auto;
    width: 43px;
}

.solutions-div h4 {
    color: #313131;
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0;
}

.solutions-div p {
    color: #757575;
    font-size: 14px;
    line-height: 1.8;
}

.pricing-wrapper {
    position: relative;
    text-align: center;
}

.pricing-wrapper .pricing-inner {
    position: relative;
    z-index: 2;
    padding: 50px 5%;
}

.pricing-wrapper .blue-background-div {
    background-image: url('./images/blue-background.svg');
    width: 100%;
    height: 300px;
    background-size: cover;
    position: absolute;
    z-index: 1;
}

.pricing-wrapper h2 {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.pricing-wrapper h3 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 30px;
}

.button-wrapper-plans {
    font-size: 0;
    margin: 20px auto 35px;
}

.button-wrapper-plans .plan-a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #B5B5B5;
    border-radius: 4px;
    color: #707070;
}

.pricing-inner .create-an-account-inner-right.choose-plan {
    margin: auto;
}

#monthly {
    display: none;
}

.button-wrapper-plans .plan-a:first-of-type {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.button-wrapper-plans .plan-a:last-of-type {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.button-wrapper-plans .plan-a.current,
.button-wrapper-plans .plan-a:hover {
    background-color: #FFFFFF;
    color: #004E98;
}

.facts-wrapper {
    padding: 50px 7%;
}

.facts-wrapper h3 {
    color: #012D57;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
}

.faq-card {
    font-size: 0;
    margin: 30px 0;
    position: relative;
}

.question-div {
    border: 1px solid #C4CDD580;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
    padding: 20px;
    width: 100%;
}

.question-p {
    color: #012D57;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    width: 120px;
    vertical-align: top;
}

.question-question {
    color: #444444;
    display: inline-block;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    width: calc(90% - 120px);
    vertical-align: top;
}

.question-question p {
    color: #444444;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

.faq-card .expand-svg {
    position: absolute;
    right: 5%;
    top: 26px;
}

.faq-card .expand-svg:hover {
    cursor: pointer;
}

.answer-wrap {
    background-color: #F4F7FA;
    border: 1px solid #C4CDD580;
    border-top: none;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
    padding: 20px;
    width: 100%;
    display: none;
    position: relative;
}

.answer-wrap svg.up-arrow {
    transform: rotate(269deg);
    bottom: 1px;
    right: 0;
    position: absolute;
}

.answer-wrap svg.up-arrow:hover {
    cursor: pointer;
}

/* PRICING PAGE ------------------------------------------------------ */
.homepage-hero.solutions.pricing {
    min-height: 300px;
}

.homepage-hero.solutions.pricing p {
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 20px;
}

.cat-help-wrapper {
    font-size: 0;
    padding: 75px 5% 0;
    text-align: center;
}

.cat-help-wrapper h2 {
    color: #012D57;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}

.category-div {
    border: 2px solid #004E98;
    border-radius: 4px;
    display: inline-block;
    margin: 20px 3% 20px 0;
    /* min-width: 280px; */
    padding: 20px;
    transition: all ease-in-out 0.4s;
    vertical-align: middle;
    width: 22%;
}

.category-div:last-of-type {
    margin-right: 0;
}

.category-div a {
    text-decoration: none;
}

.category-div svg {
    display: block;
    margin: 0 auto 20px;
    max-height: 50px;
}

.category-div svg path {
    transition: all ease-in-out 0.4s;
}

.category-div h3 {
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    transition: all ease-in-out 0.4s;
}

.category-div:hover {
    background-color: #004E98;
}

.category-div:hover h3 {
    color: #FFFFFF;
}

.category-div:hover svg path {
    fill: #FFFFFF;
}

.facts-wrapper.pricing h3 {
    text-align: center;
}

.facts-wrapper.policy,
.facts-wrapper.product,
.facts-wrapper.search {
    display: none;
}

.category-div.active {
    background-color: #C3E2FF;
}

/* BASIC PAGE ------------------------------------------------------- */
.basic-page-wrapper {
    background-color: #FFFFFF;
}

.main-content-inner {
    margin: 0 auto;
    max-width: 1100px;
    padding: 50px 5%;
    width: 90%;
    min-height: 70vh;
}

.main-content-inner .inner-h1 {
    color: #292929;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
}

.main-content-inner h2 {
    color: #004E98;
    font-size: 35px;
    font-weight: 600;
    margin: 20px 0;
}

.main-content-inner h3 {
    color: #004E98;
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0;
}

.main-content-inner h4 {
    color: #004E98;
    font-size: 25px;
    font-weight: 600;
    margin: 20px 0;
    line-height: 1;
}

.main-content-inner h5 {
    color: #004E98;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0;
}

.main-content-inner h6 {
    color: #004E98;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
}

.main-content-inner p {
    color: #292929;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    margin: 20px 0;
}

.main-content-inner p a {
    color: #004E98;
    text-decoration: none;
}

.main-content-inner p a:hover {
    color: #0C2D4D;
}

.main-content-inner ul,
.main-content-inner ol {
    margin: 20px 20px 20px 5%;
}

.main-content-inner ul li,
.main-content-inner ol li {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    margin: 10px 0;
}

.main-content-inner ul li a,
.main-content-inner ol li a {
    color: #004E98;
    text-decoration: none;
}

.main-content-inner ul li a:hover,
.main-content-inner ol li a:hover {
    color: #192C42;
}

.single-post .main-content-inner {
    padding: 0;
    margin: 50px auto 0;
    max-width: 1200px;
    width: 80%;
}


/* SINGLE STAFF PAGE ------------------------------------------------- */
.staff-page {
    margin: 0 auto;
    max-width: 1200px;
}

/* .staff-page .staff-header {
    text-align: center;
} */

.staff-page .staff-header h1 {
    color: #012D57;
    font-weight: 500;
    font-size: 35px;
}

.staff-page .staff-header h2 {
    color: #313131;
    font-weight: 500;
    font-size: 25px;
    margin-top: 8px;
}

.staff-page .staff-headshot-inner {
    border: 1px solid #012D57;
    border-radius: 5px;
    display: inline-block;
    /* filter: grayscale(1); */
    height: auto;
    margin-top: 27px;
    max-width: 100%;
    object-fit: cover;
    padding: 5px;
    transition: all ease-in-out 0.4s;
    vertical-align: top;
    width: 330px;
}

.staff-bio-wrapper {
    display: inline-block;
    padding: 0 0 0 5%;
    width: calc(100% - 335px);
}

/* JOIN PAGE -------------------------------------------------------- */
.homepage-hero-inner-blue.join {
    background-color: #000000;
}

.join-page-wrapper {
    background-color: #FFFFFF;
    padding: 45px 0;
}

.homepage-hero-inner-content.join p {
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    margin: 15px 0;
}

.homepage-hero-inner-content.join .blue-btn {
    background-color: #004E98;
    border-radius: 4px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 14px;
    padding: 15px 20px;
    text-decoration: none;
    text-transform: uppercase;
}

.homepage-hero-inner-content.join .blue-btn:hover {
    background-color: #0C2D4D;
}

.why-work-with-us {
    max-width: 1300px;
    margin: 45px auto;
    width: 80%;
}

.join-page-wrapper h2 {
    color: #292929;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.why-work-us-wrapper {
    font-size: 0;
}

.why-work-us-box {
    display: inline-block;
    padding: 20px;
    width: 33%;
    vertical-align: top;
}

.why-work-us-box img {
    height: 35px;
    object-fit: contain;
    width: 35px;
}

.why-work-us-box h3 {
    color: #292929;
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
}

.why-work-us-box p {
    color: #292929;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.photo-section-wrapper {
    padding: 0 7%;
    max-width: 1300px;
    margin: 0 auto;
}

.photo-section-inner {
    text-align: center;
}

.photo-section-wrapper img {
    width: 30%;
    margin: 30px 1.5% 0;
    vertical-align: middle;
    height: 300px;
    object-fit: cover;
}

.jobs-wrapper {
    font-size: 0;
    max-width: 1100px;
    margin: 75px auto;
    width: 90%;
}

.jobs-wrapper h2 {
    color: #292929;
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
}

.no-jobs {
    color: #292929;
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    margin: 70px auto;
}

.jobs-inner {
    display: inline-block;
    vertical-align: top;
}

.jobs-inner {
    width: 30%;
}

.jobs-inner.right {
    float: right;
    width: 65%;
}

.jobs-inner select {
    margin: 0 0 20px;
    padding: 10px 20px;
    width: 100%;
}

.jobs-section-wrapper {
    margin-top: 20px;
}

.jobs-section-wrapper p {
    border-radius: 4px;
    color: #292929;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0;
    padding: 10px 20px;
    transition: all ease-in-out 0.4s;
    text-transform: uppercase;
}

.jobs-section-wrapper p:hover,
.jobs-section-wrapper p.active {
    background-color: #004E98;
    color: #FFFFFF;
}

.job-card {
    background-color: #FFFFFF;
    border: 1px solid #F9F9F9;
    border-radius: 4px;
    padding: 30px 60px 30px 40px;
    position: relative;
    margin: 0 0 40px;
    box-shadow: 0 3px 6px rgba(225, 225, 225, 0.16);
}

.job-card:hover h2 {
    color: #146ABC;
}

.job-card a {
    text-decoration: none;
}

.job-card .span-arrow {
    position: absolute;
    right: 37px;
    top: 50%;
    transform: translateY(-50%);
}

.job-card .span-arrow svg {
    height: auto;
}

.job-card h2 {
    font-size: 16px;
}

.job-card h2 a {
    color: #292929;
    text-decoration: none;
}

.job-card:hover h2 a {
    color: #012D57;
}

.job-card p {
    color: #292929;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    margin-top: 10px;
}

/* GALLERY PAGE ----------------------------------------------------- */
.small-blue-hero {
    background-image: url('../PolicyVault/images/blue-background.svg');
    background-size: cover;
    position: relative;
    padding: 60px 7% 40px;
}

.small-blue-hero .press-nav {
    display: inline-block;
    list-style: none;
}

.small-blue-hero .press-nav li {
    display: inline-block;
    margin-right: 20px;
}

.small-blue-hero .press-nav li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
}

.small-blue-hero .press-nav li a:hover,
.small-blue-hero .press-nav li.current_page_item a {
    /* text-shadow:0px 0px 1px #FFFFFF; */
    font-weight: 500;
}

.subscribe-btn {
    float: right;
    display: inline-block;
    color: #0C2D4D;
    background-color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 20px;
}

.subscribe-btn:hover {
    background-color: #146ABC;
    color: #FFFFFF;
}

.gallery-page-wrapper {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.gallery-page-wrapper h2 {
    color: #012D57;
    font-size: 35px;
    font-weight: 500;
    margin-left: 1.5%;
}

.video-section-wrapper,
.gallery-photo-section-wrapper {
    width: 90%;
    margin: 0 auto;
    max-width: 1400px;
}

.video-card {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    margin: 20px 1.5%;
}

.video-card h3 {
    color: #4A5568;
    font-weight: 500;
    font-size: 20px;
    margin: 15px 0;
}

.video-wrapper-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.photo-div {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    margin: 20px 1.5%;
    position: relative;
}

.photo-div img {
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.photo-div img:hover {
    opacity: 0.7;
}

.photo-div a {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-decoration: none;
}

.photo-div a svg {
    width: 30px;
    height: auto;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* IN THE NEWS PAGE ----------------------------------------------------------- */

.page-template-page-gallery .signup-footer {
    display: none;
}

.main-content.gallery {
    background-color: #FFFFFF;
}

.page-template-page-in_news .signup-footer {
    display: none;
}

.new-listing-page-wrapper {
    font-size: 0;
    max-width: 1100px;
    margin: 50px auto;
    width: 90%;
}

.news-listing-column {
    display: inline-block;
    padding: 0 30px;
    vertical-align: top;
    width: 50%;
}

.news-listing-column h2 {
    color: #0C2D4D;
    font-size: 35px;
    font-weight: 500;
}

.single-post-card {
    box-shadow: 0 0 6px #B2B2B2;
    margin: 30px 0;
    padding: 30px;
    position: relative;
}

/* .single-post-card-inner {

} */

.single-post-card .publication-name {
    color: #4A5568;
    display: inline-block;
    font-size: 14px;
    vertical-align: top;
    width: 50%;
}

.single-post-card .display-date {
    color: #4A5568;
    display: inline-block;
    font-size: 14px;
    text-align: right;
    vertical-align: top;
    width: 50%;
}

.single-post-card .display-date.full {
    text-align: left;
    width: 100%;
}

.single-post-card h4 {
    font-size: 20px;
    margin: 20px 0;
}

.single-post-card h4 a {
    color: #444444;
    text-decoration: none;
}

.single-post-card h4 a:hover {
    color: #0B254B;
}

.single-post-card .read-more-btn {
    border: 1px solid #004E98;
    border-radius: 3px;
    color: #004E98;
    display: inline-block;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 15px;
}

.single-post-card .read-more-btn:hover {
    background-color: #004E98;
    color: #FFFFFF;
}

.pagination-wrapper {
    text-align: center;
}

.pagination-wrapper a {
    border-radius: 2px;
    color: #4A5568;
    display: inline-block;
    font-size: 20px;
    margin: 0 5px;
    padding: 2px 11px;
    text-decoration: none;
}

.pagination-wrapper a.current,
.pagination-wrapper a:hover {
    background-color: #004E98;
    color: #FFFFFF;
}

/* advocacy page ----------------------------------------------------------- */
.page-template-page-advocacy .updates-footer,
.page-template-page-advocacy .signup-footer {
    display: none;
}

.updates-footer #country {
    display: block;
    margin: 0 0 20px auto;
    width: 300px;
    max-width: 100%;
}

.updates-footer .footer-form-wrapper input[type='text'] {
    display: block;
    margin: 15px 0 15px auto;
    width: 300px;
    max-width: 100%;
}

.updates-footer .footer-form-wrapper input[type='submit'] {
    width: 300px;
    max-width: 100%;
}

.page-template-page-advocacy .main-content {
    background-color: #FFFFFF;
}

.partners-wrapper {
    background-color: #F4F7FA;
}

.advocacy-article {
    margin: 70px auto;
    max-width: 1100px;
    width: 90%;
}

.advocacy-nav {
    border-bottom: 3px solid #C0C0C0;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 30px;
    font-size: 0;
}

.advocacy-nav li {
    display: inline-block;
    border-bottom: 3px solid transparent;
    padding: 20px 20px;
    margin-bottom: -3px;
    font-size: 16px;
    font-weight: 500;
}

.advocacy-nav li a {
    color: #C0C0C0;
    text-decoration: none;
}

.advocacy-nav li:hover,
.advocacy-nav li.current-menu-item {
    border-bottom: 3px solid #004E98;
}

.advocacy-nav li:hover a,
.advocacy-nav li.current-menu-item a {
    color: #012D57;
}

.advocacy-article.full-tile h3 {
    color: #292929;
    font-size: 21px;
    font-weight: 400;
}

.advocacy-article.full-tile h2 {
    color: #004E98;
    font-size: 32px;
    font-weight: 600;
    display: inline-block;
    width: 50%;
    vertical-align: top;
}

.advocacy-article.full-tile .tile-inner {
    display: inline-block;
    width: 49%;
    vertical-align: top;
}

.advocacy-article.center-title {
    margin: 60px auto;
}

.advocacy-article.center-title h2 {
    color: #292929;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
}

.advocacy-article .campaign-btn {
    border: 1px solid #004E98;
    padding: 10px 25px;
    text-decoration: none;
    display: inline-block;
    color: #004E98;
    font-size: 14px;
    border-radius: 5px;
    margin-top: 45px;
}

.advocacy-article .campaign-btn:hover {
    background-color: #004E98;
    color: #FFFFFF;
}

.advocacy-article.campaign-wrapper .campaign-inner {
    width: 49%;
    display: inline-block;
}

.advocacy-article.campaign-wrapper .campaign-inner h2 {
    color: #292929;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 20px;
}

.advocacy-article p {
    color: #292929;
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 20px;
}

.advocacy-article.campaign-wrapper .campaign-inner.Right {
    padding: 0 5% 0 0;
}

.advocacy-article.campaign-wrapper .campaign-inner.Left {
    padding: 0 0 0 5%;
}

.advocacy-article.campaign-wrapper img {
    width: 49%;
    display: inline-block;
    vertical-align: top;
}

.advocacy-article.campaign-wrapper img.Right {
    float: right;
    height: auto;
}

.advocacy-article.campaign-wrapper img.Left {
    float: left;
    height: auto;
}

.advocacy-article.full-image img {
    width: 800px;
    height: auto;
    max-width: 100%;
    margin: 50px auto;
    display: block;
}

.advocacy-article.text-only {
    text-align: center;
    max-width: 800px;
}

/* SINGLE JOB ----------------------------------------------------------- */
.single-job-page-wrapper {
    background-color: #FFFFFF;
}

.single-job-page-wrapper .inner {
    width: 700px;
    max-width: 90%;
    margin: 75px auto;
}

.single-job-inner {
    margin-top: 50px;
}

p.job-location-p {
    color: #757575;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}

.job-type-span {
    margin-right: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.single-job-hero h1 {
    color: #292929;
    font-size: 35px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 45px;
    width: calc(100% - 165px);
    vertical-align: top;
}

.filled-blue-btn {
    background-color: #004E98;
    border-radius: 4px;
    border: 3px solid #004E98;
    color: #FFFFFF;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 35px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    max-width: 90%;
}

.filled-blue-btn:hover {
    background-color: #FFFFFF;
    color: #004E98;
}

.single-job-inner h2,
.single-job-inner h3,
.single-job-inner h4,
.single-job-inner h5,
.single-job-inner h6 {
    color: #292929;
    font-weight: 700;
    margin: 50px 0 30px;
}

.single-job-inner p {
    color: #292929;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    margin: 20px 0;
}

.single-job-inner ul,
.single-job-inner ol {
    margin: 20px 20px 20px 7%;
}

.single-job-inner ul li,
.single-job-inner ol li {
    color: #292929;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    margin: 10px 0;
}

.job-app-wrapper {
    background-color: #F5F5F5;
}

.job-app-inner {
    max-width: 90%;
    margin: auto;
    padding: 75px 0;
    width: 700px;
}

.job-app-inner .country-wrap {
    display: block;
}

.job-app-inner form label {
    color: #292929;
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0;
}

.job-app-inner form input {
    border: 1px solid #C0C0C0;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    margin-top: 7px;
    padding: 10px 20px;
    width: 100%;
}

.job-app-inner .country-wrap {
    font-size: 0;
}

.iti {
    max-width: 100%;
}

.job-app-inner .country-wrap .iti.iti--allow-dropdown {
    width: 30%;
}

.job-app-inner .country-wrap .iti.iti--allow-dropdown input {
    padding: 10px 15px;
}

.job-app-inner .country-wrap input#phone {
    width: 70%;
}

.job-app-inner input[type="file"] {
    background-color: #FFFFFF;
}

.job-app-inner .country-wrap span {
    font-size: 14px;
    display: block;
}

.job-app-inner form textarea {
    border: 1px solid #C0C0C0;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    margin-top: 7px;
    padding: 10px 20px;
    width: 100%;
    resize: none;
}

.job-app-inner form input[type="submit"] {
    width: auto;
    background-color: #004E98;
    border-radius: 4px;
    border: 3px solid #004E98;
    color: #FFFFFF;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 35px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    max-width: 90%;
    display: block;
    margin: 30px auto;
}

.job-app-inner form input[type="submit"]:hover {
    background-color: transparent;
    color: #004E98;
}

/* Single Country ---------------------------------------------------- */
.basic-page-wrapper.single-country-wrapper {
    background-color: #FFFFFF;
}

.main-content-inner.single-country {}

.single-press_release .main-content-inner {
    padding-top: 0;
}

.single-country-top {
    font-size: 0;
}

.single-country-top-inner {
    display: inline-block;
    vertical-align: top;
}

.single-country-top-inner.left {
    width: 45%;
}

.single-country-top-inner svg {
    height: auto;
    width: 100%;
    max-width: 400px;
}

.single-country-top-inner.right {
    width: 55%;
}

.single-country-top-inner.right p span {
    font-weight: bold;
}

.country-despcrip p {}

.single-country-middle {
    font-size: 0;
    border-top: 1px solid #C0C0C0;
}

.single-country-middle-nav {
    font-size: 0;
    max-width: 1000px;
    margin: 0 auto;
    width: 90%;
}

.single-country-middle-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #C0C0C0;
    display: inline-block;
    text-decoration: none;
    padding: 20px 15px;
    border-bottom: 3px solid transparent;
}

.single-country-middle-nav a:hover,
.single-country-middle-nav a.active {
    color: #004E98;
    border-bottom: 3px solid #004E98;
}

.single-country-bottom {
    background-color: #F9F9F9;
    padding: 50px 0;
}

.single-country-bottom.insights {
    display: none;
}

.single-country-bottom input {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 40px;
    /* background-image: url('./images/search-icon.svg'), url('./images/filter-icon.svg');
    background-repeat: no-repeat;
    background-position: left 10px center, right 10px center; */
}

.single-country-bottom-inner {
    margin: 50px auto;
    width: 90%;
    max-width: 1000px;
}

.single-country-bottom-inner.policy {}

.single-country-bottom-inner.policy form {
    background-color: #FFFFFF;
    border-radius: 4px;
    font-size: 0;
    max-width: 650px;
    margin: 20px auto;
    text-align: left;
    padding: 10px 20px;
    max-width: 100%;
    box-shadow: 0 3px 15px rgb(0 0 0 / 16%);
    position: relative;
    z-index: 100;
}

.insights-landing {
    position: relative;
    z-index: 100;
}

.single-country-bottom-inner.policy form input[type='text'] {
    width: 70%;
    vertical-align: middle;
    border: none;
}

.single-country-bottom-inner.policy form span#advancedfiltertoggle_listing {
    width: 10%;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.single-country-bottom-inner.policy form span svg {
    vertical-align: middle;
}

.single-country-bottom-inner.policy form input[type='submit'] {
    background-color: #146ABC;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all ease-in-out 0.4s;
    width: auto;
    vertical-align: middle;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.single-country-bottom-inner.policy form input[type='submit']:hover {
    background-color: #0B254B;
    cursor: pointer;
}

.single-country-card {
    margin: 50px auto;
    width: 90%;
    max-width: 1000px;
    background-color: #FFFFFF;
    padding: 40px 30px;
}

.single-country-card h3 {
    color: #3A6EA5;
    font-size: 16px;
    font-weight: 700;
}

.single-country-card h3 a {
    color: #3A6EA5;
    text-decoration: none;
}

.single-country-card h3 a:hover {
    color: #707070;
}

.single-country-card p {
    color: #707070;
    font-size: 14px;
}

.single-country-card p.single-country-card-dep {
    color: #444444;
    font-size: 14px;
    margin: 10px 0 20px;
}

.single-country-card p.single-country-card-tags {
    color: #707070;
    font-size: 12px;
    margin-top: 20px;
    text-transform: uppercase;
}

.single-country-card-tags a {
    color: #707070;
    text-decoration: none;
}

.single-country-card-tags a:hover {
    color: #012D57;
}

.single-country-card-tags span {
    display: inline-block;
    margin: 0 10px;
}

/* .post-featured-img {
    height: auto;
    width: 100%;
} */

.post-featured-img img {
    height: auto;
    width: 100%;
    /* max-width: 100%; */
}

.single-post-top {
    margin: 50px auto 0;
    max-width: 1200px;
    width: 80%;
}

.single-post-top h1 {
    color: #012D57;
    font-size: 36px;
    margin-bottom: 20px;
}

.single-post-top p {
    color: #707070;
    font-size: 16px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.single-post-top p .time-read {
    margin-left: 30px;
}

/* .whats-new-wrapper.post-page h3 {
    text-align: left;
} */

/* INSIGHTS LISTING PAGE --------------------------------------------- */
.homepage-hero-inner-content.insights {
    left: 10%;
    top: 50%;
    transform: translate(-10%, -50%);
    text-align: left;
    width: 600px;
    max-width: 80%;
}

.homepage-hero-inner-content.insights h2 {
    color: #012D57;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.homepage-hero-inner-content.insights h1 {
    color: #012D57;
    width: 100%;
}

.signup-form input {
    font-size: 14px;
    padding: 8px 15px;
    vertical-align: middle;
    border: 1px solid #292929;
    border-radius: 4px;
    width: 200px;
    font-family: 'Open Sans', sans-serif;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=tel],
.iti--allow-dropdown input[type=text],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=tel],
.iti--separate-dial-code input[type=text] {
    padding: 8px 15px;
    margin: 0;
}

.homepage-hero-inner-content form.insight input[type='submit'] {
    margin-left: 15px;
    padding: 8px 20px;
    width: 130px;
}

.news-listing-wrapper {
    background-color: #FFFFFF;
    padding: 50px 0 100px;
}

.news-listing-inner {
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
    font-size: 0;
    /* display: table; */
    /* border-spacing: 30px; */
}

.page-template-page-insights_solutions .insights-landing form {
    width: 98%;
    position: relative;
    z-index: 2;
}

.new-listing-flex {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    align-content: space-between;
}

.news-listing-inner .whats-new-card {
    display: inline-block;
    /* margin-bottom: 40px; */
    width: 31.3%;
    margin: 0 1% 40px;
    background-color: #FFFFFF;
    vertical-align: top;
}

.news-listing-inner.list .whats-new-card:first-child {
    width: 100%;
    max-width: none;
}

/* .news-listing-inner .whats-new-card:first-of-type, */
.insights-search .whats-new-card {
    width: 98%;
    max-width: 100%;
    /* display: table-caption; */
    margin: 0 auto 40px;
    display: block;
}

.news-listing-inner.list .whats-new-card:first-child .whats-new-card-img-wrap,
.insights-search .whats-new-card .whats-new-card-img-wrap {
    display: inline-block;
    width: 40%;
    vertical-align: middle;
}

.news-listing-inner.list .whats-new-card:first-child .whats-new-card-img-wrap img,
.insights-search .whats-new-card-img-wrap img {
    min-height: 300px;
}

.news-listing-inner.list .whats-new-card:first-child .whats-new-card-inner,
.insights-search .whats-new-card-inner {
    display: inline-block;
    width: 59%;
    vertical-align: middle;
}

.news-listing-inner .whats-new-card-inner .read-more-btn {
    border: 1px solid #004E98;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
}

.news-listing-inner .whats-new-card-inner .read-more-btn:hover {
    background-color: #004E98;
    color: #FFFFFF;
}

/* Create an Account -------------------------------------------------- */
.create-an-account-wrapper {
    padding: 50px 10%;
}

.page-template-page-choose-plan .main-header,
.page-template-page-login-page .main-header,
.page-template-page-create_account .main-header,
.page-template-page-forgot-password .main-header {
    display: none;
}

.create-an-account-inner {
    max-width: 1100px;
    margin: 50px auto;
    width: 100%;
    font-size: 0;
}

.create-an-account-inner-left {
    display: inline-block;
    width: 50%;
    vertical-align: top;
}

.page-template-page-choose-plan .create-an-account-inner-left {
    width: 100%;
}

.create-an-account-inner-left h1 {
    color: #012D57;
    font-size: 42px;
    margin: 15px 0 20px;
}

.create-an-account-inner-left p {
    color: #4A5568;
    font-size: 14px;
}

.create-an-account-inner-right {
    display: inline-block;
    width: 50%;
}

.create-an-account-inner-right .signup-a {
    color: #012D57;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin-left: 30px;
}

.create-an-account-inner-right {
    background-color: #FFFFFF;
    font-size: 0;
    padding: 20px 30px;
    border-radius: 3px;
    box-shadow: 0 3px 6px rgba(196, 205, 213, 0.3);
}

.label {
    color: #4A5568;
    font-weight: 500;
    font-size: 14px;
    margin: 20px 0 0;
}

.label.half {
    display: inline-block;
    width: 48%;
    vertical-align: top;
}

.label.half:nth-of-type(odd) {
    margin-right: 4%;
}

.label.full {
    display: block;
}

.label input {
    border: 1px solid #C4CDD5;
    font-size: 14px;
    margin: 10px 0;
    padding: 10px;
    width: 100%;
}

.label select {
    border: 1px solid #C4CDD5;
    color: #B5B5B5;
    font-size: 14px;
    margin: 10px 0;
    padding: 10px;
    width: 100%;
}

.label input[type="checkbox"] {
    display: inline-block;
    background-color: #CDD4E1;
    width: 30px;
}

.create-an-account-inner-right form input::placeholder,
.create-an-account-inner-right form select {
    color: #444444;
}

.create-an-account-inner-right form input[type="submit"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #004E98;
    border: none;
    color: #FFFFFF;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 30px;
    text-decoration: none;
    vertical-align: middle;
    transition: all ease-in-out 0.4s;
}

.create-an-account-inner-right form input[type="submit"]:hover {
    background-color: #0C2D4D;
    cursor: pointer;
}

.label input::placeholder {
    color: #B5B5B5;
}

.label input.error {
    border-color: #DE0606;
}

.label.full.checkbox {
    font-weight: 400;
    font-size: 14px;
    line-height: .9;
    margin-bottom: 20px;
}

.label.full.checkbox a,
.login-btn {
    color: #012D57;
    font-size: 14px;
    text-decoration: none;
    vertical-align: middle;
}

.login-btn {
    margin-left: 30px;
}

.label.full.checkbox a:hover,
.login-btn:hover {
    color: #B2B2B2;
}

/* CHOOSE PLAN ----------------------------------------------------- */
.create-an-account-inner-left.choose-plan {
    width: 35%;
}

.create-an-account-inner-right.choose-plan {
    width: 65%;
    overflow: scroll;
}

.create-an-account-inner .create-an-account-inner-right.choose-plan {
    width: 100%;
    overflow-y: hidden;
    overflow-x: scroll;
    margin-top: 30px;
}

.create-an-account-inner-right.choose-plan table {
    background-color: #FFFFFF;
    border-collapse: collapse;
    text-align: center;
    box-shadow: 0 3px 6px #00000029;
    border-radius: 4px;
}

.tablepress-scroll-wrapper {
    box-shadow: 0 3px 6px #00000029;
}

.dataTables_wrapper.no-footer {
    margin-bottom: 0;
}

.create-an-account-inner-right.choose-plan table tr {
    font-size: 12px;
}

.create-an-account-inner-right.choose-plan table th {
    border-left: 1px solid #e8ecf0;
    border-right: 1px solid #e8ecf0;
    color: #004E98;
    font-size: 19px;
    padding: 20px 10px 7px;
    text-align: center;
    background-color: transparent;
}

.create-an-account-inner-right.choose-plan table th:first-of-type {
    border-left: none;
}

.create-an-account-inner-right.choose-plan table th:last-of-type {
    border-right: none;
}

.create-an-account-inner-right.choose-plan table th span {
    color: #707070;
    display: block;
    font-size: 12px;
    margin-top: 10px;
    font-weight: 400;
}

.create-an-account-inner-right.choose-plan table tr {
    font-size: 12px;
}

.create-an-account-inner-right.choose-plan table td {
    color: #313131;
    font-size: 12px;
    border: 1px solid #e8ecf0;
    padding: 7px;
    text-align: center;
    vertical-align: middle;
}

.create-an-account-inner-right.choose-plan table td:first-of-type {
    border-left: none;
}

.create-an-account-inner-right.choose-plan table td:last-of-type {
    border-right: none;
}

.tooltip {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-left: 5px;
}

.tooltip .tooltiptext {
    background-color: #313131;
    border-radius: 6px;
    color: #FFFFFF;
    min-width: 120px;
    padding: 7px 5px;
    position: absolute;
    text-align: center;
    visibility: hidden;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.create-an-account-inner-right.choose-plan table .subscribe-btn {
    background-color: #004E98;
    color: #FFFFFF;
    font-size: 14px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    float: none;
}

.create-an-account-inner-right.choose-plan table .subscribe-btn:hover {
    background-color: #0C2D4D;
}

.questions-wrapper .blue-btn {
    display: inline-block;
    background-color: #004E98;
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 15px;
    margin-top: 30px;
    font-weight: 500;
}

.questions-wrapper .blue-btn:hover {
    background-color: #0C2D4D;
}

.form-wrapper h3 {
    text-align: center;
}

.facts-wrapper .iti.iti--allow-dropdown {
    display: block;
}

.facts-wrapper .iti.iti--allow-dropdown input {
    padding-left: 50px;
}

.create-an-account-inner-right.choose-plan table tr.blue td {
    background-color: #F4F7FA;
    padding: 20px 7px;
}

.select2-container {
    width: 100% !important;
}

/* POLICIES LISTING PAGE ----------------------------------------------- */
.policies-list-wrapper {
    padding: 100px 0 0;
    background-color: #FFFFFF;
}

.homepage-hero.policies {
    margin: 50px auto 150px;
    max-width: 1100px;
    width: 90%;
}

.homepage-hero .homepage-hero-inner-content form input[type='text'] {
    width: 70%;
}

/* .homepage-hero.policies .homepage-hero-inner-content form span {
    width: 10%;
    display: inline-block;
    text-align: center;
} */

.homepage-hero.policies .homepage-hero-inner-content form span svg {
    vertical-align: middle;
}

.homepage-hero.policies .homepage-hero-inner-content form span:hover {
    cursor: pointer;
}

.search-example-p {
    color: #3A6EA5;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.search-example-p span {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.homepage-hero-inner-content.policies {
    position: static;
    transform: none;
    margin: 0 auto;
}

.homepage-hero-inner-content.policies h1 {
    color: #004E98;
    font-size: 32px;
    width: 100%;
}

.policies .homepage-hero-inner-content form {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
}

.search-section-wrapper {
    background-color: #F4F7FA;
}

.explore-wrapper {
    /* background-color: #F4F7FA; */
    font-size: 0;
}

.explore-inner {
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.explore-inner.left {
    background-color: #FFFFFF;
    padding: 30px;
}

.explore-inner.right {
    padding: 30px;
    background-color: #F4F7FA;
}

.explore-inner h2 {
    color: #012D57;
    font-size: 30px;
}

.explore-inner p {
    color: #012D57;
    font-size: 16px;
    margin: 20px 0;
}

.explore-inner svg {
    display: block;
    margin: auto;
}

.explore-inner svg.map {
    height: auto;
    max-width: 400px;
    width: 100%;
}

.country-list-inner {
    display: inline-block;
    vertical-align: top;
}

.country-list-inner.left {
    margin-top: 20px;
    /* width: calc(100% - 300px); */
    width: 170px;
}

.country-list-inner ul {
    list-style: none;
    position: relative;
}

.country-list-wrapper h3,
.country-list-inner ul li {
    color: #757575;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    margin: 20px 0;
}

.country-list-inner ul li {
    margin: 12px 0;
}

.country-list-inner ul li a {
    text-decoration: none;
    color: #757575;
}

.country-list-inner ul li.menu-item-has-children .sub-menu {
    position: absolute;
    right: -315px;
    background-color: #FFFFFF;
    padding: 30px;
    display: none;
    box-shadow: 0 3px 15px #00000029;
    top: 0;
    width: 300px;
}

.country-list-inner ul li.menu-item-has-children .sub-menu li {
    display: inline-block;
    /* width: 150px; */
    width: 118px;
    text-align: center;
    vertical-align: middle;
}

.country-list-wrapper h3 .span-arrow svg,
.country-list-inner ul li .span-arrow svg {
    display: inline-block;
    margin: 0 0 0 20px;
    vertical-align: middle;
    display: none;
}

.country-list-wrapper h3.active,
.country-list-inner ul li.active a {
    color: #146ABC;
}

.country-list-wrapper h3.active .span-arrow svg,
.country-list-inner ul li.active .span-arrow svg,
.country-list-inner ul li:hover .span-arrow svg {
    display: inline-block;
}

.country-list-inner ul li.menu-item-has-children:hover a {
    color: #004E98;
}

.country-list-inner ul li.active .sub-menu {
    display: block;
}

.country-list-inner.changeable {
    box-shadow: 0 3px 15px #00000029;
    font-size: 0;
    padding: 30px;
    width: 300px;
}

.country-list-inner.changeable p {
    color: #444444;
    display: inline-block;
    font-weight: 700;
    margin: 10px 0;
    text-align: center;
    transition: all ease-in-out 0.4s;
    vertical-align: top;
    width: 50%;
}

.country-list-inner.changeable p.active,
.country-list-inner.changeable p:hover {
    color: #3A6EA5;
    cursor: pointer;
}

/* ACCOUNT PORTAL --------------------------------------------------- */
h1 #h1check {
    display: inline-block;
    width: 30px;
    height: auto;
    vertical-align: middle;
}

.portal-account-wrapper .create-an-account-inner-right.choose-plan {
    width: 100%;
    overflow: scroll;
}

.create-an-account-inner-right.choose-plan table {
    box-shadow: none;
}

.create-an-account-inner-right.choose-plan {}

.portal-account-wrapper {
    font-size: 0;
    padding: 0;
    position: relative;
}

.portal-account-inner {
    display: inline-block;
    vertical-align: top;
}

.portal-account-inner.left {
    background: #004E98;
    min-height: 100vh;
    padding: 50px 0;
    width: 300px;
    position: sticky;
    top: 0;
}

.portal-account-inner .image-wrapper {
    margin: 30px auto;
    position: relative;
    width: 150px;
    display: none;
}

.portal-account-inner .image-wrapper img {
    height: auto;
    width: 100%;
}

.image-wrapper .edit-photo {
    bottom: 0;
    position: absolute;
    right: 15px;
}

.image-wrapper .edit-photo path {
    transition: all ease-in-out 0.4s;
}

.image-wrapper .edit-photo:hover path {
    fill: #FFFFFF;
}

.portal-account-inner.right {
    padding: 30px;
    width: calc(100% - 300px);
}

.portal-account-inner.left nav a {
    color: #FFFFFF;
    display: block;
    font-size: 14px;
    padding: 10px 15px;
    padding: 10px 15px 10px 81px;
    text-decoration: none;
}

.portal-account-inner.left nav a svg {
    vertical-align: middle;
    margin-right: 10px;
}

.portal-account-inner.left nav a:hover,
.portal-account-inner.left nav a.active {
    background: #FFFFFF;
    color: #004E98;
}

.portal-account-inner.left nav a:hover .fill,
.portal-account-inner.left nav a.active .fill {
    fill: #004E98;
}

.portal-account-inner.left nav a:hover .fill-d,
.portal-account-inner.left nav a.active .fill-d {
    fill: #FFFFFF;
}

.portal-account-inner.left nav a:hover .fill-d,
.portal-account-inner.left nav a.active .fill-d {
    stroke: #004E98;
}

.portal-account-inner.left nav a:hover .stroke,
.portal-account-inner.left nav a.active .stroke {
    stroke: #004E98;
}

.portal-account-inner.left nav hr {
    margin: 20px 0;
}

.portal-account-inner.left nav p {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 15px 10px 81px;
    text-transform: uppercase;
}

.portal-account-inner h2 {
    color: #012D57;
    font-size: 28px;
    margin-top: 30px;
    margin-left: 2px;
}

.portal-account-inner form input {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    padding: 7px 10px;
    width: 100%;
}

.portal-account-inner p {
    font-size: 14px;
    color: #444444;
    font-weight: 500;
    margin: 15px 0;
}

.portal-account-inner form input.first-input {
    margin: 20px 0;
}

.portal-account-inner form label.first-input {
    margin: 20px 0 0;
}

.portal-account-inner p.description-p {
    /* margin: 0; */
    margin: 4px 0 20px;
}

.portal-account-inner-wrapper {
    background-color: #FFFFFF;
    box-shadow: 0 3px 6px #C4CDD5;
    padding: 30px 40px;
    width: 100%;
    max-width: 550px;
    margin: 20px 0;
}

.portal-account-inner-wrapper .blue-btn {
    background-color: #004E98;
    border-radius: 5px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin: 20px 15px 0 0;
    padding: 10px 20px;
    text-decoration: none;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    transition: all ease-in-out 0.4s;
}

.portal-account-inner-wrapper .blue-btn:hover {
    background-color: #0B254B;
    cursor: pointer;
}

.profile-wrapper.portal-account-inner-wrapper input {
    display: none;
}

.portal-account-inner-wrapper h3 {
    font-size: 16px;
}

.portal-account-inner-wrapper h3.billing {
    color: #444444;
    font-weight: 500;
    /* font-size: 14px; */
}

.portal-account-inner-wrapper h3.billing svg {
    vertical-align: middle;
}

.portal-account-inner-wrapper h3 span {
    margin-left: 10px;
    margin-left: 10px;
}

.portal-account-inner-wrapper h3 a {
    color: #0B254B;
    text-decoration: none;
}

.portal-account-inner-wrapper h3 a:hover {
    color: #292929;
}

.portal-account-inner-wrapper h3 a svg {
    margin-left: 10px;
}

.portal-account-inner-wrapper h4 {
    font-size: 14px;
    font-weight: 500;
    color: #444444;
    margin-top: 20px;
}

.progress-wrapper {
    display: inline-block;
    width: calc(100% - 100px);
}

.viewed-p {
    display: inline-block;
    text-align: right;
    width: 100px;
}

.outer-span {
    width: 100%;
    height: 10px;
    background-color: #C0C0C0;
    position: relative;
    display: block;
}

.inner-span {
    position: absolute;
    height: 10px;
    background-color: #004E98;
    width: 35%;
}

.portal-account-inner-wrapper label {
    font-size: 14px;
    margin-top: 20px;
    display: block;
}

.portal-account-inner-wrapper label:first-of-type {
    margin-top: 0;
}

.portal-account-inner-wrapper label select {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    padding: 7px 10px;
    width: 100%;
}

.portal-account-inner-wrapper label textarea {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    padding: 7px 10px;
    width: 100%;
    resize: vertical;
}

.portal-account-inner .card {
    display: none;
}

#profile-wrapper {
    display: block;
}

.portal-account-inner-wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    font-size: 14px;
}

.portal-account-inner-wrapper .select2-container--default .select2-search--inline .select2-search__field {
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
}

.portal-account-inner-wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
}

.portal-account-inner-wrapper .select2-container--default .select2-selection--multiple {
    border: 1px solid #444444;
    border-radius: 1px;
    padding: 2px 7px;
}

/* .portal-account-inner-wrapper .select2-container {
    margin: 20px 0 10px;
} */

/* FOUR O FOUR ------------------------------------------------------ */
.four-o-four-wrapper .inner-h2 {
    text-align: center;
}

.four-o-four-wrapper .inner-h2 a {
    color: #444444;
}

.four-o-four-wrapper .inner-h2 a:hover {
    color: #004E98;
}

.four-boxed-graphic {
    display: block;
    max-width: 90%;
    margin: 30px auto;
    width: 500px;
}

/* POLICY SEARCH RESULTS -------------------------------------------- */
.policy-search-wrapper {}

.policy-search-inner {
    font-size: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 5% 50px;
}

.policy-search-results-p {
    color: #0B254B;
    font-size: 16px;
    font-weight: 700;
}

.policy-search-inner-left {
    display: inline-block;
    width: calc(100% - 250px);
    vertical-align: top;
}

.policy-search-inner-right {
    display: inline-block;
    width: 250px;
}

.policy-search-card {
    border: 1px solid #EBEBEB;
    margin: 20px 0;
    padding: 20px 5%;
}

.policy-search-card-h2 {
    font-size: 16px;
    margin-bottom: 7px;
}

.policy-search-card-h2 a {
    color: #146ABC;
    text-decoration: none;
}

.policy-search-card-h2 a:hover {
    color: #444444;
}

.policy-search-card-tag {
    color: #444444;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.policy-search-card-p {
    color: #757575;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    margin: 10px 0;
}

.policy-search-card-tag.bottom {
    text-transform: uppercase;
}

.policy-search-card-tag.bottom span {
    margin: 0 5px;
}


.news-nav {
    border-bottom: 3px solid transparent;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 30px;
    font-size: 0;
}

.news-nav li {
    display: inline-block;
    border-bottom: 3px solid transparent;
    padding: 20px 20px;
    margin-bottom: -3px;
    font-size: 16px;
    font-weight: 500;
}

.news-nav li a {
    color: #C0C0C0;
    text-decoration: none;
}

.news-nav li:hover,
.news-nav li.active {
    border-color: #004E98;
}

.news-nav li:hover a,
.news-nav li.active a {
    color: #004E98;
}

.news-listing-wrapper-top {
    margin: 0 auto;
    width: 98%;
}

.search-insights-wrapper {}

.search-insights-inner {
    font-size: 0;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.search-border {
    border: 1px solid #292929;
    border-radius: 2px;
    display: inline-block;
    padding-right: 10px;
}

.search-insights-inner input[type="text"] {
    font-size: 14px;
    padding: 8px 15px;
    vertical-align: middle;
    border: none;
    width: 200px;
}

.search-insights-inner input[type="submit"] {
    background-color: #146ABC;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px;
    transition: all ease-in-out 0.4s;
    width: 20%;
    vertical-align: middle;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.search-insights-inner input[type="submit"]:hover {
    background-color: #0B254B;
}

.search-insights-inner .filter-wrapper {
    display: inline-block;
    vertical-align: middle;
}

/* CONTACT US PAGE --------------------------------------------------- */
.contact-inner {
    font-size: 0;
    margin: 0 auto;
    max-width: 1100px;
    padding-top: 20px;
    width: 90%;
}

.contact-inner-left {
    box-shadow: 0 3px 6px rgb(196 205 213 / 30%);
    display: inline-block;
    padding: 30px;
    width: 50%;
    vertical-align: top;
}

.contact-inner-right {
    display: inline-block;
    padding: 30px 5%;
    width: 90%;
    vertical-align: top;
    text-align: center;
    margin: auto;
    display: block;
}

#duplicate-error {
    border: 2px solid #DE0606;
    margin-bottom: 50px;
    padding: 30px;
}

#duplicate-error p {
    margin: 0;
}

.contact-inner-left label {
    color: #4A5568;
    display: block;
    font-weight: 500;
    font-size: 16px;
    margin: 10px 0;
}

.contact-inner-left label input,
.contact-inner-left label textarea,
.contact-inner-left label select {
    border: 1px solid #C4CDD5;
    display: block;
    font-size: 14px;
    margin: 10px 0;
    padding: 10px;
    width: 100%;
}

.contact-inner-left label textarea {
    resize: none;
}

.contact-inner-left input[type="submit"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #004E98;
    border: none;
    color: #FFFFFF;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 30px;
    text-decoration: none;
    width: 100%;
    vertical-align: middle;
    transition: all ease-in-out 0.4s;
}

.contact-inner-left input[type="submit"]:hover {
    background-color: #0C2D4D;
}

.contact-inner-right h2 {
    color: #4A5568;
    font-size: 30px;
    margin: 20px 0;
}

.contact-inner-right p {
    font-size: 18px;
    margin-bottom: 75px;
}

.contact-inner-right .info-a {
    color: #085196;
    font-size: 20px;
}

.contact-inner-right .info-a:hover {
    color: #444444;
}

.contact-inner-right .info-a div {
    margin-top: 10px;
}

.contact-inner-right .info-a p {
    font-size: 16px;
}

.contact-inner-right .info-a span {
    display: block;
    font-size: 14px;
}

.contact-inner-right .info-a svg {
    display: inline-block;
    vertical-align: middle;
}

/* LIBRARY SAVED ----------------------------------------------------- */
.library-wrapper {}

.library-wrapper h1 {
    color: #146ABC;
    font-size: 25px;
    font-weight: 500;
    padding: 30px 7%;
}

.library-nav {
    background-color: #FFFFFF;
    padding: 0 5%;
    font-size: 0;
    box-shadow: 0 3px 6px #00000029;
}

.library-nav a {
    color: #C0C0C0;
    display: inline-block;
    font-size: 16px;
    padding: 20px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.library-nav a.active,
.library-nav a:hover {
    border-bottom: 2px solid #146ABC;
    color: #146ABC;
}

.library-inner {
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
    font-size: 0;
}

.library-inner.saved,
.news-listing-inner.saved {
    padding-bottom: 100px;
}

.library-inner .filter-wrapper {
    float: right;
    position: relative;
}

.library-inner form {
    margin-top: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #EBEBEB;
    /* margin-bottom: 30px; */
}

.library-inner input {
    background: url('./images/Iconionic-ios-search.svg') no-repeat center left 10px;
    border: 1px solid #C0C0C0;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px 10px 35px;
    width: 300px;
    vertical-align: middle;
}

.library-inner form .filter-wrapper {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid #C0C0C0;
    vertical-align: middle;
}

.library-inner form .filter-wrapper p {
    color: #444444;
    font-family: 'Open Sans', sans-serif;
}

.filter-wrapper #advancedsearch,
.filter-wrapper .advancedsearch {
    z-index: 4;
}

.library-inner div p span {
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.library-inner div p svg {
    vertical-align: middle;
}

.library-cards-wrapper {
    font-size: 0;
}

.library-card {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #EBEBEB;
    padding: 20px;
    width: 32%;
}

.library-card:nth-of-type(3n+2) {
    margin: 20px 2%;
}

.library-card h2 {
    font-weight: 500;
    font-size: 16px;
}

.library-card h2 a {
    color: #3A6EA5;
    text-decoration: none;
}

.library-card p {
    color: #444444;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    margin: 10px 0;
}

.library-card p:last-of-type {
    text-transform: uppercase;
    font-size: 12px;
}

.library-inner .whats-new-card {
    display: inline-block;
    width: 32%;
    vertical-align: middle;
}

.library-inner .whats-new-card:nth-of-type(3n+2) {
    margin: 20px 2%;
}

.library-wrapper {
    background-color: #F4F7FA;
}

.news-listing-inner.saved {
    display: flex;
    flex-wrap: wrap;
    margin-top: 45px;
}


/* CONTACT US ----------------------------------------------------------- */
.facts-wrapper form {
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
}

.facts-wrapper form label {
    color: #292929;
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0;
}

.facts-wrapper form input {
    border: 1px solid #C0C0C0;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    margin-top: 7px;
    padding: 10px 20px;
    width: 100%;
}

.facts-wrapper form select {
    width: 300px;
    color: #292929;
    max-width: 100%;
    margin: 0 auto 0 0;
    font-family: 'Open Sans', sans-serif;
    display: block;
    border: 1px solid #C0C0C0;
    padding: 10px 20px;
    border-radius: 3px;
    margin-top: 7px;
}

.facts-wrapper form textarea {
    margin-top: 7px;
    border: 1px solid #C0C0C0;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    padding: 10px 20px;
    width: 100%;
    max-width: 100%;
    display: block;
}

.facts-wrapper form input[type="submit"] {
    background-color: #004E98;
    color: #FFFFFF;
    width: 300px;
    max-width: 100%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    transition: all ease-in-out 0.4s;
}

.facts-wrapper form input[type="submit"]:hover {
    background-color: #0B254B;
    cursor: pointer;
}

.questions-wrapper {
    text-align: center;
    max-width: 95%;
    margin: auto;
}

.questions-wrapper h2,
.form-wrapper h2 {
    color: #012D57;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
}

.page-template-page-insights_search .policy-search-inner-left {
    width: 100%;
}

.single-country-card-wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.single-country-card-wrapper .policy-search-card {
    background-color: #FFFFFF;
    box-shadow: 0 3px 15px rgb(0 0 0 / 16%);
}

/* .news-listing-inner.saved .whats-new-card:first-of-type, .insights-search .whats-new-card {
    width: 31.3%;
    display: inline-block;
    margin: 0 1% 40px;
} */

.news-listing-inner.saved .whats-new-card:first-of-type .whats-new-card-img-wrap img,
.news-listing-inner.saved .insights-search .whats-new-card-img-wrap img {
    min-height: auto;
}

.news-listing-inner.saved .whats-new-card:first-of-type .whats-new-card-img-wrap,
.news-listing-inner.saved .insights-search .whats-new-card .whats-new-card-img-wrap {
    width: 100%;
    display: block;
}

.news-listing-inner.saved .whats-new-card:first-of-type .whats-new-card-inner,
.news-listing-inner.saved .insights-search .whats-new-card-inner {
    width: 100%;
}

.library-cards-wrapper .policy-search-card {
    background-color: #FFFFFF;
    width: 31%;
    display: inline-block;
    margin: 1% 1%;
    vertical-align: top;
    position: relative;
}

.library-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 45px;
    justify-content: flex-start;
}

.request h3 {
    color: #012D57;
    font-size: 20px;
    font-weight: 400;
}

.request h2 {
    margin-top: 0;
    font-size: 35px;
}

/* POPUP ----------------------------------------------------------- */
/* #popup-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background-color: rgba(244,247,250, .90);
    display: none;
} */

.popup-wrapper .blue-btn {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #004E98;
    border: none;
    color: #FFFFFF;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 30px;
    text-decoration: none;
    vertical-align: middle;
    transition: all ease-in-out 0.4s;
    margin-top: 30px;
}

.popup-wrapper .blue-btn:hover {
    background-color: #012D57;
}

.popup-wrapper .create-an-account-inner-left h1 {
    font-size: 35px;
}

.popup-wrapper .create-an-account-inner {
    padding-right: 5%;
}

#policystagetop a.stagebtn.download {
    background-color: #004E98;
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    border-radius: 5px;
    border: none;
}

#policystagetop a.stagebtn.download:hover {
    background-color: #0B254B;
    color: #FFFFFF !important;
}

.single-policy-top p.policymeta a {
    text-decoration: none;
}

.single-policy-top p.policymeta a svg {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

.policyheaderright label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.policyheaderright label input[type="checkbox"].ios-switch+div {
    vertical-align: middle;
    width: 40px;
    height: 20px;
    border: 1px solid #FFFFFF;
    border-radius: 999px;
    background-color: #FFFFFF;
    -webkit-transition-duration: .4s;
    -webkit-transition-property: background-color, box-shadow;
    box-shadow: inset 0 0 0 0px rgb(0 0 0 / 40%);
    margin: 15px 10px;
}

.policyheaderright label input[type="checkbox"].bigswitch.ios-switch+div {
    width: 50px;
    height: 25px;
    display: inline-block;
}

.policyheaderright label input[type="checkbox"].green.ios-switch+div {
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    box-shadow: inset 0 0 0 2px #004E98;
}

.policyheaderright label input[type="checkbox"].ios-switch+div>div {
    float: left;
    width: 18px;
    height: 18px;
    border-radius: inherit;
    background: #ffffff;
    -webkit-transition-timing-function: cubic-bezier(.54, 1.85, .5, 1);
    -webkit-transition-duration: 0.4s;
    -webkit-transition-property: transform, background-color, box-shadow;
    -moz-transition-timing-function: cubic-bezier(.54, 1.85, .5, 1);
    -moz-transition-duration: 0.4s;
    -moz-transition-property: transform, background-color;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 30%), 0px 0px 0 1px rgb(0 0 0 / 40%);
    pointer-events: none;
    margin-top: 1px;
    margin-left: 1px;
}

.policyheaderright label input[type="checkbox"].bigswitch.ios-switch+div>div {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    margin-left: 2px;
}

.policyheaderright label input[type="checkbox"].ios-switch.active+div>div {
    -webkit-transform: translate3d(25px, 0, 0);
    -moz-transform: translate3d(25px, 0, 0);
    background-color: #ffffff;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 30%), 0px 0px 0 1px rgb(8 80 172);
}

.policyheaderright label input[type="checkbox"].ios-switch.active+div {
    background-color: #004E98;
}

#related-policies .max-width {
    padding: 0 5%;
}

#related-policies .policy-search-card {
    background-color: #ffffff;
}

.request-policy-wrapper {
    display: none;
    padding-top: 0;
}

#thank-you {
    display: none;
}

#expandfilters,
.expandfilters {
    cursor: pointer;
}

#specificyear {
    width: auto;
}

#relatedinsights {
    display: table;
    border-spacing: 30px 0;
    display: none;
}

#relatedclips {
    font-size: 0;
    display: none;
}

ul#policynav li a:hover {
    color: #004E98;
}

.delete-icon {
    width: 15px;
    display: block;
    margin-left: auto;
    margin-top: 20px;
    position: absolute;
    right: 15px;
    bottom: 14px;
}

.delete-icon #noun_Remove_1117009 {
    transition: all ease-in-out 0.4s;
}

.delete-icon:hover #noun_Remove_1117009 {
    fill: #444444;
    cursor: pointer;
}

.existingpayment {
    padding-top: 20px;
}

.existingpayment a {
    display: none;
}

.existingpayment a.active {
    display: block;
}

.existingpayment p {
    font-size: 15px;
    line-height: 20px;
    color: #2a2a2a;
}

.existingpayment p a {
    color: #2a2a2a;
    font-size: 12px;
}

.cardparent.hidecard {
    display: none;
}

.insight-top-wrapper {
    margin-bottom: 30px;
}

.insight-top-wrapper p {
    display: inline-block;
    width: 50%;
    vertical-align: middle;
    margin-bottom: 0;
}

.insight-top-wrapper .insightheaderright {
    display: inline-block;
    width: 49%;
    vertical-align: middle;
    text-align: right;
}

.insight-top-wrapper .trackmessage {
    margin-right: 15px;
}

.policy-download-btn {
    height: 37px;
    display: block;
    margin-left: auto;
    width: auto;
    transition: all ease-in-out 0.4s;
}

.policy-download-btn:hover {
    cursor: pointer;
    fill: #0B254B;
}

.library-filters-wrapper.insights {
    width: 88%;
    margin: 20px auto 0;
}

.library-filters-wrapper select {
    margin: 20px 0;
    padding: 10px 20px;
    max-width: 100%;
    width: 300px;
}

.thank-you-wrapper {
    display: none;
}

.thank-you-request-wrapper {
    display: none;
}

.subscribed {}

form#downloadform {
    display: inline;
}

form#downloadform .downloadsubmit {
    background-color: #004E98;
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    cursor: pointer;
}

form#downloadform .downloadsubmit:hover {
    background-color: #0B254B;
}

.formerror {
    color: #2a2a2a;
    font-weight: bold;
    margin-bottom: 20px;
    border: solid 1px #2a2a2a;
    padding: 20px;
}

form #country {
    width: 200px;
    display: inline-block;
    border: 1px solid #292929;
    padding: 8px 15px;
    font-size: 14px;
    text-indent: 0;
    margin-right: 15px;
    border-radius: 5px;
    vertical-align: middle;
}

/*font-family: 'Open Sans', sans-serif;*/
/*font-family: 'Rubik', sans-serif;*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* .clearfix {
    display: inline-block;
} */

* html .clearfix {
    height: 1%;
}

/* .clearfix {
    display: block;
    margin-top: 3px;
    margin-left: 7px;
    margin-bottom: 7px;
} */

body.single-policy {}

.policysection {
    border-bottom: solid 1px #cccccc;
    background-color: #ffffff;
}

.single-policy-top {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 0 40px 0;
}

.single-policy-top p.policymeta {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #757575;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.single-policy-top h1 {
    font-size: 24px;
    line-height: 30px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
}

.single-policy-top .policyministry {
    font-size: 16px;
    line-height: 21px;
    color: #444444;
    font-weight: normal;
    margin-bottom: 30px;
}

.single-policy-top .policydescription {
    font-size: 14px;
    line-height: 22px;
    color: #757575;
}

.single-policy-top .policyheaderleft {
    width: 70%;
    display: inline-block;
}

#policynav {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0 20px 0;
}

ul#policynav li {
    list-style: none;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    margin-bottom: 15px;
    /* margin-right: 30px; */
}

ul#policynav li a {
    color: #C0C0C0;
    text-decoration: none;
    font-weight: 500;
    margin-right: 30px;
}

ul#policynav li a.active {
    color: #004E98;
}

ul#policynav li a.policybtn {
    background-color: #004E98;
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    border-radius: 5px;
    margin-right: 0;
}

ul#policynav li a.policybtn:hover {
    background-color: #00284d;
}

.policyheaderright {
    background-color: #F4F7FA;
    border: solid 1px #EBEBEB;
    border-radius: 4px;
    width: 25%;
    float: right;
    padding: 20px 20px;
}

.policyheaderright p {
    font-size: 14px;
    line-height: 18px;
    color: #707070;
    margin-bottom: 30px;
}

.policyheaderright label {
    color: #146ABC;
    font-weight: 500;
}

.policyheaderright label span {
    display: inline-block;
    margin-right: 10px;
}

.main-content-inner.policyinner {
    padding-left: 0;
    padding-right: 0;
}

.single-policy .basic-page-wrapper {
    background-color: #FAFAFA;
}

#policystage {
    border: solid 1px #cccccc;
    padding-bottom: 50px;
    background-color: #ffffff;
}

#policystagebody {
    padding: 0 50px 30px 50px;
}

#policydocument {
    border: solid 1px #cccccc;
    width: 90%;
    height: 750px;
    margin: 0 auto;
}

#policystagetop {
    padding: 20px 20px;
    border-bottom: solid 1px #cccccc;
    margin-bottom: 40px;
}

#policystagetop #rightbtns {
    float: right;
}

#policystagetop a.stagebtn {
    display: inline-block;
    padding: 10px 15px;
    border: solid 1px #cccccc;
    color: #2a2a2a;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
}

#policystagetop a.stagebtn:hover {
    color: #004E98;
}

#policystagetop .stagetopright {
    float: right;
    display: inline-block;
}

#related-policies {
    background-color: #F4F7FA;
    padding: 60px 0;
}

#relatedtop {
    border-bottom: solid 1px #000000;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

#relatedpolicycols .policyblock {
    background-color: #ffffff;
    display: inline-block;
    /* width: 31.5%; */
    width: 31.5%;
    color: black;
    box-sizing: border-box;
    padding: 20px 20px 30px;
    /* margin-right: 2%; */
    transition: .25s ease-in-out;
    vertical-align: top;
    position: relative;
}

#phone-icon {
    width: 23px;
    margin-top: 0;
    padding-top: 21px;
}

.contactitem p {
    font-size: 15px;
    margin: 10px 0;
}

.conemail,
.conephone {
    transition: .25s ease-in-out;
}

.main-content-inner p.contact-org {
    font-weight: 300;
    margin: 10px 0 0px;
}

.contactitem h4 {
    color: black;
}

.conemail:hover,
.conephone:hover {
    opacity: .7
}

#email-icon {
    width: 24px;

    padding-top: 16px;
}

#relatedpolicycols a {
    text-decoration: none;
    color: black;
}

#relatedpolicycols .policyblock:last-child {
    /* margin: 0; */
    /* margin: 0 0 20px 0; */
}

#relatedpolicycols .policyblock h4 {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    color: black;
    margin-bottom: 4px;
}

#relatedpolicycols .policyblock h5 {
    font-size: 14px;
    line-height: 20px;
    color: black;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

a.relatedmore:hover {

    color: #353535;
}

#relatedpolicycols .policyblock p {
    font-size: 12px;
    line-height: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

#relatedpolicycols .policyblock:hover {
    box-shadow: 2px 2px rgb(232, 232, 232);
    background: rgb(252, 252, 252);
}

#relatedpolicycols .policyblock p.policyblockfooter {
    font-size: 12px;
    margin-top: 0px;
    color: black;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
    position: absolute;
    bottom: 10px;
}

a.relatedmore {
    float: right;
    text-decoration: none;
    color: #707070;
}

#requestpolicy {
    padding: 80px 0;
}

.main-content-inner .preview-header {
    font-size: 13px;
    text-align: center;
    margin-top: 5px;
}

.requestpolicyleft {

    margin: 0px auto;
    display: block;

    width: 400px;
    max-width: 90%;

}

.requestpolicyleft p {
    color: #012D57;
    font-size: 20px;
}

.requestpolicyleft h3 {
    font-size: 40px;
    line-height: 45px;
    color: #012D57;
}

.requestpolicyright {
    display: inline-block;
    width: 45%;
    height: auto;
    padding: 40px 30px;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
    vertical-align: top;
}

.requestpolicyright form input {
    border: solid 1px #cccccc;
    font-size: 14px;
    color: #2a2a2a;
    width: 100%;
    display: block;
    padding: 14px 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.requestpolicyright form input#policyrequestbtn {
    background-color: #146ABC;
    color: #ffffff;
    border: none;
    padding: 16px 10px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 25px;
}

.requestpolicyright form input#policyrequestbtn:hover {
    background-color: #003d78;
}

.requestpolicyright form p {
    color: #012D57;
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 15px;
}

.requestpolicyright .policyoptions span {
    color: #004E98;
    display: inline-block;
    border: solid 1px #004E98;
    padding: 7px 17px;
    font-size: 12px;
    margin-bottom: 10px;
    margin-right: 10px;
}

#policydocument iframe {
    width: 100%;
    height: 100%;
}

a#requestbtn {
    background-color: #004E98;
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 30px;
    font-size: 20px;
    line-height: 35px;
}

a#requestbtn:hover {
    background-color: #002445;
}

#stakeholdersmap {
    display: none;
}

#previousversions {
    display: none;
}

#stakeholderleft {
    width: 45%;
    display: inline-block;
    vertical-align: top;
    margin-right: 9%;
    min-width: 320px;
}

#stakeholderright {
    width: 45%;
    display: inline-block;
    vertical-align: top;
}

#stakecontacts {
    margin-bottom: 40px;
}

#stakecontacts .contactitem {
    background-color: #ffffff;
    padding: 50px;
    margin-bottom: 20px;
}

.contactfooter {
    margin-top: 0px;
    display: flex;
    margin-left: -5px;
    flex-direction: column;
}

.contactfooter a {
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    color: #004E98;
}

.contactrole {
    padding: 5px 10px;
    display: inline-block;
    color: #012D57;
    background-color: #AACBFF;
    font-size: 12px;
    line-height: 17px;
    border-radius: 5px;
    float: right;
    text-transform: capitalize;
}

p.contactdetails {
    color: #444444;
    font-size: 14px;
    line-height: 20px;
    margin-top: 0;
}

.contactfooter .conemail {
    float: right;
    margin-top: 7px;
}

#stakecontacts h4 {
    margin: 0 0 5px 0;
}

#stakemap {
    background-color: #ffffff;
    padding: 50px;
    width: 372px;
    margin: 0 auto;
}

#stakemap .right {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
}

#stakemap .left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.stake-container {
    background-color: #ffffff;
    width: 100%;
}

#stakemap .timelinebar {
    text-align: center;
    margin-left: .5px;
}

#stakemap .timelinebar span {
    width: 1px;
    height: 100px;
    border-left: solid 2px #004E98;
    display: inline-block;
}

#stakemap .timelinebar:last-child {
    display: none;
}

#stakemap p {
    margin: 5px 0 5px 0;
    width: 50%;
    color: #012D57;
    position: relative;
    line-height: 1;
    font-size: 13px;
    font-weight: 700;
}

#stakemap p.left {
    right: -4%;
    text-align: right;
}

#stakemap p.right {
    left: -4.45%;
    margin-bottom: 7px;
}

#stakemap p.left span {
    float: right;
    display: inline-block;
    margin-left: 8px;
}

#stakemap p.right {
    float: right;
}

#stakemap p.right span {
    float: left;
    display: inline-block;
    margin-right: 5px;
}


#stakemap p span {
    font-size: 14px;
    position: relative;
    padding-right: 5.5px;
    top: 0px;

}

#policyversionstage {
    background-color: #ffffff;
}

#comparewrapper .tooltiptext {
    background-color: #313131;
    border-radius: 6px;
    color: #FFFFFF;
    min-width: 120px;
    padding: 7px 5px;
    border: 1px solid gray;
    position: absolute;
    right: 70px;
    font-size: 12px;
    margin-top: 45px;
    text-align: center;
    visibility: hidden;
    z-index: 1;
}

#compareversionsfromprevious:hover+.tooltiptext {
    visibility: visible;
}


.versionitem {
    padding: 20px 30px;
    border-bottom: 1px solid #cccccc;
    cursor: pointer;
}

.versionitem.active {
    background-color: #dedede;
}

.versionitem h3 {
    color: #444444;
    font-size: 18px;
    line-height: 22px;
}

.versionitem h3 a {
    text-decoration: none;
    color: #444444;
}

.versionitem h3 a:hover {
    color: #000000;
}

.versionitem h3 span {
    padding: 5px 10px;
    display: inline-block;
    color: #012D57;
    background-color: #AACBFF;
    font-size: 12px;
    line-height: 17px;
    border-radius: 5px;
    float: right;
    text-transform: capitalize;
    font-weight: normal;
}

.versionitem p {
    color: #707070;
    font-size: 14px;
    line-height: 22px;
}

.versionitem .downloadbtn {
    float: right;
}

#previousversions #compareversionsfromprevious {
    display: inline-block;
    padding: 10px 15px;
    border: solid 1px #cccccc;
    color: #2a2a2a;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    float: right;
    opacity: .2;
    cursor: not-allowed;
    background-color: #ffc8c8;
    border-radius: 5px;
}

#previousversions #compareversionsfromprevious.active {
    opacity: 1;
    background-color: #c8ddff;
    cursor: pointer;
}

#comparewrapper {
    margin: 0px 0 20px 0;
    position: relative;
}

#comparisons {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    background-color: #FAFAFA;
    z-index: 11;
    padding-top: 35px;
    padding-bottom: 30px;
    display: none;
}

#comparisons .inner {
    width: 90%;

    margin: 0 auto;
}


#comparison_titles {
    -webkit-box-shadow: 5px 5px 15px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 5px 5px 15px 1px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#comparison_titles span {
    font-size: 18px;
    color: #444444;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    width: 45%;
    vertical-align: top;
    padding: 20px 0;
    background-color: #ffffff;
    font-weight: bold;
}

#compareactions {
    margin-top: 20px;
}

#comparebtns {
    text-align: center;
}

#comparebtns a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: #707070;
    box-shadow: 2px 2px 2px lightgrey;
    background-color: #ffffff;
    text-decoration: none;
}

#comparebtns a:hover {
    background-color: #004E98;
    color: #ffffff;
}

#comparestage {
    margin-top: 40px;
    font-size: 0;
}

#comparestage .compareitem.first {
    margin-right: 2%;
}

#comparestage .compareitem {
    display: inline-block;
    width: 49%;
    vertical-align: top;
    border: solid 1px #cccccc;
    height: 750px;
}

#comparestage .compareitem iframe {
    width: 100%;
    height: 100%;
}


.policy-search-inner-left .pagination-wrapper span {
    border-radius: 2px;
    color: #4A5568;
    display: inline-block;
    font-size: 20px;
    margin: 0 5px;
    padding: 2px 11px;
    text-decoration: none;
}

.homepage-hero-inner-content form {
    position: relative;
}

/*font-family: 'Open Sans', sans-serif;*/
/*font-family: 'Rubik', sans-serif;*/
#advancedsearch,
.advancedsearch {
    width: 400px;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    display: none;
}

#advancedsearch {
    /*left:-250px;*/
}

#advancedsearchcontent,
.advancedsearchcontent {
    padding: 30px 30px;
    color: #2a2a2a;
    font-size: 16px;
}

.filterrow {
    margin-bottom: 20px;
}

.filterrow .colleft {
    display: inline-block;
    vertical-align: top;
    width: 45%;
    margin-right: 3%;
}

.filterrow .colright {
    display: inline-block;
    vertical-align: top;
    width: 45%;
}

#advancedsearchcontent h2.pretext,
.advancedsearchcontent h2.pretext {
    font-size: 14px;
    color: #C0C0C0;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#advancedsearchcontent h2.filterlabel,
.advancedsearchcontent h2.filterlabel {
    font-size: 14px;
    color: #444444;
    margin-bottom: 10px;
}

#advancedsearchcontent select,
.advancedsearchcontent select {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}

#advancedsearchcontent .filterfooter,
.advancedsearchcontent .filterfooter {
    margin-bottom: 10px;
    text-align: right;
}

#advancedsearchcontent .filterfooter a,
.advancedsearchcontent .filterfooter a {
    color: #004E98;
    text-decoration: none;
    margin-right: 10px;
    font-size: 12px;
}

#advancedsearchcontent .filterfooter input[type='submit'],
.advancedsearchcontent .filterfooter input[type='submit'] {
    background-color: #146ABC;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    padding: 9px 25px;
    transition: all ease-in-out 0.4s;
    width: auto;
    vertical-align: middle;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

#advancedsearchcontent .filterfooter input[type='submit']:hover,
.advancedsearchcontent .filterfooter input[type='submit']:hover {
    background-color: #085196;
}

#advancedsearchcontent select,
.advancedsearchcontent select {
    display: inline-block;
}

#advancedsearchcontent label,
.advancedsearchcontent label {
    font-size: 12px;
    line-height: 16px;
    color: #012D57;
    top: 10px;
    position: relative;
}

/* Search Results Page */
.policy-search-inner.search {
    padding-bottom: 20px;
    position: relative;
    z-index: 11;
}

#internal-search-bar {
    width: 80%;
    display: inline-block;
    vertical-align: middle;
}

#internal-search-bar input#search_text {
    border: solid 1px #cccccc;
    padding: 10px 20px;
    font-size: 16px;
    width: 75%;
    background-color: #F4F7FA;
    display: inline-block;
    vertical-align: middle;
    margin-right: 2%;
    border-radius: 4px;
}

#internal-search-bar input#search_submit {
    background-color: #146ABC;
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all ease-in-out 0.4s;
    width: 20%;
    display: inline-block;
    vertical-align: middle;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

#internal-search-bar input#search_submit:hover {
    background-color: #0C2D4D;
}

#advancedfiltertoggle {
    display: inline-block;
    width: 15%;
    position: relative;
    vertical-align: middle;
}

#advancedfiltertoggle #expandfilters {
    float: right;
}

#search-result-section {
    background-color: #ffffff;
    padding: 30px 0;
    min-height: 420px;
}

#advancedsearch span {
    text-align: left;
    /*width:100%;*/
}

#advancedsearch span.select2-container {
    /*width:100%;*/
}

.homepage-hero-inner-content form span#advancedfiltertoggle_listing {
    width: 10%;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

#advancedsearch select,
#advancedsearch li {
    font-size: 14px;
}

/* .news-listing-inner .whats-new-card:first-of-type,  */
.insights-search .whats-new-card {
    margin-top: 20px;
}

.insights-landing form {
    box-shadow: 0 3px 15px rgb(0 0 0 / 16%);
    background-color: #FFFFFF;
    border-radius: 4px;
    font-size: 0;
    margin: 20px auto;
    text-align: left;
    padding: 10px 20px;
}

.insights-landing #internal-search-bar {
    width: 100%;
}

.insights-landing #internal-search-bar input#search_text {
    border: none;
    background-color: #FFFFFF;
    width: 70%;
}

.insights-landing #advancedfiltertoggle {
    width: 10%;
    margin-right: 2%;
}

.insights-landing #internal-search-bar input#search_submit {
    width: 15%;
}

.create-an-account-inner-right .choose-plan {
    width: 100%;
}

.create-an-account-inner-right h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    color: #004A6A;
}

.create-an-account-inner-right form input[type="submit"].chargesubmit {
    width: 100%;
    display: block;
    padding: 15px 0;
    font-size: 18px;
    cursor: pointer;
    margin-top: 12px;
}

.chargeaccount .label {
    margin-top: 5px;
}

#paymentsummary h2 {
    font-size: 18px;
    line-height: 24px;
}

#paymentsummary p {
    font-size: 12px;
    line-height: 18px;
    color: #757575;
}

#paymentsummary p.costinfo {
    font-size: 14px;
    line-height: 22px;
    margin-top: 0px;
    float: right;
    color: #012D57;
    text-align: right;
}

#paymentsummary p.costinfo span {
    font-size: 25px;
    font-weight: bold;
}

p.paymentdisclaimer {
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px;
    text-align: center;
    font-style: italic;
    color: #2a2a2a;
}

.policyheaderleft {
    min-height: 200px;
}

.select2-container--default .select2-results>.select2-results__options {
    overflow: hidden;
}

#startyear input,
#endyear input {
    font-size: 17px;
    color: #2a2a2a;
    padding: 5px 4px;
    border-radius: 4px;
    border: solid 1px #aaa;
}

#startyear input:focus,
#endyear input:focus {
    border: solid 1px #000000;
}

/* Insight Tracking */
.insightheaderright label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.insightheaderright label input[type="checkbox"].ios-switch+div {
    vertical-align: middle;
    width: 40px;
    height: 20px;
    border: 1px solid #FFFFFF;
    border-radius: 999px;
    background-color: #FFFFFF;
    -webkit-transition-duration: .4s;
    -webkit-transition-property: background-color, box-shadow;
    box-shadow: inset 0 0 0 0px rgb(0 0 0 / 40%);
    margin: 15px 10px;
}

.insightheaderright label input[type="checkbox"].bigswitch.ios-switch+div {
    width: 50px;
    height: 25px;
    display: inline-block;
}

.insightheaderright label input[type="checkbox"].green.ios-switch+div {
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    box-shadow: inset 0 0 0 2px #004E98;
}

.insightheaderright label input[type="checkbox"].ios-switch+div>div {
    float: left;
    width: 18px;
    height: 18px;
    border-radius: inherit;
    background: #ffffff;
    -webkit-transition-timing-function: cubic-bezier(.54, 1.85, .5, 1);
    -webkit-transition-duration: 0.4s;
    -webkit-transition-property: transform, background-color, box-shadow;
    -moz-transition-timing-function: cubic-bezier(.54, 1.85, .5, 1);
    -moz-transition-duration: 0.4s;
    -moz-transition-property: transform, background-color;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 30%), 0px 0px 0 1px rgb(0 0 0 / 40%);
    pointer-events: none;
    margin-top: 1px;
    margin-left: 1px;
}

.insightheaderright label input[type="checkbox"].bigswitch.ios-switch+div>div {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    margin-left: 2px;
}

.insightheaderright label input[type="checkbox"].ios-switch.active+div>div {
    -webkit-transform: translate3d(25px, 0, 0);
    -moz-transform: translate3d(25px, 0, 0);
    background-color: #ffffff;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 30%), 0px 0px 0 1px rgb(8 80 172);
}

.insightheaderright label input[type="checkbox"].ios-switch.active+div {
    background-color: #004E98;
}

.trackmessage {
    font-size: 12px;
    line-height: 19px;
    color: #2a2a2a;
    display: none;
}

#subscription_change {
    display: none;
}

.subscribe-btn.currentplan {
    opacity: .4;
}

.updatepaymentsubmit {
    background-color: #004E98;
    border-radius: 5px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin: 20px 15px 0 0;
    padding: 10px 20px;
    text-decoration: none;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
}

.updatepaymentsubmit:hover {
    background-color: #0B254B;
}

.message {
    display: block;
    background-color: #d2e7d6;
    padding: 5px 10px;
    border-radius: 3px;
    width: 50%;
    margin-top: 10px;
}

.message p {
    font-size: 15px;
    line-height: 20px;
    font-weight: normal;
    margin: 0;
}

.profilepaymentform {
    display: none;
}

#internal-search-bar {
    width: 100%;
}

#internal-search-bar input#search_text {
    width: 60%;
}

#confirmation_search input[type='text'] {
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
    width: 80%;
    vertical-align: middle;
    outline: none;
}

#user-form label {
    color: #4A5568;
    font-weight: 500;
    font-size: 14px;
    margin: 20px 0 0;
    display: block;
}


#user-form input#userfield,
#user-form input#passfield {
    border: 1px solid #C4CDD5;
    font-size: 14px;
    margin: 10px 0;
    padding: 10px;
    width: 100%;
}

#user-form .login-remember {
    display: none;
}

#user-form input#passfield {
    margin-bottom: 20px;
}

#user-form form {
    display: inline;
}

#user-form form .login-submit {
    display: inline;
}

.counter-wrapper {}

.counter-wrapper p {
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
}

.counter-wrapper p span.counter {
    font-weight: 600;
}

.form-wrapper.facts-wrapper .g-recaptcha {
    margin-top: 25px;
}

img.blog-featured-img {
    margin: 0 auto;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}

.newsletter-form-wrapper {
    width: 100%;
    display: flex;
    background: #D9EDFF;
    justify-content: center;
    align-items: center;
}

.newsletter-form-wrapper h1 {
    color: #012D57;
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0;
    max-width: 600px;
}

.newsletter-form-wrapper h2 {
    color: #4A5568;
    font-size: 16px;
    font-weight: 400;
}

.newsletter-form-wrapper input[type="submit"] {
    background-color: #004E98;
    border-radius: 5px;
    color: #FFFFFF;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 15px;
    margin-left: 10px;
}

.newsletter-form-inner {
    padding: 50px 0;
    margin: 0 auto;
    max-width: 1200px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-form-inner div {
    width: 32%;
}

.newsletter-form-wrapper form {
    display: flex;
}

.newsletter-template-default article.main-content-inner {
    font-size: 18px;
    width: 80%;
    max-width: 1200px;
    padding: 0px 0px;
    padding-bottom: 50px;
}

.newsletter-template-default .updates-footer,
.page-template-page-newsletter .updates-footer {
    background: #D9EDFF;
}

h2.newsletter-author {
    font-size: 20px;
    font-weight: 400;
}

.social-share-btns {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 20px 0;
}

.fb-share-button.fb_iframe_widget {
    margin-left: 20px;
}


article.single-post-card.newsletter img {
    max-width: 100%;
    margin-bottom: 20px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

article.news-listing-column.newsletter {
    width: 100%;
}

article.single-post-card.newsletter {
    width: 31%;
}


.addtoany_shortcode {
    display: flex;
    justify-content: end;
}

.addtoany_shortcode svg {
    fill: black;
    background: white;
}


a.a2a_dd.addtoany_share_save.addtoany_share {
    display: none;
}

svg.copy-btn {
    max-width: 28px;
    max-height: 28px;
    display: none;
}

.addtoany_list path {
    fill: black;
}

a.a2a_button_twitter svg {
    background: white;
}

a.a2a_button_facebook svg {
    background: white;
}

.addtoany_list a:not(.addtoany_special_service)>span {
    border-radius: unset !important;
}

svg.copy-btn:hover {
    opacity: .8;
    cursor: pointer;
}

.single-newsletter img.alignnone {
    width: 80%;
    margin: 20px auto;
}

.single-newsletter .insight-time {
    display: flex;
    flex-direction: column;
}

.single-newsletter img.aligncenter {
    clear: both;
    margin: 0 auto;
    display: flex;
    width: 75%;
}

/* .single-newsletter strong{
    color: #004E98;
} */

/* .single-newsletter a {
    text-decoration: underline !important;
} */


.single-newsletter .main-content a:hover {
    opacity: .75;
    text-decoration: underline;
}

.single-newsletter .main-content-inner p {
    margin: 0;
    margin-bottom: 23px;
}


.single-newsletter img {
    max-width: 100%;
}

.single-newsletter figure.article-editor-content__figure-image {
    text-align: center;
}

.single-newsletter .article-editor-content__inline-image-container {
    text-align: center;
}


.teaser-overlay {
    position: relative;
    padding-top: 21%;
    margin-top: -11%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2508578431372548) 0%, rgba(255, 255, 255, 0.9993172268907564) 48%, rgba(255, 255, 255, 0.9542191876750701) 91%);
}

.teaser-overlay p {
    font-size: 31px;
    font-weight: 600;
    margin: 0 auto;
    text-align: center;
}


.newsletter-header {
    color: #0C2D4D;
    font-size: 35px;
    font-weight: 500;
}

article.news-listing-column.newsletter {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    justify-content: space-around;
    padding: 2% 0;
}

article.single-post-card.newsletter {
    margin: 15px 0;
}

.news-listing-column.newsletter .pagination-wrapper {
    margin-top: 30px;
}

/* .explore-inner.right {
    position: relative;
} */

/* .explore-inner svg  {
    position: relative;
} */

div.hidden {
    display: none;
}

.explore-inner svg .active {
    /* cursor: pointer; */
}

.explore-inner svg .active:hover {
    fill: #146ABC !important;
}

#relatedpolicycols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* #contact_phone {
    display: none;
} */