/*--font-family: 'Noto Sans', sans-serif;--*/
::-moz-selection {
    color: #ffffff;
    background: #6eb001;
}
::selection {
    color: #ffffff;
    background: #6eb001;
}
* {
    margin: 0;
    padding: 0;
}
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 1rem;
}
:focus {
    outline: none;
}
button{
    border: none;
    outline: none;
}
button:focus{
    outline: none;
}
body{
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 400;
    font-family: 'Noto Sans', sans-serif;
    color: #666666;
    background: #fff;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-top: 10.4375rem;
}
.scroll_off{
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
}
p{
    margin: 0;
}
ul, ol{
    margin: 0;
    padding: 0;
}
ul li{
    list-style: none;
    padding: 0;
}
body a{
    text-decoration: none;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #3d637a;
}
body a:hover{
    text-decoration: none;
    color: #ff6600;
}
body a:focus{
    outline: none;
}
body h1{
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #3d637a;
}
body h2{
    font-size: 2rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #3d637a;
    text-transform: uppercase;
}
body h3{
    font-size: 1.75rem;
    line-height: 2rem;
    font-weight: 700;
    color: #3d637a;
    text-transform: uppercase;
}
body h4{
    font-size: 1.625rem;
    line-height: 1.875rem;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
}
body h5{
    font-size: 1.5rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #3d637a;
}
body h6{
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 700;
    color: #3d637a;
    text-transform: uppercase;
}
body ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.form-control:focus{
    box-shadow: none;
    border-color: #ccc;
}
body input, body .form-control{
    height: 2.5rem;
    border: 0.0625rem solid #ced4da;
    border-radius: 0;
}
body .form-control.fill_area{
    height: 7.5rem;
    resize: none;
}
input::-webkit-input-placeholder,
body .form-control::-webkit-input-placeholder{
    color: #999999;
    opacity: 1;
}
input:-moz-placeholder,
body .form-control:-moz-placeholder{
    color: #999999;
    opacity: 1;
}
input::-moz-placeholder,
body .form-control::-moz-placeholder{
    color: #999999;
    opacity: 1;
}
body *::-moz-placeholder{
    color: #555555;
    opacity: 1;
}
.cmn_btn{
    font-size: 1.0625rem;
    line-height: 1.3125rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    background: #3d637a;
    text-align: center;
    padding: 0.75rem 1.75rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
}
.cmn_btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6eb001;
    z-index: -1;
    -ms-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transform: scaleX(0);
    transform-origin: right;
}
.cmn_btn:hover{
    color: #fff;
}
.cmn_btn:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}
.border_btn{
    font-size: 1.0625rem;
    line-height: 1.3125rem;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    border: 0.125rem solid #3d637a;
}
.border_btn:hover{
    background: #3d637a;
    color: #fff;
}
.white_btn{
    border-color: #fff;
    color: #fff;
}
.white_btn:hover{
    border-color: #3d637a;
}
.small_btn{
    font-size: 0.9375rem;
    line-height: 1.1875rem;
    padding: 0.625rem 1.25rem;
}

/*-------------------Pre loading-----------*/
.preloading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3d637a;
    z-index: 99999;
    padding: 0.9375rem;
}
.preloading .loader{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.0625rem solid #fff;
}
.lds-ellipsis{
    display: inline-block;
    position: relative;
    width: 5rem;
    height: 5rem;
}
.lds-ellipsis div{
    position: absolute;
    top: 2.0625rem;
    width: 0.8125rem;
    height: 0.8125rem;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 0.5rem;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 0.5rem;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 2rem;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 3.5rem;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(1.5rem, 0);
    }
}

