@font-face {
    font-family: 'BookAntiqua';
    src: url('<?php echo base_url("_layout/css/fontawesome/font/bookantiqua.ttf"); ?>') format('truetype');
    font-weight: normal;
    font-style: normal;
}

#wrap {
    padding: 0;
    margin: 0 auto;
    background-color: #fff;
}

#header {
    z-index: 99;
    border-bottom: 1px solid #e0e2e3;
    margin-top: 0px;
}

/* Logo */
#logo {
    display:inline-block;
}

#logo img {
    display: block;
}

/* Menu Reset */
.sf-menu, .sf-menu * {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sf-menu, .sf-menu li {
  overflow: visible !important;
}

.sf-menu {
    height: 100%;
    display: flex;
    align-items: center;
}

.sf-menu > li {
    height: 100%;
    float: left;
    position: relative;
    white-space: nowrap;
    -webkit-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s;
    text-align: center;
}

.sf-menu ul {
  display: block !important;
  position: absolute;
  z-index: 999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: top center;
  transform: scaleY(0) translateY(-4px);
  transition:
    transform .2s cubic-bezier(.4,0,.2,1),
    opacity .1s linear,
    visibility 0s linear .2s;
}

.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scaleY(1) translateY(0);
  transition-delay: 0s;
}

.sf-menu ul li:hover > ul,
.sf-menu ul li.sfHover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scaleX(1) translateX(0);
}

.sf-menu ul ul {
  top: 0;
  left: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(0) translateX(4px);
  transition:
    transform .2s cubic-bezier(.4,0,.2,1),
    opacity .1s linear,
    visibility 0s linear .2s;
}

.sf-menu ul li {
    position: relative;
}

.sf-menu a {
    position: relative;
    display: block;
    padding: 14px 10px;
    font-size: 16px;
    text-decoration: none;
    font-family: 'BookAntiqua';
    color: #000;
}

.sf-menu a > img {
    display: block;
    padding: 5px 0 8px 0;
    margin: 0 auto;
    -webkit-transition: padding 0.3s;
    -o-transition: padding 0.3s;
    transition: padding 0.3s;
}

.sf-menu li:hover a > img {
    padding: 3px 0 10px 0;
}

.sf-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 15px;
    font-size: 20px;
    text-decoration: none;
    font-family: 'BookAntiqua';
    color: #08519e;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sf-menu > li:hover > a {
    background-color: #08519e;
    color: #ffffff;
}

.sf-menu > li > ul,
.sf-menu > li > ul > li > ul {
    background-color: #fff;
    box-sizing: border-box;
    padding: 0;
}

.sf-menu ul li a {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #ffffff;
    font-family: 'BookAntiqua';
    text-transform: none;
    height: 40px;
    min-width: 240px;
    max-width: 100%;
    white-space: nowrap;
    padding-left: 10px;
    border: 1px solid #086fb4;
    box-sizing: border-box;
}

.sf-menu ul li:hover > a {
    background-color: #ffffff;
    color: #08519e;
}

.sf-menu ul li:hover {
    background-color: #08519e;
}

.sf-menu a,
.sf-menu ul li a {
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    -moz-transition: background-color 0.3s ease, color 0.3s ease;
    -o-transition: background-color 0.3s ease, color 0.3s ease;
}

.sf-menu > li:has(ul) > a::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    padding: 2px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    position: relative;
}

.sf-menu > li:has(ul):hover > a::after {
    transform: rotate(-135deg);
}

/* Mobile menu  */
#mobile-menu {
  position: fixed !important;
  top: 90px !important;
  left: 0 !important;
  width: 100% !important;
  max-height: 75vh;
  margin-top: 0 !important;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1);
  z-index: 100000 !important;
  background: #08519e;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#mobile-menu.menu-visible {
  transform: translateY(0);
}

#mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  display: none;
  transition: opacity 0.35s ease;
}

#mobile-menu-overlay.visible {
  display: block;
  opacity: 1;
}

body.mobile-menu-open {
  position: fixed;
  width: 100%;
  left: 0;
}

#mobile-menu li {
    display: block;
    margin: 0;
    border-top: none;
    border-bottom: 1px solid #086fb4;
    box-sizing: border-box;
}

#mobile-menu > li:last-child,
#mobile-menu > li > ul li:last-child,
#mobile-menu > li > ul > li > ul li:last-child {
    border-bottom: none;
}

#mobile-menu > li:first-child,
#mobile-menu > li > ul li:first-child,
#mobile-menu > li > ul > li > ul li:first-child {
    border-top: 1px solid #086fb4;
}

#mobile-menu > li > ul, #mobile-menu > li > ul > li > ul {
    display: none;
    margin-left: 0;
}

#mobile-menu li a {
    position: relative;
    display: block;
    padding: 15px 25px;
    background-color: #08519e;
    color: #fff;
    font-size: 18px;
    text-align: left;
    text-decoration: none;
}

#mobile-menu li a img {
    margin-right: 10px;
    vertical-align: middle;
}

#mobile-menu ul a {
    padding-left: 45px;
}

#mobile-menu ul li ul a {
    padding-left: 70px;
}

#mobile-menu ul li > a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-left: 55px;
}

#mobile-menu > li > ul li > a::before {
  content: "•";
  display: inline-block;
  margin-left: -1.25rem;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

#mobile-menu > li > ul > li > ul li > a::before {
  content: "-";
  display: inline-block;
  margin-left: -1.25rem;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

#mobile-menu .mobile-menu-submenu-arrow-wrapper {
    display: inline-block;
    position: relative;
    height: 100%;
    width: 70px;
}

#mobile-menu .mobile-menu-submenu-arrow-wrapper,
#mobile-menu li,
#mobile-menu li > a {
  transform: none !important;
  -webkit-transform: none !important;
}

#mobile-menu .mobile-menu-submenu-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  transform-origin: center center;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.28s cubic-bezier(.2,.9,.3,1);
  will-change: transform;
}

#mobile-menu .mobile-menu-submenu-arrow::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  display: inline-block;
  line-height: 1;
}

#mobile-menu .mobile-menu-submenu-arrow > svg {
  width: 18px;
  height: 18px;
  display: block;
  transform-box: fill-box;
  transform-origin: center center;
  transition: transform 0.28s cubic-bezier(.2,.9,.3,1);
}

#mobile-menu .mobile-menu-submenu-arrow.mobile-menu-submenu-opened {
  transform: translateY(-50%) rotate(180deg);
}

#mobile-menu .mobile-menu-submenu-arrow.mobile-menu-submenu-opened > svg {
  transform: rotate(180deg);
}

#mobile-menu .mobile-menu-submenu-arrow-wrapper:hover .mobile-menu-submenu-arrow {
    background-color: #1b0b55;
}

#mobile-menu-trigger {
    position: absolute;
    top: 1px;
    right: 0;
    display: none;
    font-size: 32px;
    padding: 15px;
}

#mobile-menu-trigger i {
    color: #08519e;
}

/* Search */
#search fieldset {
    position: relative;
}
#search-input {
    width: 220px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 6px 10px;
    border: none;
    border-radius: 0;
    font-size: 11px;
}
#search-submit-btn {
    position: absolute;
    top: -5px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: none;
    background: url(../images/icons/32x32/white/arrowright.png) no-repeat center center;
    cursor: pointer;
}
#search-submit-btn:focus {
    outline: 0;
}
/* #Content
   ========================================================================== */

#content {
    z-index: 9;
    min-height: 300px;
    padding-bottom: 50px;
}
#portfolio {
    z-index: 1;
}
/* Headline Titles */

