@font-face {
  font-family: IRANSans;
  font-style: normal;
  font-weight: bold;
  src: url('../fonts/woff/IRANSansWeb_Bold.woff') format('woff');  /* All Major Browsers */
}
@font-face {
  font-family: IRANSans;
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/woff/IRANSansWeb_Medium.woff') format('woff');  /* All Major Browsers */
}
@font-face {
  font-family: IRANSans;
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/woff/IRANSansWeb_Light.woff') format('woff');  /* All Major Browsers */
}
@font-face {
  font-family: IRANSans;
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/woff/IRANSansWeb_UltraLight.woff') format('woff');  /* All Major Browsers */
}
@font-face {
  font-family: IRANSans;
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/woff/IRANSansWeb.woff') format('woff');  /* All Major Browsers */
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "IRANSans", sans-serif;
  color: #334240;
  font-size: 1rem;
  line-height: 1.5;
}

a {
  color: #DD4814;
  outline: none;
}

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

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

.vira-rtl{
  direction: rtl;
}
.hidden{
  display: none;
}
.card .card-header.row .col-sm-6{
  padding: 10px 0;
  border: solid 1px #eee;
}
.card .card-header.row .col-sm-6 a:hover, .card .card-header.row .col-sm-6.active a{
  color: #DD4814;
}
.card .card-header.row .col-sm-6 a{
  text-decoration: none;
  color: #404040;
}
.card-block .detail-post{
  color: #9c9c9c;
  font-size: 11px;
}
.user-time.detail-post {
  font-size: 12px;
}
.full-width .card-block .detail-post{
  color: #7E7E7E;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #DD4814;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #DD4814;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

#header .logo h1 a, #header .logo h1 a:hover {
  color: #425451;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

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

/*--------------------------------------------------------------
# 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: right;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #425451;
  padding: 14px 15px;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  font-family: "IRANSans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

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

.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: 13px;
  font-weight: 500;
  text-transform: none;
  color: #08362f;
}

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

.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 {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  right: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(43, 56, 54, 0.7);
  transition: 0.4s;
  text-align: right;
}
.mobile-nav .hidden{
  display: block;
}
.mobile-nav .hidden a{
  color: #ffffff !important;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav .lrg-vira li{
  display: none;
}
.mobile-nav .lrg-vira li:last-child{
  display: block;
  opacity: 0.3;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  transition: ease-in-out 0.3s;
}

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

.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: "\eaa0";
}

.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-toggle {
  position: fixed;
  top: 20px;
  right: 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: #DD4814;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(21, 27, 26, 0.8);
  overflow: hidden;
  display: none;
}

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

.mobile-nav-active .mobile-nav {
  right: 0;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(21, 27, 26, 0.7);
  overflow: hidden;
  padding: 0;
}

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

#hero .carousel-item::before {
  content: '';
  background-color: rgba(21, 27, 26, 0.7);
  position: absolute;
  height: 100vh;
  width: 100%;
  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 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-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

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

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

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

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

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

#hero .carousel-indicators .active {
  background-color: #DD4814;
}

#hero .btn-get-started, #ask-question .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #DD4814;
}

#hero .btn-get-started:hover, #ask-question .btn-get-started{
  background: #DD4814;
  color: #fff;
  text-decoration: none;
}
#hero .btn-get-started.hover{
  background: #DD4814;
}
#hero .btn-get-started.hover:hover{
  background: none !important;
}
#ask-question .btn-get-started:hover{
  background: none !important;
  color: #334240;
}

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

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
@media(max-width: 576px){
  div.carousel-container div.carousel-content div.row div.col-sm-6.text-left{
    text-align: center !important;
  }
  div.carousel-container div.carousel-content div.row div.col-sm-6.text-right{
    text-align: center !important;
  }
}

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

.section-bg {
  background-color: #f2f5f4;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #4b605c;
}

.section-title p {
  margin-bottom: 0;
  color: #5f7c78;
}

#ad-pop-img {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    /* font-family:Arial, Helvetica, sans-serif; */
    text-align: center;
    overflow: visible;
    display: block;
    z-index: 1;
}
@media (max-width: 994px) {
    #ad-pop-img{
        max-width: 70% !important;
    }
}
#ad-pop-img .pop-inner {
    display: inline-block;
    position: relative;
    background: #DD4814;
}
#ad-pop-img .pop-banner {
    display: block;
    max-width: 100%;
    height: auto;
}
#ad-pop-img .pop-close {
    position: absolute;
    top: -15px;
    right: 0;
    margin-left: 200px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}
