/*#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, h5{
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.02rem;
}
h1, h2, h3, h4, h5, p, span, ul, button, label{
    margin: 0;
    padding: 0;
}
section{
    padding: 60px 0;
}
h2{
    color: #003B6A;
    font-size: 34px;
    margin-bottom: 2rem;
    font-weight: 700;
}
h3{
    color: #003B6A;
    font-size: 34px;
    font-weight: 700;
}
h4{
    color: #003B6A;
    font-size: 26px;
    font-weight: 400;
    margin-top: .5rem;
    margin-bottom: 2rem;
}
h5{
    color: #003B6A;
}
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;
}

.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;
}

.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, box-shadow .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, box-shadow .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;
}
.ul2 li{
    margin-bottom: 0;
}

/* @media only screen and (max-width: 575.98px){
    .ul1 li{
        font-size: 14px;
    }
    .ul1 li::before{
        top: 6px;
    }
} */
/*#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%;
}
.img_logo{
    height: 100%;
    width: 120px;
}
.navigation_bar_right{
    display: flex;
    align-items: center;
}

#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){
    .navlinks_content{
        width: 40%;
    }
}
@media only screen and (max-width: 991.98px){
    .img_logo{
        width: 110px;
    }
    .navlinks_content{
        width: 50%;
    }
}
@media only screen and (max-width: 767.98px){
    .img_logo{
        height: auto;
        width: 100px;
    }
    #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;
    }
}
/*#endregion*/

/*#region Intro*/
#sec_intro{
    position: relative;
    padding-top: 132px;
    height: 700px;
}
#sec_intro .bg_img{
    position: absolute;
    top: 72px;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    z-index: -1;
    display: flex;
    justify-content: center;
}
#sec_intro .bg_img::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    max-width: 2560px;
    background-image: url("../img/intro/gtc_600_c_application_0325_bluelook-329866.jpg");
    background-size: cover;
    background-position: center;
}
#sec_intro .container-xl{
    height: 100%;
}
.intro_container{
    height: 100%;
    display: flex;
    align-items: center;
}
.intro_box{
    background: linear-gradient(90deg, #003B6A 0, #003B6A 80%, #005691 100%);
    padding: 1.5rem;
    color: #fff;
    max-width: 550px;
    max-height: 100%;
    overflow-y: auto;
}
.intro_box h1{
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.intro_box p{
    font-size: 18px;
}

@media only screen and (max-width: 991.98px){
    #sec_intro{
        height: auto;
    }
    .intro_box h1{
        font-size: 34px;
    }
}
@media only screen and (max-width: 767.98px){
    .intro_box h1{
        font-size: 30px;
    }
}
@media only screen and (max-width: 575.98px){
    .intro_box h1{
        font-size: 26px;
    }
    .intro_box p{
        font-size: 16px;
    }
}
/*#endregion*/

/*#region What is*/
#sec_whatis hr{
    width: 90%;
    margin: 3rem auto;
    border-top: 1px solid #DFDFE0;
}
#sec_whatis h4{
    margin-top: 0;
    margin-bottom: 1rem;
}
#sec_whatis .sub_header{
    font-size: 18px;
    margin-bottom: 1rem;
}
#sec_whatis .mb-p75rem{
    margin-bottom: .75rem;
}
#sec_whatis .mb-2rem{
    margin-bottom: 2rem;
}
#sec_whatis .title{
    font-weight: 700;
    margin-bottom: .25rem;
    color: #003B6A;
}
@media only screen and (max-width: 575.98px){
    #sec_whatis .sub_header{
        font-size: 16px;
    }
}

#sec_whatis .text_one{
    font-size: 18px;
    max-width: 1000px;
    margin: 0 auto;
}
#sec_whatis .text_one h2{
    margin-bottom: 1.25rem;
}
@media only screen and (max-width: 575.98px){
    #sec_whatis .text_one{
        font-size: 16px;
    }
}