/*------------------------------Owl nav--------------------------*/
.owl-theme .owl-nav{
	margin-top: 0;
}
body .owl-theme .owl-nav [class*="owl-"]{
	margin: 0;
	position: absolute;
	top: 50%;
    width: 2.1875rem;
    height: 2.1875rem;
    background: #3d637a;
    border-radius: 50%;
	transform: translateY(-50%);
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.owl-theme .owl-nav [class*="owl-"]:hover, .owl-theme .owl-nav [class*="owl-"]:focus, .owl-theme .owl-nav [class*="owl-"]:focus-within{
    background-color: #ff9834;
}
.owl-theme .owl-nav [class*="owl-"]:focus{
	outline: none;
}
.owl-theme .owl-nav [class*="owl-"] span{
	display: block;
	font-size: 0 !important;
}
.owl-carousel .owl-nav button.owl-next{
	right: -2.8125rem;
}
.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span{
	background: url(../images/icon/arrow-right.svg) no-repeat center;
    width: 1.125rem;
	height: 1.125rem;
	background-size: 100% 100% !important;
    margin: 0 auto;
/*
    filter: invert(58%) sepia(10%) saturate(567%) hue-rotate(14deg) brightness(95%) contrast(91%);
    -webkit-filter: invert(58%) sepia(10%) saturate(567%) hue-rotate(14deg) brightness(95%) contrast(91%);
*/
}
.owl-theme .owl-nav [class*="owl-"]:hover span, .owl-theme .owl-nav [class*="owl-"]:focus span, .owl-theme .owl-nav [class*="owl-"]:focus-within span{
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.owl-carousel .owl-nav button.owl-prev{
	left: -2.8125rem;
}
.owl-carousel .owl-nav button.owl-prev span {
	background: url(../images/icon/arrow-left.svg) no-repeat center;
}
.owl-theme .owl-dots .owl-dot span{
    background: #3d637a;
    width: 0.8125rem;
    height: 0.8125rem;
    margin: 0.25rem;
    border-radius: 50%;
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span{
    background: #ff6600;
}

/*---------------Social icon--------------*/
.social_icon ul{
    display: flex;
    align-items: center;
}
.social_icon ul li a{
    margin-right: 0.9375rem;
    display: block;
}
.social_icon ul li:last-child a{
    margin-right: 0;
}
.social_icon ul li a img{
    width: 1.625rem;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.social_icon ul li a:hover img{
    filter: invert(36%) sepia(61%) saturate(290%) hue-rotate(149deg) brightness(65%) contrast(77%);
    -webkit-filter: invert(36%) sepia(61%) saturate(290%) hue-rotate(149deg) brightness(65%) contrast(77%);
}

/*Give btn*/
.givebtn a{
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: #6eb001;
    border-radius: 0.5rem;
    text-transform: uppercase;
    padding: 0.3125rem 1.125rem;
    display: inline-block;
}
.givebtn a:hover{
    background: #3d637a;
    color: #fff;
}

/*----------------Header----------------*/
header{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
    -webkit-box-shadow: 0 0.125rem 0.3125rem 0 rgba(0,0,0,.1);
    -moz-box-shadow: 0 0.125rem 0.3125rem 0 rgba(0,0,0,.1);
    box-shadow: 0 0.125rem 0.3125rem 0 rgba(0,0,0,.1);
    padding-top: 3.125rem;
}
header .container{
    max-width: 75.9375rem;
}
header .logo{
    display: block;
    width: 14.5rem;
    z-index: 4;
    margin-bottom: 1.5625rem;
}
header .logo img{
    width: 100%;
}
/* menu */
.main_header{
    width: 100%;
}
.menuArea {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}
.menu{
    margin-left: auto;
}
.navBar{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
}
.navBar li{
    margin-right: 1.5625rem;
}
.navBar li a{
    font-size: 1.375rem;
    line-height: 1.625rem;
    font-family: 'Calibri';
    color: #3d637a;
    text-transform: uppercase;
    padding: 0.625rem 0;
    display: block;
}
#menu-item-303 a{
    pointer-events: none;
}
/*
.navBar li:hover > a, .navBar li.active > a{
    font-weight: 700;
}
*/
#menu-item-303 .dropdown-menu a{
    pointer-events: auto;
}
.navBar .dropdown{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.navBar .dropdown-menu{
    padding: 0;
    border-radius: 0;
    margin: 0;
    border: 0;
    float: none;
    width: 15.625rem;
    box-shadow: 0.0625rem 0.125rem 0.625rem 0rem rgba(0, 0, 0, 0.18);
    background: #3d637a;
    left: auto;
    right: 0;
}
.navBar .dropdown-menu li{
    margin: 0;
}
.navBar .dropdown-menu li a{
    font-size: 1.0625rem;
    line-height: 1.3125rem;
    font-weight: 400;
    font-family: 'Noto Sans', sans-serif;
    text-transform: capitalize;
    color: #fff;
    display: block;
    padding: 0.875rem 0.9375rem;
    border-bottom: 0.0625rem solid #467b9a;
}
.navBar .dropdown-menu li:last-child a{
    border-bottom: none;
}
.navBar .dropdown-menu li:hover > a{
    color: #fff;
    background: #ff9834;
}

/*---------------Mega dropdown menu------------*/
.mega_dropdown_menu{
    position: static;
}
header .navBar .mega_dropdown_menu .dropdown-menu{
    width: 100%;
    min-width: 69.375rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding-right: 9.5rem;
    text-align: right;
}
header .navBar .mega_dropdown_menu .dropdown-menu li{
    display: inline-block;
}
header .navBar .mega_dropdown_menu .dropdown-menu li a{
    border-bottom: none;
}
header .navBar .mega_dropdown_menu .dropdown-menu .dropdown-menu{
    position: inherit;
    width: 100%;
    min-width: 100%;
    left: inherit;
    transform: inherit;
    display: block;
    padding: 0;
}
header .navBar .mega_dropdown_menu .dropdown-menu .dropdown-menu li{
    width: 100%;
}

/*------------------Menu backbtn-------------*/
.menuBackBtn {
    height: 2.5rem;
    width: 2.5rem;
    position: absolute;
    top: 0.3125rem;
    left: 0;
    z-index: 9999;
    margin-bottom: 0;
}
.menuBackBtn li {
    height: 100%;
    width: 100%;
    border-radius: 0.3125rem;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.menuBackBtn li.step_1 {
    z-index: 1;
}
.menuBackBtn li.step_2 {
    z-index: 3;
}
.menuBackBtn li button {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 0.3125rem;
    border: none;
    background: #467b9a;
}
.menuBackBtn li button img{
    width: 1.5625rem;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

/*----------------------Fixed menu-----------------*/
header.fixed{
    position: fixed;
    top: -10.4375rem;
    z-index: 999;
    background: #fff;
}
header.fixed.in_view{
    -ms-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    top: -2rem;
    z-index: 999;
}
header.fixed.in_view .socialLink_wrap{
    display: none;
}
header.fixed.in_view .menuArea{
    align-items: center;
}
header.fixed.in_view .search_icon a{
    padding-bottom: 0;
}
header.fixed.in_view .logo{
    width: 10.9375rem;
}
header.fixed.in_view .navBar li a{
    padding: 2.125rem 0;
}
header.fixed.in_view .navBar .dropdown-menu li a{
    padding: 0.875rem 0.9375rem;
}

/*----------------mobile menuBtn------------*/
.mobElement{
    display: none;
}
.menuBtn{
    width: 1.875rem;
    height: 1.875rem;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 99;
    top: 0.3125rem;
}
.menuBtn span{
    display: block;
    position: absolute;
    height: 0.1875rem;
    width: 100%;
    background: #fff;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.menuBtn span:nth-child(1){
    top: 0;
}
.menuBtn span:nth-child(2),
.menuBtn span:nth-child(3){
    top: 0.5625rem;
}
.menuBtn span:nth-child(4){
    top: 1.125rem;
}
.menuBtn.open span:nth-child(1){
    top: 0.75rem;
    width: 0%;
    left: 50%;
}
.menuBtn.open span:nth-child(2){
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menuBtn.open span:nth-child(3){
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.menuBtn.open span:nth-child(4){
    top: 0.75rem;
    width: 0%;
    left: 50%;
}

/*-------------Social link wrap-------------*/
.socialLink_wrap{
    padding: 0 3.125rem 1.875rem 0;
}
.socialLink_wrap .social_icon ul{
    justify-content: flex-end;
}

.smVersion{
    margin-bottom: 3.4375rem;
    text-align: center;
    width: 100%;
    display: none;
}

/*------------------Search-----------------*/
.search_icon a{
    display: inline-block;
    padding-bottom: 0.875rem;
}
.search_icon a img{
    width: 1.5625rem;
}

/*-----------------Search box---------------*/
.search_box{
    position: absolute;
    z-index: 9;
    overflow: hidden;
    width: 100%;
    padding: 0.75rem 1.875rem;
    border-radius: 0;
    display: none;
    flex-wrap: wrap;
    background: #3d637a;
    box-shadow: 0 0.0625rem 0.5rem 0 rgba(0, 0, 0, 0.45);
}
.search_box .btn_close{
    width: 100%;
    height: 100%;
    cursor: pointer;
    border: 0.0625rem solid #ffffff;
    font-size: 0;
    background-color: transparent;
    position: absolute;
    z-index: 9;
}
.close_box{
    position: relative;
    width: 2.1875rem;
    height: 2.1875rem;
}
.close_box::before{
    content: "";
    position: absolute;
    top: 0.3125rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/icon/close.svg) no-repeat center;
    background-size: 100% 100%;
    width: 1.5625rem;
    height: 1.5625rem;
    margin: 0 auto;
}
.search_box form{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search_box form .form-group{
    display: block;
    margin: 0;
    width: 100%;
    min-height: 2.8125rem;
}
.search_box form .form-group input[type="text"]{
    width: 100%;
    display: block;
    background: transparent;
    height: 2.8125rem;
    padding: 0.3125rem 0.9375rem;
    box-shadow: none;
    outline: 0;
    border: 0;
    border-radius: 0;
    color: #ffffff;
}
.search_box form ::-webkit-input-placeholder{
    /* Chrome/Opera/Safari */
    color: #fff;
}
.search_box form ::-moz-placeholder{
    /* Firefox 19+ */
    color: #fff;
}
.search_box form :-ms-input-placeholder{
    /* IE 10+ */
    color: #fff;
}
.search_box form :-moz-placeholder{
    /* Firefox 18- */
    color: #fff;
}

/*-------------Home banner-------------*/
.banner_bg{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
/*    padding-top: 36%;*/
    height: 100%;
}
.banner_item{
    height: 32rem;
    overflow: hidden;
}
.banner_item .video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.home_banner .owl-dots{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.9375rem;
    margin: 0 auto;
}

/*--------Program sec---------*/
.program_sec{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 1.25rem;
}
.program_sec .sec_head{
    margin-bottom: 0.75rem;
}
.program_sec .sec_head h4{
    color: #fff;
}
.program_link ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 -0.1563rem;
}
.program_link ul li{
    display: inline-block;
    padding: 0 0.1563rem;
}
.program_link ul li a{
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 400;
    color: #fff;
    padding: 0.875rem 1.4375rem;
    display: inline-block;
    text-align: center;
}
.program_link ul li a:hover, .program_link ul li.active a{
    background: #ff9834;
    color: #fff;
}

/*-------------Home link sec-------------*/
.homeLink_sec{
    padding: 2.1875rem 0;
}
.home_link ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.home_link ul li{
    display: inline-block;
    margin:  0 0.9375rem;
}
.home_link ul li a{
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 700;
    color: #3d637a;
    border-radius: 0.5rem;
    text-transform: uppercase;
    padding: 0.5rem 1.625rem;
    display: inline-block;
}
.home_link ul li a:hover, .home_link ul li.active a{
    background: #6eb001;
    color: #fff;
}

/*-------------Home content sec-------------*/
.homeContent_sec{
    padding: 3.125rem 0 0;
}
.homeContent_wrap ul li{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2.5rem;
}
.homeContent_wrap ul li:nth-child(n + 2){
    padding-top: 5.625rem;
}
.content_box{
    width: calc(100% / 2);
    padding: 0 2.5rem;
}
.homeContent_wrap ul li:nth-child(even){
    flex-direction: row-reverse;
}
.box_txt{
    padding-top: 5rem;
}
.box_txt h2{
    margin-bottom: 0.9375rem;
}
.box_txt p{
    font-size: 1.5rem;
    line-height: 2.375rem;
    margin-bottom: 1.875rem;
}
.box_txt .cmn_btn{
    margin-right: 1.5rem;
}

/*-------------Map sec-------------*/
/*
.map_sec{
    padding: 0.9375rem;
    box-shadow: 0 0.5rem 0.75rem 0.375rem #ebeae6;
    position: relative;
}
*/
.map_sec .map_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.map_sec a{
    display: block;
}
.map_icon{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 7.375rem;
    display: flex;
    margin: 0 auto;
    transform: translateY(-50%);
}
.map_icon img{
    width: 100%;
}
.map_sec span{
    color: #3d637a;
    margin-bottom: 0.9375rem;
    display: block;
    text-align: center;
}

/*-------------Explore_box-------------*/
.explore_box{
    position: relative;
}
.big_img{
    position: relative;
    top: -4.25rem;
}
.big_img img{
    width: 100%;
}
.circle_info{
    width: 14.875rem;
    height: 14.875rem;
    background: #ff6600;
    border-radius: 50%;
    border: 0.625rem solid #fff;
    box-shadow: 0 0.25rem 1.5rem 0.5rem rgba(0, 0, 0, 0.45);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    bottom: 25%;
}
.circle_info p{
    font-size: 1.875rem;
    line-height: 2.125rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0.0625rem 0.0625rem 0.25rem rgba(0, 0, 0, 0.45);
    padding: 1.875rem 0 0.625rem;
}
.circle_info p span{
    font-size: 2.25rem;
    line-height: 2.5rem;
    display: block;
}
.circle_info img{
    width: 4rem;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

/*---------------Blog sec-------------*/
.blog_sec{
    padding: 5rem 0;
}
.blog_wrap h2{
    margin-bottom: 2.5rem;
    text-align: center;
}
.blog_slider .owl-stage{
    display: flex;
}
.blog_slider.owl-carousel .item{
    height: 100%;
}
.blog_box{
    background: #fff;
    height: 100%;
    position: relative;
    padding-top: 78%;
}
.blog_img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 78%;
    overflow: hidden;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.blog_img::before{
    content: "";
    position: absolute;
    bottom: 1.5rem;
    right: 1.6875rem;
    z-index: 9;
    background: url(../images/icon/logo-shape.svg) no-repeat center;
    background-size: 100% 100%;
    width: 3.375rem;
    height: 3rem;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.blog_content{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}
.blog_txt{
    width: 100%;
    word-break: break-word;
}
.blog_content h3{
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin: 1.5625rem 0 0.625rem;
}
.blog_content p{
    font-size: 1.0625rem;
    line-height: 1.4375rem;
    margin-bottom: 0.9375rem;
}
.blog_date{
    color: #ff6600;
}
.btn_center{
    text-align: center;
    margin-top: 1.875rem;
}

/*---------------Mission bg-------------*/
/*--------------Inner wrapper-------------*/
.mission_bg{
    padding: 6.25rem 0 17.5rem;
    color: #fff;
}
.mission_bg::before{
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.mission_txt p{
    font-size: 1.875rem;
    line-height: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 1.875rem;
}
.mission_txt span{
    font-size: 1.3125rem;
    line-height: 1.5625rem;
    font-style: italic;
    text-align: right;
    display: block;
    padding-right: 10%;
}

/*---------------White box sec-------------*/
.whiteBox_sec{
    padding: 6.25rem 0;
    position: relative;
}
.whiteBox_sec::before{
    content: "";
    position: absolute;
    top: -3rem;
    bottom: -2.75rem;
    right: 0;
    left: 10%;
    z-index: -1;
    background: url(../images/icon/logo-shape.svg) no-repeat center;
    background-size: 100% 100%;
    width: 44.875rem;
/*    height: 41.5rem;*/
    margin: 0 auto;
    opacity: 0.8;
}
.whiteBox_sec .container{
    max-width: 80.625rem;
}
.whiteBox_wrap .row{
    margin: 0 -2.8125rem;
}
.whiteBox_wrap .row [class*="col-"]{
    padding: 0 2.8125rem;
}
.whiteBox_item{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 64%;
    display: block;
}
.whiteBox_item::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15rem;
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#000000',GradientType=0 );
}
.whiteBox_item::after{
    content: "";
    position: absolute;
    top: -1.5625rem;
    left: 0;
    right: 0;
    border: 0.375rem solid #3d637a;
}
.whiteBox_txt{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.1875rem;
    display: flex;
    align-items: center;
    width: 65%;
    margin: 0 auto;
}
.whiteBox_txt img{
    width: 5.25rem;
    margin-right: 1.5rem;
    filter: invert(59%) sepia(70%) saturate(5816%) hue-rotate(1deg) brightness(105%) contrast(103%);
    -webkit-filter: invert(59%) sepia(70%) saturate(5816%) hue-rotate(1deg) brightness(105%) contrast(103%);
    opacity: 0.48;
}
.whiteBox_txt p{
    font-size: 2.0625rem;
    line-height: 2.3125rem;
    font-weight: 700;
    color: #fff;
}

/*---------------Things to do bg-------------*/
.parallax{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}
.parallax::before{
    content: "";
    position: absolute;
    bottom: 2.375rem;
    right: 2.125rem;
    z-index: 9;
    background: url(../images/icon/logo-shape.svg) no-repeat center;
    background-size: 100% 100%;
    width: 5.6875rem;
    height: 5.125rem;
    opacity: 0.7;
}
.thingsToDo_bg{
    padding: 10.625rem 0 14.375rem;
    text-align: center;
}
.thingsToDo_txt h4{
    font-size: 3.75rem;
    line-height: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5625rem;
}
.thingsToDo_txt h4 span{
    font-size: 2.3125rem;
    line-height: 2.5625rem;
    display: block;
}

/*---------------Nnews letter sec-------------*/
.newsletter_sec{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5.3125rem 0 5.9375rem;
    text-align: center;
}
.newsletter_wrap h5{
    font-size: 2.0625rem;
    line-height: 2.3125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2.8125rem;
}
.newletter_form{
    width: 85%;
    margin: 0 auto;
}
.newletter_form .form-group{
    margin-bottom: 0;
}
.newletter_form .form-group .fill{
    font-size: 0.6875rem;
    line-height: 0.875rem;
    color: #325569;
    height: 2.1875rem;
    background: #fff;
    border: none;
}
.joinUs_btn{
    font-size: 0.9375rem;
    line-height: 1.1875rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    background: #ff9834;
    padding: 0.5rem 0.9375rem;
    display: block;
    width: 100%;
    text-align: center;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: none;
}
.joinUs_btn:hover{
    background: #6eb001;
}
.newletter_form form ::-webkit-input-placeholder{
    /* Chrome/Opera/Safari */
    color: #325569;
}
.newletter_form form ::-moz-placeholder{
    /* Firefox 19+ */
    color: #325569;
}
.newletter_form form :-ms-input-placeholder{
    /* IE 10+ */
    color: #325569;
}
.newletter_form form :-moz-placeholder{
    /* Firefox 18- */
    color: #325569;
}

.newletter_form .wpcf7-not-valid-tip{
    color: #ff0000;
    font-size: 1em;
    font-weight: normal;
    display: block;
    background: #fff;
    margin: 0.3125rem 0;
    padding: 0.3125rem 0.625rem;
    font-size: 0.875rem;
    text-align: left;
    line-height: 1.125rem;
}
.newletter_form .wpcf7 form .wpcf7-response-output{
    border: 0.0625rem solid #6eb001;
    background: #fff;
    color: #000;
    font-size: 0.9375rem;
    line-height: 1.1875rem;
    padding: 0.25rem 0.625rem;
}

/*-----------Newsletter form for (mc_embed_signup)------*/
.newletter_form #mc_embed_signup{
    background: transparent;
}
.newletter_form #mc_embed_signup form{
    padding: 0;
}
.newletter_form #mc_embed_signup input{
    border: none;
    border-radius: 0;
}
.newletter_form #mc-embedded-subscribe{
    width: 100%;
    margin: 0;
}
.newletter_form #mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error{
    border-width: 0.0625rem;
}
.newletter_form #mc_embed_signup .response{
    font-weight: 500;
    color: #fff;
    padding: 0;
    text-align: center;
    width: 100%;
}
.newletter_form #mc_embed_signup .response a{
    color: #fff;
}
.newletter_form #mc_embed_signup .foot{
    display: block;
}