#ad-pop-img.shown {
    display: block;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 500;
  font-size: 24px;
  color: #886e61;
  font-family: "Poppins", sans-serif;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #DD4814;
}

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

.about .progress {
  height: 50px;
  display: block;
  background: none;
}

.about .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #886e61;
}

.about .progress .skill .val {
  float: right;
  font-style: normal;
}

.about .progress-bar-wrap {
  background: #e6eceb;
}

.about .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #DD4814;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .count-box {
  box-shadow: -10px -5px 40px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  background: #fff;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #DD4814;
  float: right;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #886e61;
  margin-right: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #999177;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #bba091;
}

/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.services .row .col-lg-3 a{
  color: #334240;
}
.services .row .col-lg-3 a:hover{
  color: #ffffff;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  background: #ffc3a3;
  left: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #DD4814;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #DD4814;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #425451;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a, .services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #DD4814;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(66, 84, 81, 0.5), rgba(43, 56, 54, 0.5)), url("../img/new/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
#webinar {
  background: linear-gradient(rgba(66, 84, 81, 0.5), rgba(43, 56, 54, 0.5)), url("../img/nutrition.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

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

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #DD4814;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #DD4814;
}
#webinar.cta h3 {
  color: #343434;
}
#webinar.cta p {
  color: #343434;
}
#webinar.cta .cta-btn {
  color: #ffffff;
  background: rgba(221, 72, 20, 0.61);
}
#webinar.cta .cta-btn:hover {
  background: #DD4814;
  color: #ffffff;
}

/*--------------------------------------------------------------
# More Services
--------------------------------------------------------------*/
#articles .vira-rtl .row .col-lg-4 .card{
  margin: auto;
}
.more-services img {
  border-radius: 0;
}

.more-services .card {
  border: 0;
  text-align: center;
}

.more-services .card-body {
  -moz-text-align-last: center;
  text-align-last: center;
}

.more-services .card-title a {
  font-weight: 600;
  font-size: 17px;
  color: #334240;
  transition: ease-in-out 0.3s;
}

.more-services .card-title a:hover {
  color: #DD4814;
}

.more-services .btn, #about .btn{
  border-radius: 50px;
  padding: 4px 30px 6px 30px;
  border: 2px solid #DD4814;
}

.more-services .btn:hover, #about .btn:hover{
  color: #fff;
  background: #DD4814;
}

/*--------------------------------------------------------------
# Info Box
--------------------------------------------------------------*/
.info-box .content {
  padding: 60px 100px 0 100px;
}

.info-box .content h3 {
  font-weight: 400;
  font-size: 34px;
}

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

.info-box .content p {
  font-size: 15px;
  color: #6b8a86;
}

.info-box .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.info-box .accordion-list {
  padding: 0 100px 60px 100px;
}

.info-box .accordion-list ul {
  padding: 0;
  list-style: none;
}

.info-box .accordion-list li + li {
  margin-top: 15px;
}

.info-box .accordion-list li {
  padding: 20px;
  background: #f2f5f4;
  border-radius: 5px;
}

.info-box .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  transition: ease-in-out 0.3s;
}

.info-box .accordion-list a:hover {
  color: #DD4814;
}

