/*------------------------------

    Loader

------------------------*/

.loader {
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1111;
    background: rgba(255, 255, 255, 1);
    overflow-x: hidden;
    text-align: center;
}

.bouncybox {
    /*height: 80px;
    width: 40px;*/
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.bouncybox .bouncy {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #0ba696;
    -webkit-animation: bouncy 2s infinite ease-in-out;
    -moz-animation: bouncy 2s infinite ease-in-out;
    -o-animation: bouncy 2s infinite ease-in-out;
    animation: bouncy 2s infinite ease-in-out;
}

.bouncybox img {
    width: 100%;
    margin: auto;
}

@-webkit-keyframes bouncy {
    40% {
        height: 40px;
    }
    50% {
        -webkit-transform: translate(0, 65px);
        transform: translate(0, 65px);
        height: 34px;
        border-radius: 20px;
    }
    65% {
        height: 40px;
    }
}

@keyframes bouncy {
    40% {
        height: 40px;
    }
    50% {
        -webkit-transform: translate(0, 65px);
        transform: translate(0, 65px);
        height: 34px;
        border-radius: 20px;
    }
    65% {
        height: 40px;
    }
}


/********************************************
            General Setting
********************************************/

@font-face {
    font-family: 'MuseoSansRoundedLight';
    src: url(fonts/MuseoSansRounded-100.otf);
}

@font-face {
    font-family: 'MuseoSansRoundedRegular';
    src: url(fonts/MuseoSansRounded-300.otf);
}

@font-face {
    font-family: 'MuseoSansRoundedMedium';
    src: url(fonts/MuseoSansRounded-500.otf);
}

@font-face {
    font-family: 'MuseoSansRoundedBold';
    src: url(fonts/MuseoSansRounded-700.otf);
}

body {
    font-family: MuseoSansRoundedRegular;
    padding: 0;
    margin: 0;
    color: #0f0f0f;
    line-height: 1.5em;
    font-size: 1em;
    overflow-x: hidden;
    background: #fff;
    background-color: #fff;
}

* {
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
}

body,
html {
    height: 100%;
    width: 100%;
    font-size: 99%;
    position: relative;
}

p {
    font-size: 1em;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
    color: #b5b5b5;
}

:-moz-placeholder,
.form-control:-moz-placeholder {
    color: #b5b5b5;
}

::-moz-placeholder,
.form-control::-moz-placeholder {
    color: #b5b5b5;
}

:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
    color: #b5b5b5;
}

textarea::-webkit-input-placeholder {
    color: #b5b5b5;
    opacity: 1;
}

textarea:-moz-placeholder {
    color: #b5b5b5;
    opacity: 1;
}

textarea::-moz-placeholder {
    color: #b5b5b5;
    opacity: 1;
}

textarea:-ms-input-placeholder {
    color: #b5b5b5;
    opacity: 1;
}

textarea {
    resize: none;
    box-shadow: 0 0;
}

label {
    font-weight: normal;
    margin: 0;
}



.form-control:focus,
textarea:focus {
    box-shadow: 0 0;
}

a {
    color: inherit;
}

a,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
    color: #af9a6d;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    color: #5b5b5b;
    line-height: normal;
}

.padding {
    padding-bottom: 50px;
    padding-top: 50px;
}

.border-box {
    border: 1px solid #e6ebef;
}

.no-border {
    border: none !important;
}


/*-----------  Form Fields -----*/

.main-check {
    margin-bottom: 10px;
    margin-top: 10px;
    padding-left: 0;
}

.main-check label {
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    margin-right: 15px;
    padding-left: 30px !important;
    position: relative;
    line-height: 23px;
    transition: border 0.2s linear 0s, color 0.2s linear 0s;
    white-space: nowrap;
}

.main-check label:before {
    background-color: #ffffff;
    border: 1px solid #c8c7cc;
    content: "";
    display: inline-block;
    height: 20px;
    left: 0;
    margin-right: 10px;
    position: absolute;
    width: 20px;
    border-radius: 0;
    top: 1px;
    transition: border 0.2s linear 0s, color 0.2s linear 0s;
}

.main-check label:after {
    display: inline-block;
    font-size: 11px;
    height: 19px;
    left: 4px;
    position: absolute;
    top: -1px;
    transition: border 0.2s linear 0s, color 0.2s linear 0s;
    width: 19px;
}

.main-check input[type="checkbox"] {
    display: none;
}

.main-check input[type="checkbox"]:checked+label:before {
    border-width: 10px;
}

.main-check input[type="checkbox"]:checked+label:after {
    color: #fff;
    content: "\f00c";
    font-family: "FontAwesome";
}

.main-check input[type="checkbox"][disabled]+label {
    opacity: 0.65;
}

