/* ------------------------------------------------------------------------------
	Template Name: Minifolio
	Author: Designstub
	Author URI: http://www.designstub.com
	License: GNU General Public License version 3.0
	License URI: http://www.gnu.org/licenses/gpl-3.0.html
	Version: 1.0

/* ------------------------------------------------------------------------------
	Typography
-------------------------------------------------------------------------------*/

@import url(http://fonts.googleapis.com/css?family=Open%20Sans:300,400,500,600,700);
@import url(http://fonts.googleapis.com/css?family=Merriweather:300,400,500,600,700);
@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700'); /*font-family: 'Oswald', sans-serif;*/
p {
    font-size: 13px;
    line-height: 22.4px;
    color: #6c7279;
}

h1 {
    font-size: 65px;
    color: #2d3033;
}

h2 {
    font-size: 40px;
    color: #2d3033;
}

h3 {
    font-size: 28px;
    color: #2d3033;
    font-weight: 300;
}

h4 {
    font-size: 22px;
    color: #2d3033;
    font-weight: 400;
}

h5 {
    font-size: 14px;
    color: #2d3033;
    text-transform: uppercase;
    font-weight: 700;
}

.btn {
    font-weight: 600;
    border: 0;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    text-transform: uppercase;
}

.btn-large {
    padding: 15px 40px;
}

.btn-success {
    background-color: #3bc492;
    color: #fff;
}

    .btn-success:hover, .btn-success:focus {
        background-color: #28b280;
        color: #fff;
    }
/* ------------------------------------------------------------------------------
	Global Styles
-------------------------------------------------------------------------------*/
a {
    color: #fff;
}

    a:hover, a:focus {
        text-decoration: none;
        -moz-transition: background-color, color, 0.3s;
        -o-transition: background-color, color, 0.3s;
        -webkit-transition: background-color, color, 0.3s;
        transition: background-color, color, 0.3s;
    }

body {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    color: #6c7279;
}

ul, ol {
    margin: 0;
    padding: 0;
}

    ul li {
        list-style: none;
    }

.section {
    padding: 100px 0;
}

.no-padding {
    padding: 0;
}

.no-gutter [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.space {
    margin-top: 60px;
}
/* ------------------------------------------------------------------------------
	Header
-------------------------------------------------------------------------------*/
#header {
    position: fixed;
    width: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255,1);
}

    #header .header-content {
        margin: 0 auto;
        max-width: 1170px;
        padding: 8px 0px;
        width: 100%;
        -moz-transition: padding 0.3s;
        -o-transition: padding 0.3s;
        -webkit-transition: padding 0.3s;
        transition: padding 0.3s;
    }

    #header .logo {
        display: inline-block;
        width: 140px;
    }

        #header .logo img {
            max-width: 100%;
        }

    #header.fixed .logo {
        width: 140px;
    }

    #header.fixed {
        background-color: #fff;
    }

        #header.fixed .header-content {
            border-bottom: 0;
        }

        #header.fixed .nav-toggle {
            top: 18px;
            color: #000;
        }

.navigation.open {
    opacity: 0.9;
    visibility: visible;
    -moz-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.navigation {
    float: right;
    margin-top: 0px;
}

#header.fixed .navigation {
    margin-top: 0px;
}

.navigation li {
    display: inline-block;
}

.navigation a {
    /*color: rgba(255, 255, 255, 0.75);*/
    font-size: 14px;
    font-weight: 700;
    margin-left: 28px;
    text-transform: uppercase;
}

.navigation li a {
    position: relative;
}
/*.navigation li a:before{ content:""; width:100%; height:3px; background-color:#FFC91B}*/
.navigation a:hover, .navigation a.active {
    color: #fff;
}

