/*#region Fonts*/
@font-face{
    font-family: "boschsans";
    src:    url("../fonts/BoschSans-Light.woff2") format("woff2"),
            url("../fonts/BoschSans-Light.woff") format("woff");
    font-weight: 300;
}
@font-face{
    font-family: "boschsans";
    src:    url("../fonts/BoschSans-Regular.woff2") format("woff2"),
            url("../fonts/BoschSans-Regular.woff") format("woff");
    font-weight: 400;
}
@font-face{
    font-family: "boschsans";
    src:    url("../fonts/BoschSans-Medium.woff2") format("woff2"),
            url("../fonts/BoschSans-Medium.woff") format("woff");
    font-weight: 500;
}
@font-face{
    font-family: "boschsans";
    src:    url("../fonts/BoschSans-Bold.woff2") format("woff2"),
            url("../fonts/BoschSans-Bold.woff") format("woff");
    font-weight: 700;
}
@font-face{
    font-family: "boschsans";
    src:    url("../fonts/BoschSans-Black.woff2") format("woff2"),
            url("../fonts/BoschSans-Black.woff") format("woff");
    font-weight: 900;
}
/*#endregion*/

/*#region General*/
html{
    -webkit-tap-highlight-color: unset;
}
body{
    background-color: #fff;
    color: #000;
    font-family: "boschsans", Helvetica, Arial, sans-serif;
    font-weight: 300;
}
h1, h2, h3, h4{
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.02rem;
}
h1, h2, h3, p, span, ul, button, label{
    margin: 0;
    padding: 0;
}
section{
    padding: 60px 0;
}
h2{
    color: #003B6A;
    font-size: 34px;
    margin-bottom: 2rem;
    font-weight: 900;
}
h3{
    color: #003B6A;
    font-size: 34px;
    font-weight: 900;
}
h4{
    color: #003B6A;
    font-size: 26px;
    font-weight: 400;
    margin-top: .5rem;
    margin-bottom: 2rem;
}
a{
    color: #005691;
}
a:hover{
    color: #005691;
}
button{
    border: 0;
    background: none;
}
img:not([src]){
    visibility: hidden;
}
b, strong{
    font-weight: 500;
}

@media only screen and (max-width: 991.98px){
    h2{
        font-size: 32px;
        margin-bottom: 1.75rem;
    }
    h3{
        font-size: 32px;
    }
    h4{
        font-size: 24px;
        margin-bottom: 1.75rem;
    }
}
@media only screen and (max-width: 767.98px){
    h2{
        font-size: 28px;
        margin-bottom: 1.5rem;
    }
    h3{
        font-size: 28px;
    }
    h4{
        font-size: 22px;
        margin-top: .25rem;
        margin-bottom: 1.5rem;
    }
}
@media only screen and (max-width: 575.98px){
    h2{
        font-size: 24px;
        margin-bottom: 1.25rem;
    }
    h3{
        font-size: 24px;
    }
    h4{
        font-size: 20px;
        margin-bottom: 1.25rem;
    }
}
/*#endregion*/

/*#region Global classes*/
.sec_blue{
    background: #003B6A;
    color: #fff;
}
.sec_blue h2{
    color: #fff;
}

.container-xl{
    max-width: 1260px;
}

.tooltip{
    font-weight: 300;
}

.btn_primary{
    padding: .5rem 1rem;
    color: #fff;
    background-color: #005691;
    border: 1px solid #005691;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.btn_primary:hover:enabled{
    background-color: #003B6A;
    border: 1px solid #003B6A;
}
.btn_primary:disabled{
    opacity: .5;
    background-color: #A8AFB5;
    border: 1px solid #A8AFB5;
}

.btn_secondary{
    padding: .5rem 1rem;
    color: #007bc0;
    border: 1px solid #007bc0;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.btn_secondary:hover:enabled{
    background: rgba(0, 86, 145, .1);
}
.btn_secondary:disabled{
    opacity: .5;
    color: #A8AFB5;
    border: 1px solid #A8AFB5;
}

.link_ext{
    color: #fff;
    background: #005691;
    padding: .5rem 1rem;
    position: relative;
    transform: translateZ(0);
    border-bottom: 2px solid #008ecf;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    font-weight: 400;
}
.link_ext::before{
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: #1a679c;
    transform-origin: 50% 100%;
    transform: scaleY(0);
    transition: transform .3s ease-out;
    z-index: -1;
}
.link_ext:hover::before{
    transform: scaleY(1);
}
.link_ext:hover{
    color: #fff;
    text-decoration: none;
}
.link_ext span{
    margin-right: .5rem;
}

.ul1 li{
    list-style: none;
    position: relative;
    padding-left: 1.25rem;
    padding-right: .25rem;
    margin-bottom: .25rem;
}
.ul1 li::before{
    content: "";
    position: absolute;
    background: #003B6A;
    width: 6px;
    height: 6px;
    left: .25rem;
    top: 8px;
}

