@import url(_reset.css);
@import url(_animate.css);
@import url(_form.css);
@import url(fonts.css);
@import url(style_res-min.css);
@import url(style_res-min960.css);
@import url(style_res-max960.css);

body, html {
    width: 100%;
    height: 100%;
}
* {
    font-size: 12px;
    line-height: 18px;
    font-family: 'Nunito', 'Sukhumvit Set', Arial, Tahoma, sans-serif;
    font-weight: 300;
}
body {
    color: #666;
    background: #FFF;
    background-attachment: fixed;
    background-position: top center;
    background-repeat: repeat;
}
a {
    color: #32C5F4;
    text-decoration: none;
}
a:hover {
    color: #203764;
}
h1, h2, h3, h4, h5, h6 {
    color: #203764;
    font-weight: 600 !important;
}
a,img {
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.nofonts {
    font-family: Arial, Tahoma, sans-serif !important;
}
.shadow {
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
}
.vertical-middle {
    position: absolute;
    width: auto;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
/***** FANCYBOX *****/
.fancybox-wrap, .fancybox-inner {
    background: #FFF !important;
}
.fancybox-close {
    background-color: rgba(0,0,0, 0.5);
    background-image: url('../images/close-W.png') !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px !important;
    right: 0 !important;
    top: 0 !important;
    z-index: 20;
    width: 40px !important;
    height: 40px !important;
}
.fancybox-prev span, .fancybox-next span {
    width: 50px !important;
    height: 80px !important;
    margin-top: -40px;
    background-color: rgba(0,0,0, 0.5);
    background-size: 40px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}
.fancybox-prev span {
    background-image: url('../images/arrow-left-W.png') !important;
}
.fancybox-next span {
    background-image: url('../images/arrow-right-W.png') !important;
}

/***** ELEMENTS *****/
.overlay {
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 999;
    position: fixed;
}
.position-fixed {
    position: fixed;
}
#page-loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: #FFF;
}
#page-loader #page-loader-icon {
    height: 50px;
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -70px;
    margin-left: -150px;
    text-align: center;
}
#page-loader #page-loader-line {
    background: #CCC;
    position: fixed;
    z-index: 10001;
    top: 50%;
    margin-top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
}
#page-loader #page-loader-line-done {
    position: fixed;
    z-index: 10001;
    top: 50%;
    margin-top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    display: none;
}
#page-loader img {
    height: 100%;
}
body #nprogress .bar, #page-loader #page-loader-line-done {
    background: #32C5F4;
}
#adminbox {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

