@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Cookie&display=swap');
html {
  overflow-x: hidden;
}

body {
  font-size: 14px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #727272;
  line-height: 25px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-size: 22px;
  color: #272727;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
hr {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    border-top: 1px solid rgb(2, 2, 2) !important;
}
a {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:hover {
  text-decoration: none;
}

a a:focus {
  outline: none;
}

p {
  color: #727272;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  margin: 0px;
  font-size: 15px;
}

ul, ol {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

ul li, ol li {
  list-style: none;
}
.mt-6{
    margin-top:6rem;
}
.hero-heading {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  line-height: 70px;
  letter-spacing: 0.1rem;
}

.section-title-header {
  margin-bottom: 30px;
}

.section-title-header p {
  font-size: 14px;
  text: center;
  font-weight: 400;
  line-height: 22px;
}

.section-title {
  font-size: 30px;
  color: #272727;
  padding-bottom: 15px;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin: 0;
  text-transform: uppercase;
}

/*.section-title:before {
  position: absolute;
  content: '';
  height: 1px;
  width: 60px;
  left: 50%;
  bottom: 15px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #dc3545;
}

.section-title:after {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  left: 50%;
  bottom: 10px;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #014b88;
}*/

.small-title {
  font-size: 15px;
  margin-top: 20px;
  font-weight: 500;
  padding: 15px 0;
}

.page-title {
  font-size: 62px;
  font-weight: 700;
  color: #fff;
}

.medium-title {
  font-size: 22px;
  color: #272727;
  font-weight: 500;
  margin-bottom: 30px;
}



.btn {
  font-size: 14px;
  padding: 12px 32px;
  border-radius: 0px;
  cursor: pointer;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: inline-block;
}

.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
}

.btn-common {
  background-color: #014b88;
  position: relative;
  z-index: 1;
  color: #fff;
}

.btn-common:hover {
     color: #fff;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.15), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    background: #014b88;
    opacity: 0.9;
}

.btn-common::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.btn-common:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
}

.btn-border {
    color: #336e9f;
  background-color: #f9f9f9;
    border: 2px solid #fff;
    border-radius: 0px;
    padding: 10px 20px;
}

.btn-border:hover {
   color: #336e9f;
   font-weight:bold;
   background-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 12px 18px;
  text-transform: uppercase;
  font-size: 15px;
}

.btn-rm {
  padding: 7px 10px;
  text-transform: capitalize;
}

button:focus {
  outline: none !important;
}

.icon-close, .icon-check {
  color: #014b88;
}

/* ---------------------------------- */
/* Social Icons
------------------------------------- */
.social-icons {
  padding-left: 5px;
}

.social-icons li {
  display: inline;
  float: left;
  text-align: left;
  margin-right: 16px;
  margin-top: 11px;
}

.social-icons li a {
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  color: #272727;
  font-size: 16px;
  background-color: #f3f3f3;
  -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;
  border: 1px solid transparent;
}

.social-icons li .facebook:hover {
  background: #3b5999;
}

.social-icons li .twitter:hover {
  background: #4A9CEC;
}

.social-icons li .instagram:hover {
  background: #D6274D;
}

.social-icons li .linkedin:hover {
  background: #1260A2;
}

.social-icons li .google:hover {
  background: #CE332A;
}

.social-icons li a:hover {
  color: #fff;
}

/* ScrollToTop */
a.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
  text-decoration: none;
}

a.back-to-top i {
  display: block;
  font-size: 22px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  background: #014b88;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}

a.back-to-top:hover, a.back-to-top:focus {
  text-decoration: none;
}

.owl-carousel.item img {
  display: block;
  width: 50%;
  height: auto;
}

.owl-carousel .owl-controls .owl-page {
  display: inline-block;
}

.owl-carousel .owl-controls .owl-page span {
  background: none repeat scroll 0 0 #fff;
  border-radius: 4px;
  display: block;
  height: 12px;
  margin: 5px 7px;
  opacity: 0.5;
  width: 12px;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999999;
}

.loader {
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
}

#loader-1:before, #loader-1:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 7px solid transparent;
  border-top-color: #014b88;
}

#loader-1:before {
  z-index: 100;
  animation: spin 2s infinite;
}

#loader-1:after {
  border: 7px solid #fafafa;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.section-padding {
  padding: 60px 0;
}

.no-padding {
  padding: 0 !important;
}

.padding-left-none {
  padding-left: 0;
}

.padding-right-none {
  padding-right: 0;
}

