* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
    --red-hat-font: "Red Hat Display", sans-serif;
    --dark-grey: #293B44;
    --dark-grey-70: rgba(41, 59, 68, 0.70);
    --dark-grey-50: rgba(41, 59, 68, 0.50);
    --dark-grey-10: rgba(41, 59, 68, 0.10);
    --light-grey: #F5FAFD;
    --red: #EF4242;
    --white: #FFF;
    --yellow: #FDBA12;
    --dark-yellow :#ECA900;
    --dark-red:#BF233F;
    --transition: all 400ms ease-in-out;
    --border: 1px solid var(--dark-grey-10);
    --border-radius-8:8px;
    --border-radius-16:16px;
    --box-shadow: 0px 39px 11px 0px rgba(41, 59, 68, 0.00), 0px 25px 10px 0px rgba(41, 59, 68, 0.00), 0px 14px 9px 0px rgba(41, 59, 68, 0.01), 0px 6px 6px 0px rgba(41, 59, 68, 0.01), 0px 2px 3px 0px rgba(41, 59, 68, 0.01);;
}
html {
	-ms-overflow-style: scrollbar;
	box-sizing: border-box;
	font-size: 100%;
    -webkit-tap-highlight-color: transparent;
}

*,
:after,
:before {
	box-sizing: inherit
}

body {
	font-family: var(--red-hat-font);
	color: #12153E;
	font-size: 18px;
	letter-spacing: 0;
	line-height: 28px;
    font-weight: 500;
    background: var(--light-grey);
}
.container {margin: 0 auto;width: 100%; max-width: 100%; padding: 0px 15px;}

a {
	color: var(--red);
	text-decoration: none;
	transition: .3s;
}
a + a { margin-left: 20px; }
a:hover { color: var(--dark-red);}
p { margin-bottom: 20px; }
p a{text-decoration: underline;}
p a:hover{color: var(--dark-red);text-decoration: underline;}
a:hover { text-decoration: none; }
a:focus { outline: none; text-decoration: none; }
img { display: block; }
input:focus, textarea:focus { outline: none; }
img { max-width: 100%; display: block; }
label { font-weight: inherit; }
video, iframe { width: 100% }

h1,.h1 { font-size: 32px; line-height: normal;font-weight:700; margin: 0 0 30px; color: var(--dark-grey); font-family: var(--red-hat-font); }
h2,.h2 { font-size: 26px; line-height: normal;font-weight:700;margin: 0 0 30px; color: var(--dark-grey); font-family: var(--red-hat-font);}
h3,.h3 { font-size: 22px; line-height: normal;font-weight:700;margin: 0 0 30px; color: var(--dark-grey); font-family: var(--red-hat-font);}
/* h4,.h4 { font-size: 30px; line-height: normal;font-weight:700;margin: 0 0 30px; color: var(--dark-grey); font-family: var(--red-hat-font); } */
h5,.h5 { font-size: 18px; line-height: normal;font-weight:700;margin: 0 0 30px; color: var(--dark-grey); font-family: var(--red-hat-font);}
h6,.h6 { font-size: 16px; line-height: normal;font-weight:700;margin: 0 0 30px; color: var(--dark-grey); font-family: var(--red-hat-font);}
.h7 {font-size: 12px; line-height: normal;font-weight:700;margin: 0 0 30px; color: var(--red); font-family: var(--red-hat-font);display: block;}


