/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
/*@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&subset=latin-ext');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); */


html {
    /*scroll-behavior: smooth;*/
}
            
body {
	padding: 0px;
	margin: 0px;
    font-family: 'Montserrat', sans-serif;
	color: #888888;
	font-size: 16px;
	line-height: 22px;
	background-color: #FFFFFF;
}

/** header ********************************************************************/

.header {
    padding: 10px 30px;
    background-color: rgb(255,255,255, 0.8);
    height:70px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.header-sticky {
    background: #ffffff;
    box-shadow: 0 2px 60px rgba(0, 0, 0, .25);
}

.header .logo{
    max-height: 50px;
}

.header-menu-desktop{
    display: block;
}

.header-menu-mobile{
    display: none;
}

.header .menu-tab {
    z-index: 999999999;
    left: 0px;
    cursor: pointer;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    max-width: 30px;
}
.header .menu-tab div {
    width: 30px;
    height: 3px;
    background-color: #0095DA;
    display: block;
    margin: 6px 0px;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.header-link {
    display: inline-block;
}

.header-link a{
    font-size: 14px !important;
    font-weight: 600!important;
    color: #4D4D4D !important;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    text-transform: uppercase;
    padding-left: 15px;
}

.header-link a:hover{
    color: #0095DA !important;
}

.header-link span{
    font-size: 20px;
    align-items: start;
}

.header .search-box {
    position: absolute;
    height: 100%;
    padding: 0;
    bottom: -100%;
    width: 100%;
    opacity: 0;
    transition: all 0.3s;
    box-shadow: 2px 0 10px rgba(0, 0, 0, .25);
    left: 0;
    background-color: #fff;
    padding: 20px 30px;
    display: none;
    z-index: 9999;
}

.header .search-box-active {
    position: absolute;
    height: 100%;
    padding: 0;
    bottom: -100%;
    width: 100%;
    opacity: 1;
    transition: all 0.3s;
    box-shadow: 2px 0 10px rgba(0, 0, 0, .25);
    left: 0;
    background-color: #fff;
    padding: 20px 30px; 
    display: block;
}

.header .search-field {
    color: #888888;
    font-size: 16px;
    line-height: 22px;
    border: none;
    width: 100%;
}

.header .search-field:focus{
    outline: none;
}

.header-link-sm-hide{
    display: inline-block;
}

.full-navigation .left-side .navigation .link-image{
    /*width: 200px !important;*/
    max-height: 35px;
    padding-bottom: 10px;
}

/** content *******************************************************************/

.content {
    padding: 0 15px;
    background-color: #FFFFFF;
}

.content-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 15px;
}

.page-title {
    color: #05527D;
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    text-transform: uppercase;
}

.page-title-divider {
    background-color: #0095DA;
    height: 1px;
    width: 80px;
    margin: 15px 0 30px 0;
}

.page-text {
    color: #666666;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
}

.page-text ol{
    padding-left: 15px;
}

.page-text strong{
    font-weight: 600;
}

.subpage-navigation a{
    color: #00527D !important;
    font-size: 20px !important;
    line-height: 24px !important;
    font-weight: 600 !important;
}

.subpage-navigation-image{
    margin: 0 auto;
    max-width: 300px;
}

.page-image {
    height: 600px;
    background-color: #fff;
    background-repeat: no-repeat !important;
    background-position: center center;
    background-size: cover;
    position: relative; 
}

.page-image-content {
    position: absolute;
    bottom: 0;
    width: 100%; 
    background-image: linear-gradient(transparent,rgba(255,255,255,0.9));
}

.page-image-content-inner {
    width: 100%;
    margin: 0 auto;
    max-width: 1170px;
    padding: 60px 15px 30px 15px;
}

.page-image-content .title {
    display: inline-block;
    font-size: 50px;
    line-height: 50px;
    font-weight: 900;
    color: #05527D;
    margin: 0 auto;
    margin-bottom: 10px;
    max-width: 720px;
    text-transform: uppercase;
} 

.page-image-content .text {
    color: #0095DA;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22px;
}

.page-image-float-left {
    max-width: 400px;
    float: left;
    padding: 0 30px 10px 0;
}

.page-image-float-right {
    max-width: 400px;
    float: right;
    padding: 0 0 10px 30px;
}

.subpage-image .image-box{
    overflow: hidden;
    position: relative; 
    margin: 0 auto; 
    margin-bottom: 30px;  
    
}

.subpage-image .image-box .image{
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 1500ms, opacity 700ms;
    transition: transform 1500ms, opacity 700ms;
    cursor: pointer;
    background-repeat: no-repeat !important;
    background-position: center center;
    background-size: cover;
    padding-top: 52%;
    cursor: default;
}
.subpage-image .image-box .image:hover{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    overflow: hidden; 
}

.btn-default {
    background-color: #0095DA;
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 8px 25px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}

.btn-default:hover {
    background-color: #00699B;
}

.btn-default:active {
    background-color: #00699B;
}

/** slider main  **/
.slider-main {
    height: 100% !important;
    overflow: hidden;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);*/
    background-color: #fff;
}