#page-banner-area {
  background: url(../images/page-banner.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.page-banner {
  position: relative;
  min-height: 200px;
  color: #fff;
}

.page-banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-banner .page-banner-title {
  position: relative;
  padding: 68px;
}

.page-banner .page-banner-title h2 {
  margin: 0 0 15px;
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.page-banner a {
  color: #fff;
  font-size: 14px;
}

.page-banner a:hover {
  color: #014b88;
}

.page-banner .crumbs-spacer i {
  vertical-align: middle;
  font-size: 12px;
  margin: 5px;
}

.page-banner .current {
  color: #fff;
}

.pagination-container {
  display: inline-block;
  margin-top: 10px;
}

.pagination-container .pagination .page-item .page-link {
  margin: 0 10px;
  padding: 15px 20px;
  color: #014b88;
  border-color: #f3f3f3;
  border-radius: 4px;
  background: #fff;
}

.pagination-container .pagination .page-item .page-link:hover {
  background: #014b88;
  box-shadow: none;
  color: #fff;
}

.pagination-container .pagination .page-item .page-link:focus {
  box-shadow: none;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.top-bar {
  background: #014b88;
}

.top-bar .links li {
  display: inline-block;
  line-height: 42px;
  color: #fff;
  margin-right: 15px;
  font-size: 14px;
}

.top-bar .links li a {
  display: block;
  margin-right: 15px;
  color: #fff;
  line-height: 32px;
}

.top-bar .links li i {
  font-size: 14px;
  color: #fff;
  padding-right: 5px;
  vertical-align: middle;
}

.sticky.is-sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.header-top-right {
  margin-right: 15px;
  line-height: 42px;
  color: #fff;
}

.header-top-right .header-top-button {
    color: #ffbf00;
    font-size: 14px;
    margin: 8px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-weight: 700;
}

.header-top-right .header-top-button i {
  font-size: 13px;
  margin-right: 3px;
  font-weight: 700;
}

.header-top-right .header-top-button:hover {
  color: #f1f1f1;
}

.roof-social a {
  color: #ffffff;
  float: left;
  font-size: 18px;
  text-align: center;
  line-height: 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  transition: all .4s ease 0s;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.roof-social a i {
  min-width: 40px;
  display: inline-block;
}

.roof-social a:hover {
  color: #fff;
  background: #014b88;
}

.roof-social a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.roof-social .facebook:hover {
  background: #3b5999;
  border-left-color: #3b5999;
}

.roof-social .twitter:hover {
  background: #4A9CEC;
  border-left-color: #4A9CEC;
}

.roof-social .instagram:hover {
  background: #D6274D;
  border-left-color: #D6274D;
}

.roof-social .linkedin:hover {
  background: #1260A2;
  border-left-color: #1260A2;
}

.roof-social .google:hover {
  background: #CE332A;
  border-left-color: #CE332A;
}

.navbar-brand {
  position: relative;
  padding: 0px;
  margin: 0;
}

.navbar-brand img {
  width: 90%;
}

.top-nav-collapse {
  background: #fff;
  z-index: 999999;
  top: 0px !important;
  min-height: 58px;
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  background: #fff !important;
}

.top-nav-collapse .navbar-brand {
  top: 0px;
}

.top-nav-collapse .navbar-nav .nav-link {
  color: #333 !important;
}

.top-nav-collapse .navbar-nav .nav-link:hover {
  color: #014b88 !important;
}

.top-nav-collapse .navbar-nav li.active a.nav-link {
  color: #fff !important;
}

.indigo {
  background: transparent;
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #000;
  padding: 0 5px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 40px;
  text-transform: uppercase;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #014b88;
  outline: none;
}

.navbar {
  padding: 0;
}

.navbar li.active a.nav-link {
  color: #fff !important;
  background: #3193c6;
  border-radius: 4px;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0px;
  box-shadow: 0 3px 10px rgba(218, 235, 255, 0.51);
  -webkit-box-shadow: 0 3px 10px rgba(218, 235, 255, 0.51);
  position: absolute;
  z-index: 99;
  min-width: 165px;
  background-color: #fff;
  border-top: 1px solid #014b88;
  white-space: nowrap;
  animation: fadeIn 0.4s;
  -webkit-animation: fadeIn 0.4s;
  -moz-animation: fadeIn 0.4s;
  -o-animation: fadeIn 0.4s;
  -ms-animation: fadeIn 0.4s;
}

.dropdown:hover .dropdown-menu {
  display: block;
  position: absolute;
  text-align: left;
  top: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  padding: 5px 23px;
  font-size: 14px;
  color: #272727;
  background-color: transparent;
  border-bottom: 1px solid #f0f0f0;
  display: inline-block;
  float: left;
  clear: both;
  position: relative;
  outline: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.dropdown .dropdown-menu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.dropdown .dropdown-item:focus,
.dropdown .dropdown-item:hover,
.dropdown .dropdown-item.active {
  color: #FFF;
  text-decoration: none;
  background-color: #014b88;
}

.dropdown-item.active, .dropdown-item:active {
  background: transparent;
}

.search-add {
  margin: 15px 0px 0px 0px;
}

.search-add .form-group {
  position: relative;
}

.search-add input {
  border: 1px solid #e5e5e5;
  padding: 7px 40px 7px 15px;
  border-radius: 4px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.search-add input:focus {
  box-shadow: none;
  outline: none;
  border-color: #014b88;
}

.search-add .search-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  color: #272727;
  border: none;
  cursor: pointer;
  background: transparent;
  font-size: 18px;
}

.fadeInUpMenu {
  -webkit-animation-name: fadeInUpMenu;
  animation-name: fadeInUpMenu;
}

.slicknav_btn {
  border-color: #014b88;
}

.slicknav_menu .slicknav_icon-bar {
  background: #014b88;
}

/* only small tablets */
@media (min-width: 768px) and (max-width: 991px) {
  #nav-main li a.nav-link {
    padding-top: 18px;
  }
}

.navbar-toggler {
  display: none;
}

.mobile-menu {
  display: none;
}

.slicknav_menu {
  display: none;
}

@media screen and (max-width: 991px) {
  .navbar-header {
    width: 100%;
  }
  .navbar-brand {
    position: absolute;
    padding: 0px 15px;
    top: 0;
  }
  .navbar-brand img {
    width: 75%;
  }
  .slicknav_menu {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .navbar-header {
    width: 100%;
  }
  .navbar-brand {
    position: absolute;
    padding: 0px 15px;
    top: 0;
  }
  .navbar-brand img {
    width: 75%;
  }
  #mobile-menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
  }
  .slicknav_nav .active a {
    background: #E91E63;
    color: #fff;
  }
  .slicknav_nav .dropdown li a.active {
    background: #f8f9fa;
    color: #014b88;
  }
  .slicknav_nav .dropdown li a:focus {
    outline: none;
  }
}

/*====================================================
intro section style
====================================================*/
.section-intro {
  background: url("../images/callout.jpg") center center no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
  width: 100%;
}

.section-intro:before {
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background-color: rgba(42, 46, 50, 0.8);
  position: absolute;
}

.search-container {
  display: inline-block;
  width: 100%;
  position: relative;
  text-align: center;
}

.search-container .intro-sub-heading {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    /* margin-bottom: 20px; */
    letter-spacing: 0.1rem;
    text-align: left;
}

.search-container .intro-title {
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  line-height: 60px;
  margin-bottom: 15px;
  text-align:left;
}
.search-container p{
    font-size: 25px;
    margin-bottom: 40px;
}
.search-container .content {
  background: #fff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.search-container .form-group {
  margin-bottom: 30px !important;
}

.search-container .form-group input {
  height: 48px;
}

.search-container .search-category-container select {
  background-color: transparent;
  border: 1px solid #e5e5e5;
  color: #272727;
  height: 48px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.search-container .search-category-container select:focus {
  outline: none;
  box-shadow: none;
}

.search-container .search-category-container .styled-select {
  width: 100%;
  margin-bottom: 30px;
}

.search-container .btn-section .btn-common {
  width: 100%;
  padding: 12px 32px;
}

.search-container .btn-section .btn-common i {
  margin-right: 5px;
}

.show-options {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  margin-top: -20px;
  text-transform: uppercase;
  line-height: 20px;
  color: #014b88;
}

.show-options:before {
  content: "\e9d6";
  font-family: 'LineIcons' !important;
  position: absolute;
  top: 0px;
  left: -2px;
}

.show-options:hover {
  color: #014b88;
}

.show-options.active:before {
  content: "\e9bc";
}

.irs-with-grid {
  margin-top: -7px;
}

.irs-bar {
    background-color: #014b88;
}

select.classic {
  background-image: linear-gradient(45deg, transparent 50%, #272727 50%), linear-gradient(135deg, #272727 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(15px + 5px), calc(100% - 15px) calc(15px + 5px), 100% 0;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.about .img-thumb {
  border-radius: 4px;
  margin-bottom: 40px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.about .img-thumb:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-color: #222;
  opacity: 0.3;
  z-index: 99;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.about .img-thumb img {
  width: 100%;
  border-radius: 4px;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
}

.about .img-thumb:hover:before {
  background-color: #014b88;
  opacity: 0.7;
}

.about .img-thumb:hover img {
  transform: scale(1.06);
}

.about .about-conter h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.about .about-conter p {
  margin-bottom: 10px;
}

/* ==========================================================================
   Property Section
   ========================================================================== */
.property {
  background: #fafafa;
}

.property-main {
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  cursor: pointer;
}

.property-main:hover {
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.14);
}

.property-wrap {
  background: #fff;
  width: 100%;
  border-radius: 4px;
}

.item-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.item-thumb a {
  display: block;
}

.item-thumb a img {
  border-radius: 4px 4px 0px 0px;
    max-width: 100%;
    transition: all 0.3s;
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
}

.item-thumb:hover {
  opacity: 0.9;
  transform: scale(1.1);
  transition: 1s;
  overflow: hidden;
  position: relative;
}
label {
    display: inline-block;
    margin-bottom: .5rem;
    font-weight: 700!important;
    color: #000!important;
}
.label-inner {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 3;
}

.label-inner .label {
  display: inline-block;
  color: #fff;
  border-radius: 0px;
  font-size: 12px;
  padding: 7px 18px;
  text-transform: uppercase;
  margin-bottom: 0px;
  line-height: 15px;
  vertical-align: top;
}

.label-inner .label-status {
  background: #3193c6;
}

.item-body {
  padding: 20px;
  width: 100%;
  background: aliceblue;
}

.item-body .property-title {
  margin-bottom: 10px;
}

.item-body .property-title a {
  font-size: 18px;
  color: #272727;
  font-weight: 500;
}

.item-body .property-title a:hover {
  color: #014b88;
}

.item-body .adderess {
  color: #999;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

.item-body .pricin-list {
    display: inline-block;
    color: #fff!important;
    border-radius: 0px;
    font-size: 12px;
    padding: 7px 18px;
    text-transform: uppercase;
    background :#537502c7;
}

.item-body .pricin-list a{
color:#FFF;
}
.property-price{
   text-align: right;
    font-size: 22px;
    color:#000;
    font-weight: 600;
}

.item-body .pricin-list .property-price {
  font-size: 26px;
  font-weight: 700;
  color: #014b88;
  margin-bottom: 15px;
}

.item-body .pricin-list p span {
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

.item-body .pricin-list .view-iocn {
  position: absolute;
  bottom: 0px;
  right: 15px;
}

/* latest-property */
#latest-property .item {
  margin: 0px 10px;
}

.img-box {
  height: 350px;
  display: inline-block;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 90;
  margin: 10px 0;
  border-radius: 4px;
}

.img-box .img-box-content {
  position: absolute;
  z-index: 101;
  top: 50%;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  transform: translate(0, -50.5%);
}

.img-box .img-box-content h4 {
  font-size: 22px;
  line-height: 36px;
  color: #fff;
  margin: 0;
}

.img-box .img-box-content span {
  font-size: 16px;
  color: #fff;
}

.img-box .img-box-background {
  background-size: cover;
  background-position: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.55s;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  transition: transform 0.35s ease-out;
}

.img-box:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-color: #222;
  opacity: 0.3;
  z-index: 99;
  transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
}

.img-box:hover:before {
  background-color: #014b88;
  opacity: 0.7;
}

.img-box:hover .img-box-background {
  transform: scale(1.06);
}

.card-hight {
  height: 161px;
}

.bg-red {
  background: #014b88 !important
}

.bg-yellow {
  background: #0a518c !important;
}

.product-filter {
  height: 40px;
  margin-bottom: 20px;
  line-height: 40px;
}

.product-filter .sort-by {
  position: relative;
}

.product-filter .sort-by span {
  margin-right: 15px;
  float: left;
}

.product-filter .sort-by .sort-by-select {
  display: inline-block;
  float: left;
  margin-right: 15px;
  position: relative;
}

.product-filter .sort-by .sort-by-select select {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 40px 0px 15px;
  height: 38px;
  line-height: 38px;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  color: #888;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
  border-radius: 4px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.product-filter .sort-by .sort-by-select select:focus {
  box-shadow: none;
  outline: none;
}

.product-filter .sort-by .sort-by-select i {
  position: absolute;
  top: 13px;
  right: 15px;
  color: #272727;
  z-index: 999;
}

.product-filter .layout-switcher {
  float: right;
  margin-left: 30px;
}

.product-filter .layout-switcher a {
  width: 36px;
  height: 36px;
  background-color: #f0f0f0;
  display: inline-block;
  border-radius: 4px;
  color: #a0a0a0;
  font-size: 20px;
  line-height: 38px;
  margin-left: 5px;
  text-align: center;
  transition: all 0.3s;
}

.product-filter .layout-switcher .active {
  background-color: #014b88;
  color: #fff;
}

.listing-container {
  position: relative;
  z-index: 9;
}

.grid-layout {
  left: -1.5%;
  width: 103%;
  position: relative;
}

.grid-layout .property-main {
  display: inline-block;
  width: 47%;
  float: left;
  margin-left: 1.5%;
  margin-right: 1.5%;
  position: relative;
}

.list-layout .property-main {
  display: flex;
  overflow: hidden;
  margin: 0 0 30px 0;
}

.list-layout .property-main {
  width: 100%;
}

.list-layout .property-main .item-thumb {
  width: 320px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

.list-layout .property-main .item-body {
  padding: 30px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 500;
  color: #272727;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
}

.sidebar.right {
  padding-left: 20px;
  margin-top: 12px;
}

.sticky .widget {
  position: relative;
}

.sticky .widget select {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 18px;
  height: 48px;
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
  background-color: #fcfcfc;
  color: #888;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
  border-radius: 4px;
  width: 100%;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.sticky .widget select:focus {
  box-shadow: none;
  outline: none;
}

.sticky .widget i {
  position: absolute;
  top: 17px;
  right: 30px;
  color: #272727;
  z-index: 999;
}

.range-area,
.price-range {
  margin-top: 20px;
}

.range-area label,
.price-range label {
  margin-bottom: 10px;
}

#area-range .form-control {
  width: 30%;
  float: left;
}

#area-range span {
  float: left;
  line-height: 40px;
  margin: 0px 10px;
}

.more-search-options {
  margin-top: 30px;
}

.fullwidth {
  width: 100%;
}

/* Custom Checkboxes */
.checkboxes {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.checkboxes li {
  padding: 4px 0;
}

.checkboxes .in-row label {
  margin-top: 9px;
}

.checkboxes .one-in-row label {
  margin-top: 9px;
  width: 100%;
}

.checkboxes label {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  position: relative;
  padding-left: 28px;
  margin-right: 20px;
  margin-bottom: 10px;
  font-size: 15px;
}

.checkboxes label span {
  color: #909090;
  font-size: 15px;
}

.checkboxes label:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  margin-top: 5px;
  left: 0;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkboxes li:last-child {
  margin-bottom: -8px;
}

.checkboxes input[type=checkbox]:checked + label:before {
  content: "\e938";
  font-family: 'LineIcons' !important;
  color: #014b88;
  display: inline-block;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  text-align: center;
  line-height: 15px;
  text-align: center;
}

.checkboxes input[type=checkbox] {
  display: none;
}

/* ==========================================================================
Property wrapper Style
========================================================================== */
.property-details {
  margin-bottom: 40px;
  padding: 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.property-details .info h3 {
  font-size: 30px;
  color: #272727;
  margin-bottom: 8px;
}

.property-details .info h3 span {
  background: #fb1d51;
  color: #ffffff;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 9px;
}

.property-details .details {
  margin-top: 34px;
}

.property-details .details .details-listing {
  float: left;
  width: 33.33%;
}

.property-details .details .details-listing p {
  margin-bottom: 0;
  color: #272727;
  line-height: 26px;
}

.property-details .details .details-listing h5 {
  margin: 0;
  font-size: 16px;
  color: #888;
}

.property-details .others {
  margin-top: 34px;
}

.property-details .others ul li {
  float: right;
  margin-left: 20px;
}

.property-details .others ul li a {
  height: 40px;
  width: 40px;
  font-size: 16px;
  line-height: 42px;
  text-align: center;
  background: #014b88;
  color: #ffffff;
  border-radius: 4px;
  display: inline-block;
}

.property-details .others ul li span {
  color: #272727;
  font-size: 36px;
  line-height: 36px;
  margin-top: 5px;
}

.details-thumb {
  margin-bottom: 30px;
}

.desc-title {
  font-size: 22px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e0e0e0;
}

.property-dsc {
  margin-bottom: 30px;
}

.additional-details li strong {
  margin-right: 10px;
  font-weight: 700;
  color: #272727;
}

.additional-details li strong span {
  color: #888;
}

.property-features {
  width: 100%;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}

.property-features li {
  color: #272727;
  display: block;
  margin: 0 0 7px 0;
  padding: 0;
  font-weight: 700;
}

.property-features li span {
  color: #888;
}

.property-features li i {
  margin-right: 5px;
  color: #014b88;
}

.accordion-fp .card {
  margin-bottom: 20px;
}

.accordion-fp .card .card-header {
  padding: 0;
}

.accordion-fp .accordion-heading {
  font-size: 18px;
  margin: 0;
}

.accordion-fp .accordion-heading a {
  color: #272727;
}

.accordion-fp button {
  border: none;
}

.accordion-fp .accordion-title {
  color: #272727;
  background-color: #fbfbfb;
  width: 100%;
  cursor: pointer;
  text-align: left;
  padding: 12px;
}

.accordion-fp .card-body {
  padding: 30px;
  border-top: none;
}

.location-map {
  width: 100%;
  height: 460px;
  overflow: hidden;
}

.property-slider {
  position: relative;
  margin-bottom: 30px;
}

.property-slider .item img {
  width: 100%;
}

.property-slider .owl-controls .owl-buttons .owl-next,
.property-slider .owl-controls .owl-buttons .owl-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: #014b88;
  color: #ffffff;
  border-radius: 4px;
  z-index: 99;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.property-slider .owl-controls .owl-buttons .owl-next {
  right: 15px;
}

.property-slider .owl-controls .owl-buttons .owl-prev {
  left: 15px;
}

.property-slider:hover .owl-controls .owl-buttons .owl-next,
.property-slider:hover .owl-controls .owl-buttons .owl-prev {
  opacity: 1;
}

.inner-box {
  margin-bottom: 30px;
}

.widget-button {
  height: 41px;
  text-align: center;
  width: 41px;
  float: left;
  border: none;
  cursor: pointer;
  background-color: #f3f3f3;
  color: #333;
  border-radius: 4px;
  margin-right: 5px;
  display: inline-block;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.widget-button:hover {
  background: #014b88;
  color: #fff;
}

.widget-button i {
  top: 0;
  line-height: 41px;
  left: 2px;
  opacity: 0.9;
  font-size: 18px;
}

.agent-inner {
  background-color: #fff;
  color: #707070;
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: 0.25s;
}

.agent-inner .agent-title {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  width: 100%;
}

.agent-inner .agent-title .agent-photo {
  float: left;
  display: block;
}

.agent-inner .agent-title .agent-photo img {
  border-radius: 4px;
  max-width: 72px;
}

.agent-inner .agent-title .agent-details {
  margin-left: 92px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.agent-inner .agent-title .agent-details h3 {
  font-size: 16px;
}

.agent-inner .agent-title .agent-details h3 a {
  color: #272727;
  margin: 0pc 0 6px 0;
}

.agent-inner .agent-title .agent-details span {
  color: #888;
}

.agent-inner .agent-title .agent-details span i {
  margin-right: 5px;
}

.agent-inner .form-control {
  margin-bottom: 20px;
}

.listing-item {
  background-color: #f3f3f3;
  display: block;
  width: 100%;
  border-radius: 4px;
  position: relative;
}

.listing-item img {
  width: 100%;
  border-radius: 4px 4px 0 0;
}

/* Content on */
.listing-content {
  padding: 15px;
  display: inline-block;
  width: 100%;
}

.listing-content .listing-title {
  color: #272727;
  font-size: 20px;
}

.listing-content .listing-title i {
  display: block;
  font-style: normal;
  font-size: 17px;
  padding: 0;
  margin: 2px 0 0 0;
}

.listing-content .listing-content {
  position: relative;
  width: 100%;
  background-color: #014b88;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  font-size: 14px;
  padding: 15px;
  margin-top: 15px;
}

.listing-content .listing-content li {
  display: inline-block;
  color: #fff;
  line-height: 20px;
  padding: 8px;
  position: relative;
  transition: all 0.5s;
}

.listing-content .listing-content li span {
  display: block;
  font-size: 14px;
  color: #fff;
}

.listing-badges {
  position: absolute;
  top: 0;
  z-index: 999;
  right: 0;
  width: 100%;
  display: block;
  font-size: 13px;
  padding: 0px;
  overflow: hidden;
  height: 100px;
}

.listing-badges span {
  color: #fff;
  display: inline-block;
  padding: 1px 10px;
  float: right;
  background-color: rgba(74, 74, 76, 0.7);
  border-radius: 4px;
  top: 15px;
  right: 15px;
  position: absolute;
}

.listing-badges .featured {
  background-color: #014b88;
  float: left;
  transform: rotate(-45deg);
  left: -67px;
  top: 17px;
  position: relative;
  text-align: center;
  width: 200px;
  font-size: 12.5px;
  margin: 0;
}

#listing-carousel .owl-controls .owl-buttons {
  position: absolute;
  top: 50%;
  right: 0;
  top: -40px;
  height: 0;
  color: #fff;
  height: 60px;
  transform: translate(0, -50%);
  z-index: 99;
}

#listing-carousel .owl-controls .owl-buttons div {
  color: #888;
  position: absolute;
  z-index: 101;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 15px;
  transition: all 0.3s;
  border: 1px solid #f3f3f3;
  height: 32px;
  width: 32px;
  border-radius: 4px;
  text-align: center;
  line-height: 32px;
  padding: 0;
}

#listing-carousel .owl-controls .owl-buttons .owl-prev:hover {
  background: #014b88;
  color: #fff;
}

#listing-carousel .owl-controls .owl-buttons .owl-next:hover {
  background: #014b88;
  color: #fff;
}

#listing-carousel .owl-controls .owl-buttons .owl-prev {
  right: 35px;
  left: auto;
}

#listing-carousel .owl-controls .owl-buttons .owl-next {
  right: 0;
}

.mortgage-calc .tip-content {
  margin-bottom: 10px;
}

.mortgage-calc .calc-input {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.mortgage-calc label {
  background: linear-gradient(to bottom, #f8f8f8 0%, #f0f0f0);
  color: #888;
  border-radius: 4px 0px 0px 4px;
  top: 1px;
  left: 1px;
  position: absolute;
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 48px;
  line-height: 42px;
  height: 42px;
}

.mortgage-calc input,
.mortgage-calc input:focus {
  padding-left: 65px;
  margin-bottom: 0;
  background-color: #fdfdfd;
  transition: border 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.mortgage-calc input:focus {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

/*----------------------------------------------
  Dashboard Body
-----------------------------------------------*/
.dashborad-box {
  padding: 30px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 0 20px rgba(38, 38, 38, 0.2);
  box-shadow: 0 0 20px rgba(38, 38, 38, 0.2);
}

.dashborad-box .title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.dashborad-box .item {
  margin-bottom: 20px;
}

.dashborad-box .item .icon {
  float: left;
  width: 50px;
  position: relative;
}

.dashborad-box .item .icon:before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: #d7d7d7;
}

.dashborad-box .item .icon span {
  font-size: 32px;
  color: #014b88;
}

.dashborad-box .item .info {
  padding-left: 20px;
  float: left;
}

.dashborad-box .item .info .number {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #272727;
}

.dashborad-box .item .info .type {
  font-size: 14px;
  color: #888;
}

.dashborad-box .item:after {
  display: table;
  content: "";
  clear: both;
}

.listing-table .table thead tr .rating span {
  background: #f3f3f3;
  padding: 0 3px;
  border-radius: 4px;
}

.listing-table .table thead tr .status .active {
  background: #f3f3f3;
  color: #ffffff;
  padding: 0 3px;
  border-radius: 4px;
}

.listing-table .table thead tr .status .non-active {
  background: #d7d7d7;
  padding: 0 3px;
  border-radius: 4px;
}

.listing-table .table thead tr .edit a span {
  color: #014b88 !important;
}

.listing-table .table thead tr th {
  margin-bottom: 0;
  border: none;
}

.messages .message {
  margin-top: 30px;
}

.messages .message:after {
  display: table;
  content: '';
  clear: both;
}

.messages .message .thumb {
  height: 120px;
  width: 120px;
  float: left;
  border-radius: 4px;
  overflow: hidden;
}

.messages .message .body {
  position: relative;
  float: left;
  width: calc(100% - 120px);
  padding-left: 20px;
}

.messages .message .body h6 {
  font-size: 18px;
}

.messages .message .body h6 .badge {
  background: #014b88;
  color: #ffffff;
}

.messages .message .body .post-time {
  margin-bottom: 0;
  color: #014b88;
}

.messages .message .body .controller {
  position: absolute;
  top: 0;
  right: 0;
}

.messages .message .body .controller ul li {
  display: inline-block;
  margin-left: 6px;
}

.messages .message .body .controller ul li a {
  color: #888;
}

.messages .message .body .controller ul li a:hover {
  color: #014b88;
}

.review {
  margin-top: 30px;
  display: inline-block;
}

.review .thumb {
  height: 120px;
  width: 120px;
  float: left;
  border-radius: 4px;
  overflow: hidden;
}

.review .thumb:after {
  display: table;
  content: '';
  clear: both;
}

.review .body {
  position: relative;
  float: left;
  width: calc(100% - 120px);
  padding-left: 20px;
}

.review .body h6 .stars {
  margin-left: 10px;
  font-size: 1rem;
}

.review .body h6 .stars i {
  color: #fcc200;
}

.review .body .post-time {
  margin-bottom: 0;
  color: #014b88;
}

.review .body .controller {
  position: absolute;
  top: 0;
  right: 0;
}

.review .body .controller ul li {
  display: inline-block;
  margin-left: 6px;
}

.review .body .controller ul li a {
  color: #888;
}

.review .body .controller ul li a:hover {
  color: #014b88;
}

.password-section {
  margin-top: 20px;
}

.password-section h6 {
  margin-bottom: 10px;
  color: #014b88;
}

.user-profile-box {
  background: #ffffff;
  box-shadow: 0 0 20px rgba(38, 38, 38, 0.2);
  margin: 0 auto 50px;
}

.user-profile-box .header {
  padding: 30px 20px 120px;
  text-align: center;
  position: relative;
  background-repeat: no-repeat;
  border: none;
  margin: 0;
  background: rgba(0, 0, 0, 0.04) url(../img/avatar/user-bg.jpg) top left repeat;
  background-size: cover;
  color: #ffffff;
}

.user-profile-box .header h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
}

.user-profile-box .header h4 {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

.user-profile-box .profile-img {
  border-radius: 4px;
  background-clip: padding-box;
  border: 5px solid #fff;
  bottom: -75px;
  float: left;
  height: 160px;
  width: 160px;
  left: 50%;
  margin-left: -75px;
  position: absolute;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1), 0 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.user-profile-box .detail {
  padding-top: 100px;
}

.user-profile-box .detail ul li a {
  color: #727272;
  border-bottom: 1px solid #f5f5f5;
  padding: 12px 20px;
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.user-profile-box .detail ul li a i {
  margin-right: 10px;
}

.user-profile-box .detail ul li .active {
  background: #fafafa;
  color: #014b88;
  font-weight: 500;
}

.user-profile-box .detail ul li a:hover {
  background: #fafafa;
  color: #014b88;
}

.my-address {
  background: #FFFFFF;
  box-shadow: 0 0 20px rgba(38, 38, 38, 0.2);
  padding: 30px;
}

.my-properties {
  background: #FFFFFF;
  box-shadow: 0 0 20px rgba(38, 38, 38, 0.2);
  padding: 30px;
}

.my-properties table {
  width: 100%;
  display: table;
}

.my-properties table thead tr th {
  font-size: 16px;
  background-color: #f3f3f3;
  border: none;
  font-weight: 700;
  padding: 10px 10px 10px 0;
}

.my-properties table thead tr th:first-child {
  padding-left: 30px;
}

.my-properties table tbody tr td {
  border-top: none;
  border-bottom: 1px solid #f3f3f3;
  padding: 30px 20px 30px 0;
  vertical-align: middle;
  font-size: 14px;
}

.my-properties table h2 {
  border: none;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 7px 0;
  padding: 0;
}

.my-properties table tbody tr .image {
  width: 150px;
}

.my-properties table tbody tr .image a img {
  width: 100%;
}

.my-properties table tbody tr td .actions .edit {
  float: left;
}

.my-properties table tbody tr td .inner figure {
  margin-bottom: 5px;
}

.my-properties table tbody tr td .inner figure i {
  font-size: 13px;
}

.my-properties table tbody tr td .price {
  font-size: 12px;
  font-weight: 500;
}

.my-properties table tbody tr td.actions {
  text-align: right;
}

.my-properties table tbody tr td.actions .edit {
  float: left;
  color: #014b88;
}

.my-properties table tbody tr td.actions .edit i {
  -moz-transition: 0.4s;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-right: 5px;
}

.my-properties table tbody tr td.actions a {
  padding: 0;
  color: #f50057;
}

.my-properties table tbody tr td:last-child {
  padding-right: 5px;
}

.user-page .heading {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 22px;
}

.notification-box {
  padding: 30px 35px;
  color: #727272;
  border-radius: 4px;
  background-color: #f3f3f3;
}

.notification-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.notification-box p {
  margin-bottom: 0;
}

.submit-property .drop-file {
  position: relative;
  border: 2px dashed #e5e5e5;
  border-radius: 4px;
  background: #fcfcfc;
  transition: all 0.3s linear;
  display: inline-block;
  width: 100%;
}

select {
  border: 0;
  font-size: 14px;
  width: 100%;
  line-height: 30px;
  padding: 0 15px;
  color: #727272;
  background: #ffffff;
  z-index: 1;
  width: 100%;
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  min-height: 45px;
  box-shadow: none;
  border: 1px solid #f3f3f3;
  background: #fff;
  width: 100% !important;
  cursor: pointer;
  margin-bottom: 5px;
}

select:focus {
  outline: none;
  box-shadow: none;
}

.form-check-input {
  margin-top: 7px;
}

.drop-file {
  position: relative;
  border: 2px dashed #d0d0d0;
  border-radius: 4px;
  background: #fcfcfc;
  transition: all 0.3s linear;
  display: inline-block;
  width: 100%;
}

.drop-file:before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  background-color: #66676b;
  opacity: 0;
  z-index: 10;
  transition: all 0.3s linear;
  border-radius: 4px;
}

.drop-file .drop-message {
  text-align: center;
  margin: 50px 0;
  font-size: 17px;
  color: #4a4747;
  transition: all 0.3s linear;
  position: relative;
  z-index: 11;
}

.drop-file .drop-message:hover {
  color: #66676b;
}

.drop-file .drop-message span {
  display: inline;
  line-height: 117px;
}

/* Portfolios Section */
#portfolio-section .mix {
  padding: 10px;
}

#portfolio .mix {
  display: none;
}

.controls {
  text-align: center;
  padding: 0px 0px 20px;
}

.controls .active {
  color: #014b88 !important;
  border-color: #014b88;
  background: transparent;
}

.controls .btn {
  text-transform: uppercase;
  margin: 2px;
  color: #fff;
}

.controls:hover {
  cursor: pointer;
}

a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: #fff;
}

#portfolio-section {
  position: relative;
}

#portfolio-section .portfolio-box {
  position: relative;
}

#portfolio-section .portfolio-box .overlay-box {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 25%;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

#portfolio-section .portfolio-box .overlay-box a {
  color: #ffffff;
  font-size: 16px;
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  background: #014b88;
  border-radius: 4px;
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#portfolio-section .portfolio-box .overlay-box h3 {
  margin-top: 20px;
  color: #fff;
  font-size: 22px;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#portfolio-section .portfolio-box:hover .overlay-box {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1, 1);
  opacity: 1;
}

#portfolio-section .portfolio-box:hover .overlay-box h3 {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

#portfolio-section .portfolio-box:hover .overlay-box a {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
}

/* Services Item */
.services {
  background-size:cover;
      background: url(../images/our-menu-bg-1.png) left top no-repeat, url(../images/our-menu-bg-3.jpg);
    background-size: auto, auto, cover
}

.services-item {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  margin-top: 15px;
  position: relative;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

.services-item .icon {
  float: left;
  padding-right: 15px;
}

.services-item .icon i {
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  color: #014b88;
  border-radius: 4px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

.services-item .services-content {
  padding-left: 65px;
}

.services-item .services-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.services-item .services-content h3 a {
  color: #272727;
}

.services-item .services-content h3 a:hover {
  color: #014b88;
}

.services-item:hover {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.services-item:hover .icon i {
  background: transparent;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.featured-bg {
 /* background: #fafafa;*/
}

.featured-bg .intro-title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

.featured-bg .title-sub {
  font-size: 22px;
  margin-bottom: 5px;
  line-height: 36px;
}

.featured-bg .intro-desc {
  margin-bottom: 20px;
}

.featured-bg .featured-item {
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

.featured-bg .featured-item .icon {
  float: left;
  padding-right: 15px;
}

.featured-bg .featured-item .icon i {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: #014b88;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

.featured-bg .featured-item h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
}

.featured-bg .featured-item h3 a {
  color: #272727;
}

.featured-bg .featured-item h3 a:hover {
  color: #014b88;
}

/* Team Item */
.team-item {
  background: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.team-item .team-img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.team-item .team-overlay {
  height: 100%;
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.team-item .overlay-social-icon {
  color: #fff;
  top: 45%;
  position: absolute;
  display: table-cell;
  margin: 0 auto;
  width: 100%;
}

.team-item .overlay-social-icon .social-icon-team {
  padding-left: 0;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.team-item .overlay-social-icon .social-icon-team li {
  display: inline-block;
  margin: 0 2px;
}

.team-item .overlay-social-icon .social-icon-team li a {
  letter-spacing: 0px;
  outline: 0 !important;
}

.team-item .overlay-social-icon .social-icon-team li a i {
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  display: block;
  border-radius: 4px;
  line-height: 35px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.team-item .overlay-social-icon .social-icon-team li a:hover .lni-facebook-filled {
  background: #3B5998;
}

.team-item .overlay-social-icon .social-icon-team li a:hover .lni-twitter-filled {
  background: #00aced;
}

.team-item .overlay-social-icon .social-icon-team li a:hover .lni-instagram-filled {
  background: #fb3958;
}

.team-item .overlay-social-icon .social-icon-team li a:hover .lni-linkedin-filled {
  background: #1364A8;
}

.team-item .info-text {
  padding: 20px 20px;
  background: #f7f7f7;
}

.team-item .info-text h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.team-item .info-text h3 a {
  color: #272727;
}

.team-item .info-text h3 a:hover {
  color: #014b88;
}

.team-item .info-text p {
  margin: 0;
  color: #888;
}

.team-item:hover {
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.14);
  transform: translateY(-10px);
}

.team-item:hover .team-overlay {
  opacity: 1;
}

.team-item:hover .social-icon-team {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.testimonial {
  background: #fafafa;
}

.testimonial-item {
  padding: 30px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

.testimonial-item .content {
  overflow: hidden;
}

.testimonial-item .content .description {
  font-size: 15px;
}

.client-info {
  margin: 20px 10px;
}

.client-info .img-thumb {
  float: left;
  overflow: hidden;
  position: relative;
  padding: 7px;
}

.client-info .img-thumb img {
  border: 3px solid transparent;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.client-info .info-text {
  float: left;
  margin: 28px 20px;
}

.client-info .info-text h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.client-info .info-text h2 a {
  color: #272727;
}

.client-info .info-text h2 a:hover {
  color: #014b88;
}

.client-info .info-text h4 {
  margin: 0;
  clear: both;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

.client-info .info-text h4 a {
  color: #999;
}

.owl-pagination {
  position: relative;
  width: 100%;
  left: 0;
  bottom: -10px;
}

.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 2px 4px;
  filter: alpha(opacity=50);
  opacity: 1;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #014b88;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #014b88;
}

/* Clents Logo Area */
#clients-logo {
  background: #fafafa;
}

#clients-logo .client-logo {
  display: inline-block;
  border: 1px solid #E8E8E8;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

/* Blog Area */
.blog-item {
  background-color: #fff;
  display: block;
  max-width: 370px;
  margin: 0px auto;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.blog-item .blog-image {
  width: 100%;
  max-width: 370px;
  position: relative;
  overflow: hidden;
}

.blog-item .blog-image img {
  webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.blog-item .date {
  font-size: 14px;
  text-transform: uppercase;
  padding: 7px 17px;
  background-color: #014b88;
  color: #fff;
  border-radius: 4px;
  margin: 0px auto;
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  transform: translateY(-20px);
  width: 140px;
}

.blog-item .descr {
  padding: 15px 30px 30px;
  letter-spacing: .1px;
  line-height: 28px;
}

.blog-item .descr h3 {
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
}

.blog-item .descr h3:before {
  position: absolute;
  content: '';
  height: 3px;
  width: 45px;
  left: 42%;
  bottom: -15px;
  background-color: #014b88;
}

.blog-item .descr h3 a {
  margin-top: 37px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -.3px;
  font-size: 18px;
  color: #272727;
  webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.blog-item .descr h3 a:hover {
  color: #014b88;
}

.blog-item .descr .text {
  margin-bottom: 30px;
  line-height: 22px;
}

.blog-item .blog-footer {
  background: #fff;
  display: inline-block;
  width: 100%;
  border-top: 1px solid #e5e5e5;
  padding: 14px 20px;
  margin: -7px 0;
}

.blog-item .blog-footer .prop-user a {
  color: #727272;
}

.blog-item .blog-footer .prop-user a:hover {
  color: #014b88;
}

.blog-item .blog-footer span {
  margin-right: 10px;
}

.blog-item .blog-footer span i {
  margin-right: 5px;
}

.blog-item:hover {
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.14);
  transform: translateY(-10px);
}

/* Blog Page Style */
.blog-post {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  margin-bottom: 30px;
}

.blog-post .content {
  padding: 36px 43px;
}

.blog-post .content h2 {
  margin: 0;
  font-size: 22px;
  line-height: 34px;
}

.blog-post .content h2 a {
  color: #272727;
}

.blog-post .content h2 a:hover {
  color: #014b88;
}

.blog-post .content p {
  margin: 18px 0 0;
}

.blog-post .content .read-more {
  margin-top: 30px;
  padding: 7px 18px;
  text-transform: none;
}

.blog-post .content .read-more i {
  font-size: 13px;
}

.blog-post .post-meta {
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
}

.blog-post .post-meta li {
  display: inline-block;
  color: #888;
}

.blog-post .post-meta li:after {
  content: "";
  width: 1px;
  height: 12px;
  background: #d0d0d0;
  display: inline-block;
  position: relative;
  top: 0px;
  margin: 0 10px;
}

.blog-post .post-meta li a {
  color: #888;
}

.blog-post .post-meta li a:hover {
  color: #014b88;
}

.sidebar .search-blog-input .input {
  position: relative;
}

.sidebar .search-blog-input .input i {
  position: absolute;
  top: 15px;
  right: 20px;
}

.sidebar .widget {
  margin-bottom: 40px;
  position: relative;
}

.sidebar .widget-text h5 {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 5px 0;
}

.sidebar .widget-text h5 a {
  color: #272727;
}

.sidebar .widget-text h5 a:hover {
  color: #014b88;
}

.sidebar .widget-text span {
  color: #888;
  font-weight: 500;
  margin: -2px 0 0 0;
  display: block;
}

.widget-tabs .widget-content {
  display: table;
}

.widget-thumb {
  width: 95px;
  margin-right: 25px;
}

.widget-thumb img {
  width: 100%;
}

.widget-tabs .widget-content .widget-text {
  display: table-cell;
  vertical-align: middle;
}

.widget-tabs li {
  margin: 24px 0 0 0;
}

.widget-tabs li:last-child {
  border: none;
  padding-bottom: 0;
}

.share-buttons {
  padding: 0;
  list-style: none;
}

.share-buttons li {
  display: inline-block;
  margin: 0 6px 8px 0;
}

.share-buttons li a {
  background: #fff;
  border: 1px solid #666;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 20px;
  transition: 0.3s;
  display: inline-block;
  line-height: 17px;
}

.share-buttons li i {
  font-size: 16px;
  position: relative;
  right: 3px;
  top: 1px;
}

.share-buttons .fb-share {
  color: #3b5999;
  border-color: #3b5999;
}

.share-buttons .fb-share:hover {
  color: #fff;
  background: #3b5999;
}

.share-buttons .twitter-share {
  color: #4A9CEC;
  border-color: #4A9CEC;
}

.share-buttons .twitter-share:hover {
  color: #fff;
  background: #4A9CEC;
}

.share-buttons .gplus-share {
  color: #CE332A;
  border-color: #CE332A;
}

.share-buttons .gplus-share:hover {
  color: #fff;
  background: #CE332A;
}

.share-buttons .linkedin-share {
  color: #1260A2;
  border-color: #1260A2;
}

.share-buttons .linkedin-share:hover {
  color: #fff;
  background: #1260A2;
}

.author {
  margin: 10px 0 45px 0;
  padding: 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: inline-block;
}

.author h4 {
  font-size: 22px;
  color: #272727;
  margin-bottom: 20px;
}

.author .thumb {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
  float: left;
  display: block;
}

.author .thumb img {
  width: 100%;
}

.author .body {
  float: left;
  width: calc(100% - 120px);
  padding-left: 20px;
}

.author .body h5 {
  font-size: 18px;
  color: #272727;
  line-height: 26px;
  margin: 0;
}

.author .body p {
  margin-top: 10px;
}

#comments h3 {
  font-size: 20px;
  padding: 15px 0;
  font-weight: 700;
  margin-bottom: 20px;
}

#comments .comments-list {
  padding: 0;
  margin: 0 0 35px 0;
}

#comments .comments-list .media {
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

#comments .comments-list .media .thumb-left {
  float: left;
}

#comments .comments-list .media .thumb-left img {
  border-radius: 4px;
}

#comments .comments-list .media .info-body {
  margin-left: 20px;
  position: relative;
}

#comments .comments-list .media .info-body .media-heading {
  position: relative;
  margin-bottom: 10px;
}

#comments .comments-list .media .info-body .media-heading h4 {
  font-size: 18px;
  line-height: 26px;
}

#comments .comments-list .media .info-body .media-heading .comment-date {
  color: #888;
}

#comments .comments-list li ul {
  padding-left: 85px;
}

#comments {
  margin-top: 15px;
}

#comments .comments-list li ul {
  padding-left: 85px;
}

.reply-link {
  position: absolute;
  top: 15px;
  right: 0;
  color: #014b88;
  border-radius: 4px;
  font-size: 14px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.reply-link:hover {
  color: #014b88;
}

#respond h3 {
  font-size: 20px;
  padding: 15px 0;
  font-weight: 700;
  margin-bottom: 20px;
}

#sidebar {
  margin-bottom: 30px;
}

#sidebar .widget {
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 22px;
  padding-bottom: 30px;
}