.main-check input[type="checkbox"][disabled]+label:before {
    background-color: #F8F8F8;
}

.main-check.check-primary input[type="checkbox"]:checked+label:before {
    border-color: #31c1d5;
}

.main-radio {
    margin-bottom: 10px;
    margin-top: 10px;
    padding-left: 0;
}

.main-radio label {
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    margin-right: 15px;
    padding-left: 25px !important;
    position: relative;
    margin-bottom: 6px;
    line-height: 23px;
}

.main-radio label:before {
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    content: "";
    display: inline-block;
    height: 20px;
    left: 0;
    margin-right: 10px;
    position: absolute;
    width: 20px;
    border-radius: 99px;
    bottom: 2px;
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.215, 1.33) 0s;
}

.main-radio label:after {
    border: 1px solid #c8c7cc;
    content: "";
    display: inline-block;
    height: 20px;
    left: 0;
    margin-right: 10px;
    position: absolute;
    width: 20px;
    border-radius: 99px;
    bottom: 2px;
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.215, 1.33) 0s;
}

.main-radio input[type="radio"] {
    display: none;
}

.main-radio input[type="radio"]:checked+label:before {
    border-width: 6px;
    background: #F8F8F8;
    border-color: #ffffff;
}

.main-radio input[type="radio"][disabled]+label {
    opacity: 0.65;
}

.main-radio.radio-primary input[type="radio"]:checked+label:before {
    background: #31c1d5;
}


/*-----Header-----*/

header {
    min-height: 210px;
    background-image: url(../images/header.png);
    background-size: 100%;
    background-repeat: no-repeat;
    padding-top: 10px;
}

header .logo-img {
    width: 60%;
}

header .img2030 {
    padding-top: 20px;
}

header .top {
    color: #af9a6d;
}

header .top span {
    font-size: 16px;
}

header .top span i {
    background-color: #af9a6d;
    color: #244e68;
    text-align: center;
    display: inline-block;
    width: 30px;
    height: 30px;
    padding-top: 8px;
    border-radius: 50%;
}

header .bottom .socialdev-img {
    width: 60%;
    margin-top: 35px;
}

header .navbar {
    margin-bottom: 0;
}

header .navbar ul li {
    margin: 5px 0 0 17px;
}

header .navbar ul li:last-child {
    margin-left: 0;
}

header .navbar ul li a {
    color: #fff;
    padding-top: 15px;
    padding-bottom: 12px;
    font-size: 15px;
}

header .navbar ul li a:hover {
    background-color: rgb(175, 154, 109);
}

header .navbar ul li a:hover .caret {
    color: #fff;
}

header .nav .open>a,
header .nav .open>a:hover,
header .nav .open>a:focus {
    background-color: transparent
}

header .navbar ul li.dropdown ul li {
    margin: 0;
    margin-bottom: 10px;
    text-align: right;
}

header .navbar ul li.dropdown ul li a {
    color: #fff;
    -webkit-transition: padding 0.5s ease;
    -moz-transition: padding 0.5s ease;
    -o-transition: padding 0.5s ease;
    transition: padding 0.5s ease;
}

header .navbar ul li.dropdown ul li a:hover {
    border-right: 5px solid #fff;
    background-color: #10689d;
    color: #fff;
    padding-right: 30px;
}

header .navbar ul li.dropdown ul.dropdown-menu {
    min-width: 200px;
    background-color: #45a1c5;
    color: #fff;
}

header .caret {
    margin-left: 5px;
    vertical-align: baseline;
    color: #af9a6d;
    border-top: 6px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}


/*-----Main Slider-----*/

.main-slider {
    height: 450px;
}

.main-slider .carousel,
.main-slider .carousel-inner,
.main-slider .carousel-inner>.item {
    height: 100%;
}

.main-slider .carousel-control.left,
.main-slider .carousel-control.right {
    background-image: none;
    text-align: center;
    opacity: 1;
    width: 10%;
}

.main-slider .carousel-control span {
    font-size: 70px;
    position: absolute;
    top: 40%;
}

.main-slider .carousel-caption {
    text-align: left;
}

.main-slider .carousel-caption h3.title {
    background-color: rgba(0, 0, 0, .7);
    color: #fff;
    padding: 20px;
    font-size: 22px;
    text-align: center;
}

.main-slider .carousel-caption a.redirect {
    margin-top: 120px;
    color: #fff;
    background-color: #bb4f00;
    padding: 12px 15px;
    border-radius: 0;
}


/*-----Main Projects----*/

.main-projects {
    background-color: #fff;
    min-height: 400px;
    padding: 10px 0 50px 0;
}

.main-projects .project1 {
    background-image: url("../images/proj1.png");
    background-size: 100% 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    padding-right: 20px;
    margin-bottom: 10px;
}

