﻿@charset "utf-8";
/* CSS Document */
@media print {
    header {display:none; height:1px;}
    .banner-title {height:20px; padding:5px;margin-top:0; border:0}
  footer .patterned {height:1px; display:none;}

}
.search-em { background-color:rgba(212, 35, 87, 0.2) }


html, body {
  height: 100%;
}
.page-wrap {
  min-height: 100vh;
	height: auto !important; /* This line and the next line are not necessary unless you need IE6 support */
	height: 100%;
	
}
.page-wrap:after {
  content: "";
  display: block;
}
.site-footer {
 height: 55px; /* .push must be the same height as .footer */
}
.site-footer {
  background: orange;
}

 .blink {
      animation: blink 1s steps(5, start) infinite;
      -webkit-animation: blink 1s steps(5, start) infinite;
      color:#d42357;
      font-size:20px;
    }
    @keyframes blink {
      to {
        visibility: hidden;
      }
    }
    @-webkit-keyframes blink {
      to {
        visibility: hidden;
      }
    }

@charset "utf-8";
/* Table of Content
==================================================
	#Reset & Basics
	#Site Styles
	#Navigation
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Table
	#Misc
*/


/* #Reset & Basics 
================================================== */

a {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translate3d(0,0,0);
}

    a:hover, a:focus, a:active {
        text-decoration: none;
    }

    a:focus, a:active {
        text-decoration: none;
        outline: none !important;
    }

    /*link colors*/
    a.purple {
        color: #cc66cc;
    }

        a.purple:hover {
            color: #993399;
        }

    a.orange {
        color: #ff6600;
    }

        a.orange:hover {
            color: #ff3300;
        }

    a.white {
        color: #ffffff;
    }

        a.white:hover {
            color: #f2f2f2;
        }

    a.success {
        color: #99cc00;
    }

        a.success:hover {
            color: #669900;
        }

    a.info {
        color: #33cccc;
    }

        a.info:hover {
            color: #33cccc;
        }

    a.warning {
        color: #ff9900;
    }

        a.warning:hover {
            color: #ff9900;
        }

    a.danger {
        color: #cc0000;
    }

        a.danger:hover {
            color: #cc0000;
        }

.btn {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translate3d(0,0,0);
}

.dropdown-menu {
    z-index: 9000;
}

/* #Typography 
================================================== */



    h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small {
        font-weight: 300;
        color: inherit;
    }

.title-large {
    font-size: 64px;
    line-height: 1.2;
}

.title-medium {
    font-size: 54px;
    line-height: 1.2;
}

.title-small {
    font-size: 44px;
    line-height: 1.2;
}

.blue {
    color: #4dbcd8;
}

.pink {
    color: #d42357;

}


@media all and (max-width: 800px) {
    h1, .h1 {
        font-size: 38px;
    }

    h2, .h2 {
        font-size: 32px;
    }
}



.border-bottom {
    border-bottom: 1px solid #f2f2f2;
}
.border-top {
    border-top: 1px solid #f2f2f2;
}
/* Special Headings */

/* heading-single*/
.heading-single {
    overflow: hidden;
}

    .heading-single span {
        position: relative;
    }

        .heading-single span:before, .heading-single span:after {
            content: "";
            position: absolute;
            top: 50%;
            height: .5em;
            border-top: 1px solid #e5e5e5;
            width: 200em;
        }

        .heading-single span:before {
            right: 100%;
            margin-right: .9em;
        }

       

/* heading-double*/
.heading-double {
    overflow: hidden;
}

    .heading-double span {
        position: relative;
    }

        .heading-double span:before, .heading-double span:after {
            content: "";
            position: absolute;
            top: 50%;
            margin-top: -.2em;
            height: .5em;
            border-top: 1px solid #e5e5e5;
            border-bottom: 1px solid #e5e5e5;
            width: 200em;
        }

        .heading-double span:before {
            right: 100%;
            margin-right: .5em;
        }

        .heading-double span:after {
            left: 100%;
            margin-left: .5em;
        }

/* heading-diag*/
.heading-diag {
    overflow: hidden;
}

    .heading-diag span {
        position: relative;
    }

        .heading-diag span:before, .heading-diag span:after {
            content: "";
            position: absolute;
            top: 50%;
            margin-top: -.2em;
            height: .5em;
            background: url(../img/theme/diag-heading.png) repeat;
            width: 200em;
        }

        .heading-diag span:before {
            right: 100%;
            margin-right: .5em;
        }

        .heading-diag span:after {
            left: 100%;
            margin-left: .5em;
        }

/* big text lead */
.lead {
    font-size: 24px;
}

/* Toggle Box */
.togglebox {
    display: none;
}

.togglebox {
    position: relative;
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 50%, rgba(255,255,255,0.85) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0.85))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 50%,rgba(255,255,255,0.85) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255,255,255,1) 50%,rgba(255,255,255,0.85) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 50%,rgba(255,255,255,0.85) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 50%,rgba(255,255,255,0.85) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d9ffffff',GradientType=0 ); /* IE6-9 */
    -webkit-box-shadow: 0 0 4px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0 0 4px rgba(50, 50, 50, 0.2);
    box-shadow: 0 0 4px rgba(50, 50, 50, 0.2);
}

    .togglebox:after, togglebox:before {
        bottom: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .togglebox:after {
        border-color: rgba(0, 0, 0, 0);
        border-bottom-color: #ffffff;
        border-width: 5px;
        left: 25px;
    }

    .togglebox .input-group i.fa {
        margin: 0;
    }

.toggle-link {
    padding: 0 10px;
    display: block;
    line-height: 1.6;
}

    .toggle-link .fa {
        margin-right: 5px;
    }

/* Images */
.thumbnail {
    padding: 8px;
    border: 1px solid #f2f2f2;
    -webkit-box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
    box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
}

.img-thumbnail {
    padding: 8px;
    border: 1px solid #f2f2f2;
    -webkit-box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
    box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
}

a:hover .thumbnail {
    background-color: #f9f9f9;
}

a:hover .img-thumbnail {
    background-color: #f9f9f9;
}

a:hover.thumbnail {
    background-color: #f9f9f9;
}

a:hover.img-thumbnail {
    background-color: #f9f9f9;
}

/* Buttons */
.btn {
    padding: 6px 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

/*default*/
.btn-default {
    background-color: #ffffff;
    border-color: #e5e5e5;
    color: #848494;
}

    .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
        color: #999;
        background-color: #f9f9f9;
        border-color: #c5c5c5;
    }

/*primary*/
.btn-primary {
    color: #ffffff;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
        color: #ffffff;
        border-color: transparent;
    }

    .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
        background-image: none;
    }

    .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
        background-color: #99ddff;
        border-color: transparent;
    }

/*success*/
.btn-success {
    color: #ffffff;
    background-color: #99cc00;
    border-color: transparent;
}

    .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
        color: #ffffff;
        background-color: #669900;
        border-color: transparent;
    }

    .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
        background-image: none;
    }

    .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active,
    .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
        background-color: #99cc66;
        border-color: transparent;
    }

/*info*/
.btn-info {
    color: #ffffff;
    background-color: #33cccc;
    border-color: transparent;
}

    .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
        color: #ffffff;
        background-color: #27b7b7;
        border-color: transparent;
    }

    .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
        background-image: none;
    }

    .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
        background-color: #66cccc;
        border-color: transparent;
    }

/*warning*/
.btn-warning {
    color: #ffffff;
    background-color: #ff9900;
    border-color: transparent;
}

    .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
        color: #ffffff;
        background-color: #ff7700;
        border-color: transparent;
    }

    .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
        background-image: none;
    }

    .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active,
    .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
        background-color: #ffcc66;
        border-color: transparent;
    }

/*danger*/
.btn-danger {
    color: #ffffff;
    background-color: #cc0000;
    border-color: transparent;
}

    .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
        color: #ffffff;
        background-color: #aa0000;
        border-color: transparent;
    }

    .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
        background-image: none;
    }

    .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
        background-color: #ff9999;
        border-color: transparent;
    }

/*purple*/
.btn-purple {
    color: #ffffff;
    background-color: #d42357;
    border-color: transparent;
}

    .btn-purple:hover, .btn-purple:focus, .btn-purple:active, .btn-purple.active, .open .dropdown-toggle.btn-purple {
        color: #ffffff;
        background-color: #d42337;
        border-color: transparent;
    }

    .btn-purple:active, .btn-purple.active, .open .dropdown-toggle.btn-purple {
        background-image: none;
    }

    .btn-purple.disabled, .btn-purple[disabled], fieldset[disabled] .btn-purple, .btn-purple.disabled:hover, .btn-purple[disabled]:hover, fieldset[disabled] .btn-purple:hover, .btn-purple.disabled:focus, .btn-purple[disabled]:focus, fieldset[disabled] .btn-purple:focus, .btn-purple.disabled:active, .btn-purple[disabled]:active, fieldset[disabled] .btn-purple:active, .btn-purple.disabled.active, .btn-purple[disabled].active, fieldset[disabled] .btn-purple.active {
        background-color: #ee99ee;
        border-color: transparent;
    }