.headline {
    position: relative;
    padding: 0;
    margin: 8px 0 20px;
}
.headline img {
    position: absolute;
    top: 1px;
    left: 0;
}
.headline h6 {
    margin-left: 60px;
    color: #a3a3a3;
    text-transform: uppercase;
}
.headline h3 {
    margin-bottom: 0;
    margin-left: 60px;
    color: #555555;
    line-height: 26px;
}
.headline p {
    margin-left: 55px;
    color: #9e9e9e;
}
.headline p span a {
    color: #686868;
}
.headline p > a {
    color: #71d9e2;
}
.sub-headline {
    position: relative;
}
.sub-headline img {
    position: absolute;
    top: 7px;
    left: 0;
}
.sub-headline h3 {
    margin: 0 0 30px 45px;
    color: #838383;
}
.sub-headline h2 {
    margin-bottom: 0;
    margin-left: 35px;
    font-size: 20px;
}
.sub-headline h1 {
    padding-top: 12px;
    margin-left: 55px;
    font-size: 24px;
}
.sub-headline.alt-2 h1 {
    padding-top: 5px;
    color: #555655;
}
.sub-headline h3 {
    margin-left: 55px;
    color: #444;
}
.sub-headline a {
    color: #78d7dd;
}
.sub-headline.alt {
    border-bottom: 1px solid #71d9e2;
}
.sub-headline.alt img {
    padding: 15px;
    background-color: #71d9e2;
}
.sub-headline.alt h3 {
    margin: 0 0 15px 75px;
}
/* Page Header */

#page-header {
}
/* Side Nav */

.side-nav {
    border-top: 1px solid #efefef;
    margin-bottom: 30px;
    list-style-type: none;
    list-style-position: outside;
}
.side-nav li {
    border-bottom: 1px solid #efefef;
}
.side-nav li a {
    display: block;
    padding: 10px 0 10px 25px;
}
.side-nav li a:hover {
}
.side-nav li.current a {
    color: #303030;
}
.side-nav li.current a:hover {
    text-decoration: none;
}
.color-default {background-color: transparent;}
.color-shade-1 {background-color: #08519e;}
.color-shade-2 {background-color: #08519e;}
.color-shade-3 {background-color: #08519e;}
.color-shade-4 {background-color: #08519e;}
.color-shade-5 {background-color: #08519e;}
.color-shade-6 {background-color: #08519e;}
.color-shade-7 {background-color: #08519e;}

.delay1 {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.delay2 {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}
.delay3 {
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.delay4 {
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    animation-delay: 2s;
}
.delay5 {
    -webkit-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    animation-delay: 2.5s;
}
.delay6 {
    -webkit-animation-delay: 3s;
    -moz-animation-delay: 3s;
    animation-delay: 3s;
}
/* #Footer
   ========================================================================== */		

#footer {
    padding: 20px 0 0 0;
    /*background-color: #2b2b2b; */
    background: #08519e;
    border-top: 4px solid #5db4ec;
}
#footer .about {
    padding-bottom: 5px;
    margin-bottom: 55px;
    background-color: #5bb9c1;
}
#footer .about p {
    margin: 0 20px 20px 20px;
    color: #e0e0e0;
    line-height: 17px;
}
#footer .about .headline {
    padding: 25px 20px;
    margin: 0;
    margin-bottom: 15px;
    background-color: #71d9e2;
}
#footer .about .headline img {
    top: 22px;
    left: 20px;
    padding: 0;
    background: none;
}
#footer .about .headline h3 {
    padding: 0;
    margin-left: 40px;
    margin-bottom: 0;
    color: #fff;
}
/* Flickr */

.flickr_badge_image {
    display:inline-block;
}
.flickr_badge_image img {
    padding:0 5px;
    margin-bottom:5px;
    display:block;
}
#flickr_badge_wrapper {
    width: 100%;
    margin-bottom: 20px;
}
#footer .gallery-details {
    clear: both;
    color: #808080;
}
#footer .gallery-details p {
    padding:7px 20px;
    border-left: 1px solid #808080;
    margin-left: 100px;
}
#footer .gallery-details img {
    float: left;
    padding: 20px;
}
#footer .headline {
    border-bottom: 1px solid #5bb9c2;
    margin-top: 0;
    position: relative;
    padding-left: 40px;
}
#footer .headline img {
    padding: 7px;
    background-color: #5bb9c2;
}
#footer .headline h3 {
    font-family: 'BookAntiqua';
    padding: 10px 0;
    font-size: 20px;
    margin: 0 0 0 20px;
    color: #fff;
}
#footer .dot {
    margin: 5px 0 0 15px;
    list-style: none;
}
#footer .dot li {
    margin-top: 10px;
}
#footer .dot li:first-child {
    margin-top: 0;
}
#footer .dot li a {
    color: #717171;
}
#footer .dot li a:hover {
    text-decoration: none;
}
#footer .dot li:hover:before {
    color: #5bb9c2;
}
/* Social Media */

#footer .social-media {
    float: right;
    list-style-type: none;
    margin-top: -35px;
    margin-bottom: 0;
}
/* Contact */

#footer #contact {
    margin-left: 20px;
    list-style: none;
}
#footer #contact li {
    padding-left: 20px;
    margin-top: 5px;
    color: white !important;
}
#footer #contact li:hover {
    color: #ffff00 !important;}
#footer #contact li a {
    color: white !important;
    text-decoration: none;
}
#footer #contact li a:hover {
    color: #ffff00 !important;
}
#footer #contact li.email a, #footer #contact li.web a {
    text-decoration: none;
    color: white !important;
}
#footer #contact li.email a:hover, #footer #contact li.web a:hover {
    color: #ffff00 !important;
}
#footer form {
    position: relative;
}
#footer input[type="text"] {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 4px 10px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background-color: #636363;
    color: #fff;
    height:24px;
}
#footer input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    height: 24px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 3px;
    border: none;
    border-radius: 0;
    background-color: #71d9e2;
    color: #464646;
    font-size: 10px;
    padding-top: 3px;
}
#footer input[type="submit"]:hover {
    background-color: #1b0b55;
}
#footer-logo {
    display: block;
    margin-top: 50px;
    text-align: center;
    display: none;
}
#footer-2 {
    overflow: hidden;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.5);
    background-color: #03396c;
}
#footer-2 p {
    margin-bottom: 0;
    text-align: center;
}
#footer-menu {
    float: right;
    margin-bottom: 0;
    list-style: none;
}
#footer-menu li {
    display: inline-block;
    margin-left: 10px;
}
#footer-menu li:first-child {
    margin-left: 0;
}
#footer-menu li a {
    color: #656565;
    text-decoration: none;
}


.about-me {
    padding-bottom: 30px;
    background-color: #71d9e2;
    color: #fff;
}
.about-me .title {
    padding: 15px 25px;
    margin: 0;
    background-color: #4dcad5;
}
.about-me .title img {
    margin-right: 10px;
    vertical-align: sub;
}
.about-me p {
    margin: 20px 20px 0 20px;
}
.about-me > a {
    display: block;
    margin: 10px 20px 0 0;
    color: #fff;
    text-align: right;
}
.about-me a img {
    vertical-align: middle;
}
.about-me .title h3, .about-me .title a, .about-me .title p {
    margin: 0;
    color: #fff;
}
.about-me ul.dot.alt {
    margin: 20px 0 0 30px;
}
.about-me ul.dot.alt li {
    margin-top: 5px;
}
.about-me ul.dot.alt li a {
    color: #fff;
}
.dot li {
    margin-top: 25px;
}
.dot li:first-child {
    margin-top: 0;
}
.dot li a {
    color: #646464;
}
.dot li a:hover {
    text-decoration: none;
}
.dot li:hover:before {
    color: #5bb9c2;
}
ul.plus-2 li a {
    color: #555;
}
/* Social Icons */

.social-media.alt a.social-icon {
    display: block;
    width: 60px;
}
.social-media.alt a.social-icon i {
    color: #a4a4a4;
    font-size: 50px;
    line-height: 60px;
}
.color-shade-1 .headline {
    margin-left:15px;
}
.color-shade-1 .headline h6, .color-shade-1 .headline h3 {
    color: #fff;
}