/*------------CiviCRM Forms----------*/
.inner_content div.crm-container p {
	padding-bottom: 0;
	line-height: 1.2;
}
.inner_content div.crm-public form input[type=checkbox] {
	height: initial;
	transform: scale( 1.5 );
}
.inner_content div.crm-public form .content,
.inner_content div.crm-public form div.label {
	line-height: 1.4;
}
/*------------CiviCRM Newsletter----------*/
div.newsletter_form div.label,
div.newsletter_form i {
	display: none;
}
div.newsletter_form h2 {
	color: #fff;
}
div.newsletter_form div#crm-container.crm-container.crm-public {
	margin: 0 auto;
	max-width: 58.75rem;
}
div.newsletter_form div#crm-container.crm-container.crm-public div.crm-section.form-item {
	display: inline-block;
	padding: 0;
	width: 33.33%;
}
div.newsletter_form div#crm-container.crm-container.crm-public div.crm-section.form-item div.content {
	margin: 0;
	padding: 0;
}
div.newsletter_form div#crm-container.crm-container.crm-public input.crm-form-text[type="email"],
div.newsletter_form div#crm-container.crm-container.crm-public input.crm-form-text[type="text"] {
	background-image: none;
	box-sizing: border-box;
	border: none;
	border-radius: initial;
	height: 2.1875rem;
	width: 100%;
	padding: 0.375rem 0.75rem;
}
div.newsletter_form div#crm-container.crm-container div.crm-submit-buttons {
	height: 2.1875rem;
	margin: 0;
}
div.newsletter_form div#crm-container.crm-container div.crm-submit-buttons button.crm-form-submit {
	color: #fff;
	font-family: Arial;
	font-size: 0.9375rem;
	font-weight: 700;
	background: #ff9834;
	border: none;
	border-radius: initial;
	text-shadow: none;
	height: 100%;
	width: 100%;
	padding: 0.5rem 0.9375rem;
	margin: 0;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
