@charset "UTF-8";
body {
  background: #fff;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  color: #1a1a1a;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

h1 {
  font-size: 40px;
  line-height: 40px;
}

h2 {
  font-size: 30px;
  line-height: 30px;
}

h3 {
  font-size: 18px;
  line-height: 18px;
}

h4 {
  font-size: 16px;
  line-height: 16px;
}

h5 {
  font-size: 14px;
  line-height: 14px;
}

h6 {
  font-size: 13px;
  line-height: 13px;
}

p {
  font-size: 14px;
  line-height: 30px;
  color: #707070;
  font-weight: 400;
}

.mfp-wrap,
.mfp-bg {
  z-index: 9999999 !important;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* Site Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
}
.site-header.scrolling {
  background: #25252a;
}
.site-header.scrolling .nav-wrapper .site-branding {
  padding: 10px 15px;
}
.site-header.scrolling .nav-wrapper .site-navigation .main-menu li a {
  padding: 20px 15px 20px;
}
.site-header.scrolling .nav-wrapper .site-navigation .main-menu > li.menu-item-has-children:before {
  top: 23px;
}
.site-header.scrolling .nav-wrapper .extra-nav {
  padding-top: 12px;
}
.site-header .nav-wrapper {
  position: relative;
}
.site-header .nav-wrapper .site-branding {
  transition: padding 0.2s;
  padding: 40px 15px 0;
}
.site-header .nav-wrapper .site-branding a {
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.site-header .nav-wrapper .site-navigation .main-menu {
  position: relative;
  z-index: 999;
  float: right;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: -65px;
}
.site-header .nav-wrapper .site-navigation .main-menu li {
  display: inline-block;
  position: relative;
  margin-left: 4px;
}
.site-header .nav-wrapper .site-navigation .main-menu li ul li {
  background: #2c2c32;
}
.site-header .nav-wrapper .site-navigation .main-menu li a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  padding: 50px 15px 20px;
  background: none;
  box-shadow: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
}
.site-header .nav-wrapper .site-navigation .main-menu li a:hover, .site-header .nav-wrapper .site-navigation .main-menu li a:focus {
  background: none;
  box-shadow: none;
  border: none;
  color: #ff504b;
}
.site-header .nav-wrapper .site-navigation .main-menu li.active a {
  color: #ff504b;
}
.site-header .nav-wrapper .site-navigation .main-menu li.menu-item-has-children {
  margin-right: 6px;
}
.site-header .nav-wrapper .site-navigation .main-menu li.menu-item-has-children::before {
  position: absolute;
  right: 0;
  top: 52px;
  font-size: 9px;
  font-family: "FontAwesome";
  content: "";
  color: #fff;
  transition: all 0.2s ease, top 0.2s;
}
.site-header .nav-wrapper .site-navigation .main-menu li.menu-item-has-children:hover::before {
  color: #ff504b;
}
.site-header .nav-wrapper .site-navigation .main-menu li.menu-item-has-children:hover > a {
  color: #ff504b;
}
.site-header .nav-wrapper .site-navigation .main-menu li.menu-item-has-children:hover > .sub-menu {
  display: block;
}
.site-header .nav-wrapper .site-navigation .main-menu li .sub-menu {
  list-style: none;
  list-style-type: none;
  padding: 0;
  display: none;
  position: absolute;
  top: 100%;
  left: -52%;
  width: 250px;
}
.site-header .nav-wrapper .site-navigation .main-menu li .sub-menu li {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
}
.site-header .nav-wrapper .site-navigation .main-menu li .sub-menu li.menu-item-has-children:before {
  top: 20px;
  content: "";
  padding-right: 15px;
}
.site-header .nav-wrapper .site-navigation .main-menu li .sub-menu li a {
  display: block;
  padding: 15px 10px;
}
.site-header .nav-wrapper .site-navigation .main-menu li .sub-menu li .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #2c2c32;
}
.site-header .nav-wrapper .site-navigation .main-menu li .sub-menu li:hover > .sub-menu {
  display: block;
}
.site-header .nav-wrapper .extra-nav {
  transition: padding 0.2s;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
}
.site-header .nav-wrapper .extra-nav .extra-nav-items {
  float: right;
  padding: 0;
  list-style-type: none;
  list-style: none;
  margin: 0;
  margin-right: -10px;
}
.site-header .nav-wrapper .extra-nav .extra-nav-items li {
  display: inline-block;
  color: #fff;
  margin-left: 5px;
}
.site-header .nav-wrapper .extra-nav .extra-nav-items li i {
  display: block;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  width: 40px;
}
.site-header .nav-wrapper .extra-nav .extra-nav-items li i.nav-toggle {
  display: none;
}
.site-header .nav-wrapper .extra-nav .extra-nav-items li i.toggled::before {
  content: "";
}

.site-header li ul.ul-reversed,
.site-header li .sub-menu ul.ul-reversed {
  left: auto !important;
  right: 100%;
}

.search-header {
  position: absolute;
  bottom: -42px;
  right: -100%;
  width: auto;
  -webkit-transition: right 0.25s ease;
  -moz-transition: right 0.25s ease;
  -ms-transition: right 0.25s ease;
  -o-transition: right 0.25s ease;
  transition: right 0.25s ease;
}
.search-header form {
  position: relative;
}
.search-header label {
  height: auto;
}
.search-header input {
  outline: 0;
}
.search-header input[type=search] {
  border: none;
  box-shadow: none;
  height: 40px;
  width: 250px;
  padding: 0 15px;
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
}
.search-header input[type=submit] {
  border: none;
  box-shadow: none;
  position: absolute;
  right: 0;
  height: 42px;
  padding: 0 15px;
  top: 0;
  background: #ff504b;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}
.search-header input[type=submit]:hover, .search-header input[type=submit]:focus {
  background: #ff3732;
  color: #fff;
  text-decoration: none;
}
.search-header.open {
  right: 15px;
}

@media screen and (max-width: 1200px) {
  .site-header.scrolling .site-navigation .main-menu li a {
    padding: 13px 15px !important;
  }
  .site-header .nav-wrapper .site-branding {
    padding-top: 10px;
  }
  .site-header .nav-wrapper .site-navigation {
    position: absolute;
    border-top: 1px solid #333333;
    top: 57px;
    right: 0;
    background: #25252a;
    width: 100%;
    padding: 0;
    display: none;
    max-height: 375px;
    overflow: auto;
  }
  .site-header .nav-wrapper .site-navigation.open {
    display: block;
  }
  .site-header .nav-wrapper .site-navigation .main-menu {
    float: none;
    padding-top: 0;
    margin-right: 0;
  }
  .site-header .nav-wrapper .site-navigation .main-menu li {
    display: block;
    padding-bottom: 0;
    margin: 0 0 2px;
  }
  .site-header .nav-wrapper .site-navigation .main-menu li a {
    display: block;
    padding: 13px 15px !important;
  }
  .site-header .nav-wrapper .site-navigation .main-menu li.menu-item-has-children::before {
    top: 15px !important;
    right: 25px;
  }
  .site-header .nav-wrapper .site-navigation .main-menu li .sub-menu {
    width: 100%;
    position: static;
    display: block;
  }
  .site-header .nav-wrapper .site-navigation .main-menu li .sub-menu li a {
    padding-left: 25px !important;
  }
  .site-header .nav-wrapper .site-navigation .main-menu li .sub-menu li.menu-item-has-children:before {
    content: "";
  }
  .site-header .nav-wrapper .site-navigation .main-menu li .sub-menu li .sub-menu {
    display: block;
    position: static;
  }
  .site-header .nav-wrapper .site-navigation .main-menu li .sub-menu li .sub-menu a {
    padding-left: 35px !important;
  }
  .site-header .nav-wrapper .extra-nav {
    padding-top: 10px;
  }
  .site-header .nav-wrapper .extra-nav .extra-nav-items {
    margin-right: unset;
  }
  .site-header .nav-wrapper .extra-nav .nav-toggle {
    display: block !important;
  }
}
.admin-bar .site-header {
  top: 46px;
}

@media screen and (min-width: 783px) {
  .admin-bar .site-header {
    top: 32px;
  }
}
/***** Social Icons List *****/
.social-link {
  text-decoration: none !important;
  font-size: 0;
  color: #fff !important;
  display: inline-block;
  background-color: #215a82;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 5px;
  margin-top: 5px;
}

.social-link:hover {
  text-decoration: none;
  color: #fff;
  background-color: #298aff;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social-link:before {
  font-size: 20px;
  font-family: "FontAwesome";
}

.social-link[href*="facebook."]:before {
  content: "";
}

.social-link[href*="twitter."]:before {
  content: "";
}

.social-link[href*="soundcloud."]:before {
  content: "";
}

.social-link[href*="instagram."]:before {
  content: "";
}

.social-link[href*="twitch."]:before {
  content: "";
}

.social-link[href*="youtube."]:before {
  content: "";
}

.social-link[href*="vimeo."]:before {
  content: "";
}

.social-link[href*="odnoklassniki."]:before {
  content: "";
}

.social-link[href*="dribbble."]:before {
  content: "";
}

.social-link[href*="pinterest."]:before {
  content: "";
}

.social-link[href*="linkedin."]:before {
  content: "";
}

.social-link[href*="behance."]:before {
  content: "";
}

.social-link[href*="amazon."]:before {
  content: "";
}

.social-link[href*="apple."]:before {
  content: "";
}

.social-link[href*="google."]:before {
  content: "";
}

.social-link[href*="spotify."]:before {
  content: "";
}

.social-link[href*="tumblr."]:before {
  content: "";
}

/* Fade-move Animation For Instructor Details Lightbox */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* end of fade-move animation for instructor details lightbox */
/* Fade Animation For Image Swiper Gallery */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation: fadeIn 0.6s;
  animation: fadeIn 0.6s;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation: fadeOut 0.8s;
  animation: fadeOut 0.8s;
}