.fullwidthbanner-container {
    width:100% !important;
    position:relative;
    padding:0;
    max-height:540px !important;
    overflow:hidden;
    color: #fff;
}
a.see-more {
    position: relative;
    display: block;
    padding: 26px 24px;
    background-color: #71d9e2;
    text-align: center;
    color: #fff !important;
}
a.see-more:hover {
    background-color: #1b0b55;
    /*    background-color: #64c6cf;*/
    color: #fff;
    text-decoration: none;
}
a.see-more img {
    display: block;
    margin: 0 auto 10px auto;
}
a.see-more .arrow {
    position: absolute;
    top: -35px;
    right: 0;
    width: 0;
    border-bottom: 35px solid #64c6cf;
    border-left: 70px solid transparent;
    -moz-transform: scale(.9999);
}
a.see-more .arrow2 {
    position: absolute;
    top: 0;
    right: -35px;
    width: 0;
    border-top: 70px solid #64c6cf;
    border-right: 35px solid transparent;
    -moz-transform: scale(.9999);
}
a.see-more:hover .arrow2 {
    border-top: 70px solid #1b0b55;
}
a.see-more .arrow3 {
    position: absolute;
    top: 0;
    left: -35px;
    width: 0;
    border-top: 35px solid #64c6cf;
    border-left: 35px solid transparent;
    -moz-transform: scale(.9999);
}
@media (max-width: 979px) {
    a.see-more {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    a.see-more {
        display: none;
    }
}
.tp-caption.title {
    position: absolute;
    color: #fff;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
}
.tp-caption.text {
    background-color: #08519e;
    padding: 25px 50px 25px 25px;
}
/* Testimonial Slider */

#client-testimonial-double {
    margin-top: 30px;
}
#client-testimonial-double .headline {
    margin: 0 0 7px 0;
    background-color: #71d9e2;
}
#client-testimonial-double .news-heading h4{
    font-size:20px;
    color:#000;
    padding:10px;
    font-weight:500;
    background-color: #08519e;
    border-bottom: 7px solid #fff;
}
#client-testimonial-double .news-heading img {
    position:relative !important;
    width:100%;
}
#client-testimonial-double .news-heading img:hover {
    transform: scale(1);
}
#client-testimonial-double .headline h6, #client-testimonial-double .headline h3 {
    color: #fff;
}
#client-testimonial-double .sub-headline {
    margin-bottom: 8px;
    border-bottom: 1px solid #e0e2e3;
}
#client-testimonial-double .sub-headline h3 {
    padding-top: 5px;
    margin-bottom: 10px;
}
#client-testimonial-double #pager {
    background-color: #08519e;
    margin-bottom: 0;
    margin-top: 0;
    padding: 20px 0 10px;
    text-align: center;
    z-index: 999;
}
.news-heading > a{
    text-decoration: none;
}
.news-heading > a > p {
    margin: 0 !important;
    color: #000;
    padding: 0 10px 5px;
}
.news-heading >a > h5{
    font-size:13px;
    color:#000;
    font-weight:600;
    padding:5px 10px 10px;
    line-height:16px;	
}
#client-testimonial-double #pager .bx-pager-item {
    display: inline-block;
}
#client-testimonial-double #pager .bx-pager-item a.bx-pager-link {
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 5px;
    text-indent: -9999px;
}
#client-testimonial-double #pager .bx-pager-item a.bx-pager-link.active {
    background-color: #fff;
}
#client-testimonial-double #pager .bx-pager-item:last-child {
    margin-right: 0;
}
/* Blog Post Summary */

.blog-post-summary {
    margin: 45px 0;
}
.blog-post-summary .buttons {
    width: 50px;
    padding: 10px 0;
    text-align: center;
}
.blog-post-summary .buttons:hover {
    background-color: #1b0b55;
    cursor: pointer;
}
.blog-post-summary p {
    margin-bottom: 0;
}
.blog-post-summary p.mute {
    margin-bottom: 10px;
}
.blog-post-thumb {
    float: left;
    margin-right: 15px;
}
/* #Index-2
   ========================================================================== */	

/* Slider-2 */

#carousel .bx-pager-item a.bx-pager-link.active {
    background-color: #73dee8;
}
/* Slider-3 */

#client-testimonial-single {
    padding: 15px 0 0 10px;
    border-left: 3px solid #1b0b55;
    margin: 30px 0;
}
#client-testimonial-single blockquote {
    float: left;
    width: 620px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 0 0 45px;
    margin-right: 15px;
    background: url(../images/bg-blockquote.png) no-repeat top left;
}
#client-testimonial-single blockquote p {
    font-style: normal;
}
#client-testimonial-single blockquote p.author {
    text-align: right;
    color: #afafaf;
    padding-right: 20px;
}
#client-testimonial-single blockquote p.author span:before {
    content: none;
}
#client-testimonial-single blockquote p.author span {
    display: inline-block;
    color: #73dee8;
}
#client-testimonial-single img {
    float: left;
}
#client-testimonial-single .headline {
    float: left;
    width: 140px;
    padding: 52px 0 53px 0;
    margin: 0;
    background-color: #1b0b55;
}
#client-testimonial-single .headline img {
    position: relative;
    float: none;
    margin: 0 auto;
}
#client-testimonial-single .bx-pager {
    bottom: 20px;
    left: 30px;
    width: auto;
}
#client-testimonial-single .bx-pager-item a.bx-pager-link {
    width: 7px;
    height: 7px;
    margin-left: 2px;
    background-color: #afafaf;
}
#client-testimonial-single .bx-pager-item a.bx-pager-link.active {
    background-color: #73dee8;
}
/* #Index-3
   ========================================================================== */	

/* Parallax */

.parallax .headline h6, .parallax .headline h3 {
    color: #fff;
}
/* #Index-3
   ========================================================================== */	

.logo {
    margin-bottom: 0;
    list-style: none;
    text-align: center;
}
.logo li {
    float: left;
    margin-left: 20px;
}
.logo li:first-child {
    margin-left: 0;
}
/* #Index-4
   ========================================================================== */	

/* Blog-post-overview */