@media only screen and (max-width: 575.98px){
    .ul1 li{
        font-size: 14px;
    }
    .ul1 li::before{
        top: 6px;
    }
}

.hint_link{
    color: #003B6A;
}
.hint_link:hover{
    color: #003B6A;
    text-decoration: none;
}

/*#region focus classes*/
.focus{
    outline: none;
    transition: box-shadow .15s ease-in-out;
}
.focus:focus{
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}
.focus:focus:not(:focus-visible){
    box-shadow: none;
}
.focus:focus-visible{
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}
.focus:disabled{
    box-shadow: none;
}

.focus_inset{
    outline: none;
    transition: box-shadow .15s ease-in-out;
}
.focus_inset:focus{
    box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, .25);
}
.focus_inset:focus:not(:focus-visible){
    box-shadow: none;
}
.focus_inset:focus-visible{
    box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, .25);
}
.focus_inset:disabled{
    box-shadow: none;
}

.focus_strong{
    outline: none;
    transition: box-shadow .15s ease-in-out;
}
.focus_strong:focus{
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .5);
}
.focus_strong:focus:not(:focus-visible){
    box-shadow: none;
}
.focus_strong:focus-visible{
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .5);
}
.focus_strong:disabled{
    box-shadow: none;
}
/*#endregion*/
/*#endregion*/

/*#region Navigation*/
#navigation{
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1030;
}
.supergraphic_top{
    background-image: url("../img/required/supergraphic.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 10px;
}
.navigation_bar{
    height: 62px;
    display: flex;
    justify-content: space-between;
}
.navigation_bar_left{
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: 100%;
}
.nav_title{
    color: #003B6A;
    font-weight: 900;
    font-size: 34px;
}
.navigation_bar_right{
    display: flex;
    align-items: center;
}
.navigation_bar_left img{
    width: 40px;
    margin-right: .75rem;
}

#btn_menu{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#btn_menu:disabled{
    cursor: pointer;
}
.menu_lines{
    position: relative;
    width: 22px;
    height: 16px;
}
.menu_line{
    background: #000;
    height: 2px;
    width: 100%;
    position: absolute;
    transition: all .3s;
}
#btn_menu:hover .menu_line{
    background: #005691;
}
.menu_line_1{
    top: 0;
}
.menu_line_2{
    top: 7px;
    opacity: 1;
}
.menu_line_3{
    top: 7px;
    opacity: 1;
}
.menu_line_4{
    bottom: 0;
}
.menu_active .menu_lines .menu_line_1{
    top: 7px;
    opacity: 0;
    transform: scaleX(0);
}
.menu_active .menu_lines .menu_line_2{
    transform: rotate(45deg);
}
.menu_active .menu_lines .menu_line_3{
    transform: rotate(-45deg);
}
.menu_active .menu_lines .menu_line_4{
    bottom: 7px;
    opacity: 0;
    transform: scaleX(0);
}

.navlinks_content{
    padding-bottom: 1rem;
    overflow-y: auto;
    max-height: calc(100vh - 72px);
    width: 35%;
}
.nav-link{
    padding: .5rem .75rem;
    font-size: 18px;
    color: #000;
    border-left: 2px solid transparent;
    overflow: hidden;
    text-overflow: ellipsis;
    outline-offset: -5px;
}
.nav-link:hover{
    color: #000;
    background: #eff1f2;
}
#navlinks .active{
    color: #003B6A;
    background: #eff1f2;
    border-left: 2px solid #003B6A;
    font-weight: 500;
}

@media only screen and (max-width: 1199.98px){
    .nav_title{
        font-size: 32px;
    }
    .navlinks_content{
        width: 40%;
    }
}
@media only screen and (max-width: 991.98px){
    .nav_title{
        font-size: 30px;
    }
    .navlinks_content{
        width: 50%;
    }
}
@media only screen and (max-width: 767.98px){
    .nav_title{
        font-size: 28px;
    }
    #navlinks{
        margin: 0 -15px;
    }
    .navlinks_content{
        padding-bottom: .5rem;
        width: 100%;
    }
    .nav-link{
        font-size: 16px;
        padding: .5rem 15px;
        border: 0;
    }
    #navlinks .active{
        border: 0;
    }
}
@media only screen and (max-width: 575.98px){
    .nav_title{
        font-size: 26px;
    }
}
@media only screen and (max-width: 300px){
    .navigation_bar_left img{
        display: none;
    }
}
/*#endregion*/

/*#region Intro*/
#sec_introvid{
    padding: 0;
    padding-top: 72px;
    background: #000;
}
#sec_introtext{
    padding-bottom: 0;
}
.p_introtext{
    color: #003B6A;
    font-weight: 400;
    font-size: 18px;
}
@media only screen and (max-width: 575.98px){
    .p_introtext{
        font-size: 16px;
    }
}
/*#endregion*/