.main-projects .project2 {
    background-image: url("../images/proj2.png");
    background-size: 100% 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    padding-right: 20px;
    margin-bottom: 10px;
}

.main-projects .project1 a:hover,
.main-projects .project2 a:hover {
    color: #fff;
}

.main-projects .projects-title {
    margin: 40px 0;
    color: #9eb4c0;
}

.main-projects .box {
    min-height: 150px;
}

.main-projects .box h3 {
    color: #8a8a8a;
    font-size: 20px;
    margin-top: 20px;
    line-height: 30px;
}

.main-projects .col-md-3 {
    border-left: 1px solid #e6ebef;
}


/*----Main Media----*/

.main-media {
    background-color: #dde6eb;
    min-height: 300px;
    padding: 20px 0;
}

.main-media .news h3.title {
    color: #5281a0;
    margin-bottom: 10px;
}

.main-media .news .panel-default>.panel-heading,
.main-media .news .panel {
    background-color: transparent;
}

.main-media .news .panel {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid #ddd;
}

.main-media .news .panel-body {
    max-height: 150px;
    min-height: 150px;
    overflow: hidden;
    padding: 10px;
}

.main-media .news .panel-title {
    font-size: 15px;
    color: #5281a0;
}

.main-media .news .panel-body h3 {
    font-size: 17px;
    color: #5281a0;
}

.main-media .news .panel-body p {
    font-size: 12px;
    color: #000;
    max-height: 100px;
    overflow: auto;
}

.main-media .news .panel-body p span {
    color: #f00;
}

.main-media .news .all-news-btn {
    border-radius: 0;
    color: #8a7a53;
}

.main-media .news .all-news-btn:hover {
    background-color: #fff;
}

.main-media .videos h3,
.main-media .videos .redirect {
    width: 100%;
    min-height: 50px;
    background-color: #5281a0;
    display: inline-block;
    color: #fff;
}

.main-media .videos h3 {
    padding: 12px 15px 0 0px;
    font-size: 22px;
}

.main-media .videos .video {
    height: 280px;
}

.main-media .videos .video iframe {
    width: 100%;
    height: 100%;
}

.main-media .videos .redirect {
    text-align: left;
    padding: 12px 0 0 15px;
    font-size: 14px;
}


/*----Statistics-----*/

.main-statistics {
    background-color: #fff;
    min-height: 400px;
    padding: 50px 0;
}

.main-statistics .gallery,
.main-statistics .gallery .main-img,
.main-statistics .gallery .main-img img {
    width: 100%;
}

.main-statistics .gallery .main-img img {
    height: 240px;
}

.main-statistics .gallery .gallery-links ul li {
    width: 50%;
    float: right;
    background-color: #a99563;
    text-align: center;
    min-height: 60px;
    color: #fff;
    padding-top: 20px;
}

.main-statistics .gallery .gallery-links ul li a:hover {
    color: #fff;
}

.main-statistics .gallery .gallery-links ul li:first-child {
    background-color: #8a7a53;
}

.main-statistics .newsletter h3 {
    color: #8a7a53;
    margin-bottom: 10px;
}

.main-statistics .newsletter p {
    color: #4f4f4f;
    font-size: 14px;
    padding-right: 10px;
}

.main-statistics .newsletter .form-group label {
    font-size: 12px;
    color: #4f4f4f;
}

.main-statistics .newsletter .form-group input {
    border-color: #999;
    border-radius: 0;
}

.main-statistics .newsletter .form-submit {
    width: 100%;
    text-align: left;
    padding-left: 15px;
}

.main-statistics .newsletter .form-submit .btn {
    border-radius: 0;
    background-color: #bb4f00;
    color: #fff;
    font-size: 14px;
    padding: 7px 15px;
}

.main-statistics .tweets {
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    overflow: auto;
    overflow-x: hidden;
}

.main-statistics .tweets img {
    width: 100%;
    height: 100%;
}

.main-statistics .facts {
    width: 100%;
    min-height: 270px;
    background-color: #a99563;
    color: #fff;
    padding: 15px;
}

.main-statistics .facts h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.main-statistics .facts ul li {
    border-top: 1px solid #fff;
}

.main-statistics .facts ul li span {
    width: 50%;
    text-align: center;
    padding: 15px 20px;
    float: right;
    font-size: 15px;
}

.main-statistics .facts ul li span.first {
    text-align: start;
    border-left: 1px solid #fff;
}

.main-statistics .facts ul li span.last {
    padding-top: 25px;
}


/*---Partners----*/

.main-partners {
    background-color: #dde6eb;
    min-height: 150px;
}

.main-partners ul.nav-tabs li {
    float: right;
}

