@import './banner.css';

*:focus{
    outline: none;
}
body.no-scroll #content,
body.no-scroll .site-footer{
    opacity: 0;
}
header{
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 600;
}
button,a{
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 600;
}
#faq{
    max-width: 936px;
    margin: auto;
    padding: 0;
    font-size: 22px;
    color: #333333;
}

#faq h1{
    text-transform: uppercase;
    display: flex;
    align-self: center;
    justify-content: center;
    font-weight: 900;
    text-align: center;
    position: relative;
}
#faq h1 span{
    padding: 0 30px;
    font-size: 40px;
}
#faq h1:before{
    content: url('../img/quest-icon.png');
    padding-top: 7px;
}
#faq h1:after{
    content: url('../img/text-icon.png');
    padding-top: 7px;
}
.faq__header{
    width: 100%;
    background-color: #f4f4f4;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}
.faqHeaderBtn{
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% / 4 + 5px);
    height: 100%;
    background-color: #D2D8EC;
    border-radius: 50px;
    z-index: 1;
    transition: all 0.5s;
}
.faq__header-item{
    width: 100%;
    text-align: center;
    color: #064278;
    padding: 18px 25px;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    z-index: 2;
}
.faq__header-item.active{
    z-index: 3;
}
.faq__submenu-wrapper{
    position: absolute;
    top: 90%;
    opacity: 0;
    left: 10%;
    width: 80%;
    padding-top: 10px;
    z-index: -1;
    transition: all 0.3s;
}
.faq__body-item--has-submenu.active{
    z-index: 10;
}
.faq__body-item--has-submenu.active .faq__submenu-wrapper{
    top: 100%;
    opacity: 1;
    
}
.faq__submenu, .sub-menu{
    padding: 10px;
    border-radius: 6px;
    background-color: #D2D8EC;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
}
.onepress-menu ul.sub-menu{
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
    background-color: #D2D8EC;
    left: calc(50% - 120px);
    width: 220px;
}
header .header-right-wrapper{
    padding-right: 30px;
}
.faq__submenu .faq__header-item, .sub-menu li{
    border-radius: 6px;
    margin-bottom: 5px;
}
.faq__submenu .faq__header-item:hover, .sub-menu li:hover, .onepress-menu ul li.current-menu-item > a{
    background-color: #ffffff;
    color: #064278;
    border-radius: 6px;
}
.sub-menu li:hover{
    background-color: rgba(255, 255, 255, 0.61);
	color: #064278;
    border-radius: 6px;
}
.sub-menu li.afterclick{
    background-color: #ffffff;
}
.onepress-menu ul li a{
    border: 0;
    background: transparent;
    /* font-family: 'Montserrat'; */
    font-size: inherit;
    color: #064278;
    font-size: 14px;
    text-align: center;
}
.onepress-menu ul li a:hover{
    color: #064278;
}
.onepress-menu .menu-item > a{
    padding: 10px 7px 10px 7px;
    text-transform: none;
    font-size: 14px;
	font-weight: 600;
}
.faq__submenu .faq__header-item.active{
    background-color: rgba(255, 255, 255, 0.61);
}
.faq__submenu::before, .sub-menu .menu-item:first-child::before{
    content: '';
    position: absolute;
    top: -10px;
    left: calc(50% - 5px);
    border: 10px solid transparent;
    border-bottom: 10px solid #D2D8EC;
}
.sub-menu .menu-item:first-child::before{
    top: -27px;
}
.faq__submenu-wrapper .faq__header-item{
    width: auto;
    padding: 8px;
    font-size: 20px;
}
.faq__body{
    display: none;
    opacity: 0;
    transition: all .5s;
}
.faq__body.open{
    display: block;
    opacity: 1;
    z-index: 5;
    position: relative;
}
.faq__body-item{
    border-bottom: 2px solid #F4F4F4;
    width: calc(100% - 40px);
    margin: auto;
}
.body-item__header{
    display: flex;
    align-items: center;
}
.body-item__header p{
    width: 100%;
    padding: 20px 0;
    margin: 0;
}
.body-item__trigger{
    background: url('../img/plus-icon.png') no-repeat center/cover;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s;
}
.body-item__header.active .body-item__trigger{
    transform: rotate(45deg);
}
.body-item__target{
    font-size: 80%;
    overflow: hidden;
    height: 0;
    padding: 0 60px 0 20px;
    opacity: 0;
    color: #555555;
    transition: all .5s;
}
.body-item__target.open{
    height: auto;
    overflow: auto;
    opacity: 1;
    position: relative;
    padding: 0 60px 20px 20px;
}
.body-item__target.open:before{
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    border: 5px solid transparent;
    border-left: 10px solid #656565;
}