/* Global Widget */
@media screen and (max-width: 768px) {
  .blog-sidebar {
    margin-top: 40px;
  }
}
.widget {
  margin-top: 40px;
  background: #f9f9f9;
  padding: 20px;
}
.widget:first-child {
  margin-top: 0;
}
.widget .widget-title {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 15px;
}
.widget .widget-title a.rsswidget {
  color: inherit;
}
.widget .sep {
  display: block;
  width: 45px;
  height: 2px;
  margin: 0;
  position: relative;
  margin-bottom: 20px;
  border: none;
}
.widget .sep::before, .widget .sep::after {
  position: absolute;
  content: "";
  background: #ff504b;
  height: 2px;
}
.widget .sep::before {
  width: 35px;
  left: 0;
}
.widget .sep::after {
  width: 5px;
  left: 38px;
}
.widget img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: center;
}
.widget select {
  padding: 10px 10px;
  display: block;
  width: 100%;
  height: 42px;
  border: 1px solid #cccccc;
}
.widget ul li:before, .widget ul li:after {
  content: "";
  display: table;
}
.widget ul li::after {
  clear: both;
}

.widget_archive ul,
.widget_recent_comments ul,
.widget_recent_entries ul,
.widget_rss ul,
.widget_categories ul,
.widget_pages ul,
.widget_meta ul,
.widget_nav_menu ul {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

.widget_archive ul a,
.widget_recent_entries ul a,
.widget_categories ul a,
.widget_pages ul a,
.widget_meta ul a,
.widget_nav_menu ul a {
  position: relative;
  display: inline-block;
  padding: 1px 0 1px 0;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  color: #1a1a1a;
}
.widget_archive ul a:hover,
.widget_recent_entries ul a:hover,
.widget_categories ul a:hover,
.widget_pages ul a:hover,
.widget_meta ul a:hover,
.widget_nav_menu ul a:hover {
  text-decoration: none;
}

.widget_archive ul a:hover,
.widget_recent_entries ul a:hover,
.widget_categories ul a:hover,
.widget_pages ul a:hover,
.widget_meta ul a:hover,
.widget_nav_menu ul a:hover {
  color: #ff504b;
}

.widget_archive ul li,
.widget_recent_comments ul li,
.widget_recent_entries ul li a,
.widget_rss ul li,
.widget_categories ul li a,
.widget_pages ul li a,
.widget_meta ul li a,
.widget_nav_menu ul li a {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
}

.widget_archive ul > li:first-child {
  padding-top: 0;
}

.widget_archive ul a,
.widget_categories ul a,
.widget_pages ul a,
.widget_meta ul a,
.widget_nav_menu ul a {
  display: block;
  position: relative;
  font-weight: 500;
}
.widget_archive ul a:before,
.widget_categories ul a:before,
.widget_pages ul a:before,
.widget_meta ul a:before,
.widget_nav_menu ul a:before {
  position: absolute;
  content: "";
  left: -20px;
  top: 50%;
  transform: translate(0, -50%);
  width: 3px;
  height: 0px;
  opacity: 0;
  background: #ff504b;
  transition: all 0.3s;
}
.widget_archive ul a:hover:before,
.widget_categories ul a:hover:before,
.widget_pages ul a:hover:before,
.widget_meta ul a:hover:before,
.widget_nav_menu ul a:hover:before {
  height: 100%;
  opacity: 1;
}

.widget_archive ul a {
  padding: 6px 0;
  margin-bottom: -6px !important;
}

.widget_archive ul li {
  text-align: right;
}
.widget_archive ul li a {
  float: left;
}

.widget_categories ul li a span {
  float: right;
}

.widget_archive > ul > li:last-child a,
.widget_recent_entries > ul > li:last-child a,
.widget_categories > ul > li:last-child a,
.widget_pages > ul > li:last-child a,
.widget_meta > ul > li:last-child a,
.widget_nav_menu > ul > li:last-child a {
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget li a:empty {
  display: none;
}

/* Recent Entries */
.widget_recent_entries li {
  padding: 12px 0 !important;
  border-bottom: 1px solid #cccccc;
}
.widget_recent_entries li:first-child {
  padding-top: 0 !important;
}
.widget_recent_entries li a {
  display: inline-block;
  position: relative;
  padding-left: 19px !important;
  font-weight: 500;
  margin: 0;
}
.widget_recent_entries li a:before {
  font-family: "FontAwesome";
  position: absolute;
  content: "";
  left: 0;
}
.widget_recent_entries li .post-date {
  position: relative;
  display: inline-block;
  color: #666666;
}

/* Recent Comments */
.widget_recent_comments li {
  padding: 12px 0 !important;
  border-bottom: 1px solid #cccccc;
  color: #4d4d4d;
}
.widget_recent_comments li:first-child {
  padding-top: 0 !important;
}
.widget_recent_comments li a {
  color: #1a1a1a;
  transition: all 0.3s ease;
  font-weight: 500;
}
.widget_recent_comments li a:hover {
  color: #ff504b;
  text-decoration: none;
}
.widget_recent_comments li .comment-author-link a {
  position: relative;
  display: inline-block;
  padding-left: 19px !important;
}
.widget_recent_comments li .comment-author-link a:before {
  font-family: "FontAwesome";
  position: absolute;
  content: "";
  left: 0;
  color: #b3b3b3;
}

/* Tags */
.widget_tag_cloud a {
  position: relative;
  display: inline-block;
  font-size: 14px !important;
  margin-right: 2px;
  margin-bottom: 5px;
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  color: #fff;
  background: #ff504b;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.widget_tag_cloud a:hover {
  background: #ff3732;
}

/* Calendar */
.widget_calendar table {
  position: relative;
  width: 100%;
  text-align: center;
  font-weight: 500;
  background: #fff;
}
.widget_calendar table caption {
  background: #ff504b;
  padding: 10px 0;
  color: #fff;
}
.widget_calendar table td {
  padding: 10px 0;
  border: 1px solid #e6e6e6;
}
.widget_calendar table td a {
  color: #ff504b;
}
.widget_calendar table td#today {
  position: relative;
  color: #ff504b;
}
.widget_calendar table td#today:before {
  position: absolute;
  content: "";
  right: 5px;
  border-radius: 50%;
  top: 6px;
  width: 5px;
  height: 5px;
  background: #ff504b;
}
.widget_calendar table thead {
  background: #e6e6e6;
}
.widget_calendar table thead th {
  padding: 5px 0;
}
.widget_calendar table tfoot {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.widget_calendar table tfoot td {
  border: 0;
}
.widget_calendar table tfoot td a {
  color: #fff;
  text-decoration: none;
}
.widget_calendar table tfoot #prev {
  position: absolute;
  left: 10px;
}
.widget_calendar table tfoot #next {
  position: absolute;
  right: 10px;
}
.widget_calendar table tfoot .pad {
  display: none;
}