/***** TOGGLE *****/
.toggle-nav {
    position: fixed;
    right: 0;
    top: 0;
    padding: 18px 15px;	
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    display: none;
}
.toggle-nav-btn {
    width: 30px;
    height: 24px;
    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;
}
.toggle-nav-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #CCC;
    border-radius: 2px;
    opacity: 1;
    filter: alpha(opacity=100);
    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;
}
.toggle-nav span:nth-child(1) {
    top: 0px;
}
.toggle-nav span:nth-child(2), .toggle-nav span:nth-child(3) {
    top: 10px;
}
.toggle-nav span:nth-child(4) {
    top: 20px;
}
.toggle-nav.open span:nth-child(1), .toggle-nav.open span:nth-child(4) {
    top: 15px;
    width: 0%;
    left: 50%;
}
.toggle-nav.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.toggle-nav.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.toggle-nav.open .toggle-nav-btn span {
    background: #FFF !important;
}
.toggle-nav.open {
    background: #203764;
}
.toplink.fixed {
    bottom: 10px;
}
.toplink {
    width: 40px;
    height: 40px;
    position: fixed;
    z-index: 10;
    overflow: hidden;
    right: 10px;
    bottom: -40px;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.toplink a {
    line-height: 12px;
    position: relative;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    text-align: center;
    text-indent: -9999px;
    display: block;
}
.toplink a:before {
    width: 40px;
    height: 40px;
    line-height: 35px;
    content: "\2191";
    position: absolute;
    top: 0;
    left: 0;
    color: #FFF;
    font-size: 24px;
    background: #203764;
    text-indent: 0;
}

/***** BUTTON *****/
.btn {
    font-weight: bold;
    text-transform: uppercase;
    background: none;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    text-shadow: none;
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    line-height: 30px;
    position: relative;
    overflow: hidden;
    color: #FFF;
    background: #32C5F4;
}
.btn:hover {
    color: #FFF;
    background: #203764;
}
.btn-small {
    font-size: 14px;
}
.btn-round {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
}
.btn-line {
    color: #32C5F4 !important;
    border: 2px solid #32C5F4;
    background: none;
    line-height: 26px;
}
.btn-line:hover {
    color: #FFF !important;
}
.btn-lineW {
    color: #FFF !important;
    border: 2px solid #FFF;
    background: none;
    line-height: 26px;
}
.btn-lineW:hover {
    color: #666 !important;
    background: #FFF !important;
}
.btn-lineB {
    color: #666 !important;
    border: 2px solid #666;
    background: none;
    line-height: 26px;
}
.btn-lineB:hover {
    color: #FFF !important;
    background: #BF8B2E !important;
    border: 2px solid #BF8B2E;
}
.btn-color {
    color: #FFF !important;
    border: 2px solid #FFF;
    background: #32C5F4;
}
.btn-color:hover {
    background: #203764;
}
.btn-black {
    background: #666 !important;
    color: #FFF !important;
}
.btn-black:hover {
    background: #32C5F4 !important;
}
.btn-white {
    background: #FFF !important;
    color: #666 !important;
}
.btn-white:hover {
    background: #32C5F4 !important;
    color: #FFF !important;
}
.btn-brown {
    background: #BF8B2E !important;
    color: #FFF !important;
}
.btn-brown:hover {
    background: #8c6522 !important;
}

/***** IMGFX *****/
.imgfx {
    display: block;
    overflow: hidden;
}
.imgfx img {
    width: 100%;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

/***** WRAPPER *****/
.wrap-all {
    width: 100%;
    height: 100%;
    position: relative;
}
.wrap-content {
    margin: auto;
}
.wrap-top {
    position: fixed;
    z-index: 3;
    width: 100%;
    background: #FFF;
}
.wrap-top.absolute {
    position: absolute;
}
.wrap-body {
    width: 100%;
    position: relative;
    z-index: 2;
}
.wrap-body img {
    max-width: 100%;
}
.wrap-fullwidth-grey {
    background: #F2F2F2;
}

/***** CONTENT *****/
.wrap-content-header h2 {
    font-weight: 700 !important;
    text-align: center;
    color: #666;
}
.wrap-content-header h3 {
    font-weight: 700 !important;
    text-align: left;
}
.wrap-content-header hr, .fullwidth-content .fullwidth-title hr {
    border-top: 5px solid #BF8B2E;
    width: 50px;
}
.wrap-fullwidth-center * {
    text-align: center;
}
.wrap-fullwidth-center h2, .wrap-fullwidth-center h3, .wrap-fullwidth-center hr {
    float: none;
}
.wrap-fullwidth-center hr {
    margin-left: auto;
    margin-right: auto;
}
.wrap-content-header h2 {
    margin-bottom: 0 !important;
}
.wrap-fullwidth-center .wrap-content-header h2 {
    text-align: center;
    float: none !important;
}
.wrap-fullwidth-center .wrap-content-header hr {
    margin-left: auto !important;
    margin-right: auto !important;
}
.content-body-text {
    font-size: 16px;
    line-height: 150%;
}
.content-body-text p, .content-body-text p * {
    font-size: inherit;
    line-height: inherit;
}
.template-content .wrap-content-header h2 {
    text-align: left;
    font-size: 30px;
    line-height: 40px;
}

/***** HEADER *****/
.wrap-header {
    position: relative;
    z-index: 2;
}
.wrap-header header {
    float: left;
}
.wrap-header header h1 {
    display: block;
    background-image: url('../images/SWITCH-Asia_Logo.png') !important;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100% !important;
}
.wrap-header header h1 a {
    display: block;
    text-indent: -999px;
}

/***** MAINNAV *****/
.wrap-mainnav {
    float: right;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.wrap-mainnav ul, .wrap-mainnav ul li {
    list-style: none !important;
}
.wrap-mainnav ul li {
    display: block;
    position: relative;
}
.wrap-mainnav ul li a {
    display: block;
    font-weight: 600 !important;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
}
.wrap-mainnav ul li a i {
    margin-right: 0 !important;
    margin-left: 10px;
    line-height: normal;
}
.wrap-mainnav ul li ul {
    display: none;
}
.wrap-mainnav ul li ul li {
    float: none;
}
.wrap-mainnav ul li ul li a {
    line-height: 20px;
    padding: 5px 20px;
    font-weight: normal !important;
}
.wrap-mainnav ul li#nav_countries ul li span {
    font-weight: 600;
    color: #32C5F4;
    font-size: 14px;
    line-height: 30px;
    text-transform: uppercase;
}
.wrap-mainnav ul li#nav_countries ul li ul {
    padding: 0;
}
.wrap-mainnav ul li#nav_countries ul li ul li {
    float: none;
}
.wrap-mainnav ul li#nav_countries ul li ul li a {
    padding: 0;
    line-height: 20px;
    font-size: 12px;
}
.wrap-mainnav ul li#nav_countries ul li ul li a:hover {
    background: none;
    color: #32C5F4;
}
.wrap-metatop {
    background: #203764;
    height: 40px;
    position: relative;
    z-index: 1;
}
.wrap-metatop a {
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    display: block;
    width: 50%;
    float: left;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0;
    position: relative;
}
.wrap-metatop a:first-child:after {
    content: "";
    display: block;
    border-right: 1px solid #FFF;
    height: 20px;
    width: 1px;
    float: right;
}
.wrap-metatop a:hover, .wrap-metatop a.active {
    background: #0C4DA2;
}
.wrap-metatop a.active:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #0C4DA2;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -5px;
}