/*#region About*/
#sec_about{
    position: relative;
}
#sec_about::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .2);
}
.about_item{
    height: 100%;
    color: #003B6A;
    max-width: 400px;
    margin: 0 auto;
}
.about_item2{
    padding: 0;
}

.about_arrow{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}
.about_arrow img{
    width: 40px;
}

.about_item .image{
    display: flex;
    justify-content: center;
    margin-bottom: .5rem;
}
.about_item .image img{
    height: 110px;
}
.about_item .p_title{
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    margin-bottom: 1rem;
}
.about_item .p_text{
    font-weight: 400;
}

@media only screen and (max-width: 767.98px){
    .about_item2{
        padding: 2rem 0;
    }
    .about_arrow{
        display: none;
    }
}
/*#endregion*/

/*#region Advantages*/
#sec_adv{
    background: #01487E;
}
.adv_image{
    display: flex;
    align-items: center;
    justify-content: center;
}
.adv_image .img{
    position: relative;
}
.adv_image .img .img_bg{
    width: 100%;
    max-width: 1000px;
}

.btn_adv_tt{
    position: absolute;
    max-width: 380px;
}
#btn_adv_tt1{
    bottom: 20%;
    right: 74%;
    padding-right: 40px;
}
#btn_adv_tt2{
    top: 28%;
    right: 60%;
    padding-right: 40px;
}
#btn_adv_tt3{
    top: 20%;
    left: 72%;
    padding-left: 40px;
}
#btn_adv_tt4{
    bottom: 20%;
    left: 58%;
    padding-left: 40px;
}
.btn_adv_tt .img_icon{
    width: 60px;
}
.btn_adv_tt p{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn_adv_tt:hover p{
    color: #61a6cc;
}
.btn_adv_tt .plus{
    position: absolute;
    height: 40px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.btn_adv_tt .plus2{
    left: 0;
}
.btn_adv_tt .two .tt_img1{
    visibility: hidden;
    transform: rotate(45deg);
}
.btn_adv_tt .two .tt_img2{
    visibility: visible;
    transform: rotate(45deg);
}
.btn_adv_tt *{
    pointer-events: none;
}

.adv_pop{
    display: none;
    position: absolute;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .25);
    z-index: 999;
}
#adv_pop1{
    top: 0;
    left: 27%;
}
#adv_pop2{
    top: 0;
    left: 41%;
}
#adv_pop3{
    top: 0;
    right: 29%;
}
#adv_pop4{
    top: 0;
    right: 43%;
}
.adv_pop img{
    width: 100%;
}
.adv_pop .adv_text{
    padding: 1rem;
    background: #fff;
}
.adv_pop .adv_text .adv_title{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #003B6A;
}
.adv_pop .adv_text .adv_desc{
    font-weight: 400;
}
.adv_pop .hint_link{
    color: #000;
}
.btn_adv_pop_close{
    display: none;
	position: absolute;
	top: -1rem;
	right: -1rem;
	cursor: pointer;
	border-radius: 50%;
	background: #008ece;
	padding: .5rem;
}

@media only screen and (max-width: 1199.98px){
    .btn_adv_tt{
        max-width: 280px;
    }
}
@media only screen and (max-width: 991.98px){
    .btn_adv_tt{
        max-width: 200px;
    }
    .btn_adv_tt .img_icon{
        width: 50px;
    }
    .btn_adv_tt p{
        font-size: 18px;
    }
    .adv_pop{
        max-width: 360px;
    }
}
@media only screen and (max-width: 767.98px){
    .btn_adv_tt p{
        display: none;
    }
    #adv_pop1{
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    #adv_pop2{
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    #adv_pop3{
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    #adv_pop4{
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .btn_adv_pop_close{
        display: flex;
    }
}
@media only screen and (max-width: 575.98px){
    #btn_adv_tt1{
        padding-right: 30px;
    }
    #btn_adv_tt2{
        padding-right: 30px;
    }
    #btn_adv_tt3{
        padding-left: 30px;
    }
    #btn_adv_tt4{
        padding-left: 30px;
    }
    .btn_adv_tt .img_icon{
        width: 40px;
    }
    .btn_adv_tt .plus{
        height: 30px;
        width: 30px;
    }
    #adv_pop1{
        top: -30px;
    }
    #adv_pop2{
        top: -30px;
    }
    #adv_pop3{
        top: -30px;
    }
    #adv_pop4{
        top: -30px;
    }
}
@media only screen and (max-width: 420px){
    .adv_pop{
        max-width: 94%;
    }
}
@media only screen and (max-width: 300px){
    .btn_adv_tt{
        height: 30px;
        width: 30px;
    }
    .btn_adv_tt .img_icon{
        display: none;
    }
}
/*#endregion*/

/*#region How It Works*/
#sec_howitworks{
    position: relative;
}
#sec_howitworks::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .2);
}
.embed_container{
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    width: 100%;
}
/*#endregion*/

