/*
Theme Name: Vijay

*/

/*--------------------------------------------------------------------------------------------------------------------
 *  1. Imports
 *  2. Less [only]
 *        2.1  Variables
 *        2.1  xBrowser Rules
 *  3. General Styles
 *        3.1  Main Classes
 *        3.2  Buttons
 *        3.3  Inputs
 *        3.4  List
 *        3.5  Breadcrumbs
 *        3.6  Pagination
 *        3.7  Progress
 *        3.8  Panels
 *        3.9  Tags
 *        3.10 Social Inline
 *        3.11 Social Share
 *        3.12 Typography
 *        3.13 Iconography
 *        3.14 Backgrounds
 *        3.15 Text Colors & Effects
 *        3.16 Magnific
 *        3.17 Scroll To Top Element
 *        3.18 Preloader
 *        3.19 Form Validation
 *        3.10 Gallery Item
 *  4. Header
 *        4.1 Brand & Navigation (Default Style)
 *              4.1.1 Navigation Style: Fill
 *              4.1.2 Navigation Style: Underline
 *              4.1.3 Affixed Navigation
 *        4.2 No-Mobile
 *  5. Slider
 *        5.1 Main
 *        5.2 Slide Mask
 *        5.3 OWL.Carousel fadeUp
 *  6. Section: Features
 *  7. Section: More Features
 *  8. Section: Projects
 *  9. Section: Statistics
 * 10. Section: Testimonials
 * 11. Section: Contact
 * 12. Section: Clients
 * 13. Section: Skills
 * 14. Section: Our Team
 * 15. Section: Map
 * 16. Modal
 * 17. Footer
 * 18. Inner Pages
 * 19. Blog
 *       19.1  Post
 *       19.2  Widget
 *       19.3  Widget: Menu
 *       19.4  Widget: Latest Posts
 *       19.5  Widget: Search
 *       19.6  Widget: Advert
 *       19.7  Widget: Tags
 *       19.8  Widget: Recent Comments
 *       19.9  Widget: Comments
 * 20. Projects
 *       20.1  Project Carousel
 *       20.2  Project Information
 *       20.3  Projects Carousel
 *       20.4  Projects List
 * 21. 404 Page
 * 22. Animations
 *       22.1  ZoomIn animation
 *       22.2  SubMenu Animation
 * 23. Responsive
 *       23.1  max-width: 991px
 *       23.2  max-width: 767px
 *       23.3  max-width: 480px
 *
 *--------------------------------------------------------------------------------------------------------------------*/

/*
 * Main Classes
 *--------------*/
* {
  outline: none !important;
}
html {
  height: 100%;
  min-height: 100%;
}
body {
  height: 100%;
  min-height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #777;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  background-color:#f0e7db;
  
}
.relative {
  position: relative !important;
}
.full-wh {
  display: table-cell;
  width: 1%;
  height: 100vh;
  vertical-align: middle;
}
.height-100p {
  height: 100%;
}
.vertical-middle {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-container {
  z-index: 2;
  overflow: hidden;
}
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-small {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-content {
  margin-top: 100px;
}
.section-title {
  margin-bottom: 10px;
}
.section-subtitle {
  margin-bottom: 0;
}
.rounded {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.mt {
  margin-top: 50px;
}
.no-pb {
  padding-bottom: 0;
}
/*
 * Buttons
 *---------*/
.btn,
.btn:hover,
.btn.hover,
.btn:focus,
.btn.focus,
.btn:active,
.btn.active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 9px 22px;
  font-family: inherit;
  color: #fff !important;
  border-color: #ff5555 !important;
  background-color: #ff5555 !important;
}
.btn:focus,
.btn.focus {
  color: #fff !important;
  border-color: #dd3333 !important;
  background-color: #dd3333 !important;
}
.btn:hover,
.btn.hover {
  color: #fff !important;
  border-color: #ff7777 !important;
  background-color: #ff7777 !important;
}
.btn:active,
.btn.active {
  color: #fff !important;
  border-color: #dd3333 !important;
  background-color: #dd3333 !important;
}
/*
 * Inputs
 *--------*/
.form-control,
.form-control:hover,
.form-control.hover,
.form-control:focus,
.form-control.focus,
.form-control:active,
.form-control.active {
  padding: 9px 22px;
  height: auto;
  font-family: inherit;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: solid 1px #eaeaea;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
/*
 * List
 *------*/
.list {
  list-style: none;
  margin: 1px 0 0 1px;
  padding: 20px 10px;
  overflow: hidden;
}
.list li {
  padding: 0 0 20px 30px;
  cursor: pointer;
  border-left: solid 1px #f3f3f3;
}
.list li .title {
  margin-bottom: 10px;
  font-weight: 500;
}
.list li:last-child {
  border-left: none;
}
.list li::before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  content: '';
  position: absolute;
  left: 18px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: solid 1px #ff5555;
}
.list li:hover::before {
  background: #ff5555;
}
.list-inline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-inline li {
  display: inline-block;
}
/*
 * Breadcrumbs
 *-------------*/
.breadcrumb {
  margin-top: 7px;
  margin-bottom: 0;
  background: transparent;
  text-align: right;
}
.breadcrumb a {
  color: #777;
}
.breadcrumb a:hover {
  color: #ff5555;
}
/*
 * Pagination
 *------------*/
.page-numbers {
  margin:0px;
  float:left;
  padding:0px;
  margin-top:-10px;
}
.page-numbers li {
  display: inline-block;
}
.page-numbers li a,
.page-numbers li span {
  cursor: pointer;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  border-radius: 2px !important;
  color: #777;
  font-weight: 100;
  border: 1px solid #ddd;
  float: left;
  line-height: 1.42857;
  margin-left: -1px;
  padding: 6px 12px;
  position: relative;
  text-decoration: none;
}
.page-numbers li a:hover,
.page-numbers li span:hover,
.page-numbers li a.hover,
.page-numbers li span.hover,
.page-numbers li a:focus,
.page-numbers li span:focus,
.page-numbers li a.focus,
.page-numbers li span.focus {
  color: #fff !important;
  background: #ff5555 !important;
  border-color: #ff5555 !important;
}
.page-numbers li a.current,
.page-numbers li span.current {
  color: #fff !important;
  background: #ff5555;
  border-color: #ff5555;
}
/*
 * Progress
 *----------*/
.progress {
  height: 2px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.progress .progress-bar {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #ff5555;
}
/*
 * Panels
 *--------*/
.panel {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  margin-top: 0;
}
.panel + .panel {
  margin-top: 0 !important;
}
.panel .panel-heading {
  padding: 0;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}
.panel .panel-heading .panel-title a {
  display: block;
  padding: 10px 15px;
}
.panel .panel-heading .panel-title a .collapse-icon {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  float: right;
}
.panel .panel-heading .panel-title a.collapsed .collapse-icon {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.panel.panel-theme {
  border: solid 1px #eee;
}
.panel.panel-theme + .panel-theme {
  border-top: none;
}
.panel.panel-theme .panel-heading {
  border: none;
}
.panel.panel-theme .panel-heading a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 300 !important;
}
.panel.panel-theme .panel-heading a:not(.collapsed) {
  color: #fff;
  background: #ff5555;
}
.panel.panel-theme .panel-body {
  border-top: solid 1px #eee !important;
}
.panel:last-child .panel-heading {
  border-bottom-width: 1px;
}
/*
 * Tags
 *------*/
.tagcloud a,
.tags a{
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  padding: 3px 7px;
  margin: 0 5px 5px 0;
  color: #777;
  border: solid 1px #eee;
  font-size:12px!important;
}
.tagcloud a:hover,
.tags a:hover{
  color: #fff;
  text-decoration: none;
  background: #ff5555;
  border: solid 1px #ff5555;
}
/*
 * Social Inline
 *---------------*/
.social-inline {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-inline li {
  display: inline-block;
}
.social-inline li a {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  margin: 0 5px 5px 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 16px;
  color: #ff5555;
}
.social-inline li a:hover {
  text-decoration: none;
  color: #fff;
  background: #ff5555;
}
/*
 * Social Share
 *--------------*/
.social-share {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: table;
  width: 100%;
}
.social-share li {
  display: table-cell;
  text-align: center;
}
.social-share li a {
  display: block;
  line-height: 32px;
  padding: 0 5px;
  border: solid 1px #eee;
  border-right-width: 0;
}
.social-share li a:hover {
  color: #fff;
  background: #ff5555;
  border-color: #ff5555;
}
.social-share li:last-child a {
  border-right-width: 1px;
}
/*
 * Typography
 *------------*/
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  color: #333;
  font-weight: 400;
  margin: 0 0 30px;
}
.h3,
h3 {
  font-size: 22px;
}
a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
  color: #ff5555;
}
a:hover,
a.hover,
a:focus,
a.focus {
  color: #777;
  text-decoration: none;
}
.strong,
strong {
  font-weight: 500;
}
blockquote {
  font-size: 15px;
  background: #fafafa;
  margin: 0 0 30px;
  border-left: solid 1px #ff5555;
}
p {
  margin: 0 0 30px;
}
/*
 * Iconography
 *------------*/
.fa-1dot5 {
  font-size: 1.5em;
}
/*
 * Backgrounds
 *-------------*/
.bg-light-gray {
  background: #f5f5f5;
}
.bg-tuna {
  background: #32323a url(../img/bg-tuna.jpg);
}
/*
 * Text Colors & Effects
 *-----------------------*/
.text-white {
  color: #fff;
}
.text-theme{
  color: #ff5555;
}
/*
 * Magnific
 *----------*/
.mfp-bg {
  background: rgba(0, 0, 0, 0.7) !important;
}
.mfp-figure::after {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: .0;
  -webkit-backface-visibility: hidden;
}
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1.0;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: .9;
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: .0;
}
/*
 * Scroll To Top Element
 *-----------------------*/
.scroll-to-top {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  position: fixed;
  right: 10px;
  bottom: 10px;
  opacity: .0;
  width: 32px;
  height: 32px;
  z-index: 1001;
  cursor: pointer;
  color: #000;
  text-align: center;
  line-height: 34px;
  background: #ffe497;
}
.scroll-to-top .icon {
  font-size: 18px;
}
.scroll-to-top.in {
  opacity: .7;
  -webkit-animation: 0.3s animationZoomIn;
  -o-animation: 0.3s animationZoomIn;
  animation: 0.3s animationZoomIn;
}
.scroll-to-top:hover {
  opacity: 1.0;
}
/*
 * Preloader
 *-----------*/
#preloader {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
}
.loaded #preloader {
  background: rgba(255, 255, 255, 0.3);
}
.loader::before {
  position: absolute;
  content: '';
}
.loader,
.loader::before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 96px;
  height: 96px;
  border: solid 2px transparent;
}
.loader {
  border-top-color: #89b7f3;
  -webkit-animation: loaderAnimation 1s ease-in-out infinite;
  -o-animation: loaderAnimation 1s ease-in-out infinite;
  animation: loaderAnimation 1s ease-in-out infinite;
}
.loader::before {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-top-color: #f5817f;
  -webkit-animation: loaderAnimation 1.4s ease-in infinite;
  -o-animation: loaderAnimation 1.4s ease-in infinite;
  animation: loaderAnimation 1.4s ease-in infinite;
}