/* Search */
.widget_search label {
  display: block;
  float: left;
  width: 70%;
  height: 50px;
}
.widget_search label input {
  width: 100%;
  height: 100%;
  color: #1a1a1a;
  border: 0;
  outline: 0;
  padding: 0 15px;
  border: 1px solid transparent;
  transition: all 0.3s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.widget_search label input:hover, .widget_search label input:focus {
  border-color: #ff504b;
}
.widget_search form:before, .widget_search form:after {
  content: "";
  display: table;
}
.widget_search form:after {
  clear: both;
}
.widget_search input[type=submit] {
  float: left;
  width: 30%;
  padding: 0;
  border: none;
  outline: 0;
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 700;
  background: #ff504b;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.widget_search input[type=submit]:hover, .widget_search input[type=submit]:focus {
  background: #ff3732;
  color: #fff;
  text-decoration: none;
}

/* Rss */
.widget_rss .rss-widget-icon {
  display: none;
}
.widget_rss li {
  padding-bottom: 20px !important;
  margin-bottom: 14px;
  border-bottom: 1px solid #cccccc;
}
.widget_rss li:last-child {
  margin-bottom: 0;
}
.widget_rss li > .rsswidget {
  display: inline-block;
  font-size: 16px;
  margin-bottom: 3px;
  color: #1a1a1a;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.widget_rss li > .rsswidget:hover {
  color: #ff504b;
}
.widget_rss li .rss-date {
  font-size: 14px;
  display: block;
}
.widget_rss li .rssSummary {
  margin-top: 8px;
}
.widget_rss cite {
  display: inline-block;
  padding-top: 10px;
  font-size: 14px;
}

/* Social Networks */
.widget_social_networks {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_social_networks li {
  display: inline-block;
  padding: 0 2px;
}
.widget_social_networks li a {
  display: inline-block;
  width: 40px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  background: #25252a;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.widget_social_networks li a:before {
  font-size: 22px;
}
.widget_social_networks li a:hover, .widget_social_networks li a:focus {
  background: #ff504b;
  color: #ffffff;
}

/* Footer Widgets */
.footer-widgets .widget {
  background: none;
  padding: 0 0;
}
.footer-widgets .widget .widget-title {
  color: #fff;
}
.footer-widgets .widget:first-child {
  margin-bottom: 30px;
}
.footer-widgets .widget li {
  color: #fff;
}
.footer-widgets .social_networks {
  padding: 0 !important;
}
.footer-widgets .social_networks li a {
  background: #45454A;
}
.footer-widgets .social_networks li a:hover, .footer-widgets .social_networks li a:focus {
  background: #ff504b;
}
.footer-widgets .widget_archive ul a,
.footer-widgets .widget_recent_entries ul a,
.footer-widgets .widget_categories ul a,
.footer-widgets .widget_pages ul a,
.footer-widgets .widget_meta ul a,
.footer-widgets .widget_nav_menu ul a {
  color: #fff;
}
.footer-widgets .widget_archive ul a:hover,
.footer-widgets .widget_recent_entries ul a:hover,
.footer-widgets .widget_categories ul a:hover,
.footer-widgets .widget_pages ul a:hover,
.footer-widgets .widget_meta ul a:hover,
.footer-widgets .widget_nav_menu ul a:hover {
  color: #ff504b;
}
.footer-widgets .widget_calendar table {
  background: #fff;
}
.footer-widgets .widget_recent_comments li {
  color: #cccccc;
}
.footer-widgets .widget_recent_comments li a {
  color: #fff;
}
.footer-widgets .widget_recent_comments li a:hover {
  color: #ff504b;
}
.footer-widgets .widget_recent_comments .comment-author-link a:before {
  color: #fff;
}
.footer-widgets .widget_rss li > .rsswidget {
  color: #fff;
}
.footer-widgets .widget_rss li > .rsswidget:hover {
  color: #ff504b;
}
.footer-widgets .widget_text {
  color: #fff;
}
.footer-widgets .widget_text p {
  color: inherit;
}
.footer-widgets .widget_text select {
  color: #1a1a1a;
}
.footer-widgets .widget_pages ul li a:before,
.footer-widgets .widget_categories ul li a:before,
.footer-widgets .widget_archive ul li a:before,
.footer-widgets .widget_meta ul li a:before,
.footer-widgets .widget_nav_menu ul li a:before {
  display: none;
}

/* Aligment */
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.img-responsive {
  display: block;
  width: 100%;
  height: auto;
}

/* Miscellaneous  */
.overlay-section {
  position: relative;
  display: block;
  width: 100%;
  background: rgba(26, 26, 26, 0.7);
}
.overlay-section.high-op {
  background: rgba(26, 26, 26, 0.85);
}
.overlay-section.med-op {
  background: rgba(26, 26, 26, 0.8);
}

.vc_row-overlay {
  position: relative;
}
.vc_row-overlay .kb-inner-wrapper {
  position: relative;
  z-index: 99;
}
.vc_row-overlay .overlay-mask {
  display: block !important;
  position: absolute !important;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}

/* Page Header */
.page-header {
  background-size: cover;
  background-attachment: fixed;
  background-postion: center center;
  text-align: center;
}
.page-header .title {
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.page-header .section-header {
  padding: 230px 0 140px;
}

/* Simple Link */
.simple-link {
  display: inline-block;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 14px;
  text-decoration: none;
}
.simple-link:hover, .simple-link:focus {
  color: #ff504b;
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-block;
  height: 50px;
  text-transform: uppercase;
  padding: 0 30px;
  line-height: 50px;
  font-weight: 700;
  background: #ff504b;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn::after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.3;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 1;
}
.btn:hover, .btn:focus {
  color: #fff;
  text-decoration: none;
}
.btn:hover::after, .btn:focus::after {
  left: 120%;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn.small {
  height: 40px;
  line-height: 40px;
  padding: 0 22px;
}
.btn.btn-white {
  background: #fff;
  color: #25252a;
}
.btn.btn-white:hover, .btn.btn-white:focus {
  background: #25252a;
  color: #fff;
}
.btn.btn-white::after {
  display: none;
}
.btn.btn-gray {
  background: #ebebeb;
  color: #1a1a1a;
}
.btn.btn-gray::after {
  display: none;
}
.btn.btn-dark {
  background: #4d4d4d;
  color: #fff;
}
.btn.btn-dark::after {
  display: none;
}
.btn.btn-dark:hover, .btn.btn-dark:focus, .btn.btn-gray:hover, .btn.btn-gray:focus {
  background: #ff504b;
  color: #fff;
}

/* Section Heading */
.section-heading .title {
  text-transform: uppercase;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 24px;
  line-height: 24px;
  margin: 0;
  letter-spacing: 0px;
}
.section-heading p {
  font-size: 14px;
  line-height: 24px;
  width: 65%;
  margin: 14px auto 0;
}
@media screen and (max-width: 768px) {
  .section-heading p {
    width: 100%;
  }
}
.section-heading.text-left .sep {
  float: left;
  margin: 20px 0 0;
}
.section-heading.text-right .sep {
  float: right;
  margin: 20px 0 0;
}
.section-heading.text-left p, .section-heading.text-right p {
  margin-top: 35px;
}
.section-heading .sep {
  display: block;
  width: 45px;
  height: 2px;
  margin: 20px auto 0;
  position: relative;
}
.section-heading .sep::before, .section-heading .sep::after {
  position: absolute;
  content: "";
  background: #ff504b;
  height: 2px;
}
.section-heading .sep::before {
  width: 35px;
  left: 0;
}
.section-heading .sep::after {
  width: 5px;
  left: 38px;
}

/* Fancy Card */
.fancy-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 4px;
}
.fancy-card .bg-number {
  position: absolute;
  right: 0;
  top: -25px;
  color: #f2f2f2;
  z-index: 1;
  font-size: 160px;
  line-height: 160px;
  font-weight: 300;
}
.fancy-card .title, .fancy-card p {
  position: relative;
  z-index: 10;
  margin: 0;
}
.fancy-card .title {
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 25px;
  margin-top: 0;
}
@media screen and (max-width: 991px) {
  .fancy-card {
    margin-bottom: 60px;
    text-align: center;
  }
  .fancy-card p {
    width: 75%;
    margin: 0 auto;
  }
  .fancy-card .bg-number {
    right: 20%;
    font-size: 120px;
    line-height: 120px;
  }
  .fancy-card.last {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 550px) {
  .fancy-card p {
    width: 100%;
  }
}

/* Feature */
.feature {
  margin-top: 40px;
}
.feature i {
  font-size: 36px;
  line-height: 36px;
  color: #ff504b;
}
.feature .title {
  text-transform: uppercase;
  font-weight: 600;
  color: #1a1a1a;
  padding: 20px 0 14px;
  margin: 0;
  font-size: 18px;
  line-height: 18px;
}
.feature p {
  margin: 0;
}
.feature:hover i, .feature:focus i {
  animation: pulse 0.5s;
  transform-origin: 50% 50%;
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .feature p {
    width: 70%;
    margin: 0 auto;
  }
}

/* Decorated Image */
.decorated-image {
  position: relative;
  padding: 15px;
}
.decorated-image img {
  position: relative;
  z-index: 9;
}
.decorated-image.top-right:before {
  border-top: 290px solid #ff504b;
  border-left: 370px solid transparent;
  right: 0;
  top: 0;
}
@media screen and (max-width: 991px) {
  .decorated-image.top-right::before {
    border-top: 190px solid #ff504b;
    border-left: 270px solid transparent;
  }
}
.decorated-image.top-left:before {
  border-top: 290px solid #ff504b;
  border-right: 370px solid transparent;
  top: 0;
  left: 0;
}
@media screen and (max-width: 991px) {
  .decorated-image.top-left::before {
    border-top: 190px solid #ff504b;
    border-right: 270px solid transparent;
  }
}
.decorated-image.bottom-right:before {
  border-bottom: 290px solid #ff504b;
  border-left: 370px solid transparent;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 991px) {
  .decorated-image.bottom-right::before {
    border-bottom: 190px solid #ff504b;
    border-left: 270px solid transparent;
  }
}
.decorated-image.bottom-left:before {
  border-bottom: 290px solid #ff504b;
  border-right: 370px solid transparent;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 991px) {
  .decorated-image.bottom-left::before {
    border-bottom: 190px solid #ff504b;
    border-right: 270px solid transparent;
  }
}
.decorated-image:before {
  position: absolute;
  display: block;
  content: "";
  z-index: 1;
}

/* Overlay Items */
.has-overlay {
  position: relative;
  overflow: hidden;
}
.has-overlay .overlay {
  position: absolute;
  left: 0;
  width: 90%;
  height: 90%;
  bottom: 5%;
  left: 5%;
  -webkit-transform: translateY(110%);
  -moz-transform: translateY(110%);
  transform: translateY(110%);
  text-align: center;
  background: #fff;
  transition: transform 0.3s;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}
.has-overlay .overlay .content {
  position: absolute;
  bottom: calc( 100% - 50% );
  margin-bottom: -24px;
  width: 100%;
}
@media screen and (min-width: 991px) and (max-width: 1200px) {
  .has-overlay .overlay .content {
    bottom: 35px;
  }
}
.has-overlay .overlay .social-networks {
  padding: 0;
  margin: 0;
}
.has-overlay .overlay .social-networks li {
  display: inline-block;
  padding: 5px;
}
.has-overlay .overlay .icon {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  display: inline-block;
  border-right: 75px solid #ff504b;
  border-top: 75px solid transparent;
}
.has-overlay .overlay .icon i {
  position: absolute;
  top: -32px;
  right: -59px;
  font-size: 16px;
  color: #fff;
}
.has-overlay .overlay a {
  text-decoration: none;
}
.has-overlay .overlay .popup-with-move-anim {
  outline: 0;
}
.has-overlay .overlay .popup-with-move-anim:hover .name, .has-overlay .overlay .popup-with-move-anim:hover .function {
  color: #ff504b;
}
.has-overlay .overlay .name {
  text-transform: uppercase;
  font-weight: 700;
  color: #1a1a1a;
  padding: 0 0 10px;
  margin: 0;
}
.has-overlay .overlay .name a {
  color: inherit;
}
.has-overlay .overlay .name a:hover, .has-overlay .overlay .name a:focus {
  color: #ff504b;
}
.has-overlay .overlay .function {
  font-weight: 400;
  font-size: 13px;
  line-height: 8px;
  margin: 0;
  color: #1a1a1a;
}
.has-overlay .overlay .function a {
  color: inherite;
}
.has-overlay .overlay .function a:hover {
  color: #ff504b;
}
.has-overlay:hover .overlay, .has-overlay:focus .overlay {
  z-index: 1;
  bottom: 0;
  -webkit-transform: translateY(-5%);
  -moz-transform: translateY(-5%);
  transform: translateY(-5%);
}
.has-overlay:hover .overlay .icon, .has-overlay:focus .overlay .icon {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/* Video Section */
.video-wrapper {
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.video-wrapper .overlay-section {
  padding: 80px 0;
}
.video-wrapper h2 {
  font-size: 24px;
  line-height: 24px;
  margin: 0 auto 10px;
  text-transform: uppercase;
}
.video-wrapper p {
  font-size: 15px;
  line-height: 27px;
  color: #fff;
  width: 60%;
  margin: 0 auto;
}
.video-wrapper a {
  display: inline-block;
  font-size: 60px;
  line-height: 60px;
  margin: 0 auto 30px;
  color: inherit;
}
.video-wrapper a:visited,
.video-wrapper a:focus {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .video-wrapper p {
    width: 100%;
  }
}

/*  Filter */
.sheel-filter {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 36px;
}
.sheel-filter li {
  display: inline-block;
  margin: 4px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  padding: 8px 10px;
  background: #ebebeb;
  color: #1a1a1a;
  transition: all 0.3s;
  border: 1px solid #e6e6e6;
}
.sheel-filter li.selected, .sheel-filter li:hover, .sheel-filter li:focus {
  color: #fff;
  background: #ff504b;
  border-color: #ff504b;
}
@media screen and (max-width: 768px) {
  .sheel-filter {
    text-align: left;
  }
  .sheel-filter li {
    padding: 9px 15px;
  }
}

.testimonial {
  background: #fff;
  padding: 24px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
}
.testimonial .img-wrapper {
  float: left;
  width: 170px;
  height: 175px;
  overflow: hidden;
  margin: 0 30px 0 0;
  border: 6px solid #ff504b;
}
.testimonial .name {
  font-size: 20px;
  line-height: 20px;
  margin: 0;
  text-transform: uppercase;
}
.testimonial p {
  line-height: 24px;
  font-size: 15px;
  font-style: italic;
}
.testimonial .info-block {
  padding-top: 15px;
  float: left;
  width: 75%;
  display: inline-block;
}
.testimonial .function {
  color: #ff504b;
}
@media screen and (max-width: 991px) {
  .testimonial .info-block {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .testimonial {
    text-align: center;
  }
  .testimonial .info-block {
    width: 90%;
    float: none;
  }
  .testimonial .img-wrapper {
    margin: 0 auto;
    float: none;
  }
}

/* Testimonial Carousel */
.testimonials-carousel {
  width: 75%;
  margin: 0 auto;
  position: relative;
}
.testimonials-carousel:after {
  position: absolute;
  bottom: 12px;
  right: 17px;
  content: "";
  font-family: "FontAwesome";
  z-index: 101;
  font-size: 19px;
  color: #fff;
}
.testimonials-carousel:before {
  position: absolute;
  content: "";
  border-bottom: 90px solid #ff504b;
  border-left: 90px solid transparent;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.testimonials-carousel .owl-dots {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
}
.testimonials-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 5px;
  width: 12px;
  height: 12px;
  background: #cccccc;
  border-radius: 50%;
}
.testimonials-carousel .owl-dots .owl-dot.active, .testimonials-carousel .owl-dots .owl-dot:hover {
  background: #ff504b;
}
@media screen and (max-width: 1200px) {
  .testimonials-carousel {
    width: 95%;
  }
}
@media screen and (max-width: 991px) {
  .testimonials-carousel {
    width: 100%;
  }
}

/* Price Table*/
.price-table {
  position: relative;
  margin-top: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  transition: all 0.3s;
}
.price-table:hover {
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
}
.price-table.highlighted:after {
  position: absolute;
  top: 8px;
  left: 13px;
  content: "";
  font-family: "FontAwesome";
  z-index: 25;
  font-size: 19px;
  color: #fff;
}
.price-table.highlighted:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  border-top: 75px solid #ff504b;
  border-right: 75px solid transparent;
}
.price-table .price-wrapper {
  text-align: center;
  padding: 25px 0;
}
.price-table .price-wrapper .price {
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 8px;
  margin-top: 0;
}
.price-table .price-wrapper .type {
  font-weight: 400;
  color: #4d4d4d;
  margin: 0;
}
.price-table .plan-name {
  display: block;
  height: 60px;
  width: 100%;
  font-weight: 600;
  line-height: 60px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  background: #ff504b;
  margin: 0;
}
.price-table .table-content {
  padding: 20px 0;
  text-align: center;
}
.price-table .table-content ul, .price-table .table-content ol, .price-table .table-content li, .price-table .table-content p {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-table .table-content li {
  padding: 20px 0;
  font-size: 14px;
  line-height: 14px;
  color: #4d4d4d;
}
.price-table .table-footer {
  text-align: center;
  padding-bottom: 32px;
}
@media screen and (min-width: 991px) and (max-width: 1200px) {
  .price-table .table-footer .btn {
    padding: 0 45px;
  }
}

/* Blog Post Defaults*/
.blog-post {
  position: relative;
  margin-bottom: 50px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.blog-post.blog-home {
  margin-bottom: 30px;
}
.blog-post .sticky-icon {
  position: absolute;
  z-index: 999;
  left: 25px;
  top: -10px;
  line-height: 22px;
  height: 22px;
  background: #ff504b;
  color: #fff;
  padding: 0 8px;
  font-size: 12px;
  border-radius: 32px;
  font-weight: 500;
}
.blog-post .sticky-icon i {
  display: inline-block;
  margin-right: 5px;
}
.blog-post .arrow-read-more {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  display: inline-block;
  border-right: 75px solid #ff504b;
  border-top: 75px solid transparent;
}
.blog-post .arrow-read-more i {
  position: absolute;
  top: -32px;
  right: -59px;
  font-size: 16px;
  color: #fff;
}
.blog-post.grid:before {
  display: none;
}
.blog-post.grid .entry-footer .entry-meta, .blog-post.grid .entry-footer .btn-wrap {
  width: 100%;
  float: none;
}
.blog-post.grid .entry-footer .btn-wrap {
  margin-top: 20px;
  text-align: left !important;
}
.blog-post .entry {
  position: relative;
  z-index: 9;
  background: #fff;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  padding: 25px;
  transition: all 0.3s;
}
.blog-post .img-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: -25px;
  margin-left: -25px;
  margin-right: -25px;
  margin-bottom: 0;
}
.blog-post .img-wrapper img {
  display: block;
  height: auto;
  max-width: 100%;
  margin: 0 auto 20px;
}
.blog-post .title {
  display: block;
  text-transform: uppercase;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 20px;
  line-height: 26px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  hyphens: auto;
}
.blog-post .title a {
  display: inline-block;
  color: #1a1a1a;
  transition: all 0.3s;
  text-decoration: none;
}
.blog-post .title:hover a, .blog-post .title:focus a {
  color: #ff504b;
}
.blog-post .meta {
  position: relative;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  color: #4d4d4d;
  margin: 0 0 8px;
  display: inline-block;
  padding-right: 20px;
}
.blog-post .meta.cats {
  margin: 0 0 8px;
}
.blog-post .meta.cats:before {
  content: "";
}
.blog-post .meta:before {
  position: absolute;
  right: 6px;
  top: 0;
  content: "/";
}
.blog-post .meta:last-child:before {
  content: "";
}
.blog-post .meta i {
  margin-right: 5px;
}
.blog-post .meta a {
  color: #ff504b;
  text-decoration: none;
}
.blog-post p {
  font-size: 14px !important;
  margin: 0 0 17px !important;
}
.blog-post .tags {
  margin-top: 15px;
}
.blog-post .tags a {
  display: inline-block;
  margin: 4px 5px 0 0;
  height: 25px;
  line-height: 25px;
  padding: 0 5px;
  background: #ff504b;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-post .tags a:hover {
  background: #ff3732;
}
.blog-post .entry-footer .entry-meta, .blog-post .entry-footer .btn-wrap {
  width: 50%;
  float: left;
}
.blog-post .entry-footer .btn-wrap {
  text-align: right;
}
.blog-post:hover .entry {
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
}

@media (min-width: 768px) {
  .blog-content,
.blog-content .navigation .nav-links {
    padding: 0;
    max-width: 582px;
    margin: 0 auto;
  }

  .alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: auto;
    max-width: 1000%;
  }

  .alignwide {
    margin-left: calc(25% - 21vw);
    margin-right: calc(25% - 21vw);
    width: auto;
    max-width: 1100px;
  }
}
.blog-post.single-post .entry {
  padding: 0;
  box-shadow: none;
}

/* Content */
.sheel-content {
  padding-top: 50px;
  padding-bottom: 70px;
}

.entry-content {
  margin-top: 15px;
}

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6,
.comment-content h1,
.comment-content h2,
.comment-content h3,
.comment-content h4,
.comment-content h5,
.comment-content h6 {
  margin-bottom: 15px;
}
.entry-content blockquote,
.comment-content blockquote {
  border-left: 2px solid #ff504b;
  padding-left: 15px;
  margin-left: 5px;
}
.entry-content blockquote p,
.comment-content blockquote p {
  font-style: italic;
}
.entry-content a,
.comment-content a {
  color: #ff504b;
}
.entry-content a:hover,
.comment-content a:hover {
  color: #ff504b;
  text-decoration: none;
}
.entry-content img,
.comment-content img {
  height: auto;
  max-width: 100%;
}
.entry-content p,
.comment-content p {
  margin-top: 0;
  margin-bottom: 18px !important;
  line-height: 25px !important;
  font-size: 15px !important;
  color: #555;
}
.entry-content code,
.comment-content code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
.entry-content kbd,
.comment-content kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

table,
.wp-block-table {
  margin-bottom: 15px;
  width: 100%;
}
table a,
.wp-block-table a {
  color: #ff504b;
}
table a:hover,
.wp-block-table a:hover {
  color: #ff504b;
  text-decoration: none;
}

.wp-block-table tr,
.wp-block-table td,
.wp-block-table th,
table tr,
table td,
table th {
  border: 1px solid #e5e5e5;
  padding: 9px;
}

li {
  padding-bottom: 5px;
}

dl {
  margin: 0 20px;
}

dl dt {
  margin-bottom: 3px;
}

dl dd {
  margin-bottom: 20px;
}

pre:not(.wp-block-verse) {
  border-radius: 0px;
  border: 0px;
  background: #ebebeb;
  padding: 10px;
}

p.has-small-font-size {
  font-size: 13px !important;
  line-height: 23px !important;
}
p.has-medium-font-size {
  font-size: 20px !important;
  line-height: 30px !important;
}
p.has-large-font-size {
  font-size: 36px !important;
  line-height: 45px !important;
}
p.has-huge-font-size {
  font-size: 50px !important;
  line-height: 57px !important;
}

/* WP Blocks */
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100px;
  border: none;
  border-bottom: 2px solid #8f98a1;
  margin: 1.65em auto;
}

.wp-block-table.is-style-stripes {
  border: 1px solid #e5e8ed;
}

.wp-block-verse pre,
pre.wp-block-verse {
  font-size: 16px;
  color: #191e23;
  white-space: nowrap;
  font-family: inherit;
  font-size: inherit;
  padding: 1em;
  overflow: auto;
  line-height: 25px;
}

.wp-block-latest-posts,
ul.wp-block-categories,
ul.wp-block-archives {
  padding: 0;
  margin: 0;
  list-style-type: none;
  list-style: none;
}
.wp-block-latest-posts li,
ul.wp-block-categories li,
ul.wp-block-archives li {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #ebebeb;
  padding-bottom: 0;
}
.wp-block-latest-posts li a,
ul.wp-block-categories li a,
ul.wp-block-archives li a {
  display: inline-block;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 0;
}
.wp-block-latest-posts li a:hover,
ul.wp-block-categories li a:hover,
ul.wp-block-archives li a:hover {
  color: #ff504b;
}
.wp-block-latest-posts li:first-child,
ul.wp-block-categories li:first-child,
ul.wp-block-archives li:first-child {
  margin-top: 0;
  padding: 0;
  border-top: 0;
}

.wp-block-latest-posts.is-grid li {
  margin-bottom: 0;
  margin-top: 5px;
}

a.wp-block-button__link {
  color: inherit;
}
a.wp-block-button__link:hover {
  color: inherit;
}

.wp-block-quote.is-large {
  padding: 15px;
}
.wp-block-quote.is-large p {
  font-size: 20px !important;
  line-height: 32px !important;
}
.wp-block-quote.is-large cite {
  color: #555;
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
}

.wp-block-pullquote {
  margin-bottom: 18px;
}
.wp-block-pullquote blockquote {
  padding: 0;
  border: none;
  margin: 0;
}
.wp-block-pullquote p, .wp-block-pullquote cite {
  color: inherit;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
  font-size: 32px !important;
  line-height: 50px !important;
}
.wp-block-pullquote:not(.is-style-solid-color) {
  border-top: 4px solid #555d66;
  border-bottom: 4px solid #555d66;
}
.wp-block-pullquote:not(.is-style-solid-color) blockquote {
  margin: 15px;
}
.wp-block-pullquote:not(.is-style-solid-color) p {
  font-size: 28px !important;
  line-height: 50px !important;
}
.wp-block-pullquote:not(.is-style-solid-color) cite {
  font-style: normal;
  text-transform: uppercase;
  font-weight: 300;
}

.wp-block-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 430px;
}

.wp-block-cover-text,
.wp-block-cover-image .wp-block-cover-image-text, .wp-block-cover-image .wp-block-cover-text, .wp-block-cover-image h2, .wp-block-cover .wp-block-cover-image-text, .wp-block-cover .wp-block-cover-text, .wp-block-cover h2 {
  position: relative;
  color: #fff;
  font-size: 30px !important;
  line-height: 50px !important;
  z-index: 1;
  margin-bottom: 0;
  max-width: 610px;
  padding: 14px;
}

/* Post Pagination */
.post-navigation .nav-links:before, .post-navigation .nav-links:after,
.comment-navigation .nav-links:before,
.comment-navigation .nav-links:after {
  content: "";
  display: table;
}
.post-navigation .nav-links:after,
.comment-navigation .nav-links:after {
  clear: both;
}
.post-navigation .nav-next,
.post-navigation .nav-previous,
.comment-navigation .nav-next,
.comment-navigation .nav-previous {
  position: relative;
  display: block;
  width: 50%;
  float: left;
}
.post-navigation .nav-next a,
.post-navigation .nav-previous a,
.comment-navigation .nav-next a,
.comment-navigation .nav-previous a {
  text-decoration: none;
}
.post-navigation .nav-next a:before,
.post-navigation .nav-previous a:before,
.comment-navigation .nav-next a:before,
.comment-navigation .nav-previous a:before {
  position: absolute;
  font-family: "FontAwesome";
}
.post-navigation .nav-previous a:before,
.comment-navigation .nav-previous a:before {
  left: 0;
  content: "";
}
.post-navigation .nav-next,
.comment-navigation .nav-next {
  text-align: right;
}
.post-navigation .nav-next a:before,
.comment-navigation .nav-next a:before {
  right: 0;
  content: "";
}

.comment-navigation {
  padding-top: 35px;
}
.comment-navigation .nav-next a,
.comment-navigation .nav-previous a {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  transition: all 0.25s ease;
}
.comment-navigation .nav-next a:hover,
.comment-navigation .nav-previous a:hover {
  color: #ff504b;
}
.comment-navigation .nav-previous a {
  padding-left: 15px;
}
.comment-navigation .nav-next a {
  padding-right: 15px;
}

.post-navigation .nav-links .nav-previous a {
  padding-left: 60px;
}
.post-navigation .nav-links .nav-next a {
  padding-right: 60px;
}
.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  display: inline-block;
  transition: all 0.3s;
}
.post-navigation .nav-links .nav-previous a:before,
.post-navigation .nav-links .nav-next a:before {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #e6e6e6;
  transition: all 0.3s;
  color: #ff504b;
}
.post-navigation .nav-links .nav-previous a span,
.post-navigation .nav-links .nav-next a span {
  display: block;
}
.post-navigation .nav-links .nav-previous a span.step,
.post-navigation .nav-links .nav-next a span.step {
  font-size: 13px;
  color: #707070;
  font-weight: 500;
}
.post-navigation .nav-links .nav-previous a span.title,
.post-navigation .nav-links .nav-next a span.title {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}
.post-navigation .nav-links .nav-previous a:hover:before,
.post-navigation .nav-links .nav-next a:hover:before {
  background: #ff504b;
  color: #fff;
}
.post-navigation .nav-links .nav-previous a:hover span.title,
.post-navigation .nav-links .nav-next a:hover span.title {
  color: #ff504b;
}

/* Post Password */
.post-password-form label {
  display: inline-block;
  width: 70%;
  margin-right: -4px;
}
.post-password-form input[type=password] {
  width: 100%;
  height: 50px;
  background: #e6e6e6;
  border: 1px solid transparent;
  padding: 0 10px;
  box-shadow: none;
  outline: 0;
  transition: all 0.3s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.post-password-form input[type=password]:hover {
  border-color: #ff504b;
}
.post-password-form input[type=submit] {
  width: 30%;
  padding: 0;
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  padding: 0 30px;
  font-weight: 700;
  background: #ff504b;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
  text-decoration: none;
  border: none;
  outline: 0;
  transition: all 0.3s ease;
}
.post-password-form input[type=submit]:hover, .post-password-form input[type=submit]:focus {
  background: #ff3732;
  color: #fff;
  text-decoration: none;
}

/* Subscribe Form */
.mailchimp-form input[type=email] {
  float: left;
  width: 74%;
  margin-right: 15px;
  margin-bottom: 10px;
  padding: 0 15px;
  background: #595959;
  border: none;
  box-shadow: none;
  color: #fff !important;
  font-weight: 400;
  height: 50px;
  border: 1px solid transparent;
  outline: 0;
}
.mailchimp-form input[type=email][type=email]:focus {
  background: #666666;
  color: #fff !important;
}
.mailchimp-form .button {
  float: left;
  height: 50px;
  padding: 0 25px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  background: #595959;
  border: none;
  box-shadow: none;
}
@media screen and (min-width: 991px) and (max-width: 1200px) {
  .mailchimp-form input#mce-EMAIL {
    width: 65% !important;
  }
}
@media screen and (max-width: 550px) {
  .mailchimp-form input#mce-EMAIL {
    width: 100% !important;
    margin-bottom: 15px;
  }
  .mailchimp-form input[type=submit].button {
    width: 100% !important;
  }
}

/* Partners */
.partner {
  margin: 10px 0;
  text-align: center;
}
.partner a {
  display: block;
}
.partner .img-wrapper {
  display: inline-block;
}

/* Team Membe */
.team-member {
  margin: 0 auto 30px;
  background: #fff;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  transition: all 0.3s;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .team-member {
    max-width: 300px;
  }
}
.team-member .image-wrapper {
  position: relative;
  overflow: hidden;
}
.team-member .overlay {
  position: absolute;
  padding: 15px 0;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.3s;
}
.team-member .content {
  padding: 20px 10px;
}
.team-member .content .name {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 auto 10px;
  color: #25252a;
}
.team-member .content .name a {
  text-decoration: none;
}
.team-member .content .name:hover {
  color: #ff504b;
}
.team-member .content .function {
  margin: 0;
}
.team-member .social-networks {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.team-member .social-networks li {
  display: inline-block;
}
.team-member .social-networks li .icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  background: #25252a;
  font-size: 10px;
  color: #fff;
  transition: all 0.6s;
}
.team-member .social-networks li .icon:before {
  font-size: 15px;
}
.team-member .social-networks li .icon:hover, .team-member .social-networks li .icon:focus {
  background: #ff504b;
}
.team-member:hover {
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
}
.team-member:hover .overlay {
  bottom: 0;
}

/* Members Modal */
.member-details-container {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
}
.member-details-container .wrapper {
  background: #fff;
  padding: 25px;
  text-align: left;
  -webkit-box-shadow: 3px 6px 52px 8px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 3px 6px 52px 8px rgba(0, 0, 0, 0.22);
  box-shadow: 3px 6px 52px 8px rgba(0, 0, 0, 0.22);
}
.member-details-container .wrapper.loaded:before, .member-details-container .wrapper.loaded:after {
  position: absolute;
  display: block;
  content: "";
  z-index: -1;
}
.member-details-container .wrapper.loaded:before {
  top: -10px;
  left: -10px;
  border-top: 160px solid #ff504b;
  border-right: 160px solid transparent;
}
.member-details-container .wrapper.loaded:after {
  bottom: -10px;
  right: -10px;
  border-bottom: 160px solid #ff504b;
  border-left: 160px solid transparent;
}
.member-details-container .img-wrapper {
  position: relative;
}
.member-details-container img {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 99;
}
.member-details-container h2 {
  font-size: 24px;
  line-height: 24px;
  margin-top: 10px;
}
.member-details-container h4 {
  margin-bottom: 20px;
}
.member-details-container hr {
  display: block;
  width: 45px;
  height: 2px;
  position: relative;
  border: none;
  margin: 0;
}
.member-details-container hr::before, .member-details-container hr::after {
  position: absolute;
  content: "";
  background: #ff504b;
  height: 2px;
}
.member-details-container hr::before {
  width: 35px;
  left: 0;
}
.member-details-container hr::after {
  width: 5px;
  left: 38px;
}
.member-details-container .btn {
  margin-top: 15px;
}
.member-details-container button.mfp-close.x-button {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 44px;
  height: 44px;
  color: #25252a;
}
.member-details-container a.mfp-close.as-button {
  position: relative;
  width: auto;
  opacity: 1;
  display: inline-block;
  height: 40px;
  text-transform: uppercase;
  padding: 0 30px;
  line-height: 40px;
  font-weight: 700;
  background: #ff504b;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

/* Contact Detail */
.contact-detail {
  display: block;
  font-weight: 400;
  color: #4d4d4d;
  margin-bottom: 15px;
}
.contact-detail:last-child {
  margin-bottom: 0;
}
.contact-detail i {
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  background: #f2f2f2;
  margin-right: 30px;
  border-radius: 50%;
  transition: all 0.3s linear;
}
.contact-detail:hover i, .contact-detail:focus i {
  color: #ff504b;
  animation: pulse 0.3s;
}
@media screen and (max-width: 768px) {
  .contact-detail i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    margin-right: 9px;
  }
}

/* General Form Style */
.general-form .field, .general-form p {
  position: relative;
  height: auto;
  padding-bottom: 30px;
  margin: 0;
  font-weight: 500;
}
.general-form .field span.wpcf7-not-valid-tip, .general-form p span.wpcf7-not-valid-tip {
  display: inline-block;
  background: #ff504b;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 30px;
  width: 100%;
  padding: 0 15px;
  font-weight: 600;
  height: 30px;
}
.general-form .ajax-loader {
  display: none !important;
}
.general-form .ajax-loader.is-active {
  display: block !important;
}
.general-form .comment-submit {
  margin-top: 30px;
}
.general-form input, .general-form textarea {
  display: block;
  width: 100%;
  height: 50px;
  background: #e6e6e6;
  padding: 0 15px;
  color: #1a1a1a;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.general-form input::-webkit-input-placeholder, .general-form textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #4d4d4d;
  font-weight: 400;
}
.general-form input:-moz-placeholder, .general-form textarea:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #4d4d4d;
  font-weight: 400;
}
.general-form input::-moz-placeholder, .general-form textarea::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #4d4d4d;
  font-weight: 400;
}
.general-form input:-ms-input-placeholder, .general-form textarea:-ms-input-placeholder {
  opacity: 1;
  color: #4d4d4d;
  font-weight: 400;
}
.general-form input:hover, .general-form textarea:hover {
  border-color: rgba(255, 80, 75, 0.45);
}
.general-form input:focus, .general-form textarea:focus {
  border-color: #ff504b;
  outline: 0;
}
.general-form textarea {
  height: 150px;
  padding-top: 15px;
}
.general-form .wpcf7-response-output {
  padding: 0;
  margin: 0;
}
.general-form input#mce-EMAIL {
  width: 74%;
  float: left;
  margin-right: 15px;
  margin-bottom: 10px;
}
@media screen and (min-width: 991px) and (max-width: 1200px) {
  .general-form input#mce-EMAIL {
    width: 65%;
  }
}
@media screen and (max-width: 550px) {
  .general-form input#mce-EMAIL {
    width: 100%;
  }
}
.general-form input[type=submit].button {
  width: unset;
  float: left;
  padding: 0 20px;
}
@media screen and (max-width: 550px) {
  .general-form input[type=submit].button {
    width: 100%;
  }
}
.general-form input[type=submit] {
  display: inline-block;
  height: 50px;
  text-transform: uppercase;
  padding: 0 30px;
  line-height: 50px;
  font-weight: 700;
  background: #ff504b;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  margin-top: 0;
}
.general-form input[type=submit]:hover {
  background: #ff3732;
}