/*#region Try It Out*/
#sec_tryitout{
    background: #01487E;
    overflow: hidden;
}
#sec_tryitout h2{
    color: #fff;
}
#clickdummy{
	padding: 60px 0;
}
.clickdummy_container{
	display: flex;
	justify-content: center;
}
.clikdummy_wrapper{
	position: relative;
}
.clickdummy_content{
	border: 10px solid #ccc;
	border-radius: 40px;
	overflow: hidden;
	background: rgb(170, 170, 170);
	position: relative;
	min-width: 350px;
	max-width: 350px;
}
.clickdumy_img{
	display: flex;
}
.clickdumy_img img{
	display: none;
	width: 100%;
}
#img_cd_0{
	display: block;
}

.clickdummy_btn_back:hover{
	opacity: 1;
}
.clickdummy_btn{
	display: none;
	border-radius: 50%;
	border: 3px solid rgba(0, 142, 206, 1);
	position: absolute;
	cursor: pointer;
	animation: clickdummy_btn_anim ease-in-out 1.5s;
  	animation-iteration-count: infinite;
}
.clickdummy_btn:hover{
	animation: none;
	border: 3px solid rgba(0, 142, 206, 0);
	background: rgba(0, 142, 206, .5);
	transform: scale(1.1);
}
#btn_clickdummy_back{
	width: 40px;
	height: 40px;
	top: 9px;
    left: 36px;
}
#btn_clickdummy_done{
	width: 40px;
	height: 40px;
	top: 6px;
    left: 278px;
}

@keyframes clickdummy_btn_anim{
	0%{
		transform: scale(0.8);
		border: 3px solid rgba(0, 142, 206, 1);
	}
	100%{
		transform: scale(1.1);
		border: 3px solid rgba(0, 142, 206, 0);
	}
}

#btn_clickdummy1{
	display: block;
	width: 60px;
	height: 60px;
	top: 126px;
    left: 55px;
}
#btn_clickdummy2{
	display: block;
	width: 40px;
	height: 40px;
	top: 10px;
	left: 5px;
}
#btn_clickdummy3{
	width: 40px;
	height: 40px;
	top: 106px;
    right: 40px;
}
#btn_clickdummy4{
	width: 60px;
	height: 60px;
	top: 346px;
    left: 55px;
}
#btn_clickdummy5{
	width: 60px;
	height: 60px;
	top: 336px;
    left: 82px;
}
#btn_clickdummy6{
	width: 50px;
    height: 50px;
    top: 145px;
    left: 222px;
}
#btn_clickdummy7{
	width: 30px;
    height: 30px;
    top: 352px;
    left: 245px;
}
#btn_clickdummy8{
	width: 50px;
    height: 50px;
    top: 331px;
    left: 212px;
}


.cd_modal_container{
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, .7);
	z-index: 99;
}
.cd_modal{
	display: none;
	background: #fff;
	color: #000;
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 1rem;
}
.modal_close_btn{
	position: absolute;
	top: -1rem;
	right: -1rem;
	cursor: pointer;
	border-radius: 50%;
	background: #008ece;
	display: flex;
	padding: .5rem;
}
.btn_close_modal{
	outline: none;
	border-radius: 0;
	padding: .25rem .75rem;
	background: transparent;
	background: #008ece;
	color: #fff;
}
.btn_close_modal:hover{
	background: #007cb5;
}
.span_modal_bold{
	font-weight: 700;
	margin-top: 10px;
}

.cd_modal_buttons{
	display: none;
}
.cd_modal_buttons_p0{
	display: block;
}

.cd_modal_btn{
	user-select: none;
	position: absolute;
	cursor: pointer;
	display: flex;
	outline: none;
	background: none;
	animation: cd_modal_btn_anim .5s;
}
@keyframes cd_modal_btn_anim{
	0%{
		transform: scale(.5);
	}
	50%{
		transform: scale(1.1);
	}
	80%{
		transform: scale(.9);
	}
	100%{
		transform: scale(1);
	}
}
.cd_modal_btn img{
	width: 30px;
}

#btn_cd_modal_0_1{
	top: 56px;
	left: 253px;
}
#btn_cd_modal_0_2{
	top: 56px;
	left: 300px;
}
#btn_cd_modal_0_3{
	top: 58px;
	left: 133px;
}
#btn_cd_modal_0_4{
	top: 250px;
	left: 80px;
}
#btn_cd_modal_0_5{
	top: 250px;
	right: 80px;
}
#btn_cd_modal_0_6{
	bottom: 74px;
	left: 24px;
}
#btn_cd_modal_0_7{
	bottom: 92px;
	left: 161px;
}

#btn_cd_modal_1_1{
	top: 228px;
	left: 200px;
}
#btn_cd_modal_1_2{
	top: 216px;
	left: 20px;
}
#btn_cd_modal_1_3{
	top: 278px;
	left: 133px;
}
#btn_cd_modal_1_4{
	top: 325px;
	right: 30px;
}

