/*
Theme Name: Dream
Theme URI: http://vsfish.com/themes/dream/
Description: Dream is fully responsive WordPress theme.
Version: 1.0.18
Author: vsFish
Author URI: http://vsfish.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns,right-sidebar,custom-background,custom-colors,custom-logo,custom-menu,featured-images,sticky-post,theme-options,threaded-comments,translation-ready,blog,news
Text Domain: dream
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# General
# Header
# Navigation
# Content
# Post
# Widget
# Comments
# Navigation
# Search
# Footer
# Slider
# Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

/* html */
html {
  font-family: sans-serif;
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* body */
body {
  background-color: #ffffff;
}
body,
button,
input,
select,
optgroup,
textarea {
  color: #333333;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* links */
a {
  color: #ff8800;
  text-decoration:none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a:hover, a:focus, a:active {
  color: #ff8800;
  text-decoration:none;
}

/* forms */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  background: #ff8800;
  color: #ffffff;
  text-transform:uppercase;
  font-size: 12px;
  line-height: 1.2;
  padding: 10px 12px;
  filter: alpha(opacity=90);
  opacity:0.8;

  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  filter: alpha(opacity=100);
  opacity:1;
}
button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  filter: alpha(opacity=100);
  opacity:1;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  padding: 4px;

  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
  border:1px solid #ff8800;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
select {
  border: 1px solid #ccc;
}
textarea {
  width: 100%;
}

/* h1 - h6 */
h1, h2, h3, h4, h5, h6 {
  clear: both;
  margin:0 0 1em;
}
h1, .h1 { font-size: 29px; }
h2, .h2 { font-size: 26px; }
h3, .h3 { font-size: 23px; }
h4, .h4 { font-size: 20px; }
h5, .h5 { font-size: 17px; }
h6, .h6 { font-size: 14px; text-transform: uppercase; }

/* tags */
p {
  margin:0 0 1em;
}
ul, ol {
  margin:0 0 1em;
}
dfn, cite, em, i {
  font-style: italic;
}
blockquote {
  background-color: #f3f3f3;
  border-left: 4px solid #ff8800;
  font-style: italic;
  margin: 0 0 10px;
  padding: 15px;
  font-size: 14px;
}
blockquote > p:last-child {
  margin: 0;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background-color: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(51, 51, 51, 0.1);
  line-height: 1.2;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  overflow-wrap: break-word;
  padding: 0.8em;
  white-space: pre-wrap;

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
code {
  background-color: #f9f2f4;
  color: #c7254e;

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}
abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark, ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 125%;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 1.5em 0;
  width: 100%;
}
td,
th {
  padding: 0.75em;
  border: 1px solid rgba(51, 51, 51, 0.1);
}
img {
  height: auto;
  max-width: 100%;
}

/* caption */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}

/* posts and pages */
.sticky {
  display: block;
}
.updated:not(.published) {
  display: none;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* comments */
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}

/* alignments */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*  gallery */
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

/* site */
.site{}
@media (min-width: 1200px) {
  .container {
    width: 1030px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

/*site-header*/
.site-header{}
.site-branding{
  padding:25px 15px 20px;
  line-height:0;
  position: relative;
}
.site-branding-logo{
  display:inline-block;
  min-height: 60px;
}

.custom-logo-link{
  line-height:0;
  font-size: 0;
  display:inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.site-title{
  margin:0;
  font-size:30px;
  font-weight:700;
  display:inline-block;
  padding:15px 0 10px;
  text-shadow: 0 0 10px #999999;
  line-height: 35px;
  vertical-align: middle;
}
.site-title a{
  color:#333333;
  display:inline-block;
}
.site-title a:hover,              
.site-title a:focus,
.site-title a:active{
  color:#ff8800;
}
.site-description{
  display:inline;
  font-size:12px;
  line-height:1.2;
  padding:15px 0 0;
  margin:0 0 0 15px;
  vertical-align: middle;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

/*main-navigation*/
.main-navigation{
  width: 100%;
  clear: both;
  display:block;
  float:none;
  background:#4d4d4d;
  border-radius: 3px 3px 0 0;
  border-bottom: 15px solid #ff8800;
}

/* menu */
.main-navigation .menu {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation .menu >li{
  float: left;
  position: relative;
}
.main-navigation .menu li:hover > ul,
.main-navigation .menu li.focus > ul {
  left: auto;
}
.main-navigation .menu >li >a{
  display: block;
  line-height:32px;
  padding:0 15px;
  color:#ffffff;
}
.main-navigation .menu >li >a:hover{
  background:#ff8800;
}
.main-navigation .menu >li:first-child >a{
  border-radius:3px 0 0 0;
}
.main-navigation .current_page_item >a{
  background:#ff8800;
}
.mr .menu >li:first-child >a{
  background:#ff8800;
}
.main-navigation .menu >li ul{
  padding: 0;
  margin: 0;
  background:#4d4d4d;
  box-shadow: none;
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}
.main-navigation .menu >li ul li{
  list-style: none;
  padding: 0;
  margin: 0;
  float: left;
  position: relative;
}
.main-navigation .menu >li ul li a{
  display: block;
  border-top:1px solid #5d5d5d;
  color:#ffffff;
  padding:8px 15px;
  width: 200px;
}
.main-navigation .menu >li ul li a:hover{
  background:#ff8800;
}
.main-navigation .menu >li ul ul {
  left: -999em;
  top: 0;
}
.main-navigation .menu >li ul li:hover > ul,
.main-navigation .menu >li ul li.focus > ul {
  left: 100%;
}

/* menu-toggle */
.menu-toggle{
  height: 30px;
  line-height:30px;
  right: 0;
  position: absolute;
  top: 10px;
  width: 30px;
  padding:0;
  margin:0;
  cursor:pointer;
  background:none;
  border:none;
  box-shadow:none;
}
.menu-toggle i{
  color: #333333;
  font-size:26px;
}

/* responsive-nav */
.responsive-nav{
  margin: 0 0 15px;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(125, 125, 125, 0.15);
}
.responsive-nav >li{
  border-top: 1px solid rgba(125, 125, 125, 0.15);
}
.responsive-nav >li a{
  display: block;
  padding: 10px 15px;
}
.responsive-nav >li a:hover{
  background: none;
}
.responsive-nav >li ul{
  list-style: none;
}
.responsive-nav >li ul li{
  border-top: 1px solid rgba(125, 125, 125, 0.15);
}
.responsive-nav >li ul li a{
  display: block;
  padding: 10px 15px;
}
.responsive-nav >li ul li a:hover{
  background: none;
}
.navbar-collapse{
  box-shadow:none;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

/*site-content*/
.site-content{}
.site-content-area{
  background-color: #ffffff;
  padding: 30px 0;
}

/*content-area*/
.content-area{
  padding: 0 5px 0 15px;
}
.error404 .content-area{
  width:100%;
  padding:0 15px;
}
.no-sidebar-full-width .content-area{
  width:100%;
  padding:0 15px;
}

/*--------------------------------------------------------------
# Post
--------------------------------------------------------------*/

/*post*/
.site-main .post,
.site-main .page{
  margin:0 0 30px;
  padding:0 0 30px;
  border-bottom: 3px double #ebeded;
}
.entry-image{
  line-height:0;
  margin:0 0 20px;
}
.entry-image a{
  display:block;
  line-height:0;
}
.entry-info{
  background:#ffffff;
}
.entry-header{}
.entry-title{
  font-size:20px;
  font-weight:700;
  color:#303030;
  line-height:1.2;
  margin:0 0 15px;
  text-shadow: 0 1px 0 #dbdbdb;
}
.entry-title a{
  color:#303030;
}
.entry-title a:hover{
  color:#ff8800;
}
.sticky .entry-title a{
  color:#ff8800;
}
.entry-meta{
  line-height:1.2;
  font-size:12px;
  color:#808080;
  margin:0 0 20px;
}
.entry-meta a{
  color:#808080;
}
.entry-meta a:hover{
  color:#ff8800;
}
.entry-meta >span{
  margin:0 10px 0 0;
}
.entry-meta >span a{
  margin:0 2px 0 0;
}
.entry-meta .comments-link {
    float: right;
    margin: 0;
    text-align: right;
}
.entry-content{}
.entry-content img{
  margin-bottom:5px;
}
.entry-content p:last-of-type{
  margin-bottom:0;
}
.entry-footer{
  padding:20px 0 0;
  line-height:1.2;
  font-size:12px;
  color:#808080;
}
.entry-footer a{
  color:#808080;
}
.entry-footer a:hover{
  color:#ff8800;
}
.entry-footer >span{
  margin:0 10px 0 0;
}
.entry-footer >span a{
  margin:0 2px 0 0;
}
.more-link{
  display:inline-block;
  padding:20px 0 0;
  color:#333333;
  font-size:12px;
  text-transform:uppercase;
  font-weight:700;
}
.not-found{
  min-height:600px;
}

/*--------------------------------------------------------------
# Widget
--------------------------------------------------------------*/

/*widget-area*/
.widget-area{
  padding: 0 15px 0 5px;
}
.widget{
  background:#ffffff;
  margin:0 0 30px;
}
.widget a{
  color:#333333;
}
.widget a:hover{
  color:#ff8800;
}
.widget-title{
  font-weight:700;
  text-transform:uppercase;
  font-size:16px;
  line-height:1.2;
  margin:0 0 13px;
}
.widget >ul{
  list-style:none;
  margin:0;
  padding:0;
}
.widget >ul >li{
  line-height:1.2;
  padding:8px 0;
  border-bottom: 1px solid #f2f2f2;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/

/*comments-area*/
.comments-area{
  margin:0 0 30px;
}
.comments-title{
  font-weight:700;
  text-transform:uppercase;
  font-size:16px;
  line-height:1.2;
  margin:0;
}
.comment-list{
  margin:0;
  padding:0;
  list-style:none;
}
.comment,
.pingback{
  border-top: 1px solid #f2f2f2;
  padding:15px 0 0;
  margin:15px 0 0;
}
.comment-body{}
.comment-author{
  width:40px;
  height:40px;
  float:left;
}
.comment-author img{
  width:40px;
  height:40px;
  border-radius: 3px;
}
.comment-info{
  margin:0 0 0 52px;
}
.comment-meta{
  line-height:1.2;
  margin:0 0 10px;
  position:relative;
  color:#808080;
}
.comment-meta a{
  color:#808080;
}
.comment-meta a:hover{
  color:#ff8800;
}
.comment-meta span{
  margin-right:5px;
}
.comment-meta span:last-of-type{
  margin-right:0;
}
.comment-meta .fn{
  font-weight:700;
  color:#333333;
}
.comment-meta .fn a{
  color:#333333;
}
.comment-meta .fn a:hover{
  color:#ff8800;
}
.comment-meta .comment-metadata{
  font-size:10px;
  text-transform:uppercase;
}
.comment-meta .comment-edit{
  font-size:10px;
  text-transform:uppercase;
}
.comment-meta .reply{
  position:absolute;
  top:0;
  right:0;
}
.comment-meta .reply a{
  font-size:10px;
  text-transform:uppercase;
}
.comment-content{
  font-size:12px;
}
.comment-content p:last-of-type{
  margin-bottom:0;
}
.comment .children{
  list-style:none;
  margin:0 0 0 52px;
  padding:0;
}
.comment .comment-respond{
  margin:0 0 0 52px;
  padding:20px 0;
}
.no-comments{
  padding:30px 0 0;
  margin:0;
  font-weight:700;
}

/*comment-respond*/
.comment-respond{
  margin:0 0 30px;
}
.comment-reply-title{
  font-weight:700;
  text-transform:uppercase;
  font-size:16px;
  line-height:1.2;
  margin:0 0 10px;
  position:relative;
}
.comment-reply-title small{
  position:absolute;
  top:0;
  right:0;
  font-size:10px;
  text-transform:uppercase;
  font-weight:400;
}
.comment-reply-title small a{
  color:#808080;
}
.comment-form{}
.comment-form .logged-in-as{
  margin:0 0 10px;
  line-height:1.2;
  font-size:12px;
}
.comment-form .form_item{
  margin:0 0 8px;
}
.comment-form .form_item span{
  color:#808080;
  font-size:12px;
  line-height:0;
  text-transform:uppercase;
}
.comment-form .form-submit{
  margin:0;
}
.comment #respond{
  margin:0 0 0 56px;
  padding:10px 0 20px;
}
#respond textarea{
  height:100px;
}
#respond input[type="text"]{
  width:50%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

/*posts-navigation*/
.posts-navigation{
  margin: 0 0 30px;
  font-size:12px;
  line-height:1.2;
  text-transform:uppercase;
  font-weight:bold;
  overflow: hidden;
}
.posts-navigation .nav-previous{
  float: left;
  width: 50%;
}
.posts-navigation .nav-next{
  float: right;
  text-align: right;
  width: 50%;
}
.posts-navigation .nav-links{}
.posts-navigation .nav-links .nav-previous a,
.posts-navigation .nav-links .nav-next a{
  display:inline-block;
  padding:15px 20px;
  border: 1px solid #ebeded;
  color:#808080;
}
.posts-navigation .nav-links .nav-previous a:hover,
.posts-navigation .nav-links .nav-next a:hover{
  background:#f8f8f8;
  color:#ff8800;
}

/*post-navigation*/
.post-navigation{
  margin:0 0 30px;
  font-size:12px;
  line-height:1.2;
  overflow: hidden;
}
.post-navigation .nav-previous{
  float: left;
  width: 50%;
}
.post-navigation .nav-next{
  float: right;
  text-align: right;
  width: 50%;
}

/*comment-navigation*/
.comment-navigation{
  padding:30px 0 0;
  font-size:12px;
  line-height:1.2;
  text-transform:uppercase;
}

/*pagination*/
.pagination{
  margin:0 0 30px;
  width: 100%;
}
.pagination .nav-links{
  height:42px;
  line-height:40px;
  text-align:center;
  border: 1px solid #ebeded;
  font-weight:bold;
  position:relative;
}
.pagination .nav-links .fa {
  color:#ffffff;
}
.pagination .nav-links a,
.pagination .nav-links span {
  padding:0 10px;
  display:inline-block;
  height:40px;
}
.pagination .nav-links a {
  color:#555555;
}
.pagination .nav-links a:hover {
  color:#ff8800;
}
.pagination .nav-links .prev {
  width:40px;
  height:40px;
  position:absolute;
  top:0;
  left:0;
  text-align:center;
  font-size:16px;
  background:#cccccc;
}
.pagination .nav-links .prev:hover {
  background:#999999;
}
.pagination .nav-links .next {
  width:40px;
  height:40px;
  position:absolute;
  top:0;
  right:0;
  text-align:center;
  font-size:16px;
  background:#cccccc;
}
.pagination .nav-links .next:hover {
  background:#999999;
}
.pagination .nav-links .current {
  color:#ff8800;
}

/*page-header*/
.page-header{
  padding:15px 20px;
  background:#f2f2f2;
  margin:0 0 30px;
  border-bottom:none;
}
.page-header .page-title{
  text-align:center;
  margin:0;
  line-height:1.2;
  font-size:16px;
  font-weight:700;
}
.page-header .archive-description{
  text-align:center;
  margin:0;
  line-height:1.2;
  font-size:12px;
  color:#808080;
  padding:10px 0 0;
}
.page-header .archive-description p{
  margin:0;
}

/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/

/*search-form*/
.search-form{}
.search-form label{
  display:none;
}
.search-form .search-field{
  height:34px;
  border-radius:3px 0 0 3px;
  padding:6px;
}
.search-form .search-submit{
  width:34px;
  height:34px;
  line-height:34px;
  text-align:center;
  font-size:18px;
  padding:0;
  border-radius:0 3px 3px 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

/*site-footer*/
.site-footer{}
.site-info{
  border-top: 1px solid #ebeded;
  background:#ffffff;
  padding:20px 15px 25px;
  font-size:12px;
}
.site-info a{
  color:#333333;
}
.site-info a:hover{
  color:#ff8800;
}
#back_top  {
  border-radius:3px;
  bottom:20px;
  cursor:pointer;
  height:36px;
  opacity:0.8;
  position:fixed;
  right:20px;
  text-align:center;
  width:36px;
  z-index:100;
  background:#444545;
  color:#ffffff;
}
#back_top i {
  line-height:36px;
  font-size:24px;
  color:#ffffff;
}
#back_top:hover {
  opacity:1;
}

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/

#slider-text-box {
  color: #ffffff;
}
.slider-content {}
#featured-slider {
  position: relative;
}
.slider-text-wrap {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width:90%;
}
.slider-text-wrap span{
  display:block;
}
.slider-text-wrap span a{
  display:inline-block;
}
.wide .slider-text-wrap {
  left: 15%;
}
#slider-title {
  font-size: 16px;
}
#slider-title a {
  color: #FFFFFF;
  padding: 10px;
  line-height: 1.2;
  background: #ff8800;
}
#slider-content {
  background: none repeat scroll 0 0 rgb(255, 255, 255);
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.8);
  padding: 10px;
  display: inline-block;
  max-width: 40%;
  color: #777777;
  line-height:1.2;
  font-size:14px;
}
.slider-wrap {
  position: relative;
}
.owl-pagination {
  bottom: 15px;
  line-height: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 999;
}
.owl-theme .owl-controls{
  margin: 0;
}
.owl-theme .owl-controls .owl-page{
  display: inline-block;
  height: 6px;
  margin: 0 4px;
  overflow: hidden;
  width: 18px;
}
.owl-theme .owl-controls .owl-page span {
  background-color: #ffffff;
  color: #ffffff;
  display: inline-block;
  height: 6px;
  overflow: hidden;
  width: 18px;
  margin: 0;
  filter: alpha(opacity=100);
  opacity: 1;

  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.owl-theme .owl-controls .owl-page:hover span, 
.owl-theme .owl-controls .owl-page:focus span, 
.owl-theme .owl-controls .active span{
  color: #ff8800;
  background-color: #ff8800;
}

/* carousel navigation */
.slider-wrap .owl-buttons {
  z-index: 11;
  display: none;
}
.slider-wrap:hover .owl-buttons{
  display: block;
}
.slider-wrap .owl-buttons .owl-prev{
  position: absolute;
  bottom: 50%;
  left: 0;
}
.slider-wrap .owl-buttons .owl-next{
  position: absolute;
  bottom: 50%;
  right: 0;
}
.slider-wrap .owl-theme .owl-controls .owl-buttons div {
  padding: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #ffffff;
  color: #ff8800;
  margin-bottom: -23px;
  filter: alpha(opacity=80);
  opacity: 0.8;

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.slider-wrap .owl-theme .owl-controls .owl-buttons div:hover {
  filter: alpha(opacity=100);
  opacity: 1;
}
.slider-wrap .owl-theme .owl-controls .owl-buttons div i {
  position: relative;
  top: 1px;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

/*responsive*/
@media screen and (max-width: 1199px){}
@media screen and (max-width: 991px){
  .site-branding-logo{
    width:100%;
    text-align:center;
  }
  .custom-logo-link{
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-right: 0;
  }
  .site-title{
    width: 100%;
  }
  .site-description{
    width: 100%;
  }
  .main-navigation{
    border-bottom: none;
  }
  .site-slider{
    margin-bottom: 15px;
  }
  .site-content-area{
    padding: 15px 0;
  }
  .content-area{
    padding-left:15px;
    padding-right:15px;
  }
  .widget-area{
    padding-left:15px;
    padding-right:15px;
  }
}
@media (max-width: 767px){
  .slider-title {
    font-size: 14px;
  }
  .slider-title a {
    padding: 5px;
  }
  .slider-text-wrap .slider-content {
    display: none;
  }
}