/***** BANNER *****/
.wrap-banner {
    width: 100%;
    background-color: #EAEAEA;
}
.wrap-swiper {
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.wrap-swiper .swiper-pagination .swiper-pagination-bullet {
    border: 2px solid #FFF;
    background: none;
    opacity: 1;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    opacity: 0.5;
    filter: alpha(opacity=50);
    text-indent: -200px;
    overflow: hidden;
    width: 10px;
    height: 10px;
    margin: 5px 10px !important;
}
.wrap-swiper .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    filter: alpha(opacity=100);
    background: #FFF;
    width: 14px;
    height: 14px;
    margin: 3px 8px !important;
}
.wrap-swiper .swiper-button-prev, .wrap-swiper .swiper-button-next {
    display: block;
    overflow: hidden;
    position: absolute;
    top: 50%;
    z-index: 99;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    text-indent: -999px;
}
.wrap-swiper .swiper-button-prev:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}
.wrap-swiper .swiper-button-prev {
    left: 0;	
    background: rgba(0,0,0,0.5) url('../images/arrow-left-W.png') center center no-repeat;
}
.wrap-swiper .swiper-button-next {
    right: 0;	
    background: rgba(0,0,0,0.5) url('../images/arrow-right-W.png') center center no-repeat;
}
.wrap-swiper .swiper-button-disabled {
    opacity: 0.2 !important;
    filter: alpha(opacity=20) !important;
}
.wrap-swiper .slide {
    position: relative;
}
.wrap-swiper .slide .slide-image {
    z-index: 1;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.wrap-swiper .slide .slide-image .slide-overlay, .wrap-pageheader .slide-overlay {
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
}
.wrap-swiper .slide .slide-image img {
    max-width: 100%;
    max-height: 100%;
    display: none;
}
.wrap-swiper .slide .slide-caption {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 3;
}
.slide-content h2, .wrap-pageheader .pageheader-content h2, .wrap-pageheader .pageheader-content h3 {
    color: #FFF;
    -webkit-animation: fadeInUp 1s;
    -webkit-animation-delay: 1s;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px #000;
    padding-left: 20px;
    border-left: 5px solid #FFF;
    margin-bottom: 50px;
}
.slide-content .slide-text {
    color: #FFF;
    font-size: 20px;
    line-height: 30px;
    -webkit-animation: fadeInDown 1s;
    -webkit-animation-delay: 0.5s;
}
.slide-content .slide-cta {
    margin-top: 50px;
    text-align: left;
    display: block;
}
.slide-content .slide-cta a {
    background: none;
    display: inline-block;
}
.slide-content .slide-cta a:hover {
    background: #32C5F4 !important;
    color: #FFF !important;
    border: 2px solid #32C5F4;
}

/***** PAGE HEADER *****/
.wrap-pageheader {
    position: relative;
    width: 100%;
    color: #FFF;
    background-color: #666;
    background-clip: border-box;
    background-origin: padding-box;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.wrap-pageheader .pageheader-content {
    z-index: 3;
    text-align: center;
    width: 100%;
}
.wrap-pageheader .pageheader-btn {
    margin-top: 20px;
}
.wrap-pageheader .pageheader-content h2, .wrap-pageheader .pageheader-content h3 {
    padding-left: 0;
    border-left: 0;
    margin-bottom: 0;
}

/***** MAP *****/
.wrap-map {
    position: relative;
    min-height: 700px;
}
.wrap-map #map svg {
    height: 100%;
}
.jvectormap-tip {
    background: #203764 !important;
}
.jvectormap-zoomin, .jvectormap-zoomout, .jvectormap-goback {
    background: #203764 !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    font-size: 20px !important;
    right: 0px !important;
    left: auto !important;
}
.jvectormap-zoomin {
    top: 0px !important;
}
.jvectormap-zoomout {
    top: 40px !important;
}
.wrap-map .map-image img {
    width: 100%;
}
.map-country {
    text-align: left;
}
.map-country h4 {
    text-align: left;
    text-transform: uppercase;
    color: #32C5F4;
    font-size: 16px;
    line-height: 30px;
}
.map-country ul, .map-country ul li {
    list-style: none !important;
    text-align: left;
    padding: 0;
}
.map-country ul li a {
    color: #666;
    line-height: 25px;
    font-size: 14px;
}
.map-country ul li a:hover {
    color: #32C5F4;
}

/***** BLOG *****/
.wrap-blog-list {
    margin: -10px;
}
.wrap-blog-list .blog {
    margin: 10px;
    border: 1px solid #CCC;
    position: relative;
}
.blog {
    background: #FFF;
}
.blog img {
    max-width: 100%;
}
.blog .blog-content {
    padding: 20px;
}
.blog .blog-header {
    margin-bottom: 10px;
}
.blog .blog-header-category {
    margin-bottom: 5px;
}
.blog .blog-header-category, .blog .blog-header-category a {
    font-weight: 600 !important;
    color: #999;
}
.blog .blog-header .blog-header-title {
    font-size: 16px;
    line-height: 20px;
}
.blog .blog-text {
    color: #999;
}
.blog-header-title {
    font-weight: bold;
}
.blog .blog-type {
    background: #32C5F4;
    padding: 10px 20px;
}
.blog .blog-type, .blog .blog-type * {
    color: #FFF;
}
.blog .blog-tag {
    color: #999;
}
.blog .blog-tag i {
    width: 20px;
    display: inline-block !important;
}
.blog .blog-tag a:hover, .blog .blog-header-category a:hover {
    color: #32C5F4;
}
.blog .blog-tag div {
    margin-top: 10px;
}
.blog .blog-tag div a {
    display: inline-block;
    color: #666;
    font-weight: 400 !important;
}
.blog .blog-meta {
    background: #FFF;
}
.blog .blog-meta, .wrap-rawdata-list .blog .blog-download {
    border-top: 1px solid #CCC;
    width: 100%;
}
.blog .blog-meta .blog-stat, .blog .blog-meta a {
    float: left;
    text-align: center;
    margin: 10px 0;
}
.blog .blog-meta * {
    line-height: 20px;
    font-size: 10px;
    color: #999;
}
.blog .blog-meta span {
    display: inline-block !important;
}
.blog .blog-meta .blog-meta-button {
    background: #203764;
    font-weight: bold;
    margin: 0;
    padding: 10px 0;
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
    width: 40%;
}
.blog .blog-meta div, .blog .blog-meta a {
    width: 30%;
}
.blog .blog-meta .blog-meta-button:hover {
    background: #32C5F4;
}
.blog .blog-meta .blog-meta-button i {
    margin-right: 0 !important;
    margin-left: 10px !important;
    color: #FFF;
}
.wrap-news .blog .blog-header {
    margin-bottom: 0;
}
.blog .blog-date {
    color: #BF8B2E;
    font-weight: 600 !important;
    margin-bottom: 5px;
}

/***** EVENT *****/
.event {
    margin-bottom: 20px;
}
.event a {
    display: block;
    margin-left: 70px;
    background: #FFF;
}
.event span {
    display: block;
}
.event .event-date {
    margin-left: -70px;
    width: 50px;
    float: left;
    color: #FFF;
    height: 80px;
    padding: 10px;
    text-align: center;
    background: #32C5F4;
}
.event.event-past .event-date {
    background: #BF8B2E;
}
.event .event-date .event-date-month {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
}
.event .event-date .event-date-day {
    font-size: 40px;
    line-height: 40px;
    font-weight: 200 !important;
}
.event .event-date .event-date-year {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400 !important;
}
.event .event-video .event-video-overlay {
    background-size: 40px !important;
}
.event .event-content {
    float: left;
    color: #000;
    overflow: hidden;
}
.event .event-content .event-content-title {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #203764;
}
.event .event-content .event-content-text {
    font-size: 12px;
    line-height: 18px;
    padding-top: 0px;
}
.event .event-content .event-image {
    overflow: hidden;
    position: relative;
}
.event .event-image img {
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.template-event_list .event a, .wrap-blog-search .event a {
    border: 1px solid #DDD;
}
.template-event_list .event .event-content .event-content-text {
    font-size: 14px;
    line-height: 20px;
}

/***** COUNTDOWN *****/
.wrap-countdown {
    position: relative;
    background-image: url('../images/footer-bg.jpg') !important;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 300px;
    padding: 100px 0;
    text-align: center;
    color: #FFF;
}
#countDownDateTime {
    display: none;
}
.wrap-countdown .wrap-content .vertical-middle {
    width: 1300px;
}
.wrap-countdown * {
    color: #FFF;
}
.wrap-countdown h2 {
    margin-bottom: 10px;
    font-weight: bold;
}
.wrap-countdown-box {
    width: 600px;
    height: 150px;
    margin: auto;
    margin-top: 50px;
}
.countdown-box {
    width: 25%;
    float: left;
    text-align: center;
    position: relative;
}
.countdown-box span {
    display: block;
}
.countdown-number {
    font-size: 40px;
    line-height: 50px;
}
.countdown-unit {
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    text-transform: uppercase;
}
#countdown-sec:before {
    display: none;
}