.info-box .accordion-list span {
  color: #e83e8c;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.info-box .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.info-box .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.info-box .accordion-list .icon-show {
  display: none;
}

.info-box .accordion-list a.collapsed {
  color: #343a40;
}

.info-box .accordion-list a.collapsed:hover {
  color: #DD4814;
}

.info-box .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.info-box .accordion-list a.collapsed .icon-close {
  display: none;
}

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

@media (max-width: 992px) {
  .info-box {
    /* img {
      padding-top: 30px;
    } */
  }
  .info-box .content {
    padding-top: 30px;
  }
  .info-box .accordion-list {
    padding-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Our Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #334240;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #DD4814;
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: table;
  margin: auto;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(88, 113, 109, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-top: -29px;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}
.portfolio .portfolio-wrap .portfolio-info p:last-child {
  margin-top: -12px;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: -6px 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover, .portfolio .portfolio-wrap .portfolio-info a h4:hover{
  color: #DD4814;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: calc(50% - 50px);
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  text-align: center;
  margin: auto;
  display: table;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: -15px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
  margin-bottom: -20px;
  margin-top: 20px;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #DD4814;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .infos {
  position: relative;
  z-index: 2;
}

.contact .info {
  padding: 60px;
  background: #fff;
  color: #334240;
  text-align: center;
  box-shadow: -5px -5px 40px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 48px;
  color: #DD4814;
  margin-bottom: 15px;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  font-size: 15px;
}

.contact .info-bg {
  background: white;
}

.contact .contact-form-wrap {
  box-shadow: 10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 30px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 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 label {
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
  color: #5f7c78;
}

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

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #DD4814;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

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

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

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

@media (max-width: 1024px) {
  .contact .info {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
  }
}

@-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: #433e38;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #4f4639;
  border-bottom: 1px solid #635045;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a, #footer .copyright .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #886e61;
  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 .footer-top .social-links a:hover, #footer .copyright .social-links a:hover {
  background: #DD4814;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #DD4814;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #df4d1d;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #DD4814;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #8f4e1f;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}




/* profile */
.profile-info-box {
  padding: 30px 20px;
}
.profile-info-box p {
  font-size: 20px;
  padding: 10px 0;
}
.profile-info-box p.card-title {
  font-size: 15px;
}
.profile-info-box .btn, .comments-segment .check-login .btn, .register button.btn {
  background-color: #ff7517;
  color: #fff !important;
  margin-top: 1rem;
  cursor: pointer;
  text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}
/*.profile-info-box .card-body {*/
/*    border-radius: .25rem;*/
/*}*/

.profile-info-box .option-input, .register .option-input{
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  /*top: 3.33333px;*/
  right: 0;
  bottom: 0;
  left: 0;
  height: 25px;
  width: 25px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  /*margin-right: 0.5rem;*/
  outline: none;
  position: relative;
  z-index: 1000;
}
.profile-info-box .option-input:hover, .register .option-input:hover {
  background: #c7b18f;
}
.profile-info-box .option-input:checked, .register .option-input:checked {
  background: #ff7517;
}
.profile-info-box .option-input:checked::before, .register .option-input:checked::before {
  height: 25px;
  width: 25px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 20.66667px;
  text-align: center;
  line-height: 30px;
}
.profile-info-box .option-input:checked::after, .register .option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #ffc56c;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
.multi-select-div .select2-container {
  padding: 0!important;
}
.profile-info-box .help p {
  font-size: 15px;
}
.select2{
  /*background-color: #f6f6f6;*/
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 2px;
  color: #4d4d4d;
  -webkit-font-smoothing: antialiased;
  height: 44px;
  margin: 6px auto;
  padding: 3px 18px 3px 32px;
  white-space: nowrap;
  text-overflow: ellipsis;
  outline: none !important;
  /*box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);*/
  transition: border linear .2s, box-shadow linear .2s;
  width: 100%;
}
.multi-select-div .select2-container {
  border: none !important;
}
.select2-results__options{
  direction: rtl;
  text-align: right;
}

.select2-selection{
  background: none !important;
  border: 0 !important;
}

.select2{
  padding: 3px 18px !important;
}
select.form-control.select-sex{
  height: auto !important;
}

.text-core .text-wrap {
  width: 100% !important;
}
p.info-text{
    margin-bottom: -12px;
    font-size: 15px;
}
#new-doctor{
    width: 100% !important;
    box-shadow: none;
    height: 93px;
    direction: rtl;
    font-size: 17px;
    font-family: "IRANSans", sans-serif;
}
textarea.textbox{
    white-space: pre-line !important;
    padding: 8px !important;
}
.text-core .text-wrap .text-tags .text-tag{
    float: right !important;
    padding: 1px;
}
.text-core .text-wrap .text-tags {
    padding: 3px !important;
    border: 1px solid rgba(0,0,0,.15) !important;
    margin-top: 30px;
    min-height: 63px;
    height: auto !important;
    /*overflow-y: scroll !important;*/
}
.text-core .text-wrap textarea {
    border: solid 1px rgba(0,0,0,.15) !important;
    border-bottom: none !important;
}
.text-core .text-wrap .text-tags .text-label {
    font-size: 15px;
    font-family: "IRANSans", sans-serif;
}
.text-core .text-wrap .text-tags .text-tag .text-button {
    padding: 1px 17px 22px 3px !important;
    height: 20px !important;
}
.text-wrap{
    width: 100%;
}

.container .category-posts img {
  width: 100%;
}
.orange-icon {
    color: #ff7517;
}

.full-width .text-center .box {
    border: 1px solid #c4c4c4;
    /*background-color: #fff;*/
}
.full-width .text-center .box:hover {
    position: relative;
    top: -5px;
    box-shadow: 5px 5px 5px #aaaaaa;
}
.full-width {
    width: 100%;
    /*margin: auto;*/
    background: #f6f4f4;
    /*background-color: #e9e5dd;*/
    /*border: 1px solid #e1e1e1;*/
    /*box-shadow: 10px 10px 10px #aaaaaa;*/
}
.full-width .card-block .detail-post{
    color: #7E7E7E;
}
.most-viewd i{
    color: #DD5A18;
    vertical-align: middle;
}
.most-viewd h4{
    margin: 14px 0;
}
.full-width h4{
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}
.most-viewd h2{
    height: 60px;
    font-size: 1.063rem;
}
.most-viewd .text-xs-center{
    padding-right: .46875rem !important;
    padding-left: .46875rem !important;
}
.most-viewd .text-xs-center .box {
    border: 1px solid #eee;
    display: table;
}
.most-viewd .text-xs-center:first-child{
    padding-right: 0 !important;
}
.most-viewd .text-xs-center:last-child{
    padding-left: 0 !important;
}
.most-viewd .text-center .box {
    border: 1px solid #eee;
    display: block;
}


/*.breadcrumb {*/
/*    list-style: none;*/
/*    overflow: hidden;*/
/*    font: 18px Helvetica, Arial, Sans-Serif;*/
/*    padding: 0;*/
/*    background-color: #fff;*/
/*    border-radius: 0;*/
/*}*/
/*.breadcrumb li {*/
/*    float: right;*/
/*}*/
/*.breadcrumb li a {*/
/*    color: white;*/
/*    text-decoration: none;*/
/*    padding: 10px 55px 10px 0;*/
/*    background: #f05a28;*/
/*    position: relative;*/
/*    display: block;*/
/*    float: right;*/
/*}*/
/*.breadcrumb li a:after {*/
/*    content: " ";*/
/*    display: block;*/
/*    width: 0;*/
/*    height: 0;*/
/*    border-top: 50px solid transparent; !* Go big on the size, and let overflow hide *!*/
/*    border-bottom: 50px solid transparent;*/
/*    border-right: 30px solid #f05a28;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    margin-top: -50px;*/
/*    right: 100%;*/
/*    z-index: 2;*/
/*}*/
/*.breadcrumb li a:before {*/
/*    content: " ";*/
/*    display: block;*/
/*    width: 0;*/
/*    height: 0;*/
/*    border-top: 50px solid transparent;!* Go big on the size, and let overflow hide *!*/
/*    border-bottom: 50px solid transparent;*/
/*    border-right: 30px solid white;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    margin-top: -50px;*/
/*    margin-right: 1px;*/
/*    right: 100%;*/
/*    z-index: 1;*/
/*}*/
/*.breadcrumb li:first-child a {*/
/*    padding-right: 10px;*/
/*}*/

/*.breadcrumb li:last-child a {*/
/*    background: white !important;*/
/*    color: black;*/
/*    pointer-events: none;*/
/*    cursor: default;*/
/*}*/

/*.breadcrumb li:last-child a:after { border: 0; }*/
/*.breadcrumb li a:hover { background: #ff7517; }*/
/*.breadcrumb li a:hover:after { border-right-color: #ff7517 !important; }*/
/*!*breadcrumb end*!*/
.breadcrumbs {
    padding: 15px 0;
    background: #f6f4f4;
}

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

.breadcrumbs h2 {
    font-size: 26px;
    font-weight: 600;
}

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

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

ol.breadcrumb li:last-child a {
    color: #334240;
}
ol.breadcrumb li:last-child a:hover {
    color: #df4d1d;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-left: 10px;
    color: #655356;
    content: "/";
}
.breadcrumb{
    background: none;
}

div.box .box-detail a, #side-menu-wrapper .most-viewed-title a{
    color: rgba(51,49,50,.9);
    text-decoration: none;
}

div.box .box-detail a:hover,  #side-menu-wrapper .most-viewed-title a:hover{
    color: #DD5A18;
}
.box-detail{
    padding-bottom: 1rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-top: 10px;
}
ul.pagination {
    margin: 0;
    padding-right: 0;
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 3em;
    overflow: hidden;
}
.pagination .page-item:nth-child(1) {
    border-radius: 0 3px 3px 0 !important;
}
.pagination .page-item {
    float: right;
    position: relative;
}
.pagination .page-link {
    margin-right: 0;
    text-align: center;
    padding: 7px 15px;
    font-size: 14px;
    background-color:
        transparent;
}
.pagination a {
    color: #000;
    margin-right: 12px;
    border: none;
}
.page-link {
    border-color: #f1f1f1;
    color: #868686;
    font-size: .9rem !important;
}
.page-link {
    position: relative;
    padding: .5rem .75rem;
    margin-left: -1px;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.breadcrumb-item, .page-link {
    float: left;
}
.pagination .page-item:nth-last-child(1), .pagination .page-item:nth-last-child(1) .page-link {
    border-radius: 3px 0 0 3px !important;
}
.page-item:first-child .page-link {
    border: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.page-item:last-child .page-link {
    border: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.page-item.active .page-link {
    background-color: #f05a28;
    border-color: #f05a28;
}
.level-three .main-cat {
    z-index: 2;
    font-weight: 700;
    background-color: #fff;
    display: inline;
    position: relative;
    padding-left: 15px;
}
.level-three .divider {
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    background-color: #464445;
    z-index: 1;
}
.position-relative {
    position: relative;
}
.level-three .title {
    font-weight: 700;
}
.level-three .title a {
    color: #106a6e;
}
.level-three ul {
    padding: 0 16px;
    color: #0097a7;
}
.level-three ul li {
    margin-top: 5px;
    margin-bottom: 5px;
    list-style-type: disc;
}
.level-three ul li a {
    color: #0097a7;
}












/* start article page */
.article-show{
  display: block;
  margin: 20px auto;
}
.article{
  display: block;
  width: 67%;
  margin: auto;
}
.article .category-name{
  font-size: 15px;
  border-bottom: 5px solid #c4c49c;
}

.article-show .image img{
  width: 100%;
  /*height: 100%;*/
}
.title-section{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: grid;

  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;

  align-items: center;
}

.article-show .title-section div h1{
  font-size: 30px;
  text-shadow: 1px 1px 1px rgba(0,0,0,.3);
  margin-bottom: 10px;

}
.article-show .main-section{
  background-image: url("../img/feature-noise.jpg");
  color: #fff;
}
.article .description img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

.article .short-description{
  border: 1px solid #e5e5bd;
  border-radius: 5px;
}

.article .article-body{
  padding-bottom: 15px;
}
.article-show .sidebar{
  width: 25%;
  border-right: solid 1px #e5e5bd;
}
.article-show .sidebar .sidebar-nav{
  display: block;
  width: 90%;
  margin: auto;
}
.article-show .sidebar .adv img{
  max-width: 100%;
}
.article-show .sidebar .sidebar-most-viewed{
  font-size: 17px;
  margin: 20px 0;
}

.article-show .sidebar .most-viewed-image img{
  width: 100%;
}

.article-show .sidebar .most-viewed-title {
  text-decoration: none;
  font-size: 15px;
}

.comment{
  list-style: none;
}
.comments-segment{
  margin: 30px 0;
}
.send-comment{
  display: table;
  width: 100%;
}
.send-comment textarea{
  width: 100%;
  height: 160px;
}
.send-comment input{
  float: none;
  margin-top: 8px;
}

.comment-list .replay{
  margin-right: 50px;
}

.comment .img-responsive {
  width: 50px;
  height: 50px;
}
.write-comment {
  border-bottom: 5px solid #cc3f10;
}
.short-description.links {
  background-color: #f7f6f3;
}

.short-description ul.title-links li a{
  text-decoration: none;
  color: #cc3f10;
}
.article .hashtags{
  display: table;
  margin-top: 6px;
}
.article .hashtag{
  float: right;
  border: solid 1px #e5e5e5;
  border-radius: 15px;
  background: rgba(219, 219, 219, 0.63);
  color: rgba(78, 78, 78, 0.85);
  margin: 4px 4px;
  padding: 6px 14px 5px;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 2s ease;
}
.article h2{
  font-size: 1rem;
  font-weight: 500;
  color: #cc3f10;
}
.most-viewed-sidebar {
  display: none;
}
@media (max-width: 850px) {
  .article-show .sidebar{
    display: none;
  }
  .most-viewed-sidebar {
    display: block;
  }
  .article{
    width: 100%;
    /*margin: 20px auto;*/
  }
  .article-show .title-section h1{
    padding-top: 5%;
    padding-bottom: 2%;
  }
  .article-show .title-section div{
    padding-bottom: 5%;
  }
}
/* end article page */

/*start video page */
.h_iframe-aparat_embed_frame{position:relative;}
.h_iframe-aparat_embed_frame .ratio{display:block;width:100%;height:auto;}
.h_iframe-aparat_embed_frame iframe{position:absolute;top:0;left:0;width:100%;height:100%;}
/* end article page */

@media (max-width: 991px){
  .mobile-extra-login{
    display: block;
  }
}


/* start single program css */
#single-hike .content-wrapper{
    display: block;
}
#single-hike .single-head{
    direction: ltr;
    display: table;
    width: 100%;
    margin-top: 8px;
}
#single-hike .single-head div{
    float: left;
    margin-right: 4px;
}
#single-hike .single-head img{
    width: 24px;
    vertical-align: top;
}
#single-hike h1{
    color: #cc3f10;
    font-size: 20px;
}
#single-hike  .detail{
    font-size: 16px;
    line-height: 28px;
}
#body-wrapper-ltr #single-hike  .detail {
    float: left;
}
#single-hike .detail .line{
    border-bottom: 1px solid #e7e7e7;
    display: table;
    width: 100%;
}
#single-hike .detail .line p{
    float: right;
    font-family: Tahoma;
}
#single-hike .detail .line p:first-child{
    margin-left: 2px;
}
#single-hike .detail .sep{
    margin-top: 30px;
}
#single-hike .detail .line div:first-child{
    float: right;
    padding: 6px 0;
}
#single-hike .detail .line div:last-child{
    float: left;
    padding: 6px 0;
}
#single-hike .detail .line a{
    color: #0000ff;
}
#single-hike .detail h2{
    font-size: 16px;
    margin-bottom: 18px;
}
#single-hike .detail .btn-register{
    margin-top: 20px;
    padding: 8px 10px;
    text-align: center;
    width: auto;
    border-radius: 15px;
    float: none;
}
#single-hike .detail .btn-register a{
    color: #ffffff;
}
#single-hike .image{
    /*text-align: center;*/
}
#single-hike img{
    width: 100%;
    max-height: 400px;
}
#single-hike .alert-danger{
    color: #000000;
}
#single-hike div div.description{
    direction: rtl;
}
#single-hike div.container.content-wrapper div.image section div div.description p{
    margin-bottom: 0 !important;
    color: #242424;
}
#single-hike .group-detail.location iframe {
    max-width: 300px;
    max-height: 300px;
    width: 100%;
}
@media (max-width:1200px) {
    #single-hike .detail {
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }

    #single-hike .image, #single-hike .organizer {
        float: none;
        width: 100%;
        border-bottom: dashed 2px #dddddd;
        margin-bottom: 10px;
    }

    #single-hike .content-wrapper {
        display: block;
    }

    #single-hike img {
        max-width: 100%;
    }
}
@media (min-width:1200px) {
    #single-hike {
        width: 100%;
    }
}
#single-hike .description img {
    width: auto;
}
#single-hike img.mySlides{
    width: auto;
    margin: auto;
    max-width: 90%;
}
#single-hike .description p{
    margin-bottom: 0!important;
}
#main .share-on{
    margin: 10px 0 -12px;
    display: table;
}
#main .share-on div{
    float: right;
}
#main .share-on div:first-child{
    margin-left: 6px;
    padding-top: 6px;
}
.btn-register.submit{
    width: 15.66667%;
    float: left;
    border: none;
    height: 44px;
    border-radius: 0;
    background-color: #ff7517;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}
.btn-register.submit:hover{
    background-color: #DD4814;
}
#main .description{
    font-size: 15px;
    text-align: justify;
}
.single-pr .bg-light{
    background: #f2f3f4 !important;
}
/* end single program css */