#sec_whatis .text_two h4{
    margin-bottom: 1.5rem;
}
#sec_whatis .text_two .image1{
    width: 100%;
}
#sec_whatis .text_two .image2{
    display: flex;
    align-items: center;
    justify-content: center;
}

#sec_whatis .text_three .sub_header{
    margin-bottom: 1.5rem;
}
#sec_whatis .text_three .temp{
    height: 200px;
    background: #ffffff;
}

#sec_whatis .text_four .temp{
    height: 300px;
    background: #ffffff;
}
#sec_whatis .text_four .temp2{
    height: 400px;
    background: #ffffff;
}

#sec_whatis .text_five .sub_header{
    margin-bottom: 1.5rem;
}

#sec_whatis .text_six h4{
    margin-bottom: 1.5rem;
}
#sec_whatis .text_six .temp{
    height: 250px;
    background: #ffffff;
}

#sec_whatis .temp, #sec_whatis .temp2{
    height: auto !important;
}
#sec_whatis img{
    max-width: 100%;
}
/*#endregion*/

/*#region Advantages*/
#sec_advantages{
    background: #eff1f2;
}
#sec_advantages h2{
    margin-bottom: 1.25rem;
}
#sec_advantages h4{
    margin-bottom: 1rem;
}

.adv_item1{
    margin-bottom: 3rem;
}
.adv_item .image{
    display: flex;
    justify-content: center;
}
.adv_item .image img{
    width: 100%;
}
.adv_item .text{
    max-width: 460px;
}
.adv_item .text .title{
    color: #003B6A;
    font-weight: 700;
    margin-bottom: .25rem;
}
.adv_item .text .headline{
    margin-bottom: .25rem;
}

@media only screen and (max-width: 1199.98px){
    .adv_item .text{
        max-width: none;
    }
}
/*#endregion*/

/*#region Why needed*/
/*#region tooltips*/
.product_btns{
    position: absolute;
    height: 44px;
    width: 44px;
}
.btn_product{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.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;
}
.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;
}

.img_pc{
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
}
.p_pc_title{
    font-size: 16px;
    font-weight: 700;
    padding: 1rem 1rem .5rem;
}

.product_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 10px rgba(0, 0, 0, 0.15);
}
.product_tooltip.bs-tooltip-bottom .arrow::before{
    bottom: -1px;
    z-index: -1;
    border-width: 0 10px 10px;
    border-bottom-color: #003B6A;
}
.product_tooltip .arrow{
    height: 10px;
    width: 20px;
    top: -10px;
}
.product_tooltip.show{
    opacity: 1;
}
.product_tooltip .tooltip-inner{
    display: flex;
    flex-direction: column;
    padding: 0 0 .5rem;
    text-align: left;
    background: #003B6A;
    color: #fff;
    border-radius: 0;
    max-width: 280px;
}

@media only screen and (max-width: 1199.98px){
    .product_btns{
        height: 40px;
        width: 40px;
    }
}
@media only screen and (max-width: 575.98px){
    .product_btns{
        height: 30px;
        width: 30px;
    }
    .btn_product .img1, .btn_product .img2{
        border: 2px solid rgba(168, 175, 181, .5);
    }

    .product_tooltip .tooltip-inner{
        max-width: 240px;
        padding: 0 0 .25rem;
    }
    .p_pc_title{
        font-size: 14px;
        padding: .75rem .75rem .25rem;
    }
}
/*#endregion*/

#sec_whyneeded{
    padding-bottom: 46px;
}
#sec_whyneeded h2{
    margin-bottom: 1.25rem;
}
#sec_whyneeded h4{
    margin-bottom: 1rem;
}

