/**
* Template Name: Delicious - v3.0.0
* Template URL: https://bootstrapmade.com/delicious-free-restaurant-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* "Poppins", sans-serif */
  font-family: "Iransans", yekan_2;
  color: #444444;
}


html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #e47911;
}

a:hover {
  color: #ffc56e;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Iransans", "Satisfy", sans-serif;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #e47911;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #ffa012;
  color: #fff;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(35, 47, 62, 1);
  color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
  
}

#topbar.topbar-scrolled {
  top: -50px;
}

#topbar i {
  color: #e47911;
}

#topbar i + i {
  margin-left: 15px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  top: 50px;
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(35, 47, 62, 0.85);
}

#header.header-transparent {

}

#header.header-scrolled {
  top: 0;
  background: rgba(35, 47, 62, 0.85);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
    background: rgba(35, 47, 62, 0.85);
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: white;
  padding: 9px 14px;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  font-family: "Iransans", yekan_2;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #e47911;
  text-decoration: none;
}

.nav-menu .book-a-table a {
  background: #e47911;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-menu .book-a-table a:hover {
  background: #ffa012;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #433f39;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #e47911;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #433f39;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #e47911;
  text-decoration: none;
}

.mobile-nav .book-a-table a {
  background: #e47911;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  display: inline-block;
}

.mobile-nav .book-a-table a:hover {
  background: #ffa012;
  color: #fff;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(39, 37, 34, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: 500px;*/
  height: 100%;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  /*height: 500px;*/
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: '';
  /*background-color: rgba(12, 11, 10, 0.3);*/
  background-color: rgba(12, 11, 10, 0);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero h2 span {
  color: #e47911;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  opacity: 1;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-menu, #hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #e47911;
}

#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #e47911;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  color: #232f3e;
}

.section-title h2 span {
  color: #e47911;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #000;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #fffaf3;
}

.about .content {
  padding: 0 80px;
}

.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
  font-size: 15px;
  color: #848484;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li + li {
  margin-top: 15px;
}

.about .content ul li {
  position: relative;
  padding-right: 26px;
}

.about .content ul i {
  font-size: 20px;
  color: #e47911;
  position: absolute;
  right: 0;
  top: 2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#e47911 50%, rgba(255, 176, 59, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 176, 59, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #e47911;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .about .content, .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }
  .about .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Whu Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.why-us .box span {
  display: block;
  font-size: 70px;
  font-weight: 700;
  color: #007eb9;
  text-align: center;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #232f3e;
  text-align: center;
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
  text-align: center;
}

.why-us .box:hover {
  background: #232f3e;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border: 2px solid #e47911;
  border-radius: 50px;
}

.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
  color: #fff;
  background: #e47911;
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}

.menu .menu-content {
  margin-top: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................"
 "...................................................................."
 "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #dad8d4;
  font-family: "Iransans",Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  padding-right: 10px;
  background: #fff;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: #ff9b08;
}

.menu .menu-content span {
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}

.menu .menu-ingredients {
  font-style: italic;
  font-size: 14px;
  font-family: "Iransans", "Comic Neue", sans-serif;
  color: #948c81;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: #e47911;
}

.specials .nav-link.active {
  color: #e47911;
  border-color: #e47911;
}

.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #433f39;
}