.main-partners ul.nav-tabs {
    border-bottom: 1px solid #5281a0;
}

.main-partners ul.nav-tabs li a {
    color: #5281a0;
    margin-right: 0;
    padding: 15px 20px;
}

.main-partners ul.nav-tabs li a:hover {
    background-color: transparent;
    border: 0;
    border: 1px solid transparent;
    border-bottom-color: transparent;
}

.main-partners ul.nav-tabs li.active a {
    background-color: #274f69;
    color: #fff;
    border-radius: 0;
}

.main-partners .tab-pane {
    min-height: 100px;
    padding: 20px 0;
    text-align: right;
}

.main-partners .tab-pane .par-box {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    min-height: 80px;
}

.main-partners #related-sites .owl-item {
    text-align: center;
}

.main-partners #related-sites .owl-item a img {
    width: 80%;
    margin: 10px auto;
    display: block;
    margin-bottom: 20px;
    height: 40px;
}

.main-partners #related-sites .owl-item a {
    color: #155c87;
}


/*----Footer----*/

footer {
    /*min-height: 210px;*/
    background-image: url(../images/footer.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 40px 0;
}

footer p.copyright {
    font-size: 17px;
    color: #fff;
    width: 80%;
    margin: auto;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #bde5ff;
    font-size: 15px;
}

footer ul li span i {
    color: #274f69;
    font-size: 20px;
    margin-left: 10px;
}

.second-footer {
    background-color: #fcfcfc;
}

.second-footer .admin-login li {
    display: inline-block;
    margin: 5px 15px;
}

.second-footer .admin-login li a {
    color: #bb4f00;
    font-size: 13px;
}

.second-footer .admin-login li a:hover {
    color: #bb4f00;
    ;
}


/*Back to top Button*/

.scrollToTop {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    line-height: 26px;
    font-size: 25px;
    padding-top: 3px;
    position: fixed;
    z-index: 1000;
    bottom: 6px;
    right: 10px;
    display: none;
    background: #bb4f00;
    color: #fff;
}


/*---- Internal Pages ------*/

.page-banner-section {
    padding: 80px 0;
    position: relative;
    background: url('../images/inner_banner.jpg') center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.page-banner-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    background-color: #fff;
    padding: 20px 0;
    width: 30%;
}

.page-banner-section h2 {
    color: #b09b6e;
    font-size: 17px;
    margin: 0 0 15px;
    font-size: 26px;
    margin-bottom: 10px;
}

.page-banner-section ul.page-depth {
    margin: 0;
    padding: 0;
    text-align: center;
}

.page-banner-section ul.page-depth li {
    display: inline-block;
    margin-right: 1px;
}

.page-banner-section ul.page-depth li a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    font-size: 14px;
    color: #45a1c5;
}

.page-banner-section ul.page-depth li a:hover {
    color: #666666;
}

.page-banner-section ul.page-depth li:before {
    content: '-';
    font-size: 14px;
    font-weight: 700;
    color: #222222;
    margin-left: 5px;
}

.page-banner-section ul.page-depth li:first-child:before {
    content: '';
    margin-right: 0;
}


/*---About Page----*/

.about-page-section {
    min-height: 500px;
}

.about-page-section .about-box {
    border: 1px solid #eee;
    -webkit-box-shadow: 1px 2px 7px #eee;
    -moz-box-shadow: 1px 2px 7px #eee;
    -o-box-shadow: 1px 2px 7px #eee;
    box-shadow: 1px 2px 7px #eee;
    padding: 10px;
    border-radius: 5px;
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
    background-color: #fff;
}

.about-page-section .about-box h3.title {
    font-size: 22px;
    color: #fff;
    padding: 10px;
    background-color: #1b6796;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.about-page-section .about-box h3.title img {
    width: 20px;
}

.about-page-section .about-box p.des {
    font-size: 13px;
    color: #b09b6e;
    padding: 10px 15px;
}

.about-page-section .about-box .about-steps {
    padding-right: 60px;
}

.about-page-section .about-box .about-steps li {
    margin-bottom: 10px;
}

.about-page-section .about-box .about-steps li span {
    font-size: 14px;
    color: #000;
    padding-left: 10px;
}

.about-page-section .about-box .about-steps li span i {
    color: #45a1c5
}

.about-page-section .about-box .partner-box {
    text-align: center;
    border: 1px solid #eee;
    border-radius: 8px;
    min-height: 150px;
    padding: 15px;
    width: 95%;
    margin: 10px;
}

.about-page-section .about-box .partner-box a {
    font-size: 15px;
    margin-top: 25px;
    color: #af9a6d;
    display: block;
}


/*---Charts Page----*/

.charts-page-section {
    min-height: 500px;
}