p { font-size: 16px;line-height: 24px; font-weight: 500;color: var(--dark-grey-70);margin-bottom: 30px;}
p:last-child { margin-bottom: 0px; }
p:empty { display: none; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.switch-column {
    flex-direction: row-reverse;
}
.overflow-hidden {
    overflow: hidden;
}

ul,li,ol {
    margin: 0;
    padding: 0;
}

.list-unstyled li::before {
    display: none;
}

.list-unstyled li,
.site-content .list-unstyled li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.site ul li{
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding-left: 25px;
    margin: 0 0 18px;
    position: relative;
    color: var(--dark-grey-70);
}
.site ol {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0 0 18px;
    position: relative;
    color: var(--dark-grey-70);
}

.site ol li {
    list-style: decimal;
    position: relative;
    padding-left: 5px;
    margin-bottom: 30px;
    margin-left: 25px;
}
.site ol li:last-child{
    margin-bottom: 0px;
}
.site ul li {
    list-style-type: none;
}
.site ul li b,.site ol li b  {
    color: var(--red);
}

.site ul li ol li {
    list-style-type: inherit;
}
.site ul li ol li::before {
    display: none;
}

.site ul,
.site ol {
    margin-bottom: 40px;
}
.site ul:last-child, .site ol:last-child{
    margin-bottom: 0px;
}
.site ol li:last-child,
.site ul li:last-child {
    margin-bottom: 0;
}

.site ul li:before {
    position: absolute;
    content: "";
    top: 10px;
    left: 10px;
    right: auto;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--dark-grey-70);
}

.site ul li a,.site ol li a{
    text-decoration: underline;
    color: var(--red);
}
.site ul li a:hover,.site ol li a:hover{
    color: var(--dark-red);
}

a.btn {
    background-color:var(--yellow);
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    margin: 5px 0;
    padding: 5px 10px;
    transition: .3s;
}
a.btn {
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 12px 20px;
    border-radius: 30px;
    transition: var(--transition);
    line-height: normal;
    background: var(--yellow);
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-grey);
    display: inline-flex;
    justify-content: center;
    text-decoration: none !important;
    width: max-content;
}
a.btn:hover{
    background: var(--dark-yellow);
}
.btn.icon{
    display: inline-flex;
    align-items: center;
}
.btn.icon img{
    margin-right: 10px;
    width: 24px;
    height: 24px;
    object-fit: contain;
}
/*gravity form*/
.gform_footer .gform_ajax_spinner{
    position: absolute !important;
    width: 25px;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
}
.inline-cta {
    color: var(--red);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: normal;
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.inline-cta:after {
    content: "";
    height: 24px;
    width: 24px;
    display: block;
    background-image: url(images/icons/icon-chevron-right-red.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 2px;
}
.inline-cta:hover:after{
    background-image: url(images/icons/icon-chevron-right-red-dark.svg);
}
.site-content{
    border-radius: var(--border-radius-16);
    border: var(--border);
    background: var(--white);
    box-shadow: var(--box-shadow);
    padding: 20px;
    height: auto;
    position: relative;
    overflow: hidden;
}
.main-site-right{
    padding: 20px;
    width: calc(100% - 355px);
}
.main-site-left{
    padding: 0px;
    height: 100vh;
    z-index: 1;
    position: relative;
    width: 355px;
}

.mb-40{
    margin-bottom: 40px;
}
.pb-40{
    padding-bottom: 40px;
}
.main-site-right .container{
    padding: 0px;
}
.new-header .footer-logo,.new-header .social-icon{
    display: none;
}
.left-col{
    padding-right: 10px;
}
.right-col{
    padding-left: 10px;
}
/*------ Header Title -------*/
.header-title{
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
}
.header-title h2{
    margin-bottom: 0px;
}
.body-hidden{
    overflow: hidden;
}
/*----------- Header Start -------------*/
.sidebar-wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 355px;
    padding: 20px 0px 20px 20px;
    height: 100%;
}
.header-inner{
    overflow-y: auto;
    height: 100%;
}
.site-branding{
    padding: 20px 16px;
}
.site-branding img {
    max-width: 180px;
}
.header-inner-top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}
.lang-btn{
    border-radius: var(--border-radius-16);
    border: var(--border);
    padding: 7px 10px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
    color: #596073;
}