/*
 * Form Validation
 *-----------------*/
label.error {
  position: absolute;
  top: 20%;
  right: 0;
  padding: 5px 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  background: #ff5555;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-animation: 0.3s animationZoomIn;
  -o-animation: 0.3s animationZoomIn;
  animation: 0.3s animationZoomIn;
}
/*
 * Gallery Item
 *--------------*/
.gallery-image {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
}
.gallery-image img {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  max-width: 100%;
}
.gallery-image::before {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: .0;
  background: rgba(255, 255, 255, 0.8);
}
.gallery-image::after {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  margin: auto;
  width: 64px;
  height: 64px;
  color: #fff;
  font-size: 24px;
  line-height: 66px;
  text-align: center;
  opacity: 0;
  background: #ff5555;
  font-family: 'FontAwesome', sans-serif;
}
.gallery-image:hover::before {
  opacity: .7;
}
.gallery-image:hover::after {
  -webkit-animation: 0.5s animationZoomIn;
  -o-animation: 0.5s animationZoomIn;
  animation: 0.5s animationZoomIn;
  opacity: 1.0;
}
.gallery-image:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
/*--------------------------------------------------------------------------------------------------------------------
 * Header
 *--------------------------------------------------------------------------------------------------------------------*/
/*
 * Brand & Navigation
 *--------------------*/