#btn_cd_modal_4_1{
	top: 116px;
	left: 86px;
}
#btn_cd_modal_4_2{
	top: 52px;
	left: 291px;
}
#btn_cd_modal_4_3{
	top: 108px;
	left: 220px;
}
#btn_cd_modal_4_4{
	top: 202px;
    left: 130px;
}
#btn_cd_modal_4_5{
	top: 312px;
    left: 256px;
}
#btn_cd_modal_4_6{
	bottom: 116px;
	left: 60px;
}
#btn_cd_modal_4_7{
	bottom: 148px;
	left: 161px;
}
#btn_cd_modal_4_8{
	bottom: 180px;
	right: 54px;
}

#btn_cd_modal_5_1{
	top: 64px;
	left: 160px;
}
#btn_cd_modal_5_2{
	top: 160px;
	left: 140px;
}
#btn_cd_modal_5_3{
	top: 360px;
	left: 76px;
}
#btn_cd_modal_5_4{
	bottom: 144px;
	left: 38px;
}
#btn_cd_modal_5_5{
	bottom: 80px;
	right: 98px;
}

#btn_cd_modal_6_1{
	bottom: 146px;
	left: 204px;
}
#btn_cd_modal_6_2{
	bottom: 70px;
	left: 70px;
}

#btn_cd_modal_7_1{
	bottom: 82px;
	left: 86px;
}

#btn_cd_modal_8_1{
	top: 204px;
	left: 134px;
}
#btn_cd_modal_8_2{
	top: 224px;
	right: 12px;
}
#btn_cd_modal_8_3{
	bottom: 152px;
	left: 160px;
}

#btn_cd_modal_8_4{
	bottom: 65px;
	left: 80px;
}
/*#endregion*/

/*#region Benefits*/
#sec_benefits{
    position: relative;
}
#sec_benefits::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .2);
}
#sec_benefits h3{
    margin-bottom: 1rem;
}
.benefits_acc .acc_item{
    margin-bottom: .25rem;
    background: #eff1f2;
}
.benefits_acc .btn_acc{
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}
.benefits_acc .p_top{
    font-size: 18px;
    font-weight: 700;
    color: #003B6A;
    padding: .75rem 1rem;
    width: auto;
    min-width: 0;
    max-width: 100%;
    flex: 10000 1 0%;
}
.benefits_acc .p_bottom{
    padding: .25rem 1rem 1rem;
    color: #003B6A;
    font-weight: 400;
}

.benefits_acc .plus{
    display: block;
    position: relative;
    height: 18px;
    width: 18px;
    min-height: 18px;
    min-width: 18px;
    margin-right: 1rem;
}
.benefits_acc .plus::before{
    content: '';
    background: #003B6A;
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    top: 8px;
}
.benefits_acc .collapsed .plus::after{
    transform: rotate(0deg);
    opacity: 1;
}
.benefits_acc .plus::after{
    content: '';
    background: #003B6A;
    position: absolute;
    display: block;
    height: 100%;
    width: 2px;
    left: 8px;
    transform: rotate(-90deg);
    opacity: 0;
    transition: transform .5s, opacity .5s;
}

.bf_img{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    height: 100%;
    padding: 1rem 2rem;
}
.bf_img img{
    max-height: 140px;
}

@media only screen and (max-width: 767.98px){
    .benefits_acc .p_top{
        padding: .75rem;
    }
    .benefits_acc .p_bottom{
        padding: .25rem .75rem 1rem;
    }
    .bf_img{
        justify-content: center;
        padding: 1rem 0;
    }
}
@media only screen and (max-width: 575.98px){
    .benefits_acc .p_top{
        font-size: 16px;
    }
    .benefits_acc .p_bottom{
        font-size: 14px;
    }
}
/*#endregion*/