.lang-btn::before{
    content: "";
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(images/icons/icon-language.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 6px;
    flex-shrink: 0;
}

.header-main ul li a svg,.header-main ul li a img{
    width: 24px;
    height: 24px;
    margin-right: 12px;
}
.header-main ul{
    margin-bottom: 0px;
}
.header-main ul li{
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    padding-left: 0px;
}
.header-main ul li a{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-grey);
    text-decoration: none;
    padding: 17px 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.header-main ul li.active::after{
    content: "";
    position: relative;
    display: block;
    position: absolute;
    bottom: 0px;
    border-radius: 16px;
    width: 100%;
    height: 2px;
    left: 0px;
    background: var(--red);
    overflow: hidden;
}
.header-main ul li.active:hover a{
    background: var(--white);
}

.header-main ul li:not(:last-child){
    margin-bottom: 10px;
}
.header-main ul li.active{
    border: var(--border);
    background: var(--white);
}

.header-main ul li:hover a{
    color: var(--dark-grey);
    background: #DBE6EC;
}
.header-main ul li.active a{
    color: var(--red);
}
.header-main ul li.active a svg path{
    fill: var(--red);
}
.header-main ul li a[target=_blank]::after {
    content: "";
    position: relative;
    background-image: url(images/icons/icon-external-link.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    display: block;
    margin-left: 6px;
}

/*------ User Account -----*/
.user-account-wrap{
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--border-radius-16);
    border: var(--border);
    box-shadow: var(--box-shadow);
    padding: 8px 16px 8px 8px;
}
.user-account-wrap .user-account-profile,.user-account-wrap .user-account-setting{
    display: flex;
}
.user-profile-detail h6{
    margin-bottom: 2px;
}
.user-profile{
    border-radius: var(--border-radius-8);
    background: var(--yellow);
    margin-right: 10px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-image.user-profile{
    background: var(--white);
}
.user-profile img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user-profile-detail p{
    margin-bottom: 0px;
}
.user-profile h3{
    height: 100%;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}
.user-profile-detail span{
    font-size: 12px;
    line-height: normal;
    font-weight: 600;
    color: var(--dark-grey-50);
    margin-bottom: 3px;
}
.user-profile-detail p{
    font-size: 12px;
    line-height: normal;
    font-weight: 600;
    color: var(--dark-grey);
}
.user-account-setting a img{
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 30px;
    background: #EAF2F6;
}
.user-account-setting a img:hover{
    background: #DBE6EC;
}
.user-account-setting a:not(:last-child){
    margin-right: 10px;
}
.user-profile-detail{
    display: flex;
    flex-direction: column;
}
.sidebar-wrapper .site-header{
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.user-account{
    margin-top: 30px;
}


.sidebar-sticky-container{
    position: relative;
}
.menu-icon a{
    border-radius: 46px;
    border: var(--border);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-icon a .menu-open{
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.menu-icon a .menu-close{
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.menu-icon{
    display: none;
}
.mobile.user-account{
    display: none;
}
.user-account-setting a span{
    display: none;
}
.user-account-setting a + a{
    margin-left: 0px;
}
.lang-wrapper.mobile{
    display: none;
}
/*----------- Header End -------------*/

/*----------- Footer Start -------------*/
.footer-logo img {
    max-width: 180px;
    margin: 0 auto;
}
.footer-wrap{
    margin: 0 auto;
    text-align: center;
}
footer{
    margin-top: 20px;
}
.footer-logo{
    margin-bottom: 22px;
}
footer .social-icon{
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}
footer .social-icon a{
    width: 32px;
    height: 32px;
    padding: 2px;
    border-radius: 30px;
    background: #DBE6EC;
    flex-shrink: 0;
    transition: var(--transition);
}
footer .social-icon a:hover{
    background: var(--dark-grey-70)
}
footer .social-icon a:hover img{
    filter: brightness(0) invert(1);
}
footer .social-icon a + a{
    margin-left: 0px;
}
footer .social-icon a:not(:last-child){
    margin-right: 10px;
}
.footer-menu ul{
    display: flex;
    justify-self: center;
    margin-bottom: 20px !important;
}
.footer-menu ul li{
    list-style: none;
    padding: 0px;
    margin: 0px;
    line-height: normal;
}
.footer-menu ul li a{
    font-size: 12px;
    line-height: normal;
    font-weight: 600;

}
.footer-menu ul li:not(:last-child){
    margin-right: 20px;
}
.footer-menu ul li::before{
    display: none;
}
.footer-menu ul li a{
    text-decoration: none;
    color: var(--dark-grey);
}
.footer-menu ul li a:hover{
    color: var(--dark-red);
}
.copyright-text p{
    font-size: 12px;
    line-height: normal;
    font-weight: 600;
    color: var(--dark-grey-50);
    margin-bottom: 20px;
}
/*----------- Footer End -------------*/


/*--------- Gravity Form Start -------*/
body .gform_wrapper.gravity-theme .gfield_label{
    font-size: 16px;
    line-height: normal;
    color: var(--dark-grey);
    font-weight: 600;
    margin-bottom: 12px;
    text-align: left;
    width: 100%;
}
body .gform_wrapper input, body select, body textarea {
    background-color: #fff;
    border: 1px solid rgba(0, 53, 72, 0.10) !important;
    border-radius: var(--border-radius-8) !important;
    color: var(--dark-grey);
    font-family: var(--red-hat-font);
    font-size: 16px !important;
    font-weight: 500;
    letter-spacing: 0;
    line-height: normal;
    padding: 15.5px 16px !important;
    width: 100%;
    box-shadow: var(--box-shadow);
}
body .gform_wrapper input:focus{
    border: 1px solid #293B44 !important;
    outline: 1px solid #293B44;
    outline-offset: -2px;
}
body .gform_wrapper input::placeholder, body select::placeholder, body textarea::placeholder {
    color: var(--dark-grey-70);
}

body select, select:focus {
    -webkit-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background-image: url(images/icons/icon-chevron-down.svg);
    background-repeat: no-repeat;
    outline: none;
    background-position: calc(100% - 16px) 50%;
    padding: 15.5px 16px !important;
    width: 100%;
}
.gform_wrapper.gravity-theme .gform_validation_errors{
    display: none;
}
body .gform_wrapper.gravity-theme .gfield_error .gfield_label .gfield_required,
body .gform_wrapper.gravity-theme .gfield_error label, body .gform_wrapper.gravity-theme .gfield_error legend {
    color: var(--red);
}
body .gform_wrapper.gravity-theme .gfield_validation_message, body .gform_wrapper.gravity-theme .validation_message{
    background: transparent;
    border: none;
    color: var(--red);
    font-size: 16px;
    line-height: normal;
    padding: 0px;
    font-weight: 500;
    margin-top: 10px !important;
}
.gform_confirmation_message{
    font-size: 16px;
    line-height: normal;
    color: var(--dark-grey);
    text-align: center;
    background-color: var(--yellow);
    padding: 14px;
    border-radius: var(--border-radius-8);
    font-family: var(--red-hat-font);
    font-weight: 700;
}
body img.gform_ajax_spinner {
    width: 40px;
    padding-left: 10px;
    background: #fff;
    flex-shrink: 0;
}
.gform_required_legend{
    display: none;
}
.has_first_name label{
    text-align: left;
    padding-top: 0px !important;
    margin-bottom: 16px;
    font-size: 16px !important;
    line-height: normal;
}
.gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full),
.gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full){
    padding-right: 15px !important;
}
.gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full){
    padding-left: 15px !important;
    padding-right: 0px !important;
}
.gform_wrapper.gravity-theme .gform_fields{
    grid-column-gap: 30px !important;
    grid-row-gap: 30px !important;
}
.strength-list li{
    padding-left: 20px !important;
    margin: 0 0 10px !important;
    font-size: 12px !important;
    line-height: normal !important;
}
.strength-list li:last-child{
    margin-bottom: 0px !important;
}
.strength-list li span::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    background-image: url(images/icons/icon-password-check-green.svg);
    background-repeat: no-repeat;
    left: 0px;
}
.strength-list li.check span::before{
    background-image: url(images/icons/icon-password-check-green.svg);
}
.strength-list li.error span::before{
    background-image: url(images/icons/icon-password-check-red.svg);
}
#popover-password span{
    font-size: 12px;
    font-weight: 500;
    color: var(--dark-grey-70);
    line-height: normal;
    margin-bottom: 5px;
    display: block;
}
.strength-list li:last-child span{
    margin-bottom: 0px !important;
}
body .gform_wrapper .gform_footer .gform_button,
body .gform_wrapper .gform_page_footer .gform_button {
    background-color: var(--yellow);
    border: none !important;
    border-radius: 30px !important;
    color: var(--dark-grey);
    cursor: pointer;
    font-family: var(--red-hat-font) !important;
    font-size: 16px !important;
    font-weight: 700;
    line-height: normal;
    outline: none;
    padding: 13.5px 47px 13.5px 20px !important;
    position: relative;
    text-align: center;
    z-index: 1;
    transition: var(--transition);
    width: max-content;
    margin: 0;
    background-image: url(images/icons/icon-chevron-right.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: right 20px center;
}
body .gform_wrapper .gform_footer .gform_button:hover,
body .gform_wrapper .gform_page_footer .gform_button:hover{
    background-color: var(--dark-yellow);
    background-image: url(images/icons/icon-chevron-right.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: right 20px center;
}
.gform_wrapper.gravity-theme .field_description_above .gfield_description{
    padding-bottom: 0px !important;
}
.gform_wrapper.gravity-theme .gform_footer{
    margin: 30px 0px 0px 0px !important;
    padding: 0px !important;
}
/*------------- pagination -----------*/

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pagination .page-numbers {
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.pagination .page-numbers {
    height: 43px;
    width: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-grey);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: normal;
    text-align: center;
    border-radius: 10px;
    transition: var(--transition);
}
.pagination .page-numbers.current{
    background-color: var(--red);
    color: var(--white);
}
.pagination .page-numbers:hover {
    background-color: #DBE6EC;
    color: var(--dark-grey);
}
.pagination .page-numbers.page-disabled {
    opacity: 0.5;
    cursor: auto;
    background-color: transparent;
}
.pagination .page-numbers.next {
    background-color: transparent;
    margin-left: 20px;
    width: auto;
    font-size: 16px;
}
.pagination .prev.page-numbers {
    margin-right: 20px;
    background-color: transparent;
    width: auto;
    font-size: 16px;
}

.pagination .page-numbers.next::after {
    content: "";
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(images/icons/pagination-next.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 4px;
    transition: var(--transition);
}
.pagination .page-numbers.next:hover::after{
    background-image: url(images/icons/pagination-next-red.svg);
}
.pagination .page-numbers.prev::before {
    content: "";
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(images/icons/pagination-prev.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 4px;
    transition: var(--transition);
}
.pagination .page-numbers.prev:hover::before{
    background-image: url(images/icons/pagination-prev-red.svg);
}
.pagination .page-numbers.next:hover,.pagination .prev.page-numbers:hover{
    color: var(--red);
}

.loading {
    display: none;
    height: 100%;
    background-color: rgb(255 255 255 / 50%);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.loading span {
    -webkit-animation: load8 .7s linear infinite;
    animation: load8 .7s linear infinite;
    border: 3px solid #ededed;
    border-left-color: var(--red);
    border-radius: 100%;
    height: 50px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 30% !important;
    transform: translateX(-50%);
    width: 50px;
    z-index: 999;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.post-rows{
    position: relative;
}
.single .site-content{
    overflow: unset;
}
.usernotloggedin .menu-icon{
    opacity: 0;
    pointer-events: none;
}