.blog-post-overview {
    position: relative;
    padding-bottom: 20px;
    margin: 0px 0 20px 0;
    background-color: #eeeeee;
}
.blog-post-preview {
    position: relative;
    overflow: hidden
}
.blog-post-preview > img {
    display: block;
    /*width: 100%;*/
    margin-bottom: 20px;
}
.blog-post-overview h4 {
    margin: 0 0 10px 20px;
}
.blog-post-overview h4 img {
    margin-right: 10px;
    vertical-align: sub;
}
.blog-post-overview a {
    color: #555;
}
.blog-post-overview > a {
    display: block;
    text-align: right;
    margin: 10px 20px 0 0;
}
.blog-post-overview p {
    margin: 0 20px;
}
.blog-post-overview a img {
    vertical-align: middle;
}
.blog-post-hover {
    position:absolute;
    top: 40px;
    right: 40px;
    bottom: 40px;
    left: 40px;
    padding: 55px 0 45px 0;
    background-color: rgba(113, 217, 226, 0.8);
    opacity: 0;
    color: #fff;
    text-align: center;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.blog-post-hover img {
    margin: 0 3px 15px 3px;
}
.blog-post-overview:hover .blog-post-hover {
    opacity: 1;
}
/* #About
   ========================================================================== */

.about-us-row {
}
.about-us {
    float: left;
    width: 165px;
    margin: 5px 5px 0 0;
    cursor: pointer;
    background-color: #71d9e2;
}
.about-us img {
    display: block;
}
.about-us h2 a {
    display: block;
    height: 154px;
    line-height: 154px;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.about-us a {
    color: #fff;
}
.about-us p {
    padding: 52px 0;
    margin: 0;
    background-color: #dddddd;
    color: #fff;
    text-align: center;
}
.about-us i {
    font-size: 60px;
}
.about-us a:hover {
    color: #fff;
    text-decoration: none;
}
.about-us.alt {
    width: 430px;
    margin: 0;
    margin-top: 5px;
    background-color: #1b0b55;
}
.about-us.alt-3 {
    width: 430px;
    margin-right: 5px;
}
.about-us.alt-4 {
    margin-right: 0;
}
.about-us.alt-4 a {
    color: #71d9e2;
}
/* Team member */

.team-member-preview {
    position: relative;
}
.team-member-preview > img {
    width: 100%;
    display: block;
    margin-bottom: 25px;
}
.team-member h5 {
    margin-bottom: 0;
    color: #000;
    text-align: center;
}
.team-member p.mute {
    margin-bottom: 15px;
    font-size: 10px;
    text-align: center;
}
.team-member-hover {
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    padding: 5px 0;
    background-color: #71d9e2;
    opacity: 0;
    text-align: center;
    -webkit-transition: opacity 1s, bottom 1s;
    -o-transition: opacity 1s, bottom 1s;
    transition: opacity 1s, bottom 1s;
}
.team-member-preview:hover .team-member-hover {
    bottom: 0;
    opacity: 1;
}
.client-box {
    padding: 45px 0;
    background-color: #efefef;
}
/* #Testimonials
   ========================================================================== */

.callout-box-3 .testimonial-3 {
    position: relative;
    padding: 17px 55px 0 55px;
    margin-top: 0;
    background-color: #59c8d3;
}
.callout-box-3 .testimonial-3 blockquote {
    background: url(../images/bg-blockquote-3.png) no-repeat top left;
}
.callout-box-3 .testimonial-3 blockquote h3 {
    color: #fff;
    line-height: 25px;
    font-style: italic;
    text-align: center;
}
.callout-box-3 .testimonial-3 blockquote h4 {
    margin: 15px 10px 5px 0;
    color: #fff;
    font-style: normal;
    text-align: right;
}
.callout-box-3 .testimonial-3 .arrow {
    position: absolute;
    top: 48%;
    left: -10px;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 12px solid #59c8d3;
    border-bottom: 7px solid transparent;
    -moz-transform: scale(.9999);
}
/* #Price table
   ========================================================================== */

#graph {
    width: 100%;
    max-width: 580px;
    height: 250px;
    margin: 20px auto 40px;
}
pre {
    overflow: auto;
    height: 250px;
}
/* #Services
   ========================================================================== */

.services-details {
    padding-bottom: 10px;
    margin-left: -20px;
    background-color: #71d9e2;
}
.services-details h2 {
    padding: 15px;
    margin: 0;
    background-color: #59c8d3;
    font-size: 20px;
}
.services-details h2 a {
    color: #fff;
}
.services-details p {
    margin: 20px 20px 20px 15px;
    color: #fff;
}
.services-details > a {
    display: block;
    margin: 20px 20px 0 0;
    color: #fff;
    text-align: right;
}
.services-details a img {
    vertical-align: middle;
}
/* #Portfolio
   ========================================================================== */

/* Portfolio Filter */

.portfolio-filter {
    padding: 40px 0;
}
.portfolio-filter h1 {
    color: #fff;
}
.portfolio-filter ul {
    margin-bottom: 0;
    list-style: none;
}
.portfolio-filter ul li {
    display: inline-block;
    margin: 0 15px;
}
.portfolio-filter ul li:first-child {
    margin-left: 0;
}
.portfolio-filter ul li a.active {
    border-bottom: 1px solid #fff;
}
.portfolio-filter ul li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
.portfolio-filter ul li a:hover {
    border-bottom: 1px solid #fff;
}
.portfolio-filter.alt ul {
    float: right;
    margin-top: 10px;
}
.portfolio-filter.alt ul li a {
    color: #0c9aa7;
}
.portfolio-filter.alt ul li a.active {
    border-bottom: 1px solid #0c9aa7;
}
.portfolio-filter.alt ul li a:hover {
    color: #71d9e2;
}
/* Portfolio Itemw */

.portfolio-items {
    list-style: none;
}
.portfolio-items li {
    float: left;
    width: 20%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.portfolio-items.alt {
    overflow: visible;
}
.portfolio-items.video li {
    width: 33.33%;
}

.portfolio-items.alt li {
    width: 25%;
}
.portfolio-items li .portfolio-item, .portfolio-items li .portfolio-item-preview {
    margin-bottom: 0;
}
.portfolio-items li .portfolio-item-preview {
    display: block;
    min-height: 220px;
    background: url(../images/no_photo.jpg) no-repeat center center;
}
.portfolio-items.video li .portfolio-item-preview {
    display: block;
    min-height: 200px;
    background-size: 100% !important;
}
.portfolio-item {
    position: relative;
    margin-bottom: 30px;
}
.portfolio-item-preview {
    position: relative;
    margin-bottom: 20px;
}
.portfolio-item-preview > a img {
    display: block;
    width: 100%;
    -webkit-transition: -webkit-transform 0.5s;
    -ms-transition: -ms-transform 0.5s;
    -o-transition: -o-transform 0.5s;
    transition: transform 0.5s;
}
.portfolio-item-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
    background-color: rgba(113, 217, 226, 0.5);
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.5s;
    -ms-transition: -ms-transform 0.5s;
    -o-transition: -o-transform 0.5s;
    transition: transform 0.5s;
}
.portfolio-item-overlay-actions {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: -20px;
    text-align: center;
}
.portfolio-item-description {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 5px 15px;
    background-color: #71d9e2;
}
.portfolio-item-description h5 i {
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: #fff;
}
.portfolio-item-description a {
    color: #fff;
}
.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.portfolio-item:hover .portfolio-item-preview > a img {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
/* Portfolio Pagination */

.pagination {
    padding: 0;
    margin: 25px 0 25px 0;
    background: #fff url(../images/bg-single-dotted.png) repeat-x center left;
}
.pagination ul {
    float: right;
    padding-left: 30px;
    margin-bottom: 0;
    background-color: #fff;
    list-style: none;
}
.pagination ul li {
    display: inline-block;
}
.pagination ul li a {
    border: 1px solid #94857d;
    width: 24px;
    height: 24px;
    display: inline-block;
    border-radius: 50%;
    color: #94857d;
    font-size: 15px;
    text-align: center;
}
.pagination ul li a:hover, .pagination ul li.current a {
    border-color: #71d9e2;
    background-color: #71d9e2;
    color: #fff;
    text-decoration: none;
}
/* #Portfolio-1-col
   ========================================================================== */

.portfolio {
    position: relative;
    margin: 10px 0 40px 0;
}
.portfolio .portfolio-details {
    position:relative;
    float: left;
    width: 320px;
    padding-bottom: 15px;
    background-color: #f4f4f4;
    color: #2b2b2b;
}
.portfolio .portfolio-details h3 {
    padding: 10px 20px;
    background-color: #d4d4d4;
}
.portfolio .portfolio-details a {
    color: #2b2b2b;
}
.portfolio .portfolio-details p {
    margin: 10px 20px;
}
.portfolio .portfolio-details > a {
    display: block;
    padding-right: 15px;
    margin: 62px 20px 0 0;
    background: url(../images/icons/icon-arrow-6.png) no-repeat center right;
    text-align: right;
}
.portfolio .portfolio-details .arrow {
    position: absolute;
    top: 45%;
    right: -15px;
    height: 0;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #f4f4f4;
    -moz-transform:scale(.9999);
}
.portfolio > img {
    display: block;
    float: left;
}
.portfolio:hover .portfolio-details {
    background-color: #71d9e2;
    color: #fff;
}
.portfolio:hover .portfolio-details a {
    color: #fff;
}
.portfolio:hover .portfolio-details > a {
    background: url(../images/icons/icon-arrow-8.png) no-repeat center right;
}
.portfolio:hover .portfolio-details h3 {
    background-color: #4dcad5;
}
.portfolio:hover .portfolio-details .arrow {
    border-left-color: #71d9e2;
}
.portfolio-hover-controls {
    position: absolute;
    top: 0;
    right: 0;
    left: 320px;
    opacity: 0;
    text-align: center;
    -webkit-transition:opacity 0.7s, top 0.7s;
    -o-transition:opacity 0.7s, top 0.7s;
    transition:opacity 0.7s, top 0.7s;
}
.portfolio-hover-controls a {
    display: inline-block;
    padding: 10px;
    margin-right: 10px;
    background-color: #71d9e2;
}
.portfolio-hover-controls a:hover {
    background-color: #1b0b55;
}
.portfolio-hover-controls img {
    display: block;
}
.portfolio:hover .portfolio-hover-controls {
    top: 90px;
    opacity: 1;
}
/* #Portfolio-1-col-alt
   ========================================================================== */

.portfolio-2 .portfolio-details {
    float: left;
    width: 320px;
    padding-bottom: 30px;
    margin-bottom: 10px;
}
.portfolio-2 > img {
    float: left;
}
.portfolio-2 .portfolio-details .title {
    position: relative;
    padding: 10px 0 20px 0;
    margin-bottom: 25px;
}
.portfolio-2 .portfolio-details a {
    color: #fff;
}
.portfolio-2 .portfolio-details > a {
    display: block;
    margin: 72px 20px 0 0;
    text-align: right;
}
.portfolio-2 .portfolio-details > a img {
    vertical-align: middle;
}
.portfolio-2 .portfolio-details .title h3 {
    padding: 0 20px;
    margin-bottom: 0;
}
.portfolio-2 .portfolio-details .title p {
    margin: 0 20px;
    color: #fff;
}
.portfolio-2 .portfolio-details .title .arrow {
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: -15px;
    height: 0;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #59c8d2;
    -moz-transform: scale(.9999);
}
.portfolio-2 .portfolio-details .title .arrow-2 {
    position: absolute;
    top: 50%;
    margin-top: -7px;
    left: -15px;
    height: 0;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #71d9e2;
    -moz-transform:scale(.9999);
}
.portfolio-2 .portfolio-details p {
    margin: 10px 20px;
    color: #fff;
}
.portfolio-2 .portfolio-hover-controls.alt {
    right: 320px;
    left: 0;
}
.portfolio-2:hover .portfolio-hover-controls {
    top: 150px;
    opacity: 1;
}
/* #Portfolio-inner
   ========================================================================== */

#portfolio {
    margin: 0 5px 15px 0;
    overflow: hidden;
    max-width: 700px;
    max-height: 295px
}
#portfolio ul li {
    overflow: hidden;
    list-style: none;
    width: 700px;
}
#portfolio .bx-wrapper {
    float: left;
    width: 700px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 4px;
    overflow: hidden;
}
#portfolio .slidetext {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: auto;
    padding: 10px 20px;
}
#portfolio .slidetext h3 {
    margin-bottom: 0;
}
#portfolio .bx-controls-direction a {
    top: auto;
    bottom: 10px;
    width: 33px;
    height: 33px;
}
#portfolio .bx-prev {
    left: auto;
    right: 70px;
    background: url(../js/bxslider/images/arrow-left.png) no-repeat top left;
}
#portfolio .bx-next {
    background: url(../js/bxslider/images/arrow-right.png) no-repeat top left;
}
#portfolio .portfolio-item, #portfolio .portfolio-item-preview {
    float: left;
    margin-bottom: 2px;
}
address span {
    color: #a4a4a4;
}
address strong {
    display: inline-block;
    margin: 0 5px 5px 0;
    font-size: 13px;
    font-weight: normal;
}
/* #Blog
   ========================================================================== */