.slider-main .item {
    height: 600px;
    background-color: #fff;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slider-main .item .text-box {
    margin: 0 auto; 
    max-width: 1170px; 
    padding: 0 15px;
    position: absolute;
    left:0; 
    right: 0; 
    bottom: 15%;
    text-align: left;
}

.slider-main .item .text-box .title {
    display: inline-block;
    font-size: 72px;
    line-height: 72px;
    font-weight: 900;
    color: #05527D;
    margin: 0 auto;
    margin-bottom: 15px;
    max-width: 780px;
}

.slider-main .item .text-box .subtitle {
    display: inline-block;
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
    color: #0095DA;
    text-transform: uppercase;
    margin-bottom: 30px;
    max-width: 585px;
}

.slider-main .item .text-box .description {
    display: inline-block;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: #05527D;
    margin-bottom: 30px;
    max-width: 585px;
}

.slider-main-box{
    position: relative;
}

.slider-main-box:hover .arrow-left, .slider-main-box:hover .arrow-right{
    visibility: visible;
    opacity: 1;
}

.slider-main-box .arrow-left{
    position: absolute;
    top: 265px;
    left: 30px;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;  
}
.slider-main-box .arrow-left img{
    max-height: 70px;
    cursor: pointer;
}

.slider-main-box .arrow-right{
    position: absolute;
    top: 265px;
    right: 30px;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s; 
}
.slider-main-box .arrow-right img{
    max-height: 70px;
    cursor: pointer;
}

.slider-main-box .btn {
    background-color: #0095DA;
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 8px 25px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}

.slider-main-box .btn:hover {
    background-color: #00699B;
}

.slider-main-box .btn:active {
    background-color: #00699B;
}
/** end slider main **/


.service-home{
    text-align: center;
    padding-bottom: 50px;
}

.service-home .title{
    color: #00527D;
    font-size: 26px;
    line-height: 28px;
    font-weight: 600;
}

.service-home .image-box{
    overflow: hidden;
    position: relative; 
    border-radius: 50%;
    width: 250px;
    height: 250px;
    margin: 0 auto;   
}

.service-home .image-box .image{
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 1500ms, opacity 700ms;
    transition: transform 1500ms, opacity 700ms;
    cursor: pointer;
    background-repeat: no-repeat !important;
    background-position: center center;
    background-size: cover;
    padding-top: 100%;
}
.service-home .image-box .image:hover{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    overflow: hidden; 
}

.service-home .more {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 25px;
    left: 0;
}
/* end services home */

/* content image home */
.content-image {
    background-color: #1D5A8F;
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 300px;
    padding: 15px;
}

.content-image-inner {
    padding: 50px 0;
    max-width: 1170px;
    margin: 0 auto;
}

.content-image .title {
    color: #FFFFFF;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
}

.content-image .text {
    color: rgb(255,255,255,0.6);
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    padding: 15px 0;
}
/* content image home */


/* content news home */
.content-news-home{
    background-color: #E8EAEA;
}

.content-news-home-inner{
    padding: 80px 15px;
    max-width: auto;
}

.content-news-home .section-title{
    color: #333333;
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    text-align: center; 
    padding: 20px 0 0 0;  
    background-color: transparent; 
}

.content-news-home  .section-view-all{
    text-align: center;
    padding-top: 15px;    
}

.content-news-home .section-view-all a{
    color: #0095DA; 
    font-size: 14px; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
}

.content-news-home .section-view-all a:hover{
    text-decoration: underline;  
}

.content-news-home .custom-margin{
    margin-bottom: 0;
}