#sidebar .widget:last-child {
  border-bottom: none;
}

#sidebar .cat-list li {
  padding: 7px 0;
  border-bottom: 1px solid #eee;
}

#sidebar .cat-list li a {
  text-decoration: none;
  color: #888;
  width: 100%;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

#sidebar .cat-list li .num-posts {
  float: right;
  font-size: 12px;
}

#sidebar .cat-list li:last-child {
  border: none;
}

#sidebar .tag a {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  padding: 7px 12px;
  background: #014b88;
  margin: 4px 2px;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

#sidebar .tag a:hover {
  color: #fff;
}

/* Conact Home Page Section */
#conatiner-map {
  width: 100%;
  height: 630px;
}

#contact-section h2 {
  color: #272727;
  font-size: 30px;
  margin-bottom: 26px;
}

.contact-right-area .contact-right {
  padding: 4px;
}

.contact-right-area .contact-right .single-contact {
  margin: 20px 0px;
  padding: 3px 55px;
  position: relative;
  color: #888;
}

.contact-right-area .contact-right .single-contact p {
  margin-bottom: 5px;
}

.contact-right-area .contact-right .single-contact p a {
  color: #888;
}

.contact-right-area .contact-right .contact-icon {
  background: #014b88;
  color: #fff;
  border-radius: 4px;
  font-size: 20px;
  height: 40px;
  left: 0;
  padding-top: 8px;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
}