/*orange*/
.btn-orange {
    color: #ffffff;
    background-color: #ff6600;
    border-color: transparent;
}

    .btn-orange:hover, .btn-orange:focus, .btn-orange:active, .btn-orange.active, .open .dropdown-toggle.btn-orange {
        color: #ffffff;
        background-color: #ff4400;
        border-color: transparent;
    }

    .btn-orange:active, .btn-orange.active, .open .dropdown-toggle.btn-orange {
        background-image: none;
    }

    .btn-orange.disabled, .btn-orange[disabled], fieldset[disabled] .btn-orange, .btn-orange.disabled:hover, .btn-orange[disabled]:hover, fieldset[disabled] .btn-orange:hover, .btn-orange.disabled:focus, .btn-orange[disabled]:focus, fieldset[disabled] .btn-orange:focus, .btn-orange.disabled:active, .btn-orange[disabled]:active, fieldset[disabled] .btn-orange:active, .btn-orange.disabled.active, .btn-orange[disabled].active, fieldset[disabled] .btn-orange.active {
        background-color: #ffcc99;
        border-color: transparent;
    }

/*white*/
.btn-white {
    color: #848484;
    background-color: #ffffff;
    border-color: transparent;
}

    .btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active, .open .dropdown-toggle.btn-white {
        color: #848494;
        background-color: #f2f2f2;
        border-color: transparent;
    }

    .btn-white:active, .btn-white.active, .open .dropdown-toggle.btn-white {
        background-image: none;
    }

    .btn-white.disabled, .btn-white[disabled], fieldset[disabled] .btn-white, .btn-white.disabled:hover, .btn-white[disabled]:hover, fieldset[disabled] .btn-white:hover, .btn-white.disabled:focus, .btn-white[disabled]:focus, fieldset[disabled] .btn-white:focus, .btn-white.disabled:active, .btn-white[disabled]:active, fieldset[disabled] .btn-white:active, .btn-white.disabled.active, .btn-white[disabled].active, fieldset[disabled] .btn-white.active {
        background-color: #f2f2f2;
        border-color: transparent;
    }

/* buttons border */
/*primary border*/
.btn.btn-border {
    border-style: solid;
    border-width: 1px;
    background: none;
}

    .btn.btn-border.btn-default {
        border-color: #848494;
        color: #848494;
    }

        .btn.btn-border.btn-default:hover {
            border-color: #c5c5c5;
            color: #c5c5c5;
        }

    .btn.btn-border.btn-primary:hover {
        border-color: #1188cc;
        color: #1188cc;
    }

    .btn.btn-border.btn-success {
        border-color: #99cc00;
        color: #99cc00;
    }

        .btn.btn-border.btn-success:hover {
            border-color: #669900;
            color: #669900;
        }

    .btn.btn-border.btn-info {
        border-color: #33cccc;
        color: #33cccc;
    }

        .btn.btn-border.btn-info:hover {
            border-color: #27b7b7;
            color: #27b7b7;
        }

    .btn.btn-border.btn-warning {
        border-color: #ff9900;
        color: #ff9900;
    }

        .btn.btn-border.btn-warning:hover {
            border-color: #ff7700;
            color: #ff7700;
        }

    .btn.btn-border.btn-danger {
        border-color: #cc0000;
        color: #cc0000;
    }

        .btn.btn-border.btn-danger:hover {
            border-color: #aa0000;
            color: #aa0000;
        }

    .btn.btn-border.btn-purple {
        border-color: #cc66cc;
        color: #cc66cc;
    }

        .btn.btn-border.btn-purple:hover {
            border-color: #cc44cc;
            color: #cc44cc;
        }

    .btn.btn-border.btn-orange {
        border-color: #ff6600;
        color: #ff6600;
    }

        .btn.btn-border.btn-orange:hover {
            border-color: #ff4400;
            color: #ff4400;
        }

    .btn.btn-border.btn-white {
        border-color: #ffffff;
        color: #ffffff;
    }

        .btn.btn-border.btn-white:hover {
            border-color: #f2f2f2;
            color: #848494;
            background: #fff;
        }

/*buttons sizes*/
.btn-lg {
    padding: 14px 20px;
}

.btn-sm {
    padding: 5px 12px;
}

.btn-xs {
    padding: 3px 8px;
}

/* button with icons */
.fa-margin-right {
    margin-right: 10px;
}

.fa-margin-left {
    margin-left: 10px;
}

.btn-primary .caret, .btn-success .caret, .btn-warning .caret, .btn-danger .caret, .btn-info .caret {
    border-top-color: #ffffff;
}

.dropup .btn-primary .caret, .dropup .btn-success .caret, .dropup .btn-warning .caret, .dropup .btn-danger .caret, .dropup .btn-info .caret {
    border-bottom-color: #ffffff;
}
/* Backgrounds and Colors */
/*bg*/
.bg-color-blue {
    background-color: #4dbcd8 !important;
}

.bg-color-purple {
    background-color: #660099 !important;
}

.bg-color-success {
    background-color: #99cc33 !important;
}

.bg-color-info {
    background-color: #f7f7f7 !important;
}

.bg-color-warning {
    background-color: #ff9900 !important;
}

.bg-color-danger {
    background-color: #cc0000 !important;
}

.bg-color-pink {
    background-color: #d1144c !important;
}

.bg-color-orange {
    background-color: #ff6600 !important;
}

.bg-color-white {
    background-color: #ffffff !important;
}

.bg-color-dark {
    background-color: #777777 !important;
}

.bg-color-none {
    background-color: transparent !important;
}

.bg-color-primary {
    background: #4dbcd8 !important;
}

    .bg-color-primary:hover {
        background: #d1144c !important;
    }


/*bg-color-transparent*/
.bg-color-white.transparent {
    background-color: rgb(255,255,255) !important;
    background-color: rgba(255,255,255, .7) !important; /* Works on all modern browsers */
}

.bg-color-dark.transparent {
    background-color: rgb(51,51,51) !important;
    background-color: rgba(51,51,51, .7) !important; /* Works on all modern browsers */
}

/*colors*/
.color-white {
    color: #ffffff !important;
}

.color-default {
    color: #4dbcd8 !important;
}

.color-dark {
    color: #333 !important;
}

.color-success {
    color: #99cc00 !important;
}

.color-info {
    color: #33cccc !important;
}

.color-warning {
    color: #ff9900 !important;
}

.color-danger {
    color: #cc0000 !important;
}

.color-pink {
    color: #d1144c !important;
}

.color-orange {
    color: #ff6600 !important;
}

.color-default:hover {
    color: #d1144c !important;
}
/* Emphasis*/
.text-muted {
    color: #cccccc;
}

.text-warning {
    color: #ff9900;
}

.text-danger {
    color: #cc0000;
}

.text-success {
    color: #99cc00;
}

.text-info {
    color: #33cccc;
}


/* Icons Styles */
.icon-wrapper {
    display: inline-block;
    font-size: 1em;
    height: 34px;
    text-align: center;
    width: 34px;
}

    .icon-wrapper .fa {
        width: auto;
    }

    .icon-wrapper.fa-lg {
        font-size: 1.4em;
        vertical-align: 0;
    }

    .icon-wrapper.fa-2x {
        font-size: 2em;
    }

    .icon-wrapper.fa-3x {
        font-size: 2.6em;
    }

    .icon-wrapper.fa-4x {
        font-size: 3.2em;
    }

    .icon-wrapper.fa-5x {
        font-size: 3.8em;
    }

    /* full round icons */
    .icon-wrapper.icon-full-round {
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -o-border-radius: 100%;
        border-radius: 100%;
        line-height: 30px;
    }

        .icon-wrapper.icon-full-round.fa-lg {
            height: 40px;
            width: 40px;
            line-height: 40px;
        }

        .icon-wrapper.icon-full-round.fa-2x {
            height: 55px;
            width: 55px;
            line-height: 55px;
        }

        .icon-wrapper.icon-full-round.fa-3x {
            height: 70px;
            width: 70px;
            line-height: 70px;
        }

        .icon-wrapper.icon-full-round.fa-4x {
            height: 85px;
            width: 85px;
            line-height: 85px;
        }

        .icon-wrapper.icon-full-round.fa-5x {
            height: 100px;
            width: 100px;
            line-height: 100px;
        }

    /* border round icons */
    .icon-wrapper.icon-border-round {
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -o-border-radius: 100%;
        border-radius: 100%;
        line-height: 29px;
        border: 1px solid;
    }

        .icon-wrapper.icon-border-round.fa-lg {
            height: 40px;
            width: 40px;
            line-height: 40px;
        }

        .icon-wrapper.icon-border-round.fa-2x {
            height: 55px;
            width: 55px;
            line-height: 55px;
        }

        .icon-wrapper.icon-border-round.fa-3x {
            height: 70px;
            width: 70px;
            line-height: 70px;
        }

        .icon-wrapper.icon-border-round.fa-4x {
            height: 85px;
            width: 85px;
            line-height: 85px;
        }

        .icon-wrapper.icon-border-round.fa-5x {
            height: 100px;
            width: 100px;
            line-height: 100px;
        }