.faq__form{
    padding-top: 60px;
	font-family: "Montserrat", Ralevay, serif;
}
.faq__form p{
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    line-height: 23px;
}
.faq__form form{
    max-width: 580px;
    margin: 0px auto 30px auto;
}
.faq__form input,
.faq__form textarea{
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    display: block!important;
    padding: 14px!important;
    height: auto!important;
    font-size: 18px!important;
    font-weight: 400!important;
    margin-bottom: 10px!important;
    border-radius: 8px!important;
    width: calc(100%)!important;
    background-color: #f4f4f4!important;
    border: 0!important;
}
.faq__form input:focus,
.faq__form textarea:focus{
    outline: 0;
}
.faq__form input::placeholder,
.faq__form textarea::placeholder{
    color: #A9A8A8;
}
#faq button, #banner .btn,
.faq__form [type="submit"],
.ext-type-btn,
.subscribe-form div.wpforms-container-full .wpforms-form button[type=submit],
.subscribe-form button,
header .header-modal a.ext-type-btn{
    background-color: #064278;
    font-size: 24px;
    color: #ffffff;
    border: 0;
    padding: 18px;
    width: calc(100%);
    border-radius: 50px;
    margin-top: 0;
    cursor: pointer;
    box-shadow: 0 3px #D2D8EC;
    line-height: 1.2;
	position: relative;
	top: 0;
    transition: all 0.3s;
}
#faq button:hover, #banner .btn:hover,
.faq__form [type="submit"]:hover,
.ext-type-btn:hover,
.subscribe-form div.wpforms-container-full .wpforms-form button[type=submit]:hover,
.subscribe-form button:hover,
header .header-modal a.ext-type-btn:hover{
    box-shadow: none;
    position: relative;
    top: 3px;
	color: #ffffff;
	transition: all 0.3s;
}
.onepress-menu, .onepress-menu *{
    margin-top: -2px;
}
header .header-modal a.ext-type-btn.ext-type-btn--whatsapp{
    margin-left: 20px;
    padding-right: 35px;
    text-transform: none;
    position: relative;
    background: #064278 url('../img/whatsapp-icon.svg') no-repeat 92% center/16px 16px;
}
header .header-modal a.ext-type-btn.ext-type-btn--whatsapp span{
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #43D854;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 400;
    word-break: break-word;
    padding: 0 10px;
    color: #ffffff;
    z-index: 9999;
    border: 1px solid #43D854;
}
header .header-modal a.ext-type-btn.ext-type-btn--whatsapp:hover span{
    display: flex;
}
header .header-modal a.ext-type-btn.ext-type-btn--whatsapp:hover{
    background-color: #43D854;
	color: #ffffff!important;
}
#faq button.faq__gotoform{
    max-width: 356px;
    margin: 0 auto 50px auto;
    margin-top: 60px;
    display: block;
}
header .header-modal{
    margin: auto;
}
.ext-topbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.ext-topbar .ext-type-btn,
header .header-modal a.ext-type-btn{
    padding: 8px 15px;
    width: auto;
    font-size: 13px;
	font-weight: 500;
    text-transform: uppercase;
    margin: 0 5px 0 5px;
	font-family: Montserrat, 'Raleway';
	outline: none;
}
header #searchform{
    position: static;
    transform: none;
    background-color: #f4f4f4;
    border-radius: 50px;
}
.site-logo{
    width: 210px;
    height: 50px;
    background: url('../img/logo.png') no-repeat center / cover;
}
.site-logo-caption{
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    padding-top: 5px;
    color: #064278;
}
.visually-impaired{
    width: 38px!important;
    height: 25px;
    padding: 0;
    margin-left: 5px!important;
    background: url(../img/glass.png) no-repeat center / 20px 12px;
    border-right: 1px solid;
    border-radius: 0!important;
}
.search{
    display: flex;   
}
header .search-trigger{
    position: static;
    height: auto;
    width: 32px;
    background: #064278 url('../img/search-icon.svg') no-repeat center / 12px;
    border-radius: 0 50px 50px 0;
}
header .search-trigger:hover{
    background: #4cbedb url('../img/search.png') no-repeat center / 12px;
    filter: none;
}
header .input{
    padding: 5px 8px;
    position: static;
    width: 165px;
}
header .header-modal a:not(.ext-type-btn){
    color: #333333!important;
    background-color: transparent;
    line-height: 1.3;
}
.header-modal__top,
.header-modal__bot{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-modal__top{
    padding-bottom: 10px;
}
.header-modal__top .tel{
    font-size: 17px;
}
header .header-modal a.ext-type-btn{
    margin: 0;
}
.site-header{
    line-height: 1.3;
    padding: 7px 0;
}
.site-header.no-scroll{top: 0}
.logged-in .site-header{
    top: 32px;}
header .header-modal a{
    width: auto;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.topbar{
    display: none;
}
.menu-item-has-children>a:after{
    content: "\f107";
    font: normal normal normal 14px/1 FontAwesome;
    padding-left: 7px;
    font-size: 16px;
}
html body a.bvi-link-widget .bvi-svg-eye, html body a.bvi-link-shortcode .bvi-svg-eye{
    width: 20px!important;
}

/* MODALS */
.modal-wrapper, .subscribe-form.second-step{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    overflow: auto;
    background-color: rgba(0,0,0,0.3);
    z-index: 9999;
    display: none; 
}
.modal-inner{
    max-width: 400px;
    width: 100%;
    margin: auto;
    background: #fff;
    padding: 20px;
    border: 2px solid #d2d8ec;
    border-radius: 14px;
}

/* SUBSCRIBE */
.subscribe-form{
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
    display: none;
}
.subscribe-form .close{
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 60px;
    line-height: 0;
    font-weight: 300;
    color: #0f0f0f;
    transform: rotate(45deg);
}
.subscribe-form p{
    padding: 20px 0;
    font-size: 18px;
    text-align: center;
    color: #0f0f0f;
}
.subscribe-form__mainimg{
    background: url('../img/subscribe.png') no-repeat center / cover;
    width: 183px;
    height: 183px;
    margin-bottom: 20px;
}
.subscribe-form .wpforms-container{
    width: 100%;
    margin: 0;
}
.subscribe-form div.wpforms-container-full .wpforms-form button[type=submit],
.subscribe-form button{
    padding: 10px;
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
}
.subscribe-form__second-step{
    margin: auto;
    max-width: 380px;
}
.subscribe-form__first-step p{
    font-size: 20px;
    color: #064278;
    margin: 0;
    padding-right: 30px;
}
.subscribe-form__second-step{
    display: none;
}
.subscribe-form.first-step{
    position: fixed;
    left: 0;
    right: 0;
    background: #fff url('../img/chevron.png') no-repeat 80% 0 / auto 100%;
    border-top: 2px solid #064278;
    bottom: 0;
    display: block;
    height: auto;
}
.subscribe-form.second-step{
    display: flex;
}
.subscribe-form.second-step .subscribe-form__second-step{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 12px;
    position: relative;
}
.subscribe-form.second-step .subscribe-form__first-step{
    display: none;
}
.subscribe-form__first-step{
    display: flex;
    align-items: center;
    justify-content: center;
}
.subscribe-form__first-step button{
    width: 180px;
    font-weight: 600;
    font-size: 17px;
}
.chevron-up{
    width: 64px;
    height: 80px;
    background: url('../img/chevron.png') no-repeat center/cover;
    transform: rotate('-45deg');
    display: none;
}

#nav-toggle{
    background: #064278;
    border-radius: 50%;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after,
#nav-toggle.nav-is-visible span:before,
#nav-toggle.nav-is-visible span:after{
    background-color: #fff;
}

.footer__logo .custom-logo-link img{
	display: block;
	margin: auto;
}

@media (max-width: 1024px){
	.site-header.header-fixed{
        top: -116px!important;
    }
	.logged-in .site-header.header-fixed{
        top: -70px!important;
    }
	.site-header.header-fixed.no-scroll{
		top: 0!important;
	}
	.logged-in .site-header.header-fixed.no-scroll{
		top: 46px!important;
	}
	.logged-in .site-header {
    	top: 46px;
	}
	.site-header.header-fixed{
		
	}
    header .container.mobile-header{
        max-width: 385px;
        width: 100%;
    }
    #faq{
        font-size: 16px;
        padding-top: 100px;
    }
    .faq__submenu-wrapper{
        width: 120%;
        left: -10%;
    }
    .faq__header-item,
    .faq__submenu-wrapper .faq__header-item{
        font-size: 14px;
        padding: 12px 5px;
    }
    #faq h1 span{
        font-size: 30px;
    }
    #faq h1:before{
        position: absolute;
        top: -80px;
        left: calc(50% - 83px);
    }
    #faq h1:after{
        position: absolute;
        top: -80px;
        right: calc(50% - 83px);
    }
    #faq button, #banner .btn{
        font-size: 16px;
        padding: 12px;
    }
    #faq button.faq__gotoform{
        width: 236px;
        margin: 50px auto;
    }
    .body-item__target{
        font-size: 15px;
        padding: 0 30px 0 20px;
    }
    .body-item__target.open{
        padding: 0 30px 20px 20px;
        color: #656565;
    }
    .body-item__header p{
        padding: 10px 20px 10px 0;
        line-height: 1.2;
    }
    .body-item__trigger{
        width: 15px;
        height: 15px;
    }
    /* HEADER */
    .site-header{
        position: fixed;
        top: 0;
    }
    header .container{
        flex-direction: column;
        padding: 0 5px;
    }
    header .header-modal{
        display: flex;
        justify-content: space-between;
        margin: 0;
        padding: 3px 0 7px 0;
    }
    header .search{
        width: auto;
    }
    header .input{
        width: 0;
        overflow: hidden;
        padding: 0;
    }
    .header-modal__top .tel{
        font-size: 14px;
        padding: 5px;
    }
    header .header-right-wrapper{
        margin: 0;
        padding: 0;
        border-top: 1px solid #e3e3e3;
        border-bottom: 1px solid #e3e3e3;
    }
    .ext-topbar .ext-type-btn, header .header-modal a.ext-type-btn{
        font-weight: 600;
        font-size: 11px;
        background-color: #ffffff;
        color: #064278;
        border: 1px solid;
        box-shadow: none;
        padding: 8px 10px;
        margin: 0 1px;
        text-align: center;
    }
	.ext-topbar .ext-type-btn:focus, header .header-modal a.ext-type-btn:focus,
	.ext-topbar .ext-type-btn:active, header .header-modal a.ext-type-btn:active{
		background-color: #064278;
		color: #ffffff;
		outline: none;
	}
    header .site-branding{
        display: flex;
        align-items: center;
        margin: 11px 0;
        justify-content: space-between;
    }
    .site-branding .onepress-menu{
        position: absolute;
        top: 100%;
        left: 0;
        height: 0;
        transition: all .5s ease-out;
        z-index: 99999;
        overflow: auto;
    }
    .site-branding .onepress-menu.active{
        left: 0;
        top: 100%;
        min-height: 100vh;
        width: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 0 60px 0;
    }
    .site-branding__wrapper{
        display: flex;
        align-items: center;
    }
    .site-logo{
        width: 167px;
        height: 40px;
    }
    .site-logo-caption{
        width: 90px;
        text-align: left;
        font-size: 13px;
        padding-left: 5px;
        padding-top: 0;
    }
    header .header-modal a{
        line-height: 1.3;
    }
    #nav-toggle.nav-is-visible{
        transition: all 0.5s ease-in;
    }
    #nav-toggle{
        width: 40px;
        height: 40px;
    }
    #nav-toggle span{
        right: 8px;
        margin-top: -1px;
    }
    #mobile-nav.onepress-menu ul.sub-menu{
        display: block;
        position: initial;
        padding: 0;
        background-color: #fff;
        box-shadow: none;
        border: 0;
        border-radius: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: all .3s;
    }
    #mobile-nav.onepress-menu ul.sub-menu.active{
        height: auto;
    }
    #mobile-nav .sub-menu .menu-item:first-child::before{
        content: none;
    }
    #mobile-nav.onepress-menu .menu-item{
        border-top: 1px solid #ddd;
    }
    #mobile-nav.onepress-menu .menu-item > a{
        padding: 7px 0;
        text-align: center;
        line-height: 1.5;
        color: #333;
        font-weight: 600;
        font-size: 18px;
        text-transform: none;
    }
    #mobile-nav.onepress-menu .menu-item.current-menu-item > a{
        background-color: #064278;
        color: #fff;
        border-radius: 6px;
        margin: 3px 0;
        text-align: center!important;
    }
    #mobile-nav.onepress-menu > li{
        width: 100%;
        padding: 10px;
    }
    #mobile-nav.onepress-menu .menu-item .sub-menu .menu-item > a{
        font-size: 14px;
    }
    #mobile-nav.onepress-menu .menu-item .sub-menu .menu-item{
        border-top: #eee;
    }
    .onepress-menu ul li.current-menu-item > a{
        background-color: #064278;
        color: #fff;
        border-radius: 6px;
        text-align: center!important;
    }
    .faq__submenu .faq__header-item, .sub-menu li{
        margin: 0 5px;
        border-radius: 0;
    }
    header .search-trigger{
        background-color: transparent;
        filter: brightness(0);
        height: 30px;
    }
    header #searchform{
        background-color: transparent;
    }
    header #searchform.active{
        position: fixed;
        top: 0px;
        left: 5px;
        background-color: #fff;
        padding: 10px 5px 5px 5px;
    }
    header #searchform.active input{
        width: calc(100vw - 10px)
    }
    header #searchform input{
        transition-duration: 0s;
    }
    .visually-impaired{
        margin-left: 0!important;
        border-left: 1px solid;
    }
    header .header-modal a.ext-type-btn.ext-type-btn--whatsapp{
        background: transparent;
        color: #43D854!important;
        border: 1px solid #43D854;
        font-size: 12px;
        padding: 8px 12px;
        margin: 0 10px;
    }
    .header-modal__top{
        width: 100%;
        justify-content: space-between;
        padding-top: 0;
    }
    .subscribe-form.first-step,
    .subscribe-form.second-step{
        left: 0;
        width: 100vw;
        max-width: none;
        bottom: 0;
        border: 0;
        border-top: 2px solid #064278;
        border-radius: 0;
        background-color: #f3f3f3;
    }
    .subscribe-form.second-step{
        background-color: rgba(0,0,0,0.3);
    }
    .subscribe-form__first-step{
        flex-direction: column;
        padding: 35px;
    }
    .subscribe-form.first-step{
        background: #ffffff;
    }
    .subscribe-form__first-step p{
        padding-right: 0;
    }
    .chevron-up{
        width: 64px;
        height: 80px;
        background: url(../img/chevron.png) no-repeat center/auto;
        transform: rotate(90deg);
        margin-top: 10px;
        display: block;
    }
    html body a.bvi-link-shortcode{
        padding: 0 5px!important;
        border-right: 2px solid;
        border-left: 2px solid;
        border-radius: 0!important;
        border-color: #ddd;
    }
    html body a.bvi-link-shortcode .bvi-svg-eye{
        width: 30px!important;
    }
    html body a.bvi-link-shortcode .bvi-svg-eye {
        width: 20px!important;
    }
}

@media (max-width: 410px){
    header .header-modal a.ext-type-btn.ext-type-btn--whatsapp{
        margin: 0;
    }
	.followWrap{
		height: 184px!important;}
/* 	.admin-bar .followWrap{height: auto!important;} */
	.logged-in .site-header.header-fixed{
		top: -116px!important;
	}
    .ext-topbar .ext-type-btn,
    header .header-modal a.ext-type-btn{
        padding: 8px 5px;
    	font-size: 3vw;
    	font-weight: bold;
    }
	.header-modal__top .tel{
		font-size: 10px;
	}
	#footer-alert{
		font-size: 20px!important;
	}
	.site-logo-caption{font-size: 10px}
	.site-branding__wrapper img{width: 150px}
}

.bvi-body #header-section .followWrap{
    height: auto!important;
}
.bvi-body .nav-toggle{
    border-radius: 0;
    width: 50px;
}

@media (max-width: 330px){
	
}