/* Pagination */
.split-pagination {
  float: left;
  margin-top: 5px;
}

.pagination,
.split-pagination {
  display: block;
  width: 100%;
}
.pagination a, .pagination .current, .pagination .current-page,
.split-pagination a,
.split-pagination .current,
.split-pagination .current-page {
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  font-weight: 700;
  color: #4d4d4d;
  background: #f2f2f2;
  margin: 5px 3px;
  trnastion: all 0.3s;
}
.pagination a i, .pagination .current i, .pagination .current-page i,
.split-pagination a i,
.split-pagination .current i,
.split-pagination .current-page i {
  font-size: 18px;
}
.pagination a:hover, .pagination a:focus, .pagination .current:hover, .pagination .current:focus, .pagination .current-page:hover, .pagination .current-page:focus,
.split-pagination a:hover,
.split-pagination a:focus,
.split-pagination .current:hover,
.split-pagination .current:focus,
.split-pagination .current-page:hover,
.split-pagination .current-page:focus {
  text-decoration: none;
  color: #ff504b;
}
.pagination a .current-page, .pagination .current .current-page, .pagination .current-page .current-page,
.split-pagination a .current-page,
.split-pagination .current .current-page,
.split-pagination .current-page .current-page {
  padding: 0;
  margin: 0;
  color: #4d4d4d;
}
.pagination .current, .pagination .current-page,
.split-pagination .current,
.split-pagination .current-page {
  color: #ff504b;
}