.chart-box {
    width: 80%;
    margin: auto;
    padding: 15px;
    text-align: center;
    margin: 10px;
}


/*----Register-times page----*/

.register-times-page-section .register-times-table {
    text-align: center;
}

.register-times-page-section .well {
    padding-top: 35px;
    background-color: #f5f5f5;
    border: 0;
}

.register-times-page-section .well label {
    color: #45a1c5;
    line-height: 35px;
    font-weight: bold;
}
/*
.standard-table {
    text-align: center
}*/

.standard-table tbody ,
.standard-table tbody tr td {
    font-size: 13px;
    /*color: #45a1c5;*/
    color:#000;
}

.standard-table tbody tr i {
    font-size: 20px;
    color: #145d89;
}

.standard-tabletbody tr {
    color: #145d89;
}

.modal .modal-title {
    color: #145d89;
    padding-right: 15px;
}

.modal .modal-title img {
    width: 20px;
    margin-left: 15px;
}

.width120 {
    width: 120px;
}


/*-------------------------------------------------*/


/* =  contact page
/*-------------------------------------------------*/

#map,
#map2 {
    height: 400px;
}

.contact-section {
    padding: 30px 0;
}

.branches {
    background-color: #fcfcfc;
}

.branches .standard-table {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    -webkit-box-shadow: 1px 2px 7px #ddd;
    -moz-box-shadow: 1px 2px 7px #ddd;
    -o-box-shadow: 1px 2px 7px #ddd;
    box-shadow: 1px 2px 7px #ddd;
}

.branches .standard-table .table {
    margin-bottom: 0
}

.contact-section .contact-info {
    margin-bottom: 30px;
    margin-top: 10px;
}

.contact-section h2 {
    color: #af9a6d;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 15px;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.contact-section p {
    margin-bottom: 30px;
}

.contact-section ul.information-list {
    margin: 0;
    padding: 0;
}

.contact-section ul.information-list li {
    list-style: none;
    overflow: hidden;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
}

.contact-section ul.information-list li i {
    float: left;
    color: #45a1c5;
    font-size: 15px;
    display: inline-block;
    line-height: 24px;
}

.contact-section ul.information-list li span {
    display: block;
    font-size: 13px;
    color: #666666;
    font-weight: 400;
    line-height: 20px;
    margin: 0 0 10px;
    margin-bottom: 20px;
    margin-left: 25px;
    color: #222222;
}

.contact-section ul.information-list li a {
    font-size: 13px;
    color: #666666;
    font-weight: 400;
    line-height: 20px;
    margin: 0 0 10px;
    display: inline-block;
    margin-left: 12px;
    margin-bottom: 10px;
    color: #222222;
}

.contact-section ul.information-list li:last-child {
    border-bottom: none;
}

#contact_form input[type="text"],
.comment-form input[type="text"],
#contact_form textarea,
.comment-form textarea {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #dedede;
    margin-bottom: 20px;
    outline: none;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    color: #666666;
    font-size: 13px;
}

#contact_form input[type="text"]:focus,
.comment-form input[type="text"]:focus,
#contact_form textarea:focus,
.comment-form textarea:focus {
    border: 1px solid #31c1d5;
}

#contact_form textarea,
.comment-form textarea {
    height: 146px;
}

#contact_form input[type="submit"],
.comment-form input[type="submit"] {
    padding: 10px 30px;
    outline: none;
    border: none;
    background: #45a1c5;
    color: #ffffff;
    border-radius: 0px;
    font-size: 13px;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    margin-bottom: 10px;
    float: left;
}

#contact_form input[type="submit"]:hover,
.comment-form input[type="submit"]:hover {
    opacity: 0.7;
}


/*---Register Page-----*/

.register .register-content .register-form {
    width: 40%;
    margin: auto;
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
}

.register .register-content .register-form h3 {
    margin-bottom: 15px;
    text-align: center;
}

.register .register-content .register-form input,
.register .register-content .register-form .alert,
.register .register-content .register-form .checkbox,
.register .register-content .register-form select {
    width: 80%;
    margin: 10px auto;
}

.register .register-content .register-form .checkbox {
    text-align: right;
}

.register .register-content .register-form .checkbox input {
    width: auto;
    margin-top: 5px;
}

.register .register-content .register-form select {
    padding-top: 2px;
}

.register .register-content .register-form .alert {
    font-size: 14px;
    padding: 5px;
}

.register .register-content .register-form .register-btn {
    border: 0;
    background-color: #45a1c5;
    color: #fff;
}


/*----Project-Idee*/

#full-calendar .fc-today-button,
#full-calendar .fc-toolbar .fc-right {
    display: none;
}