.bg-color-primary , .bg-color-vdark {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translate3d(0,0,0);
}

/* Fade in background */
.link-fadeinbg {
}

    .link-fadeinbg a {
        border-bottom: 1px solid rgba(52,73,94,0.4);
        font-weight: 500;
        -webkit-transition: background-color 0.3s, border-color 0.3s;
        transition: background-color 0.3s, border-color 0.3s;
    }

        .link-fadeinbg a:hover,
        .link-fadeinbg a:focus {
            border-color: rgba(52,73,94,0);
            background-color: rgba(52,73,94,0.1);
        }

/* hr general */
hr {
    border-color: #e5e5e5;
}

   
  
    /* hr short */
    hr.hr-short {
        width: 100%;
        float: left;
    }

       

   

/* hr icon */
.hr-icon {
    min-height: 50px;
    position: relative;
    display: block;
    padding: 1px 0;
}

.icon-divider {
    background-color: #FFFFFF;
    display: block;
    font-size: 38px;
    height: 50px;
    left: 50%;
    line-height: 50px;
    margin-left: -50px;
    margin-top: -45px;
    position: absolute;
    text-align: center;
    width: 100px;
}

/*divider list*/
.list-divider{ list-style:none; margin-bottom:20px; padding-left:0;}
.list-divider li a:hover{ margin-left:10px;}
.list-divider li{ border-top: 1px solid #E5E5E5; margin-bottom: 10px;  padding-top: 10px;}
.list-divider li > ul{ margin-bottom: 10px; margin-top: 10px; padding-left:20px; list-style:none;}
.list-divider li:first-child{ border-top: none; padding-top:0;}
.fa-ul.list-divider{padding-left:0;}/*when using font awesome lists*/
.list-divider li .fa-li{left:0; line-height:2.8;}/*when using font awesome lists*/
.fa-ul.list-divider li{ padding-left:0px;}/*when using font awesome lists*/
.fa-ul.list-divider li .fa{ width: auto;}/*when using font awesome lists*/
.fa-ul.list-divider li:first-child .fa{line-height: 1.4;}/*when using font awesome lists*/
.slide-pannel-wrapper ul.fa-ul.list-divider li { border-top-color:#848494;}


/* Font Awesome Lists */

.fa-ul {
    margin-left: 0;
    line-height: 22px;
}

    .fa-ul li {
        padding-left: 0px;
    }

       
.fa-li {
    left: 0;
    margin-right: 10px;
    position: relative;
    top: auto;
    width: auto;
}

.fa-ul li > ul, .fa-ul li {
    margin-bottom: 4px;
    list-style: none !important;
    margin-top: 10px;
}

.fa-ul .icon-wrapper {
    left: -2.14286em;
    position: absolute;
}


.well {
    background: #f9f9f9;
    border-radius: 0px;
    border: none;
}

/* Margins */

/*top*/
.margin-top0 {
    margin-top: 0px !important;
}

.margin-top10 {
    margin-top: 10px !important;
}

.margin-top20 {
    margin-top: 20px !important;
}

.margin-top30 {
    margin-top: 30px !important;
}

.margin-top40 {
    margin-top: 40px !important;
}

.margin-top50 {
    margin-top: 50px !important;
}

.margin-top60 {
    margin-top: 60px !important;
}

.margin-top70 {
    margin-top: 70px !important;
}

.margin-top80 {
    margin-top: 80px !important;
}

.margin-top90 {
    margin-top: 90px !important;
}

.margin-top100 {
    margin-top: 100px !important;
}

.margin-top110 {
    margin-top: 110px !important;
}

/*bottom*/
.margin-bottom0 {
    margin-bottom: 0px !important;
}

.margin-bottom10 {
    margin-bottom: 10px !important;
}

.margin-bottom20 {
    margin-bottom: 20px !important;
}

.margin-bottom30 {
    margin-bottom: 30px !important;
}

.margin-bottom40 {
    margin-bottom: 40px !important;
}

.margin-bottom50 {
    margin-bottom: 50px !important;
}

.margin-bottom60 {
    margin-bottom: 60px !important;
}

.margin-bottom70 {
    margin-bottom: 70px !important;
}

.margin-bottom80 {
    margin-bottom: 80px !important;
}

.margin-bottom90 {
    margin-bottom: 90px !important;
}

.margin-bottom100 {
    margin-bottom: 100px !important;
}


.no-margin {
    margin: 0px !important;
}
/* Padding */
.no-padding {
    padding: 0px !important;
}
/*top*/

.padding-top0 {
    padding-top: 0px !important;
}

.padding-top10 {
    padding-top: 10px !important;
}

.padding-top20 {
    padding-top: 20px !important;
}

.padding-top30 {
    padding-top: 30px !important;
}

.padding-top40 {
    padding-top: 40px !important;
}

.padding-top50 {
    padding-top: 50px !important;
}

.padding-top60 {
    padding-top: 60px !important;
}

.padding-top70 {
    padding-top: 70px !important;
}

.padding-top80 {
    padding-top: 80px !important;
}

.padding-top90 {
    padding-top: 90px !important;
}

.padding-top100 {
    padding-top: 100px !important;
}

/*bottom*/
.padding-bottom0 {
    padding-bottom: 0px !important;
}

.padding-bottom10 {
    padding-bottom: 10px !important;
}

.padding-bottom20 {
    padding-bottom: 20px !important;
}

.padding-bottom30 {
    padding-bottom: 30px !important;
}

.padding-bottom40 {
    padding-bottom: 40px !important;
}

.padding-bottom50 {
    padding-bottom: 50px !important;
}

.padding-bottom60 {
    padding-bottom: 60px !important;
}

.padding-bottom70 {
    padding-bottom: 70px !important;
}

.padding-bottom80 {
    padding-bottom: 80px !important;
}

.padding-bottom90 {
    padding-bottom: 90px !important;
}

.padding-bottom100 {
    padding-bottom: 100px !important;
}



.padding-none {
    padding: 0 !important;
}

.padding-xsmall {
    padding: 5px 0 !important;
}

.padding-small {
    padding: 20px 0 !important;
}

.padding-medium {
    padding: 40px 0 !important;
}

.padding-large {
    padding: 60px 0 !important;
}

.light-bg {
    background-color: #f9f9f9;
}

.dark-bg {
    background: #4F4F4F !important;
    display: block;
    text-transform: uppercase;
    display: block;
}

/****************main menu *****************/
header {
    /*height: 100px;*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #fff;
    -webkit-box-shadow: 0 0 2px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 0 0 2px rgba(50, 50, 50, 0.5);
    box-shadow: 0 1px 2px rgba(50, 50, 50, 0.5);
    opacity: 0.95;
    width: 100%;
    font-weight:300;
}

    header.smaller {
        opacity: 0.95;
       
    }
.smaller .navbar-default { background-color: #4dbcd8 !important;}
.smaller .main-menu a {color:#ffffff !important;}
.smaller .main-menu .dropdown-menu  a {color:#848494 !important}
.in .dropdown-menu > li > a div {display:none;}


    header nav .dark-bg {
        line-height: 46px;
        background-color: #555555;
        height: 55px;
        font-size: 22px;
    }

        header nav .dark-bg .title {
            padding: 4px 20px;
            font-size: 27px;
            color: #FFFFFF;
        }
         header nav .dark-bg .title  a  {
          webkit-transition:none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  -webkit-transform: none;
  color:#fff
        }
         header nav .dark-bg .title  a span.color-blue {color:#4dbcd8 !important}
        header nav .dark-bg .language {
            margin-left: 5px;
            padding-top: 7px;
        }
         header nav .dark-bg .language a {color:#bababa}
    header nav {
        display: inline-block;
        float: right;
    }

    header nav {
        width: 100%;
    }

    header .nav a:hover,  header .nav > li:hover {
        color: #fff !important;
        background-color: #6fcde5;
    }

    header .nav > li > a {
       /*padding: 12px 5px;*/
        border-radius: 0;
        font-size:16px;
    }

    header .navbar-default {
        background-color: #fff;
        border-radius: 0px;
        border: 0;
    }

    header .navbar-default {
        background-color: #fff;
        border-radius: 0px;
        border: 0;
    }

@media all and (max-width: 320px) {
    header .nav > li > a {
        text-align: left;
    }

    header nav .dark-bg .language {
        margin-left: 5px;
        padding-top: 0px;
    }
}

@media all and (max-width: 1280px) {

    header nav .dark-bg .title {
        padding-left: 0px;
    }

    header nav .dark-bg {
        font-size: 18px;
    }

        header nav .dark-bg .title {
            padding: 5px;
            font-size: 18px;
        }
}

@media all and (max-width: 767px) {
    header nav .dark-bg .language {
        margin-left: 5px;
        padding-top: 0px;
    }

    #showHeaderSearch {
        display: none;
        height: 0;
    }

    .header-search {
        display: block !important;
        position: relative !important;
        margin: 10px 0 0 0;
        top: 0;
        bottom: 0;
        float: none !important;
        -webkit-box-shadow: none;
        box-shadow: none;
        height: 107px !important;
        background-color: #fff;
    }

        .header-search .container {
            margin-top: 0px !important;
        }

        .header-search input[type="text"] {
            font-size: 20px;
            line-height: 22px;
        }

        .header-search button[type="submit"] {
            background: transparent;
            margin-top: 5px !IMPORTANT;
            margin-right: 15px !IMPORTANT;
        }

        .header-search .form-group {
            margin: 0;
        }

    .in .nav .dropdown-menu {
        position: relative;
        /*display: block;*/
        width: 100%;
        float: none !important;
        margin-top: 10px !important;
    }
     header .in .nav .dropdown-menu > li > a {
        padding: 9px 20px;
    }


    .navbar-collapse.in {margin:20px;}
    .navbar-brand {
        visibility: visible;
    }
}

@media all and (max-width:384px) {
    .top-social {
        font-size: 9px;
        
    }
   .text-right .top-social  {text-align:center!important;}
    .icon-wrapper.icon-full-round {
        line-height: 22px;
    }

    .icon-wrapper {
        height: 22px;
        width: 22px;
    }

    .padding-top30{padding-top:5px;}

    header .language a {
        font-size: 14px !important;
    }

    .header-search input[type="text"] {
        font-size: 22px !important;
    }

    .header-search .cata-search {
        font-size: 13px;
    }

    .navbar-brand {
        visibility: visible;
    }
}

@media (min-width:768px) {
    .navbar-brand {
        height: 1px !important;
        width: 0px !important;
        padding: 0px !important;
        visibility: hidden !important;
        line-height: 0px !important;
    }

    #showHeaderSearch {
       
        /*width: 63px !important;
        height: 52px !important;*/
    }

    header ul.nav {
        margin: 0 !important;
    }

  
   
}
@media (max-width:768px) {
      header .nav > li > a {
        /*padding:4px 4px !important;*/
        font-size: 14px !important;
    }
}