.split-pagination a, .split-pagination .current-page {
  margin: 5px 2px;
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* Comments Container */
.comments-area {
  padding-top: 40px;
}
.comments-area .comments-title {
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 15px;
}
.comments-area hr.sep {
  display: block;
  width: 45px;
  height: 2px;
  margin: 0;
  position: relative;
  border: none;
}
.comments-area hr.sep::before, .comments-area hr.sep::after {
  position: absolute;
  content: "";
  background: #ff504b;
  height: 2px;
}
.comments-area hr.sep::before {
  width: 35px;
  left: 0;
}
.comments-area hr.sep::after {
  width: 5px;
  left: 38px;
}
.comments-area .children {
  list-style: none;
  letter-spacing: normal;
  margin: 0;
}
.comments-area .general-form {
  margin-top: 0;
}
.comments-area .says {
  display: none;
}
.comments-area .comment-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style: none;
}

.comments-area .comment-respond {
  padding-top: 50px;
}
.comments-area .comment {
  position: relative;
}
.comments-area .comment .comment-respond {
  padding-top: 25px;
}
.comments-area .comment-body {
  padding: 15px 0 15px 95px;
  margin-top: 20px;
}
.comments-area .comment-content {
  margin-top: 10px;
}
.comments-area .comment-author {
  display: inline-block;
  color: #1a1a1a;
  font-weight: 600;
  text-transform: uppercase;
}
.comments-area .comment-author a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2 ease;
}
.comments-area .comment-author a:hover {
  color: #ff504b;
}
.comments-area b.fn {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 3px;
}
.comments-area .comment-metadata {
  position: relative;
  font-weight: 400;
  font-size: 13px;
  font-weight: 500;
}
.comments-area .comment-metadata a {
  color: #4d4d4d;
  text-decoration: none;
  transition: all 0.2 ease;
}
.comments-area .comment-metadata a:hover {
  color: #ff504b;
}
.comments-area .comment-author img {
  position: absolute;
  left: 0;
}
.comments-area .comment-reply-title {
  margin-top: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 16px;
  height: 16px;
}
.comments-area .logged-in-as {
  margin-top: 0;
  padding-bottom: 15px;
}
.comments-area .logged-in-as a {
  color: #4d4d4d;
  transition: all 0.2 ease;
}
.comments-area .logged-in-as a:hover {
  color: #ff504b;
}
.comments-area .comment-reply-link,
.comments-area #cancel-comment-reply-link {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  text-transform: none;
  color: #fff;
  height: 25px;
  padding: 0 10px;
  line-height: 25px;
  background: #ff504b;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.comments-area .comment-reply-link:hover, .comments-area .comment-reply-link:focus,