/*#region Country Availability*/
#sec_countryavailability{
    background: #01487E;
}
.ca_item{
    background: #fff;
    color: #000;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, .2);
    height: 100%;
}
.ca_item_focus{
    background: #003B6A;
    color: #fff;
}
.ca_item .top{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
}
.ca_item .top .image{
    position: relative;
}
.ca_item .top img{
    width: 100px;
}
.ca_item .top p{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    color: #003B6A;
    text-align: center;
}
.ca_item_focus .top p{
    color: #fff;
}
.ca_item .bottom{
    display: flex;
    justify-content: center;
    padding: 1rem;
}
.ca_item li{
    list-style: none;
    position: relative;
    padding-left: 1.25rem;
    padding-right: .25rem;
    margin-bottom: .25rem;
    color: #003B6A;
    font-weight: 400;
}
.ca_item_focus li{
    color: #fff;
}
.ca_item li::before{
    content: "";
    position: absolute;
    background: #EA0016;
    width: 6px;
    height: 6px;
    left: .25rem;
    top: 8px;
}
.two_col{
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
.ca_tt_content{
    display: none;
}

.ca_pop p{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    color: #003B6A;
    text-align: center;
    margin-bottom: .75rem;
}
.ca_pop li{
    list-style: none;
    position: relative;
    padding-left: 1.25rem;
    padding-right: .25rem;
    margin-bottom: .5rem;
    color: #003B6A;
    line-height: 1.3;
    font-weight: 400;
}
.ca_pop li::before{
    content: "";
    position: absolute;
    background: #EA0016;
    width: 6px;
    height: 6px;
    left: .25rem;
    top: 6px;
}

@media only screen and (max-width: 991.98px){
    .ca_item .top{
        padding: 1rem;
    }
}
@media only screen and (max-width: 575.98px){
    .ca_item .top p{
        font-size: 18px;
    }
    .ca_pop p{
        font-size: 16px;
        margin-bottom: .5rem;
    }
    .ca_pop li{
        font-size: 14px;
    }
    .ca_pop li::before{
        top: 5px;
    }
}
@media only screen and (max-width: 300px){
    .two_col{
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}
/*#endregion*/

/*#region Connected Products*/
#sec_connectedproducts{
    margin-bottom: 75px;
}
.cp_item{
    color: #003B6A;
}
.cp_item .p_title{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: .5rem;
    line-height: 1.2;
}
.cp_item .p_text{
    font-weight: 500;
}

.cp_item .row1{
    margin-bottom: 2rem;
}
.cp_item .images{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.cp_item .images img{
    height: 100px;
    margin: 0 .5rem;
}
.cp_item .images1 img{
    padding: 0 1px;
}

.cp_item li{
    list-style: none;
    position: relative;
    padding-left: 1.1rem;
    padding-right: .25rem;
    margin-bottom: .25rem;
    color: #003B6A;
    font-weight: 700;
    font-size: 14px;
}
.cp_item_focus li{
    color: #fff;
}
.cp_item li::before{
    content: "";
    position: absolute;
    background: #EA0016;
    width: 6px;
    height: 6px;
    left: .1rem;
    top: 7px;
}

@media only screen and (max-width: 991.98px){
    .cp_item .row1{
        margin-bottom: 3rem;
    }
}
@media only screen and (max-width: 767.98px){
    .cp_item .images{
        justify-content: flex-start;
    }
}
@media only screen and (max-width: 575.98px){
    #sec_connectedproducts{
        margin-bottom: 60px;
    }
}
@media only screen and (max-width: 300px){
    .cp_item .images img{
        margin: .5rem;
    }
}
/*#endregion*/

/*#region Cloud Training*/
#sec_cloudtraining{
    background: #01487E;
    background-image: url("../img/required/application_set1.jpg");
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: cover;
    padding: 120px 0;
    position: relative;
}
#sec_cloudtraining::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .2);
}
.ct_logo{
    position: absolute;
    top: -75px;
}
.ct_logo img{
    width: 100px;
}
.ct_text{
    width: 100%;
    max-width: 60%;
    background: rgba(255, 255, 255, .75);
    padding: 1rem;
}
.ct_text span{
    color: #003B6A;
    font-weight: 400;
    font-size: 18px;
}

@media only screen and (max-width: 991.98px){
    #sec_cloudtraining{
        padding: 90px 0;
    }
}
@media only screen and (max-width: 767.98px){
    .ct_text{
        max-width: 80%;
    }
}
@media only screen and (max-width: 575.98px){
    #sec_cloudtraining{
        padding: 60px 0;
    }
    .ct_logo{
        top: -60px;
    }
    .ct_logo img{
        width: 80px;
    }
    .ct_text{
        max-width: none;
    }
    .ct_text span{
        font-size: 16px;
    }
}
/*#endregion*/

/*#region FAQ*/
.faq_item{
    position: relative;
    background: #eff1f2;
    margin-bottom: .25rem;
}
.faq_qtn{
    cursor: pointer;
    display: flex;
    width: 100%;
    text-align: left;
}

.faq_item .collapsed .p_faq_qtn::before{
    transform: rotate(0deg);
}
.p_faq_qtn::before{
    position: absolute;
    content: "";
    left: 0;
    margin-top: -1px;
    width: 28px;
    height: 28px;
    background-image: url("../img/required/forward-right-small-pro.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: rotate(90deg);
    transition: transform .3s;
}

.p_faq_qtn{
    position: relative;
    padding: 1rem 1rem 1rem 1.75rem;
    font-weight: 500;
    font-size: 18px;
    min-width: 0;
    max-width: 100%;
    flex: 10000 1 0%;
    color: #003B6A;
}

.p_faq_ans{
    padding: .25rem 1rem 1.5rem 1.75rem;
    color: #003B6A;
    font-weight: 400;
}

.faq_footer{
    padding-top: 2rem;
}
.faq_footer a{
    margin-bottom: 1rem;
}

.p_faq_footnote{
    color: #003B6A;
    font-weight: 400;
}

@media only screen and (max-width: 575.98px){
    .p_faq_qtn{
        padding: .75rem .75rem .75rem 1.5rem;
    }
    .p_faq_qtn::before{
        width: 24px;
        height: 24px;
    }
    .p_faq_qtn{
        font-size: 16px;
    }
    .p_faq_ans{
        font-size: 14px;
        padding: .25rem .75rem 1.25rem 1.5rem;
    }
    .faq_footer a, .p_faq_footnote{
        font-size: 14px;
    }
}
/*#endregion*/

/*#region Quiz*/
#sec_quiz{
    position: relative;
}
#sec_quiz::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .2);
}
#sec_quiz .container-xl{
    position: relative;
}