.header {
  
}
.navbar {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  z-index: 990;
  width: 100%;
  margin-bottom: 0;
  min-height: 1px;
  font-size: 13px;
  background: #f1592a;
  border: none;
  /*
   * Navigation Style: Fill
   *-----------------------------*/
  /* /Navigation Style: Fill */
  /*
   * Navigation Style: Underline
   *-----------------------------*/
  /* /Navigation Style: Underline */
  /*
   * Affixed Navigation
   *-----------------------------*/
  /* /Affixed Navigation */
}
.navbar .information {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  height: 32px;
  font-weight: 100;
  line-height: 32px;
  border-bottom: solid 1px #eee;
}
.navbar .information i.fa {
  font-size: 12px;
}
.navbar .information a ,.navbar .information span{
  display: block;
  float: left;
  padding-left: 7px;
  padding-right: 12px;
  border-left: solid 1px #eee;
  color: #777;
  font-weight: 100 !important;
}
.navbar .information a .icon {
  display: inline-block;
  text-align: center;
  width: 24px;
}
.navbar .information a:hover {
  color: #fff;
  background: #ff5555;
  border-color: #ff5555;
}
.navbar .information .social {
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar .information .social li {
  display: block;
  float: left;
}
.navbar .information .social li a {
  display: block;
  padding-left: 0;
  padding-right: 0;
  width: 32px;
  line-height: 32px;
  vertical-align: middle;
  border-right: solid 1px #eee;
  border-left: none;
}
.navbar .information .social li a:hover {
  color: #fff;
  background: #ff5555;
  border-color: #ff5555;
}
.navbar .brand {
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  line-height: 64px;
  vertical-align: middle;
}
.navbar .brand .logo-small {
  display: none;
}
.navbar .brand .logo-big {
  display: inline-block;
}
.navbar .nav {
  text-transform: uppercase;
}

.navbar .nav li{
  border-right:1px solid #f47a55;
}

.navbar .nav li:last-child{
  border-right:none;
}

.navbar .nav li a {
  margin: 0px 0px;
  padding: 12px 43px;
  color: #fff5d9;
  text-shadow: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight:600;
  font-size:14px;
}
.navbar .nav li a:hover,
.navbar .nav li a.hover,
.navbar .nav li a:focus,
.navbar .nav li a.focus {
  color: #fff;
  background: #f6932e;
}

.navbar .nav li.active > a{
   background: #4e1419;
   color:#FFFFFF;
}
.navbar .nav li.dropdown .dropdown-menu {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  text-transform: capitalize;
  border-top: solid 1px #ffe49a;
  left: 4px;
  right: auto;
  z-index:1200 !important;
}
.navbar .navbar-toggle {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 14px;
  border: solid 1px #777;
}
.navbar .navbar-toggle .icon-bar {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #777;
}
.navbar .navbar-toggle:hover {
  border-color: #ffe497;
}
.navbar .navbar-toggle:hover .icon-bar {
  background: #ffe497;
}
.navbar.navbar-fill .nav li a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 22px;
  padding-bottom: 22px;
}
.navbar.navbar-fill .nav li.dropdown .dropdown-menu a {
  padding-top: 10px;
  padding-bottom: 10px;
}
.navbar.navbar-underline .nav li a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  position: relative;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 22px;
  padding-bottom: 20px;
  background: transparent;
  border-bottom: solid 2px transparent;
}
.navbar.navbar-underline .nav li a:hover,
.navbar.navbar-underline .nav li a.hover,
.navbar.navbar-underline .nav li a:focus,
.navbar.navbar-underline .nav li a.focus,
.navbar.navbar-underline .nav li.active > a {
  color: #ff5555;
  border-bottom-color: #ff5555;
}
.navbar.navbar-underline .nav li.active a {
  color: #ff5555;
  border-bottom-color: #ff5555;
}
.navbar.navbar-underline .nav li.dropdown .dropdown-menu {
  border-top: none;
}
.navbar.navbar-underline .nav li.dropdown .dropdown-menu a {
  padding-top: 10px;
  padding-bottom: 10px;
}
.navbar.affix-top {
  position: fixed;
}
.navbar.affix {
  position: fixed;
  -webkit-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.3);
}
.navbar.affix .information {
  height: 0;
  border-bottom-width: 0;
}
.navbar.affix .brand {
  line-height: 55px;
}
.navbar.affix .nav li a {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar.affix .navbar-toggle {
  margin-top: 10px;
}
.navbar.affix.navbar-fill .nav li a {
  padding-top: 17px;
  padding-bottom: 17px;
}
.navbar.affix.navbar-underline .nav li a {
  padding-top: 17px;
  padding-bottom: 16px;
}
.no-mobile .dropdown:hover .dropdown-menu {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-animation: 0.3s animationSubMenu;
  -o-animation: 0.3s animationSubMenu;
  animation: 0.3s animationSubMenu;
  display: block;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Slider
 *--------------------------------------------------------------------------------------------------------------------*/
/*
 * Main
 *------*/
.slider {
  width: 100%;
  max-width: 100%;
}
.slider .item {
  height: 500px;
  max-width: 100%;
  overflow: hidden;
}
.slider .item img {
  max-width: 100%;
}
.slider .owl-controls {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.slider .owl-controls .owl-pagination .owl-page {
  line-height: 24px;
  vertical-align: middle;
}
.slider .owl-controls .owl-pagination .owl-page span {
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: .7;
  background: transparent;
  border: solid 1px #fff;
}
.slider .owl-controls .owl-pagination .owl-page.active span {
  background: #fff;
}
/*
 * Slide Mask
 *------------*/
.mask {
  position: relative;
  z-index: -1;
}
.mask::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .6;
  z-index: 0;
  background: #000;
}
/*
 * OWL.Carousel fadeUp
 *---------------------*/
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom 1.2s ease both;
  -o-animation: scaleUpFrom 1.2s ease both;
  animation: scaleUpFrom 1.2s ease both;
}
.owl-fadeUp-out {
  -webkit-animation: scaleUpTo 1.2s ease both;
  -o-animation: scaleUpTo 1.2s ease both;
  animation: scaleUpTo 1.2s ease both;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Section: Features
 *--------------------------------------------------------------------------------------------------------------------*/
.feature {
  margin-bottom: 30px;
  text-align: center;
}
.feature * {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.feature .icon {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
  width: 96px;
  height: 96px;
  line-height: 96px;
  font-size: 32px;
  margin: 0 auto 30px;
  color: #ff5555;
  border: solid 1px #ff5555;
}
.feature .title {
  margin-bottom: 30px;
}
.feature .description {
  margin-bottom: 30px;
}
.feature:hover .icon {
  color: #fff;
  background: #ff5555;
}
.feature:hover .title {
  color: #ff5555;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Section: More Features
 *--------------------------------------------------------------------------------------------------------------------*/
.more-feature {
  margin-bottom: 30px;
}
.more-feature .media-left {
  padding-top: 1px;
  padding-left: 1px;
}
.more-feature .icon {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 32px;
  margin-right: 15px;
}
.more-feature .title {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-bottom: 10px;
}
.more-feature .description {
  margin-bottom: 10px;
}
.more-feature:hover .icon,
.more-feature:hover .title {
  color: #ff5555;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Section: Projects
 *--------------------------------------------------------------------------------------------------------------------*/
.project-item {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: block;
  margin-bottom: 30px;
  background: #fff;
}
.project-item .gallery-image {
  margin-bottom: 10px;
}
.project-item .info {
  position: relative;
  padding: 5px 80px 5px 10px;
}
.project-item .info .title {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-bottom: 5px;
}
.project-item .info .description {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #777;
  margin-bottom: 10px;
}
.project-item .info .social {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  right: 10px;
  bottom: 15px;
  color: #777;
}
.project-item:hover {
  background: #ff5555;
}
.project-item:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.project-item:hover .info .title,
.project-item:hover .info .description,
.project-item:hover .info .social {
  color: #fff;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Section: Statistics
 *--------------------------------------------------------------------------------------------------------------------*/
.stat {
  text-align: center;
}
.stat * {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.stat .icon {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
  width: 96px;
  height: 96px;
  color: #fff;
  font-size: 32px;
  line-height: 96px;
  margin: 0 auto 30px;
  border: solid 1px #fff;
}
.stat .number {
  color: #ff5555;
}
.stat .title {
  color: #fff;
  margin-bottom: 0;
}
.stat:hover .icon {
  color: #ff5555;
  border-color: #ff5555;
}
.stat:hover .number {
  color: #fff;
}
.stat:hover .title {
  color: #ff5555;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Section: Testimonials
 *--------------------------------------------------------------------------------------------------------------------*/
.testimonials-carousel .owl-controls {
  position: absolute;
  top: -100px;
  right: 5px;
  text-align: center;
}
.testimonials-carousel .owl-controls .owl-buttons div {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 32px;
  height: 32px;
  line-height: 28px;
  opacity: .9;
  background: #ff5555;
}
.testimonials-carousel .owl-controls .owl-buttons div i.fa {
  font-size: 16px;
}
.testimonials-carousel .testimonial {
  margin: 0 10px 0 0;
}
.testimonials-carousel .testimonial .content {
  margin-bottom: 10px;
  background: #fff;
}
.testimonials-carousel .testimonial .content .text {
  margin: 0;
}
.testimonials-carousel .testimonial .author {
  margin-bottom: 5px;
}
.testimonials-carousel .testimonial .company {
  color: #ff5555;
}
.testimonials-carousel .testimonial:nth-child(3n) {
  margin-right: 0;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Section: Contact
 *--------------------------------------------------------------------------------------------------------------------*/
.contact-form {
  margin-bottom: 30px;
}
.contact-form textarea {
  min-height: 200px;
  resize: vertical;
}
.contact-information {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.contact-information li {
  padding: 10px 0;
  border-bottom: solid 1px #eee;
}
.contact-information li .icon {
  margin-right: 10px;
}
.contact-information li span {
  display: inline-block;
  width: 70px;
  font-weight: 500;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Section: Clients
 *--------------------------------------------------------------------------------------------------------------------*/
.clients-carousel {
  margin-bottom: 30px;
}
.clients-carousel .client {
  line-height: 70px;
  text-align: center;
  vertical-align: middle;
}
.clients-carousel .owl-controls {
  position: absolute;
  top: -75px;
  right: 5px;
  text-align: center;
}
.clients-carousel .owl-controls .owl-buttons div {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 32px;
  height: 32px;
  line-height: 28px;
  opacity: .9;
  background: #ff5555;
}
.clients-carousel .owl-controls .owl-buttons div i.fa {
  font-size: 16px;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Section: Skills
 *--------------------------------------------------------------------------------------------------------------------*/
.skills .title {
  font-weight: 500;
  margin-bottom: 10px;
}
.skills .title span {
  float: right;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Section: Our Team
 *--------------------------------------------------------------------------------------------------------------------*/
.team-member {
  margin-bottom: 30px;
}
.team-member .image {
  margin-bottom: 10px;
  max-width: 100%;
  overflow: hidden;
}
.team-member .image img {
  width: 100%;
  max-width: 100%;
}
.team-member .name {
  margin-bottom: 10px;
}
.team-member .post {
  display: block;
  margin-bottom: 10px;
  color: #ff5555;
}
.team-member .text {
  margin-bottom: 10px;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Section: Map
 *--------------------------------------------------------------------------------------------------------------------*/
#map-canvas {
  width: 100%;
  height: 500px;
}
#map-canvas::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .0;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Modal
 *--------------------------------------------------------------------------------------------------------------------*/
.modal {
  text-align: center;
  white-space: nowrap;
}
.modal .modal-dialog {
  display: inline-block;
  margin: 0;
  width: 800px;
  max-width: 98%;
  text-align: left;
  white-space: normal;
  vertical-align: middle;
}
.modal .modal-dialog .modal-content {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 20px 20px 0;
  border: none;
  opacity: .0;
}
.modal .modal-dialog .modal-content .modal-header {
  border-bottom: none;
}
.modal .modal-dialog .modal-content .modal-header .modal-title {
  text-transform: uppercase;
}
.modal .close {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal::before {
  display: inline-block;
  content: '';
  height: 100%;
  vertical-align: middle;
}
.modal.fade.in .modal-content {
  opacity: 1.0;
}
.modal-result {
  margin-bottom: 30px;
}
.result-icon {
  position: relative;
  margin-bottom: 30px;
}
.result-icon .icon-border {
  position: relative;
  width: 128px;
  height: 128px;
  margin-left: auto;
  margin-right: auto;
}
.result-icon .icon-border .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 48px;
  line-height: 128px;
  text-align: center;
  color: #ff5555;
}
.result-icon .icon-border svg {
  z-index: 1;
  width: 100%;
  height: 100%;
}
.result-icon .icon-border svg circle {
/*  fill: none;
  stroke: #ff5555;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 39 39;
  stroke-dashoffset: -39;
  -webkit-transition: stroke-dashoffset 0.5s;
  -moz-transition: stroke-dashoffset 0.5s;
  -ms-transition: stroke-dashoffset 0.5s;
  -o-transition: stroke-dashoffset 0.5s;
  transition: stroke-dashoffset 0.5s;*/
}
.result-icon .icon-border::after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: solid 3px #eee;
}
.in .icon-border .icon {
  -webkit-animation: 0.5s bounceIn;
  -o-animation: 0.5s bounceIn;
  animation: 0.5s bounceIn;
}
.in .icon-border svg circle {
/*  stroke-dashoffset: 0;
  -webkit-transition: stroke-dashoffset 0.5s linear 0.5s;
  -moz-transition: stroke-dashoffset 0.5s linear 0.5s;
  -ms-transition: stroke-dashoffset 0.5s linear 0.5s;
  -o-transition: stroke-dashoffset 0.5s linear 0.5s;
  transition: stroke-dashoffset 0.5s linear 0.5s;*/
}
/*--------------------------------------------------------------------------------------------------------------------
 * Footer
 *--------------------------------------------------------------------------------------------------------------------*/
.footer {
  border-top: solid 2px #ff5555;
  padding-bottom: 10px;
}
.footer p {
  margin-bottom: 10px;
}
.footer .logo {
  margin-bottom: 20px;
}
.footer .footer-col {
  margin-bottom: 30px;
}
.footer .subtitle {
  margin-bottom: 5px;
}
.footer .post {
  margin-bottom: 10px;
}
.footer .post .image {
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.footer .post .text {
  margin-bottom: 5px;
}
.footer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .menu li {
  position: relative;
  padding-left: 15px;
}
.footer .menu li a {
  display: block;
  padding-bottom: 4px;
  font-weight: 500;
  color: #777;
}
.footer .menu li::before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  display: block;
  content: '';
  position: absolute;
  top: 7px;
  left: 2px;
  width: 5px;
  height: 5px;
  background: #777;
}
.footer .menu li:hover a {
  color: #ff5555;
}
.footer .menu li:hover::before {
  background-color: #ff5555;
}
/*--------------------------------------------------------------------------------------------------------------------
 * Inner Pages
 *--------------------------------------------------------------------------------------------------------------------*/
.section-page-header {
  margin-bottom: 50px;
  padding: 30px 0;
  background: #f5f5f5;
  border-top: solid 1px #eaeaea;
  border-bottom: solid 1px #eaeaea;
}
.section-page-header .title {
  color: #555;
  font-size: 24px;
  padding: 0;
  margin-bottom: 5px;
}
.section-page-header .blog-post{
  margin-bottom:0px;
  padding-bottom:0px; 
}
.section-page-header .blog-post .meta{
  margin-bottom:0px;
  padding-bottom:0px; 
}
/*--------------------------------------------------------------------------------------------------------------------
 * Blog
 *--------------------------------------------------------------------------------------------------------------------*/
/*
 * Post
 *------*/
.blog-post {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #eee;
}
.blog-post .image {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.blog-post .image img {
  width: 100%;
  max-width: 100%;
}
.blog-post .image iframe {
  width: 100%;
  max-width: 100%;
}
.blog-post .image .image-overlay {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .0;
  background: rgba(255, 255, 255, 0.8);
}
.blog-post .image .image-overlay .icon-wr {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 64px;
  height: 64px;
  font-size: 32px;
  line-height: 68px;
  text-align: center;
  color: #fff;
  background: #ff5555;
}
.blog-post .image .image-overlay .icon-wr .icon {
  display: inline-block;
}
.blog-post .image:hover .image-overlay {
  opacity: .9;
}
.blog-post .image:hover .image-overlay .icon-wr {
  -webkit-animation: 0.5s animationZoomIn;
  -o-animation: 0.5s animationZoomIn;
  animation: 0.5s animationZoomIn;
}
.blog-post .entry-title,
.blog-post .entry-title a {
  font-size: 24px;
  margin-bottom: 10px;
}
.blog-post .entry-title a{
  color: #333;
  font-weight: 400;
}
.blog-post .entry-title a:hover{
  color: #ff5555;
}
.blog-post .meta {
  margin-bottom: 30px;
}
.blog-post .meta li {
  padding-left: 0;
}
.blog-post .meta li time{
  color: #777;  
}
.blog-post .meta li::after {
  display: inline-block;
  content: '/';
  margin-left: 10px;
  margin-right: 0;
}
.blog-post .meta li:last-child::after {
  display: none;
}
.blog-post .content {
  margin-bottom: 30px;
}
.blog-post .information .tags,
.blog-post .information .social-inline {
  line-height: 22px;
  vertical-align: middle;
}
.blog-post .information .social-inline {
  float: right;
}
/*
 * Widget
 *--------*/
.widget {
  margin-bottom: 30px;
}
.widget .widget-title,
h4.comments-title,
h3.comment-reply-title{
  text-transform: uppercase;
  margin-bottom: 20px;
}
.widget .widget-title::after,
h4.comments-title::after,
h3.comment-reply-title::after {
  display: block;
  content: '';
  margin-top: 5px;
  width: 15%;
  height: 1px;
  background: #ff5555;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.widget:hover .widget-title::after {
  width: 20%;
}
/*
 * Widget: Menu
 *--------------*/
#secondary .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#secondary .widget ul a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: normal;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #777;
  border-bottom: solid 1px #eee;
}
#secondary .widget ul a:hover {
  color: #ff5555;
  padding-left: 10px;
}
/*
 * Widget: Latest Posts
 *----------------------*/
.latest-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.latest-posts .post {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #eee;
}
.latest-posts .post .image {
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.latest-posts .post .text {
  margin-bottom: 5px;
}
/*
 * Widget: Search
 *----------------*/
/*
 * Widget: Advert
 *----------------*/
.advert {
  width: 100%;
  height: 250px;
  min-height: 250px;
}
/*
 * Widget: Tags
 *--------------*/
/*
 * Widget: Recent Comments
 *-------------------------*/
.recent-comments {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recent-comments li {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #eee;
}

/*
 * Widget: Comments
 *------------------*/
.comments {
  position: relative;
  list-style: none;
  margin: 30px 0;
  padding: 0;
}
.comments .image {
  overflow: hidden;
}
.comments .image img {
  max-width: 60px;
}
.comments .author {
  margin-bottom: 10px;
}
.comments .date {
  display: block;
  margin-bottom: 10px;
}
.comments .text {
  margin-bottom: 10px;
}
.comments li {
  margin-bottom: 30px;
}
.comments ul {
  padding-left: 70px;
}
.send-comment textarea {
  min-height: 150px;
  resize: vertical;
}
h4.author a,
.comments .date a{
  color:#333; 
}
.comment-wrp{
  position:relative;  
}
.reply{
  position:absolute;
  right:0px;
  top:0px;
}
#comments li{
  list-style:none;  
}
h3.comment-reply-title{
  font-size:16px;
  display:inline-block;
}
#form-submit .btn-default{
  background:none;  
}
/*--------------------------------------------------------------------------------------------------------------------
 * Projects
 *--------------------------------------------------------------------------------------------------------------------*/
/*
 * Project Carousel
 *------------------*/
.project-carousel {
  margin-bottom: 130px;
}
.project-carousel .owl-wrapper-outer {
  z-index: 1;
}
.project-carousel .owl-controls {
  position: absolute;
  margin-top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.project-carousel .owl-controls .owl-pagination {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.project-carousel .owl-controls .owl-pagination .owl-page {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 100px;
  width: 25%;
  vertical-align: middle;
  border: solid 0 #fff;
  border-top-width: 1px;
  border-right-width: 1px;
  opacity: .8;
}
.project-carousel .owl-controls .owl-pagination .owl-page span {
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: .7;
  background: transparent;
  border: none;
}
.project-carousel .owl-controls .owl-pagination .owl-page.active {
  opacity: 1.0;
}
.project-carousel .owl-controls .owl-pagination .owl-page:hover {
  opacity: 1.0;
}
.project-carousel .owl-controls .owl-pagination .owl-page:nth-child(4n) {
  border-right-width: 0;
}
.project-carousel .owl-controls .owl-buttons {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.project-carousel .owl-controls .owl-buttons .owl-prev,
.project-carousel .owl-controls .owl-buttons .owl-next {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  margin: auto 0;
  width: 48px;
  height: 48px;
  font-size: 32px;
  line-height: 44px;
  color: #777;
  background: rgba(255, 255, 255, 0.95);
}
.project-carousel .owl-controls .owl-buttons .owl-prev:hover,
.project-carousel .owl-controls .owl-buttons .owl-next:hover {
  background: #ffffff;
}
.project-carousel .owl-controls .owl-buttons .owl-prev {
  left: 0;
}
.project-carousel .owl-controls .owl-buttons .owl-next {
  right: 0;
}
/*
 * Project Information
 *---------------------*/
.project-information .title {
  position: relative;
  padding-bottom: 10px;
  border-bottom: solid 1px #eee;
}
.project-information .title::after {
  display: block;
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 20%;
  height: 1px;
  background: #ff5555;
}
.project-information p {
  text-align: justify;
}
.project-information .details {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.project-information .details li {
  padding: 5px 0;
  border-bottom: solid 1px #eee;
}
.project-information .details li span {
  display: inline-block;
  width: 50px;
  font-weight: 500;
}
/*
 * Projects Carousel
 *-------------------*/
.projects-carousel .recent-project {
  margin-right: 10px;
}
.projects-carousel .recent-project .image-popup {
  display: block;
}
.projects-carousel .recent-project .info {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: block;
  padding-top: 10px;
  padding-bottom: 5px;
  color: #777;
}
.projects-carousel .recent-project .info .title {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-bottom: 10px;
}
.projects-carousel .recent-project .info .description {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-bottom: 10px;
}
.projects-carousel .recent-project:hover .info {
  padding-left: 10px;
  color: #fff;
  background: #ff5555;
}
.projects-carousel .recent-project:hover .info .title {
  color: #fff;
}
.projects-carousel .recent-project:nth-child(4n) {
  margin-right: 0 !important;
}
.projects-carousel .owl-controls {
  position: absolute;
  top: -100px;
  right: 5px;
  text-align: center;
}
.projects-carousel .owl-controls .owl-buttons div {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 32px;
  height: 32px;
  line-height: 28px;
  opacity: .9;
  background: #ff5555;
}
.projects-carousel .owl-controls .owl-buttons div i.fa {
  font-size: 16px;
}
/*
 * Projects List
 *---------------*/
.projects-list {
  margin-bottom: 30px;
  overflow: hidden;
}
.projects-list .project-image {
  margin-bottom: 30px;
}
/*--------------------------------------------------------------------------------------------------------------------
 * 404 Page
 *--------------------------------------------------------------------------------------------------------------------*/
.page-404 h1 {
  font-size: 80px;
  font-weight: 600;
}

/*--------------------------------------------------------------------------------------------------------------------
 * Responsive
 *--------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 991px) {
  .header {
    height: auto;
  }
  .breadcrumb {
    float: none;
    text-align: left !important;
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .brand .logo-big {
    display: none !important;
  }
  .brand .logo-small {
    display: inline-block !important;
  }
  .slider {
    text-align: center;
  }
  .stat {
    margin-bottom: 30px;
  }
  .footer .signup-form .btn-theme {
    display: block;
    width: 100%;
  }
  .blog-post .social-inline {
    float: none !important;
  }
}
@media screen and (max-width: 480px) {
  .testimonials-carousel .owl-controls {
    position: static;
  }
  .footer .footer-col {
    float: none;
    width: 100%;
  }
  .footer hr {
    display: none;
  }
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}
.sticky header.entry-header .entry-title {
  position: relative;
}
.sticky header.entry-header .entry-title:before {
  content: "\f11d";
    font-family: FontAwesome;
    position: relative;
    margin: 0 10px;
}

.hentry {
  position: relative;
}

.hentry:after,
.site-main .post-navigation:after,
.site-main .posts-navigation:after,
.site-main .comment-navigation:after,
.site-main .navigation.pagination:after {
  
}
.edsbootstrap-bar {
  position: relative;
}
.edsbootstrap-bar:before {
  content: "";
    position: absolute;
    width: 6px;
    height: calc(100% + 6em);
    background: rgba(76,76,76,0.2);
    top: -3em;
    left: -3em;
  z-index: -1;
}

.edsbootstrap-bar:after {
  content: "";
    position: absolute;
    width: 6px;
    height: 0;
    background: #75b17d;
    top: -3em;
    left: -3em;
  z-index: -1;
  -o-transition: height .3s ease-in-out;
    -moz-transition: height .3s ease-in-out;
    -webkit-transition: height .3s ease-in-out;
    transition: height .3s ease-in-out;
}

.edsbootstrap-bar:hover:after {
  height: calc(100% + 6em);
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
  text-align: justify;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
  text-align: right;
}

header.page-header {
  background: #f2f2f2;
  color: #7c7c7c;
    margin-left: -6em;
    margin-right: -6em;
    margin-top: -3em;
    margin-bottom: 3em;
    text-align: center;
    padding: 1.5em;
}
header.page-header h1 {
  margin: 0;
  letter-spacing: -1px;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.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;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}
h1.logo_text{
  font-size:18px;
  margin-bottom:5px;
  margin-top:10px;  
}
#navigation p.site-description{
  font-size:13px;
  margin:0px;
  padding:0px;
  line-height:18px;
}

.affix-top img.custom-logo{
  max-height:60px;
  width:auto;
  margin-top:3px;
}
.affix img.custom-logo{
  max-height:45px;
  width:auto;
  margin-top:5px;
}
.text-align-center{
  text-align:center;  
}
.slider .owl-buttons{
  position:relative;  
}
.slider .owl-buttons .owl-prev,
.slider .owl-buttons .owl-next{
  background:none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    height: 40px;
    position: absolute;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0s;
    width: 40px;
  top:-250px;
  right:20px;
}
.slider .owl-buttons .owl-prev i,
.slider .owl-buttons .owl-next i{
  display:block;
  line-height:35px;
  font-size:25px; 
}
.slider .owl-buttons .owl-prev{
  right:auto;
  left:20px;
}
.slider .owl-controls .owl-buttons div{
  background:none;  
}
.caption-text{
  font-size:14px;
  line-height:20px;
  padding-bottom:25px;
  display:block;  
}
h2.screen-reader-text{
  display:none; 
}
.search-field{
  border: 1px solid #eaeaea;
  border-radius: 3px;
  box-shadow: none;
  font-family: inherit;
  height: auto;
  padding: 9px 10px;
  font-weight:normal;
}
.search-submit{
  background-color: #ff5555 !important;
    border-color: #ff5555 !important;
    border-radius: 3px;
    color: #fff !important;
    font-family: inherit;
    padding: 9px 10px;
    transition: all 0.3s ease-in-out 0s;
  border:none;
}
ul.instagram-pics{
  margin-left:0px;
  padding-left:0px;
  text-align:left;
}
.blog-post img{
  max-width:100%;
  height:auto;  
}


.footer-wrapper{
  width:100%;
  background:url(assets/img/footer-bg.jpg) top no-repeat #3a3a49;
  margin-top:80px;
}

.footer-top{
  width:100%;
  background:url(assets/img/footer-top.png) top no-repeat;
  height:39px;
  margin-bottom:-39px;
  position:relative;
  z-index:990;
}

.footer-btm{
  width:100%;
  background-color: rgba(0, 0, 0, 0.6);
  color:#c2c2cb;
  padding:24px 0px;
  font-weight:300;
}

.footer-btm font{
  float:right;
}

.footer-btm font a{
  color:#c2c2cb;
  font-weight:300;
  text-decoration:none;
}

.footer-btm font a:hover{
  color:#f7941e;
}

.footer-logo{
  position:relative;
  left:50%;
  margin-left:-155px;
  margin-top:-24px;
}

.footer-wrapper h4{
  text-transform:uppercase;
  width:100%;
  text-align:center;
  padding:0px;
  margin:40px 0px;
  color:#f0e7db;
  font-size:16px;
  font-weight:500;
}

.footer-wrapper h4 b{
  color:#f1592a;
}

.footer-wrapper h4 font{
  margin-left:18px;
  margin-right:18px;
}

.social-media-con{
  text-align:center;
  width:100%;
  float:left;
  margin:25px 0px 30px 0px;
}

.social-media-con a{
  width:40px;
  height:40px;
  background:url(assets/img/social-media.png) no-repeat;
  float:left;
  margin:0px 8px;
} 

.social-media-con a:nth-child(2){
  background-position-x:-41px;
}

.social-media-con a:nth-child(3){
  background-position-x:-82px;
}

.social-media-con a:nth-child(4){
  background-position-x:-123px;
}

.social-media-con a:nth-child(5){
  background-position-x:-164px;
}

.social-media-con a:nth-child(6){
  background-position-x:-205px;
}

.social-media-con a:hover{
  /*background-position-y:-40px;*/
}

.social-media-con span{
  width:230px;
  float:left;
  position:relative;
  left:50%;
  margin-left:-115px;
}

.menus-wrapper{
  margin-top:60px;
  margin-bottom:60px;
}

.menus-wrapper h2{
  width:100%;
  text-transform:uppercase;
  padding:0px;
  margin:0px 0px 40px 0px;
  font-size:38px;
  text-align:center;
  font-family: 'Frank Ruhl Libre', serif;
  font-weight:500;
  color:#4e1419;
}

.menus-wrapper span{
  width:100%;
  height:180px;
  overflow:hidden;
  float:left;
  position:relative;
  z-index:990;
}

.menus-wrapper span img{
  width:100%;
  height:180px;
  object-fit:cover;
  -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.menus-wrapper h4{
  width:100%;
  float:right;
  text-transform:uppercase;
  font-size:22px;
  font-weight:700;
  padding:15px 0px;
  margin:0px 0px 0px 0px;
  letter-spacing:0.5px;
  -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  background-color:#f1592a;
  text-align:center;
  color:#FFFFFF;
}

.menus-wrapper .col-md-3{
  position:relative;
  margin-bottom:0px;
}

.menus-wrapper a:hover h4{
  background-color:#4e1419;
  color:#f6eee8;
}

.menus-wrapper a:hover span img{
  -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.tab-corner{
  position:absolute;
  right:10px;
  bottom:-5px;
}

.specialities-con{
  width:100%;
  background-color:#ded0c6;
  padding-top:60px;
  padding-bottom:60px;
}

.specialities-con .col-md-5 span{
  width:100%;
  height:auto;
  float:right;
}

.specialities-con .col-md-5 span img{
  float:right;
}

.specialities-con h2{
  width:100%;
  text-transform:uppercase;
  padding:0px;
  margin:0px 0px 40px 0px;
  font-size:38px;
  text-align:left;
  font-family: 'Frank Ruhl Libre', serif;
  font-weight:500;
  color:#4e1419;
}

.specialities-con .col-md-6{
  padding-bottom:42px;
}

.specialities-con .col-md-6:nth-child(6),
.specialities-con .col-md-6:nth-child(5){
  padding-bottom:0px;
}

.specialities-con .col-md-6 h5{
  text-transform:uppercase;
  color:#3a3a49;
  padding:0px;
  margin:0px;
  font-size:18px;
  font-weight:500;
}

.specialities-con .col-md-6 h5 font{
  color:#f1592a;
}

.specialities-con .col-md-6 p{
  padding:10px 0px 0px 30px;
  margin:0px;
  font-size:15px;
  color:#3a3a49;
}

.header-top{
  width:100%;
  background:url(assets/img/header-top.jpg) repeat;
}

.last-row .col-md-6{
  padding-bottom:0px;
}

.hala-logo{
  position:relative;
  z-index:995;
  margin-top:15px;
  margin-bottom:15px;
}

.header-top h3{
  text-transform:uppercase;
  font-size:28px;
  font-weight:700;
  padding:0px;
  margin:32px 0px 0px 0px;
}

.header-top h3 a{
  font-size:24px!important;
  font-weight:900;
  color:#4e1419;
}

.header-top h3 font{
  float:left;
  width:100%;
  font-size:18px;
  font-weight:900;
  color:#4e1419;
}

.header-top .phone-col{
  position:relative;
  padding-left:60px;
}

.header-top .phone-col img{
  position:absolute;
  left:0px;
  top:36px;
}

.responsive-slider.flexslider{
  margin-bottom:0px !important;
}

.responsive-slider.flexslider img{
  width:100%;
  height:470px;
  object-fit:cover;
}

.responsive-slider.flexslider .slide .slide-title{
  display:none;
  visibility:hidden;
}

.banner-btm{
  width:100%;
  height:8px;
  background:url(assets/img/banner-btm.png) repeat-x;
  position:relative;
  z-index:998;
  margin-top:-7px;
}

.responsive-slider.flexslider .flex-control-nav{
  display:none;
  visibility:hidden;
}

.welcome-content{
  margin-bottom:60px;
  margin-top:55px;
}

.welcome-content h4{
  width:100%;
  text-align:center;
  padding:0px;
  margin:0px;
  text-transform:uppercase;
  font-family: 'Frank Ruhl Libre', serif;
  font-size:24px;
  color:#000000;
}

.welcome-content h2{
  width:100%;
  text-align:center;
  padding:0px;
  margin:0px 0px 30px 0px;
  text-transform:uppercase;
  font-size: 42px;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 500;
    color: #4e1419;
}

.welcome-icon{
  position:relative;
  left:50%;
  margin-left:-130px;
  z-index:990;
  margin-top:-80px;
}

.welcome-content img{
  width:96%;
  height:310px;
  object-fit:cover;
  margin-top:3px;
  border-radius: 25px;
  float:right;
}

.welcome-content p{
  padding: 0px;
    margin: 0px 0px 20px 0px;
    font-size: 15px;
    color: #3a3a49;
}

.dropdown-menu{
  background-color:#c2370b !important;
}

.welcome-content ul{
  padding:0px 0px 0px 16px;
  margin:0px 0px 20px 0px;
  width:53%;
  float:left;
}

.welcome-content ul li{
  padding:0px;
  margin:6px 0px;
  color: #3a3a49;
  font-weight:500;
  width:50%;
  float:left;
}


.south-indian{
  margin-left:55px;
}

.testimonial-wrapper{
  width:100%;
  background: url(assets/img/test-bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding:55px 0px;
}

.testimonioal-bg{
  width:100%;
  background:url(assets/img/testimonial-bg.jpg) no-repeat left bottom #f6eee8;
  min-height:320px;
  padding-left:100px;
  padding-right:50px;
  margin-top:0px;
}

.testimonioal-bg h2{
  width:100%;
  text-align:center;
  padding:0px;
  margin:55px 0px 25px 0px;
  text-transform:uppercase;
  font-size: 38px;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 500;
    color: #4e1419;
  float:left;
}

.testimonioal-bg p{
  padding: 0px;
    margin: 0px 0px 20px 0px;
    font-size: 15px;
    color: #3a3a49;
  line-height:24px;
  text-align:center;
  font-style:italic;
}

.testimonioal-bg h6{
  color: #000;
  text-transform:uppercase;
  font-weight:600;
  width:100%;
  text-align:center;
  font-size:15px;
  letter-spacing:1px;
}

.this-week-con{
  width:100%;
  background-color:#c6a86c;
  float:left;
  padding-left:22px;
  padding-right:22px;
  margin-top:-130px;
  position:relative;
  z-index:990;
  padding-bottom:25px;
  min-height:420px;
}

.ms-theme-highway{
  padding-bottom:0px !important;
}

.this-week-con h2{
  width:100%;
  text-align:center;
  padding:0px;
  margin:0px 0px 15px 0px;
  text-transform:uppercase;
  font-size: 38px;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 500;
    color: #131313;
  float:left;
}

.this-week-con h4{
  width:100%;
  text-align:center;
  padding:0px;
  margin:45px 0px 0px 0px;
  text-transform:uppercase;
  font-size: 24px;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 500;
    color: #131313;
  float:left;
}

.this-week-con h5{
  width:100%;
  text-align:center;
  color:#131313;
  font-size:15px;
  font-weight:500;
  line-height:22px;
  padding:0px;
  margin:0px 0px 45px 0px;
}

.this-week-con span{
  width:100%;
  float:left;
  background-color:#333333;
  height:160px;
  margin-bottom:20px;
  -moz-border-radius: 20px;
    border-radius: 20px;
  overflow:hidden;
}

.this-week-con span img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.testimonioal-bg .carousel-indicators{
  bottom:-14px;
}

.carousel-indicators .active{
  background-color:#3c3c4a;
}

.carousel-indicators li{
  border:1px solid #3c3c4a;
}


.this-week-con .carousel-indicators{
  bottom:0px;
}

.phone-mail-icon{
  display:none;
  visibility:hidden;
  width:70%;
}

.phone-mail-icon a{
  font-size:24px;
  color:#ffe497;
  margin-right:60px;
}

.innerpage-header{
  width:100%;
  height:200px;
  position:relative;
  
    background: url(assets/img/heading-bg.jpg) no-repeat center center fixed #23222e; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.innerpage-header h1{
  width:100%;
  text-align:center;
  text-transform:uppercase;
  padding:0px;
  margin:65px 0px 0px 0px;
  font-family: 'Frank Ruhl Libre', serif;
    font-weight: 500;
  font-size:42px;
  color:#f6ede7;
}

.about-wrapper{
  margin-top:60px;
  margin-bottom:40px;
}

.about-wrapper p{
  text-align:justify;
  line-height:22px;
  color: #3a3a49;
  padding:0px;
  margin:0px 0px 20px 0px;
}

.about-wrapper h2{
  text-transform:uppercase;
  padding:0px;
  margin:28px 0px 12px 0px;
  font-weight:bold;
  font-size:24px;
}

.about-wrapper .col-md-8{
  padding-right:40px;
}

.booktable-sidebar{
  width:100%;
  background-color:#4e1419;
  margin-top:6px;
  padding:32px 0px;
  float:left;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow:hidden;
}

.booktable-sidebar:hover{
  background-color:#40090e;
}

.booktable-sidebar img{
  width:100%;
}

.booktable-sidebar h3{
  width:100%;
  text-align:center;
  padding:0px;
  margin:18px 0px 0px 0px;
  color:#ffe49a;
  text-transform:uppercase;
  font-weight:bold;
  font-size:32px;
}

.featured-img{
  width:100%;
  float:left;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow:hidden;
  height:355px;
  margin-top:45px;
}

.featured-img img{
  width:100%;
  height:355px;
  object-fit:cover;
}

.menu-item-wrap{
  width:100%;
  height:240px;
  float:left;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow:hidden;
  position:relative;
  margin-top:15px;
  margin-bottom:15px;
}

.menu-item-wrap img{
  width:100%;
  height:260px;
  object-fit:cover;
  -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.menu-item-wrap h3{
  width:100%;
  background-color:rgba(0,0,0,0.70);
  position:absolute;
  color:#ffe49a;
  font-weight:bold;
  text-align:center;
  height:50px;
  text-transform:uppercase;
  padding:14px 0px;
  margin:0px;
  font-size:22px;
  bottom:0px;
  -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  z-index:990;
} 

.menu-item-wrap:hover h3{
  background-color:#c4a66e;
  color:#1a1a1a;
}

.menu-item-wrap:hover img{
  -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.google-maps {
  position: relative;
    padding-bottom: 30%; 
    height: 0;
    overflow: hidden;
  margin:40px 0px 0px 0px;
}

.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.contact-con{
  margin-top:60px;
  margin-bottom:45px;
}

.contact-con .col-md-8{
  padding-left:40px;
}

.contact-con h4{
  padding:0px;
  margin:0px 0px 15px 0px;
  text-transform:uppercase;
  font-size:22px;
  font-weight:bold;
  color:#3c3c4a;
}

.contact-con input{
  background:transparent;
  border:1px solid #b6ada7 !important;
  margin-bottom:15px;
}

.contact-con textarea{
  background:transparent;
  border:1px solid #b6ada7 !important;
  height:180px !important;
  margin-bottom:15px;
}

.wpcf7-submit{
  width:100%;
  text-transform:uppercase;
  font-weight:bold;
  border:none !important;
  background-color:#f0592f !important;
  color:#f6ede7;
  letter-spacing:0.5px;
  padding:8px 0px;
}

.wpcf7-submit:hover{
  background-color:#4f1a1f !important;
}

.page-content, .entry-content, .entry-summary{
  margin-top:0px;
}

.contact-con .col-md-4 p{
  color: #3a3a49;
  margin-bottom:20px;
}

.contact-con .col-md-4 a{
  color: #3a3a49 !important;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
  width:100%;
  float:left;
}

.contact-left{
  width:100%;
  
  padding-left:25px;
  padding-right:25px;
}

.contact-left span{
  width:100%;
  float:left;
  height:160px;
  background-color:#333333;
  margin-bottom:26px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  overflow:hidden;
}

.contact-left span img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.testimonials-wrapper{
  margin-top:30px;
  margin-bottom:55px;
}

.testi-item{
  border:4px solid #c1a367;
  text-align:justify;
  padding:30px;
  margin-top:80px;
}

.testi-item .col-md-9{
  padding-left:40px;
}

.testi-item p{
  line-height: 22px;
    color: #3a3a49;
    padding: 0px;
    margin: 0px 0px 0px 0px;
  font-style:italic;
}

.testi-item h5{
  text-transform:uppercase;
  font-weight:bold;
  padding:0px;
  margin:18px 0px 0px 0px;
}

.testi-item span{
  width:100%;
  float:left;
  background-color:#333333;
  height:200px;
  overflow:hidden;
  -moz-border-radius: 22px;
  border-radius: 22px;
  position:relative;
  margin-top:-80px;
}

.testi-item span img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.testi-item:nth-child(even) .col-md-9{
  padding-left:15px;
  padding-right:40px;
}

.testi-item:nth-child(even) .col-md-3{
  float:right
}

.book-table-con{
  margin-top:60px;
  margin-bottom:50px;
}

.booking-btm{
  width:100%;
  height:9px;
  background:url(assets/img/booking-btm.jpg) repeat-x;
  float:left;
}

.booking-con{
  width:100%;
  border:4px solid #d8c8be;
  float:left;
  padding:40px;
}

.book-table-con h4{
  width:100%;
  background-color:#d8c8be;
  text-align:center;
  float:left;
  padding:20px 0px;
  margin:0px;
  font-size:18px;
}

.book-table-con h4 b{
  font-size:24px;
}

.booking-con input{
  background:transparent;
  border:1px solid #a58876 !important;
  margin-bottom:15px;
}

.booking-con textarea{
  background:transparent;
  border:1px solid #a58876 !important;
  margin-bottom:15px;
  height:256px !important;
}

.booking-con .wpcf7-submit{
  padding:12px 0px;
  border:none !important;
}

.erm_menu:not(.type-erm_menu){
  border:none !important;
}

.erm_menu .erm_title{
  font-family: 'Roboto', sans-serif;
  margin:50px 0px 0px 0px;
  padding:8px 15px;
  font-size:22px;
  font-weight:bold;
  text-transform:uppercase;
  background-color:#f1592a;
  color:#FFFFFF;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.erm_menu .erm_footer_desc{
  border:none;
  padding:0px;
  margin:0px;
}

.erm_product{
  margin:0px 0px 12px 0px;
  padding:0px 0px 12px 0px;
  border-bottom:1px dashed #999999;
}

.erm_product_title{
  font-family: 'Roboto', sans-serif;
  margin:0px;
  padding:0px;
  font-weight:bold;
  font-size:15px;
}

.erm_product_price{
  color:#333333;
  margin-top:0px;
}

.erm_product_price .name{
  font-size:14px;
}

.erm_menu:not(.type-erm_menu) p{
  font-size:14px;
  color:#333333;
}

.erm_menu_content li:last-child{
  border-bottom:none !important;
  padding-bottom:0px;
}

.erm_menu{
  padding-bottom:50px !important;
  margin-bottom:50px !important;
}

.erm_product_price .price{
  padding-left:2px;
}

.erm_menu-id-87 .erm_title,
.erm_menu-id-260 .erm_title,
.erm_menu-id-326 .erm_title,
.erm_menu-id-340 .erm_title,
.erm_menu-id-395 .erm_title,
.erm_menu-id-411 .erm_title,
.erm_menu-id-429 .erm_title,
.erm_menu-id-442 .erm_title{
  margin-top:5px;
}

.single-menupage{
  margin-top:55px;
  margin-bottom:50px;
}

.single-menupage .col-md-8{
  padding-right:40px;
}

.erm_menu:not(.type-erm_menu) p strong{
  font-weight:bold;
}

.dropdown-menu li a{
  padding:8px 20px !important;
  text-transform:uppercase;
}

.menupage-img{
  width:100%;
  height:320px;
  float:left;
  margin-top:45px;
  -moz-border-radius: 4px;
    border-radius: 4px;
  overflow:hidden;
}

.menupage-img img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.f-nav{
  position: fixed; 
  left: 0; 
  top: 0; 
  width: 100%; 
  z-index:1000 !important; 
  box-shadow: 0 2px 2px rgba(2,0,0,.2);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  margin-bottom:50px;
} 

.f-nav .nav li a{
  padding: 12px 43px;
}

span.wpcf7-not-valid-tip{
  font-size:12px;
  margin-top:-12px;
  margin-bottom:10px;
}

.events-single{
  margin-top:60px;
  margin-bottom:30px;
}

.events-single .col-md-8{
  padding-right:40px;
  text-align:justify;
}

.events-single .col-md-8 p {
    padding: 0px;
    margin: 0px 0px 20px 0px;
    font-size: 15px;
    color: #3a3a49;
}

.events-single .col-md-8 h1{
  font-size:24px;
  padding:0px;
  margin:0px 0px 20px 0px;
  text-align:left;
}

.privacy-button{
  width:100%;
  text-align:center;
  background:transparent;
  font-weight:bold;
  border:none;
  margin:10px 0px;
  color:#333333;
}

.modal-body p{
  color:#333333;
  padding:0px;
  margin:0px 0px 0px 0px;
  text-align:justify;
}

.modal-body h6{
  padding:0px;
  margin:24px 0px 8px 0px;
  font-size:16px;
  font-weight:bold;
}

.modal-body h4{
  padding:0px;
  margin:24px 0px 8px 0px;
  font-size:20px;
  font-weight:bold;
}

.modal-title{
  font-weight:bold !important;
  font-size:20px;
}

.erm_menu .erm_section_title {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
  width:100%;
    margin: 20px 0px 15px 0px;
    padding: 5px 0px;
  border:none;
  color:#f1592a;
  font-size:20px;
  font-weight:bold;
}

.erm_menu .erm_product + .erm_section{
  margin-top:20px;
}

.erm_menu:first-child .erm_title{
  margin-top:5px;
}

.banner-shade{
  width:100%;
  background-color:rgba(0,0,0,0.7);
  padding:20px 0px 25px 0px;
  margin-top:-68px;
  position:relative;
  z-index:980;
}

.banner-shade h4{
  padding:0px;
  margin:0px;
  text-transform:uppercase;
  color:#FFFFFF;
  font-weight:bold;
  font-size:20px;
  letter-spacing:0.5px;
}

.banner-shade h4 font{
  color:#f7941e;
}

.discount-img{
  float:right;
  position:relative;
  z-index:985;
  margin-top:-220px;
}

.ms-theme-highway{
  overflow:hidden;
}




@media screen and (max-width: 1024px) {
  
}

@media screen and (max-width: 980px) {

.navbar .nav li a {
    padding: 12px 7px!important;
}

.banner-capt-desk .restaurantguru-img {
   
    margin-top: -317px!important;
  }


  .header-top .col-md-4,
  .welcome-icon,
  .tab-corner,
  .scroll-to-top.in{
    display:none;
    visibility:hidden;
  }
  
  .hala-logo{
    margin-bottom:0px;
    margin-top:10px;
    position:relative;
    margin-left:-150px;
    left:50%;
  }
  
  .welcome-content h4{
    margin-top:25px;
  }
  
  .welcome-content h2,
  .this-week-con h2,
  .testimonioal-bg h2,
  .specialities-con h2,
  .menus-wrapper h2{
    font-size:30px;
  }
  
  .welcome-img{
    width:100%;
    height:auto;
    background:none;
    padding:0px;
    margin:0px 0px 30px 0px;
  }
  
  .welcome-img span{
    width:100%;
    margin:0px 0px 0px 0px;
  }
  
  .welcome-content ul{
    width:100%;
  }
  
  .welcome-content ul li{
    width:100%;
  }
  
  .this-week-con{
    margin-top:0px;
  }
  
  .testimonioal-bg{
    margin-top:0px;
  }
  
  .testimonioal-bg{
    padding-left:12px;
    padding-right:12px;
    padding-bottom:40px;
  }
  
  .welcome-content{
    margin-bottom:20px;
  }
  
  .specialities-con .col-md-5 img{
    width:100%;
    margin:0px;
    left:0px;
  }
  
  .specialities-con .col-md-6{
    padding-bottom:25px !important;
  }
  
  .specialities-con .col-md-6:last-child{
    padding-bottom:0px !important;
  }
  
  .menus-wrapper h2{
    margin-bottom:5px;
  }
  
  .footer-wrapper h4{
    line-height:24px;
  }
  
  .footer-btm{
    text-align:center;
  }
  
  .footer-btm font{
    width:100%;
    text-align:center;
    margin-top:8px;
  }
  
  .menus-wrapper .col-md-3{
    padding-top:30px;
    width:100%;
    float:left;
  }
  
  .navbar .nav li{
    border-right:none;
  }
  
  .social-media-con span{
    width:100%;
    text-align:center;
    margin-left:0px;
    left:0px;
  }
  
  .social-media-con a{
    margin:0px 4px;
  }
  
  .phone-mail-icon{
    /* display:block; */
    visibility:visible;
    position:relative;
    z-index:1000;
    bottom:-18px;
    margin-bottom:-25px;
  }
  
  .single-menupage .col-md-8{
    padding-right:15px;
  }
  
  .erm_product_price{
    margin-top:0px;
  }
  
  .booking-con,
  .testi-item{
    padding:15px;
  }
  
  .testi-item .col-md-9{
    padding-left:15px !important;
    padding-right:15px !important;
  }
  
  .contact-con .col-md-8{
    padding-left:15px;
  }
  
  .menus-wrapper .col-md-3{
    width:50%;
  }
  
  .specialities-con .col-md-5 span{
    width:100%;
    margin-bottom:25px;
  }
  
  .discount-img{
    margin-top:0px;
  }
  
  .banner-shade{
    margin-top:0px;
    text-align:center;
    padding:15px 0px;
    background-color: rgba(0,0,0,0.0);
  }
  
  .banner-shade h4 font{
    color:#f0592f;
  }
  
  .banner-shade h4{
    font-size:18px;
    color:#000;
  }
  
  .discount-img{
    margin-bottom:-50px;
    position:relative;
    left:50%;
    margin-left:-179px !important;
    float:left;
  }
}

@media screen and (max-width: 650px) {
  
}

@media screen and (max-width: 480px) {
  
  .menus-wrapper .col-md-3{
    width:100%;
  }
  
}

@media screen and (max-width: 320px) {

}

@media screen and (max-width: 240px) {

} 




input[type="text"]:disabled {
  background: #dddddd!important;
}




.restaurantguru-img {
    float:left;
    position: relative;
    z-index: 985;
    margin-top: -374px!important;
    width: 13%;
}