.comments-area #cancel-comment-reply-link:hover,
.comments-area #cancel-comment-reply-link:focus {
  background: #ff3732;
  text-decoration: none;
}
.comments-area #cancel-comment-reply-link {
  margin-left: 15px;
}
.comments-area #cancel-comment-reply-link:before {
  content: "";
}
.comments-area .pingback {
  border-top: 1px solid #cccccc;
}
.comments-area .pingback:first-child {
  margin-top: 20px;
  border-top: none;
}
.comments-area .pingback .comment-body {
  padding: 5px 0;
  margin-top: 0;
  font-weight: 500;
}
.comments-area .pingback .comment-body a {
  color: #ff504b;
}

@media screen and (max-width: 768px) {
  .comments-area .children {
    padding-left: 10px;
  }
  .comments-area .comment-author {
    float: none;
    margin-bottom: 3px;
  }
  .comments-area .comment-author img {
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
  }
  .comments-area .comment-body {
    padding-left: 60px;
  }
  .comments-area .comment-metadata {
    float: none;
    display: block;
    padding-left: 0;
    margin-left: 0;
  }
  .comments-area .comment-metadata:before {
    content: "";
  }
}
/* Portfolio */
.portfolio-item {
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .portfolio-item {
    width: 100%;
  }
}

.portfolio-single .title {
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 35px;
}
.portfolio-single .portfolio-slider {
  margin-bottom: 45px;
}
.portfolio-single .portfolio-slider .owl-nav {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  margin-top: -25px;
}
.portfolio-single .portfolio-slider .owl-nav .owl-next, .portfolio-single .portfolio-slider .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  padding: 0;
  margin: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 22px;
  line-height: 50px;
  background: #4d4d4d;
  color: #fff;
}
.portfolio-single .portfolio-slider .owl-nav .owl-next:hover, .portfolio-single .portfolio-slider .owl-nav .owl-next:focus, .portfolio-single .portfolio-slider .owl-nav .owl-prev:hover, .portfolio-single .portfolio-slider .owl-nav .owl-prev:focus {
  background: #ff504b;
}
.portfolio-single .portfolio-slider .owl-nav .owl-next {
  right: 0;
}
.portfolio-single .info-block p {
  margin-bottom: 30px;
}
.portfolio-single .project-details {
  display: block;
  border: 1px solid #f2f2f2;
  list-style: none;
  letter-spacing: normal;
  padding: 0;
}
.portfolio-single .project-details li {
  border-bottom: 1px solid #f2f2f2;
  text-align: left;
  padding: 15px 0 15px 15px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}