.specials .details p {
  color: #777777;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
  .specials .nav-link.active {
    color: #fff;
    background: #e47911;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/

.events_2 {
  background: url(../assets/img/advantages.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events_2 ol{

}

.events_2 ol li{
  line-height: 40px;
}

@media (min-width: 1024px) {
  .events_2 {
    background-attachment: fixed;
  }
}


.events {
  background: url(../assets/img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: '';
  background-color: rgba(12, 11, 10, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: #fff;
}

.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #e47911;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Iransans", "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #e47911;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #e47911;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .owl-nav, .events .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.events .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.events .owl-dot.active {
  background-color: #e47911 !important;
}

@media (min-width: 992px) {
  .events .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .error-message br + br {
  margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input, .book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}

.book-a-table .php-email-form button[type="submit"] {
  background: #e47911;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type="submit"]:hover {
  background: #ffa012;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  padding-bottom: 0;
}

.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs {
  background: url("../assets/img/chefs-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.chefs::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
}

.chefs .container {
  position: relative;
  z-index: 10;
}

.chefs .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.chefs .member .pic {
  overflow: hidden;
}

.chefs .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #433f39;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.chefs .member h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
  color: #6c665c;
  position: relative;
  padding-bottom: 10px;
  font-family: "Iransans", "Poppins", sans-serif;
}

.chefs .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #ffcf88;
  bottom: 0;
  left: calc(50% - 25px);
}

.chefs .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.chefs .member .social {
  margin-top: 15px;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: #7a7368;
}

.chefs .member .social a:hover {
  color: #e47911;
}

.chefs .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .chefs .member {
    margin-bottom: 110px;
  }
}

@media (min-width: 1024px) {
  .chefs {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../assets/img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(12, 11, 10, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  font-family: "Iransans", "Poppins", sans-serif;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
  font-family: "Iransans", "Comic Neue", sans-serif;
}

.testimonials .testimonial-item .stars {
  color: #e47911;
  margin-bottom: 10px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
  background-color: #e47911 !important;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #e47911;
  float: right;
  width: 44px;
  height: 44px;
  background: #fff6e8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 60px 0 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #433f39;
  font-family: "Iransans", "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 60px 0 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #7a7368;
}

.contact .info:hover i {
  background: #e47911;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #e47911;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ffa012;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  color: #232f3e;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  border-top: 3px solid #232f3e;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #e47911;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15px;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  /*background: #007eb9;*/
  /*color: #fff;*/
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  /*background: #eee;*/
  /*color: #007eb9;*/
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

.simple_btn_1 {
  background: white fixed center center;
  background-size: cover;
  padding: 20px 0;
}

.simple_btn_1 h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.simple_btn_1 p {
  color: #fff;
}

.simple_btn_1 .simple_btn_1-btn {
  font-family: "Iransans";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.3s;
  margin: 10px;
  border: 2px solid #37475a;
  color: #37475a;
}

.simple_btn_1 .simple_btn_1-btn:hover {
  background: #37475a;
  border: 2px solid #37475a;
  color: #fff;
}

@media (max-width: 1024px) {
  .simple_btn_1 {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .simple_btn_1 .simple_btn_1-btn-container {
    align-items: center;
    justify-content: flex-end;
  }
}

.main_color{
  color: #e47911;
}

.main_background_color{
  background-color: #e47911;
}

.main_color_soft{
  color: #ffd1b3;
}

.main_background_color_soft{
  background-color: #ffd1b3;
}

.second_color{
  color: #232f3e;
}

.second_background_color{
  background-color: #232f3e;
}

.third_color{
  color: #48a3c6;
}

.third_background_color{
  background-color: #48a3c6;
}

.forth_color{
  color: #007eb9;
}

.forth_background_color{
  background-color: #007eb9;
}

.fifth_color{
  color: #37475a;
}

.fifth_background_color{
  background-color: #37475a;
}

.backend_error_message{
  background-color: #fb3449;
  color: white;
  font-family: yekan;
  direction: rtl;
  text-align: right;
  padding: 5px;
  font-size: 15px;
}

.seller_error_message{
  background-color: #e47911;
  color: black;
  font-family: yekan;
  direction: rtl;
  text-align: right;
  padding: 12px 0px;
  font-size: 15px;
  margin-bottom: 40px;
}

.seller_success_message{
  background-color: green;
  color: white;
  font-family: yekan;
  direction: rtl;
  text-align: right;
  padding: 12px 0px;
  font-size: 15px;
  margin-bottom: 40px;
  padding-right: 15px;
}

a.simple {
  text-decoration: none;
  color: black;
}

a.simple:hover {
  color: #e47911;
  background-color: transparent;
  text-decoration: none;
}

.seller_error_code_div{
  font-family: iransans2;
  font-size: 24px;
  font-width: bold;
}

.seller_success_code_div{
  font-family: iransans2;
  font-size: 24px;
  font-width: bold;
}

.seller_error_dependency{
  border-radius: 5px;
  padding: 0px 9px;
  color: black;
  margin: 0px 5px;
  background: white;
  font-family: iransans;
}

.backend_page_title_div{
  padding: 15px 0px;
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 10px;
  background-color: #bfcfa8;
  text-align: right;
  direction: rtl;
}

.grey_button{
  border: 2px solid #48a3c6;
  padding: 5px 20px;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0px 0px 30px #eee;
  font-family: iransans2;
}

.alert_red{
  text-align: right;
  direction: rtl;
  border: 1px solid red;
  color: red;
  padding: 15px;
  border-radius: 5px;
  margin: 10px 0px;
  font-family: Iransans;
  background-color: lavenderblush;
}

.alert_green{
  text-align: right;
  direction: rtl;
  border: 1px solid green;
  color: green;
  padding: 15px;
  border-radius: 5px;
  margin: 10px 0px;
  font-family: Iransans;
  background-color: aliceblue;
}

.green_color{
  color: green;
}

.main_page_special_products_title_class{
  color: #e47911;
  border-right: 2px solid #e47911;
  font-weight: 600;
  transition: 300ms;
  font-size: 18px;
  background-color: #fffaf3;
}

.main_page_special_products_title_class_off{
  transition: 300ms;
  font-size: 16px;
  color: #433f39;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
}

.full_width_height{
  width: 100%;
  height: 100%;
}

.padding0{
  padding: 0px;
}

.divider_5{
  height: 5px;
}

.divider_10{
  height: 10px;
}

.divider_15{
  height: 15px;
}

.divider_20{
  height: 20px;
}

.each_box_shadower{
  z-index: 10;
  transition: 300ms;
}

.each_box_shadower:hover{
  box-shadow: 0px 0px 20px #ddd;
  z-index: 1000;
  transition: 300ms;
}

.special_products_pattern{
	background: url(../images/public/special_products_pattern.png);
}

.brand_icon{
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 300ms;
}

.brand_icon:hover{
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
  transition: 300ms;
}

.simple_btn_2{
  background: #e47911;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

.simple_btn_2:hover{
  background: #ae5b0a;
  color: white;
}

.simple_btn_2_full_width{
  background: #e47911;
  border: 0;
  padding: 10px;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  width: 100%;
  font-size: 17px;
}
.simple_btn_2_full_width:hover{
  background: #ae5b0a;
}

.simple_btn_3{
  background: #232f3e;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

.simple_btn_3:hover{
  background: #007eb9;
}

.simple_btn_3_full_width{
  background: #232f3e;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  width: 100%;
  font-size: 17px;
}

.simple_btn_3_full_width:hover{
  background: #007eb9;
}

.simple_btn_4:hover{
  background: #007eb9;
  border: 1px solid #007eb9;
  color: #fff;
}

.simple_btn_4{
  background: #fff;
  border: 1px solid #007eb9;
  color: #007eb9;
  padding: 10px 24px;
  transition: 0.3s;
  border-radius: 4px;
  font-size: 17px;
}

.simple_btn_7:hover{
  background: #232f3e;
  border: 1px solid #232f3e;
  color: #fff;
}

.simple_btn_7{
  background: #007eb9;
  border: 1px solid #007eb9;
  color: #fff;
  padding: 10px 24px;
  transition: 0.3s;
  border-radius: 4px;
  font-size: 17px;
}

.vcenter {
  display: inline-block;
  vertical-align: text-top;
  float: none;
}

/* Checkbox 1 */

.check {
  cursor: pointer;
  position: relative;
  margin: auto;
  width: 18px;
  height: 18px;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
  margin: 0px 5px;
}
.check:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34,50,84,0.03);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.check svg {
  position: relative;
  z-index: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #c8ccd4;
  stroke-width: 1.5;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
}
.check svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
}
.check svg polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 66;
}
.check:hover:before {
  opacity: 1;
}
.check:hover svg {
  stroke: #4285f4;
}
.cbx:checked + .check svg {
  stroke: #e47911;
}
.cbx:checked + .check svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}
.cbx:checked + .check svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}

/* Checkbox 1 */

/* Checkbox 2 */

.check2 {
  cursor: pointer;
  position: relative;
  margin: auto;
  width: 18px;
  height: 18px;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
  margin: 0px 5px;
}
.check2:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34,50,84,0.03);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.check2 svg {
  position: relative;
  z-index: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #444;
  stroke-width: 1.5;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
}
.check2 svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
}
.check2 svg polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 66;
}
.check2:hover:before {
  opacity: 1;
}
.check2:hover svg {
  stroke: #4285f4;
}
.cbx:checked + .check2 svg {
  stroke: #e47911;
}
.cbx:checked + .check2 svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}
.cbx:checked + .check2 svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}