div.newsletter_form div#crm-container.crm-container div.crm-submit-buttons button.crm-form-submit:hover {
    background: #6eb001;
}
@media only screen and (max-width: 47.9375rem ) {
   div.newsletter_form div#crm-container.crm-container.crm-public div.crm-section.form-item {
		width: 100%;
	}
}

/*---------------Site footer-------------*/
.site_footer{
    padding: 5.625rem 0 3.75rem;
}
.footer_box h6{
    margin-bottom: 1.25rem;
}
.footer_box p{
    font-size: 1.25rem;
    line-height: 1.625rem;
    color: #3d637a;
}
.footer_box ul li{
    margin-bottom: 0.5rem;
}
.footer_box ul li:last-child{
    margin-bottom: 0;
}
.footer_box ul li a{
    font-size: 1.1875rem;
    line-height: 1.4375rem;
}
.footer_box .ftContact_link li{
    display: flex;
    margin-bottom: 1.25rem;
}
.ftContact_link li img{
    width: 1.375rem;
    margin-right: 0.75rem;
}
.footer_wrap .social_icon{
    margin-top: 2.5rem;
}
.footer_wrap .social_icon ul li a img{
    filter: invert(36%) sepia(61%) saturate(290%) hue-rotate(149deg) brightness(65%) contrast(77%);
    -webkit-filter: invert(36%) sepia(61%) saturate(290%) hue-rotate(149deg) brightness(65%) contrast(77%);
}
.footer_wrap .social_icon ul li a:hover img{
    filter: none;
    -webkit-filter: none;
}