.portfolio-single .project-details li span {
  display: inline-block;
  margin: -15px 0;
  padding: 15px 0 15px 15px;
  float: right;
  width: 60%;
  border-left: 1px solid #f2f2f2;
  font-weight: 400;
  text-transform: none;
  color: #5c5c5c;
}
.portfolio-single .project-details li span a {
  color: #ff504b;
  text-decoration: none;
}
.portfolio-single .project-details li:last-child {
  border: 0;
}

/* Similar Projects */
.similar-projects .title {
  text-transform: uppercase;
}
.similar-projects a {
  text-decoration: none;
}

#similar-projects-carousel .owl-stage-outer {
  padding: 10px 3px 5px !important;
}
#similar-projects-carousel .owl-nav {
  display: inline-block;
  position: absolute;
  width: auto;
  top: -7%;
  right: 0;
  margin-top: -25px;
}
#similar-projects-carousel .owl-nav .owl-next, #similar-projects-carousel .owl-nav .owl-prev {
  padding: 0;
  margin: 0;
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 14px;
  line-height: 35px;
  background: #f2f2f2;
  color: #1a1a1a;
}
#similar-projects-carousel .owl-nav .owl-next:hover, #similar-projects-carousel .owl-nav .owl-next:focus, #similar-projects-carousel .owl-nav .owl-prev:hover, #similar-projects-carousel .owl-nav .owl-prev:focus {
  background: #ff504b;
  color: #fff;
}
#similar-projects-carousel .owl-nav .owl-prev {
  float: left;
  margin-right: 10px;
}
#similar-projects-carousel .owl-nav .owl-next {
  float: right;
}