.quiz_item{
    padding: 1rem 0;
    border-left: 2px solid #A8AFB5;
}

.quiz_header{
    padding: 0 1.5rem;
}
.p_quiz_header{
    font-size: 14px;
    text-transform: uppercase;
    color: #A8AFB5;
    padding-bottom: .5rem;
    font-weight: 700;
}
.p_quiz_qtn{
    font-weight: 500;
    font-size: 18px;
    opacity: .5;
}

.quiz_content_container{
    padding: 1rem 1.5rem 0;
}
.quiz_content_container .custom-checkbox, .quiz_content_container .custom-radio{
    padding-top: .5rem;
    border-radius: 0;
}
.quiz_content_container .custom-checkbox .custom-control-label::before{
    border-radius: 2px;
}
.quiz_content_container .custom-control-input:checked~.custom-control-label::before{
    border-color: #005691;
    background-color: #005691;
}
.quiz_content_container .custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before, .quiz_content_container .custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{
    border-color: #005691;
    background-color: #005691;
    opacity: .5;
}
.quiz_content_container .custom-control-label{
    padding-top: 1px;
}
.quiz_content_container .custom-control-label:hover{
    color: #005691;
}
.quiz_content_container .custom-control-input:disabled~.custom-control-label, .custom-control-input[disabled]~.custom-control-label{
    pointer-events: none;
}

.quiz_controls{
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.btn_quiz{
    margin-right: .5rem;
    text-transform: uppercase;
}

.quiz_active{
    border-left: 2px solid #003B6A;
}
.quiz_active .p_quiz_header{
    color: #003B6A;
}
.quiz_active .p_quiz_qtn{
    opacity: 1;
}
.quiz_correct{
    border-left: 2px solid #006249;
}
.quiz_correct .p_quiz_header{
    color: #006249;
}
.quiz_incorrect{
    border-left: 2px solid #EA0016;
}
.quiz_incorrect .p_quiz_header{
    color: #EA0016;
}

#spinner_result{
    display: none;
    border-color: #003B6A;
    border-right-color: transparent;
}
.quiz_result_msg{
    display: none;
    padding: 1rem;
}
.quiz_result_msg p{
    font-size: 18px;
}
#quiz_won{
    background: rgba(0, 97, 73, .15);
    border: 1px solid #006249;
}
.p_quiz_won{
    color: #006249;
}
#quiz_lost{
    margin-top: 5px;
    background: rgba(234, 0, 22, .15);
    border: 1px solid #EA0016;
}

#btn_retake_quiz{
    position: relative;
    margin-top: .5rem;
    text-transform: uppercase;
    text-align: left;
    display: flex;
    align-items: center;
}
#btn_retake_quiz span{
    margin-right: 2px;
}
#btn_retake_quiz img{
    width: 24px;
    height: 24px;
}
#btn_retake_quiz:hover{
    text-decoration: underline;
}

.endmsg{
    margin-top: 1rem;
}
.endmsg p{
    font-size: 16px;
}

.tt_quiz_correct{
    display: none;
    width: 38px;
    height: 38px;
    animation: jump_in_correct .4s ease-out;
}
.tt_quiz_incorrect{
    display: none;
    width: 38px;
    height: 38px;
    animation: jump_in_incorrect .4s ease-out;
}
.tt_quiz_correct img{
    width: 100%;
    height: 100%;
}
.tt_quiz_incorrect img{
    width: 100%;
    height: 100%;
}
.quiz_correct .tt_quiz_correct{
    display: inline-block;
}
.quiz_incorrect .tt_quiz_incorrect{
    display: inline-block;
}
@keyframes jump_in_correct{
    0%{
        transform: scale(.5) rotate(75deg);
    }
    40%{
        transform: scale(1.3);
    }
    70%{
        transform: scale(.8);
    }
    100%{
        transform: scale(1) rotate(0deg);
    }
}
@keyframes jump_in_incorrect{
    0%{
        transform: scale(.5) rotate(-75deg);
    }
    40%{
        transform: scale(1.3);
    }
    70%{
        transform: scale(.8);
    }
    100%{
        transform: scale(1) rotate(0deg);
    }
}