/* start owl section */
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled{
    display: block;
}
.slide-one-item-alt{
    position: relative;
}
.slide-one-item-alt.owl-theme .owl-nav, .slide-five-item .owl-nav {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
}
.slide-one-item-alt.owl-theme .owl-nav .owl-prev, .slide-one-item-alt.owl-theme .owl-nav .owl-next{
    position: absolute;
    height: 100px;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}
.slide-one-item-alt.owl-theme .owl-nav .owl-prev i, .slide-one-item-alt.owl-theme .owl-nav .owl-next i{
    font-size: 2.5rem;
    color: #ffffff;
}
.slide-one-item-alt.owl-theme .owl-nav .owl-prev, .slide-one-item-alt.owl-theme .owl-nav .owl-next{
    left: 0;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    margin: 0 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(0,0,0,.6) !important;
    outline: none;
}
.slide-one-item-alt.owl-theme .owl-nav .owl-prev{
    right: 0;
}
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled{
    display: block;
}
@media (max-width: 767px){
    .slide-one-item-alt.owl-theme .owl-nav {
        top: 15%;
    }
    .slide-one-item-alt.owl-theme .owl-nav .owl-next, .slide-one-item-alt.owl-theme .owl-nav .owl-prev{
        width: 40px;
        height: 40px;
    }
}
/* end owl section */