/* Similar Project */
.similar-item {
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.18);
  transition: all 0.3s;
}
.similar-item:hover {
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
}
.similar-item:hover .details .title {
  color: #ff504b;
}
.similar-item .img-wrapper {
  height: 200px;
  overflow: hidden;
}
.similar-item .details {
  padding: 30px 0;
}
.similar-item .details .title {
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.similar-item .details .date {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #5c5c5c;
}

/* Footer */
.site-footer {
  background: #25252a;
}
.site-footer .footer-widgets {
  padding: 60px 0 35px;
}
.site-footer .site-info {
  padding: 25px 0;
  background: #141417;
}
.site-footer .site-info p {
  color: #fff;
  margin: 0;
}
.site-footer .site-info p a {
  color: #ff504b;
  text-decoration: none;
}

/* 404 Eror */
.error404 .page-header .title {
  font-size: 90px;
}
.error404 .page-title {
  margin: 0 0 25px;
}
.error404 p {
  font-size: 16px;
  line-height: 16px;
  margin-top: 0;
  margin-bottom: 45px;
}
.error404 .error-404 {
  padding: 190px 0 190px;
}

.no-results.not-found .page-header {
  text-align: left;
}
.no-results.not-found .widget {
  margin-top: 0;
}
.no-results.not-found hr.sep {
  display: block;
  width: 45px;
  height: 2px;
  margin: 0;
  position: relative;
  border: none;
}
.no-results.not-found hr.sep::before, .no-results.not-found hr.sep::after {
  position: absolute;
  content: "";
  background: #ff504b;
  height: 2px;
}
.no-results.not-found hr.sep::before {
  width: 35px;
  left: 0;
}
.no-results.not-found hr.sep::after {
  width: 5px;
  left: 38px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  z-index: 999;
  right: 12px;
  bottom: 12px;
  display: none;
  width: 42px;
  height: 42px;
  background: #25252a;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}
.back-to-top:hover {
  background-color: #ff504b;
  color: #fff;
}

/* Animations */
@-webkit-keyframes preloader-inside-white {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes preloader-inside-white {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes preloader-inside-red {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  30% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes preloader-inside-red {
  0% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  30% {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
/* Styles */
.preloader {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999999;
  background: white;
}

.preloader .preloader-container {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -20px;
  margin-right: -20px;
  position: relative;
}

.preloader .preloader-container .animated-preloader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  background: #ff504b;
  border-radius: 50em;
}

.preloader .preloader-container .animated-preloader:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50em;
  background: white;
  -webkit-animation: preloader-inside-white 1s ease-in-out infinite;
  -ms-animation: preloader-inside-white 1s ease-in-out infinite;
  animation: preloader-inside-white 1s ease-in-out infinite;
}

.preloader .preloader-container .animated-preloader:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  border-radius: 50em;
  background: #ff504b;
  -webkit-animation: preloader-inside-red 1s ease-in-out infinite;
  -ms-animation: preloader-inside-red 1s ease-in-out infinite;
  animation: preloader-inside-red 1s ease-in-out infinite;
}

/*# sourceMappingURL=master.css.map */