/*------------Copy right-----------*/
.copy_right{
    line-height: 1.5rem;
    color: #3d637a;
    padding-top: 4.375rem;
    text-align: center;
}
.footer_logo{
    width: 30.3125rem;
    display: block;
    margin: 0 auto 2.5rem;
}

/*------------Mission Page-----------*/
/*------------Inner wrapper-----------*/
.inner_wrapper{
    display: flex;
    flex-wrap: wrap;
}
.inner_wrapper .inner_content{
    width: 75%;
    padding: 3.125rem 5.9375rem 3.125rem 8.75rem;
}
.inner_content{
    font-size: 1.125rem;
    line-height: 1.625rem;
    width: 100%;
    padding: 3.75rem 0;
}
.inner_content h1{
    margin-bottom: 1.125rem;
}
.inner_content h2{
    margin-bottom: 1.25rem;
}
.inner_content h3{
    margin-bottom: 1.125rem;
}
.inner_content h4{
    margin-bottom: 0.9375rem;
}
.inner_content h5{
    margin-bottom: 0.75rem;
}
.inner_content h6{
    margin-bottom: 0.625rem;
}
.inner_content p{
    padding-bottom: 1.5625rem;
}
.inner_content ul li{
    position: relative;
    padding: 0 0 0.9375rem 1.25rem;
}
.inner_content ul li ul{
    padding: 0.9375rem 0 0;
}
.inner_content ul li::before{
    content: "";
    position: absolute;
    top: 0.4375rem;
    left: 0;
    background: url(../images/icon/right-arrow.svg) no-repeat center;
    background-size: 100% 100%;
    width: 0.75rem;
    height: 0.75rem;
}
.inner_content ol{
    padding-left: 1.125rem;
}
.inner_content ol li ol{
    padding-top: 0.625rem;
    padding-bottom: 0;
}
.inner_content ol li{
    padding-bottom: 1.25rem;
}
.inner_content ol li ol li:last-child, .inner_content ul li ul li:last-child{
    padding-bottom: 0;
}
.alignleft, .alignright{
    float: left;
    width: 27.8125rem;
    height: auto;
    object-fit: cover;
    padding: 0.625rem;
    box-shadow: 0 0.125rem 0.75rem 0 rgba(0, 0, 0, 0.45);
    margin: 0 1.875rem 1.875rem 0;
}
.alignright{
    float: right;
    margin: 0 0 1.875rem 1.875rem;
}
figure.aligncenter{
    width: 75% !important;
    height: auto;
    object-fit: cover;
    padding: 0.625rem;
    box-shadow: 0 0.125rem 0.75rem 0 rgba(0, 0, 0, 0.45);
    margin: 0 auto 0.625rem;
}
figure.aligncenter figcaption.wp-caption-text{
    text-align: center;
}
.inner_content .wp-caption.alignright .size-full, .inner_content .wp-caption.alignleft .size-full, 
.alignright img, .alignleft img, .aligncenter img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner_content .wp-caption.alignright, .inner_content .wp-caption.alignleft{
    height: auto;
}
.inner_content .wp-caption-text{
    font-size: 1rem;
    line-height: 1.25rem;
    margin-top: 0.75rem;
}
.inner_content .table-striped tbody tr:nth-of-type(odd) {
    background: #e7f2f8;
}
.noShadow{
    height: auto !important;
    box-shadow: none;
}
.allagashExpImg img{
    margin-bottom: 0;
}
.allagashExpImg span{
    font-size: 1rem;
    line-height: 1.25rem;
    color: #3d637a;
    text-align: center;
    display: block;
    float: right;
    margin-bottom: 0.9375rem;
}