/* Checkbox 2 */

input.change_price + label
{
  background: url("../images/public/input/change_price_icon.png") no-repeat;
  height: 40px;
  width: 150px;
  display:inline-block;
  padding: 0 0 0 0px;
  margin: 0px 5px;
  cursor: pointer;
}

.simple_btn_5_selected{
  background-color: #007eb9;
  padding: 5px 10px;
  border-radius: 50px;
  color: white;
  font-size: 13px;
  font-family: yekan;
  margin-right: 10px;
  color: white;
}


.simple_btn_5{
  background-color: #bbb;
  padding: 5px 10px;
  border-radius: 50px;
  color: white;
  font-size: 13px;
  font-family: yekan;
  margin-right: 10px;
  color: white;
  transition: 300ms;
}

.simple_btn_5:hover{
  background: #999;
  transition: 300ms;
}

.simple_btn_6:hover{
  background: #cb3449;
  transition: 300ms;
}

.simple_btn_6{
  background: #fb3449;
  padding: 5px 10px;
  border-radius: 50px;
  color: white;
  font-size: 13px;
  font-family: yekan;
  margin-right: 10px;
  color: white;
  transition: 300ms;
}

.one_line_text{
  white-space: nowrap;
  overflow: hidden;
}

.delete_icon_1{
  transition: 300ms ease;
  background-color: #fb3449;
}