/* Blog Post */

.blog-post {
}
.blog-post-thumb {
    max-width: 100%;
}
.blog-post-info {
}
.blog-post-readmore {
}
#comment-form {
}
/* Blog Post Comment */

.blog-post-comment {
    margin: 15px 0 50px 0;
}
.blog-post-comment img {
    float: left;
    margin-right: 15px;
}
.blog-post-comment .who {
    padding-top: 2px;
    margin-bottom: 10px;
    font-size: 10px;
}
.blog-post-comment > p {
    margin-left: 70px;
}
.blog-post-comment .who p, .blog-post-comment .who a {
    margin-bottom: 0;
    color: #555;
    line-height: 14px;
}
.blog-post-comment .who p a {
    font-size: 13px;
    font-weight: 600;
}
.blog-post-overview-2 {
    padding-top: 15px;
    margin: 15px 0 20px 0;
    background-color: #eeeeee;
}
.blog-post-overview-2 > p {
    margin: 0 25px;
}
.blog-post-overview-2 > img {
    display: block;
    width: 100%;
    margin-top: 45px;
}
.blog-post-overview-2 a {
    color: #9f9f9f;
}
.blog-post-overview-2 > a {
    display: block;
    margin: 25px 20px 0 0;
    text-align: right;
}
.blog-post-overview-2.alt {
    background-color: #71d9e2;
}
.blog-post-overview-2.alt-2 {
    background-color: #16a7b4;
}
.blog-post-overview-2.alt p, .blog-post-overview-2.alt a, .blog-post-overview-2.alt-2 p, .blog-post-overview-2.alt-2 a {
    color: #fff;
}

.blog-post-title {
    margin: 0 15px 15px 15px;
    color: #9f9f9f;
}
.csr_post_overview .blog-post-title{min-height: 45px;}

.blog-post-title img {
    float: left;
    margin-right: 10px;
}
.blog-post-title h3 {
    padding-top: 5px;
    margin-bottom: 0;
    line-height: 20px;
}
.blog-post-title p {
    font-size: 10px;
}
.blog-post-title i {
    font-size: 12px;
}
.blog-post-readmore {
    position: relative;
    float: left;
    width: 90px;
    padding: 25px 20px;
    background-color: #e2e2e2;
}
.blog-post-readmore:hover, .blog-post-overview-2.alt .blog-post-readmore:hover, .blog-post-overview-2.alt-2 .blog-post-readmore:hover {
    background-color: #1b0b55;
    cursor: pointer;
}
.blog-post-readmore img {
    vertical-align: middle;
}
.blog-post-readmore .arrow {
    position: absolute;
    top: 30px;
    right: -10px;
    height: 0;
    border-right: 10px solid transparent;
    border-top: 10px solid #e2e2e2;
    -moz-transform:scale(.9999);
}
.blog-post-readmore:hover .arrow, .blog-post-overview-2.alt .blog-post-readmore:hover .arrow, .blog-post-overview-2.alt-2 .blog-post-readmore:hover .arrow {
    border-top-color: #1b0b55;
}
.blog-post-readmore a:hover {
    text-decoration: none;
}
.blog-post-overview-2.alt .blog-post-readmore {
    background-color: #59c8d2;
}
.blog-post-overview-2.alt .blog-post-readmore .arrow {
    border-top-color: #59c8d2;
}
.blog-post-overview-2.alt-2 .blog-post-readmore {
    background-color: #0c9aa7;
}
.blog-post-overview-2.alt-2 .blog-post-readmore .arrow {
    border-top-color: #0c9aa7;
}
.search-box {
    padding: 15px 15px 30px 15px;
    margin: 15px 0 10px 0;
    background-color: #71d9e2;
}
.search-box .headline {
    margin-top: 0;
    margin-bottom: 15px;
}
.search-box .headline h6, .search-box .headline h3 {
    color: #fff;
}
.search-box input[type="text"] {
    margin-left:-15px;
}
/* #Blog-inner
   ========================================================================== */

.social-media.alt-2:before {
    float: left;
    margin-right: 10px;
    font-size: 14px;
    color: #a3a3a3;
    content: "Share";
}
.social-media.alt-2 {
    float: right;/*margin-top: 35px;*/
}
.social-media.alt-2 a {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #a3a3a3;
    border-radius: 50%;
    color: #a3a3a3;
}
.social-media.alt-2 a i {
    color: #a3a3a3;
    font-size: 14px;
    line-height: 20px;
}
/* #Contact
   ========================================================================== */

/* Contact Form */

#contact-form {
    overflow: hidden;
}
#contact-form fieldset {
    margin: 0;
}
label.validation-error {
    color: #b55454;
}
input.validation-error, textarea.validation-error, select.validation-error {
    border :1px solid #e1a1a1;
}
#contact-form #formstatus {
}
#comment-form textarea, #contact-form textarea {
    height: 115px;
    border: none;
    border-radius: 0;
    background-color: #e5e5e5;
    font-family: 'BookAntiqua', 'Open Sans', Arial, sans-serif;
    font-size: 12px;
    resize: none;
}
#comment-form input[type="checkbox"], #comment-form label {
    display: inline-block;
    border: none;
}
#contact-form input[type="text"], #comment-form input[type="text"] {
    border: none;
    border-radius: 0;
    background-color: #e5e5e5;
    font-family: 'BookAntiqua', 'Open Sans', Arial, sans-serif;
    font-size: 12px;
}
#comment-form input[type="submit"] {
    border: none;
    border-radius: 0;
    background-color: #71d9e2;
    color: #fff;
    font-size: 15px;
    padding: 6px 15px;
}
#contact-form input[type="submit"] {
    float: right;
    border: none;
    border-radius: 0;
    background-color: #71d9e2;
    color: #fff;
}
#contact-form input[type="submit"]:hover, #comment-form input[type="submit"]:hover {
    background-color: #1b0b55;
}
.social {
    float: left;
    width: 170px;
    margin: 0 10px 0 0;
}
.facebook {
    padding: 32px 10px 21px 10px;
    margin-bottom: 10px;
    background-color: #1b0b55;
    text-align: center;
    cursor:pointer;
}
.facebook a {
    color: #fff;
}
.facebook h3 {
    margin-top: 10px;
}
.twitter {
    padding: 32px 10px 21px 10px;
    background-color: #71d9e2;
    text-align: center;
    cursor:pointer;
}
.twitter a {
    color: #fff;
}
.twitter h3 {
    margin-top: 10px;
}
.contact {
    list-style: none;
}
.contact li {
    padding-left: 30px;
    margin-top: 10px;
}
.contact li.email {
    background: url(../images/bg-email-2.png) no-repeat left 8px;
}
.contact li.address {
    background: url(../images/bg-address-2.png) no-repeat left 6px;
    color:#666
}
.contact li.phone {
    background: url(../images/bg-phone-2.png) no-repeat center left;
}
.contact li.fax {
    background: url(../images/bg-fax-2.png) no-repeat center left;
}