/* Contact Forme */
#google-map-area {
  position: relative;
}

#google-map-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.list-unstyled li {
  margin-top: 10px;
  color: #dc3545 !important;
}

.text-danger {
  margin-top: 20px;
  font-size: 18px;
}

.heading {
  margin-bottom: 30px;
}

.form-control {
  display: block;
  width: 100%;
  line-height: 26px;
  font-size: 14px;
  box-shadow: none;
  color: #272727;
  background: #ffffff;
  padding: 8px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-weight: 400;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.form-control:focus {
  border-color: #014b88;
  outline: 0;
  box-shadow: none;
}

textarea {
    /* border-radius: 4px !important; */
    width: 100%;
    margin-top: 0px!important;
    padding: 10px 15px;
}

.box {
  margin-bottom: 40px;
  padding: 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.page-login-form h3 {
  font-size: 18px;
  color: #444;
  line-height: 18px;
  padding: 15px 0 30px;
  text-transform: uppercase;
  text-align: center;
}

.page-login-form .login-form .form-control {
  padding-left: 62px;
  position: relative;
}

.page-login-form .log-btn {
  width: 100%;
  padding: 12px 22px;
  margin: 0px 0px 20px;
  letter-spacing: 1;
  text-transform: capitalize;
  font-size: 16px;
}

.page-login-form .form-links {
  width: 100%;
  height: 25px;
}

.page-login-form .form-links li a {
  color: #999;
}

.page-login-form .form-links li a:hover {
  color: #014b88;
}

.input-icon {
  position: relative;
}

.input-icon i {
  color: #014b88;
  padding-right: 10px;
  font-size: 15px;
  left: 12px;
  line-height: 22px;
  margin-top: -11px;
  position: absolute;
  top: 50%;
  background: linear-gradient(to bottom, #f8f8f8 0%, #f0f0f0);
  border-radius: 4px 0px 0px 4px;
  top: 1px;
  left: 1px;
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 48px;
  line-height: 42px;
  height: 42px;
}

.login-form input[type="checkbox"], .login-form input[type="radio"] {
  margin: 6px 10px 0;
}

.box .checkbox label, .box .radio label {
  padding-left: 34px;
}

/* Footer Area Start */
.footer-area {
  background: #272727;
}

.footer-area .footer-titel {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-area .footer-titel span {
  color: #ccc;
  font-weight: 400;
}

.footer-area .footer-link li {
  margin-bottom: 10px;
}

.footer-area .footer-link li a {
  color: #888;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

.footer-area .footer-link li a:before {
  background-color: white;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
  -webkit-transition: 0.15s all cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: 0.15s all cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  width: 100%;
}

.footer-area .footer-link li a:hover {
  color: #fff;
}

.footer-area .footer-link li a:hover:before {
  opacity: 1;
  -webkit-transform: translateY(-3px) translateZ(0);
  transform: translateY(-3px) translateZ(0);
}

.footer-area .address li {
  margin-bottom: 20px;
}

.footer-area .address li a {
  color: #888;
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
}

.footer-area .address li a:hover {
  color: #fff;
}

.footer-area .address li a i {
  font-size: 22px;
  width: 32px;
  vertical-align: middle;
  height: 36px;
  text-align: center;
  display: inline-block;
  float: left;
  margin-right: 5px;
  line-height: 32px;
}

.footer-area #subscribe-form {
  margin-top: 10px;
}

.footer-area #subscribe-form .form-group {
  position: relative;
}

.footer-area #subscribe-form .form-group .btn-common {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 15px;
  border-radius: 0;
  border-left: 1px solid #f3f3f3;
  background: transparent;
  color: #014b88;
}

#copyright {
  background: #333;
}

#copyright p {
  line-height: 42px;
  color: #fff;
  margin: 0;
}