#full-calendar .fa-chevron-right:before,
#full-calendar .fa-chevron-left:before {
    font-family: fontawesome;
    line-height: 23px;
}

.modal-aside.horizontal .modal-dialog {
    min-height: 100% !important;
    bottom: 0;
    height: auto !important;
}

.modal-aside.horizontal .modal-dialog .modal-content {
    height: auto !important;
    min-height: 100% !important;
}

.modal-aside {
    overflow: hidden;
}

.modal-aside.horizontal {
    transition: none;
    -webkit-transition: none;
    transform: none;
    -webkit-transform: none;
    height: 100%;
}

.modal-aside.horizontal.left.in .modal-dialog {
    animation: fadeInLeft 150ms;
    -webkit-animation: fadeInLeft 150ms;
}

.modal-aside.horizontal.right.in .modal-dialog {
    animation: fadeInRight 150ms;
    -webkit-animation: fadeInRight 150ms;
}

.modal-aside.horizontal .modal-dialog {
    position: absolute;
    top: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    transition: none;
    -webkit-transition: none;
    transform: none;
    -webkit-transform: none;
}

.modal-aside.horizontal.left .modal-dialog {
    left: 0;
}

.modal-aside.horizontal.right .modal-dialog {
    right: 0;
}

.modal-aside.horizontal .modal-dialog .modal-content {
    height: 100%;
    border: none;
    border-radius: 0;
}

.projectIdea-page-section .project-box {
    border: 1px solid #eee;
    -webkit-box-shadow: 1px 2px 7px #eee;
    -moz-box-shadow: 1px 2px 7px #eee;
    -o-box-shadow: 1px 2px 7px #eee;
    box-shadow: 1px 2px 7px #eee;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin: auto;
    margin-bottom: 20px;
    background-color: #fff;
}

.projectIdea-page-section .project-box h3.title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    background-color: #1b6796;
    padding: 10px;
}

.projectIdea-page-section .project-box h3.title img {
    width: 20px;
    margin-left: 10px;
}

.projectIdea-page-section .project-box p.des {
    font-size: 15px;
    color: #b09b6e;
    padding: 10px 15px;
}

.projectIdea-page-section .project-box .project-steps {
    padding-right: 60px;
}

.projectIdea-page-section .project-box .project-steps li {
    margin-bottom: 10px;
}

.projectIdea-page-section .project-box .project-steps li span {
    font-size: 14px;
    color: #000;
    padding-left: 10px;
}

.projectIdea-page-section .project-box .project-steps li span i {
    color: #45a1c5
}

.projectIdea-page-section .well {
    padding-top: 35px;
    background-color: #f5f5f5;
    border: 0;
}

.projectIdea-page-section .well h3.title {
    margin-bottom: 25px;
    color: #b09b6e;
}

.projectIdea-page-section .well label {
    color: #45a1c5;
    line-height: 35px;
    font-weight: bold;
}

.projectIdea-page-section .well .main-radio {
    margin: 0;
}

.projectIdea-page-section .well .main-radio label {
    color: #000;
}


/*--Instructions Page */

.instructions .panel-title .trigger:before {
    content: '\f106';
    font-family: fontawesome;
    vertical-align: text-bottom;
    float: left;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    padding-top: 10px;
}

.instructions .panel-title .trigger.collapsed:before {
    content: '\f107';
}

.instructions .panel-title a img {
    width: 20px;
    margin-left: 10px;
}

.instructions .panel-default>.panel-heading {
    background-color: #1b6796;
    color: #fff;
}

.instructions .panel-body p.des {
    font-size: 15px;
    color: #b09b6e;
    padding: 10px 15px;
}

.instructions .panel-body .instructions-list {
    padding-right: 60px;
}

.instructions .panel-body .instructions-list li {
    margin-bottom: 10px;
}

.instructions .panel-body .instructions-list li span {
    font-size: 14px;
    color: #000;
    padding-left: 10px;
}

.instructions .panel-body .instructions-list li span i {
    color: #45a1c5
}


/*---ProgList Page*/

.prog-list-page-section .prog-list-box {
    border: 1px solid #eee;
    -webkit-box-shadow: 1px 2px 7px #eee;
    -moz-box-shadow: 1px 2px 7px #eee;
    -o-box-shadow: 1px 2px 7px #eee;
    box-shadow: 1px 2px 7px #eee;
    padding: 10px;
    border-radius: 5px;
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
    background-color: #fff;
}

.prog-list-page-section .prog-list-box h3.title {
    font-size: 22px;
    color: #fff;
    padding: 10px;
    background-color: #1b6796;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.prog-list-page-section .prog-list-box h3.title img {
    width: 20px;
}

.prog-list-page-section .prog-list-box .prog-type {
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    width: 90%;
    margin: auto;
    margin-bottom: 10px;
}