/*--------------Sidebar Wrap-------------*/
.inner_sidebar{
    width: 25%;
}
.sidebar_wrap{
    background: #e7f2f8;
    height: 100%;
}
.title_wrap{
    background: #3d637a;
    padding: 1.5625rem 1.875rem;
}
.title_wrap h4{
    color: #fff;
}
.sidebar_link{
    font-size: 1.3125rem;
    line-height: 1.5625rem;
    padding: 1.875rem;
}
.sidebar_link ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sidebar_link ul li a{
    display: block;
    margin-bottom: 1.25rem;
    width: 80%;
}
.sidebar_link ul li a:hover{
    font-weight: 700;
    color: #3d637a;
}

/*--------------Sidebar Icon-------------*/
.sidebarIcon{
    display: none;
}
.sidebarIcon{
    width: 2.1875rem;
    height: 1.6875rem;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.sidebarIcon.open span{
    background: #fff;
}
.sidebarIcon span{
    display: block;
    position: absolute;
    height: 0.1875rem;
    width: 100%;
    background: #fff;
    border-radius: 0.125rem;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.sidebarIcon span:nth-child(1){
    top: 0;
}
.sidebarIcon span:nth-child(2){
    top: 0.75rem;
}
.sidebarIcon span:nth-child(3){
    top: 1.5rem;
}
.sidebarIcon.open span:nth-child(1){
    top: 0.75rem;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.sidebarIcon.open span:nth-child(2){
    opacity: 0;
    left: -2.8125rem;
}
.sidebarIcon.open span:nth-child(3){
    top: 0.75rem;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/*--------------Give Page-------------*/
.frmDonate{
    margin-bottom: 0.9375rem;
    line-height: 0;
}

/*--------------Team page-------------*/
/*--------------Team sec-------------*/
.cmn_padding{
    padding: 3.75rem 0;
}
.sec_head{
    text-align: center;
    margin-bottom: 1.875rem;
}
.teamMember_wrap ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.9375rem;
}
.teamMember_wrap ul li{
    width: calc(100% / 3);
    margin-bottom: 1.875rem;
    padding: 0 0.9375rem;
}
.teamMember_wrap ul li::before{
    content: none;
}
.inner_sec .teamMember_wrap ul li{
    width: calc(100% / 2);
    margin-bottom: 1.875rem;
    padding: 0 0.9375rem;
}
.teamMember_wrap p{
    padding-bottom: 0;
}
.team_box{
    box-shadow: 0 0.5rem 0.75rem 0.375rem #ebeae6;
    height: 100%;
}
.teamMember_img{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 90%;
}
.teamMember_info h2{
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 0.3125rem;
}
.teamMember_info{
    font-size: 1.0625rem;
    line-height: 1.4375rem;
    padding: 1.25rem 0.9375rem 1.875rem;
}
.member_dgn{
    color: #ff6600;
    margin-bottom: 1.125rem;
}

/*--------------Contact page-------------*/
.contactTxt h3{
    margin-bottom: 1.875rem;
}
/*--------------Map area-------------*/
.mapArea{
    height: 21.875rem;
    margin-top: 2.5rem;
    box-shadow: 0 0.5rem 0.75rem 0.375rem #ebeae6;
}

/*--------------Contact form-------------*/
.contact_form{
    padding: 1.875rem;
    box-shadow: 0 0.375rem 0.75rem 0 rgba(0, 0, 0, 0.23);
}
.contact_form h4{
    color: #666666;
    margin-bottom: 1.5625rem;
}
.contact_form .form-group sup{
    color: #ff0000;
}
.form_btn{
    text-align: right;
}

/*----------Youth Page----------*/
/*----------Gallery wrap----------*/
body.compensate-for-scrollbar{
    margin-right: 0;
}
.gallery_wrap{
    padding: 0.9375rem 0;
}
.gallery_wrap .row{
    margin: 0 -0.4688rem;
}
.gallery_wrap .row  [class*="col-"]{
    padding: 0 0.4688rem;
    margin-bottom: 1.25rem;
}
.gallery_item .gallery_img{
    display: block;
    width: 100%;
    height: 16.25rem;
    box-shadow: 0.125rem 0.0625rem 0.5625rem 0.1875rem rgba(0, 0, 0, 0.23);
    overflow: hidden;
}
.gallery_item .gallery_img:hover img{
    transform: scale(1.03);
}
.gallery_item .gallery_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/*------------Blog Page----------*/
/*------------Blog Sec----------*/
.blog_item{
    background: #e7f2f8;
    margin-bottom: 2.5rem;
    overflow: hidden;
}
.blogImg_wrap{
    overflow: hidden;
}
.blogImg{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 35%;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.blog_item:hover .blogImg, .blogImg_wrap:hover .blogImg{
    transform: scale(1.03);
}
.blog_info{
    padding: 1.5625rem;
}
.blog_info h2{
    font-size: 1.75rem;
    line-height: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.inner_content ul.date_auther li::before, .inner_content .pagination_wrap ul li::before{
    content: none;
}
.date_auther{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.9375rem;
}
.inner_content ul.date_auther li{
    padding: 0 1.5625rem 0 0;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #6eb001;
}
.date_auther li::after{
    content: "";
    position: absolute;
    background: #6eb001;
    width: 0.125rem;
    height: 0.875rem;
    top: 48%;
    transform: translateY(-50%);
    left: -0.75rem;
}
.date_auther li:first-child::after{
    content: none;
}
.inner_content .pagination_wrap ul li{
    padding: 0;
}

/*------------Pagination wrap----------*/
.pagination_wrap .page-link{
    color: #3d637a;
    border-color: #6eb001;
}
.pagination_wrap .page-item:first-child .page-link, .pagination_wrap .page-item:last-child .page-link{
    border-radius: 0;
}
	
/*------------Give page----------*/
.giveInfo{
    padding: 1.25rem;
    background: #e7f2f8;
    margin-bottom: 1.25rem;
}
.awwfDonateBtn{
    height: auto;
}

/* ul style bullet */
ul.levelul li ul{
    padding-top: 0.3125rem;
}
ul.levelul li ul li::before{
    background: #3d637a;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    top: 0.625rem;
}

/* Youth slider sec */
.youthSlider_wrap{
    padding-top: 1.875rem;
}
.youthSlider_wrap .blog_content p{
    padding-bottom: 0;
}
.youthSlider_wrap .blog_content h3{
    margin-bottom: 0.625rem;
}

/* Common table page*/
.commonTable_wrap .table{
    color: #666666;
    margin-bottom: 1.875rem;
}
.commonTable_wrap .table td, .commonTable_wrap .table th{
    padding: 1.5625rem 1.375rem;
}
.commonTable_wrap .table-bordered td, .commonTable_wrap .table-bordered th{
    border-color: #a9beca;
}
.commonTable_wrap .table-bordered thead tr th:first-child{
    background: #3d637a;
}
.commonTable_wrap .table-bordered thead tr th:last-child{
    background: #4b748d;
}
.commonTable_wrap .table-bordered thead th{
    border: none;
}
.commonTable_wrap .table-bordered thead th p{
    font-size: 0.9375rem;
    line-height: 1.125rem;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    padding-bottom: 0;
}
.commonTable_wrap .table-bordered thead th p b{
    font-size: 1.375rem;
    line-height: 1.625rem;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
    display: block;
}
.commonTable_wrap .table-bordered tbody tr td b{
    font-weight: 700;
    color: #3d637a;
}
.commonTable_wrap .table-bordered tbody tr:nth-child(odd){
    background: #e7f2f8;
}
.commonTable_wrap .table-bordered tbody tr:nth-child(even){
    background: #f6fcff;
}
.commonTable_wrap .column-1{
    width: 13%;
}
.commonTable_wrap .column-2{
    width: 52%;
}
.commonTable_wrap .column-3{
    width: 35%;
}
.commonTable_wrap .tablepress>.row-hover>tr:hover>*, .commonTable_wrap .tablepress>:where(tbody)>.odd>*, .commonTable_wrap .tablepress>:where(tbody)>.even>*{
    background: transparent;
}
.commonTable_wrap .tablepress>:not(caption)>*>*{
    border: 0.0625rem solid #a9beca;
}
.commonTable_wrap p:last-child{
    padding-bottom: 0;
}

/* Youth trip */
.commonTilte_box{
    margin: 2.1875rem 0;
}
.commonTitle_item{
    display: flex;
    margin-bottom: 0.9375rem;
}
.commonTitle_item:last-child{
    margin-bottom: 0;
}
.commonTitle_head{
    font-size: 1.375rem;
    line-height: 1.625rem;
    font-weight: 700;
    color: #fff;
    background: #3d637a;
    padding: 1.25rem 0.9375rem;
    width: 28%;
    display: flex;
    align-items: center;
}
.commonTitle_head p{
    padding-bottom: 0;
}
.commonTilte_txt{
    background: #e7f2f8;
    padding: 0.75rem 0.75rem 0.75rem 1.25rem;
    width: 50%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.commonTilte_txt span{
    display: block;
}
.commonTilte_txt .cmn_btn{
    margin-top: 0.625rem;
}
.commonTilte_txt p:last-child{
    padding-bottom: 0;
}

/* Btn group */
.btnGroup_wrap h6{
    margin-bottom: 1.25rem;
}
.btn_wrap{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5625rem;
}
.btn_wrap a{
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.125rem 0.3125rem;
    width: calc(100% / 4);
    border-right: 0.0625rem solid #fff;
}
.btn_wrap a:last-child{
    border-right: none;
}

/* Accordion */
.accordion{
    margin-bottom: 2.5rem;
}
.accordion .card{
    border-radius: 0;
    border: none;
    margin-bottom: 0.9375rem;
}
.accordion .card-header{
    background: #3d637a;
    padding: 0;
    margin-bottom: 0;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: none;
}
.accordion>.card>.card-header{
    margin-bottom: 0;
}
/*
.accordion .card.active>.card-header, .accordion .card .card-header:hover{
    background-color: #077f39;
    border-color: #fef200;
}
*/
.accordion .card-header h5{
    font-size: 1.375rem;
    line-height: 1.625rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    padding: 1.0625rem 3.125rem 1.0625rem 1.25rem;
    white-space: normal;
    position: relative;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 0;
}
.accordion .card-header h5::before{
    content: "";
    position: absolute;
    background: url(../images/icon/right-arrow.svg) no-repeat center;
    background-size: 100% 100%;
    width: 0.9375rem;
    height: 0.9375rem;
    top: 50%;
    right: 0.9375rem;
    transform: translateY(-50%);
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.accordion .card.active>.card-header h5:before{
    transform: rotate(90deg) translateX(-50%);
}
.accordion .card-body{
    font-size: 1.25rem;
    line-height: 1.75rem;
    background: #e7f2f8;
    padding: 1.25rem 1.375rem;
}
.accordion .card-body p:last-child{
    padding-bottom: 0;
}
.accordion .card-body ul li::before{
    top: 0.375rem;
    width: 1rem;
    height: 1rem;
}

/*------------End CSS-----------*/