#copyright p a {
  color: #fff;
}

#copyright p a:hover {
  color: #014b88;
}

.social-icon a {
    color: #ffffff;
    background: #3a3a3a52;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 13px;
    margin: 0px 0px 10px 6px;
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
}

.social-icon a:hover {
  color: #fff !important;
}

.social-icon .facebook:hover {
  background: #3b5999;
}

.social-icon .twitter:hover {
  background: #4A9CEC;
}

.social-icon .instagram:hover {
  background: #D6274D;
}

.social-icon .linkedin:hover {
  background: #1260A2;
}

.social-icon .google:hover {
  background: #CE332A;
}

.counter-section {
  background: url(../images/about2-back.jpg);
  overflow: hidden;
  position: relative;
}

.counter-section:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 75, 136, 0.32);
}

.counter-section .counter {
  padding: 30px 0;
}

.counter-section .counter .icon {
  margin-bottom: 30px;
}

.counter-section .counter .icon i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    display: inline-block;
    text-align: center;
    background: #014b88;
    border-radius: 4px;
    font-size: 36px;
    color: #c5ebff;
}

.counter-section .counter p {
    font-size: 15px;
    color: #000;
    /* text-transform: uppercase; */
    font-weight: 400;
    margin: 15px 0;
    text-align: center;
}