@media only screen and (max-width: 767.98px){
    .quiz_header{
        padding: 0 1rem;
    }
    .quiz_content_container{
        padding: 1rem 1rem 0;
    }
}
@media only screen and (max-width: 575.98px){
    .p_quiz_qtn{
        font-size: 16px;
    }
    .quiz_content_container .custom-control-label{
        font-size: 14px;
        padding-top: 3px;
    }
    .btn_quiz{
        font-size: 14px;
        font-weight: 500;
    }
    .quiz_result_msg p{
        font-size: 16px;
    }
    #btn_retake_quiz{
        font-size: 14px;
        font-weight: 500;
    }
    .endmsg p{
        font-size: 14px;
    }
}
/*#endregion*/

/*#region Certificte*/
#cert{
    display: none;
    padding-top: 1rem;
}
.p_cert{
    margin-bottom: .5rem;
}
.cert_form{
    display: flex;
}
#btn_cert{
    display: flex;
    align-items: center;
    height: 48px;
}
#btn_cert img{
    height: 100%;
    margin-right: .25rem;
}
#btn_cert span{
    margin-right: .5rem;
}
.cert_input{
    position: relative;
    height: 3rem;
    width: auto;
    margin-right: .5rem;
    width: 100%;
    max-width: 300px;
}
.cert_input .cert_input_field{
    background-color: #e0e2e5;
    border: 0;
    border-bottom: .0625rem solid #000;
    height: 3rem;
    padding: 0 1rem;
    width: 100%;
    border-radius: 0;
}
.cert_input .cert_input_field:hover{
    background-color: #c1c7cc;
}
.cert_input .cert_input_field:active{
    background-color: #a4abb3;
}
.cert_input .cert_input_field:focus{
    background-color: #d1e4ff;
    border-bottom-color: #007bc0;
    outline: none;
}
.cert_input .cert_input_label{
    position: absolute;
    margin: .25rem 1rem auto;
    font-size: .75rem;
    max-width: calc(100% - 4rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cert_input .cert_input_label+.cert_input_field{
    padding-top: 1.125rem;
    padding-bottom: .3125rem;
}

@media only screen and (max-width: 575.98px){
    .p_cert{
        margin-bottom: 1rem;
    }
    .cert_form{
        flex-direction: column;
    }
    .cert_input{
        max-width: none;
        margin-bottom: .5rem;
    }
    #btn_cert{
        margin-right: auto;
        font-size: 14px;
    }
}
/*#endregion*/

/*#region Footer*/
#sec_footer{
    padding: 0;
    background: #01487E;
}
.footer_content{
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer_content p{
    font-weight: 500;
}
.footer_content p, .footer_content a{
    margin: 0 1rem;
    color: #fff;
}
.footer_links{
    display: flex;
}

@media only screen and (max-width: 991.98px){
    .footer_content{
        padding: 30px 0;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
    .footer_links{
        margin-bottom: .5rem;
    }
}
@media only screen and (max-width: 575.98px){
    .footer_content{
        font-size: 14px;
    }
    .footer_links{
        flex-direction: column;
    }
    .footer_content p, .footer_content a{
        margin: auto;
    }
}
/*#endregion*/

/*#region Tooltips*/
.btn_tt{
    position: absolute;
    height: 40px;
    width: 40px;
    outline: none;
    overflow: hidden;
}
.btn_tt:hover .tt_img1{
    visibility: hidden;
    transform: rotate(45deg);
}
.btn_tt:focus .tt_img1{
    visibility: hidden;
    transform: rotate(45deg);
}
.btn_tt:hover .tt_img2{
    visibility: visible;
    transform: rotate(45deg);
}
.btn_tt:focus .tt_img2{
    visibility: visible;
    transform: rotate(45deg);
}
.tt_img1{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 4px solid rgba(168, 175, 181, .5);
    transition: transform .15s;
    background: url("../img/required/plus-inactive.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.tt_img2{
    visibility: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 4px solid rgba(168, 175, 181, .5);
    transition: transform .15s;
    background: url("../img/required/plus-active.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.tt_tooltip{
    font-family: inherit;
    z-index: 999;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0;
    margin-top: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin-left: 10px;
}
.tt_tooltip.bs-tooltip-bottom .arrow::before{
    bottom: -1px;
    z-index: -1;
    border-width: 0 10px 10px;
    border-bottom-color: #fff;
}
.tt_tooltip .arrow{
    height: 10px;
    width: 20px;
    top: -10px;
}
.tt_tooltip.show{
    opacity: 1;
}
.tt_tooltip .tooltip-inner{
    display: flex;
    flex-direction: column;
    padding: 1rem;
    padding-bottom: .5rem;
    text-align: left;
    background: #fff;
    color: #000;
    border-radius: 0;
    max-width: 260px;
    font-size: 16px;
}
/*#endregion*/