/***** FOLLOW *****/
.wrap-follow {
    text-align: center;
}
.wrap-follow h3 {
    margin-bottom: 30px !important;
}
.follow-social, .follow-social * {
    color: #666;
    font-size: 20px;
    line-height: 30px;
}
.follow-social a {
    margin: 0 20px;
}

/***** NEWSLETTER *****/
.wrap-newsletter {
    position: relative;
    background-image: url('../images/newsletter-bg.jpg') !important;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #FFF;
}
.wrap-newsletter h3 {
    color: #666;
    margin-bottom: 10px;
    font-weight: bold !important;
}
.wrap-newsletter #formresult {
    margin-top: 10px;
    height: 20px;
}
.formresult p {
    padding-bottom: 0;
    line-height: 20px;
    font-weight: 600 !important;
}
.formresult.formresult-failed,
.formresult.formresult-duplicated {
    color: #CC0000;
}
.formresult.formresult-success {
    color: #009900;
}
.wrap-newsletter .wrap-content .newsletter {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
#form-newsletter input {
    line-height: 20px;
    font-size: 16px;
    padding: 20px;
    color: #666;
    border: 1px solid #666;
    background: none;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}
#form-newsletter .formerror-msg {
    right: 20px;
    top: 10px;
}
#form-newsletter .formerror-msg * {
    font-size: 16px;
}
#form-newsletter button {
    line-height: 20px;
    background: #666;
    color: #FFF;
    font-size: 16px;
    font-weight: bold !important;
    background-image: url(../images/icon-send-W.png);
    background-repeat: no-repeat;
    background-size: 30px;
    float: left;
    display: block;
    padding: 20px 20px 20px 60px !important;
    background-position: 20px center !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border: 1px solid #666;
    text-shadow: none;
}