.counter-section .counter .counterUp {
  color: #000;
  font-size: 38px;
  margin-top: 15px;
  font-weight: 700;
}

.panel-default {
  border-radius: 4px;
  border: none;
  margin-bottom: 10px;
}

.panel-default .panel-heading {
  padding: 0px;
  outline: none;
  border: none;
  border-radius: 0px;
  width: 100%;
}

.panel-default .panel-heading .panel-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  color: inherit;
}

.panel-default .panel-heading a {
  padding: 12px 35px 12px 15px;
  display: inline-block;
  width: 100%;
  background-color: #014b88;
  color: #ffffff;
  position: relative;
  text-decoration: none;
}

.panel-default .panel-heading a i {
  padding-right: 10px;
  font-size: 20px;
}

.panel-default .panel-heading a:after {
  font-family: 'LineIcons' !important;
  content: "\e9d6";
  position: absolute;
  right: 15px;
  font-size: 14px;
  font-weight: 300;
  top: 50%;
  line-height: 1;
  margin-top: -7px;
}

.panel-default .panel-heading .collapsed:after {
  content: "\e9bc";
}

.panel-default .panel-collapse .panel-body {
  padding: 30px;
  background-color: #f3f3f3;
}

.typography-wrap p {
  font-size: 14px;
  list-style: 24px;
  margin: 0 0 20px 0;
}

.typography-wrap h1 {
  font-size: 30px;
  list-style: 38px;
  margin: 0px 0 20px 0;
}

.typography-wrap h2 {
  font-size: 24px;
  list-style: 32px;
  margin: 0px 0 10px 0;
}

.typography-wrap h3 {
  font-size: 20px;
  line-height: 28px;
}

.typography-wrap h4 {
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 24px 0;
}

.typography-wrap h5 {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 24px 0;
}

.typography-wrap h6 {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 24px 0;
}

.typography-wrap .disc-list li, .typography-wrap .small-arrow-list li {
  line-height: 27px;
  color: #999;
}

.typography-wrap .disc-list li i, .typography-wrap .small-arrow-list li i {
  margin-right: 10px;
}

.typography-wrap .buttons a {
  margin-right: 10px;
}

/* Pricing Table */
.pricing-table {
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.pricing-table .table-header {
  background: #014b88;
  padding: 30px 0;
  color: #fff;
}

.pricing-table .table-header h3 {
  font-size: 30px;
  color: #fff;
}

.pricing-table .plan {
  padding: 30px 0;
  border-bottom: 1px solid #f3f3f3;
}

.pricing-table .plan .price {
  font-size: 42px;
  margin-bottom: 20px;
}

.pricing-table .plan .period {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
}

.pricing-table .plan-info {
  background: url(../img/pricing/pricing-bg.jpg);
  position: relative;
  padding: 15px 30px;
  z-index: 99;
  overflow: hidden;
}

.pricing-table .plan-info:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #e0e8ff;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.pricing-table .plan-info p {
  color: #727272;
  font-size: 14px;
  line-height: 24px;
  padding: 15px 0;
  border-bottom: 1px solid #f3f3f3;
}

.pricing-table .plan-info p strong {
  color: #272727;
  display: block;
  margin-bottom: 5px;
}

.pricing-table .plan-info p strong i {
  color: #014b88;
  margin-right: 5px;
}

.pricing-table .button-area {
  padding: 30px 0 20px 0;
}

.pricing-active, .pricing-table:hover {
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  transform: scale(1.07);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.pricing-active .plan-info, .pricing-table:hover .plan-info {
  background: url(../img/pricing/pricing-bg.jpg);
  position: relative;
  z-index: 99;
  overflow: hidden;
}

.pricing-active .plan-info:before, .pricing-table:hover .plan-info:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 1;
  z-index: -1;
}

#main-slide .carousel-control {
  display: none;
  transition: all 0.3s ease-in-out;
}

#main-slide .carousel-indicators {
  cursor: pointer;
  bottom: 50px;
}

#main-slide:hover .carousel-control {
  display: block;
  transition: all 0.3s ease-in-out;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

#main-slide .carousel-item img {
  position: relative;
}

#main-slide .carousel-inner .carousel-item::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

#main-slide .carousel-item .carousel-caption {
  opacity: 0;
  transition: opacity 100ms ease 0s;
  z-index: 0;
}

#main-slide .carousel-item .carousel-caption h4 {
  font-size: 18px;
  color: #f3f3f3;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

#main-slide .carousel-item .carousel-caption .heading {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

#main-slide .carousel-item .carousel-caption .heading span {
  color: #014b88;
}

#main-slide .carousel-item .carousel-caption p {
  color: #fff;
  padding: 15px 0;
  font-size: 15px;
  font-weight: 500;
}

#main-slide .carousel-item.active .carousel-caption {
  opacity: 1;
  transition: opacity 100ms ease 0s;
  z-index: 1;
}

#main-slide .carousel-caption {
  color: #fff;
  top: 26%;
}

#main-slide .carousel-caption .btn {
  margin: 20px 10px 20px 10px;
}

#main-slide .carousel-control-next,
#main-slide .carousel-control-prev {
  opacity: 1;
  box-shadow: none;
}

#main-slide .carousel-control-prev span {
  padding: 15px;
}

#main-slide .carousel-control-next span {
  padding: 15px;
}

#main-slide .carousel-control .fa-angle-left,
#main-slide .carousel-control .fa-angle-right {
  position: absolute;
  z-index: 5;
  display: inline-block;
}

#main-slide .carousel-control .fa-angle-left {
  left: 10px;
}

#main-slide .carousel-control .fa-angle-right {
  right: 10px;
}

#main-slide .carousel-control i {
  line-height: 40px;
  font-size: 18px;
  width: 45px;
 /* border: 2px solid #fff;*/
  height: 45px;
  display: block;
  border-radius: 4px;
  /*background: transparent;*/
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

#main-slide .carousel-control i:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: #fff;
}
.form-2 {
    border: 2px dashed #3193c6;
}
.secondary-bg {
    background: #f8f6f3;
}
.text-center {
    text-align: center!important;
}
.font-md {
    font-size: 36px;
    line-height: 46px;
}

.font-extra {
    font-family: "Cookie", cursive;
}
.text-primary {
    color: #014b88 !important;
}
.font-md {
    font-size: 36px;
    line-height: 46px;
}

/* ==========================================================================
   Recipes Section Style
   ========================================================================== */
#recipes {
  padding-top: 40px;
  padding-bottom: 300px;
  position: relative;
  overflow: hidden;
}
#recipes .nav-tabs {
  text-align: center;
  border-bottom: none;
  margin-bottom: 30px;
}
#recipes .nav-tabs li {
  float: none;
  display: inline-block;
}
#recipes .nav-tabs li a {
  margin-right: -6px;
  border-radius: 0!important;
  border-bottom: 2px solid #323232;
  font-size: 20px;
}
#recipes .nav-tabs > li.active > a,
#recipes .nav-tabs > li.active > a:focus,
#recipes .nav-tabs > li.active > a:hover {
  color: #323232;
  background: transparent;
  border-color: transparent;
  border-bottom: 2px solid #f26522;
  border-radius: 0;
}
#recipes .nav-tabs > li > a:focus,
#recipes .nav-tabs > li > a:hover {
  background: transparent;
  border-bottom: 2px solid #f26522;
}
#recipes .nav-tabs > li > a:hover {
  border-color: transparent transparent #f26522;
}
#recipes .item {
  display: inline-block;
  margin-bottom: 30px;
}
#recipes .item .img {
  float: left;
}
#recipes .item .details {
  width: 280px;
  float: left;
  padding: 0 20px;
}
#recipes .item .price {
  float: left;
  margin-top: 16px;
}
#recipes .images-left-top {
  position: absolute;
  left: -48px;
  top: 0px;
}
#recipes .images-left-top img {
  width: 175px;
}
#recipes .images-right-bottom {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
#recipes .images-right-bottom img {
  width: 175px;
}
.recipes-2 {
  padding-top: 40px;
  padding-bottom: 30px!important;
}
/* ==========================================================================
   Special Recipes Style
   ========================================================================== */
div.card {
    border: 0;
    margin-bottom: 30px;
    margin-top: 30px;
    border-radius: 6px;
    color: rgba(0,0,0,.87);
    background: #fff;
    width: 100%;
   /* box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);*/
}

div.card.card-plain {
    background: transparent;
    box-shadow: none;
}
div.card .card-header {
    /*border-radius: 3px;
    padding: 1rem 15px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -30px;
    border: 0;
    background: linear-gradient(60deg,#eee,#bdbdbd);*/
}

.card-plain .card-header:not(.card-avatar) {
    margin-left: 0;
    margin-right: 0;
}

.div.card .card-body{
    padding: 15px 30px;
}

div.card .card-header-primary {
        padding: 0px!important;
    background: transparent;
   border-bottom:none!important;
}

div.card .card-header-danger {
    /*background: linear-gradient(60deg,#ef5350,#d32f2f);
    box-shadow: 0 5px 20px 0 rgba(0,0,0,.2), 0 13px 24px -11px rgba(244,67,54,.6);*/
}


.card-nav-tabs .card-header {
    margin-top: -30px!important;
}

.card .card-header .nav-tabs {
    padding: 0;
}