.delete_icon_1:hover{
  transition: 300ms ease;
  background-color: #721c24;
}

.imp_title:before{
  content: '';
  position: absolute;
  display: block;
  width: 180px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 90px);
}

.section-title h2::after {
}

.imp_title:after{
  content: '';
  position: absolute;
  display: block;
  width: 100px;
  height: 3px;
  background: #e47911;
  bottom: 0;
  left: calc(50% - 50px);
}

.section-title h3 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #232f3e;
}

.section-title h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #e47911;
  bottom: 0;
  left: calc(50% - 20px);
}

.simple_text_with_tag_a{
  color: #e47911;
  transition: 300ms;
}

.simple_text_with_tag_a:hover{
  color: #ae5b0a;
  transition: 300ms;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

#profile_brief_box_row:hover{
  transition: 300ms ease;
  background: #eeeeee;
}

#profile_right_pannel_item{
  transition: 300ms ease;
  color: #333;
  padding: 10px;
  font-size: 13px;
  border-bottom: 1px solid #eee;
}

#profile_right_pannel_item:hover{
  transition: 300ms ease;
  background: #eeeeee;
  color: #007eb9;
}

#profile_right_pannel_item_2{
  transition: 300ms ease;
  background: antiquewhite;
  color: crimson;
  padding: 10px;
  font-size: 13px;
  border-bottom: 1px solid #eee;
}

#profile_right_pannel_item_2:hover{
  transition: 300ms ease;
  color: white;
  background-color: crimson;
}

input[type=radio] + label
{
  background: url("../images/public/input/radio_off.png") no-repeat;
  height: 20px;
  width: 20px;
  display:inline-block;
  padding: 0 0 0 0px;
  margin: 0px 5px;
  cursor: pointer;
}

input[type=radio]:checked + label
{
  background: url("../images/public/input/radio_on.png") no-repeat;
  height: 20px;
  width: 20px;
  display:inline-block;
  padding: 0 0 0 0px;
  margin: 0px 5px;
  cursor: pointer;
}