.fields{
    margin-bottom: 3rem;
}
.fields .col{
    display: flex;
    align-items: center;
}
.fields .box{
    position: relative;
    margin: 0 auto;
}
.fields .box1{
    padding: 1rem 11%;
}
.fields .box2{
    padding: 1rem 16%;
}
.fields .box img{
    width: 100%;
    max-width: 480px;
}
.btn_fields:hover .img1{
    visibility: hidden;
    transform: rotate(45deg);
}
.btn_fields:focus .img1{
    visibility: hidden;
    transform: rotate(45deg);
}
.btn_fields:hover .img2{
    visibility: visible;
    transform: rotate(45deg);
}
.btn_fields:focus .img2{
    visibility: visible;
    transform: rotate(45deg);
}
.fileds_tooltip_content{
    display: none;
}
@media only screen and (max-width: 991.98px){
    .fields .box1{
        padding: 1rem 14%;
    }
    .fields .box2{
        padding: 1rem 19%;
    }
}
@media only screen and (max-width: 767.98px){
    .fields .box1{
        padding: 1rem 9%;
    }
    .fields .box2{
        padding: 1rem 14%;
    }
}
@media only screen and (max-width: 575.98px){
    .fields .box1{
        padding: 1rem 10%;
    }
    .fields .box2{
        padding: 1rem 15%;
    }
}
@media only screen and (max-width: 400px){
    .fields .box1{
        padding: 1rem 12%;
    }
    .fields .box2{
        padding: 1rem 17%;
    }
}

.applications .row{
    margin: 0 -.5rem;
}
.applications .col{
    padding: 0 .5rem;
}
.applications .card{
    height: 320px;
    position: relative;
    border: none;
    margin-bottom: 1rem;
}
.applications .card_side{
    /* -webkit-transition: all 0.8s ease; */
    /* transition: all 0.8s ease; */
    -webkit-transition: all .3s;
    transition: all .3s;
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 100%;
    /* -webkit-backface-visibility: hidden;
    backface-visibility: hidden; */
    overflow: hidden;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}