/***** FOOTER *****/
.wrap-footer {
    background: #203764;
    padding: 50px 0;
}
.wrap-footer * {
    color: #FFF;
}
.nav-footernav {
    width: 1000px;
    float: left;
}
.nav-footernav .wrap-subnav {
    width: 20%;
    float: left;
}
.nav-footernav ul, .nav-footernav ul li {
    list-style: none !important;
    padding: 0;
}
.nav-footernav h4 {
    font-size: 16px;
    line-height: 30px;
    font-weight: bold !important;
}
.nav-footernav ul li a {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
    display: block;
}
.nav-footernav ul li a:hover {
    color: #32C5F4;
}
.nav-footernav .subnav2 a {
    font-weight: bold !important;
}
.footernav-social {
    text-align: center;
}
.footernav-social img {
    width: 80%;
    margin-bottom: 10px;
}
.footernav-switchon {
    margin-bottom: 20px;
}
.footernav-follow h4 {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    font-weight: bold !important;
}
.footernav-follow a {
    display: inline-block;
    margin-left: 10px;
}
.footernav-follow a span {
    display: none;
}
.footernav-follow a i {
    margin-right: 0 !important;
    font-size: 20px;
}
.footernav-follow a:hover i {
    color: #32C5F4;
}
.footer-copyright {
    background: #FFF;
    border-bottom: 5px solid #32C5F4;
}
.footer-copyright img {
    height: 60px;
    float: left;
    margin-right: 20px;
}

/***** DETAIL *****/
.no-sidebar .wrap-detail {
    margin-right: 0;
}
.template-country .wrap-detail-content {
    padding-bottom: 0;
}
.detail-image {
    margin-bottom: 20px;
}
.detail-image img {
    max-width: 100%;
}
.detail-text, .detail-text p, .detail-text span, .detail-text li {
    font-weight: inherit;
    color: inherit;
    font-size: 16px;
    line-height: 150%;
}
.detail-text p *, .detail-text span *, .detail-text li * {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}
.detail-text strong, .detail-text strong * {
    font-weight: bold !important;
}
.detail-text a {
    color: #32C5F4 !important;
}
.detail-text a:hover {
    text-decoration: underline;
}
.detail-text h1 { font-size: 2em; margin-top: 1em; line-height: 200%; }
.detail-text h2 { font-size: 1.8em; margin-top: 0.8em; line-height: 200%; }
.detail-text h3 { font-size: 1.5em; margin-top: 0.6em; line-height: 200%; }
.detail-text h4 { font-size: 1.2em; margin-top: 0.5em; line-height: 200%; }
.detail-text h5 { font-size: 1em; margin-top: 0.4em; line-height: 200%; }
.detail-text h6 { font-size: 0.7em; margin-top: 0.3em; line-height: 200%; }

.wrap-detail .blog-header {
    margin-bottom: 20px;
    border-left: 5px solid #32C5F4;
}
.wrap-detail .blog-header-category, .wrap-detail .blog-header-category a {
    color: #32C5F4;
    font-size: 16px;
    line-height: 20px;
}
.wrap-detail .wrap-meta {
    float: left;
}
.wrap-detail .blog-stat {
    float: left;
    margin-right: 20px;
    line-height: 30px;
}
.wrap-detail .blog-stat * {
    color: #999;
}
.wrap-detail .blog-stat *, .wrap-detail .blog-tag * {
    font-size: 14px;
    line-height: 20px;
}
.wrap-social span, .wrap-social a, .wrap-social i {
    display: inline-block;
    line-height: 30px !important;
    font-size: 14px;
}
.wrap-social .label {
    margin-right: 10px;
}
.socialshare {
    border: 1px solid #32C5F4;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
}
.socialshare:hover {
    background: #32C5F4;
    color: #FFF;
}
.wrap-social a span {
    display: none;
}
.wrap-social a {
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    margin-left: 5px;
}
.wrap-social i {
    margin-right: 0;
    font-size: 14px;
}
.wrap-detail .blog-tag  {
    margin-bottom: 30px;
}
.wrap-detail .detail-intro {
    color: #32C5F4;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
    font-weight: 600 !important;
}
.wrap-detail .detail-intro0 {
    color: #BF8B2E;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    font-size: 24px;
    line-height: 30px;
}
.wrap-detail .detail-text {
    margin-bottom: 50px;
}
.wrap-detail .detail-info {
    background: rgba(50, 197, 244, 0.1);
}
.wrap-detail .detail-info h5 {
    color: #32C5F4;
}
.wrap-detail .detail-info-box {
    font-size: 16px;
    line-height: 150%;
}
.wrap-detail .detail-contact {
    margin-top: 30px;
    background: rgba(32, 55, 100, 0.1);
}
.detail-partner {
    margin-top: 50px;
}
.detail-lead-partner h3 {
    background: #32C5F4 !important;
}
.detail-partner h3 {
    background: #203764;
    color: #FFF;
    font-weight: bold !important;
    padding: 5px 20px;
    margin-bottom: 20px;
}
.detail-gallery h3 {
    background: #BF8B2E;
    color: #FFF;
    font-weight: bold !important;
    padding: 5px 20px;
    margin-bottom: 20px;
}
.partner {
    border-bottom: 1px dotted #CCC;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.partner-image {
    float: right;
    width: 100px;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}