input[type="radio"]
{
  display: none;
}

a:focus {
  outline: none;
}

input:focus{
  outline-width: 0;
  outline: none;
}

textarea:focus{
  outline-width: 0;
  outline: none;
}

select:focus{
  outline-width: 0;
  outline: none;
}

option:focus{
  outline-width: 0;
  outline: none;
}

.simple_hint_1{
  color: #000;
  padding: 10px;
  font-size: 15px;
  font-family: yekan_2;
  direction: rtl;
  text-align: right;
  margin: 10px;
  border: 1px solid black;
  border-radius: 5px;
  background-color: #f9f9f9;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio2 #portfolio2-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio2 #portfolio2-flters li.do {
  cursor: pointer;
  display: inline-block;
  margin: 10px 3px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 8px;
  border-radius: 50px;
  font-family: "yekan";
}

.portfolio2 #portfolio2-flters li.do:hover, .portfolio2 #portfolio2-flters li.filter-active {
  background: #007eb9;
  color: #fff;
}

.portfolio2 #portfolio2-flters li.dont {
  cursor: default;
  display: inline-block;
  margin: 10px 3px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 8px;
  border-radius: 50px;
  font-family: "yekan";
}

.portfolio2 #portfolio2-flters li.dont:hover {

}

.portfolio2 .portfolio2-item {
  margin-bottom: 30px;
}

.portfolio2 .portfolio2-item .portfolio2-img {
  overflow: hidden;
}

.portfolio2 .portfolio2-item .portfolio2-img img {
  transition: all 0.6s;
}

.portfolio2 .portfolio2-item .portfolio2-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(15, 41, 47, 0.8);
  padding: 10px 15px;
}

.portfolio2 .portfolio2-item .portfolio2-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio2 .portfolio2-item .portfolio2-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio2 .portfolio2-item .portfolio2-info .preview-link, .portfolio2 .portfolio2-item .portfolio2-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio2 .portfolio2-item .portfolio2-info .preview-link:hover, .portfolio2 .portfolio2-item .portfolio2-info .details-link:hover {
  color: #007eb9;
}

.portfolio2 .portfolio2-item .portfolio2-info .details-link {
  right: 10px;
}

.portfolio2 .portfolio2-item:hover .portfolio2-img img {
  transform: scale(1.15);
}

.portfolio2 .portfolio2-item:hover .portfolio2-info {
  opacity: 1;
}


span.lineafter::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #e47911;
  margin-top: 10px;
}

.small_rounded{
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.small_rounded_2{
  font-size: 18px;
  display: inline-block;
  background: #ccc;
  color: #000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.small_rounded_3{
  font-size: 18px;
  display: inline-block;
  background: #eee;
  color: #000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.small_rounded_rect_1{
  font-size: 18px;
  display: inline-block;
  background: #eee;
  color: #000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50px;
  text-align: center;
  height: 36px;
  transition: 0.3s;
}

#box_shadow_element{
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  transition: all 0.4s;
}

#box_shadow_element:hover{
  box-shadow: 0 3px 20px -2px #aaa;
  transition: all 0.4s;
}

#header_search_bottom_a_div:hover{
  background-color: #fafafa;
}

#header_search_top_a_div:hover{
  background-color: #fafafa;
}

.footer_2 > h4{
  font-size: 21px;
  font-family: kalame;
  font-weight: bold;
  padding-bottom: 20px;
  color: #007eb9;
}

.footer_2 > h5 > a{
  font-size: 13px;
  font-family: kalame;
  color: #555;
  transition: 300ms;
  padding: 5px 10px;
  display: inline-block;
}

.footer_2 > h5 > a:hover{
  transition: 300ms;
  color: #007eb9;
  padding: 5px 12px;;
}

.red_bottom_border{
  border-bottom: 1px solid red;
}

.contact_us_subject_border{
  border: 1px solid #ced4da;
}

.contact_us_subject_border_err{
  border-right: 1px solid #ced4da;
  border-left: 1px solid #ced4da;
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid red;
}