.content-news-home .news-box{
    border: 0px solid #dddddd;
    padding: 20px;
    height: 100%;
    padding-bottom: 80px;
    position: relative;
    box-shadow: 0 14px 35px rgba(49, 49, 49, 0.1);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.content-news-home .news-box:hover{
    box-shadow: 0 14px 35px rgba(49, 49, 49, 0.3);
}

.content-news-home .news-box .title a{
    color: #333333;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.content-news-home .news-box .date{
    color: #000;
    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    padding: 10px 0;
}

.content-news-home .news-box .text{
    color: #666666;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
}

.content-news-home .news-box .more {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 25px;
    left: 0;
}

.content-news-home .news-box .divider-more {
    height: 1px;
    background-color: #dddddd;
    margin: 15px 0;
}

.content-news-home .news-box .btn-more {
    background-color: #0095DA;
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 5px 20px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}

.content-news-home .news-box .btn-more:hover {
    background-color: #00699B;
}

.content-news-home .news-box .btn-more:active {
    background-color: #00699B;
}

.content-news-home .event-box {
    border: 0px solid #dddddd;
    padding: 20px;
    height: 100%;
    position: relative;
    box-shadow: 0 14px 35px rgba(49, 49, 49, 0.1);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.content-news-home .event-box:hover {
    box-shadow: 0 14px 35px rgba(49, 49, 49, 0.3);
}

.content-news-home .event-box .content {
    position: relative;
    padding-left: 65px;
    margin-bottom: 15px;
    min-height: 50px;
    background-color: transparent;
}

.content-news-home .event-box .content:last-child {
    margin-bottom: 0;
}

.content-news-home .event-box .title a{
    color: #333333;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

.content-news-home .event-box .title a:hover{
    /*color: #0095DA;*/
}

.content-news-home .event-box .date {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0095DA;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 7px;
    border-radius: 4px;
}

/*
.content-news-home{
    background-color: #0095DA;
}

.content-news-home-inner{
    padding: 80px 15px;
    max-width: auto;
}

.content-news-home .section-title{
    color: #00527D;
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    text-align: right; 
    padding: 20px;  
    background-color: #FFF; 
}

.content-news-home  .section-view-all{
    text-align: right;
    padding-top: 15px;    
}

.content-news-home .section-view-all a{
    color: #0095DA; 
    font-size: 14px; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
}

.content-news-home .section-view-all a:hover{
    text-decoration: underline;  
}

.content-news-home .custom-margin{
    margin-bottom: 0;
}

.content-news-home .news-box{
    padding: 20px;
    height: 100%;
    padding-bottom: 90px;
    position: relative;
    background-color: #FFF;
}

.content-news-home .news-box .title{
    color: #00527D;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

.content-news-home .news-box .date{
    color: #0095DA;
    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    padding: 15px 0;
}

.content-news-home .news-box .text{
    color: #666;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
}

.content-news-home .news-box .more {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 25px;
    left: 0;
}

.content-news-home .news-box .divider-more {
    height: 1px;
    background-color: #EEEEEE;
    margin: 20px 0;
}

.content-news-home .news-box .btn-more {
    background-color: #0095DA;
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 5px 20px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}

.content-news-home .news-box .btn-more:hover {
    background-color: #00699B;
}

.content-news-home .news-box .btn-more:active {
    background-color: #00699B;
}

.content-news-home .event-box {
    padding: 20px;
    height: 100%;
    position: relative;
    background-color: #FFFFFF;
}

.content-news-home .event-box .content {
    position: relative;
    padding-left: 65px;
    margin-bottom: 15px;
    min-height: 50px;
    background-color: transparent;
}

.content-news-home .event-box .content:last-child {
    margin-bottom: 0;
}

.content-news-home .event-box .title a{
    color: #00527D;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

.content-news-home .event-box .title a:hover{
    text-decoration: underline;
}

.content-news-home .event-box .date {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #1D5A8F;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 7px;
}
*/
/*
V2
.content-news-home{
    background-color: #0095DA;
}

.content-news-home-inner{
    padding: 80px 15px;
    max-width: auto;
}

.content-news-home .section-title{
    color: #fff;
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    text-align: right; 
    padding: 20px;  
    background-color: #0089C9; 
}

.content-news-home  .section-view-all{
    text-align: right;
    padding-top: 15px;    
}

.content-news-home .section-view-all a{
    color: #0095DA; 
    font-size: 14px; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
}

.content-news-home .section-view-all a:hover{
    text-decoration: underline;  
}

.content-news-home .custom-margin{
    margin-bottom: 0;
}

.content-news-home .news-box{
    border: 1px solid #0083BF;
    padding: 20px;
    height: 100%;
    padding-bottom: 90px;
    position: relative;
}

.content-news-home .news-box .title{
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

.content-news-home .news-box .date{
    color: #1D5A8F;
    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    padding: 15px 0;
}

.content-news-home .news-box .text{
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
}

.content-news-home .news-box .more {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 25px;
    left: 0;
}

.content-news-home .news-box .divider-more {
    height: 1px;
    background-color: #0083BF;
    margin: 20px 0;
}

.content-news-home .news-box .btn-more {
    background-color: #0089C9;
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 5px 20px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}

.content-news-home .news-box .btn-more:hover {
    background-color: #00699B;
}

.content-news-home .news-box .btn-more:active {
    background-color: #00699B;
}

.content-news-home .event-box {
    border: 1px solid #0083BF;
    padding: 20px;
    height: 100%;
    position: relative;
}

.content-news-home .event-box .content {
    position: relative;
    padding-left: 65px;
    margin-bottom: 15px;
    min-height: 50px;
    background-color: transparent;
}

.content-news-home .event-box .content:last-child {
    margin-bottom: 0;
}

.content-news-home .event-box .title a{
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

.content-news-home .event-box .title a:hover{
    text-decoration: underline;
}

.content-news-home .event-box .date {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #1D5A8F;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 7px;
}

*/
/*
V1
.content-news-home{
    background-color: #fff;
}

.content-news-home-inner{
    padding: 80px 15px;
    max-width: auto;
}

.content-news-home .section-title{
    color: #333333;
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    text-align: right; 
    padding: 20px;  
    background-color: #eee; 
}

.content-news-home  .section-view-all{
    text-align: right;
    padding-top: 15px;    
}

.content-news-home .section-view-all a{
    color: #0095DA; 
    font-size: 14px; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
}

.content-news-home .section-view-all a:hover{
    text-decoration: underline;  
}

.content-news-home .custom-margin{
    margin-bottom: 0;
}

.content-news-home .news-box{
    border: 1px solid #E8EAEA;
    padding: 20px;
    height: 100%;
    padding-bottom: 90px;
    position: relative;
}

.content-news-home .news-box .title{
    color: #333333;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

.content-news-home .news-box .date{
    color: #000;
    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    padding: 15px 0;
}

.content-news-home .news-box .text{
    color: #666666;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
}

.content-news-home .news-box .more {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 25px;
    left: 0;
}

.content-news-home .news-box .divider-more {
    height: 1px;
    background-color: #EEEEEE;
    margin: 20px 0;
}

.content-news-home .news-box .btn-more {
    background-color: #0095DA;
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 5px 20px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}

.content-news-home .news-box .btn-more:hover {
    background-color: #00699B;
}

.content-news-home .news-box .btn-more:active {
    background-color: #00699B;
}

.content-news-home .event-box {
    border: 1px solid #E8EAEA;
    padding: 20px;
    height: 100%;
    position: relative;
}

.content-news-home .event-box .content {
    position: relative;
    padding-left: 65px;
    margin-bottom: 15px;
    min-height: 50px;
}

.content-news-home .event-box .content:last-child {
    margin-bottom: 0;
}

.content-news-home .event-box .title a{
    color: #333333;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

.content-news-home .event-box .title a:hover{
    color: #0095DA;
}

.content-news-home .event-box .date {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0095DA;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 7px;
}
*/
/* content news home */

/** menu float **/
.menu-float {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 999;
    background-color: #0095DA;
    color: #fff;
    padding: 30px;
} 

.menu-float-label{
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(255,255,255, 0.2);
    margin-bottom: 15px;
    padding-bottom: 15px;
}  

.menu-float-label a{
    font-size: 22px !important;
    color: #fff !important;
    font-weight: 500 !important;
} 

.menu-float .menu-list .item{
    padding-top: 8px;
}

.menu-float .menu-list .item a {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    overflow: hidden; 
    text-transform: uppercase;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.menu-float .menu-list .item a:hover {
    color: #fff;
}

.menu-float .menu-list .item a:after {
    content: "";
    display: block;
    margin-top: 3px;
    height: 2px;
    background-color: #fff;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: -webkit-transform .2s;
    transition: transform .2s;
}
.menu-float .menu-list .item a:hover:after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.menu-float .menu-list .item a.active {
    /*padding-left: 30px;*/
}
.menu-float .menu-list .item a.active:after {
    content: "";
    display: block;
    margin-top: 3px;
    height: 2px;
    background-color: #fff;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: -webkit-transform .2s;
    transition: transform .2s;
}
.menu-float .menu-list .item a.active:hover:after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
/** end menu float **/

/** application employment  **/
.application-employment-banner{
    background-color: #0095DA;
    padding: 30px;
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    font-weight: 300;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
}

.application-employment-banner:hover{
    box-shadow: 0 14px 35px rgba(49, 49, 49, 0.2);
}

.application-employment-banner .title{
    color: #fff;
    font-size: 26px;
    line-height: 28px;
    font-weight: 600;
    padding-bottom: 10px;
}

.application-employment-banner span{
    font-size: 50px;
} 
/** end application employment  **/


/** slider job openings **/
.slider-job-openings-box{
    position: relative;
    min-height: 475px;
}

.slider-job-openings-box .arrow-left{
    position: absolute; 
    top: 30px; 
    left:-31px;
    z-index: 99;
}
.slider-job-openings-box .arrow-left img{
    max-height: 50px;
    cursor: pointer;
}

.slider-job-openings-box .arrow-right{
    position: absolute; 
    top: 30px; 
    right:-31px;
    z-index: 99;
}
.slider-job-openings-box .arrow-right img{
    max-height: 50px;
    cursor: pointer;
}

.slider-job-openings .news-box{
    background-color: #fff; 
    border: 1px solid #E8EAEA;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    /*min-height: 475px;*/
}  

.slider-job-openings .news-box:hover{
    border: 1px solid #0095DA;
}

.slider-job-openings .image{
    background-repeat: no-repeat !important; 
    background-position: center center; 
    background-size: cover;  
    padding-top: 62%;   
}

.slider-job-openings .content{
    background-color: transparent;
    padding: 20px; 
}

.slider-job-openings .title{
    color: #2C3134;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding-bottom: 15px;
}

.slider-job-openings .text{
    color: #666666;
    font-size: 15px;
    line-height: 24px;
}

.slider-job-openings .date-divider {
    height: 1px;
    background-color: #E7E7E7;
    margin: 15px 0;
}

.slider-job-openings .more{
    position: absolute; 
    bottom: 15px;
    width: 100%;
    padding: 0 20px;
}

.slider-job-openings .date{
    color: #2D3135;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.slider-job-openings .date i{
    padding-right: 5px;
}

.slider-job-openings .btn-more-news{
    color: #00ADEE;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500; 
    text-decoration: none; 
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;   
}

.slider-job-openings .btn-more-news:hover{
    color: #333;   
}
/* end slider job openings */

/* timeline */
.timeline {
     position: relative;
     padding: 1rem;
     margin: 0 auto;
     max-width: 1300px;
}
.timeline:before {
     content: '';
     position: absolute;
     height: 100%;
     border: 1px solid #0095DA;
     right: 40px;
     top: 0;
}
.timeline:after {
     content: "";
     display: table;
     clear: both;
}

.timeline__item {
    padding: 10px; /*1rem;*/
    border: 2px solid #0095DA;;
    border-image: #0095DA;/*linear-gradient(to right, skyblue 0%, hotpink 100%); */
    border-image-slice: 1;
    position: relative;
    margin: 1rem 3rem 1rem 1rem;
    clear: both;
    margin-bottom: -110px;
    margin-left: -35px;
    margin-right: 95px;
}
.timeline__item:last-child {

    /*margin-bottom: -130px;*/
}
.timeline__item:after, .timeline__item:before {
     content: '';
     position: absolute;
}
.timeline__item:before {
     right: -10px;
     top: calc(50% - 5px);
     border-style: solid;
     border-color: #0095DA #0095DA transparent transparent;
     border-width: 10px;
     transform: rotate(45deg);
}

.timeline__item--year {
     text-align: center;
     max-width: 150px;
     margin: 10px -25px 10px auto; /*margin: 0 48px 0 auto;*/
     font-size: 28px;
     line-height: 110px;
     border-image: none;
     padding: 0.5rem 1rem 1rem;
     color:#fff;
     width: 100px;
     height: 130px;
     background-image: url('../images/hexagon.png');
     background-position: center center;
     background-repeat: no-repeat;
     border: none; 
}
.timeline__item--year:before {
     display: none;
}
.timeline__title {
     margin: 0;
     font-size: 14px;
}
.timeline__title a{
    font-weight: 600 !important;
    font-size: 16px !important;    
}
.timeline__blurb {
     line-height: 1.5;
     font-size: 1rem;
     margin: 0.5rem 0 0;  
}
/* end timeline */

/* partners */
.partners-image {
    background-repeat: no-repeat !important; 
    background-position: center center; 
    background-size: contain;  
    padding-bottom: 50%; 
    margin: 30px; 
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0.5;
    filter: gray; /* IE6-9 */
    filter: grayscale(1); /* Firefox 35+ */
    -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
}

.partners-image:hover {
    filter: none;
    -webkit-filter: grayscale(0);  
    opacity: 1;
}

.partners-navigation .btn-default {
    background-color: #0095DA;
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 2px 15px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}

.btn-default:hover {
    background-color: #00699B;
}

.btn-default:active {
    background-color: #00699B;
}
/* end partners */

/* contact page */
.contact-info{
    padding-left: 40px;
    position: relative;
    padding-bottom: 30px;
}

.contact-info .title{
    font-weight: 600;
    color: #323232;
    padding-bottom: 5px;
}

.contact-info .text{
    color: #777;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;   
}

.contact-info .icon{
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    text-align: center;
}

.contact-info .icon i{
    font-size: 26px;
    color:#0095DA;
}

.contact-info a{
    color: #777 !important;
    font-size: 14px !important;
    line-height: 24px !important;
    font-weight: 300 !important;  
}

.contact-info a:hover{
    color: #0095DA !important; 
}

.contact-form {
    box-shadow: 0 14px 35px rgba(49, 49, 49, 0.08);
    background: #fff;
    padding: 45px 45px 30px 45px;
}

.contact-form .alert-error {
    background-color: #EB1923;
    color: #fff;
    padding: 10px 15px !important;
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-form .form-control-custom {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #495057;
    background-color: #F7F7F7;
    background-clip: padding-box;
    border: 0px solid #ced4da; 
    border-radius: 0;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    min-height: 50px !important;
    padding-left: 20px;
}
.contact-form .form-btn-send{
    background-color: #0095DA;
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 8px 25px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}
.contact-form .form-btn-send:hover { 
    background-color: #00699B;
}

.contact-form .form-btn-send:focus {
    background-color: #00699B;
}

.contact-form .form-help-block {
    color: #EB1923;
    display: block;
    font-size: 12px;
    padding-top: 5px;   
}

.contact-form .modal-content {
    border-width: 0 !important;
    border-radius: 0 !important;
    max-width: 600px;
}

.contact-form .modal-header{
    /*background-color: #ED1C24;
    border-radius: 0;
    color: #fff;*/
}

.contact-form .modal-header h5 {
    font-size: 20px;
    font-family: 'Montserrat', Arial;
    text-transform: uppercase;
}

.contact-form .modal-header .close {
    color: #fff;
    text-shadow: none;
}

.contact-form .modal-text-success{
    line-height: 24px;
    font-size: 16px;
    padding-bottom: 20px;
    font-weight: 300;
}

.contact-form .btn-close-modal {
    background-color: #0095DA;
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 8px 25px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
    border: none;
}
.contact-form .btn-close-modal:hover { 
    background-color: #00699B;
}

.contact-form .btn-close-modal:focus {
    background-color: #00699B;
}

.contact-form select {
    padding: 15px !important;
}

.contact-map{
    border-bottom: 1px solid #999;
    border-bottom: 1px solid #fff;
}

.contact-map .box{
    background-color: #eee;
    height: 400px;
}

.contact-map .box .bubbleclass{
    font-size: 14px !important;
    /*background: #E9242C;*/
    fill: #E9242C !important;
}

.contact-map .box .bubbleclass .H_ib_body{
    background-color: rgba(0,0,0,.8) !important; 
    padding: 10px 20px 10px 10px !important;
    min-width: 250px !important;
    line-height: 20px !important;
}

/* contact locations */
.contact-locations{
    background-color: #E8EAEA;
}

.content-news-home-inner{
    padding: 80px 15px;
    max-width: auto;
}

.contact-locations .location-box{
    border: 0px solid #dddddd;
    padding: 20px;
    height: 100%;
    position: relative;
    box-shadow: 0 14px 35px rgba(49, 49, 49, 0.1);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #fff;
}

.contact-locations .location-box:hover{
    box-shadow: 0 14px 35px rgba(49, 49, 49, 0.3);
}

.contact-locations .location-box .title{
    color: #333333;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    padding: 20px 0 5px 0;
}

.contact-locations .location-box .text{
    color: #666666;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.contact-locations .location-box .text a{
    color: #666666;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.contact-locations .location-box .text a:hover{
    color: #0095DA;
}

.contact-locations .location-box .image {
    background-repeat: no-repeat !important; 
    background-position: center center; 
    background-size: contain;  
    padding-bottom: 50%; 
}
/* end contact page */

/* news */
.news{
    margin-bottom: 30px;
}

.news .news-box{
    background-color: #fff; 
    position: relative;
    box-shadow: 0 14px 35px rgba(49, 49, 49, 0.1);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s; 
}

.news .news-box:hover{
    background-color: #fff; 
    position: relative;
    box-shadow: 0 14px 35px rgba(49, 49, 49, 0.3);
}

.news .image{
    background-repeat: no-repeat !important; 
    background-position: center center; 
    background-size: cover;  
    padding-top: 62%;
    cursor: pointer; 
    position: relative;  
}

.news .content{
    background-color: #fff;
    padding: 20px; 
}

.news .title{
    color: #2C3134;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding-bottom: 15px;
    cursor: pointer; 
}

.news .text{
    color: #666666;
    font-size: 15px;
    line-height: 24px;
}

.news .date-divider {
    height: 1px;
    background-color: #E7E7E7;
    margin: 15px 0;
}

.news .more{
    position: absolute; 
    bottom: 15px;
    width: 100%;
    padding: 0 20px;
}

.news .date, .date-news-view{
    color: #2D3135;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.news .date i, .date-news-view i{
    padding-right: 5px;
}

.news .btn-more-news{
    color: #00ADEE;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500; 
    text-decoration: none; 
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s; 
    cursor: pointer;  
}

.news .btn-more-news:hover{
    color: #333;   
}

/* news view */
.news-view .image-box{
    overflow: hidden;
    position: relative; 
    margin: 0 auto; 
    margin-bottom: 30px;  
}

.news-view .image-box .image{
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 1500ms, opacity 700ms;
    transition: transform 1500ms, opacity 700ms;
    cursor: pointer;
    background-repeat: no-repeat !important;
    background-position: center center;
    background-size: cover;
    padding-top: 52%;
}
.news-view .image-box .image:hover{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    overflow: hidden; 
}
.news-view .btn-back{
    background-color: #0095DA;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 3px 10px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}

.news-view .btn-back:hover{
    background-color: #05527D;
}

/* navigation */
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #0095DA !important;
    background-color: transparent;
    border: 1px solid #0095DA;
    margin-right: 5px;
    border-radius: 0px !important;
    min-width: 36px;
    text-align: center;
}
.page-item.disabled .page-link {
    color: #868e96;
    pointer-events: none;
    cursor: auto;
    background-color: #CEFFCE;
    border-color: #718393;
}
.page-item.active .page-link {
    z-index: 1;
    color: #fff !important;
    background-color: #0095DA;
    border-color: #0095DA;
}
.page-link:focus, .page-link:hover {
    color: #fff !important;
    text-decoration: none;
    background-color:#0095DA;
    border-color: #0095DA;
}
/* end navigation */

.gallery-image{
    margin-bottom: 30px;
    height: calc(100% - 30px);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.gallery-image .image-box{
    overflow: hidden;
    position: relative; 
    margin: 0 auto; 
}

.gallery-image .image-box .image{
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 1500ms, opacity 700ms;
    transition: transform 1500ms, opacity 700ms;
    cursor: pointer;
    background-repeat: no-repeat !important;
    background-position: center center;
    background-size: cover;
    padding-top: 62%;
}
.gallery-image .image-box .image:hover{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    overflow: hidden; 
}

.gallery-image .title{
    margin-left: 10%;
    background-color: #FFFFFF;
    padding: 10px 15px;
    margin-top: -30px;
    position: relative;
    z-index: 9;
    color: #2C3134;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

/* image hover */ 
.gallery-image-hover{
    padding: 0 15px;
}
.gallery-image-hover .image-hover {
    position:relative;
    font-size: 20px;
    line-height: 22px;
    color:#fff; 
    transition: .5s ease;
    cursor: pointer; 
}
.gallery-image-hover .image-hover-content {
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-top: 70%
}
.gallery-image-hover .image-hover-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    padding: 25px;
    opacity:0;
    background: rgba( 0, 0, 0, .5 );
    color:#fff;
    transition: .5s ease; 
}
.gallery-image-hover .image-hover:hover .image-hover-overlay{
    opacity:1;
    transition: .5s ease; 
}

.gallery-image-hover .image-hover-overlay-btn{
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    font-size: 50px;
    line-height: 50px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.gallery-image-hover .col-padding{
    padding-right: 1px;
    padding-left: 0;
    padding-bottom: 1px;
}
/* end image hover */ 

/* hexagon */
.hexagon {
    overflow: hidden;
    visibility: hidden;
    -webkit-transform: rotate(120deg);
       -moz-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
         -o-transform: rotate(120deg);
            transform: rotate(120deg);
    cursor: pointer;
    }
.hexagon-in1 {
    overflow: hidden;
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(-60deg);
       -moz-transform: rotate(-60deg);
        -ms-transform: rotate(-60deg);
         -o-transform: rotate(-60deg);
            transform: rotate(-60deg);
         overflow: hidden;
    }
.hexagon-in2 {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50%; 
    background-color: #0095DA;
    background-size: cover;
    /*background-image: url(http://placekitten.com/240/240);*/
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    visibility: visible;
    -webkit-transform: rotate(-60deg);
       -moz-transform: rotate(-60deg);
        -ms-transform: rotate(-60deg);
         -o-transform: rotate(-60deg);
            transform: rotate(-60deg);
    overflow: hidden;
}
.hexagon-in2:hover {
    background-color: #05527D;
}

.hexagon-in2 div{
    height:160px;
    background-repeat: no-repeat;
    background-color: #0095DA;
    background-size: cover; 
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 500ms, opacity 100ms;
    transition: transform 500ms, opacity 100ms; 
    background-position: center;  
}

.hexagon-in2 div:hover{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    overflow: hidden; 
}

.hexagon1 {
    width: 190px;
    height: 160px;
    margin: 0 0 0 0; /*-17%*/ /*-80px*/;
    margin-left: calc(50% - 95px);
}
.hexagon2 {
    width: 200px;
    height: 400px;
    margin: -80px 0 0 20px;
}

.privacy-policy table{
    width: 100%;
}

/* search */
.content-search{
    margin-top: 70px; 
    box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.15);
}

.search{}

.search .title{
    color: #05527D;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500; 
    padding: 5px 0;      
}

.search .description{
    color: #666666;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;    
}

.search .url{
    color: #0095DA;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;    
}

.search .divider {
    background-color: #E8EAEA;
    height: 1px;
    margin: 15px 0;
}
/* end search */
    
/** footer ********************************************************************/

.footer {
    padding: 0 15px;
    color: #888;
    font-size: 14px;
    line-height: 18px;
    background-color: #ffffff;
    font-weight: 400;
    border-top: 1px solid #E8EAEA;
}

.footer-inner {
    max-width: 1170px;
    margin: auto;
    padding: 50px 15px 0 15px;
}

.footer-inner .title{
    color: #333;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    padding-bottom: 20px;
}

.footer-inner .text{
    line-height: 28px;
}

.footer-inner .logo{
    max-width: 200px;
}

.footer-navigation {
    padding-bottom: 5px;
}

.footer-navigation i {
    font-size: 13px;
    padding-right: 5px;
    color: #ccc;
}

.footer-contact {
    padding-bottom: 5px;
}

.footer-contact i {
    color: #006BAA;
    font-size: 18px;
    padding-right: 5px;
}

.footer b {
    font-weight: 600;
    color: #333;
}

.footer-social {
    display: inline-block;
    color: #fff;
    background-color: #0095DA;
    border-radius: 4px;
    font-size: 20px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.footer-social:hover {
    background-color: #00699B;
}



.footer-copyright {
    padding: 15px 0;
    font-size: 12px;
    border-top: 1px solid #DEDFE0;
    font-weight: 400;
}

a.link-footer:link    { color: #333; text-decoration: none; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 600;}
a.link-footer:visited { color: #333; text-decoration: none; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 600;}
a.link-footer:hover   { color: #0095DA; text-decoration: none; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 600;}
a.link-footer:active  { color: #0095DA; text-decoration: none; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 600;}

a.link-footer-copyright:link    { color: #333; text-decoration: none; font-size: 12px; font-family: 'Montserrat', sans-serif; font-weight: 600;}
a.link-footer-copyright:visited { color: #333; text-decoration: none; font-size: 12px; font-family: 'Montserrat', sans-serif; font-weight: 600;}
a.link-footer-copyright:hover   { color: #0095DA; text-decoration: none; font-size: 12px; font-family: 'Montserrat', sans-serif; font-weight: 600;}
a.link-footer-copyright:active  { color: #0095DA; text-decoration: none; font-size: 12px; font-family: 'Montserrat', sans-serif; font-weight: 600;}

a.link-footer-navigation:link    { color: #0095DA; text-decoration: none; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 600;}
a.link-footer-navigation:visited { color: #0095DA; text-decoration: none; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 600;}
a.link-footer-navigation:hover   { color: #333333; text-decoration: none; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 600;}
a.link-footer-navigation:active  { color: #333333; text-decoration: none; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 600;}
/** end footer ****************************************************************/

/** sidebar holder ********************************************************************/

.bootstrap-sidebar-a-holder{
    display: inline;
}

.bootstrap-sidebar-a-text{
    width: 81.5%;
    display: inline-block !important;
}

.bootstrap-sidebar-a-dropdown{
    width: 17%;
    display: inline-block !important;
}

.bootstrap-sidebar-a-invisible{
    opacity: 0;
}

.background-dark-blue{
    background-color: #0083C1;
}

/** end sidebar holder ****************************************************************/

/** max 1280  *****************************************************************/
@media screen and (max-width: 1300px){
    .slider-job-openings-box .arrow-right{
        right: -15px;
    }
    .slider-job-openings-box .arrow-left{
        left: -15px;
    }    
}

/** max 1200  *****************************************************************/
@media screen and (max-width: 1200px){
    .content-slider-main-inner {
        padding: 0;
    }
    
    .content-news-home .custom-margin{
        margin-bottom: 30px;
    }
}

/** max 1180  *****************************************************************/
@media screen and (max-width: 1180px){
    .header-menu-desktop{
        display: none;
    }
    
    .header-menu-mobile{
        display: block;
    }
}

/** max 1100  *****************************************************************/
@media screen and (max-width: 1100px){
    
}

/** max 992 *******************************************************************/
@media screen and (max-width: 992px){
    body {
        padding-top: 70px;
    }
    
    .header .logo {
        max-height: 50px;
        padding: 5px 0;
    }
    
    .page-title{
        font-size: 36px;
        line-height: 46px;
    }

    .page-image-content .title {
        font-size: 40px !important;;
        line-height: 40px !important;;
    }
    
    .page-image-content .text {
        font-size: 14px;
        line-height: 20px;
    }
    
    .page-image-float-left {
        max-width: 100%;
        float: none;
        padding: 0 0 30px 0;
    }
    
    .page-image-float-right {
        max-width: 100%;
        float: none;
        padding: 0 0 30px 0;
    }
    
    .slider-main .item .text-box .title {
        font-size: 36px;
        line-height: 38px;
    }
    
    .slider-main .item .text-box .subtitle {
        font-size: 18px;
        line-height: 22px;
    }

    .slider-main .item .text-box .description {
        display: none;
    }

    .header-link-sm-hide{
        display: none;
    }
}


/** max 768 *******************************************************************/
@media screen and (max-width: 768px){
    
    .content-inner {
        padding: 50px 15px;
    }

    .page-image-content .title {
        font-size: 30px !important;;
        line-height: 30px !important;;
    }
    
    .page-image-content .text {
        font-size: 12px;
        line-height: 18px;
    }
    
    .slider-main .item .text-box .title {
        font-size: 30px;
        line-height: 32px;
    }
    
    .slider-main .item .text-box .subtitle {
        font-size: 14px;
        line-height: 18px;
    }
}

/** min 560 *******************************************************************/
@media screen and (min-width: 700px) {
    /* timeline */
    .timeline {
         padding: 2rem;
    }
    .timeline:before {
         left: calc(50% - 1px);
         right: auto;
    }
    
    .timeline__item {
        width: 44%;
        margin: 1rem;
        
        margin-right: -50px;
        margin-left: -30px;
        margin-bottom: -105px;
    }
    .timeline__item:nth-of-type(2n) {
         float: right;
         margin: 1rem;
         border-image: #0095DA; /*linear-gradient(to right, hotpink 0%, skyblue 100%); */
         border-image-slice: 1;
         margin-bottom: -120px;
         margin-right: -30px;
    } 
    .timeline__item:nth-of-type(2n):before {
         right: auto;
         left: -10px;
         border-color: transparent transparent #0095DA #0095DA;
    }
    
    .timeline__item--year {
         text-align: center;
         margin: 0 auto;
    }
    .timeline__item--year:nth-of-type(2n) {
         float: none;
         margin: 0 auto;
         border-image: none;
    }
    .timeline__item--year:nth-of-type(2n):before {
         display: none;
    }
    /* end timeline */            
}

/** max 560 *******************************************************************/
@media screen and (max-width: 574px){}