/* start order page */
.order-detail .line, .receipt-detail .line, .package-detail .line{
    border-bottom: 1px solid #e7e7e7;
    display: table;
    width: 100%;
    padding: 10px;
}
.order-detail .container .detail{
    display: table;
    width: 100%;
    font-size: 15px;
    line-height: 26px;
}
.order-detail .container .detail .float-right{
    width: 50%;
}
.order-submit{
    display: table;
    width: 100%;
    margin: 10px 0 20px ;
    padding: 16px;
    box-shadow: 0px 0px 9px  #ddd;
    transition: border linear .1s, box-shadow linear .1s;
}
.order-submit .textbox{
    width: 50%;
}
.order-submit .submit{
    float: none;
    margin-top: 2px;
}
.order-submit .discount-segment{
    display:flex;
    flex-direction:row;
    padding:2px;
    width: 50%;
    margin: 6px 0;
}
.order-submit .discount-segment input[type="text"] {
    border:none;
    background-color: #f6f6f6;
    border-radius: 2px;
    color: #4d4d4d;
    -webkit-font-smoothing: antialiased;
    height: 44px;
    padding: 3px 18px 3px 32px;
    white-space: nowrap;
    text-overflow: ellipsis;
    outline: none !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    transition: border linear .2s, box-shadow linear .2s;
    width: 100%;
}
.textbox{
    background-color: #f6f6f6;
    border: none;
    border-radius: 2px;
    color: #4d4d4d;
    -webkit-font-smoothing: antialiased;
    height: 44px;
    margin: 6px auto;
    padding: 3px 18px 3px 32px;
    white-space: nowrap;
    text-overflow: ellipsis;
    outline: none !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    transition: border linear .2s, box-shadow linear .2s;
    width: 100%;
}
.textbox:focus{
    box-shadow:  1px 1px 3px  #1167A4;
    transition: border linear .1s, box-shadow linear .1s;
}
.hike-submit{
    display: table;
    width: 100%;
    margin-bottom: 10px;
}
.hike-submit .submit{
    float: right;
    min-width: 145px;
    border-radius: 15px;
}
@media (max-width: 767px) {
    .order-submit form .textbox{
        width: 100%;
    }
    .order-submit .submit{
        width: 130px;
    }
}
/* end order page */