.nav-toggle {
    display: none;
    height: 44px;
    overflow: hidden;
    position: fixed;
    right: 5%;
    text-indent: 100%;
    top: 32px;
    white-space: nowrap;
    width: 44px;
    z-index: 99999;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

    .nav-toggle:before, .nav-toggle:after {
        border-radius: 50%;
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -moz-backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-transition-property: -moz-transform;
        -o-transition-property: -o-transform;
        -webkit-transition-property: -webkit-transform;
        transition-property: transform;
    }

    .nav-toggle:before {
        background-color: #e84545;
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
    }

    .nav-toggle:after {
        background-color: #e84545;
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
        -moz-transition-duration: 0s;
        -o-transition-duration: 0s;
        -webkit-transition-duration: 0s;
        transition-duration: 0s;
    }

    .nav-toggle span {
        background-color: #fff;
        bottom: auto;
        display: inline-block;
        height: 3px;
        left: 50%;
        position: absolute;
        right: auto;
        top: 50%;
        width: 18px;
        z-index: 10;
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

        .nav-toggle span:before, .nav-toggle span:after {
            background-color: #fff;
            content: "";
            height: 100%;
            position: absolute;
            right: 0;
            top: 0;
            width: 100%;
            -moz-transform: translateZ(0);
            -ms-transform: translateZ(0);
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            -moz-backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -moz-transition: -moz-transform 0.3s;
            -o-transition: -o-transform 0.3s;
            -webkit-transition: -webkit-transform 0.3s;
            transition: transform 0.3s;
        }

        .nav-toggle span:before {
            -moz-transform: translateY(-6px) rotate(0deg);
            -ms-transform: translateY(-6px) rotate(0deg);
            -webkit-transform: translateY(-6px) rotate(0deg);
            transform: translateY(-6px) rotate(0deg);
        }

        .nav-toggle span:after {
            -moz-transform: translateY(6px) rotate(0deg);
            -ms-transform: translateY(6px) rotate(0deg);
            -webkit-transform: translateY(6px) rotate(0deg);
            transform: translateY(6px) rotate(0deg);
        }

    .nav-toggle.close-nav:before {
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    .nav-toggle.close-nav:after {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .nav-toggle.close-nav span {
        background-color: rgba(255, 255, 255, 0);
    }

        .nav-toggle.close-nav span:before, .nav-toggle.close-nav span:after {
            background-color: #fff;
        }

        .nav-toggle.close-nav span:before {
            -moz-transform: translateY(0) rotate(45deg);
            -ms-transform: translateY(0) rotate(45deg);
            -webkit-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
        }

        .nav-toggle.close-nav span:after {
            -moz-transform: translateY(0) rotate(-45deg);
            -ms-transform: translateY(0) rotate(-45deg);
            -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
        }

.home > a:before {
    content: "\f015";
    font-family: "FontAwesome";
    margin-right: 5px;
}

/* ------------------------------------------------------------------------------
	Banner
-------------------------------------------------------------------------------*/
.main-menu {
    position: relative;
    z-index: 2;
}

.navbar-inverse {
    border-radius: 0px;
    border-color: #fff;
    background-color: #fff;
    margin-bottom: 0px;
    box-shadow: 0px 0px 8px rgba(0,0,0,.1);
}

.nav > li {
    font-family: "Merriweather", Arial, sans-serif;
}

.navbar-nav > li > a {
    padding: 20px 35px;
    color: #0b257b !important;
    cursor: pointer;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=1 );
    font-weight: bold;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {
    color: #ff591f!important;
    background-color: #FF8000;
}

.navbar-inverse .navbar-nav > li > a:focus, .navbar-inverse .navbar-nav > li > a:hover {
    color: #ff591f !important;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=1 );
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
    color: #ff591f !important;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=1 );
}

.navbar-nav > .filtericon {
    color: #000;
    padding: 20px 35px;
}

    .navbar-nav > .filtericon:hover {
        color: #000 !important;
        background-color: #fff !important;
    }

.banner {
    /*background-image: url(../images/banner.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	-moz-background-size: cover;
	-o-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
	min-height:500px;*/
}

.banner-text {
    padding-top: 17%;
}

    .banner-text h1 {
        color: #fff;
        font-family: 'Oswald', sans-serif;
        font-size: 55px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 7px;
        text-shadow: 1px 1px 1px rgba(0,0,0,.2);
    }

    .banner-text h3 {
        color: #ffe674;
        font-family: "Open Sans", Arial, sans-serif;
        text-shadow: 1px 1px 1px rgba(0,0,0,.2);
        font-size: 38px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .banner-text p {
        color: rgba(255, 255, 255, 0.60);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin-top: 30px;
        margin-bottom: 80px;
    }
/* ==========================================================================
	$intro
========================================================================== */
.section-title {
    color: #2d3033;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.intro {
    background-color: #e5e6e0;
}

    .intro h3 {
        color: #000;
        margin-top: 0;
    }

        .intro h3 span:after {
            background-color: #000;
        }

    .intro p {
        font-family: "Merriweather", Arial, sans-serif;
        color: rgba(0,0,0, 0.75);
        font-weight: 400;
    }

.government, .education, .corporate, .hotels, .hospitals, .welfare, .clients {
    padding: 35px 0px;
    position: relative;
}

.government {
}

    .government h2 {
        font-size: 30px;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

        .government h2 span {
            font-weight: 700;
        }

        .government h2:before {
            content: '';
            position: absolute;
            bottom: 0px;
            width: 7%;
            height: 3px;
            background-color: #333;
        }

.education {
    background-image: url(../images/education.jpg);
    background-attachment: fixed;
    background-size: cover;
}

    .education h2 {
        font-size: 30px;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 30px;
        color: #fff;
    }

        .education h2 span {
            font-weight: 700;
        }

        .education h2:before {
            content: '';
            position: absolute;
            bottom: 0px;
            width: 7%;
            height: 3px;
            background-color: #fff;
        }

.corporate {
    background-image: url(../images/corporate.jpg);
    background-attachment: fixed;
    background-size: cover;
}

    .corporate h2 {
        font-size: 30px;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 30px;
        color: #000;
    }

        .corporate h2 span {
            font-weight: 700;
        }

        .corporate h2:before {
            content: '';
            position: absolute;
            bottom: 0px;
            width: 7%;
            height: 3px;
            background-color: #000;
        }


/*project thumbnail*/

.card {
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0,.2);
    position: relative;
    transition-duration: .3s;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 6px;
}

.card-body, .card-body img {
    position: relative;
    z-index: 0;
    max-width: 100%;
}

    .card-body .title {
        font-family: 'Oswald', sans-serif;
        position: absolute;
        z-index: 5;
        color: #fff;
        font-size: 22px;
        right: 0px;
        left: 0px;
        margin: 0px auto;
        top: 0px;
        padding: 15px;
        letter-spacing: 1px;
    }

    .card-body .content {
        position: absolute;
        z-index: 5;
        right: 0px;
        left: 0px;
        margin: 0px auto;
        bottom: 15px;
        padding: 0px 15px;
        letter-spacing: 1px;
        display: table;
        width: 100%;
    }

        .card-body .content .fa {
            display: table-cell;
            width: 12%;
            vertical-align: top;
            font-size: 45px;
            color: #fff;
            margin: 0px auto;
            text-align: left;
        }

        .card-body .content p {
            color: #fff;
            font-size: 13px;
            display: table-cell;
            vertical-align: top;
        }

    .card-body .overlay {
        position: absolute;
        background-color: rgba(0,0,0,.8);
        left: 0px;
        right: 0px;
        margin: 0px auto;
        height: 100%;
        box-sizing: border-box;
        top: 0px;
        z-index: 3;
        opacity: 0;
        transition-duration: .3s;
        text-align: center;
    }

        .card-body .overlay p {
            color: #fff;
            font-size: 15px;
            text-align: left;
            padding: 0px 15px;
        }

.card:hover {
    box-shadow: 0 0px 32px rgba(0,0,0,.08);
}

    .card:hover .overlay {
        opacity: 1;
        padding: 40% 15px;
    }

.card-footer {
    padding: 10px;
    border-top: 1px solid #eee;
    min-height: 117px;
}

    .card-footer h5 {
        margin: 0px 0px 10px 0px;
        padding: 0px;
        color: #000;
        font-size: 14px;
    }

.filter {
    cursor: pointer;
}

.filter-content {
    background-color: rgba(0,0,0,.8);
    box-sizing: border-box;
    position: fixed;
    top: 0px;
    z-index: 200;
    right: 0px;
    left: 0px;
    margin: 0px auto;
    width: 100%;
    height: 100%;
    padding: 10% 15%;
    display: none;
}

.filter-box {
    background-color: rgba(0,0,0,.95);
    padding: 15px;
    margin: 0px auto;
    height: auto;
    overflow: hidden;
}

    .filter-box h5 {
        color: #faa500;
        border-bottom: 1px solid #faa500;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

.filter-content ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

    .filter-content ul li {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

        .filter-content ul li a {
            display: block;
            padding: 10px;
            color: rgba(255,255,255,.7);
        }

            .filter-content ul li a:hover {
                color: #FF0;
            }

.filter-content .head {
    padding: 0px 0px 10px 0px;
    text-align: right;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.filter-content .tab-content {
    padding: 15px 0px;
}

.nav-tabs > li > a {
    font-weight: bold;
}

.filter-content .nav-tabs > li > a:hover {
    background-color: transparent;
    color: #ffa800;
    border: 1px solid transparent;
}

.filter-content .nav-tabs > li.active > a, .filter-content .nav-tabs > li.active > a:focus, .filter-content .nav-tabs > li.active > a:hover {
    color: #ffa800;
    cursor: default;
    background-color: transparent;
    border: 1px solid transparent;
    border-bottom: 2px solid #ffa800 !important;
}

.filter-box .checkbox label::before {
    background-color: transparent;
    border-radius: 0px;
    border-color: rgba(255,255,255,.5);
}

.filter-box .checkbox {
    margin-bottom: 20px;
}

    .filter-box .checkbox label {
        color: #fff;
    }

.filterfoot {
    text-align: center;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,.1);
}
/* ------------------------------------------------------------------------------
	 Footer
-------------------------------------------------------------------------------*/
.footer {
    text-align: left;
}

.footer-top {
    background-color: #23303D;
    padding-top: 20px;
}

.footer-bottom {
    background-color: #23303D;
    padding: 20px 0;
}

.footer .footer-col {
}

.footer h2 {
    color: #ffc91b;
    text-transform: uppercase;
}

.footer h3 {
    color: #fff;
}

.footer h5 {
    margin-bottom: 20px;
    color: rgba(255,255,255,.8);
}

.footer p {
    color: rgba(255, 255, 255, 0.25);
}

.footer a {
    color: rgba(255, 255, 255, 0.50);
}

    .footer a:hover {
        color: #e84545;
    }

.footer .footer-share {
    margin-top: 0;
}

    .footer .footer-share li {
        display: inline-block;
        float: none;
    }

    .footer .footer-share a {
        border: none;
        font-size: 21px;
        color: rgba(255, 255, 255, 0.25);
    }

.footer .fa-heart {
    color: #e84545;
    font-size: 11px;
    margin: 0 2px;
}

ul.list3 {
    counter-reset: li;
    list-style: none outside none;
    padding: 0;
}

    ul.list3 li {
        position: relative;
        padding: 8px 0 8px 38px;
        /*font-size: 15px;*/
        font-size: 1.08em;
    }

.list3 li a {
    color: #fff;
}

ul.list3 li:after {
    content: "\f101";
    font-family: 'FontAwesome';
    counter-increment: li;
    position: absolute;
    left: 2px;
    top: 50%;
    margin-top: -16px;
    font-weight: 700;
    color: inherit;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #ffffff;
    background-color: #06acc7;
    border-radius: 100%;
}

ol.list3 {
    counter-reset: li;
    list-style: none outside none;
    padding: 0;
}

    ol.list3 li {
        position: relative;
        padding: 8px 0 8px 38px;
        font-size: 15px;
    }

        ol.list3 li:after {
            content: counter(li, decimal-leading-zero);
            counter-increment: li;
            position: absolute;
            left: 2px;
            top: 50%;
            margin-top: -16px;
            font-weight: 700;
            color: inherit;
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            color: #ffffff;
            background-color: #1DC6DF;
            border-radius: 100%;
        }

.refrence {
    background-color: #174399; /*background-image:url(../images/detailbg.jpg); background-repeat:no-repeat; background-size:cover; position:fixed;*/
    left: 0px;
    height: 100%;
    padding: 50px;
}

.details {
    position: absolute;
    right: 0px;
    height: 100%;
}

    .details h3 {
        font-weight: bold;
        color: #000000;
        margin-bottom: 15px;
        margin-top: 0px;
    }

.details-content {
    padding: 10px;
    border: 1px solid #eee;
    margin-right: 10px;
    margin-bottom: 20px;
}

    .details-content p {
        color: #FF8000;
    }

.details h5 {
    font-size: 16px;
    color: #174399;
    margin: 15px auto;
}

.details p {
    font-size: 15px;
}

.details .table {
    margin-bottom: 0px;
}

    .details .table > tbody > tr > td {
        border-top: 0px dashed #eee;
        border-bottom: 1px dashed #eee;
    }

        .details .table > tbody > tr > td span {
            color: #000;
            font-weight: bold;
        }

.refrence .carousel-indicators {
    bottom: -36px;
}

.refrence .carousel-control.left, .refrence .carousel-control.right {
    background-image: none;
}


#btn-close-modal {
    width: 100%;
    text-align: center;
    cursor: pointer;
    color: #fff;
    background-color: #333;
    height: 30px;
    width: 30px;
    float: right;
    border-radius: 50%;
    font-size: 19px;
    box-sizing: border-box;
    padding: 0px;
    margin: 13px 0px 0px 15px;
}


.photo-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: 1s;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    width: 100%;
    padding: 20px;
}

    .photo-container img {
        max-width: 90%;
    }
/*.photo-container::before {
  background: linear-gradient(transparent, rgba(67, 17, 51, 0.5), #000320);
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}*/
/*.col:hover .photo-container {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}*/

.slide {
    background: #174399;
    padding: 20px;
    text-align: center;
    color: #fff;
}

    .slide p {
        font-size: 11pt;
        color: #fff;
        margin-bottom: 20px;
    }

.home {
    margin-top: 9px;
}

    .home .registerbtn {
        padding: 8px 15px;
        background: rgb(229,156,52);
        background: -moz-linear-gradient(45deg, rgba(229,156,52,1) 0%, rgba(191,58,84,1) 100%);
        background: -webkit-linear-gradient(45deg, rgba(229,156,52,1) 0%,rgba(191,58,84,1) 100%);
        background: linear-gradient(45deg, rgba(229,156,52,1) 0%,rgba(191,58,84,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e59c34', endColorstr='#bf3a54',GradientType=1 );
        color: #fff;
        border-radius: 3px;
        cursor: pointer;
    }

        .home .registerbtn:hover {
            background: rgb(5,177,201);
            background: -moz-linear-gradient(45deg, rgba(5,177,201,1) 0%, rgba(38,65,146,1) 100%);
            background: -webkit-linear-gradient(45deg, rgba(5,177,201,1) 0%,rgba(38,65,146,1) 100%);
            background: linear-gradient(45deg, rgba(5,177,201,1) 0%,rgba(38,65,146,1) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05b1c9', endColorstr='#264192',GradientType=1 );
            color: #fff !important;
        }

.page-main-head {
    text-align: center;
}

    .page-main-head h2 {
        text-align: center;
        color: #174399;
        font-weight: bold;
        margin: 0px 0px 10px 0px;
        padding: 0px;
    }

        .page-main-head h2:before {
            display: none;
        }

    .page-main-head p {
        font-size: 17px;
        line-height: 22.4px;
        color: #2e3238;
    }

.btn-round {
    border-radius: 25px;
}

..btn-round {
}

.imgbanner {
    position: relative;
}

    .imgbanner img {
        position: relative;
        max-width: 100%;
        z-index: 0;
    }

    .imgbanner .caption {
        position: absolute;
        left: 8%;
        top: 30%;
        width: 35%;
        z-index: 2;
        height: 307px;
    }

        .imgbanner .caption .shape:after {
            content: '';
            position: absolute;
            border: 3px solid #fff;
            width: 75%;
            height: 100%;
            top: -30px;
            left: -30px;
            z-index: 0;
        }

        .imgbanner .caption .captioncontent {
            background-color: #fff;
            padding: 25px;
            min-height: 245px;
            z-index: 5;
            position: relative;
        }

            .imgbanner .caption .captioncontent h1 {
                color: #174399;
                font-weight: bold;
                font-size: 3em;
                margin: 0px 0px 15px 0px;
            }

            .imgbanner .caption .captioncontent p {
                font-size: 1.2em;
            }

.btn-danger {
    background-color: #ff591f;
}

@media (max-width:1024px) {
    .imgbanner .caption .captioncontent {
        padding: 15px;
        min-height: 135px;
    }

    .imgbanner .caption .shape:after {
        top: -16px;
    }

    .imgbanner .caption {
        width: 70%;
        z-index: 2;
        height: 165px;
        top: 42%;
    }

        .imgbanner .caption .captioncontent h1 {
            font-size: 2em;
        }

    .government {
        padding: 15px 0px 35px;
    }

    .mythumb .col {
        width: 31.4%;
    }

        .mythumb .col .title1 {
            min-height: auto;
            margin: 0px 0 10px;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }
}

@media (max-width:767px) {
    .imgbanner .caption .shape:after {
        display: none;
    }

    .imgbanner .caption .captioncontent {
        padding: 15px;
        min-height: 160px;
    }

    .imgbanner .caption {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 2;
        height: 100px;
    }

        .imgbanner .caption .captioncontent h1 {
            font-size: 1.5em;
        }

    .government {
        padding: 15px 0px 35px;
    }

    .page-main-head h2 {
        font-size: 18px;
    }

    .mythumb .col {
        width: 100%;
        min-height: 650px;
    }

        .mythumb .col .title1 {
            min-height: auto;
            margin: 0px 0 10px;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }

    .footer .footer-col {
        margin-bottom: 0 !important;
    }

    .footer-top {
        padding-top: 0;
    }
    .details h3 {
        font-size: 16px;
    }
}

@media (max-width:580px) {
    .mythumb .col {
        width: 100%;
        min-height: 480px;
    }
    .details h3 {
        font-size: 16px;
    }
}

@media (max-width:430px) {
    .mythumb .col {
        width: 100%;
        min-height: 260px;
    }

    .details h3 {
        font-size: 16px;
    }
}