.partner-image img {
    max-width: 100%;
}
.partner-content {
}
.partner-content h4 {
    color: #666;
    margin-bottom: 10px;
}
.partner-content p {
    font-size: 16px;
    line-height: 150%;
}
.blog-file a {
    display: block;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    color: #333;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#e6e6e6",GradientType=1);
    border: 1px solid #CCC;
    text-shadow: 0 1px 0 #FFF;
    box-shadow: 0px 5px 0px #AAA, 0px 8px 5px rgba(0,0,0,0.2);
}
.blog-file a span {
    display: block;
}
.blog-file a .blog-file-icon img {
    width: 100%;
}
.blog-file a .blog-file-title .blog-file-headline {
    font-weight: bold;
    color: #203764;
}
.blog-file a .blog-file-title .blog-file-name {
    margin-top: 10px;
    overflow: hidden;
}
.blog-file a .blog-file-title .blog-file-name span {
    display: block;
    line-height: 25px;
    font-size: 14px;
}
.blog-file a .blog-file-title .blog-file-name span * {
    line-height: inherit;
    font-size: inherit;
}
.blog-file a .blog-file-download {
    text-align: center;
    background: rgb(50,197,244);
    background: -moz-linear-gradient(180deg, rgba(50,197,244,1) 0%, rgba(39,155,194,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(50,197,244,1) 0%, rgba(39,155,194,1) 100%);
    background: linear-gradient(180deg, rgba(50,197,244,1) 0%, rgba(39,155,194,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#32c5f4",endColorstr="#279bc2",GradientType=1);
}
.blog-file a .blog-file-download i {
    color: #FFF;
}

.blog-result-info {
    font-size: 16px;
    line-height: 30px;
    background: rgba(32, 55, 100, 0.1);
    color: #666;
}
.blog-filter-info {
    margin-bottom: 20px;
    background: rgba(50, 197, 244, 0.1);
}
.blog-result-info a {
    color: #203764;
}
.blog-result-info a:hover {
    text-decoration: underline;
}
.blog-result-info a.active {
    text-decoration: underline;
}
.blog-result-info h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.blog-result-info .blog-result-count,
.blog-result-info .blog-result-show {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
.blog-result-info * {
    font-size: inherit;
    line-height: inherit;
}
.wrap-blog-paging {
    margin-top: 30px;
    text-align: center;
}
.wrap-blog-paging ul {
    display: inline-block;
}
.wrap-blog-paging ul, .wrap-blog-paging ul li {
    padding: 0;
    margin: 0;
    list-style: none !important;
}
.wrap-blog-paging li {
    float: left;
    display: block;
    height: 50px;   
    line-height: 48px;
    color: #999;
    font-size: 18px;  
    width: 50px;
    overflow: hidden;
    border: 1px solid #DDD;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.wrap-blog-paging li a {
    border: 1px solid #DDD;
}
.wrap-blog-paging li a, .wrap-blog-paging li span {
    display: block;
    line-height: 48px;
    color: #666;
    font-size: 18px;
    font-weight: 200 !important;
}
.wrap-blog-paging li.MarkupPagerNavOn {
    border: 1px solid #32C5F4;
}
.wrap-blog-paging li.MarkupPagerNavOn a {
    border: 1px solid #FFF;
}
.wrap-blog-paging li.MarkupPagerNavOn * {
    background: #32C5F4;
    color: #FFF;
}
.wrap-blog-paging li.MarkupPagerNavNext span {
    background: transparent url('../images/arrow-R.png') no-repeat center center;
    background-size: 30px;
    text-indent: -999px;
}
.wrap-blog-paging li.MarkupPagerNavPrevious span {
    background: transparent url('../images/arrow-L.png') no-repeat center center;
    background-size: 30px;
    text-indent: -999px;
}

/***** CONTENT STYLE *****/
.blue {
    color: #32C5F4 !important;
}
.brown {
    color: #BF8B2E !important;
}
.black {
    color: #333 !important;
}
p.blue {
    padding-bottom: 0;
}
.wrap-box {
    margin: 50px auto;
}
.box {
    text-align: center;
}
.wrap-box h3 {
    color: #333;
}
.wrap-box h5 {
    margin: 20px auto;
    font-size: inherit;
    line-height: inherit;
    color: #333;
}
.wrap-box p {
    padding: 20px 10px 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
.template-content-branding .wrap-box h2 {
    margin-bottom: 20px;
}
.box2 {
    text-align: left;
}
.wrap-box-none .box2 p {
    text-align: center;
}
.box img {
    max-width: 80%;
}
.wrap-icon .box img {
    max-width: 30%;
    margin-bottom: 20px;
}
.wrap-promoting {
    border: 1px dashed #CCC;
    position: relative;
}
.wrap-promoting img {
    width: auto !important;
}
.promoting-logo {
    position: absolute;
}
.promoting-region img,
.promoting-logo img {
    height: 100%;
}
.promoting-region img {
    float: left;
    margin-right: 20px;
}
.promoting-region, .promoting-region * {
    text-transform: uppercase;
}
.wrap-box-whiteblue .box span {
    display: block;
    border: 3px solid #32C5F4;
    background: #FFF;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    margin: auto;
}
.wrap-box-none .box img,
.wrap-box-blue .box img,
.wrap-box-brown .box img,
.wrap-box-whiteblue .box img {
    max-width: 100%;
}
.wrap-implement .implement-logo h3 {
    margin-top: 0;
}
.wrap-implement .implement-logo h4 {
    font-size: 20px;
    line-height: 30px;
}
.wrap-boxdot {
    border: 1px dashed #CCC;
}
.wrap-box-none .box span {
    display: block;
    margin: auto;
}
.wrap-box-blue .box span {
    display: block;
    background: #32C5F4;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    margin: auto;
}
.wrap-box-brown .box span {
    display: block;
    background: #BF8B2E;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    margin: auto;
}
.wrap-box-brown .box {
    font-weight: 600 !important;
}
.wrap-box-brown .box strong {
    font-size: 0.8em;
    line-height: 200%;
    font-weight: 600 !important;
}
.box-icon p {
    padding-bottom: 20px;
    clear: both;
    min-height: 60px;
}
.box-icon img {
    height: 60px;
    margin-right: 20px;
    margin-bottom: 20px;
    float: left;
    width: auto !important;
}

.wrap-promoting-implementing {
    margin-top: 100px;
}
.wrap-promoting-implementing h3 {
    font-size: 40px;
    line-height: 50px;
}
.wrap-policy h3 {
    font-size: 30px;
    line-height: 40px;
}
.wrap-policy {
    margin-bottom: 100px;
}
.policy {
    margin-top: 30px;
    text-align: center;
}
.policy-title {
    padding: 5px;
    border: 3px solid #203764;
    margin: auto;
}
.policy-title h4 {
    background: #203764;
    color: #FFF;
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    padding: 20px;
    font-weight: bold !important;
    margin-top: 0;
}
.policy-title-blue {
    border: 3px solid #0C4DA2;
}
.policy-title-blue h4 {
    background: #0C4DA2;
}
.policy-arrow {
    margin-top: 30px;
}
.policy-text {
    margin-top: 30px;
}
.policy-text h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: normal !important;
}
.policy-text strong {
    font-weight: bold !important;
}
.policy-text p {
    padding-top: 10px;
    padding-bottom: 0;
}

/***** TEAM *****/
.team {
    margin-bottom: 50px;
}
.team-detail h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}
.team-detail .team-info * {
    font-size: 14px;
    line-height: 20px;
}
.team-detail .team-info p {
    padding-bottom: 10px;
}
.team-text {
    border-left: 1px solid #CCC;
}

/***** CONTENT TABLE *****/
.content-table {
    padding-bottom: 20px;
}
.content-table h3, .content-table .content-table-link p {
    line-height: 30px;
    padding-bottom: 0;
}
.content-table h3 {
    font-size: 30px;
}
.content-table .content-table-link p {
    font-size: 20px;
}
.content-table .content-table-link a {
    color: #32C5F4;
}
.content-table .content-table-link a:hover {
    color: #203764;
}
.content-table .content-table-text {
    font-size: 20px;
    line-height: 30px;
}
.content-table .content-table-text h4 {
    margin-top: 0;
}
.content-table:last-child {
    border-bottom: none;
}

/***** BRANDING *****/
.branding {
    float: left;
}
.branding .branding-image {
    margin-bottom: 20px;
    text-align: center;
}
.branding .branding-image img {
    max-width: 60%;
}
.branding .branding-content {
    text-align: center;
}
.branding .branding-content h4 {
    color: #666;
}

/***** SIDEBAR *****/
.wrap-sidebar {
    margin-bottom: 50px;
    border-bottom: 1px solid #CCC;
}
.wrap-sidebar h3 {
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #32C5F4;
}
.wrap-sidebar h4 {
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #32C5F4;
}
.wrap-sidebar ul, .wrap-sidebar ul li {
    padding: 0;
    margin: 0;
    list-style: none !important;
}
.wrap-sidebar ul li a {
    line-height: 30px;
    margin-top: 30px;
    font-size: 14px;
    font-weight: 200 !important;
    color: #666;
}
.wrap-sidebar ul li a:hover {
    color: #32C5F4;
}
.sidebar {
    margin-bottom: 30px;
}
.sidebar-resource {
    display: block;
    margin-top: 30px;
    overflow: hidden;
    text-align: center;
}
.sidebar-resource img {
    max-width: 100%;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    transform: scale(0.95);
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
}
.sidebar-resource:hover img {
    transform: scale(0.90);
    -ms-transform: scale(0.90);
    -webkit-transform: scale(0.90);
}
.sidebar-resource span {
    display: block;
    padding-top: 10px;
    color: #203764;
    font-weight: 600 !important;
    font-size: 14px;
    line-height: 18px;
}
.wrap-sidebar-resource {
	padding-bottom: 30px;
}
.wrap-sidebar-resource .wrap-meta {
	float: none;
	text-align: center;
	margin-top: 10px;
}
.wrap-sidebar-resource .blog-stat {
	float: none;
	margin-right: 0 !important;
	line-height: 20px;
}

/***** NEWS & EVENT *****/
.wrap-news-event .wrap-event h3 {
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}
.wrap-news-event .wrap-event p {
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 0;
}
.wrap-news-event .wrap-event .wrap-content-header {
    margin-bottom: 20px;
}
.wrap-news-event .wrap-event .wrap-content-header h2 {
    color: #FFF !important;
}
.wrap-news-event .wrap-event .wrap-content-header hr {
    display: none;
}
.wrap-news-event .wrap-event .event-content-title {
    font-size: 14px;
    line-height: 17px;
}
.wrap-news-event .wrap-event .content-header-button {
    float: none;
}
.wrap-news-event .wrap-event .content-header-button a {
    margin-left: 0 !important;
}

/***** CONTACT *****/
.template-contact .wrap-content-header p {
    font-size: 20px;
    line-height: 30px;
}
.template-contact .content-body-text {
    padding: 0;
    margin: auto;
}
#form-contact input, #form-contact textarea {
    text-align: left;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
}
#form-contact .formrow {
    margin-bottom: 20px;
    margin-right: 22px;
    height: 50px;
}
#form-contact .textarearow {
    height: 110px;
}
#form-contact button {
    border: none;
    margin: 30px auto 0;
    float: none;
}
#form-contact #formresult {
    margin-bottom: 30px;
}
.template-contact .wrap-content-header h1 {
    margin-bottom: 20px;
    color: #32C5F4;
}
.template-contact .wrap-content-header p {
    color: #203764;
}
.template-contact .wrap-content-body {
    margin-top: 30px;
}
.template-contact .wrap-content-body p {
    font-size: 16px;
    line-height: 24px;
}