#programs .program-box.program-count-1, #programs .program-box.program-count-2 {
    width: 46%;
    margin-right: 2%;
    margin-left: 2%;
}
#programs .program-box.program-count-3, #programs .program-box.program-count-4, #programs .program-box.program-count-5 {
    width: 29%;
    margin-right: 2%;
    margin-left: 2%;
}
@media (max-width: 767px) {
    #programs .program-box {
        width: 100% !important;
    }
}

/* program Button */

#programs .button {
    display: inline-flex;
    height: 40px;
    width: 150px;
    border: 2px solid #DD4814;
    margin: 20px 20px 20px 20px;
    color: #DD4814;
    text-transform: uppercase;
    text-decoration: none;
    font-size: .8em;
    /*letter-spacing: 1.5px;*/
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#programs #button-2 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#programs #button-2 a {
    position: relative;
    transition: all .35s ease-Out;
    padding: 10px 52px;
}

#programs #slide {
    width: 100%;
    height: 100%;
    left: -200px;
    background: #DD4814;
    position: absolute;
    transition: all .35s ease-Out;
    bottom: 0;
}

#programs #button-2:hover #slide {
    left: 0;
}

#programs #button-2:hover a {
    color: #fff;
}




/*
*
*   select2
*
*/
.select2-container{width:100% !important;direction:rtl;box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:99999;}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{direction:rtl;border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#4d4d4d;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid rgba(0,0,0,.15) !important;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:right;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;/*border-right:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px*/;height:42px;position:absolute;top:0;right:0;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}