/* ==========================================================================
   #Responsive
   ========================================================================== */

/* #Smaller then 1024px width
   ========================================================================== */

@media (max-width: 1199px) {
    #wrap {
    }
    #header {
    }
    #content {
    }
    #footer {
    }
    .portfolio-items li {
        width: 25%;
    }
}

/* #Smaller then 1024px width
   ========================================================================== */

@media (max-width: 1024px) {
    #wrap {
    }
    #header {
    }
    #content {
    }
    #footer {
    }
    .portfolio-items li {
        width: 33.333%;
    }
}

/* #Tablet (Portrait)
   ========================================================================== */

@media (min-width: 768px) and (max-width: 979px) {
    #wrap {
    }
    #header {
        padding: 0px 0px 35px;
    }
    #logo {
        margin: 0;
    }
    #sf-menu {
        display: none;
    }
    #mobile-menu-trigger {
        display: block;
    }
    #search-input {
        width: 165px;
    }
    #search-submit-btn {
        right: 0;
    }
    #footer input[type="text"] {
        width: 100%;
    }
    #footer input[type="submit"] {
        right: 0;
    }
    #content {
    }
    #footer {
    }
    #footer .dot {
        margin-left: 0;
    }
    address {
        margin-left: 15px;
    }

    /* #Additional
       ========================================================================== */

    .about-me ul.dot.alt {
        margin: 20px 10px 0 20px;
    }

    /* #Index
       ========================================================================== */

    #client-testimonial-double .headline {
        padding: 90px 5px;
    }
    #client-testimonial-double .headline img {
        left: 10px;
    }
    .icon-box-3 > img {
        padding: 15px;
    }
    .icon-box-3 h3 {
        padding-top: 0;
    }
    #client-testimonial-double #pager {
        margin-top: 60px;
    }

    /* #Index-2
       ========================================================================== */

    #client-testimonial-single blockquote {
        width: 385px;
    }

    /* #Index-3
       ========================================================================== */

    .icon-box-4 {
        min-height: 180px;
    }

    /* #Index-4
       ========================================================================== */

    .logo li, .logo li:first-child {
        margin: 10px 0 10px 75px;
    }

    /* #Index-5
       ========================================================================== */

    .icon-box-4.alt > img {
        padding: 10px;
        margin: -20px 5px 20px -10px;
    }
    .icon-box-4.alt h3 + p {
        display: none;
    }
    .icon-box-4.alt .arrow {
        top: 29px;
        left: 17px;
    }
    .blog-post-hover {
        top: 20px;
        right: 20px;
        bottom: 20px;
        left: 20px;
        padding: 25px 0 33px 0;
    }

    /* #About-us
       ========================================================================== */

    .about-us-row {
        margin-bottom: 0;
    }
    .about-us {
        width: 140px;
    }
    .about-us img {
        width: 100%;
    }
    .about-us h2 {
        padding: 0;
        line-height: 17px;
    }
    .about-us.alt {
        width: 270px;
    }
    .about-us p {
        padding: 40px 0;
    }
    .about-us.alt-3 p {
        padding: 0 20px 10px 35px;
    }


    /* #Price table
       ========================================================================== */

    .morris-hover.morris-default-style {
        width: 100px !important;
    }

    /* #Portfolio
       ========================================================================== */		

    .portfolio-items.alt li {
        width: 33.3333333333%;
    }

    /* #Portfolio-1-col
       ========================================================================== */

    .portfolio .portfolio-details {
        width: 300px;
    }
    .portfolio .portfolio-details h3 {
        padding: 4px 20px;
    }
    .portfolio .portfolio-details p {
        margin: 4px 20px;
    }
    .portfolio .portfolio-details > a {
        margin-top: 0;
    }
    .portfolio > img {
        max-width: 400px;
    }
    .portfolio:hover .portfolio-hover-controls {
        top: 40px;
    }
    .portfolio .portfolio-details {
        padding-bottom: 6px;
    }

    /* #Portfolio-1-col
       ========================================================================== */

    .portfolio-2 .portfolio-details {
        width: 300px;
    }
    .portfolio-2 > img {
        max-width: 400px;
    }
    .portfolio-2 .portfolio-details {
        padding-bottom: 18px;
    }
    .portfolio-2 .portfolio-details .title {
        padding: 5px 0;
        margin-bottom: 15px;
    }
    .portfolio-2 .portfolio-details .title p {
        display: none;
    }
    .portfolio-2 .portfolio-details > a {
        margin-top: 0;
    }
    .portfolio-2:hover .portfolio-hover-controls {
        top: 100px;
    }

    /* #Portfolio-inner
       ========================================================================== */	

    #portfolio .portfolio-item, #portfolio .portfolio-item-preview {
        margin: 3px 3px 0 0;
    }

    /* #Contact
       ========================================================================== */		

    .blog-post-readmore {
        width: 77px;
    }

    /* #Contact
       ========================================================================== */

    .map {
        width: 525px;
    }
    .map-footer{
        width:260px;
    }
}

/* #Mobile (Portrait )
   ========================================================================== */

@media (max-width: 767px) {
    body {
        background: none;
        background-color: #fff;
    }
    #wrap {
    }
    #header {
        padding: 0px 0 0 0px;
    }
    .header_wrapper {
        padding-top: 0px;
    }
    #logo {
        margin: 0;
    }
    #content {
    }
    #search-input {
        width: 80%;
    }
    #search-submit-btn {
        right: 20px;
    }
    #footer {
    }
    /* #footer .headline {
        border-bottom: none;
    } */
    #footer .gallery-details {
        margin-bottom: 30px;
    }
    #footer .dot {
        margin-bottom: 30px;
        margin-left: 0;
    }
    #footer .social-media {
        float: none;
        margin-top: 40px;
    }
    #footer input[type="text"] {
        width: 100%;
    }
    #footer input[type="submit"] {
        right: 0px;
    }
    #footer-menu {
        float: none;
        margin: 20px 0;
        text-align: left;
    }
    #footer-menu li {
        margin: 5px 20px 0 0;
    }
    #footer-menu li a {
        padding: 5px 0;
        display: block;
    }
    .gallery-details {
        display: none;
    }
    .row {
        padding: 0 20px;
    }
    .row .row {
        width: auto;
        padding: 0;
        margin: 0;
    }
    #sf-menu {
        display: none;
    }