.prog-list-page-section .prog-list-box .prog-type h4 {
    color: #1b6796;
    margin: 15px;
}

.prog-list-page-section .prog-list-box .prog-type p {
    color: #a99563;
    font-size: 14px;
    width: 100%;
    padding: 10px 15px;
}


/*---Prog Details ----*/

.prog-details .panel-title .trigger:before {
    content: '\f106';
    font-family: fontawesome;
    vertical-align: text-bottom;
    float: left;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    padding-top: 10px;
}

.prog-details .panel-title .trigger.collapsed:before {
    content: '\f107';
}

.prog-details .panel-title a img {
    width: 20px;
    margin-left: 10px;
}

.prog-details .panel-default>.panel-heading {
    background-color: #1b6796;
    color: #fff;
}

.prog-details .panel-body p.des {
    font-size: 15px;
    color: #b09b6e;
    padding: 10px 15px;
}

.prog-details .panel-body .instructions-list {
    padding-right: 60px;
}

.prog-details .panel-body .instructions-list li {
    margin-bottom: 10px;
}

.prog-details .panel-body .instructions-list li span {
    font-size: 14px;
    color: #000;
    padding-left: 10px;
}

.prog-details .panel-body .instructions-list li span i {
    color: #45a1c5
}


/*----News Page----*/

.news-page-section .news-box {
    border: 1px solid #eee;
    min-height: 200px;
}

.news-page-section .news-box h3.title {
    font-size: 22px;
    color: #fff;
    padding: 10px;
    background-color: #1b6796;
    border-bottom: 1px solid #eee;
}

.news-page-section .news-box h3.title img {
    width: 20px;
    margin-left: 10px;
}

.news-page-section .news-box .single-news {
    overflow: hidden;
    padding: 10px;
    width: 95%;
    margin: 10px auto 20px;
    border-bottom: 1px solid #ccc;
}

.news-page-section .news-box .single-news img {
    width: 100%;
    height: 150px;
}

.news-page-section .news-box .single-news h3 {
    font-size: 18px;
    font-weight: bold;
    color: #5281a0;
}

.news-page-section .news-box .single-news p {
    font-size: 12px;
    color: #000;
    height: 90px;
    max-height: 90px;
    padding: 10px 0;
    overflow: auto;
}

.news-page-section .news-box .single-news .single-news-btn {
    background-color: #1b6796;
    color: #fff;
    border-radius: 0;
    border: 0;
    font-size: 15px;
}

.pagination>li {
    float: right;
}

.pagination>li a {
    border-radius: 0;
}

.pagination>li a.active {
    background-color: #1b6796;
    color: #fff;
    border-color: #1b6796;
}

.news-page-section .news-side {
    min-height: 300px;
    padding: 10px;
}

.news-page-section .news-side .side-box {
    margin-bottom: 35px;
}

.news-page-section .news-side .side-box .box-title {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #af9a6d;
}

.news-page-section .news-side .side-box .side-box-list li {
    margin: 10px;
}

.news-page-section .news-side .side-box .side-box-list li span {
    margin-left: 10px;
    color: #45a1c5;
    font-size: 15px;
}

.news-page-section .news-side .side-box .side-box-list li a {
    font-size: 14px;
    color: #1b6796
}

.single-news-page-section .news-box .post-image {
    margin: 10px 0 20px 0;
}

.single-news-page-section .news-box h3.title {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #1b6796;
    background-color: transparent
}

.single-news-page-section .news-box p.des {
    font-size: 14px;
    padding: 15px;
    line-height: 30px;
    font-style: italic;
}

.single-news-page-section .single-news-images {
    width: 95%;
    margin: 0 auto;
}

.single-news-page-section .single-news-images .related-imgs-header {
    color: #1b6796;
    margin: 15px 10px;
}

.single-news-page-section .single-news-images .img-box {
    width: 98%;
    margin: 0 auto;
    height: 180px;
    margin-bottom: 15px;
}

.single-news-page-section .single-news-images .img-box img {
    width: 100%;
    height: 100%;
}


/*----Gallery Page ----*/

.gallery-page-section .gallery {
    padding: 10px;
    border: 1px solid #eee;
}

.gallery-page-section h3.title {
    font-size: 22px;
    color: #fff;
    padding: 10px;
    background-color: #1b6796;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.gallery-page-section h3.title img {
    width: 20px;
}

.gallery-page-section .filter-button {
    font-size: 15px;
    border: 1px solid #eee;
    text-align: center;
    color: #1b6796;
    margin-bottom: 30px;
    outline: 0;
    border-radius: 0;
}

.gallery-page-section .filter-button:hover {
    font-size: 15px;
    border: 1px solid #fff;
    text-align: center;
    color: #ffffff;
    background-color: #1b6796;
}