.nav-tabs {
    border: 0;
    border-radius: 3px;
    padding: 0 35px!important;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.nav-tabs .nav-item .nav-link.active {
    background-color: #014b88;
    color:#FFF!important;
    transition: background-color .3s .2s;
        border-radius: 0px!important;
}

.nav-tabs .nav-item .nav-link{
    border: 0!important;
    color: #000!important;
    font-weight: 500;
}

.nav-tabs .nav-item .nav-link {
    color: #fff;
    border: 0;
    margin: 0;
    line-height: 24px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 13px;
    background-color: transparent;
    transition: background-color .3s 0s;
}

.nav-link{
    display: block;
}

.nav-tabs .nav-item .material-icons {
    margin: -1px 5px 0 0;
    vertical-align: middle;
}

.nav .nav-item {
   position: relative;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin: 0 8px 0 0;
    list-style: none;
    cursor: pointer;
    min-width: 348px;
    text-align:center;
    border:1px solid #CCC;
}

.prawns-menu .nav .nav-item {
   position: relative;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin: 0 8px 0 0;
    list-style: none;
    cursor: pointer;
    min-width: 258px;
    text-align:center;
    border:1px solid #CCC;
}

.frozen-menu .nav .nav-item {
   position: relative;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin: 0 8px 0 0;
    list-style: none;
    cursor: pointer;
    min-width: 348px;
    text-align:center;
    border:1px solid #CCC;
}

.menu-item {
  width: 100%;
  float: left;
  margin-bottom: 30px;
  background: #FFF;
  padding: 9px;
  box-shadow: 0px 1px 1px 1px #E1E1E1;
  position: relative;
}
.menu-item .menu-left {
  width: 50%;
  float: left;
  overflow: hidden;
  padding: 4px;
  border: 1px solid #e1e1e1;
  box-shadow: 2px 2px 3px 0px #e1e1e1;
}
.menu-item .menu-left img {
  width: 100%;
  height: auto;
}
.menu-item .menu-right {
      color: #666;
    width: 50%;
    padding-bottom: 10px;
    float: right;
    text-align: left;
    padding-left: 20px;
}
.menu-item .menu-right .price {
  padding: 5px 15px;
  background-color: #f26522;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  position: absolute;
  top: -10px;
  right: -10px;
}
.menu-item .menu-right h4 {
  font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}
.menu-item .menu-right .rating {
  margin: 14px 0px 10px;
  display: block;
}
.menu-item .menu-right .rating i {
  color: #FF7E00;
}


.display-block {
    display: block !important;
}

.font-size12 {
    font-size: 12px;
    line-height: 20px;
}
.text-uppercase {
    text-transform: uppercase!important;
}
.alt-font {
       font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
}
.font-size12 {
    font-size: 12px;
    line-height: 20px;
}
.nav-tabs .nav-item .nav-link.active:after {
    content: "";
    background: #3193c6;
    height: 3px;
    width: 100%;
    display: inline-block;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.title-font {
    font-family: "Cookie", cursive;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
    line-height: normal;
    color: #014b88;
}

.text-theme-color {
    color: #014b88;
}
.font-size22 {
    font-size: 22px;
    line-height: normal;
}










/*------------Menu Item box modex2-------------------*/
.menu-box {
    padding: 1rem;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.menu-box .thumb {
    float: left;
    margin-right: 20px;
}
.menu-box .thumb img {
    width: 90px;
    border-radius: 10px;
}
.menu-box .menu-content {
    overflow: hidden;
}
.menu-box .menu-content h4 {
    margin-bottom: 3px;
    font-family: "Montserrat", sans-serif;
    border-bottom: 1px dotted #f5f5f5;
    padding-bottom: 5px;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 14px;
}
.menu-box .menu-content h4 a {
    color: inherit;
}
.menu-box .menu-content h4 span {
    float: right;
    display: block;
    font-family: "Montserrat", sans-serif;
}
.menu-box .menu-content p {
    margin: 0px;
    font-size: inherit;
}

.img-effect {
    position: relative;
}
.img-effect img{
	border:1px solid transparent;transition:1s;
}
.img-effect:hover .img-hover {
    transform: scale(1.1);
    transition: 1s;
}
.img-wrapper{
	padding: 5px;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.16);
    position: relative;
	margin-bottom: 20px;
}
.cost-add{
	margin-top:5px;
}
.product-title,.product-price{
	color: #dc3545;
    
    text-transform: uppercase;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.product-price{

}
.product-title{
	margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}
.btn-add{
	background-color: #F06918;
    border-radius: 0px;
    border: 0;
	color:#fff;
}
 .addproduct{
	 color:#fff;
	 float:right;
 }
.tittle-add{
	background-color: #F06918;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}
.icon-plus{
	background-color: #c74b14;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	
}
.tittle-add,.icon-plus{
	padding:5px 10px;
	float: left;
}
.offer-unlock button{
	background-color: #F06918;
	width:100%;
	border:1px solid #F06918;
	padding:5px 10px;
	margin-top:10px;
	border-radius:10px;
	color:#fff;
	    font-size: 16px;
}
 .after-discount{
	 font-size:25px;
	     font-family: 'Roboto-bold';
	font-weight:normal;
 }
.overline{
	font-size:20px;
	font-family: 'Roboto-Regular';
	font-weight:normal;
	color:#9d9d9d;
	margin-left: 10px;
 }
 .overflow-hidden{
	 overflow:hidden;
 }
 



.popular-dish-info {
    background: aliceblue;
    float: left;
    padding: 15px 33px;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.popular-dish-info > h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
	margin-top: 0;
	color: #014b88;
    text-transform: uppercase;
}
.popular-dish-info > p {
	margin-bottom: 20px;
	color: #636363;
	line-height: 24px;
	font-family: lato;
	display: inline-block;
	width: 100%;
	display:none;
}
.price {
    float: left;
    font-size: 13px;
    font-family: Poppins;
    color: #dc3545;
    font-weight: bold;
}
.popular-dish-info .price {line-height: 25px;}
.popular-dish-info > a {
    background-color: #272727;
    border: 1px solid transparent;
    color: #fff;
    float: right;
    font-size: 12px;
    font-weight: bold;
    padding: 0px 10px;
    text-transform: uppercase;
}
.popular-dish-info > a:hover{
    background-color: #014b88;
    border-color: #014b88;
}
.item-menu{
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    position: relative;
    margin: auto;
    overflow: hidden;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color:#3193c6;
    border: 0;
    margin: 0;
    border-radius: 3px;
    line-height: 24px;
    text-transform: uppercase;
    font-size: 15px;
    padding: 10px 15px;
    transition: background-color .3s 0s;
    border-bottom: 3px solid #014b88;
}
.nav-pills .nav-link{
     color: #000;
    border: 0;
    margin: 0;
    border-radius: 3px;
    line-height: 24px;
    text-transform: uppercase;
    font-size: 15px;
    padding: 10px 15px;
    transition: background-color .3s 0s;
    text-align:left;
}
 .fixed-header, .fixed-footer{
        width: 100%;
        position: fixed; 
        padding: 10px 0;
        color: #fff;
    }
    .fixed-header{
        top: 0;
    }
    .fixed-footer{
        bottom: 0;
    } 

    .item{
        padding-bottom:10px;
        margin-bottom:5px;
       /* border-bottom:1px dashed red;*/
        text-align:left;
    }
    .item h1{
     font-size:18px;   
    }
/*.item span:before{
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  left: 50%;
  bottom: 10px;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #014b88;
    }*/

.bar::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 5.3px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    /*background: #dc3545;*/
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
    margin-right: 10px!important;
    border:3px dashed #dc3545;
}
.non-veg-menu .nav .nav-item {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin: 0 8px 0 0;
    list-style: none;
    cursor: pointer;
    min-width: 205px!important;
    text-align: center;
    border: 1px solid #CCC;
}
.btn-danger {
    color: #fff;
    background-color: #014b88 !important;
    border-color: #014b88 !important;
}



/*------ Footer------------*/
.watsap-icon {
  position: fixed;
    bottom: -5%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  
}

.watsap-icon a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}
.text-green{
    color:#789339 !important;
}
.new-footer{
   background: url(../images/footer-bg.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
    padding:50px 0px;
}
.new-footer p{
    color:#CCC;
}
.footer-new-bg{
    background: #014b88;
    margin-top: -65px;
}
.footer-new-bg span{
   color:#a5ebfb;
}
.footer-new-bg h3{
    font-size:25px;
    color:#FFF;
}
.footer-new-bg h4{
    font-size:18px;
     color:#FFF;
}
.about-contact-info .address-info {
  /*width: 40%;*/
  float: left; }

.info-content p{
    font-size:14px;
}
.about-contact-info .phone-info, .about-contact-info .email-info {
  /*width: 30%;*/
  float: left;
  padding-left: 10px; }

.about-contact-info .info-icon {
  width: 35px;
  height: 50px;
  float: left;
  text-align: left;
  line-height: 50px; }
  .about-contact-info .info-icon i {
    color: #fff;
    font-size: 30px;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px; }

.about-contact-info .email-info .info-icon i {
  font-size: 25px; 
}

  .features-section{
 background: url(../images/call-bg.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
    padding:50px 0px;
  }
 
/*----- Contact Us-------*/


.swin-sc-contact .item {
  overflow: visible;
  margin-bottom: 35px; }
  .swin-sc-contact .item .media-left {
    padding-right: 20px; }
    .swin-sc-contact .item .media-left .wrapper-icon {
      border-radius: 50%;
      background-color: #e0f1ff;
      width: 60px;
      height: 60px;
      text-align: center;
      line-height: 52px;
      border: 3px solid transparent;
      font-size: 24px; }
      .swin-sc-contact .item .media-left .wrapper-icon i.icons {
        color: #014b88;
        position: relative; }
      .swin-sc-contact .item .media-left .wrapper-icon i.icons:after {
        content: '';
        height: 1px;
        background-color: #9d9d9d;
        display: block;
        margin-top: 2px;
        position: absolute;
        width: 16px;
        left: 50%;
        margin-left: -8px; }
  .swin-sc-contact .item .media-body {
    font-size: 14px;
    padding-top: 8px; }
    .swin-sc-contact .item .media-body .title {
      color: #29272e;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 14px; }
    .swin-sc-contact .item .media-body .description {
      color: #505b65; }
      .swin-sc-contact .item .media-body .description p {
        margin: 0; }

.swin-sc-contact .item:hover .wrapper-icon {
  border: 3px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: #789339 !important; }
  .swin-sc-contact .item:hover .wrapper-icon i.icons {
    color: #ffffff; }
  .swin-sc-contact .item:hover .wrapper-icon i.icons:after {
    background-color: #ffffff; }


.swin-sc-contact h3{
margin-bottom: 20px;
    background: #014b88;
    padding: 25px;
    color: #FFF;
}

  .swin-sc-contact{
      box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
      padding: 45px;
  }
  
  
  /*--------- Home Catering services -----*/
  
 .services .intro-sub-heading {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.1rem;
}

.services .intro-title {
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  line-height: 60px;
  margin-bottom: 15px;
}
.services p{
    font-size: 25px;
    margin-bottom: 40px;
}
.services .content {
  background: #fff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.catering-list li{
    display: inline-flex;
    /* color: aliceblue; */
    margin-right: 10px;
    font-size: 20px;
    line-height: 35px;
}
.catering-list li img{
    width: 10px;
    height: 10px;
    /* line-height: 42px; */
    margin-right: 5px;
    margin-top: 12px;
}
.text-blue{
   color: #759139;
}

/*---- Enquiry Section ----*/
.contact-section .section-box {
  padding-top: 120px; }

.contact-section .contact-content {
  padding: 33px 10px 50px 0; }
.contact-section .contact-content h3 {
    font-size: 25px;
    padding-bottom: 19px; }
.contact-section .contact-content p {
    margin-bottom: 32px; }
.contact-section .contact-content .contact-info {
    padding: 0 10px 25px 0; }
.contact-section .contact-content .contact-info i {
      color: #ad0e16;
      font-size: 26px;
      margin-right: 10px;}
.contact-section .contact-content .contact-info h4 {
      font-size: 20px;
      font-weight: 400;
      padding: 17px 0 4px;
          display: contents;}
.contact-section .contact-content .contact-info a {
      display: block;
      color: #666;
      padding-bottom: 6px; }
.contact-section .contact-content .contact-info a:hover {
        color: #ad0e16; }
    .contact-v2-section .contact-content .contact-info .time {
      font-size: 14px; }
.contact-section .contact-content .contact-info .time .time-inner {
        justify-content: space-between;
        -moz-justify-content: space-between;
        -webkit-justify-content: space-between;
        -o-justify-content: space-between;
        -ms-justify-content: space-between;
        align-items: center;
        -moz-align-items: center;
        -webkit-align-items: center;
        -o-align-items: center;
        -ms-align-items: center;
        padding-bottom: 8px; }
.contact-section .contact-content .contact-info .time .time-inner .hour {
          color: #999;
          float: right;}
.contact-section .contact-content .contact-email span {
    font-size: 14px;
    display: block;
    padding-bottom: 8px; }
.contact-section .contact-content .contact-address {
   /* padding: 0 25px 25px 0; */}
.contact-section .quote-form {
  margin-left: 70px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 57px 40px 80px;
  background: url(../images/about2-back.jpg);}
.contact-section .quote-form h3 {
    font-size: 25px;
    padding-bottom: 9px; }
.contact-section .quote-form p {
    margin-bottom: 8px; }
.contact-section .quote-form .form-contact .form-input {
    margin-bottom: 10px; }
.contact-section .quote-form .form-contact .form-input input {
      padding: 25px 0px 0px;
      border: none;
      border-bottom: 1px solid #e5e5e5;
          width: 100%;
        background: transparent;
}
.contact-section .quote-form .form-contact .form-bottom {
    padding-top: 35px; }
.contact-section .quote-form .form-contact .form-bottom .btn-small {
padding: 0px 51.5px;
    cursor: pointer;
    height: 50px;
    background: #014b88;
    color: #FFF; }


/*----Menu -------------*/
.biryani-info{
        box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    padding: 20px;
    margin: 0 auto;
}
.biryani-info h3{
    text-align: left;
    color: #000000;
    font-size: 25px;
    margin-bottom: 15px;
    background: #FFF;
    padding: 30px 0px 0px 20px;
}
.biryani-info h4{
text-align: left;
    color: #ffffff;
    font-size: 19px;
    background: #014b88;
    padding: 10px;
    margin-bottom: 10px;
}
.biryani-info a {
    background-color: #272727;
    border: 1px solid transparent;
    color: #fff;
    float: left;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    text-transform: uppercase;
}
.biryani-info a:hover {
    background-color: #62b4da;
    border: 1px solid transparent;
    color: #000;
    float: left;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    text-transform: uppercase;
}
 .biryani-details{
     background: #ffbc00;
    padding: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
 }
 .biryani-details p{
     font-size:14px;
 }
  .biryani-details h5{
      font-size:25px;
      font-weight:500;
  }
  .biryani-price{
    background: #dc3545;
    padding: 15px;
    color: #FFF;
    font-size: 25px;
  }
  
 /*---- Raw Meterial -----------*/
 
 .item {
    padding-bottom: 10px;
    margin-bottom: 5px;
    /* border-bottom: 1px dashed red; */
    text-align: left;
}
  .item h1 {
    font-size: 18px;
}
  .bar::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 5.3px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    /* background: #dc3545; */
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
    margin-right: 10px!important;
    border: 3px dashed #dc3545;
}


  /* ---------Media Qurries -----------*/
  @media screen and (max-width: 768px){
.home-contact {
    float: left;
    position: relative;
    width: 100%;
    background: url(../images/booking-frombg.jpg);
    background-size: cover;
}
.home-contact{
	z-index: 0;
}
.form-meta {
    float: left;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 2;
}
.form-meta > h2 {
    color: #c0ef52;
    display: inline-block;
    font-weight: bold;
    margin-top: 0;
    width: 100%;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 15px!important;
}
      
.footer-new-bg {
    background: #014b88;
    margin-top: 0px; 
}
.about-contact-info .address-info {
 margin-bottom:10px;   
}
.about-contact-info .phone-info, .about-contact-info .email-info {
 margin-bottom:10px; 
}
.about-contact-info .phone-info, .about-contact-info .email-info {
 margin-bottom:10px; 
}
.social-icon{
        margin: 20px 0px;
}
.biryani-info h4 {
    text-align: center;
    color: #ffffff;
    font-size: 17px;
    background: #014b88;
    padding: 10px;
    margin-bottom: 10px;
}
.biryani-details {
    background: #ffbc00;
    padding: 5px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.biryani-price {
    background: #dc3545;
    padding: 5px;
    color: #FFF;
    font-size: 20px;
}
.watsap-icon{
     position: fixed;
    bottom: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.watsap-icon img{
width: 100px;
}
.watsap-icon a {
    display: block;
    text-align: center;
    padding: 0px 10px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}
}

.navbar-light .navbar-nav .nav-link:active {
    color: #014b88!important;
    outline: none;
}
/*-- Franchise section ------------*/

.franchise-section{
      background: url(../images/franchise.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

/*--- booking form section home2 ---*/
.booking-form-sec {
    float: left;
    padding: 80px 50px;
    position: relative;
    width: 100%;
    background: url(../images/booking-frombg.jpg);
    background-size: cover;
}
.booking-form-sec .fit-bg{
	z-index: 0;
}
.home-contact{
  float: left;
    padding: 30px;
    position: relative;
    width: 100%;
    background: url(../images/booking-frombg.jpg);
    background-size: cover; 
    width:300px;
    margin:0 auto;
}
.home-contact{
	z-index: 0;
}
.form-meta {
    float: left;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 2;
}
.form-meta > h2 {
    color: #c0ef52;
    display: inline-block;
    font-weight: bold;
    margin-top: 0;
    width: 100%;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 15px!important;
}
.form-meta > span {
    display: inline-block;
    font-family: poppins;
    font-size: 14px;
    width: 100%;
}
.form-meta > form {
    float: left;
    margin-top: 35px;
    position: relative;
    width: 100%;
}
.form-meta > form input {
    font-family: poppins;
    font-size: 14px;
    margin-bottom: 5px;
    padding: 10px 15px;
    width: 100%;
}
.form-meta button {
border: medium none;
    color: #fff;
    font-family: poppins;
    font-size: 12px;
    font-weight: 600;
    line-height: 52px;
    margin-top: 30px;
    text-transform: uppercase;
    /* width: 200px; */
    padding: 0px 30px;
    background: #789339;
    cursor: pointer;
}

.upcoming-event .title1-inner > h2 {
font-size: 22px;
    margin-bottom: 5px;
    text-transform: uppercase;
    line-height: 40px;
    color: #014b88;
    font-weight: 100;
}
.upcoming-event .title1-inner > span {
    color: #999;
    font-family: poppins;
    font-size: 12px;
}
.upcoming-event .title1-inner > b {
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.upcoming-event .article-info-meta {
    padding: 75px 0px;
}
.upcoming-event .article-meta > h3 {
    color: #014b88;
    margin-bottom: 15px;
    font-size: 40px;
    line-height: 60px;
    text-transform:uppercase;
        font-weight:100 !important;
    
}
.upcoming-event .article-meta > p {
    color: #555;
    font-size: 15px;
    line-height: 22px;
}
.upcoming-event .countdown > li {
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.05);
    height: 116px;
    margin: 0 6px;
    padding: 40px 0 0;
    text-align: center;
    width: 113px;
}
.upcoming-event .countdown > li span {
    color: #444;
    font-size: 30px;
}
.view-more {
    background: #000 none repeat scroll 0 0;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 50px;
    padding: 16px 40px;
    text-transform: uppercase;
}
.view-more:hover{
	color: #fff;
}
.counter-meta {
    float: left;
    padding-left: 133px;
    width: 100%;
}
.upcoming-event .counter-meta .view-more {
    margin-left: 28px;
}
.featured-restaurant-box.with-bg .post-meta{padding-left: 0;}
.about-feat.text-center > img{width: 100%;}
.upcoming-event .title1-inner > b, .upcoming-event .countdown > li p, .mini-post-data {
color: #394b1b;
}

.title1-inner span {
    display: inline-block;
    width: 100%;
    font-family: Great Vibes;
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.article-data {
    display: inline-block;
    margin-top: 30px;
    width: 100%;
}
.article-meta {
    border-left: 1px solid #cfcfcf;
    display: inline-block;
    padding-left: 28px;
    vertical-align: middle;
}
.upcoming-event{
        padding: 100px 0px;
}




/**
 * Author: Tim Vervoort - contact@timvervoort.com
 * Licence: Free for commercial use
 * Last update: 14th December 2018 - v1.5
 */
 
.fs-gal-view {
    display: none;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    background-size: contain;
    background-position: center center;
    background-color: rgba(20, 20, 20, 0.7);
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 999999;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}
.fs-gal-view h1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-weight: 300;
    font-size: 26px;
}
.fs-gal-prev, .fs-gal-next, .fs-gal-close {
    position: absolute;
    top: calc(50vh - 20px);
    height: 40px;
    width: 40px;
    z-index: 999999;
    -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 1));      
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 1)); 
    transition: all 0.3s;
}
.fs-gal-prev:hover, .fs-gal-next:hover, .fs-gal-close:hover {
    -webkit-filter: drop-shadow(4px 4px 4px rgba(0,0,0,0.9));      
    filter: drop-shadow(4px 4px 4px rgba(0,0,0,0.9)); 
    cursor: pointer;
}
.fs-gal-prev {
    left: 14px;
}
.fs-gal-next {
    right: 14px;
}
.fs-gal-close {
    top: 14px;
    right: 14px;
    height: 30px;
    width: 30px;
}
.fs-gal-main {
    /*width: 100%;
    height: 100%;*/
    object-fit: contain;
}
.fs-gal:hover, .fs-gal-nav:hover, .fs-gal-close:hover {
    cursor: pointer;
}
.fs-gal {
              /*width: 25%;
              height: auto;
              float: left;*/
          }
          
.privacy-policy b{
              color:#000!important;
              padding:5px 0px;
          }
.privacy-policy p{
              padding:5px 0px;
          }
          
          
          
          
          
.caption h5{
    font-size:18px;
        padding-top: 15px;
} 
          
          
  .caption h6{
    font-size:18px;
} 
            
#input-option83{
    display:flex;
}
#input-option90{
    display:flex; 
}
#input-option84{
     display:flex; 
}
#input-option85{
     display:flex; 
}
#input-option86{
     display:flex; 
}
#input-option87{
     display:flex; 
}
#input-option88{
     display:flex; 
}




.no-padding, .block.no-padding {
    padding: 0;
    margin-top: 100px;
}
.red-bg {
    background-color: #E31E24;
}
.no-padding {
    padding: 0 !important;
}
.bottom-clouds-mockup {
    position: absolute;
    /* bottom: -40px; */
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 188px;
}
.app-info {
    float: left;
    width: 100%;
    margin-left: -25px;
    margin-top: 35px;
}
.red-bg .app-info > h4, .red-bg .app-info > p {
    color: #fff;
}
.app-info > h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}
.red-bg .app-info > p {
    color: #fff;
}
.red-bg .app-info > h4, .red-bg .app-info > p {
    color: #fff;
}
.app-info > p {
    font-size: 15px;
    line-height: 27px;
}
.app-download-btns {
    float: left;
    width: 100%;
}
.app-download-btns > a {
    float: left;
    margin-top: 16px;
    margin-right: 16px;
}
.overlape-110, .overlape-45, .overlape-95 {
    margin-top: -110px;
    position: relative;

