#mobile-menu-trigger {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 20px;
}
    p.last, h1.last, h2.last, h3.last, h4.last, h5.last, address.last, ul.last, ol.last {
        margin-bottom: 20px;
    }
    .text-right {
        text-align:left;
    }
    #contact-form-2 .float-left {
        float: none;
    }
    #contact-form-2 input[type="text"] {
        margin-bottom: 10px;
    }
    .color-shade-1 .headline {
        padding-top: 20px;
    }
    .color-shade-1 .headline img {
        top: 20px;
    }

    /* #Index
       ========================================================================== */

    .callout-box .check-2 {
        margin-top: 20px;
    }
    .sub-headline {
        margin-top: 20px;
    }
    .portfolio-filter ul li {
        margin: 0 10px;
    }

    /* #Index-2
       ========================================================================== */

    #client-testimonial-single .headline {
        display: none;
    }
    #client-testimonial-single blockquote {
        float: none;
        width: 100%;
    }
    #client-testimonial-single .bx-pager {
        bottom: -40px;
    }

    /* #Index-4
       ========================================================================== */	

    .logo li {
        float: none;
        margin: 15px 0;
    }

    /* #Index-5
       ========================================================================== */	

    .blog-post-hover {
        top: 20px;
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    /* #About-us
       ========================================================================== */		

    .about-us-row {
        margin-bottom: 5px;
    }
    .about-us {
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }
    .about-us img {
        display: block;
        width: 100%;
    }
    .about-us h2, .about-us.alt h3, .about-us.alt-3 h3 {
        padding: 15px 0;
    }
    .about-us.alt, .about-us.alt-3 {
        width: 100%;
    }

    /* #About-me
       ========================================================================== */

    .testimonial blockquote {
        min-height: 0;
    }

    /* #Testimonials
       ========================================================================== */

    .callout-box-3 .testimonial-3 {
        padding: 20px 20px 0 20px;
    }
    .callout-box-3 .testimonial-3 blockquote {
        padding-left: 40px;
    }
    .callout-box-3 .testimonial-3 blockquote h3 {
        text-align: left;
    }
    .callout-box-3 .testimonial-3 .arrow {
        display: none;
    }

    /* #Services
       ========================================================================== */

    .services-details {
        margin-left: 0;
    }

    /* #Portfolio
       ========================================================================== */

    .portfolio-item, .portfolio-item-overlay, .portfolio-item-preview > a img {
        transform: none;
        transition: none;
    }
    .portfolio-filter {
        padding: 10px 0 0 0;
    }
    .portfolio-items li, .portfolio-items.alt li {
        float: none;
        width: 100%;
        padding: 10px;
        display: block;
    }
    .portfolio-items li + li {
        padding-top: 0;
    }

    /* #Portfolio-1-col
       ========================================================================== */

    .portfolio .portfolio-details {
        float: none;
        width: 100%;
    }
    .portfolio .portfolio-details a {
        margin-top: 20px;
    }
    .portfolio .portfolio-details .arrow {
        display: none;
    }
    .portfolio > img {
        width: 100%;
    }
    .portfolio-hover-controls {
        display: none;
    }
    .portfolio:hover .portfolio-hover-controls {
        opacity: 0;
    }

    /* #Portfolio-1-col-alt
       ========================================================================== */

    .portfolio-2 {
        margin: 30px 0;
    }
    .portfolio-2 .portfolio-details {
        float: none;
        width: 100%;
    }
    .portfolio-2 .portfolio-details .title .arrow, .portfolio-2 .portfolio-details .title .arrow-2 {
        display: none;
    }
    .portfolio-2 .portfolio-details > a {
        margin-top: 20px;
    }
    .portfolio-2:hover .portfolio-hover-controls {
        opacity: 0;
    }
    .portfolio-2 >img {
        float: none;
        width: 100%;
    }

    /* #Portfolio-inner
       ========================================================================== */

    #portfolio {
        float: none;
        width: 100%;
    }

    /* #Portfolio-inner
            ========================================================================== */	

    #portfolio .portfolio-item, #portfolio .portfolio-item-preview {
        margin: 3px 3px 0 0;
    }


    /* #Contact
       ========================================================================== */

    .social {
        float: none;
        width: 100%;
        margin: 10px auto;
    }
    .facebook, .twitter {
        width: 100%;
        padding: 30px 0 20px 0;
    }
    .map {
        width: 100%;
    }
    .map-footer{width:100%}
}