.gallery-page-section .filter-button.active {
    background-color: #1b6796;
    color: white;
    outline: 0;
}

.gallery-page-section .port-image {
    width: 100%;
}

.gallery-page-section .gallery_product {
    margin-bottom: 30px;
}


/*----Video Page*/

.nopadding {
    padding: 2px !important;
    margin: 0 !important;
}

.videps-page-section .video-box {
    padding: 10px;
    border: 1px solid #eee;
}

.videos-page-section h3.title {
    font-size: 22px;
    color: #fff;
    padding: 10px;
    background-color: #1b6796;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.videos-page-section h3.title img {
    width: 20px;
}


/*----User App Page ----*/

.user-app-section .form-layout {
    border: 1px solid #eee;
}

.user-app-section .form-layout select.form-control {
    padding-top: 2px;
}

.user-app-section h3.title {
    font-size: 22px;
    color: #fff;
    padding: 10px;
    background-color: #1b6796;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.user-app-section h3.title img {
    width: 20px;
}

.user-app-section .form-layout .col-form-label {
    font-size: 14px;
    color: #a99563
}

.user-app-section .form-layout .jobs-btn {
    width: 75%;
    float: left;
    margin: 20px 0;
    background-color: #0e529b;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    right: 100% ;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu>a:before {
    display: block;
    content: "\f0d9";
    font-family: fontawesome;
    float: left;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

/*
.btn-default {
        padding: 10px 30px;
    outline: none;
    border: none;
    background: #45a1c5;
    color: #ffffff;
    border-radius: 0px;
    font-size: 13px;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    margin-bottom: 10px;
    }*/
    
.standard-table th {
    text-align: right;
    font-weight: bold;
    color: #ffffff;
    background-color:#337ab7;
    
}
.standard-table td {
    text-align: right;
    
}

.form-control {
    box-shadow: 0 0;
    padding:0px 0px;
    height:27px;
    width:inherit;
    display:inherit;
    font:inherit;
}
.lnk
{
    color:#2fa4e7;
    cursor:pointer;
}
.standard-table tbody tr td {
    padding:4px;
}

.req
{
    color: #ff0000;
}

.errormsg {
    color: #FF0000;
}

.nodata {
   
    color: #000;
}

.note {
    color: #027CB4;
}

.success {
    color: #28B402;
}

.warning {
    color: #454545;
}
.table
{
    margin-bottom:2px;
}

.LockOn {
    clear: both;
    display: block;
    visibility: visible;
    position: absolute;
    z-index: 999;
    top: 0px;
    left: 0px;
    min-width: 105%;
    min-height: 20000%;
    background-color: #c1c1c1;
    text-align: center;
    padding-top: 20%;
    filter: alpha(opacity=100);
    opacity: 0.80;
}


.whole_calendar /* whole Calendar Header Div Style without textboxes*/ {
   
    position: absolute;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    overflow: auto;
    background-color: #E6E6FA;
    z-index:1000;
}

#Progress_bar {
    position: absolute;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    overflow: auto;
}
.standard-table a {
   color:#2fa4e7;
    cursor:pointer;
}

.standard-table a:hover {
   color:#af9a6d;
    cursor:pointer;
}
    .modalBackground
    {
    background-color: #afafaf;
    filter: alpha(opacity=60);
    opacity: 0.6;
    }
    .modalPopup
    {
    xbackground-color: #ffffdd;
    background-color: #F2F3F6;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    padding: 5px;
   
    min-height: 150px;
    }
   .btn_cnt{position:relative;top:50%; right:45%;}
   
   header .admnav .navbar ul li {
    margin: 16px 0 0 0px;
}

header .admnav .navbar ul li a {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
}

.ajax__calendar_body table tr td
{
    padding:1px;
}
.gallery_new
{
  font-size: 10px;
  text-align: center;
  border: 1px solid #555;
  margin: 5px;
  border-radius: 25px;
  padding: 5px;
 }
  .pagetitle h3 {
    font-size: 15px;
    color: #fff;
    background-color: #1b6796;
     border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.pagetitle h3 img {
     height:40px;
}
#backbtnleft
{
    float:left;
}
legend
{
    font:inherit;
    font-size: 15px;
    color: #fff;
    background-color: #1b6796;
     border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td
{
    border-top: none; }
/***********image visit gallery */
.lst_images {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .lst_images li {
        display: inline;
    }

        .lst_images li a img {
            width: 200px;
            height: 150px;
            border: 1px solid #ffffff;
            padding: 3px;
        }


/*.lst_images li a, .lst_images li a img {
            display: block;
            width: 60px;
        }*/
/*========== ahmed end======*/