@media (min-width:1722px) {

    header .nav > li > a {
        padding: 13px 0px !important;
        font-size: 15px !important;
        font-weight:400;
    }
   

}

.in .nav {
    background: #777 !important;
    display: block;
    clear: both;
    padding:15px;
    height:400px; 
    overflow:scroll;
}

    .in .nav .open > a, .in .nav .open > a:hover, .in .nav .open > a:focus {
        color: #d42357;
    }

header .language a, header.smaller .dark-bg .language a {
    font-size: 15px;
    text-transform: capitalize;
}



    #showHeaderSearch:hover {
        color: #d42357;
    }

    #showHeaderSearch i {
        width: 15px;
        font-size: 25px;
    }

.header-search {
    position: absolute;
    height: 150px;
    left: 0;
    right: 0;
    bottom: -150px;
    background: #d42357;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25) inset, 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25) inset, 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}

    .header-search .container {
        position: relative;
        margin-top: 26px;
    }

    .header-search input[type="text"] {
        
        width: 95%;
        color: #fff;
        color: rgba(255,255,255,0.85);
        height: 54px;
        padding: 0 0 5px 0;
        font-size: 32px;
        line-height: 40px;
        border-bottom:1px solid rgba(50, 50, 50, 0.5);
        background:transparent;
       
    }
    
.simplebox {
    outline: none;
    border: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.header-search  input[type="text"]:-moz-placeholder {
    color: #fff;
    color: rgba(255,255,255,0.6);
}

.header-search input[type="text"]::-moz-placeholder {
    color: #fff;
    color: rgba(255,255,255,0.6);
    opacity: 1;
}

.header-search input[type="text"]:-ms-input-placeholder {
    color: #fff;
    color: rgba(255,255,255,0.6);
}

.header-search input[type="text"]::-webkit-input-placeholder {
    color: #fff;
    color: rgba(255,255,255,0.6);
}

.header-search .top-btn {
    border: 0;
    padding: 0;
    margin: 0;
    color: #fff;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    background: #777;
    /* background: rgba(255,255,255,0.2);*/
    position: absolute;
    top: 1px;
   
}

    .header-search .top-btn:hover {
        background: #2a272e;
    }
   
  
    .header-search button[type="submit"] i {
        margin-right: -1px;
    }

.header-search .cata-search {
    color: #fff;
}
.header-search .form-group input[type="text"]:focus {margin-right:30px;
}




header .language .dropdown-menu {
    margin: 0px;
    background: #4F4F4F;
}

    header .language .dropdown-menu > li > a {
        padding: 10px 20px;
        color: #fff;
    }


        header .language .dropdown-menu > li > a:hover {
            background: #646464;
        }

header .dropdown-menu {
    border-radius: 0px;
    padding: 0px;
}

    header .dropdown-menu > li > a {
        padding: 15px 20px;
    }


/* Image Overlay Effects*/
.image-overlay {
    position: relative;
    cursor: default;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 1px rgba(51, 51, 51, 0.3);
    -moz-box-shadow: 0px 0px 1px rgba(51, 51, 51, 0.3);
    box-shadow: 0px 0px 1px rgba(51, 51, 51, 0.3);
}

    .image-overlay img {
        width: 100%;
    }

/* overlay horizontal slide*/
.overlay-hslide {
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
    height: 100%;
    width: 0%;
    top: 0;
    right: 0;
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .overlay-hslide a {
        height: 80px;
        width: 80px;
        margin: -40px 0 0 -40px;
        position: absolute;
        text-align: center;
        top: 50%;
        left: 50%;
        line-height: 80px;
        cursor: pointer;
    }

        .overlay-hslide a .icon-overlay {
            font-size: 40px;
            padding: 0;
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(255, 255, 255, 0.6);
            background: rgb(255, 2255, 255) transparent;
        }

.image-overlay:hover .overlay-hslide {
    width: 100%;
    top: 0;
    left: 0;
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* overlay vertical slide*/
.overlay-vslide {
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
    height: 0%;
    width: 100%;
    bottom: 0;
    right: 0;
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .overlay-vslide a {
        height: 80px;
        width: 80px;
        margin: -40px 0 0 -40px;
        position: absolute;
        text-align: center;
        top: 50%;
        left: 50%;
        line-height: 80px;
        cursor: pointer;
    }

        .overlay-vslide a .icon-overlay {
            font-size: 40px;
            padding: 0;
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(255, 255, 255, 0.6);
            background: rgb(255, 2255, 255) transparent;
        }

.image-overlay:hover .overlay-vslide {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* overlay fade*/
.overlay-fade {
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .overlay-fade a {
        height: 80px;
        width: 80px;
        margin: -40px 0 0 -40px;
        position: absolute;
        text-align: center;
        top: 50%;
        left: 50%;
        line-height: 80px;
        cursor: pointer;
    }

        .overlay-fade a .icon-overlay {
            font-size: 40px;
            padding: 0;
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(255, 255, 255, 0.6);
            background: rgb(255, 2255, 255) transparent;
        }

.image-overlay:hover .overlay-fade {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* overlay zoom*/
.overlay-zoom {
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .overlay-zoom a {
        height: 80px;
        width: 80px;
        margin: -40px 0 0 -40px;
        position: absolute;
        text-align: center;
        top: 50%;
        left: 50%;
        line-height: 80px;
        cursor: pointer;
    }

        .overlay-zoom a .icon-overlay {
            font-size: 40px;
            padding: 0;
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(255, 255, 255, 0.6);
            background: rgb(255, 2255, 255) transparent;
        }

.image-overlay:hover .overlay-zoom {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.zoom-image img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.zoom-image:hover img {
    -webkit-transform: scale(1.5);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1.5);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    transform: scale(1.5);
    transition-timing-function: ease-out;
    transition-duration: 250ms;
}

.rotate-image-right img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.rotate-image-right:hover img {
    -webkit-transform: rotate(15deg) scale(1.5);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: rotate(15deg) scale(1.5);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    transform: rotate(15deg) scale(1.5);
    transition-timing-function: ease-out;
    transition-duration: 250ms;
}

.rotate-image-left img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.rotate-image-left:hover img {
    -webkit-transform: rotate(-15deg) scale(1.5);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: rotate(-15deg) scale(1.5);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    transform: rotate(-15deg) scale(1.5);
    transition-timing-function: ease-out;
    transition-duration: 250ms;
}

/********* Site styles*******/


/* #Forms
================================================== */
.form-control {
    color: #848494;
    background: #f9f9f9;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 1px solid #e5e5e5; /*padding:8px 18px;*/
    border-bottom: 2px solid #4dbcd8;
    border-radius: 0px;
}

}

.form-control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 1px solid;
}


/*****header title *******/
.banner-title {
    background: #30a9c8 url(../images/pettern-blue.png) repeat left top;
    min-height: 140px;
    padding: 10px;
    border-bottom: 10px solid #f7f7f7;
    margin-top: 110px;
}

.page-title {
    line-height: 1.2;
    margin: 20px 0 0;
    color: #FFFFFF;
    text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
    font-size: 40px;
    letter-spacing: -2px;
}

@media (max-width: 768px) {

    .banner-title {
        height: auto;
    }

    .page-title {
        line-height: 1;
        margin: 5px;
        color: #FFFFFF;
    }
}
/*******Footer ******/
.patterned {
    background: #2f2f2f url(../images/pettern.png) repeat left top;
    height: 240px;
}

.dark {
    background-color: #212121;
    padding: 20px;
    color: #8f8e8e;
}

/*footer bottom social*/
.footer-social {
    margin-bottom: 0px;
    margin: 0;
    margin-bottom: 20px;
}

    .footer-social a { /*opacity:0.6;*/
        filter: alpha(opacity=60); /* For IE8 and earlier */
        color: #ffffff;
        -webkit-transition: all ease-out .3s;
        -moz-transition: all ease-out .3s;
        -o-transition: all ease-out .3s;
        transition: all ease-out .3s;
    }

        .footer-social a:hover {
            opacity: 1;
            filter: alpha(opacity=100); /* For IE8 and earlier */
            color: #4dbcd8;
        }

.copyright {
    float: left;
}

.footer-bottom .footer-menu {
    float: right;
    width: 100%;
    text-align: right;
    margin-bottom: 20px;
}

    .footer-bottom .footer-menu li {
        border-left: 1px solid rgba(255, 255, 255, .6);
        padding: 0 10px;
        line-height: 1.2;
    }

        .footer-bottom .footer-menu li:first-child {
            border-left: none;
            padding-left: 0;
        }

@media (max-width:768px) {

    .icon-wrapper.icon-border-round.fa-2x {
        height: 30px !important;
        width: 30px !important;
        line-height: 30px !important;
        font-size: 1em !important;
    }

    .dark {
        font-size: 15px !important;
    }
}


/*activity post */

/*meta post*/
.activity-post {
    margin: 0 0 40px;
    /*overflow: hidden;*/
    padding: 0;
    position: relative;
    /*width: 100%;*/
}

    .activity-post .read-more {
        margin-bottom: -1px;
    }

.post-media {
    margin: 0 0 30px;
    padding: 8px;
    border: 1px solid #f2f2f2;
    position: relative;
    text-align: center;
    -webkit-box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
    box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
}

    .post-media img {
        margin: 0 auto;
    }

.post-info {
    min-height: 60px;
    margin-bottom: 20px;
}

.post-meta-info {
    font-size: 16px;
    margin-bottom: 0;
    padding-left: 70px;
    color: #d42357;
}

    .post-meta-info a {
        color: #848494;
    }

.meta-time:before {
    content: "\f017";
    font-family: 'FontAwesome';
    margin-right: 10px;
}

.meta-date:before {
    content: "\f073";
    font-family: 'FontAwesome';
    margin-right: 10px;
}

.meta-location:before {
    content: "\f041";
    font-family: 'FontAwesome';
    margin-right: 10px;
}

.meta-tags:before {
    content: "\f02c";
    font-family: 'FontAwesome';
    margin-right: 10px;
}

.meta-delimiter {
    border-left: 1px solid #e5e5e5;
    display: inline-block;
    height: 10px;
    margin-left: 10px;
    padding-left: 10px;
}

/*activity format icons*/
.post-format-standard .post-format:before {
    content: "\e805";
    font-family: 'fontello';
}

.post-format-project .post-format:before {
    content: "\e818 ";
    font-family: 'fontello';
}

.post-format-activity .post-format:before {
    content: "\e805";
    font-family: 'fontello';
}

.post-format-link .post-format:before {
    content: "\f0c1";
    font-family: 'FontAwesome';
}

.post-format-quote .post-format:before {
    content: "\f10e";
    font-family: 'FontAwesome';
}

.post-format-gallery .post-format:before {
    content: "\f03e";
    font-family: 'FontAwesome';
}

.post-format-video .post-format:before {
    content: "\f03d";
    font-family: 'FontAwesome';
}

.post-format-image .post-format:before {
    content: "\f030";
    font-family: 'FontAwesome';
}

.post-type {
    position: absolute;
    padding: 5px;
}

    .post-type .post-format {
        border-radius: 0;
        opacity: 0.5;
    }


/*post format - medium-post*/
.medium-post .post-media {
    margin: 0 0 20px;
}
/*post format - small-post*/
.small-post .post-media {
    margin: 0 0 20px;
}
/* post format - grid post */
.post-grid {
    border: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

    .post-grid .post-format {
        left: 20px;
        top: 0;
        position: absolute;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .post-grid .post-meta-info {
        padding-left: 0px;
    }

    .post-grid .post-info {
        margin-bottom: 0;
        padding: 0 20px;
    }

    .post-grid .post-title {
        font-size: 24px;
        margin: 10px 0 20px;
        padding: 0;
    }

    .post-grid .post-media {
        padding: 0;
        margin-bottom: 20px;
        border: none;
    }

    .post-grid .post-content {
        padding: 0 20px;
    }

    .post-grid .link-icon.read-more {
        margin-left: 20px;
    }

.post-format-quote.post-grid .post-format {
    position: relative;
}

.post-format-quote.post-grid .post-title {
    padding-left: 70px;
}

.post-format-link.post-grid .post-format {
    position: relative;
}

.post-format-link.post-grid .post-title {
    padding-left: 70px;
}

dl dt:first-child {
    padding-top: 0;
    border-top: 0;
    margin-top: 0;
}

dt {
    font-weight: 400;
    color: #999999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 13px;
    padding: 16px 0 7px 0;
    margin: 12px 0 0 0;
    border-top: 1px solid #e5e5e5;
}

dd, dd a {
    line-height: 25px;
    font-weight: 500;
}

    dd span {
        font-weight: 400;
        font-size: 14px;
        line-height: 13px;
    }


/***** external-link ***/
.external-link {
    font-weight: 400;
    font-size: 14px;
    line-height: 13px;
}

/*** general  side links  *****/

.side-date {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
}

.pink {
    color: #d42357;
}

.sidebar-links ul {
    margin: 0px;
    padding: 0px;
}

.sidebar-links li {
    list-style: none;
    line-height: 1;
    padding: 5px 10px;
}


.side-search .side-btn-search {
    border-width: 0px 0px 3px 0px;
    border-color: #4dbcd8;
    background: #f9f9f9;
    color: #9B9B9B;
    transition: all .2s ease-in-out;
}

    .side-search .side-btn-search:hover {
        background: #4dbcd8;
        color: #fff;
    }

.side-search input.form-control {
    margin-left: -1px;
    background-color: transparent;
    border-width: 0px 0px 3px 0px;
    padding: 8px 4px;
    font-size: 16px;
}

    .side-search input.form-control:focus {
        background: #f9f9f9;
    }



/****************************especially for icons *************************/
.especiallyfor {
    display: block;
    /*min-height: 55px;*/
} .especiallyfor p {
        font-size: 12px;
        line-height: 1 !important;
        padding-top: 5px;
    } .especiallyfor a:hover {  color: #4dbcd8; }

        .especiallyfor a.selected { color: #777777; }

    .especiallyfor a { border: 3px solid rgba(230,230,230, .1); border-radius: 50%;  }
.especiallyfor a:hover { border: 3px solid rgba(155,155,155, 1);}

.especiallyfor a.active .bg-color-blue {background:#d42357 !important}


/*******home page specially for**********/ 

.esp-home .nav .text{line-height:1; font-size:14px; text-align:center; margin-top:5px; color:#848494;}
.esp-home .nav a:hover{background-color:transparent;}
.esp-home .icon-wrapper {border: 3px solid rgba(155,155,155, 0);transition: all .2s ease-in-out;}
.esp-home .icon-wrapper:hover {border: 3px solid rgba(155,155,155, 1);}
.padding-top5{padding-top:5px;}


/*******  Search Results
*******************/
.search-results-item {
    float: left;
    position: relative;
    width: 100%;
    margin: 10px 0;
}

.search-result-counter {
   
    margin-right: 10px;
    height: 40px;
    width: 40px;
    border: 1px solid #e5e5e5;
    background: #f9f9f9;
    text-align: center;
    line-height: 2;
    font-size: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}


.border {
    border: 1px solid #f2f2f2;
}

/*******  404 Error*******************/

.error-block {
    text-align: center;
    padding: 40px 0;
    margin: 40px 0;
}

.error-title {
    font-size: 14em;
    line-height: 1;
    font-weight: 500;
}

/*project simple info*/
.project-info-simple {
    padding: 10px 50px 10px 0;
    margin: 1px 0 0 0 !important;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
}

    .project-info-simple .project-date {
        font-size: 12px;
        line-height: 2.5;
    }

    .project-info-simple .project-title, {
        font-size: 18px;
        margin: 0 !important;
        line-height: 1.2;
        font-weight: 500;
        display: block;
    }

.project-title a {
    font-weight: 500;
}

.project-title a, .project-info-simple {
    color: #848494;
    transition: all .2s ease-in-out;
}

    .project-title a:hover, .project-title:hover {
        color: #fff;
    }

    .project-info-simple:hover {
        background-color: #50c8e6;
        cursor: pointer;
        color: #fff;
    }

    .project-info-simple:after, .portfolio-info-simple:before {
        bottom: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .project-info-simple:after {
        border-color: rgba(0, 0, 0, 0);
        border-bottom-color: #fff;
        border-width: 8px;
        left: 47%;
    }


.related-media .carousel-control {
    text-align: center;
    font-size: 25px;
    display: inline-block;
    border:1px solid  #858585;
    padding:1px 15px;
    margin-top:15px;
}

.related-media a.carousel-control {
    color: #858585;
}

    .related-media a.carousel-control:hover {
        color: #4dbcd8;
        border-color: #4dbcd8;;
    }

.related-media .carousel-indicators {
    bottom: 0px;
}

    .related-media .carousel-indicators .active {
        background-color: #50c8e6;
        border-color:#50c8e6;
    }

    .related-media .carousel-indicators li {
        border-color: #50c8e6;
    }
    #carousel-relatedimages  .image-overlay{box-shadow: none}
/**********************News list page  ****************************************/
.news-search h3 {font-weight:300; margin-bottom:0px; }

.news {display:block; width:100%; float:left; margin-bottom:15px;border-bottom:1px solid #f2f2f2; }
.news .date {  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #d42357;
  padding: 10px;
  text-align: center;
  border: 4px solid #f2f2f2;
  color: #fff !important;
  margin-bottom:10px;
}
 .news .day {
  font-size: 35px;
  line-height: 1;
  display:block;
  margin-top:4px;
}
.news .month {
  line-height: 1;
  font-size: 20px;
  display:block;
}
.news .year {
  font-size: 13px;
  letter-spacing: 2px;
  display:block;
}

.news .data { display:inline-block; }
.news h4 a {font-weight:400 ;/*color:#555; */  transition: all 0.3s ease-in-out;}
.news h4 a:hover{color: #d42357;}
.news-search h3 {margin-bottom:20px;}

.margin-4 {margin:0 4px}


@media (max-width: 768px) {
    .news .day , .news .month , .news .date, .news .year {display:inline; line-height:1; background:transparent; border:0;color:#d42357; font-size:15px; font-weight:400; height:auto !important}
    .news .date {width:20%;}
    .news .data {float:none; /*width:100%;*/ border:0; margin:0; border-bottom:1px solid #f2f2f2;}
}
/*******Events showevents page *************************/



.event h4 {font-weight:300;}
.event .data { float:left;}
.event {padding:0px; border-radius:0px; }
.event { display:block; width:100%; float:left;  background-color: rgba(249,249,249, 1); border: 1px solid rgba(230,230,230, .9); margin:10px 0px;}

/*styling thead opened calendar*/ 
#CalendarDiv .btn {margin-bottom:0px;width:100%; border:0; }
.CalendarHeader {text-align:center; color:#848494}
tr.tr-weekdays {border-bottom:1px solid #f2f2fe;background:rgba(50, 50, 50, 0.1);transition: all .2s ease-in-out; }

.Selected {background:#404040; color:#fff;padding:2px;text-align: center;}
.hasEvents {color:#fff; background:#d42357;padding:2px;text-align: center;}
.hasNoEvents {background:#f9f9f9; color:rgba(50, 50, 50, 0.8);padding:2px;text-align: center;}
.NotSelected {color:rgba(50, 50, 50, 0.4); background:#f9f9f9;padding:2px;text-align: center;}
.Selected :hover, .hasEvents:hover, .hasNoEvents:hover {background:#4dbcd8; color:#fff; cursor:pointer}


/******************simple-news news listing page red bar   ******************/
/*************************************Relation-events and news (Nahed) *******************************************/

.news-simple .news col-md-2; .news-simple .news col-md-10 {width:100%; border:0px;}
.news-simple .news .date { color:#999; border:0px; background:none; width:100%; height:auto !important; text-transform: uppercase; }
.news-simple .news .date span { line-height:0.5; color:#848494; display:inline; font-size:13px;}
.news-simple  h4 a {  display: inline-block;  transition: all 0.2s;  color:#4d4d4d !important;  font-size: 16px;  font-weight: 500;} 
.news-simple  .data {border:0px; margin:0; padding:0;}
.news-simple .news {border-bottom: 1px solid #e5e5e5; position: relative; color: #ff3296;}
    .news-simple .news:after {
        display: block;
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0;
        height: 5px;
        background-color: #d42357;
        content: "";
        -moz-transition: width 0.2s;
        -o-transition: width 0.2s;
        -webkit-transition: width 0.2s;
        transition: width 0.2s;
    }

.news-simple .news:hover {
  color: #d42357;
}
.news-simple .news:hover:after {
  width: 100%;
}
.news-simple .cal:before {content:''}


.events-simple .cal:before {
    content: "\e805";
    font-family: 'fontello';
    color: #d42357;
}
.events-simple  {width:auto !important}
.events-simple .side-title a {color:#777777;}
.events-simple .events-meta div  { display:inline}
.events-simple  .data {  border-bottom: 1px solid #f2f2f2;}
.events-simple  h4 a:hover {color:#d42357}
/*************************Events advanced search inside showevents page  *************************/


.form-group {
    position: relative;   
}
.form-group [data-toggle="floatLabel"] {
    height: 44px;
    padding-top: 16px;
}
.form-group [data-toggle="floatLabel"] + label {
    font-size: 12px;
	left: 12px;
	opacity: 1;
	position: absolute;
	top: -2px;
	transition: all 0.3s ease-in-out;
}
.form-group [data-toggle="floatLabel"]:required + label {
    color: rgb(255, 0, 0);
}


.form-group.form-group-textarea [data-toggle="floatLabel"] + label {
	top: -3px;
}

/* Positioning */
.form-group [data-toggle="floatLabel"][data-value=""] {
    padding-top: 6px;
}
.form-group [data-toggle="floatLabel"][data-value=""] + label {
	opacity: 0;
	top: 18px;
}

/*days command month command years*/ 

.side-search .dropdown {padding:4px 3px ; border-bottom:2px solid #4dbcd8;background:#f9f9f9; font-size:13px}



/******************* events aside ***************/
.cal:before {
    content: "\e805";
    font-family: 'fontello';
    color: #d42357;
}

.events-item {
    border-bottom: 1px solid #e5e5e5;
    transition: all .2s ease-in-out;
}

aside .side-title {
    font-size: 16px;
    font-weight: 500;
   
}

/**********************expand events **************/
.col-md-12 .side-title {
    background-color: rgba(249,249,249, 1); /*padding:5% 5px;*/
    border: 1px solid rgba(230,230,230, .9);
    vertical-align: middle;
}

    .col-md-12 .side-title p {
        font-size: 16px;
        margin-top: 10px;
        line-height: 1.2;
    }

.col-md-12 .event-meta {
    -webkit-box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
    box-shadow: 0 0 2px rgba(50, 50, 50, 0.5);
}

/**************************events-calendar page tools **************************/
.events-calendar { padding:10px;
    margin-top: -30px;
    border-bottom: 3px solid #4DBCD8;
    margin-bottom: 15px;
}
.side-search .btn {padding:10px 5%; /*width:25%*/}

.calendar-views .icon-wrapper.fa-2x {
    font-size: 24px;
}

.calendar-views a.active .bg-color-dark {
    background-color: #d42357 !important;
}

.calendar-views a.bg-color-dark {
    transition: all .2s ease-in-out;
}

.calendar-views .bg-color-dark:hover {
    background: #4DBCD8 !important;
}

.events-tools {
    position: relative;
}

    .events-tools .side-search input {
        background: #fff;
    }

    .events-tools .side-search .side-btn-search {
        background-color: #e5e5e5;
    }

.adv-search {
    position: absolute;
    right: 22px;
    bottom: -24px;
    z-index: 999;
}

    .adv-search button {
        text-transform: uppercase;
        padding: 2px 35px;
        background: #4DBCD8;
        color: #fff;
        border: 0;
    }

        .adv-search button:active {
            border: 0;
        }

.adv-search-input {
    width: 100%;
    height: 250px;
    position: absolute;
    background: rgba(77,188,216, 0.8);
    z-index: 888;
    top: 95px;
}

/****************** Projects list ****************************/


#Projects-list .project-item {
    display: block;
    border-bottom: 0px !important;
    position: relative;
    margin-bottom: 40px;
}

#Projects-list .col-md-12 {
    padding: 0px !important;
}



    #Projects-list .project-title a:hover {
        color: #4dbcd8;
    }

.type {
    font-size: 14px;
    color: #4D4D4D;
    /*text-transform: uppercase;*/
}

.specially {
}

/************* Tabs ***************/
.tabs {
    margin: 10px 0;
}

.nav-tabs {
    border-bottom: none;
}

    .nav-tabs > li {
        width: 100%;
        padding: 0;
    }

        .nav-tabs > li > a {
            border-top: 5px solid transparent;
        }

            .nav-tabs > li > a:hover {
                border-top: 5px solid #e5e5e5;
            }

            .nav-tabs > li > a .fa {
                padding-right: 10px;
            }

.tab-pane {
    padding: 20px;
    border: 1px solid #e5e5e5;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    border-top: 5px solid;
    color: #848494;
    background: none;
    border-bottom: 1px solid #e5e5e5;
}

.tab-content > .active {
    display: table;
    width: 100%;
}
/* tabs justified */
.nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
}

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
    border-top: 5px solid;
}

@media (min-width: 768px) {
    .nav-tabs > li {
        width: auto;
    }

        .nav-tabs > li > a {
            padding: 15px 10px;
            border-top: 5px solid transparent;
            border-left: 1px solid transparent;
            border-right: 1px solid transparent;
        }

            .nav-tabs > li > a:hover {
                background: #f9f9f9;
                border-left: 1px solid #e5e5e5;
                border-top: 5px solid #e5e5e5;
                border-bottom: 1px solid #e5e5e5;
                border-right: 1px solid #e5e5e5;
            }

    .tab-pane {
        padding: 20px;
    }

    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
        border-bottom: 1px solid #fff !important;
        border-right: 1px solid #e5e5e5 !important;
        border-left: 1px solid #e5e5e5 !important;
    }

    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid transparent;
        margin-bottom: -1px;
    }

    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #e5e5e5;
        margin-bottom: -1px;
    }

    .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
        border-top: 5px solid;
    }
}
.side-publication .tab-content > .active {display:inline-block}
/*aside  ul.nav-tabs {float:right}*/
aside .nav-tabs > li a {
    font-size: 12px;
    padding: 5px;
}

aside .tab-pane {
    padding: 20px 10px;
}
/*Publications****************/

.pub-title {
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.2;
    font-size: 16px;
}


/**************** poster expand and shrink ********************/
.post-media-image img{
    position: relative;
    padding: 8px;
    border: 0px solid #f2f2f2;
    text-align: center;
    -webkit-box-shadow: 0 0 2px rgba(50, 50, 50, 0.0);
    -moz-box-shadow: 0 0 2px rgba(50, 50, 50, 0.0);
    box-shadow: 0 0 2px rgba(50, 50, 50, 0.0);
    margin-bottom:20px
}

.post-media-poster .image-overlay img {
    width: 840px;
}

.image-overlay {
}

.post-media-poster img {
    /*height: 430px;*/
    overflow: hidden;
}

.expand {
    width: 100%;
    line-height: 2;
    position: absolute;
    bottom: 0;
    background-color: #fff;
    opacity: 0.7;
    display: block;
    padding: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}
.post-media-poster {margin-bottom:20px;}
    .expand a {
        color: #777;
    }

@media print {
    .post-media-image {
        width: auto;
        height: auto;
    }

    .expand {
        display: none;
    }

    .image-overlay img {
        width: 50%;
    }
}

/**************** Latest Work ******************/
ul.latest-work {
    padding: 0;
}

.latest-work li {
    display: inline;
}

.work-entry {
    padding: 5px;
}

    .work-entry h2, .work-entry h3, .work-entry h4, .work-entry h5 {
        margin: 10px 0;
        font-size: 16px;
        color: #4dbcd8;
        font-weight: 500;
    }

    .work-entry p {
        font-size: 14px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .work-entry img {
    }

.work-entry-content {
    padding: 5px;
}

.work-entry-details {
}

.work-entry-image {
    position: relative;
}

.latest-work .link-icon {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}



/****************Publication************************/
.bibliography {
    font-size: 15px;
    color: #999;
    line-height: 1.5;
}

/*************arabic publication***************/
#arabic .col-md-3 { /*float:right*/
}

#arabic div.book-cover:before {
    content: '';
    position: absolute;
    top: 0;
    right: 10px !important;
    bottom: 0;
    width: 3px;
    background: rgba(0,0,0,0.06);
    box-shadow: 1px 0 3px rgba(255, 255, 255, 0.1);
}

#arabic .book-cover:after {
    background: transparent;
}

#arabic .book-effect {
    box-shadow: inset -7px 0px 8px rgba(0, 0, 0, 0.4);
}

#arabic .col-md-9 {
    text-align: right;
}

/********************* News*********************/


.border-dotted-right {
    border-right: 1px dotted #DCDCDC;
}

.news-list-item a {
    color: #555;
    transition: all 0.3s ease-in-out;
}

    .news-list-item a:hover {
        color: #4dbcd8;
    }

/******************Museums ******************/
.light-pattern {
    background: #636363 url(../images/pettern-5.png) repeat left top;
    color: #fff;
}

    .light-pattern h1 {
        color: #fff;
    }

.museum-photo img, .exhibit-photo img {
    width: 100%;
    vertical-align: middle;
}

.museum-main:hover img, .exhibit-photo:hover img {
    opacity: 0.4;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
}

.museum-main:hover .museum-text {
    background-color: #424041;
    color: #000;
}

.museum-text {
    padding: 60px;
    min-height: 476px;
    background-color: #c80063;
}

    .museum-text p {
        font-size: 17px;
    }

.museum-des {
    font-size: 20px;
    font-weight: 400;
}

.museum-text .museum-name {
    color: #FFF;
    margin-top: 0;
}

.museum-name {
    font-weight: 400;
    font-size: 32px;
}

/**********************Exhibitions******************/
.big-title h1 {
    color: #525252;
    text-transform: uppercase;
    font-weight: 700;
}

    .big-title h1 span {
        font-weight: 300 !important;
        color: #4dbcd8;
    }

.card .thumbnail {
    border-radius: 0px;
    padding: 15px;
}

.pink-parrallax {
    padding: 30px;
    background-image: url(../images/01.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

    .pink-parrallax .big-title span, .pink-parrallax .big-title p {
        color: #fff;
    }

    .pink-parrallax .card .thumbnail, .light-bg .card .thumbnail {
        border-radius: 0px;
        padding: 0px;
        border: 0px;
        text-align: center;
    }

.exhibit-photo {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.exhibit-title {
    position: absolute;
    padding: 20px;
    background-color: rgba(156, 34, 81, 0.7);
    bottom: 0px;
    width: 100%;
    text-align: center;
    font-weight: 400;
}

    .exhibit-title a {
        font-size: 26px;
    }

    .exhibit-title:hover {
        background-color: rgba(0, 0, 0,0.7);
        color: #d42357;
    }

.blue-parrallax {
    padding: 30px;
    background-image: url(../images/blue.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

    .blue-parrallax .big-title p, .blue-parrallax .big-title span {
        color: #fff;
    }

    .blue-parrallax .big-title h1 {
        color: #d42357;
    }


/********************About *************************/
.round {
    border-radius: 50%;
    width:150px; 
    height:150px;
    padding:50px 20px;
    font-weight:400;
    border:4px solid rgba(77,188, 216, 0.6);
    background-color:rgba(255,255, 255, 0.7);
    line-height:1;
     transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
     
}
.round a {color:#d42357;}
.round:hover { border:4px solid rgba(77,188, 216, 0.1); color:#d42357}
.bot {min-height:340px;}



/**************gallery****************/
.gallery .thumbnail{border:0px; box-shadow:none; margin-bottom:10px; background:transparent; height:135px; overflow:hidden; }
.gallery .thumbnail img {width:100%; overflow:hidden;}
.gallery dt {color:#585858;border-top:0px; padding:0px}
.gallery dd a, .gallery dd   {color:#fff; font-size:15px; line-height:19px !important; /*margin-bottom:10px;*/}
.gallery .label-danger {background-color: rgba(209,20,76,0.8);}
.gallery .label { margin-top:20px}
.bg-color-vdark:hover {background-color:#d42357;}
.bg-color-vdark {background-color:#3c3a3b;}
.gallery .bg-color-primary,.gallery  .bg-color-vdark{display:block; width:100%; float:left;}
.masonry-brick .Caption {border-top:1px solid #f2f2f2; padding:10px 5px; font-weight:400; font-size:14px}
/***********************otherpages*/
.otherpages .side-title:before {/*content:'- ' */}

/*******************home-gallery***************/
.home-gallery {
    border-top: 4px solid #d42357;
    border-bottom: 4px solid #d42357;
    /*height:320px; overflow:hidden;
    margin:10px 0;*/
    
}
@media (max-width: 992px) {
   .gallery .thumbnail{height:auto !important }
}
@media (max-width: 470px) {
    /*.home-gallery{height:120px}*/
}
.inline {display:inline}
.normal {font-weight:300}
.nowhiring { text-transform:none; margin:10px; font-size:13px; font-weight:normal; display:inline-table}
@media (max-width:720px){
    .nowhiring { margin:0 !important; font-size:12px; }


}
/**********************see also projects ***************/
.center-project-list .col-md-2 {width:100%; display:block;min-height:115px; background-color: rgba(248,248,248, .5);border: 1px solid rgba(239,239,239, .5); margin:10px 0;}

.center-project-list .work-entry-content, .center-project-list .work-entry {padding:0;}

#seealso-projects h2, #seealso-events h2 {margin:auto 10%;}
#seealso-projects col-md-12  {width:33%; float:left;}
#seealso-projects .project-item .project-meta img {display:block; width:100%; border:1px solid #f2f2f2;}
#seealso-projects .project-item .project-title {float:left;}
#seealso-projects  .image-overlay {  -webkit-box-shadow: 0px 0px 2px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 2px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 2px rgba(51, 51, 51, 0.5); margin-bottom:10px;}
#seealso-projects .work-entry-details {badding-bottom:5px ; border-bottom:1px solid #eee; }
.row-centered {
    text-align:center;
}
#seealso-projects .col-centered {
    display:inline-block !important;
    float:none !important;
    /* reset the text-align */
   
    /* inline-block space fix */
    margin-right:-5px;
   vertical-align:top;
}

#SearchDiv {margin-bottom:10px;}
#center-events-open article {background-color: rgba(249,249,249, 1);border: 1px solid rgba(230,230,230, .9); vertical-align: middle;  padding:10px 20px; margin:10px auto }
section.light-bg  article {width:31%; background:#fff; padding:20px;margin:auto 15px; float:left;border: 1px solid rgba(230,230,230, .9) }

/*responisve styles for related events*****/ 

@media (max-width: 768px) {
 
  .center-project-list .col-md-2 {
 
  height: auto;
  
  float: left;
}
 section.light-bg  article {width:97%; background:#fff; padding:10px;margin:10px; float:none;border: 1px solid rgba(230,230,230, .9) }

}

.events-main .side-date {color:#fff; line-height:1; font-size:17px}


/**************************Home page tool tip *****************/
.awesome-tooltip + .tooltip > .tooltip-inner {
    background-color: #d42357; 
    color: #f5f5f5; 
    border: 1px solid #d42357; 
}
.awesome-tooltip + .tooltip.left > .tooltip-arrow{
    top:50%;
    right:0;
    margin-top:-5px;
    border-top:5px solid transparent;
    border-bottom:5px solid transparent;
    border-left:5px solid #d42357;
}
.awesome-tooltip + .tooltip.right > .tooltip-arrow { border-top:5px solid transparent;
    border-bottom:5px solid transparent;
    border-right:5px solid #d42357;
   
}
.static-pages img { margin: 10px;
  border-radius: 4px;
  padding: 10px;
  border: 1px solid #f2f2f2; }
.static-pages .image-overlay {box-shadow:none !important; }
.static-pages .image-overlay img { padding:5px; margin:10px;-webkit-box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
  -moz-box-shadow: 0 0 2px rgba(50, 50, 50, 0.1);
  box-shadow: 0 0 2px rgba(50, 50, 50, 0.1); border:1px solid #f2f2f2}
.otherpages-simple .otherpages .side-title {
  font-size: 19px;
  font-weight: 500;
  border-bottom: 1px solid #f2f2f2;
  line-height: 1.5;
  padding-bottom:5px;
}
.static-pages .heading-single {font-weight: 400;
  padding-bottom: 20px;
  text-transform: capitalize;}

.side-publication h4.color-pink {color:#848494 !important; display:block;}
.side-publication .nav-tabs {width:100% !important;}
.side-publication .row {margin:0; padding:0;}
.side-publication .col-md-3 {width:50%; margin:0; padding:0}
.side-publication .thumbnail {padding:5px; margin:5px;}
.side-publication  .col-md-12 {padding:0}

.openinghours {line-height:1; padding:10% 15px;}
@media (max-width:990px) {
    .openinghours {
        padding: 10px !important;
    }
    .links .block {display:inline;}
}
.vdary {background:#4F4F4F}
.block{display:block}
.carousel-pad {padding:20px 20px 0;}

.carousel-caption h1 {background:rgba(77, 188, 216, 0.45); color:#fff; padding:0.5%; text-align:left; display:inline}
.carousel-caption h1 a {color:#fff;}
.carousel-caption h4 { color:#fff;  }
.carousel-caption h4 span {background:rgba(50, 50, 50, 0.7);padding:0.5%;display:inline-block; margin:5px 0 }
@media (max-width:420px) {
    .carousel-caption {bottom:0 !important;}
    .carousel-caption h1 {
        font-size: 14px !important;
        padding: 0 !important;
        margin: 0;
    }
    .carousel-caption h1 a, .carousel-caption h1 {line-height:0.5 !important ;}
}
@media (max-width:768px) {
    .carousel-caption {bottom:0;}
    .carousel-caption h1 {padding:0;}
    .carousel-caption h4 { margin:0;  }
    .carousel-caption h4 span {padding:0;margin:0 }



}
@media (max-width:1300px){
      .carousel-caption {bottom:10px; padding:0;}
      .carousel-caption h1 {font-size:18px; padding:5px; margin:0}
        .carousel-caption h4 {padding: 0 !important;        }
       .carousel-caption h4 span{padding:5px; font-size:12px; margin:0 }
       .carousel-indicators {display:none;}
}
.slick-list .image-overlay {box-shadow:none !important;}
.breadcrumb {color:#c2c2c2}
.summerfestival {
    background:#cc0000;
    color: #ffffff;
    font-size: 14px;
}
.newsheight {display:inline-block; min-height:335px; overflow:hidden;}
.well-sm h4 span a { color:#4dbcd8 !important}