/* #Mobile ( Landscape )
========================================================================== */

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .row {
        padding: 0 40px;
    }
    .gallery-details {
        display: block;
    }
    .portfolio-items li, .portfolio-items.alt li {
        float: left;
        width: 50%;
        padding: 0;
    }
}
ul.logo li img {
    width:140px;
    height:105px;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
    .responsive-img {
        height: auto;
        max-width: 70%;
        -webkit-transition: opacity 1s ease-in-out;
        -moz-transition: opacity 1s ease-in-out;
        -o-transition: opacity 1s ease-in-out;
        -ms-transition: opacity 1s ease-in-out;
        transition: opacity 1s ease-in-out;
    }
}
.header_fixed {
    background: #FFF;
    border-bottom: 1px solid #e0e2e3;
    position: fixed;
    transition: all 1s ease 0s;
    width: 100%;
    z-index: 9999;
    box-shadow: 0px 0px 5px #000;
}
.mobile_menu_fixed {
    position: fixed;
    z-index: 2147483647 !important;
    width: 100%;
    margin-top:102px;
}
/*.sister_concern_container {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
    margin: 0px  10px 0px 0px!important;
    padding: 0px !important;
    float:none!important;
    width: 300px;
}*/
.sister_concern_container_title {
    background: none repeat scroll 0 0 rgba(225, 225, 225, 0.95);
    line-height: 16px;
    margin: -6px 0 0px !important;
    padding: 8px 4px!important;
    text-align: center;
    width:292px;
    transition: all 500ms linear 0s;
}
/*.agro_product:hover .sister_concern_container_title {
    transform: scale(1.04);
    transition: all 500ms linear 0s;
}*/
.agro_product:hover img {
    z-index:999;
}
.agro_product {
    margin:0px !important;
}
p.agro_product_details {
    text-align:justify;
}
p.agro_product_details a {
    font-style:italic;
}
.orion_details {
    /*    height: 252px;*/
    overflow: hidden;/*width: 292px;*/
}
.inner_page_title {
    font-weight: 600;
    line-height: 42px !important;
    margin: 0 !important;
    text-transform: uppercase;
}
h3.sub_title {
    color: #555555;
    line-height: 26px;
    margin-bottom: 0;
    margin-left: 60px;
}
.orion_pharma_content {
    margin-bottom:4px!important;
}
h3.no_padding {
    padding: 0px;
}
.low_space {
    margin: 0px;
}
.interior {
    float:left;
}
.conrens_wrapper {
    margin-bottom:20px;
}
.page_under_development {
    box-shadow: 0 0 5px #000 inset;
    color: #71d9e2;
    font-size: 50px;
    padding: 47px;
    text-align: center;
    text-shadow: 1px 2px 2px #000;
}
.header_wrapper {
    background: none repeat scroll 0 0 #fff;
    position: fixed;
    width: 100%;
    height: 90px;
    z-index: 2147483647;
    box-shadow: 0 3px 6px -6px black;
    display: flex;
    align-items: center; /* Optional */
}
.slider_wrapper {
    margin-top: 58px;
}
@media only screen and (min-device-width : 320px) and (max-device-width : 800px) {
    .slider_wrapper {
        margin-top:20px;
    }
}
#mobile-menu {
    margin-top: 90px;
    position: relative;
    width: 100%;
    z-index: 10;
}
@media only screen and (min-device-width : 320px) and (max-device-width : 800px) {
    #content {
        margin-top: 65px;
    }
}
ul.orion_gas_content {
    float:left;
}
ul.orion_gas_content li {
    display:block
}
.photo_gallery_wrapper li {
    border: 1px solid #fff;
    padding: 6px;
    width: 25%;
}
.photo_gallery_wrapper li .portfolio-item {
    border: 1px solid #0c9aa7;
    border-radius: 4px;
    padding: 6px;
}
.photo_gallery_wrapper li .portfolio-item .portfolio-item-preview {
}
.album_title {
    margin:0px;
    text-align:center;
}
.number_ohotos {
    margin:0;
    text-align:center;
    font-size:14px
}
.left_zero {
    margin-left: -5px;
    width: 245px !important;
}
.concern-button {
    position: relative;
    background-color: #03a0da;
    text-align: center;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    float: left;
    width: 50%
}
.concern-button a {
    color: #fff;
    font-size: 14px;
}
.concern-button:hover {
    background-color: #71d9e2;
}
.concern-button.alt {
    background-color: #0393c9;
}
.left_zero .concern-button {
    height: 140px;
    width: 49%;
}
.left_zero .concern-button a {
    display: block;
    font-size: 19px;
    line-height: 25px;
    padding: 45px 0 45px 5px;
    text-align: left;
    text-decoration: none;
}
.left_zero .concern-button:hover {
    background-color: #71d9e2;
}
.left_zero .alt {
    margin-left:4px;
}
.concern_logo {
    width:235px;
    height:145px;
}
.comcern_logo {
    height: 166px;
    margin-left: 4px;
    overflow: hidden;
    text-align: center;
    width: 238px;
}
img.concern_logo {
    height: 159px;
    width: 238px;
}
.center_text {
    padding-top:11px;
}
.colon {
    display:inline-block;
    padding:0px 5px;
}
.small_img {
    text-align:center;
}
.total_grant tr th {
    border:1px solid #efefef;
    text-align:center;
}
.total_grant tr td {
    border:1px solid #efefef;
    text-align:left;
}
.total {
    background:#dbeef3;
}
.inner_page_menu {
    text-align:right
}
.inner_page_menu ul {
    margin:0px;
}
.inner_page_menu ul li {
    display:inline-block;
    vertical-align:top;
    border:1px solid #FFF;
}
.inner_page_menu ul li a {
    text-align:center;
    color:#038bbd !important;
    padding:5px;
    display:block;
    /*background:#038bbd;*/
    text-decoration:none;
    text-align:center;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.inner_page_menu ul li a:hover {
    /*background:#1b0b55;*/
    color:#000;
}
.panbo_mushroom {
    border: 1px solid #0c9aa7;
    border-radius: 5px;
    height: 295px;
    padding: 4px;
    width: 457px;
    /* Webkit for Chrome and Safari */
    -webkit-transform: scale(1, 1);
    // This is the scale for the normal size of the image. -webkit-transition-duration: 500ms;
    -webkit-transition-timing-function: ease-out;
    /* Webkit for Mozila Firefox */
    -moz-transform: scale(1, 1);
    -moz-transition-duration: 500ms;
    -moz-transition-timing-function: ease-out;
    /* Webkit for IE( Version: 11, 10 ) */
    -ms-transform: scale(1, 1);
    -ms-transition-duration: 500ms;
    -ms-transition-timing-function: ease-out;
}
.panbo_mushroom:hover {
    /* Webkit for Chrome and Safari */
    -webkit-transform: scale(1.2, 1.2);
    // This is the enlarged size scale of the image. -webkit-transition-duration: 500ms;
    -webkit-transition-timing-function: ease-out;
    /* Webkit for Mozila Firefox */
    -moz-transform: scale(1.2, 1.2);
    -moz-transition-duration: 500ms;
    -moz-transition-timing-function: ease-out;
    /* Webkit for IE( Version: 11, 10 ) */
    -ms-transform: scale(1.20, 1.20);
    -ms-transition-duration: 500ms;
    -ms-transition-timing-function: ease-out;
    z-index:999;
}
.recipes_title {
    font-weight:600;
}
.mushroom_inner_img {
    width:264px;
    height:155px;
}
.mushroom_img {
    width: 299px;
}
div.recipes_more {
    overflow:hidden;
    margin-bottom:25px;
}
.big-blue {
    height:auto!important;
}
.hide_recipes_tble {
    display:none
}
.see_less, .see_more {
    display:inline-block;
    text-align:right;
    float:right;
    cursor:pointer;
    text-decoration:none;
}
.recipes_bottom {
}
.big-blue .less_more, .big-blue .recipes_bottom, .big-blue .hide_recipes_tble {
    display:block;
}
.big-blue .see_more {
    display:none;
}
.less_more {
    display:none;
}
.mushroom_value_table {
    margin: 0 auto;
    width: 30%;
}
.table_content {
    margin:0px auto;
}
@media all and (min-width: 320px) and (max-width: 640px) {
    .table_content {
        width:100%;
    }
}
#portfolio .slidetext h3 {
    margin-bottom: 0;
    text-transform: uppercase;
}
/*.history li a{
    color:#FFF !important;
    text-decoration:none;
}*/
.news_event li{min-height: 150px}
.news_event li a {
    text-decoration:none;
}
.history_wrapper {
    margin-top:7%;
}
@media all and (min-width: 320px) and (max-width: 640px) {
    .history_wrapper {
        margin-top:18%
    }
}
.short_text {
    margin-top:36px;
}
.space {
    height:50px;
}
.author_name {
    text-align:right;
}
.news_details {
    color:#666;
    line-height: 20px;
}
.news_content_img {
    float: left;
    overflow: hidden;
    margin-right: 25px;
    width: 460px;
}
.archive_date li {
    color:#666
}
.news_share {
    float: left !important;
    margin-left: 20px;
}
.more_nenws {
    margin-bottom: 0 !important;
}
.more_news_wrapper {
    margin-bottom: -1px !important;
    margin-top: 4px !important;
    min-height: 66px;
}
.news_related_img {
    border: 1px solid #ededed;
    border-radius: 4px;
    padding: 2px;
    width:80px;
}
.you_tube {
    display: inline-block;
    height: 24px;
    width: 54px;
    position:relative;
    margin-right:10px;
}
.facebook_logo, .pinterest {
    width:24px;
}
.you_tube img {
    right:0;
    top:0;
    background:none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
}
.img_vedio_container {
    width:619px;
    height:398px;
    overflow:hidden;
}
.more_news_wrapper p {
    line-height:16px;
}
.profile_class {
    margin-left: 10px !important;
}
.first-strip {
    background:#402c24 !important;
    margin:0px !important;
}
.no_margin {
    margin:0px !important;
}
.news_event li:hover {
    background:#eaeaea;
}
.more_news_wrapper a {
    text-decoration:none;
}
.more_news_wrapper:hover {
    background:#eaeaea;
}
.more_news_wrapper p {
    color:#555
}
p.news_details_title {
    font-size: 13px;
    font-weight: 600;
}
.about-us-saying {
    color: #fff;
    height: 165px;
    padding: 10px;
}
.about-us-saying blockquote h3, .about-us-saying blockquote h4 {
    color:#FFF;
    text-align: right;
}
.about-us-saying blockquote h3 {
    font-style: italic;
    line-height: 20px;
    font-size: 16px;
}
.about-us-saying blockquote {
    background: url("../images/bg-blockquote-3.png") no-repeat scroll left top rgba(0, 0, 0, 0);
    padding: 45px 0px 20px 0px;
}
.news_event_img li {
    width:100% !important;
}
.sf-menu li .arrow.alt-8 {
    border-right-color: #0383b2;
}
.conrens_wrapper .icon-box-3 {
    margin:0px;
}
.sub-menu li a {
    text-transform: capitalize !important;
}
.csr_img_container {
    margin:0px;
    padding:0px;
}
.csr_img_container img {
    margin:0px;
    padding:0px;
}
.csr_img_container .magnificPopup-gallery {
    display: inline-block;
    margin-top: 15%;
}
.concern-button-details {
    background-color: #03a0da;
    cursor: pointer;
    display: inline-block;
    margin-right: 5px;
    padding: 20px 0;
    position: relative;
    text-align: center;
    transition: background-color 0.3s ease 0s;
    width: 115px;
}
.concern-button-details:last-child {
    margin:0px;
}
.concern-button-details h4 {
    font-size:15px;
}
.concern-button-details h4 a {
    text-decoration:none;
    color:#FFF;
}
.concern-button-details:hover {
    background-color: #71d9e2;
}
.right_align {
    overflow: hidden;
    margin-left: 0px;
    width:694px;
}
.right_align #portfolio {
    margin: 0px;
}
.right_align #portfolio .bx-wrapper {
    margin-left: 5px !important;
    padding: 0 !important;
}
.csr_img_container .blog-post-hover {
    background:none;
}
.csr_img_container .blog-post-hover a {
    background-color: rgba(113, 217, 226, 0.8);
    display:inline-block;
    padding:15px;
    border-radius:4px;
}
/* ==========================================================================
   #Member Companies slider
   ========================================================================== */
#member-company ul li {
    list-style: none;
    float: left
}
/* ==========================================================================
   Back To top
   ========================================================================== */

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    right: 10px;
    /* image replacement properties */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    /*  background: rgba(232, 98, 86, 0.8) url(_layout/images/bg-phone.png) no-repeat center 50%;*/
    background:url(../images/arrowup.png) no-repeat center center;
    background-color:rgba(0, 0, 0, 0.5);
    visibility: hidden;
    z-index:99;
}
.cd-top.cd-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}
.cd-top.cd-fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
}
.no-touch .cd-top:hover {
    background:url(../images/arrowup_hover.png) no-repeat center center;
    background-color: #5db4ec;
    opacity: 1;
}
@media only screen and (min-width: 768px) {
    .cd-top {
        right: 20px;
        bottom: 20px;
    }
}
@media only screen and (min-width: 1024px) {
    .cd-top {
        height: 40px;
        width: 40px;
        right: 30px;
        bottom: 30px;
    }
}
li.sfHover ul  div.arrow {
    display:none;
}
.icon-box-3 .img_box{overflow: hidden; height: 226px}