.applications .card_side_front{
    background-color: #EFEFF0;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 2;
}
.applications .card_side_back{
    background-color: #EFEFF0;
    /* -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg); */
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.applications .card:hover .card_side_front{
    /* -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg); */
    visibility: hidden;
    opacity: 0;
}
.applications .card:hover .card_side_back{
    /* -webkit-transform: rotateY(0);
    transform: rotateY(0); */
    visibility: visible;
    opacity: 1;
}

.applications .card_side .image{
    height: 100%;
}
.applications .card_side .title{
    font-weight: 500;
    padding: 0.75rem 1rem;
    width: 100%;
}
.applications .card_side .title_front{
    position: relative;
    background-color: #003B6A;
    color: #fff;
    padding-right: 3rem;
}
.applications .card_side .title_front::after{
    position: absolute;
    content: "";
    background-image: url(../img/required/info-i-frame.svg);
    background-position: center;
    background-size: cover;
    top: 50%;
    transform: translateY(-50%);
    right: .8rem;
    width: 28px;
    height: 28px;
}
.applications .card_side .title_back{
    background-color: #BFC0C2;
    color: #000;
}

.applications .card:hover .card_side_back .card_details{
    overflow-y: auto;
}
.applications .card_details{
    padding: 0.75rem 1rem;
    height: 100%;
}
.applications .card_details .link{
    display: inline-flex;
    align-items: center;
    color: #003B6A;
    white-space: nowrap;
}
/*#endregion*/

/*#region Application*/
/*#region Application [All]*/
.application{
    padding-bottom: 120px;
}
.appl_wrapper{
    display: none;
    position: relative;
}
.slick_appl{
    position: static;
    margin: 0 15px;
    overflow: hidden;
}
.slick_appl .slick-list{
    margin: 0 -15px;
}
.slick_appl .slick-track{
    display: flex;
}

.appl_item{
    height: auto;
    position: relative;
    margin: 0 15px;
    outline: none;
    background: #eff1f2;
}
.appl_item img{
    width: 100%;
    opacity: 0;
    transition: opacity .3s;
}
.appl_item .slick-loading{
    height: 0;
}

.slick-dots{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.slick-dots li{
    cursor: pointer;
    display: flex;
    margin: 8px;
}
.application_dot{
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #DFDFE0;
    transition: background-color .1s;
}
.slick-active .application_dot{
    background: #003B6A;
}

.btn_appl{
    display: none;
    height: 50px;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff;
    position: absolute;
    opacity: .9;
    padding: 10px;
}
.btn_appl::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.btn_appl:hover{
    opacity: 1;
}
.btn_appl:hover::after{
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}
.btn_appl_prev{
    left: -10px;
}
.btn_appl_prev div{
    height: 100%;
    width: 100%;
    background: url("../img/required/back-left-problue.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.btn_appl_next{
    right: -10px;
}
.btn_appl_next div{
    height: 100%;
    width: 100%;
    background: url("../img/required/forward-right-problue.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.appl_container .slick-disabled{
    opacity: .5;
    pointer-events: none;
    cursor: default;
}

@media only screen and (max-width: 1199.98px){
    .appl_container{
        margin: 0 -15px;
    }
    .slick_appl{
        overflow: visible;
    }
    .btn_appl_prev{
        left: 0;
    }
    .btn_appl_next{
        right: 0;
    }
}
@media only screen and (max-width: 767.98px){
    .application{
        padding-bottom: 110px;
    }
    .slick-dots{
        bottom: -50px;
    }
}
@media only screen and (max-width: 575.98px){
    .appl_item{
        margin: 0 .5rem;
    }
    .slick-dots li{
        margin: 6px;
    }
}
/*#endregion*/

/*#region Application [v1]*/
.appl_text{
    display: none;
    position: absolute;
    background: #003B6A;
    background: linear-gradient(to right,#003B6A,80%,#005691);
    padding: .75rem 1rem;
    color: #fff;
    max-width: 280px;
}
.appl_text .title{
    font-weight: 700;
}
.appl_text .desc{
    font-size: 14px;
    padding-top: .25rem;
}
.appl_text .ul1 li::before{
    background: #fff;
    top: 6px;
}
.appl_text_topleft{
    top: 15px;
    left: 15px;
}
.appl_text_topright{
    top: 15px;
    right: 15px;
}
.appl_text_bottomleft{
    bottom: 15px;
    left: 15px;
}
.appl_text_bottomright{
    bottom: 15px;
    right: 15px;
}

@media only screen and (max-width: 767.98px){
    .appl_text{
        position: static;
        width: 100%;
        max-width: 100%;
        opacity: 1;
        padding: .5rem .75rem;
        background: #eff1f2;
        color: #000;
    }
    .appl_text .ul1 li::before{
        background: #003B6A;
    }
    .appl_text_topleft{
        top: 0;
        left: 0;
    }
    .appl_text_topright{
        top: 0;
        right: 0;
        text-align: left;
    }
    .appl_text_bottomleft{
        bottom: 0;
        left: 0;
    }
    .appl_text_bottomright{
        bottom: 0;
        right: 0;
        text-align: left;
    }
}
@media only screen and (max-width: 575.98px){
    .appl_text .title{
        font-size: 14px;
    }
}
/*#endregion*/

/*#region Application [v2 modifications]*/
.slick_appl_v2 .appl_item{
    width: 100%;
    max-width: 600px;
    margin: 0;
    transform: scale(.85);
    transition: transform .3s;
}
.slick_appl_v2 .slick-current{
    transform: scale(1);
}
.appl_v2_text{
    display: none;
    padding: 1rem;
}
.appl_v2_text .title{
    font-weight: 700;
    margin-bottom: .25rem;
}

@media only screen and (max-width: 1199.98px){
    .appl_v2_wrapper .appl_container{
        margin: 0 -15px;
    }
    .slick_appl_v2{
        overflow: visible;
    }
}
@media only screen and (max-width: 767.98px){
    .slick_appl_v2 .appl_item{
        width: auto;
        max-width: none;
        margin: 0 15px;
        transform: none;
        transition: none;
    }
}
@media only screen and (max-width: 575.98px){
    .slick_appl_v2 .appl_item{
        margin: 0 .5rem;
    }
    .appl_v2_text{
        padding: .5rem .75rem;
    }
    .appl_v2_text{
        font-size: 14px;
    }
}
/*#endregion*/
/*#endregion*/

/*#region Use cases*/
/*#region Application*/
/*#region Application [All]*/
.application{
    padding-bottom: 120px;
}
.appl_wrapper{
    display: none;
    position: relative;
}
.slick_appl{
    position: static;
    margin: 0 15px;
    overflow: hidden;
}
.slick_appl .slick-list{
    margin: 0 -15px;
}
.slick_appl .slick-track{
    display: flex;
}

.appl_item{
    height: auto;
    position: relative;
    margin: 0 15px;
    outline: none;
    background: #eff1f2;
}
.appl_item img{
    width: 100%;
    opacity: 0;
    transition: opacity .3s;
}
.appl_item .slick-loading{
    height: 0;
}

.slick-dots{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.slick-dots li{
    cursor: pointer;
    display: flex;
    margin: 8px;
}
.application_dot{
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #DFDFE0;
    transition: background-color .1s;
}
.slick-active .application_dot{
    background: #003B6A;
}

.btn_appl{
    display: none;
    height: 50px;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff;
    position: absolute;
    opacity: .9;
    padding: 10px;
}
.btn_appl::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.btn_appl:hover{
    opacity: 1;
}
.btn_appl:hover::after{
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}
.btn_appl_prev{
    left: -10px;
}
.btn_appl_prev div{
    height: 100%;
    width: 100%;
    background: url("../img/required/back-left-problue.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.btn_appl_next{
    right: -10px;
}
.btn_appl_next div{
    height: 100%;
    width: 100%;
    background: url("../img/required/forward-right-problue.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.appl_container .slick-disabled{
    opacity: .5;
    pointer-events: none;
    cursor: default;
}

@media only screen and (max-width: 1199.98px){
    .appl_container{
        margin: 0 -15px;
    }
    .slick_appl{
        overflow: visible;
    }
    .btn_appl_prev{
        left: 0;
    }
    .btn_appl_next{
        right: 0;
    }
}
@media only screen and (max-width: 767.98px){
    .application{
        padding-bottom: 110px;
    }
    .slick-dots{
        bottom: -50px;
    }
}
@media only screen and (max-width: 575.98px){
    .appl_item{
        margin: 0 .5rem;
    }
    .slick-dots li{
        margin: 6px;
    }
}
/*#endregion*/

/*#region Application [v1]*/
.appl_text{
    display: none;
    position: absolute;
    background: #003B6A;
    background: linear-gradient(to right,#003B6A,80%,#005691);
    padding: .75rem 1rem;
    color: #fff;
    max-width: 280px;
}
.appl_text .title{
    font-weight: 700;
}
.appl_text .desc{
    font-size: 14px;
    padding-top: .25rem;
}
.appl_text .ul1 li::before{
    background: #fff;
    top: 6px;
}
.appl_text_topleft{
    top: 15px;
    left: 15px;
}
.appl_text_topright{
    top: 15px;
    right: 15px;
}
.appl_text_bottomleft{
    bottom: 15px;
    left: 15px;
}
.appl_text_bottomright{
    bottom: 15px;
    right: 15px;
}

@media only screen and (max-width: 767.98px){
    .appl_text{
        position: static;
        width: 100%;
        max-width: 100%;
        opacity: 1;
        padding: .5rem .75rem;
        background: #eff1f2;
        color: #000;
    }
    .appl_text .ul1 li::before{
        background: #003B6A;
    }
    .appl_text_topleft{
        top: 0;
        left: 0;
    }
    .appl_text_topright{
        top: 0;
        right: 0;
        text-align: left;
    }
    .appl_text_bottomleft{
        bottom: 0;
        left: 0;
    }
    .appl_text_bottomright{
        bottom: 0;
        right: 0;
        text-align: left;
    }
}
@media only screen and (max-width: 575.98px){
    .appl_text .title{
        font-size: 14px;
    }
}
/*#endregion*/

/*#region Application [v2 modifications]*/
.slick_appl_v2 .appl_item{
    width: 100%;
    max-width: 600px;
    margin: 0;
    transform: scale(.85);
    transition: transform .3s;
}
.slick_appl_v2 .slick-current{
    transform: scale(1);
}
.appl_v2_text{
    display: none;
    padding: 1rem;
}
.appl_v2_text .title{
    font-weight: 700;
    margin-bottom: .25rem;
}

@media only screen and (max-width: 1199.98px){
    .appl_v2_wrapper .appl_container{
        margin: 0 -15px;
    }
    .slick_appl_v2{
        overflow: visible;
    }
}
@media only screen and (max-width: 767.98px){
    .slick_appl_v2 .appl_item{
        width: auto;
        max-width: none;
        margin: 0 15px;
        transform: none;
        transition: none;
    }
}
@media only screen and (max-width: 575.98px){
    .slick_appl_v2 .appl_item{
        margin: 0 .5rem;
    }
    .appl_v2_text{
        padding: .5rem .75rem;
    }
    .appl_v2_text{
        font-size: 14px;
    }
}
/*#endregion*/
/*#endregion*/

.usecases{
    background: #eff1f2;
}
.slider-sep{
    background: #eff1f2;
}
.slider-sep hr{
    width: 100%;
    border-top: 1px solid #DFDFE0;
    margin: 0;
}
.usecases h2{
    margin-bottom: 1.25rem;
}
.usecases .application_dot{
    background: #BFC0C2;
}
.usecases .slick-active .application_dot {
    background: #003B6A;
}

.uc_item{
    background-color: #fff;
    height: auto;
    position: relative;
    margin: 15px;
    outline: none;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.uc_header{
    margin-bottom: 1.5rem;
}
.uc_header p{
    color: #003B6A;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: .5rem;
    border-bottom: 1px solid #003B6A;
}
.uc_content{
    display: flex;
}
.uc_text{
    margin-right: 1rem;
}
.uc_text .title{
    color: #003B6A;
    font-weight: 500;
    margin-bottom: .5rem;
}
.uc_text .title2{
    margin-bottom: .5rem;
}
.uc_text .first{
    margin-bottom: 1.5rem;
}
.uc_image{
    flex-shrink: 0;
}
.uc_image img{
    width: 100%;
    max-width: 360px;
}

@media only screen and (max-width: 991.98px){
    .uc_content{
        flex-direction: column-reverse;
    }
    .uc_text{
        margin-right: 0;
    }
    .uc_image{
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 575.98px){
    .uc_item{
        margin: .5rem;
    }
}
/*#endregion*/

/*#region FAQ*/
#faq_acc{
    border-top: 1px solid #DFDFE0;
}
.faq_item{
    border-bottom: 1px solid #DFDFE0;
    position: relative;
}
.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-blue.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: #005691;
}
.collapsed .p_faq_qtn{
    color: #000;
}
.faq_qtn:hover .p_faq_qtn{
    color: #005691;
}

.p_faq_ans{
    padding: .25rem 1rem 1.5rem 1.75rem;
}

@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;
    }
}
/*#endregion*/

/*#region Footer*/
#sec_footer{
    padding: 0;
}
.footer_content{
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* border-top: 1px solid #DFDFE0; */
}
.footer_content p, .footer_content a{
    margin: 0 1rem;
}
.footer_links{
    display: flex;
}
.supergraphic_bottom{
    background-image: url("../img/required/supergraphic.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 10px;
}

@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*/