/***** SEARCH *****/
.wrap-searchform {
    position: relative;
}
.wrap-search {
    position: relative;
    display: none;
}
.wrap-search.active {
    display: block;
}
.wrap-search-close {
    float: right;
    font-size: 20px;
    text-transform: uppercase;
    text-align: right;
    background: url('../images/close.png') right center no-repeat;
    background-size: 20px !important;
    color: #666;
}
.wrap-search h2 {
    float: left;
    color: #666;
    font-weight: bold !important;
}
.wrap-search-box .formrow {
    height: 50px;
}
.wrap-search-box .formrow input {
    width: 100%;
    font-size: 20px;
    line-height: 30px;
}
.wrap-search-box .selectrow label {
    float: left;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
}
.wrap-search-box .selectrow .styled-select {
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -o-border-radius: 0px !important;
    height: 50px;
    line-height: 50px;
}
.wrap-search-box .selectrow select {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
}
#form-search button {
    width: 150px;
    background: #203764;
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -o-border-radius: 0px !important;
}
#form-search button, #form-search button:hover {
    border: none;
}
.wrap-blog-filter .checkboxrow {
    position: relative;
}
.wrap-blog-filter .labelgroup {
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 30px;
    height: 30px;
    color: #203764;
    border-bottom: 1px solid #BF8B2E;
}
.wrap-blog-filter .labelgroup, .wrap-blog-filter .labelgroup i {
    font-size: 20px;
}
.wrap-blog-filter .blog-filter:last-child .labelgroup {
    margin-right: 0;
}
.wrap-blog-filter i.fa-sort-down {
    float: right;
    margin-right: 0 !important;
    line-height: 40px !important;
    display: inline-block !important;
    font-size: 20px;
}
.wrap-blog-filter label {
    float: left;
    line-height: 30px;
    height: 30px;
    font-size: 14px;
    width: auto;
    color: #000;
}
.wrap-blog-filter #formrow-country .wrap-checkboxgroup {
    column-count: 2;
    column-gap: 0;
    
}
.wrap-blog-filter .wrap-checkboxgroup {
    padding-top: 10px;
}
.wrap-blog-filter .input-checkbox {
    margin-top: 5px;
}
.wrap-search .wrap-blog-filter-resource {
    display: none;
    margin-top: 20px;
}
.wrap-search .wrap-blog-filter {
    padding: 0;
    background: none;
    width: 100%;
    display: block;
}

/***** GALLERY *****/
.wrap-gallery {
    margin-top: 50px;
}
.wrap-gallery a {
    display: block;
    float: left;
    width: 25%;
    overflow: hidden;
}
.wrap-gallery a img {
    max-height: 100%;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    transform: scale(0.95);
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
}
.wrap-gallery a:hover img {
    transform: scale(0.90);
    -ms-transform: scale(0.90);
    -webkit-transform: scale(0.90);
}

blockquote {
  font-size: 1.4em;
  width: 80%;
  margin: 30px 0;
  padding: 30px 30px 30px 70px;
  border-left: 8px solid #203764 ;
  line-height: 1.6;
  position: relative;
  background: #EFEFEF;
}

blockquote::before{
  font-family:Arial;
  content: "\201C";
  color:#203764;
  font-size:4em;
  position: absolute;
  left: 20px;
  top:-10px;
}

blockquote::after{
  content: '';
}

blockquote span{
  display:block;
  font-style: normal;
  font-weight: bold;
  margin-top:1em;
}
blockquote p{
  padding-bottom: 0 !important;
}