@charset "UTF-8";
/*
Theme Name: Horsie
Theme URI: http://ordainit.com/html/horsie
Author: Ordainit
Author URI: http://ordainit.com/html/horsie
Description: Horsie - An Equestrian Club and Horse Riding HTML Template
Version: 1.0.0
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Global
    ## Global
    ## Mixins
    ## Theme
    ## Variables
    ## Common

# Sections
    ## Nav Bar
    ## Banner
    ## Brand Area
    ## Footer
    ## Widgets

# Elements
    ## accordion
    ## filter
    ## apartment
    ## blog
    ## city
    ## feature
    ## gallery
    ## intro
    ## main-search
    ## pricing
    ## service
    ## team
    ## user-list

--------------------------------------------------------------*/
/*-----------------
    # Typography
-----------------*/
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300&family=Oxygen:wght@300;400;700&display=swap");
:root {
  --main-color: $primary_color;
  --btn-color: #primary2_color;
  --heading-color: #333333;
  --paragraph-color: #585858;
  --body-font:"Oxygen", sans-serif;
  --body-font-size: 16px;
  --line-height30: 1.7;
}

.bg-main {
  background-color: rgb(242, 156, 65);
}

.counter-bg {
  background-image: url(../../img/bg/counter-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

button {
  border: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--paragraph-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  line-height: var(--line-height30);
  font-size: var(--body-font-size);
  background: #fff;
}

h1 {
  font-size: 50px;
  line-height: 1.2333333333;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 43px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 35px;
  }
}

h2 {
  font-size: 36px;
  line-height: 46px;
}

h3 {
  font-size: 24px;
  line-height: 34px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 17px;
  }
}

h4 {
  font-size: 20px;
  line-height: 30px;
}

h5 {
  font-size: 18px;
  line-height: 28px;
}

h6 {
  font-size: 16px;
  line-height: 28px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Frank Ruhl Libre", serif;
  color: var(--heading-color);
  font-weight: 600;
  margin: 0 0 26px;
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-size: 16px;
  line-height: 26px;
  
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
  font-family: var(--body-font);
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
  margin-bottom: 1rem;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

button:hover,
button:active,
button:focus {
  outline: 0;
}

.heading h2 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 500;
}

/*input and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.no-gutter.row,
.no-gutter.container,
.no-gutter.container-fluid {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.no-gutter > [class^=col-] {
  padding-left: 0;
  padding-right: 0;
}

.no-gutter[class^=col-] {
  padding-left: 0;
  padding-right: 0;
}

.h-100vh {
  height: 100vh;
}

code {
  color: #faa603;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}
.check-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  content: "\f105";
  color: var(--main-color);
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.comment-navigation .nav-previous > a,
.posts-navigation .nav-previous > a,
.post-navigation .nav-previous > a,
.comment-navigation .nav-next > a,
.posts-navigation .nav-next > a,
.post-navigation .nav-next > a {
  transition: 0.3s ease-in;
}

.comment-navigation .nav-previous:hover > a,
.posts-navigation .nav-previous:hover > a,
.post-navigation .nav-previous:hover > a,
.comment-navigation .nav-next:hover > a,
.posts-navigation .nav-next:hover > a,
.post-navigation .nav-next:hover > a {
  color: var(--main-color);
}

.comment-list li {
  list-style: none;
}

.h-100vh {
  height: 100vh;
}

.position-relative {
  position: relative;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

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

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  float: left;
  clear: both;
  margin-right: 20px;
}

.alignright {
  float: right;
  clear: both;
  margin-left: 20px;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

.alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.alignwide {
  max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

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

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  clear: both;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages a {
  margin: 0 5px;
  transition: 0.3s ease-in;
}

.wp-link-pages {
  margin-bottom: 30px;
  margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

.wp-link-pages span:first-child {
  margin-right: 5px;
}

dl,
ol {
  padding: 0;
}

.post-password-form input {
  display: block;
  border: 1px solid #e2e2e2;
  height: 50px;
  border-radius: 3px;
  padding: 0 20px;
}

.post-password-form label {
  font-weight: 600;
  color: #333;
}

.post-password-form input[type=submit] {
  width: 100px;
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.post-password-form input[type=submit]:hover {
  background-color: #121A2F;
}

.footer-widget .table td,
.footer-widget .table th {
  padding: 0.5rem !important;
}

@media all and (min-width: 1200px) {
  .no-lg-gutters > .col,
.no-lg-gutters > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
  }
}
.hors-pricing {
  padding: 110px 0;
  background-color: #ffffff;
}
.hors-pricing .hors-pricing-sub-title {
  color: #000;
  font-weight: bold;
  margin-bottom: 10px;
}
.hors-pricing .hors-pricing-title {
  max-width: 620px;
  margin: 0 auto;
}
.hors-pricing .packages {
  margin-top: 30px;
  padding: 46px 40px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  color: #000000;
  border: 1px solid rgb(220, 220, 220);
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-pricing .packages {
    padding: 30px;
  }
}
.hors-pricing .packages:hover {
  background-color: #000;
  color: #ffffff;
}
.hors-pricing .packages:hover h3 {
  color: #ffffff;
}
.hors-pricing .packages:hover h2 {
  color: #ffffff;
}
.hors-pricing .packages:hover .list {
  background-color: #212221;
}
.hors-pricing .packages:hover .button {
  background-color: #c5b582;
}
.hors-pricing .list li {
  font-size: 16px;
  list-style: none;
  padding-bottom: 24px;
  position: relative;
  padding-left: 20px;
}
.hors-pricing .list li:last-child {
  padding-bottom: 0;
}
.hors-pricing .list li i {
  color: #c5b582;
  font-size: 16px;
  margin-right: 5px;
  position: absolute;
  top: 6px;
  left: 0;
}
.hors-pricing .list {
  margin-bottom: 36px;
  padding: 26px 25px;
  background-color: rgb(220, 220, 220);
  transition: 0.3s;
}
.hors-pricing ol,
.hors-pricing ul {
  padding: 0;
}
.hors-pricing .top {
  text-align: center;
  position: relative;
  padding-bottom: 60px;
}
.hors-pricing input,
.hors-pricing label {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 0;
}
.hors-pricing .button {
  background-color: #52952d;
  padding: 13px 30px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease 0s;
  max-width: 162px;
  transition: 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: inline-block;
}
.hors-pricing .button:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 300%;
  background: rgba(0, 0, 0, 0.07);
  right: -10px;
  top: -10px;
  transform: rotate(45deg);
  z-index: -1;
}
.hors-pricing .hors-pricing-toggle-btn {
  left: 50%;
  top: 80%;
  position: absolute;
  width: 40px;
  height: 40px;
  transition-duration: 0.5s;
  border: 0;
  background: transparent;
  min-width: 280px;
  transform: translateX(-50%);
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
}
.hors-pricing .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.hors-pricing .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.hors-pricing .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f1efed;
  -webkit-transition: 0.4s;
  transform: translate(0px, 0px);
  transition: 0.6s ease transform, 0.6s box-shadow;
}
.hors-pricing .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #c5b582;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.hors-pricing input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.hors-pricing .slider.round {
  border-radius: 34px;
}
.hors-pricing .slider.round:before {
  border-radius: 50%;
}

.tesTimonials {
  position: relative;
  margin-bottom: 100px;
}
.tesTimonials .swiper-pagination-bullet {
  margin: 0 10px;
  background: #52952d;
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 0;
  padding-top: 10px;
  opacity: 1;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .tesTimonials .swiper-pagination-bullet {
    margin: 0px 5px;
    width: 25px;
    height: 25px;
    padding-top: 0px;
  }
}
.tesTimonials .swiper-pagination-bullet:hover {
  background-color: #faa603;
}
.tesTimonials .swiper-button-next.swiper-button-disabled, .tesTimonials .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.tesTimonials .hors-swiper-navigation-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tesTimonials .hors-swiper-navigation-wrap .swiper-button-next, .tesTimonials .hors-swiper-navigation-wrap .swiper-button-prev {
  position: inherit;
  width: 42px;
  height: 42px;
  z-index: 10;
  cursor: pointer;
  color: #ffffff;
  background: #52952d;
  margin-top: 0;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .tesTimonials .hors-swiper-navigation-wrap .swiper-button-next, .tesTimonials .hors-swiper-navigation-wrap .swiper-button-prev {
    margin: 0px 5px;
    width: 25px;
    height: 25px;
    padding-top: 0px;
    font-size: 10px;
  }
}
.tesTimonials .hors-swiper-navigation-wrap .swiper-button-next:hover, .tesTimonials .hors-swiper-navigation-wrap .swiper-button-prev:hover {
  background-color: #faa603;
}
.tesTimonials .hors-swiper-navigation-wrap .swiper-button-next {
  margin-left: 10px;
}
.tesTimonials .hors-swiper-navigation-wrap .swiper-button-prev {
  margin-right: 10px;
}
.tesTimonials .hors-swiper-navigation-wrap .swiper-pagination {
  position: inherit !important;
  width: auto !important;
  top: 0;
}
.tesTimonials .swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
  content: "next";
}
.tesTimonials .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
  content: "prev";
}

.hors-booked {
  padding: 110px 0;
  position: relative;
}
.hors-booked .container {
  max-width: 950px;
}
.hors-booked .calendar-wrapper {
  position: relative;
  overflow-x: auto;
}
.hors-booked .calendar-wrapper table {
  clear: both;
  width: 100%;
  border-collapse: collapse;
  color: #000;
}
.hors-booked .calendar-wrapper td {
  height: 48px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid rgb(218, 217, 217);
  border-top: none;
  width: 100%/7;
}
.hors-booked .calendar-wrapper td.not-current {
  color: #000;
}
.hors-booked .calendar-wrapper td.normal {
  color: #000;
}
.hors-booked .calendar-wrapper td.today {
  color: rgb(255, 255, 255);
  font-size: 1.5em;
  background-color: #f8f6f4;
  position: relative;
  z-index: 1;
}
.hors-booked .calendar-wrapper td.today .tooltip-number a {
  position: absolute;
  color: #000;
  font-size: 12px;
  background-color: #ffffff;
  padding: 5px 9px;
  top: -10px;
  left: 50%;
  transform: translate(-50%);
  min-width: 100px;
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
}
.hors-booked .calendar-wrapper td.today .tooltip-number a::before {
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translate(-50%);
  content: "";
  border-left: 10px solid transparent;
  border-top: 10px solid #ffffff;
  border-right: 10px solid transparent;
}
.hors-booked .calendar-wrapper td.today .tooltip-number .number {
  width: 50px;
  height: 50px;
  background-color: #c5b582;
  border-radius: 50%;
  display: inline-block;
  line-height: 50px;
}
.hors-booked .calendar-wrapper td.today .tooltip-number:hover a {
  opacity: 1;
  visibility: visible;
}
.hors-booked .calendar-wrapper thead {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hors-booked .calendar-wrapper thead td {
  border: none;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: bold;
}
.hors-booked .calendar-wrapper tbody tr.days td {
  border: none;
  background-color: #c5b582;
  color: #ffffff;
  text-transform: uppercase;
  padding: 20px;
  text-transform: uppercase;
  font-weight: bold;
}
.hors-booked .calendar-wrapper tbody tr:not(.days) td {
  min-width: 124px;
  height: 116px;
}
.hors-booked .calendar-wrapper #btnPrev {
  float: left;
  margin-bottom: 20px;
}
.hors-booked .calendar-wrapper #btnPrev:before {
  content: "\ea9d";
  font-family: IcoFont;
  padding-right: 4px;
}
.hors-booked .calendar-wrapper #btnNext {
  float: right;
  margin-bottom: 20px;
}
.hors-booked .calendar-wrapper #btnNext:after {
  content: "\eaa0";
  font-family: IcoFont;
  padding-left: 4px;
}
.hors-booked .calendar-wrapper #btnPrev, .hors-booked .calendar-wrapper #btnNext {
  background: transparent;
  border: none;
  outline: none;
  font-size: 18px;
  margin-top: 10px;
  color: #000;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding-bottom: 54px;
}
.hors-booked .calendar-wrapper #btnPrev:hover, .hors-booked .calendar-wrapper #btnNext:hover {
  font-weight: bold;
}

.hors-available-appointments {
  padding: 0 0 110px 0;
  position: relative;
}
.hors-available-appointments .container {
  max-width: 950px;
}
.hors-available-appointments .hors-available-appointments-wrapper {
  background-color: #ffffff;
  padding: 30px 35px;
}
.hors-available-appointments .hors-available-appointments-title {
  font-size: 30px;
}
@media (max-width: 767px) {
  .hors-available-appointments .hors-available-appointments-title {
    font-size: 25px;
  }
}
.hors-available-appointments .hors-available-appointments-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f6f4;
  padding: 24px 20px;
  border: 1px solid #fff;
  transition: 0.3s;
  margin-bottom: 30px;
}
.hors-available-appointments .hors-available-appointments-info:hover {
  border: 1px solid rgb(0, 0, 0);
}
.hors-available-appointments .hors-available-appointments-info:hover .hors-appointments-book a {
  background-color: #c5b582;
}
.hors-available-appointments .hors-available-appointments-info .hors-appointments-space p {
  margin: 0;
}
.hors-available-appointments .hors-available-appointments-info .hors-appointments-book a {
  background-color: #52952d;
  color: #ffffff;
  padding: 18px 30px;
  transition: 0.3s;
  display: block;
}
.hors-available-appointments .hors-available-appointments-info .hors-available-appointments-time i {
  margin-right: 5px;
  color: #c5b582;
}
.hors-available-appointments .hors-available-appointments-info .hors-available-appointments-time span {
  padding-bottom: 14px;
}
.hors-available-appointments .hors-available-appointments-info .hors-available-appointments-time p {
  color: #000000;
  margin: 0;
  margin-top: 15px;
}
.hors-available-appointments .hors-available-appointments-info:last-child {
  margin-bottom: 0;
}

.w-img {
  width: 100%;
}

.hors-appointment {
  padding: 110px 0;
  background-color: #f8f6f4;
}
.hors-appointment .hors-appoinment-message {
  background-color: #ffffff;
  padding: 54px 60px;
}
@media (max-width: 767px) {
  .hors-appointment .hors-appoinment-message {
    padding: 20px;
  }
}
.hors-appointment .hors-appoinment-title {
  margin-bottom: 54px;
}

.form-field {
  margin-bottom: 20px;
}
.form-field input,
.form-field select {
  width: 100%;
  height: 50px;
  padding: 5px 18px;
  font-size: 14px;
  background-color: #f8f6f4;
  border: none;
}
.form-field textarea {
  width: 100%;
  padding: 10px 18px;
  font-size: 14px;
  background-color: #f8f6f4;
  border: none;
}

.form-button button {
  background-color: rgb(82, 149, 45);
  border: 0;
  color: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
  min-width: 172px;
  padding: 14px 0;
  font-size: 14px;
  cursor: pointer;
}

.hors-popup .close {
  cursor: pointer;
  background: rgb(50, 173, 50);
  border: none;
  width: 30px;
  height: 30px;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  border-radius: 50%;
}
.hors-popup span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
}
.hors-popup .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0;
}
.hors-popup .form-field input {
  width: 100%;
  height: 50px;
  padding: 5px 18px;
  font-size: 14px;
  background-color: #f8f6f4;
  border: none;
}
.hors-popup .form-button button {
  background-color: rgb(82, 149, 45);
  border: 0;
  color: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
  min-width: 172px;
  padding: 14px 0;
  font-size: 14px;
  cursor: pointer;
  margin-top: 30px;
}
.hors-popup .hors-popup-title {
  padding-bottom: 20px;
  font-size: 36px;
}
.hors-popup .popup-info {
  padding: 30px 50px;
}

.hors-404-error {
  padding: 110px 0;
  background-color: #f8f6f4;
}
.hors-404-error h1 {
  font-size: 230px;
  left: 60px;
}
@media (max-width: 767px) {
  .hors-404-error h1 {
    font-size: 100px;
  }
}
.hors-404-error h3 {
  font-size: 41px;
  line-height: 60px;
  font-weight: bold;
}
.hors-404-error p {
  font-size: 28px;
  line-height: 36px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0 44px 0;
  color: #000000;
}
.hors-404-error a {
  background-color: rgb(82, 149, 45);
  padding: 15px 50px 14px 50px;
  transition: 0.3s;
  color: #ffffff;
}
.hors-404-error a:hover {
  background-color: #c5b582;
}

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: rgba(149, 149, 149, 0.2) 0px 0px 0px 2px inset;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear 0s;
  background-color: #fff;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 39px;
  font-size: 24px;
  color: #52952d;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 39px;
  font-size: 24px;
  opacity: 0;
  background-image: linear-gradient(298deg, #da2c4d, #f8ab37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #52952d;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

input#save_info {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

::placeholder {
  color: #000;
  font-size: 16px; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000;
  font-size: 16px;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #000;
  font-size: 16px;
}

.btn-bg {
  background-color: rgb(87, 111, 142);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: inline-block;
  color: #fff !important;
}
.btn-bg:hover {
  background-color: #c5b582;
}
.btn-bg:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 300%;
  background: rgba(0, 0, 0, 0.07);
  right: -10px;
  top: -10px;
  transform: rotate(45deg);
  z-index: -1;
}

.white {
  color: #ffffff !important;
}

.md-fs {
  font-size: 36px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .md-fs {
    font-size: 34px;
  }
}

.bg-color {
  background-color: #f8f6f4;
  z-index: 1;
  position: relative;
}

.bg-dark {
  background-color: #000;
}

.pramary-color {
  color: #c5b582;
}

.footer-bg {
  background-color: #444;
}

.footer-2 {
  background-color: #000;
}

.home-3-calltoaction a {
  background-color: #c5b582 !important;
  transition: 0.3s;
}
.home-3-calltoaction a:hover {
  background-color: #52952d !important;
}

.primary_color {
  color: #c5b582;
}

.pt {
  padding-top: 110px !important;
}

.mt {
  margin-top: 110px;
}

.pb {
  padding-bottom: 110px;
}

.pb-tb-110 {
  padding: 60px 0;
}

.blog-pt {
  padding-top: 54px;
}

.pt-30 {
  padding-top: 30px;
}

.ptb-30 {
  padding: 30px 0 !important;
}

.smt-100 {
  margin-top: -100px !important;
}

.pz {
  padding: 0 !important;
}

.mz {
  margin: 0 !important;
}

h5 {
  text-decoration: none;
}

.hors-counter-inner {
  margin-bottom: 30px;
}

.banner-2 {
  background-image: url("../images/slide-3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.video-bg {
  background-image: url("../images/video-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

h2 {
  font-size: 45px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  h2 {
    font-size: 28px;
  }
}

.mw {
  max-width: 724px;
  margin: 0 auto;
}

.video-bg {
  background-image: url("../images/video-bg.jpg");
}

.counter-img {
  background-image: url("../images/counter-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.team-bg {
  background-image: url("../images/team-1-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.calltoaction-bg {
  position: relative;
  background-image: url("../images/sus.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.calltoaction-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 60%;
  z-index: -1;
}

.testimonials-bg {
  background-image: url("../images/team-1-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonials-bg-2 {
  background-image: url("../images/testimonials-bg-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsletter-bg {
  background-image: url("../images/news-shape-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video-bg-2 {
  background-image: url("../images/video-bg-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.form-bg-1 {
  background-image: url("../images/contact-from-bg-2.1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-bg-2 {
  background-image: url("../images/footer-bg-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.footer-bg-2::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  opacity: 0.902;
  z-index: -1;
}

.page-4-bg {
  background-image: url("../images/equestrian_banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.page-4-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 60%;
  z-index: -1;
}

.page-5-bg {
  background-image: url("../images/pet_banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.page-5-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 60%;
  z-index: -1;
}

.page-6-bg {
  background-image: url("../images/leather_cord_banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.page-6-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 60%;
  z-index: -1;
}

.page-7-bg {
  background-image: url("../images/contact_banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.page-7-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 60%;
  z-index: -1;
}

.page-8-bg {
  background-image: url("../images/infrastucture.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.page-8-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 60%;
  z-index: -1;
}

.page-9-bg {
  background-image: url("../images/about_banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.page-9-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 60%;
  z-index: -1;
}

.blog-video-bg {
  background-image: url("../images/blog-video.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.blog-video-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 50%;
  z-index: -1;
}

.blog-left-bg {
  background-image: url("../images/blog-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.services-details-bg {
  background-image: url("../images/gallery-4.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.services-details-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 50%;
  z-index: -1;
}

.hr-btn {
  background-color: rgb(87, 111, 142);
  padding: 10px 30px;
  color: #fff;
  margin-right:20px
}
.hr-btn:hover {
  background-color: #c5b582;
  color: #fff;
}

.our-staff .hors-team-1-item {
  margin-bottom: 30px;
}

.hors-navigation-widget {
  background-color: #ffffff;
  box-shadow: 0px 13px 35px 0px rgba(0, 0, 0, 0.15);
  padding: 34px 24px;
}
.hors-navigation-widget .hors-navigation-title {
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(16, 17, 16);
  font-size: 24px;
  margin-bottom: 0;
}
.hors-navigation-widget .hors-nav-menu {
  padding-top: 30px;
}
.hors-navigation-widget .hors-nav-menu li {
  padding-bottom: 20px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
  transition: 0.3s;
}
.hors-navigation-widget .hors-nav-menu li a {
  color: #000;
}
.hors-navigation-widget .hors-nav-menu li::before {
  position: absolute;
  content: "";
  bottom: 29px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #52952d;
  transition: 0.3s;
}
.hors-navigation-widget .hors-nav-menu li:hover a {
  color: #c5b582;
}
.hors-navigation-widget .hors-nav-menu li:hover:before {
  background-color: #c5b582;
}

.hors-categories-widget {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 13px 35px 0px rgba(0, 0, 0, 0.15);
  padding: 20px 0 0 0;;
}
.hors-categories-widget h4 {
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 24px;
}
.hors-categories-widget li a {
  position: relative;
  padding: 5px 20px;
  margin-bottom: 1px;
  color: #ffffff;
  background-color: #222;
  transition: 0.3s;
  display: block;
}
.hors-categories-widget li a:hover {
  background-color: #c5b582;
}
.hors-categories-widget li a i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.hors-archives-widget {
  background-color: #ffffff;
  box-shadow: 0px 13px 35px 0px rgba(0, 0, 0, 0.15);
  padding: 34px 24px;
}
.hors-archives-widget .hors-widget-title {
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(16, 17, 16);
  font-size: 24px;
  margin-bottom: 0;
}
.hors-archives-widget .hors-archives-widget-date {
  padding-top: 30px;
  position: relative;
  padding-left: 20px;
  transition: 0.3s;
}
.hors-archives-widget .hors-archives-widget-date a {
  color: #000;
}
.hors-archives-widget .hors-archives-widget-date::before {
  position: absolute;
  content: "";
  bottom: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #52952d;
  transition: 0.3s;
}
.hors-archives-widget .hors-archives-widget-date:hover a {
  color: #c5b582;
}
.hors-archives-widget .hors-archives-widget-date:hover:before {
  background-color: #c5b582;
}

.hors-inquiry-from-widget {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 13px 35px 0px rgba(0, 0, 0, 0.15);
  padding: 34px 24px;
}
.hors-inquiry-from-widget .hors-from-title {
  margin-bottom: 34px;
  font-size: 24px;
}
.hors-inquiry-from-widget .form-field input {
  background: #f8f6f4;
  width: 100%;
  height: 50px;
  padding: 5px 18px;
  font-size: 14px;
  border: none;
  margin-bottom: 16px;
}
.hors-inquiry-from-widget .form-field textarea {
  background: #f8f6f4;
  width: 100%;
  padding: 10px 18px;
  font-size: 14px;
  border: none;
}
.hors-inquiry-from-widget .form-button button {
  color: #ffffff;
  height: 46px;
  min-width: 170px;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.3s ease-out;
  cursor: pointer;
  background-color: rgb(82, 149, 45);
  border: none;
  transition: 0.3s;
}
.hors-inquiry-from-widget .form-button button:hover {
  background-color: #c5b582;
}

.blog-bg {
  background-color: #f8f6f4;
  margin-bottom: 0 !important;
  padding-bottom: 100px !important;
}
.blog-bg .hors-blog-area-1 {
  padding-bottom: 30px !important;
}
.blog-bg .hors-blog-area-1 .bolg-sub-title {
  color: #000;
  font-weight: bold;
}
.blog-bg .hors-single-blog-inner {
  margin-top: 0;
  margin-bottom: 30px;
  padding-top: 0 !important;
  background: #ffffff;
}
.blog-bg .blog-desc {
  padding: 50px 20px 30px 20px !important;
}

.hors-quick-contact-widget {
  box-shadow: 0px 13px 35px 0px rgba(0, 0, 0, 0.15);
  padding: 34px 24px;
  background-color: rgb(82, 149, 45);
}
.hors-quick-contact-widget .hors-widget-sub-title {
  color: #fff;
  font-weight: bold;
  padding: 0 !important;
  margin: 0;
}
.hors-quick-contact-widget .hors-widget-title {
  color: #ffffff;
  font-size: 30px;
  line-height: 70px;
  margin: 0;
}
.hors-quick-contact-widget p {
  color: #fff;
  margin-bottom: 30px;
}
.hors-quick-contact-widget .contact-number {
  color: #fff;
}
.hors-quick-contact-widget .contact-number i {
  background-color: rgb(242, 156, 65);
  font-size: 24px;
  margin-right: 24px;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
}

.hors-header-search-form {
  position: fixed;
  width: 100%;
  top: -100%;
  background: #fff;
  z-index: 999999;
  padding: 50px;
  transition: 0.6s;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
}
.hors-header-search-form.active-form {
  top: 0;
}

.swiper-pagination {
  position: inherit;
  width: auto;
  top: 0;
}
.swiper-pagination .tesTimonials .swiper-pagination-bullet {
  margin: 0 10px;
  background: #52952d;
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 0;
  padding-top: 10px;
  opacity: 1;
  transition: 0.3s;
}

/************ animate style ************/
.top_image_bounce {
  animation: top-image-bounce 3s infinite ease-in-out;
}

.left_image_bounce {
  animation: left-image-bounce 3s infinite ease-in-out;
}

.right_image_bounce {
  animation: right-image-bounce 3s infinite ease-in-out;
}

.spin_image {
  animation: spin 3s infinite ease-in-out;
}

@-webkit-keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
  }
}
@keyframes ripple-white3 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes pop-up {
  0% {
    transform: scale(1.2);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hover-icon {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toShortTopFromBottom {
  49% {
    margin-top: 10px;
  }
  50% {
    opacity: 0;
    margin-top: -10px;
  }
  51% {
    opacity: 1;
  }
}
/* 

====== Zoom effect ======

*/
.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

====== Newspaper effect ======

*/
.mfp-newspaper {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-newspaper .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.5s;
  transform: scale(0) rotate(500deg);
}
.mfp-newspaper.mfp-bg {
  opacity: 0;
  transition: all 0.5s;
}
.mfp-newspaper.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.mfp-newspaper.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-newspaper.mfp-removing .mfp-with-anim {
  transform: scale(0) rotate(500deg);
  opacity: 0;
}
.mfp-newspaper.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

====== Move-horizontal effect ======

*/
.mfp-move-horizontal {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-move-horizontal .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s;
  transform: translateX(-50px);
}
.mfp-move-horizontal.mfp-bg {
  opacity: 0;
  transition: all 0.3s;
}
.mfp-move-horizontal.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateX(0);
}
.mfp-move-horizontal.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-move-horizontal.mfp-removing .mfp-with-anim {
  transform: translateX(50px);
  opacity: 0;
}
.mfp-move-horizontal.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

====== Move-from-top effect ======

*/
.mfp-move-from-top {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-move-from-top .mfp-content {
  vertical-align: top;
}
.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s;
  transform: translateY(-100px);
}
.mfp-move-from-top.mfp-bg {
  opacity: 0;
  transition: all 0.2s;
}
.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateY(0);
}
.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-move-from-top.mfp-removing .mfp-with-anim {
  transform: translateY(-50px);
  opacity: 0;
}
.mfp-move-from-top.mfp-removing.mfp-bg {
  opacity: 0;
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
/* top header  */
.header-top__bg {
  background-color: #222;
  padding: 5px 0;
}
.header-top__left a {
  color: #fff;
  margin-right: 40px;
  font-size: 14px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-top__left a {
    margin-right: 30px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top__left a.last-child {
    display: none;
  }
}
.header-top__left a i {
  color: #c5b582;
  font-size: 20px;
}
.header-top__social span {
  color: #fff;
  font-size: 14px;
}
.header-top__social a {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  margin-left: 10px;
}
.header-top__social a:first-child {
  margin-left: 0;
}
.header-top__search-wrapper {
  padding-right: 30px;
  margin-right: 30px;
}
.header-top__search-wrapper.search-open .header-top__icofont-search {
  opacity: 0;
  transform: scale(0);
  transition: 0.3s;
}
.header-top__search-wrapper.search-open .header-top__icofont-close {
  transform: scale(1);
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.header-top__search-wrapper.search-open .header-top__search-box {
  opacity: 1;
  visibility: visible;
  top: 130%;
}
.header-top__search {
  position: relative;
}
.header-top__search a {
  color: #fff;
  font-size: 18px;
  display: inline-block;
}
.header-top__icofont-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: scale(0);
  transition: 0.3s;
}
.header-top__search-wrapper {
  position: relative;
}
.header-top__search-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #fff;
  opacity: 0.2;
}
.header-top__search-wrapper-2 {
  padding-right: 0px;
  margin-right: 0px;
  margin-left: 30px;
}
.header-top__search-wrapper-2::after {
  display: none;
}
.header-top__search-wrapper-3 {
  padding-right: 0px;
  margin-right: 0px;
  margin-left: 0;
}
.header-top__search-wrapper-3::after {
  display: none;
}
.header-top__search-box {
  position: absolute;
  top: 180%;
  right: 0;
  padding: 40px;
  background-color: black;
  transition: 0.5s;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .header-top__search-box {
    padding: 20px;
  }
}
.header-top__search-box button {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.292);
  background-color: transparent;
  border: none;
}
.header-top__search-box input {
  padding-right: 50px;
  width: 270px;
  margin-bottom: 0;
  color: inherit;
  border: none;
  display: block;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-width: 0 0 1px 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: #fff;
  background-color: transparent;
}
@media (max-width: 767px) {
  .header-top__search-box input {
    width: 200px;
  }
}
.header-top__search-box input::placeholder {
  color: #fff;
}

.header__transparent {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
}
.header__top-bg {
  background-color: #000;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .header__logo {
    padding: 20px 0;
  }
}

.header__logo {
    padding: 5px 0;
  }

.header__menu ul {
  text-align: right;
}
.header__menu ul li {
  display: inline-block;
  margin: 0 15px;
  position: relative;
}
.header__menu ul li.has-mega-menu .submenu {
  width: 350px;
}
.header__menu ul li.has-mega-menu .submenu li {
  width: 50%;
  float: left;
}
.header__menu ul li.has-mega-menu .submenu li:nth-child(2n) {
  padding-left: 30px;
}
.header__menu ul li.has-dropdown::after {
  content: "\ea99";
  font-family: IcoFont;
  color: var(--heading-color);
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  transition: 0.3s;
}
.header__menu ul li .submenu {
  position: absolute;
  background-color: #fff;
  width: 220px;
  z-index: 999;
  padding: 30px;
  margin-left: 0;
  border-top: 5px solid #c5b582;
  border-radius: 3px 3px 0 0;
  top: 110%;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  box-shadow: 0px 8px 20px rgba(61, 110, 168, 0.2);
  text-align: left;
}
.header__menu ul li .submenu li {
  margin: 0;
  display: block;
  margin-bottom: 10px;
}
.header__menu ul li .submenu li:last-child {
  margin-bottom: 0;
}
.header__menu ul li .submenu li a {
  padding: 0;
  margin: 0;
  display: block;
  text-transform: capitalizes;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.header__menu ul li a {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 17px;
  padding: 30px 0;
  display: inline-block;
  transition: 0.3s;
}
.header__menu ul li:hover > a {
  color: #c5b582;
}
.header__menu ul li:hover .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header__menu ul li:hover.has-dropdown::after {
  transform: rotate(-180deg);
  color: #c5b582;
}
.header__menu-white > nav > ul {
  text-align: end;
}
.header__menu-white > nav > ul > li.has-dropdown::after {
  color: #fff;
}
.header__menu-white > nav > ul > li > a {
  color: #fff;
}
.header__right button {
  background-color: #c5b582;
  color: #fff;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 45px;
  border: 0;
  font-size: 18px;
  transition: 0.3s;
  border-radius: 5px;
  margin-left: 20px;
}
.header__right button:hover {
  background-color: rgb(87, 111, 142);
}

.header-two__right a {
  margin-left: 20px;
}
.header-two__right .search-two {
  font-size: 24px;
  color: #222;
}
.header-two__right .tp-menu-bar {
  font-size: 24px;
  color: #222;
}

.header-three__right .shopping-cart {
  color: #fff;
  font-size: 20px;
  position: relative;
}
.header-three__right .shopping-cart span {
  position: absolute;
  top: 0;
  left: 15px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  text-align: center;
  line-height: 15px;
  font-size: 8px;
  background-color: #52952d;
  color: #fff;
}
.header-three__right .search-two {
  color: #fff;
  font-size: 20px;
  margin-left: 40px;
}
.header-three__right .tp-menu-bar {
  background-color: #c5b582;
  color: #fff;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 45px;
  border: 0;
  font-size: 18px;
  transition: 0.3s;
  border-radius: 5px;
  margin-left: 20px;
}
.header-three__right .tp-menu-bar:hover {
  background-color: #52952d;
}

/* offcanvas-start */
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
}

.body-overlay.apply {
  opacity: 1;
  visibility: visible;
}

.body-overlay:hover {
  cursor: url(../img/cross-out.png), pointer;
}

.tp-instagram img {
  width: 100%;
}

.tpoffcanvas {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  right: -100%;
  width: 480px;
  bottom: 0;
  box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
  background-color: #222;
  z-index: 9999;
  padding: 50px;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease-in-out;
  overflow-y: scroll;
}

.tpoffcanvas.opened {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .tpoffcanvas {
    width: 300px;
    padding: 40px 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpoffcanvas {
    width: 400px;
    padding: 40px;
  }
}
.tpoffcanvas.opened {
  right: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}

.tpoffcanvas__logo {
  margin-bottom: 40px;
}

@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tpoffcanvas__logo {
    padding-top: 0;
  }
}
.tpoffcanvas__logo img {
  width: 140px;
  height: 100%;
}

.tpoffcanvas__close-btn button {
  font-size: 35px;
  color: white;
  position: absolute;
  right: 50px;
  top: 35px;
  transition: 1s;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
  background-color: transparent;
  border: 0;
}

.tp-info-wrapper {
  margin-bottom: 20px;
}

.tpoffcanvas__close-btn button i {
  font-weight: 300;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpoffcanvas__close-btn button {
    right: 48px;
    top: 35px;
  }
}
@media (max-width: 767px) {
  .tpoffcanvas__close-btn button {
    right: 20px;
    top: 20px;
  }
  .pb-tb-110 {
    padding: 30px 0 50px;
	}
}
.tpoffcanvas__close-btn button:hover {
  color: #fff;
  opacity: 1;
}

.tpoffcanvas__content {
  margin-bottom: 30px;
}

.tpoffcanvas__content p {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 25px;
}

.tpoffcanvas__content span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  display: inline-block;
}

.tpoffcanvas__content a {
  font-size: 30px;
  line-height: 51px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
}

@media (max-width: 767px) {
  .tpoffcanvas__content a {
    font-size: 27px;
  }
}
.tpoffcanvas__social {
  margin-top: 50px;
}

.tpoffcanvas__social .social-icon a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  background-color: #fff;
  color: #576f8e;
  margin-right: 15px;
  transition: 0.3s;
  display: inline-block;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .tpoffcanvas__social .social-icon a {
    margin-right: 3px;
  }
}
.tpoffcanvas__social .social-icon a:hover {
  background-color: #576f8e;
  color: #fff;
}

.tpoffcanvas__text {
  border-bottom: 1px solid #3b3838;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tpoffcanvas__text {
    display: none;
  }
}
.tpoffcanvas__text p {
  color: #fff;
  font-size: 18px;
}

.tpoffcanvas__info {
  border-bottom: 1px solid #3b3838;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.tpoffcanvas__info .offcanva-title {
  color: #fff;
  margin: 30px 0 40px 0;
  font-size: 20px;
  font-weight: 600;
}

.tpoffcanvas__info-icon a {
  height: 50px;
  width: 50px;
  background-color: #fff;
  color: #222;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  margin-right: 20px;
}

.tpoffcanvas__info-icon a:hover {
  background-color: #c00;
  color: #fff;
}

.tpoffcanvas__info-address span {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.tpoffcanvas__info-address a {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .tpoffcanvas__info-address a {
    font-size: 13px;
  }
}
.tpoffcanvas__info-address a:hover {
  color: #c5b582;
}

.mobile-menu.mean-container {
  margin-bottom: 50px;
}

.offcan-social-title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
}

.tpoffcanvas-social {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* offcanvas-end */
/*----------------------------------------*/
/*  03. MEANMENU CSS START
/*----------------------------------------*/
.mobile-menu.mean-container {
  overflow: hidden;
}

@media (max-width: 767px) {
  .mobile-menu.mean-container {
    margin-bottom: 30px;
    margin-top: 50px;
  }
}
.mobile-menu .sidebar-list {
  clear: both;
}

.mobile-menu .sidebar-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  color: #fff;
}

.mobile-menu .sidebar-list li::after {
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #c5b582;
  background-color: transparent;
  content: "";
  display: inline-block;
  position: absolute;
}

.mobile-menu .tp-sidebar-social {
  margin-top: 20px;
}

.mobile-menu .tp-sidebar-social a {
  margin-right: 5px;
  background-color: #c5b582;
  color: #fff;
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 14px;
  line-height: 34px;
}

.sidebar-title h3 {
  color: #fff;
}

/* mean menu customize */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 15px 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.mean-container .mean-nav ul li a:hover {
  color: #c5b582;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 10px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #fff;
  line-height: 30px;
  top: 0;
  font-weight: 400;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: #fff;
  color: #c5b582;
  border-color: #888888;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: #c5b582;
  background-color: #fff;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: #c5b582;
}

/*----------------------------------------*/
/*  03. MEANMENU CSS end
/*----------------------------------------*/
/*----------------------------------------------
    ## Banner
----------------------------------------------*/
.banner-area {
  position: relative;
}
.banner-area:hover .banner-arrow-two button {
  opacity: 1;
  visibility: visible;
}

.slider-height-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 840px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-height-2 {
    height: 700px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-height-2 {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .slider-height-2 {
    height: 400px;
  }
}

.slider-item {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.slider-item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.slider-info-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 99;
}
.slider-info-wrapper .hors-slide-title {
  font-size: 72px;
  line-height: 80px;
  color: #ffffff;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-info-wrapper .hors-slide-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .slider-info-wrapper .hors-slide-title {
    font-size: 30px;
    line-height: 40px;
  }
}
.slider-info-wrapper .hors-slide-btn {
  display: inline-block;
  background-color: rgb(82, 149, 45);
  padding: 16px 34px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 10;
  transition: 0.3s;
}
.slider-info-wrapper .p-text {
  font-size: 24px;
}

.banner-arrow-two .banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
}
.banner-arrow-two .banner-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}
.banner-arrow-two button {
  background-color: #c5b582;
  color: #fff;
  border: 0;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  margin: 0px 10px;
  transition: 0.3s;
  position: relative;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}
.banner-arrow-two button:hover {
  background-color: #52952d;
  color: #fff;
}

.banner-slider-two .hors-slide-info {
  text-align: center;
}

.hors-slide-anim-up {
  transform: translateY(70px);
  transition-duration: 0.7s;
  transition-delay: 1s;
  opacity: 0;
}

.swiper-slide-active .hors-slide-anim-up {
  transform: translateY(0);
  opacity: 1;
}

.hors-slide-anim-delay-2 {
  transition-delay: 1.2s !important;
}

.hors-slide-anim-delay-3 {
  transition-delay: 1.5s !important;
}

.slider-height {
  height: 820px;
  background-repeat: no-repeat;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-height {
    height: 550px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-height {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .slider-height {
    height: 320px;
  }
  .slider-height img{display:none}
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-height {
    height: 500px;
  }
}
.slider-height::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 75%, rgba(0, 0, 0, 0.8) 100%) !important;
  opacity: 100%;
}

.hors-slider-1 {
  position: relative;
}
.hors-slider-1 .tp-banner-slider-dots.swiper-pagination-clickable.swiper-pagination-bullets {
  position: absolute;
  bottom: 7%;
  z-index: 9;
  left: 25%;
  display: inline-block;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hors-slider-1 .tp-banner-slider-dots.swiper-pagination-clickable.swiper-pagination-bullets {
    left: 16%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hors-slider-1 .tp-banner-slider-dots.swiper-pagination-clickable.swiper-pagination-bullets {
    bottom: 3%;
    left: 21%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-slider-1 .tp-banner-slider-dots.swiper-pagination-clickable.swiper-pagination-bullets {
    bottom: 14%;
  }
}
.hors-slider-1 .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background: #fff;
  display: inline-block;
  transition: 0.3s;
  margin: 0px 3px;
}
.hors-slider-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  height: 10px;
  width: 30px;
  border-radius: 10px;
}
.hors-slider-1 .hors-slide-info {
  position: absolute;
  top: 20%;
  /* background-color: rgba(92, 116, 147, .7); */
  padding: 60px;
  transition: background-color 4s;
  opacity: 0;
  width: 550px;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .hors-slider-1 .hors-slide-info {
    padding: 30px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hors-slider-1 .hors-slide-info {
    padding: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-slider-1 .hors-slide-info {
    padding: 20px;
    width: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hors-slider-1 .hors-slide-info {
    padding: 20px;
    width: 450px;
    top: 25%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hors-slider-1 .hors-slide-info {
    width: 300px;
    padding: 20px;
    top: 40%;
  }
}
@media (max-width: 767px) {
  .hors-slider-1 .hors-slide-info {
    width: 340px;
    padding: 20px;
    top: 15%;
  }
}
.hors-slider-1 .swiper-slide-active .hors-slide-info {
  transform: scale(1);
  opacity: 1;
}
.hors-slider-1 .hors-slide-title {
  font-size: 60px;
  line-height: 70px;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hors-slider-1 .hors-slide-title {
    font-size: 43px;
    line-height: 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-slider-1 .hors-slide-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hors-slider-1 .hors-slide-title {
    font-size: 30px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .hors-slider-1 .hors-slide-title {
    font-size: 20px;
    line-height: 30px;
	margin-bottom: 10px;
  }
}
.hors-slider-1 .banner-shape-1 {
  width: 121px;
  height: 121px;
  background-color: rgb(92, 116, 147);
  box-shadow: 0px 0px 49px 0px rgba(16, 17, 16, 0.11), inset 0px 3px 7px 0px rgba(242, 156, 65, 0.1);
  border-radius: 50%;
  position: absolute;
  top: 30px;
  left: 78px;
  z-index: -1;
}
.hors-slider-1 .hors-slide-desc {
  color: #ffffff;
  max-width: 400px;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .hors-slider-1 .hors-slide-desc {
    font-size: 14px;
	margin-bottom: 15px;
  }
  .hors-slider-1 .hors-slide-btn {
    padding: 5px 15px!important;
  }
}
.hors-slider-1 .banner-shape-2 {
  width: 70px;
  height: 70px;
  background-color: rgb(92, 116, 147);
  box-shadow: 0px 0px 49px 0px rgba(16, 17, 16, 0.11), inset 0px 3px 7px 0px rgba(242, 156, 65, 0.1);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.hors-slider-1 .hors-slide-btn {
  color: #ffffff;
  background: #c5b582;
  padding: 16px 34px;
  transition: 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.hors-slider-1 .hors-slide-btn:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 300%;
  background: rgba(255, 255, 255, 0.08);
  right: -10px;
  top: -10px;
  transform: rotate(45deg);
  z-index: -1;
}
.hors-slider-1 .hors-slide-btn:hover {
  background-color: #556d8c;
}

.banner-arrow {
  position: absolute;
  bottom: 7%;
  right: 11%;
  z-index: 99;
}
.banner-arrow button {
  background-color: #c5b582;
  color: #fff;
  border: 0;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  margin: 0px 10px;
  transition: 0.3s;
}
.banner-arrow button:hover {
  background-color: #52952d;
}

.course-arrow button {
  background-color: #c5b582;
  color: #fff;
  border: 0;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  margin: 0px 10px;
  transition: 0.3s;
  border-radius: 50%;
}
.course-arrow button:hover {
  background-color: #52952d;
}
.course-arrow .course-next {
  position: absolute;
  top: 53%;
  left: 3%;
  z-index: 9;
  
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .course-arrow .course-next {
    left: 4%;
  }
}
.course-arrow .course-prev {
  position: absolute;
  top: 53%;
  right: 3%;
  z-index: 9;
 
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .course-arrow .course-prev {
    right: 4%;
  }
}

.hors-courses-1 {
  padding: 60px 0px 10px;
  position: relative;
}
.hors-courses-1 .hors-category-sub-title {
  color: #000000;
  font-weight: bold;
  margin-bottom: 12px;
}
.hors-courses-1 .hors-category-title {
  padding-bottom: 35px;
  max-width: 500px;
  margin: 0 auto;
}
.hors-courses-1 .category {
  transition: 0.3s;
}
.hors-courses-1 .category .category-slide-info {
  position: relative;
  text-align: center;
  transition: 0.3s;
}
.hors-courses-1 .category .category-slide-info .category-slide-img {
  position: relative;
}
.hors-courses-1 .category .category-slide-info .category-slide-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  transition: 0.3s;
}
.hors-courses-1 .category .category-slide-info .category-slide-desc {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 100%;
  text-align: center;
  z-index: 999;
  opacity: 0;
  transform: translate(-50%, -68%);
  transition: 0.3s;
  padding: 13px;
}
.hors-courses-1 .category .category-slide-info .category-slide-desc h4 {
  color: #ffffff;
  transition: 0.3s;
  margin-bottom: 15px;
  transition: 0.3s;
  font-size: 22px;
  text-transform:uppercase
}
.hors-courses-1 .category .category-slide-info .category-slide-desc h4:hover {
  color: #c5b582;
}
.hors-courses-1 .category .category-slide-info .category-slide-desc p {
  color: #ffffff;
  transition: 0.3s;
}
.hors-courses-1 .category .category-slide-info .category-slide-desc .category-read-more {
  color: rgb(242, 156, 65);
  text-decoration: underline;
  transition: 0.3s;
}
.hors-courses-1 .category .category-slide-title {
  margin-top: 25px;
  transition: 0.3s;
  margin-bottom: 0;
  text-transform: uppercase;
    font-size: 22px;
}
.hors-courses-1 .category .category-slide-info {
  position: relative;
  margin-bottom: 30px;
}
.hors-courses-1 .category .category-slide-info:hover .category-slide-title {
  opacity: 0;
  transform: translateY(-15px);
  visibility: hidden;
}
.hors-courses-1 .category .category-slide-info:hover .category-slide-desc {
  opacity: 1;
  top: 50%;
}
.hors-courses-1 .category .category-slide-info:hover .category-slide-img::after {
  opacity: 0.7;
}

.hors-slider-2 {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hors-slider-2 .hors-slide-info h2 {
  font-size: 72px;
  line-height: 80px;
  color: #ffffff;
  margin: 0 auto 60px;
  max-width: 800px;
}
.hors-slider-2 .hors-slide-info p {
  font-size: 24px;
}
.hors-slider-2 .hors-slide-btn {
  display: inline-block;
  background-color: rgb(82, 149, 45);
  padding: 16px 34px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 10;
  transition: 0.3s;
}
.hors-slider-2 .hors-slide-btn:hover {
  background-color: #c5b582;
}
.hors-slider-2 .hors-slide-btn:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 300%;
  background: rgba(0, 0, 0, 0.07);
  right: -10px;
  top: -10px;
  transform: rotate(45deg);
  z-index: -1;
}
.hors-slider-2 .swiper-button-next:after {
  content: "next";
  font-size: 30px;
  color: #ffffff;
}
.hors-slider-2 .swiper-button-next {
  right: 6%;
  top: 50%;
  left: auto;
}
.hors-slider-2 .swiper-button-prev:after {
  content: "prev";
  font-size: 30px;
  color: #ffffff;
}
.hors-slider-2 .swiper-button-prev {
  left: 6%;
  right: auto;
  top: 50%;
}

.home-3-banner {
  position: relative;
}
.home-3-banner .hors-slider-single:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 50%;
}
.home-3-banner .hors-slide-info {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.home-3-banner .hors-slide-info .row {
  align-items: center;
}
.home-3-banner .banner-sub-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home-3-banner .banner-sub-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .home-3-banner .banner-sub-title {
    margin-bottom: 20px;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.home-3-banner .banner-title h2 {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0);
  font-size: 80px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
  margin-bottom: 30px;
  line-height: 1.1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home-3-banner .banner-title h2 {
    font-size: 50px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .home-3-banner .banner-title h2 {
    font-size: 35px;
    margin-bottom: 10px;
  }
}
.home-3-banner .banner-title h3 {
  text-transform: uppercase;
  color: #fff;
  font-size: 52px;
  margin-bottom: 60px;
  line-height: 1.1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home-3-banner .banner-title h3 {
    font-size: 35px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .home-3-banner .banner-title h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
.home-3-banner .banner-btn a {
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: inline-block;
  color: #fff;
  padding: 16px 29px;
  background-color: rgb(242, 156, 65);
  transition: 0.3s;
}
.home-3-banner .banner-btn a:hover {
  background-color: #52952d;
}
.home-3-banner .banner-btn a:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 300%;
  background: rgba(0, 0, 0, 0.07);
  right: -10px;
  top: -10px;
  transform: rotate(45deg);
  z-index: -1;
}
.home-3-banner .banner-hotspot-wrapper {
  position: relative;
  width: 564px;
  height: 500px;
}
.home-3-banner .banner-hotspot-wrapper .banner-hotpot-icon {
  color: #c5b582;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  line-height: 30px;
  width: 30px;
  height: 30px;
  top: 100px;
  left: 0;
  position: absolute;
  cursor: pointer;
}
.home-3-banner .banner-hotspot-wrapper .banner-hotpot-icon:hover {
  background-color: #c5b582;
  color: #fff;
}
.home-3-banner .banner-hotspot-wrapper .banner-hotpot-icon:hover .banner-item {
  display: block;
}
.home-3-banner .banner-hotspot-wrapper .banner-hotspot-single:nth-child(2) .banner-hotpot-icon {
  top: 50%;
  left: calc(100% - 80px);
}
.home-3-banner .banner-hotspot-wrapper .banner-hotspot-single:nth-child(3) .banner-hotpot-icon {
  top: calc(100% - 80px);
}
.home-3-banner .banner-hotpot-content {
  position: absolute;
  background-color: #ffffff;
  padding: 10px 10px 60px 10px;
  width: 189px;
  height: 288px;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  text-align: center;
}
.home-3-banner .banner-hotpot-content.active-hotspot {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.home-3-banner .banner-hotpot-content .banner-img {
  background-color: #f8f6f4;
  margin-bottom: 10px;
}
.home-3-banner .banner-hotpot-content .banner-img img {
  max-height: 174px;
}
.home-3-banner .banner-hotpot-content h6 {
  margin-bottom: 0;
}
.home-3-banner .banner-hotpot-content ul {
  color: #c5b582;
  position: absolute;
  bottom: 10px;
  left: 50%;
  display: flex;
  transform: translate(-50%);
}

.hors-services-1 .hors-services-title {
  text-align: center;
  max-width: 1088px;
  margin: 0 auto 30px;
}
.hors-services-1 .hors-services-desc {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}
.hors-services-1 .hors-services-single {
  padding: 50px 30px;
  transition: 0.3s;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-services-1 .hors-services-single {
    padding: 30px 20px;
  }
}
.hors-services-1 .hors-services-single:before {
  display: none;
}
.hors-services-1 .hors-services-single h4 {
  font-size: 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-services-1 .hors-services-single h4 {
    font-size: 21px;
  }
}
.hors-services-1 .hors-services-single h4,
.hors-services-1 .hors-services-single p {
  color: #ffffff;
}
.hors-services-1 .hors-services-single:hover {
  background-color: rgb(242, 156, 65);
}
.hors-services-1 .hors-services-single p:last-child {
  margin-bottom: 0;
}
.hors-services-1 .hors-services-icon {
  padding-bottom: 35px;
}
.hors-services-1 .hors-services-icon img {
  width: 76px;
}

.hors-statistics .container {
  padding: 60px 0 40px 0;
}
.hors-statistics .hors-sub-title {
  padding-bottom: 10px;
  color: #000;
  font-weight: bold;
  margin: 0;
}
.hors-statistics .hors-counter-inner h2 {
  font-size: 70px;
  line-height: 58px;
}
.hors-statistics .hors-counter-inner p {
  color: #000000;
  margin: 0;
}
.hors-statistics .hors-main-title {
  max-width: 756px;
  margin: auto;
  padding-bottom: 35px;
}

.hors-about-area {
  position: relative;
}
.hors-about-area .section-title {
  margin-bottom: 30px;
}
.hors-about-area .section-title .about-area-sub-title {
  color: #000;
  font-weight: bold;
  font-size: 18px;
  margin: 0;
  line-height: 58px;
}
.hors-about-area .section-title .title {
  /* max-width: 500px; */
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hors-about-area .section-title .title {
    max-width: inherit;
  }
}
.hors-about-area .section-title p {
  /* max-width: 430px; */
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hors-about-area .section-title p {
    max-width: inherit;
  }
}
.hors-about-area .section-title .about-contact {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .hors-about-area .section-title .about-contact {
    flex-wrap: wrap;
  }
}
.hors-about-area .section-title .about-contact .about-phn {
  margin-left: 43px;
}
.hors-about-area .section-title .about-contact .about-phn span {
  background-color: #e9e9e9;
  border-radius: 50%;
  padding: 10px 12px 12px 10px;
  margin-right: 15px;
  z-index: 1;
}
.hors-about-area .section-title .about-contact .about-phn span img {
  width: 18px;
}
@media (max-width: 767px) {
  .hors-about-area .section-title .about-contact .about-phn {
    margin-left: 20px;
  }
  .hors-courses-1 {
    padding: 40px 0px 10px;
    }
	.hors-calltoaction-1 {
    padding: 40px 0;
	}
	.hors-statistics .container {
    padding: 40px 0 10px 0;
	}
}
.hors-about-area .section-title .about-contact .about-phn h6 {
  margin-bottom: 0;
}
.hors-about-area .section-title ul li span {
  padding-left: 10px;
}
.hors-about-area .section-title .about-btn.btn-bg a {
  display: inline-block;
  padding: 13px 48px;
  color: #ffffff;
}
.hors-about-area .about-thumb-shape {
  position: relative;
}
.hors-about-area .about-thumb-shape .experience {
  position: absolute;
  border: 10px solid rgb(87, 111, 142);
  padding: 10px 20px 15px;
  top: 32%;
  left: 12%;
  background-color: #ffffff;
  margin-top: -80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hors-about-area .about-thumb-shape .experience {
    top: 77%;
    left: 44%;
  }
}
@media (max-width: 767px) {
  .hors-about-area .about-thumb-shape .experience {
    top: 42%;
    left: 21%;
  }
}
.hors-about-area .about-thumb-shape .experience h2 {
  font-size: 72px;
  color: #c5b582;
  margin-bottom: 0;
}
.hors-about-area .about-thumb-shape .experience p {
  margin: 0;
  color: #000000;
  font-weight: bold;
}
.hors-about-area .about-thumb-shape .shape {
  position: absolute;
  right: -95px;
  bottom: -110px;
  z-index: -1;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
}
.hors-about-area .about-thumb-shape .shape-2 {
  position: absolute;
  top: -60px;
  right: -50px;
  z-index: -1;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
}

.video-area {
  position: relative;
  text-align: center;
}
.video-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 75%;
}
.video-area .video-play-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  display: inline-block;
  width: 90px;
  height: 90px;
  color: #fff;
  line-height: 85px;
  border: 2px solid white;
  border-radius: 50%;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s;
}
.video-area .video-play-btn:hover {
  color: #c5b582;
  border: 2px solid #c5b582;
}

.hors-team-1 {
  padding: 110px 0;
  padding-bottom: 90px;
}
.hors-team-1 .hors-team-1-title {
  max-width: 600px;
  margin: 0 auto;
}
.hors-team-1 .hors-team-1-sub-title {
  color: #000;
  font-weight: bold;
}
.hors-team-1 .hors-team-1-title {
  margin-bottom: 54px;
}
.hors-team-1 .hors-team-1-item {
  position: relative;
  transition: 0.3s;
  margin-bottom: 30px;
}
.hors-team-1 .hors-team-1-item h4 {
  margin: 24px 0 0 0;
}
.hors-team-1 .hors-team-1-item p {
  margin-bottom: 0;
}
.hors-team-1 .hors-team-1-item:hover .hors-team-1-social {
  top: 45%;
  opacity: 1;
}
.hors-team-1 .hors-team-1-social {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s;
}
.hors-team-1 .hors-team-1-social ul {
  display: flex;
}
.hors-team-1 .hors-team-1-social li {
  margin-right: 10px;
}
.hors-team-1 .hors-team-1-social li a {
  color: #000000;
  width: 36px;
  background-color: #ffffff;
  height: 36px;
  display: block;
  text-align: center;
  line-height: 34px;
  font-size: 16px;
}
.hors-team-1 .hors-team-1-social li:hover a {
  background-color: rgb(242, 156, 65);
  color: #ffffff;
}
.hors-team-1 .hors-team-1-social li:last-child {
  margin-right: 0;
}

.hors-gallery-1 {
  text-align: center;
}
.hors-gallery-1 .hors-gallery-content {
  position: relative;
  z-index: 1;
}
.hors-gallery-1 .hors-gallery-content:hover .hors-gallery-imgs::before {
  opacity: 0.7;
}
.hors-gallery-1 .hors-gallery-content:hover .hors-gallery-zoom {
  opacity: 1;
}
.hors-gallery-1 .hors-gallery-imgs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(242, 156, 65);
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
}
.hors-gallery-1 .hors-gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  background-color: #ffffff;
  padding: 20px 15px;
  border-radius: 50%;
  border: 8px solid rgba(240, 152, 64, 0.4666666667);
  z-index: 999;
  opacity: 0;
  -webkit-animation: ripple-white3 2.5s linear infinite;
  animation: ripple-white3 2.5s linear infinite;
}

.hors-calltoaction-1 {
  padding: 60px 0;
}
.hors-calltoaction-1 h2 {
  color: #ffffff;
}
.hors-calltoaction-1 .hors-calltoaction-1-title span {
  text-decoration: underline;
}
.hors-calltoaction-1 p {
  color: #ffffff;
  max-width: 860px;
  margin: 0 auto 0;
  font-size: 20px;
    line-height: 40px;
    font-style: italic;
}
.hors-calltoaction-1 .btn-bg {
  padding: 14px 44px;
}

.hors-testimonial-1 {
  padding: 60px 0;
}
.hors-testimonial-1 .hors-testimonial-sub-title {
  padding-bottom: 10px;
  color: #000;
  font-weight: bold;
}
.hors-testimonial-1 .hors-testimonial-title {
  max-width: 585px;
  margin: auto;
}
.hors-testimonial-1 .hors-testimonial-title span {
  display: block;
}
.hors-testimonial-1 .hors-testimonial-single {
  margin-top: 30px;
  background-color: #ffffff;
  padding: 40px 34px;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
  margin: 15px 15px 30px 15px;
}
.hors-testimonial-1 .hors-testimonial-single .hors-testimonial-rating ul {
  display: flex;
}
.hors-testimonial-1 .hors-testimonial-single .hors-testimonial-rating ul li {
  margin-right: 4px;
  width: 16px;
}
.hors-testimonial-1 .hors-testimonial-single p {
  margin: 20px 0 20px 0;
}
.hors-testimonial-1 .hors-testimonial-single .hors-testimonial-author {
  display: flex;
}
.hors-testimonial-1 .hors-testimonial-single .hors-testimonial-author .author-img img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
}
.hors-testimonial-1 .hors-testimonial-single .hors-testimonial-author .author-name {
  
}
.hors-testimonial-1 .hors-testimonial-single .hors-testimonial-author .author-name h4 {
  margin-bottom: 3px;
}

.hors-blog-area-1 .section-title p {
  color: #000;
  font-weight: bold;
  margin-bottom: 12px;
}
.hors-blog-area-1 .section-title h2 {
  max-width: 800px;
  margin: 0 auto;
}
.hors-blog-area-1 .blog-img {
  position: relative;
}
.hors-blog-area-1 .hors-single-blog-inner {
  padding-top: 54px;
  position: relative;
}
.hors-blog-area-1 .hors-blog-title {
  max-width: 995px;
  margin: 0 auto;
}
.hors-blog-area-1 .blog-date {
  background-color: rgb(82, 149, 45);
  position: absolute;
  padding: 10px 23px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.hors-blog-area-1 .blog-date p {
  color: white;
  margin: 0;
}
.hors-blog-area-1 .blog-desc {
  padding-top: 53px;
}
.hors-blog-area-1 .blog-desc span i {
  opacity: 0;
  transition: 0.3s;
  margin-left: 5px;
}
.hors-blog-area-1 .blog-desc span:hover i {
  opacity: 1;
  margin-left: 0;
}
.hors-blog-area-1 .blog-desc a.blog-title {
  font-size: 22px;
  line-height: 32px;
  color: #000000;
  margin: 0;
  font-weight: bold;
  transition: 0.3s;
}
.hors-blog-area-1 .blog-desc a.blog-title:hover {
  color: #c5b582;
}
.hors-blog-area-1 .blog-desc p {
  margin-bottom: 30px;
}
.hors-blog-area-1 .hors-single-blog-inner-dtls {
  background-color: #ffffff;
  box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 40px 30px 60px 40px;
  margin-top: 54px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-blog-area-1 .hors-single-blog-inner-dtls {
    padding: 25px;
  }
}
.hors-blog-area-1 .hors-single-blog-inner-dtls a {
  color: black;
  font-weight: bold;
  display: block;
  font-size: 22px;
  line-height: 32px;
  max-width: 300px;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-blog-area-1 .hors-single-blog-inner-dtls a {
    font-size: 18px;
    line-height: 27px;
  }
}
.hors-blog-area-1 .hors-single-blog-inner-dtls a:hover {
  color: #c5b582;
}
.hors-blog-area-1 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-1,
.hors-blog-area-1 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-2 {
  padding-bottom: 30px;
}
.hors-blog-area-1 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-2,
.hors-blog-area-1 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-3 {
  padding-top: 30px;
  position: relative;
}
.hors-blog-area-1 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-2::after,
.hors-blog-area-1 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-3::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(220, 220, 220);
}
.hors-blog-area-1 .hors-single-blog-inner-dtls img {
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -100px;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
}

.hors-blog-area-2 .section-title p {
  color: #000;
  font-weight: bold;
  margin-bottom: 12px;
}
.hors-blog-area-2 .section-title h2 {
  max-width: 800px;
  margin: 0 auto;
}
.hors-blog-area-2 .blog-img {
  position: relative;
}
.hors-blog-area-2 .hors-single-blog-inner {
  position: relative;
}
.hors-blog-area-2 .hors-blog-title {
  max-width: 995px;
  margin: 0 auto;
}
.hors-blog-area-2 .blog-date {
  background-color: rgb(82, 149, 45);
  position: absolute;
  padding: 10px 23px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.hors-blog-area-2 .blog-date p {
  color: white;
  margin: 0;
}
.hors-blog-area-2 .blog-desc {
  padding-top: 53px;
}
.hors-blog-area-2 .blog-desc span i {
  opacity: 0;
  transition: 0.3s;
  margin-left: 5px;
}
.hors-blog-area-2 .blog-desc span:hover i {
  opacity: 1;
  margin-left: -5px;
}
.hors-blog-area-2 .blog-desc a.blog-title {
  font-size: 22px;
  line-height: 32px;
  color: #000000;
  margin: 0;
  font-weight: bold;
}
.hors-blog-area-2 .blog-desc p {
  margin: 0;
  padding: 30px 0;
}
.hors-blog-area-2 .hors-single-blog-inner-dtls {
  background-color: #ffffff;
  box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 29px;
  margin-top: 54px;
  position: relative;
}
.hors-blog-area-2 .hors-single-blog-inner-dtls a {
  color: black;
  font-weight: bold;
  display: block;
  padding-bottom: 20px;
}
.hors-blog-area-2 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-1,
.hors-blog-area-2 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-2 {
  padding-bottom: 30px;
}
.hors-blog-area-2 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-2,
.hors-blog-area-2 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-3 {
  padding-top: 30px;
  position: relative;
}
.hors-blog-area-2 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-2::after,
.hors-blog-area-2 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-3::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(220, 220, 220);
}
.hors-blog-area-2 .hors-single-blog-inner-dtls img {
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -100px;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
}
.hors-blog-area-2 .shap-cerclae {
  position: absolute;
  z-index: -1;
  left: -100px;
  bottom: -100px;
  -webkit-animation: left-image-bounce 3s infinite ease-in-out;
  animation: left-image-bounce 3s infinite ease-in-out;
}

.hors-newsletter-1 .container {
  padding: 110px 0;
}
.hors-newsletter-1 .hors-newsletter-title {
  max-width: 800px;
  margin: auto;
}
.hors-newsletter-1 .hors-newsletter-form {
  margin-top: 54px;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hors-newsletter-1 .hors-newsletter-form {
    flex-wrap: wrap;
    text-align: center;
  }
}
.hors-newsletter-1 .hors-newsletter-form input {
  padding: 10px 20px;
  width: 340px;
  margin: 0 20px 0 0;
  border: 1px solid rgb(220, 220, 220);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hors-newsletter-1 .hors-newsletter-form input {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .hors-newsletter-1 .hors-newsletter-form input {
    margin: 0;
    margin-bottom: 20px;
    width: 300px;
  }
}
.hors-newsletter-1 .hors-newsletter-form .btn-bg {
  border: 1px solid rgb(82, 149, 45);
  text-align: center;
  font-weight: bold;
  padding: 10px 30px;
  transition: 0.3s;
  color: #fff;
}
.hors-newsletter-1 .hors-newsletter-form .btn-bg:hover {
  background-color: #c5b582;
  border: 1px solid #c5b582;
}

.hors-footer-area-1 .footer-top {
  position: relative;
  padding: 40px 0 30px;
}
.hors-footer-area-1 .footer-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background-color: rgb(87, 111, 142);
  z-index: -1;
}
@media (max-width: 767px) {
  .hors-footer-area-1 .footer-top::before {
    width: 100%;
    z-index: 3;
  }
}
.hors-footer-area-1 .footer-top::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: #c5b582;
  z-index: -1;
}
.hors-footer-area-1 .footer-top-horizontal {
  background-color: #ffffff;
  padding: 31px 30px 31px 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.1);
}
.hors-footer-area-1 .footer-top-horizontal .footer-list {
  display: flex;
}
.hors-footer-area-1 .footer-top-horizontal .footer-list li {
  margin-right: 30px;
  line-height: 38px;
  color: #000000;
  font-weight: bold;
}
.hors-footer-area-1 .footer-top-horizontal .footer-list li:hover {
  color: rgb(242, 156, 65);
}
.hors-footer-area-1 .footer-top-horizontal .footer-list li:last-child {
  margin-right: 0;
}
.hors-footer-area-1 .footer-about-us h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 24px;
}
.hors-footer-area-1 .details p {
  color: #ffffff;
  max-width: 340px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hors-footer-area-1 .details p {
    max-width: inherit;
    padding-right: 30px;
  }
}
.hors-footer-area-1 .details strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
}
.hors-footer-area-1 .social-media-1 {
  display: flex;
  margin-top: 25px;
}
.hors-footer-area-1 .social-media-1 li {
  margin-right: 15px;
  transition: 0.3s;
}
.hors-footer-area-1 .social-media-1 li:hover a {
  background-color: #c5b582;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.hors-footer-area-1 .social-media-1 a {
  display: inline-block;
  width: 36px;
  height: 36px;
  color: #c5b582;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  text-align: center;
}
.hors-footer-area-1 .social-media-1 a i {
  font-size: 16px;
  line-height: 35px;
}
.hors-footer-area-1 .widget-title {
  margin-bottom: 15px;
  font-size: 24px;
  color:#fff
}
@media (max-width: 767px) {
  .hors-footer-area-1 .widget-title {
    color: #fff;
  }
}
.hors-footer-area-1 .z-index {
  position: relative;
  z-index: 99;
}
@media (max-width: 767px) {
  .hors-footer-area-1 .z-index {
    /* margin-bottom: 50px; */
  }
  .widget_nav_menu, .widget_about{margin-bottom:20px}
  .footer-top{text-align:center}
  .hors-footer-area-1 .social-media-1 {
  display: flex;
   margin: 25px 108px 0;
	}
	.hors-about-area {
  text-align: center;
	}
	.hors-about-area .section-title .about-btn.btn-bg a {
  padding: 13px 38px;
	}
}
.hors-footer-area-1 .widget-courses li {
  margin-bottom: 5px;
}
.hors-footer-area-1 .widget-courses li a {
  transition: 0.3s;
  color:#fff
}
@media (max-width: 767px) {
  .hors-footer-area-1 .widget-courses li a {
    color: #fff;
  }
}
.hors-footer-area-1 .widget-courses li a:hover {
  color: #fff;
  text-decoration:underline
}
.hors-footer-area-1 .details-contact li {
  margin-bottom: 15px;
  transition: 0.3s;
  color:#fff
}
@media (max-width: 767px) {
  .hors-footer-area-1 .details-contact li {
    color: #fff;
  }
}
.hors-footer-area-1 .details-contact li a {
  transition: 0.3s;
  color:#fff
}
.hors-footer-area-1 .details-contact li a:hover {
  color: #fff;
  text-decoration:underline
}

.footer-bottom {
  padding: 15px 0;
}
.footer-bottom p {
  color: #ffffff;
  margin: 0;
  font-size: 13px;
}

.header-right {
  display: flex;
}
.header-right .header-top-search {
  font-size: 20px;
  color: #000;
  margin-right: 25px;
  cursor: pointer;
  line-height: 30px;
}
.header-right [type=button]:not(:disabled), .header-right [type=reset]:not(:disabled), .header-right [type=submit]:not(:disabled), .header-right button:not(:disabled) {
  cursor: pointer;
}
.header-right button:focus:not(:focus-visible) {
  outline: 0;
}
.header-right .hors-offcanvas-btn {
  position: relative;
  width: 21px;
  height: 16px;
  transform: rotate(0deg) translateY(-50%) scale(1.3);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border: 0 !important;
  background: transparent !important;
  outline: none !important;
  z-index: 10;
  margin-top: 14px;
  margin-right: 25px;
}
.header-right .hors-offcanvas-btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 20px;
  background: rgb(0, 0, 0);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header-right .hors-offcanvas-btn span:nth-child(1) {
  top: 2px;
}
.header-right .hors-offcanvas-btn span:nth-child(2) {
  top: 7px;
}
.header-right .hors-offcanvas-btn span:nth-child(3) {
  top: 13px;
}
.header-right .open span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}
.header-right .open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.header-right .open span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

.hors-offcanvas-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  background: #131313;
  height: 100vh;
  color: #fff;
  padding: 50px 40px 50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99;
  transform: translateX(200px);
}
.hors-offcanvas-sidebar .hors-offcanvas-btn {
  margin-top: 13px;
  background: transparent;
  border: 0;
}
.hors-offcanvas-sidebar .hors-offcanvas-btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 5%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  margin-left: 30px;
  margin-top: 30px;
}
.hors-offcanvas-sidebar .hors-offcanvas-btn.open span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}
.hors-offcanvas-sidebar .hors-offcanvas-btn span:nth-child(1) {
  top: 1px;
}
.hors-offcanvas-sidebar .hors-offcanvas-btn.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.hors-offcanvas-sidebar .hors-offcanvas-btn span:nth-child(2) {
  top: 8px;
}
.hors-offcanvas-sidebar .hors-offcanvas-btn.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}
.hors-offcanvas-sidebar .hors-offcanvas-btn span:nth-child(3) {
  top: 15px;
}

.hors-offcanvas-sidebar.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hors-offcanvas-sidebar.open img {
  margin-bottom: 54px;
}
.hors-offcanvas-sidebar.open ul li {
  padding-bottom: 30px;
}
.hors-offcanvas-sidebar.open ul li:hover {
  color: #c5b582;
}

.hors-services-1 {
  padding: 110px 0 90px 0;
}
.hors-services-1 .hors-services-sub-title {
  padding-bottom: 10px;
}
.hors-services-1 .hors-services-sub-title p {
  color: #000;
  font-weight: bold;
  font-size: 18px;
}
.hors-services-1 .hors-services-titel {
  padding-bottom: 54px;
}
.hors-services-1 .hors-services-info {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.1);
}
.hors-services-1 .hors-services-desc .services-heading {
  padding-bottom: 30px;
}
.hors-services-1 .hors-services-desc p {
  margin: 0;
  max-width: 300px;
  margin: 0 auto;
  padding-bottom: 25px;
}
.hors-services-1 .services-read-more a {
  font-weight: bold;
  color: rgb(82, 149, 45);
}
.hors-services-1 .services-read-more a:hover {
  color: rgb(242, 156, 65);
}

.hors-about-area-2 {
  margin-bottom: 80px;
}
.hors-about-area-2 .about-area-sub-title {
  color: #000000;
  font-weight: bold;
}
.hors-about-area-2 .section-title {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hors-about-area-2 .section-title {
    margin-bottom: 70px;
  }
}
.hors-about-area-2 .section-title .about-contact {
  display: flex;
  align-items: center;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .hors-about-area-2 .section-title .about-contact {
    flex-wrap: wrap;
    margin-bottom: 100px;
  }
}
.hors-about-area-2 .section-title .read-more-btn {
  padding: 13px 48px;
  color: #ffffff;
  display: block;
}
.hors-about-area-2 .section-title p.content {
  padding-right: 100px;
}
.hors-about-area-2 .section-title .about-phn {
  margin-left: 54px;
}
@media (max-width: 767px) {
  .hors-about-area-2 .section-title .about-phn {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hors-about-area-2 .section-title .about-phn {
    margin-left: 30px;
    margin-top: 0px;
  }
}
.hors-about-area-2 .section-title .about-phn img {
  width: 18px;
}
.hors-about-area-2 .section-title .about-phn h6 {
  margin: 0;
}
.hors-about-area-2 .section-title .about-phn span {
  background-color: #e9e9e9;
  border-radius: 50%;
  padding: 10px 12px 12px 10px;
  margin-right: 15px;
  z-index: 1;
}
.hors-about-area-2 .about-left-thumb img {
  width: 474px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-about-area-2 .about-left-thumb img {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .hors-about-area-2 .about-left-thumb img {
    width: 300px;
  }
}
.hors-about-area-2 .about-thumb-shape {
  position: relative;
  left: 12%;
}
.hors-about-area-2 .about-thumb-shape .experience {
  position: absolute;
  width: 385px;
  bottom: -15%;
  left: -21%;
  border: 8px solid #ffffff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-about-area-2 .about-thumb-shape .experience {
    width: 260px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hors-about-area-2 .about-thumb-shape .experience {
    width: 200px;
    left: -5%;
  }
}
@media (max-width: 767px) {
  .hors-about-area-2 .about-thumb-shape .experience {
    width: 200px;
    left: -5%;
  }
}
.hors-about-area-2 .about-thumb-shape .shape-2 {
  position: absolute;
  top: -60px;
  right: 110px;
  z-index: -1;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
}
.hors-about-area-2 .about-thumb-shape .shape {
  position: absolute;
  right: 55px;
  bottom: -100px;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
  z-index: -1;
}

.hors-about-area-custom {
  margin: 0 !important;
  padding: 110px 0 210px 0 !important;
}

.hors-services-3 {
  padding: 110px 0 90px 0;
}
.hors-services-3 .hors-services-sub-title p {
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}
.hors-services-3 .hors-services-titel h2 {
  margin-bottom: 50px;
}
.hors-services-3 .hors-services-info {
  margin-bottom: 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.1);
}
.hors-services-3 .hors-services-desc {
  padding: 40px 35px;
}
.hors-services-3 .services-read-more {
  color: #52952d;
  font-weight: bold;
  transition: 0.3s;
}
.hors-services-3 .services-read-more i {
  opacity: 0;
  color: #c5b582;
  margin-left: -10px;
  transition: 0.6s;
}
.hors-services-3 .services-read-more:hover {
  color: #c5b582;
}
.hors-services-3 .services-read-more:hover i {
  opacity: 1;
  margin-left: 10px;
}

.about-area-3 {
  position: relative;
  z-index: -1;
}
.about-area-3 .about-area-sub-title {
  color: #000000;
  font-weight: bold;
}
.about-area-3 .section-title {
  position: relative;
}
.about-area-3 .section-title .about-contact {
  display: flex;
  align-items: center;
}
.about-area-3 .section-title .about-btn {
  padding: 13px 48px;
  color: #ffffff;
}
.about-area-3 .section-title p.content {
  padding-right: 100px;
}
.about-area-3 .section-title .about-phn {
  margin-left: 54px;
}
.about-area-3 .section-title .about-phn img {
  width: 18px;
}
.about-area-3 .section-title .about-phn span {
  background-color: #fff;
  border-radius: 50%;
  padding: 10px 12px 12px 10px;
  margin-right: 15px;
  z-index: 1;
}
.about-area-3 .about-thumb-shape {
  position: relative;
}
.about-area-3 .about-thumb-shape .experience {
  position: absolute;
  width: 385px;
  bottom: -10%;
  left: -20%;
  border: 8px solid #ffffff;
}
.about-area-3 .about-thumb-shape .shape-2 {
  position: absolute;
  top: -60px;
  right: 22px;
  z-index: -1;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
}
.about-area-3 .about-thumb-shape .shape {
  position: absolute;
  right: -25px;
  bottom: -100px;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
  z-index: -1;
}

.video-area-2 {
  position: relative;
  padding: 180px 0;
  z-index: 1;
}
.video-area-2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  opacity: 65%;
  z-index: -1;
}
.video-area-2 .video-title h2 {
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.video-area-2 .video-sub-title {
  color: #ffffff;
  padding-bottom: 12px;
  margin: 0;
  font-weight: bold;
}
.video-area-2 .video-play-btn {
  color: #ffffff;
  border: 2px solid;
  width: 90px;
  height: 90px;
  text-transform: uppercase;
  border-radius: 50%;
  display: inline-block;
  font-weight: bold;
  line-height: 85px;
  transition: 0.3s;
}
.video-area-2 .video-play-btn:hover {
  color: #c5b582;
}

.hors-calltoaction-2 {
  padding: 184px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hors-calltoaction-2 {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .hors-calltoaction-2 {
    padding: 50px 0;
  }
}
.hors-calltoaction-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.651;
  z-index: -1;
}
.hors-calltoaction-2 .hors-calltoaction-title {
  color: #ffffff;
  z-index: 999;
}
.hors-calltoaction-2 .hors-calltoaction-title p {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 12px;
}
.hors-calltoaction-2 .hors-calltoaction-title h2 {
  color: #ffffff;
}
.hors-calltoaction-2 .hors-calltoaction-title h2 {
  max-width: 900px;
  padding-bottom: 45px;
  margin: 0 auto;
}
.hors-calltoaction-2 a {
  background-color: rgb(82, 149, 45);
  padding: 15px 50px 14px 50px;
  transition: 0.3s;
}
.hors-calltoaction-2 a:hover {
  background-color: #c5b582;
}

.hors-gallery-2 .title h2 {
  max-width: 600px;
  margin: auto;
  padding-bottom: 30px;
}

.hors-blog-area-2 {
  padding: 0 0 110px 0;
}
.hors-blog-area-2 .blog-desc {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.1);
}
.hors-blog-area-2 .hors-single-blog-inner {
  margin-top: 54px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.1);
}
.hors-blog-area-2 .single-blog-shape-3 {
  position: relative;
}
.hors-blog-area-2 .single-blog-shape-3 .hors-single-shape-3 {
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: -100px;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
}
.hors-blog-area-2 .blog-img {
  position: relative;
}
.hors-blog-area-2 .blog-date {
  background-color: rgb(82, 149, 45);
  position: absolute;
  padding: 10px 15px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.hors-blog-area-2 .blog-date p {
  color: white;
  margin: 0;
}
.hors-blog-area-2 .blog-desc {
  padding: 43px 20px;
}
.hors-blog-area-2 .blog-desc h3 {
  margin: 0;
}
.hors-blog-area-2 .blog-desc a.blog-title {
  font-size: 22px;
  line-height: 32px;
  color: #000000;
  margin: 0;
  font-weight: bold;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-blog-area-2 .blog-desc a.blog-title {
    font-size: 19px;
  }
}
.hors-blog-area-2 .blog-desc a.blog-title:hover {
  color: #c5b582;
}
.hors-blog-area-2 .blog-desc p {
  margin: 0;
  padding: 15px 0;
}
.hors-blog-area-2 .hors-single-blog-inner-dtls {
  background-color: #ffffff;
  box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 66px 30px 66px 50px;
  margin-top: 54px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hors-blog-area-2 .hors-single-blog-inner-dtls {
    padding: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-blog-area-2 .hors-single-blog-inner-dtls {
    padding: 32px;
  }
}
.hors-blog-area-2 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-1 {
  padding-bottom: 30px;
}
.hors-blog-area-2 .hors-single-blog-inner-dtls h3 {
  margin: 0;
}
.hors-blog-area-2 .hors-single-blog-inner-dtls a {
  color: black;
  font-weight: bold;
  display: block;
  padding-bottom: 20px;
  font-size: 22px;
  line-height: 32px;
  max-width: 300px;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hors-blog-area-2 .hors-single-blog-inner-dtls a {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-blog-area-2 .hors-single-blog-inner-dtls a {
    font-size: 18px;
  }
}
.hors-blog-area-2 .hors-single-blog-inner-dtls a:hover {
  color: #c5b582;
}
.hors-blog-area-2 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-2 {
  padding: 30px 0;
  position: relative;
}
.hors-blog-area-2 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-2::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(220, 220, 220);
}
.hors-blog-area-2 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-3 {
  padding-top: 30px;
  position: relative;
}
.hors-blog-area-2 .hors-single-blog-inner-dtls .hors-single-blog-inner-dtls-3::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(220, 220, 220);
}
.hors-blog-area-2 .hors-single-blog-inner-dtls img {
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -100px;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
}
.hors-blog-area-2 .pagination {
  justify-content: center;
  margin-top: 50px;
}

.hors-testimonial-2 {
  padding: 110px 0;
}
.hors-testimonial-2 img {
  width: 50px;
}
.hors-testimonial-2 .hors-testimonial-1-sub-title p {
  color: #000;
  font-weight: bold;
  padding: 0 !important;
  margin-bottom: 12px;
}
.hors-testimonial-2 .hors-testimonial-1-title {
  padding: 0 54px 0;
  max-width: 590px;
  margin: 0 auto;
}
.hors-testimonial-2 p {
  margin: 0;
  padding-bottom: 30px;
  padding-top: 20px;
}
.hors-testimonial-2 .author-img img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
}
.hors-testimonial-2 .author-name {
  margin-top: 25px;
}
.hors-testimonial-2 .author-name h4 {
  margin: 0;
}
.hors-testimonial-2 .hors-testimonial-1-single {
  background-color: rgb(255, 255, 255);
  padding: 40px 27px;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
  margin: 15px 15px 30px 15px;
}
.hors-testimonial-2 .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50%;
  border: 4px solid #fff;
  background: transparent;
  opacity: 1;
  box-shadow: 0 0 0 1px #c5b582;
  margin: 6px !important;
}
.hors-testimonial-2 .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #c5b582;
}

.hors-process-1 {
  padding: 110px 0;
  background-color: rgb(248, 246, 244);
}
.hors-process-1 .process-item {
  display: flex;
  justify-content: center;
  padding-top: 54px;
}
.hors-process-1 .process-title {
  max-width: 800px;
  margin: 0 auto;
}
.hors-process-1 .process-sub-title p {
  color: #000000;
  font-weight: bold;
  margin-bottom: 12px;
}
.hors-process-1 .process-item-1 {
  position: relative;
}
.hors-process-1 .process-item-1 .process-item-img {
  background-color: rgb(82, 149, 45);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  transition: 0.3s;
  margin: 0 auto;
}
.hors-process-1 .process-item-1 .process-item-img:hover {
  background-color: rgb(242, 156, 65);
}
.hors-process-1 .process-item-1 .process-item-img img {
  padding-top: 45px;
  width: 43px;
}
.hors-process-1 .process-item-1 h4 {
  background: #ffffff;
  margin: 0;
  position: absolute;
  width: 50px;
  border-radius: 50%;
  top: 6px;
  right: 15px;
  color: #000000;
  transition: 0.3s;
  height: 50px;
  font-size: 24px;
  font-weight: bold;
  line-height: 48px;
}
.hors-process-1 .process-item-1 h3 {
  width: 235px;
  padding-top: 30px;
}
.hors-process-1 .process-item-1:hover h4 {
  color: rgb(242, 156, 65);
}
.hors-process-1 .process-item-2 .process-item-img {
  padding: 37px;
}
.hors-process-1 .process-item-2 .process-item-img img {
  width: 233px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hors-form-wrapper {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .hors-form-wrapper {
    padding: 10px;
  }
}

.hors-form-1 {
  padding: 60px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hors-form-1 {
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .hors-form-1 {
    padding: 0px;
  }
}
.hors-form-1 .hors-form-inner {
  background-color: #ffffff;
  padding: 110px 60px 110px 0;
}
@media (max-width: 767px) {
  .hors-form-1 .hors-form-inner {
    padding: 50px 0px;
  }
}
.hors-form-1 .form-desc {
  background-color: rgb(82, 149, 45);
  padding: 40px 32px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hors-form-1 .form-desc {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hors-form-1 .form-desc {
    margin-bottom: 70px;
  }
}
.hors-form-1 .form-desc h3 {
  color: #ffffff;
  position: relative;
}
.hors-form-1 .form-desc h3::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 145px;
  height: 2px;
  background-color: #ffffff;
}
.hors-form-1 .form-desc .form-contact-location {
  margin-top: 10px;
  display: flex;
}
.hors-form-1 .form-desc .form-contact-location i {
  color: #ffffff;
  font-size: 24px;
  line-height: 35px;
}
.hors-form-1 .form-desc .form-contact-location p {
  max-width: 226px;
  color: #ffffff;
  margin-bottom: 30px;
  padding-left: 12px;
}
.hors-form-1 .form-desc .form-contact-link {
  display: flex;
}
.hors-form-1 .form-desc .form-contact-link h4 {
  color: #ffffff;
  margin-bottom: 0;
}
.hors-form-1 .form-desc .form-contact-link ul {
  display: flex;
}
.hors-form-1 .form-desc .form-contact-link li i {
  font-size: 16px;
}
.hors-form-1 .form-contact-phn,
.hors-form-1 .form-contact-email,
.hors-form-1 .form-contact-social {
  margin-bottom: 30px;
}
.hors-form-1 .form-contact-phn i,
.hors-form-1 .form-contact-email i,
.hors-form-1 .form-contact-social i {
  margin-top: 30px;
}
.hors-form-1 h2 {
  margin: 0;
}
.hors-form-1 .right p {
  margin-bottom: 40px;
  font-size: 18px;
}
.hors-form-1 .form-contact a {
  color: #ffffff;
  padding-left: 12px;
}
.hors-form-1 .form-contact i {
  color: #ffffff;
  font-size: 24px;
  position: relative;
  vertical-align: middle;
}
.hors-form-1 .form-contact-address {
  display: flex;
}
.hors-form-1 .form-contact-address i {
  margin-right: 22px;
}
.hors-form-1 .form-contact p {
  margin: 0;
}
.hors-form-1 .form-field {
  margin-bottom: 20px;
}
.hors-form-1 .form-field input {
  width: 100%;
  height: 50px;
  padding: 5px 18px;
  font-size: 14px;
  background-color: #f8f6f4;
  border: none;
}
.hors-form-1 .form-field textarea {
  width: 100%;
  padding: 10px 18px;
  font-size: 14px;
  background-color: #f8f6f4;
  border: none;
}
.hors-form-1 .form-field input:focus,
.hors-form-1 .form-field textarea:focus {
  border-color: rgba(0, 0, 0, 0.4);
  outline: none;
}
.hors-form-1 .form-button button {
  background-color: rgb(82, 149, 45);
  border: 0;
  color: #ffffff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
  height: 46px;
  min-width: 170px;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.hors-form-1 .form-button button:hover {
  background-color: #c5b582;
}

.hors-gallery-2 {
  position: relative;
}
.hors-gallery-2 .sub-title p {
  color: #000;
  font-weight: bold;
  margin-bottom: 12px;
}
.hors-gallery-2 .hors-gallery-content {
  position: relative;
}
.hors-gallery-2 .hors-gallery-content::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(88, 145, 48, 0.5490196078);
  opacity: 0;
  transition: 0.3s;
}
.hors-gallery-2 .hors-gallery-content i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0;
  transition: 0.3s;
  font-size: 22px;
}
.hors-gallery-2 .hors-gallery-content:hover::before {
  opacity: 1;
}
.hors-gallery-2 .hors-gallery-content:hover i {
  opacity: 1;
}

.home-gallery-3 .hors-gallery-content {
  position: relative;
}
.home-gallery-3 .hors-gallery-content::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5803921569);
  opacity: 0;
  transition: 0.3s;
}
.home-gallery-3 .hors-gallery-content i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0;
  transition: 0.3s;
  font-size: 20px;
}
.home-gallery-3 .hors-gallery-content:hover::before {
  opacity: 1;
}
.home-gallery-3 .hors-gallery-content:hover i {
  opacity: 1;
}

.hors-newsletter-2 {
  padding-bottom: 110px;
}
.hors-newsletter-2 .form-control {
  border: none !important;
  border-bottom: 1px solid #000000 !important;
  border-radius: 0;
  padding: 0 0 20px 0;
}
.hors-newsletter-2 label {
  display: inline-block;
  padding: 20px 0 0 0;
  font-size: 25px;
  font-weight: 100;
}
@media (max-width: 767px) {
  .hors-newsletter-2 label {
    font-size: 20px;
  }
}
.hors-newsletter-2 label a {
  text-decoration: underline;
  color: #000000;
}
.hors-newsletter-2 .form-check {
  padding-left: 0;
}
.hors-newsletter-2 button {
  background-color: green;
  border: none;
  padding: 10px 36px;
  color: #ffffff;
  transition: 0.3s;
}
.hors-newsletter-2 button:hover {
  background-color: #c5b582;
}
.hors-newsletter-2 .news-letter-button {
  margin-top: 20px;
}

.hors-footer-area-2 {
  position: relative;
  padding: 80px 0 0 0;
}
.hors-footer-area-2 .footer-bg-2 {
  position: relative;
}
.hors-footer-area-2 .footer-bg-2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 50%;
}
.hors-footer-area-2 .footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 0px 80px 0px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.hors-footer-area-2 .footer-top .footer-list {
  display: flex;
}
.hors-footer-area-2 .footer-top .footer-list li {
  font-weight: bold;
  margin-right: 30px;
  line-height: 38px;
  color: #ffffff;
}
.hors-footer-area-2 .footer-top .footer-list li:hover {
  color: rgb(242, 156, 65);
}
.hors-footer-area-2 .footer-top .footer-list li:last-child {
  margin-right: 0;
}
.hors-footer-area-2 .footer-about-us h5 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 40px;
}
.hors-footer-area-2 .details p {
  color: #ffffff;
  max-width: 340px;
  margin-bottom: 35px;
}
.hors-footer-area-2 .details strong {
  color: #c5b582;
  font-size: 18px;
  line-height: 26px;
}
.hors-footer-area-2 .social-media-1 {
  display: flex;
}
.hors-footer-area-2 .social-media-1 li {
  margin-right: 15px;
  transition: 0.3s;
}
.hors-footer-area-2 .social-media-1 li:hover a {
  color: rgb(242, 156, 65);
  background-color: rgba(248, 246, 244, 0);
  border: 1px solid rgb(242, 156, 65);
}
.hors-footer-area-2 .social-media-1 a {
  width: 36px;
  height: 36px;
  color: rgb(255, 255, 255);
  background-color: rgb(242, 156, 65);
  border: 1px solid rgb(242, 156, 65);
  display: inline-block;
  text-align: center;
  line-height: 36px;
}
.hors-footer-area-2 .social-media-1 a i {
  font-size: 16px;
}
.hors-footer-area-2 .widget-title {
  margin-bottom: 30px;
  font-size: 24px;
}
.hors-footer-area-2 .widget-courses li {
  margin-bottom: 15px;
}
.hors-footer-area-2 .widget-courses li a {
  color: #ffffff;
  transition: 0.3s;
}
.hors-footer-area-2 .widget-courses li a:hover {
  color: #c5b582;
}
.hors-footer-area-2 .details-contact li {
  margin-bottom: 30px;
  color: #ffffff;
  transition: 0.3s;
}
.hors-footer-area-2 .details-contact li strong {
  color: #c5b582;
}
.hors-footer-area-2 .details-contact li a {
  transition: 0.3s;
}
.hors-footer-area-2 .details-contact li a:hover {
  color: #c5b582;
}
.hors-footer-area-2 .footer-bottom {
  padding: 42px 0;
  margin-top: 50px;
  background-color: rgba(255, 255, 255, 0.1);
}
.hors-footer-area-2 .footer-bottom p {
  color: #ffffff;
}

.hors-gallery-1 {
  position: relative;
}
.hors-gallery-1 .hors-gallery-img {
  position: relative;
}
.hors-gallery-1 .hors-gallery-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: green;
  opacity: 50%;
  display: none;
  transition: 0.3s;
}
.hors-gallery-1 .hors-gallery-img:hover::before {
  display: block;
}
.hors-gallery-1 .hors-gallery-content {
  position: relative;
}
.hors-gallery-1 .hors-gallery-content i {
  position: absolute;
  color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  transition: 0.3s;
}
.hors-gallery-1 .hors-gallery-content:hover i {
  display: block;
}

.header-transparent {
  position: absolute;
  width: 100%;
}
.header-transparent.force-bg-white .navbar-area {
  background-color: #fff !important;
}
.header-transparent .nav-right-part-desktop .header-top-search {
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
}
.header-transparent .navbar-area {
  width: 100%;
  z-index: 99;
  background: transparent;
}
.header-transparent .navbar-area .nav-container .logo a img {
  width: 132px;
}
.header-transparent .navbar-area .nav-container .btn-transparent {
  color: var(--heading-color);
}

.home-3-banner .swiper-pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 83%;
  bottom: auto !important;
  width: auto !important;
}
.home-3-banner .swiper-pagination-clickable .swiper-pagination-bullet {
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 10px !important;
  background-color: #ffffff;
}

.hors-categories-2 {
  padding: 30px 0 80px 0;
}
.hors-categories-2 .hors-categorie-img {
  position: relative;
  transform: 0.3s;
}
.hors-categories-2 .hors-categorie-info {
  position: relative;
  margin-bottom: 30px;
}
.hors-categories-2 .hors-categorie-info::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: 0.3s;
}
.hors-categories-2 .hors-categorie-info:hover::before {
  opacity: 50%;
}
.hors-categories-2 .hors-categorie-info .hors-categorie-desc {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  opacity: 0;
}
.hors-categories-2 .hors-categorie-info .hors-categorie-desc h3 {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: 0.3s;
}
.hors-categories-2 .hors-categorie-info .hors-categorie-desc a {
  display: inline-block;
  border-bottom: 1px solid rgb(242, 156, 65);
  transform: translateY(20px);
  transition: 0.6s;
}
.hors-categories-2 .hors-categorie-info:hover .hors-categorie-desc {
  opacity: 1;
}
.hors-categories-2 .hors-categorie-info:hover .hors-categorie-desc h3, .hors-categories-2 .hors-categorie-info:hover .hors-categorie-desc a {
  transform: translateY(0);
}

.hors-product-1 {
  padding-bottom: 110px;
}
.hors-product-1 .product-item {
  border: 1px solid rgb(220, 220, 220);
  padding: 5px;
  margin-bottom: 1rem;
}
.hors-product-1 .product-item h3 {
  margin: 0;
}
.hors-product-1 .product-img {
  position: relative;
  transition: 0.3s;
  
  overflow: hidden;
}
./* hors-product-1 .product-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  transition: 0.3s;
}
.hors-product-1 .product-img:hover::before {
  opacity: 0%;
} */
.hors-product-1 .product-img .product-badge {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  top: 0;
  padding: 12px 16px;
}
.hors-product-1 .product-img .product-badge.all-bages-available {
  justify-content: space-between;
}
.hors-product-1 .product-img .product-badge span {
  background-color: #000;
  display: inline-flex;
  padding: 0 9px;
  color: #fff;
}
.hors-product-1 .product-img .product-badge span.product-offer {
  background-color: #c5b582;
}
.hors-product-1 .product-img .product-btns li span {
  position: absolute;
  right: 9px;
  min-width: 120px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  margin-right: 50px;
}
.hors-product-1 .product-img .product-btns li span::before {
  position: absolute;
  content: "";
  top: 5px;
  right: -7px;
  width: 0;
  height: 0;
  border-bottom: 7px solid transparent;
  border-top: 7px solid transparent;
  border-left: 7px solid #000000;
}
.hors-product-1 .product-img .product-btns {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-right: 16px;
  padding-bottom: 16px;
  opacity: 0;
  transform: 0.3s;
}
.hors-product-1 .product-img .product-btns a {
  color: #ffffff;
  background-color: #000;
  padding: 8px;
}
.hors-product-1 .product-img:hover .product-btns {
  opacity: 1;
}
.hors-product-1 .product-img:hover .product-btns .product-quick-view {
  transform: translateX(0px);
  transition: 0.5s;
}
.hors-product-1 .product-img:hover .product-btns .product-wishlist {
  transform: translateX(0px);
  transition: 0.8s;
}
.hors-product-1 .product-img .product-wishlist {
  transform: translateX(40px);
}
.hors-product-1 .product-img li > a:hover span {
  opacity: 1;
  visibility: visible;
}
.hors-product-1 .product-img li.product-quick-view {
  margin-bottom: 20px;
  transform: translateX(40px);
}
.hors-product-1 .price-wrap {
  padding-bottom: 35px;
}
.hors-product-1 .price-wrap span {
  color: #000;
}
.hors-product-1 .price-wrap .sale-price {
  text-decoration: line-through;
}
.hors-product-1 .product-add-btn {
  padding-bottom: 14px;
}
.hors-product-1 .product-add-btn a {
  background-color: #000000;
  color: #ffffff;
  transition: 0.3s;
  padding: 13px 37px;
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: inline-block;
}
.hors-product-1 .product-add-btn a:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 300%;
  background: rgba(255, 255, 255, 0.07);
  right: -10px;
  top: -10px;
  transform: rotate(45deg);
  z-index: -1;
}
.hors-product-1 .product-add-btn a:hover {
  background-color: rgb(242, 156, 65);
}
.hors-product-1 .product-title {
  margin-bottom: 55px;
}
.hors-product-1 .product-title h2 {
  margin: 0;
}
.hors-product-1 .product-title span {
  border-bottom: 3px solid rgb(242, 156, 65);
}
.hors-product-1 .product-read-more-btn {
  padding-top: 30px;
}
.hors-product-1 .product-read-more-btn a {
  color: #fff;
  background-color: rgb(242, 156, 65);
  padding: 14px 42px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: inline-block;
}
.hors-product-1 .product-read-more-btn a:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 300%;
  background: rgba(0, 0, 0, 0.07);
  right: -10px;
  top: -10px;
  transform: rotate(45deg);
  z-index: -1;
}
.hors-product-1 .product-read-more-btn a:hover {
  background-color: #52952d;
}

.about-testimonials {
  padding: 110px 0;
}
.about-testimonials .testimonials-rating {
  position: relative;
  padding-bottom: 40px;
}
.about-testimonials .testimonials-rating ul {
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about-testimonials .testimonials-rating ul li {
  color: rgb(242, 156, 65);
  margin-right: 10px;
  font-size: 16px;
}
.about-testimonials .testimonials-desc {
  padding-bottom: 40px;
  max-width: 710px;
  margin: auto;
}
.about-testimonials .testimonials-desc p {
  margin: 0;
}
.about-testimonials .testimonial-author {
  padding-bottom: 22px;
}
.about-testimonials .testimonial-author img {
  max-width: 102px;
  border-radius: 50%;
  border: 1px solid;
  padding: 5px;
}
.about-testimonials .testimonial-author-name h3 {
  margin: 0;
}
.about-testimonials .swiper-button-next:after {
  content: "next";
  color: rgb(242, 156, 65);
}
.about-testimonials .swiper-button-prev:after {
  content: "prev";
  color: rgb(242, 156, 65);
}

.home-3-gallery .hors-gallery-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  opacity: 50%;
  display: none;
  transition: 0.3s;
}

.hors-footer-area-3 {
  background-color: #000;
  text-align: center;
  padding-top: 105px;
}
.hors-footer-area-3 .footer-menu {
  padding-bottom: 40px;
}
.hors-footer-area-3 .footer-menu li {
  display: inline-block;
  margin-right: 25px;
}
.hors-footer-area-3 .footer-menu li a {
  color: #fff;
}
.hors-footer-area-3 .footer-menu li:last-child {
  margin-right: 0;
}
.hors-footer-area-3 .footer-logo {
  padding-bottom: 40px;
}
.hors-footer-area-3 .social-profile {
  padding-bottom: 55px;
}
.hors-footer-area-3 .social-profile li {
  display: inline-block;
  margin-right: 15px;
}
.hors-footer-area-3 .social-profile li a {
  background-color: #c5b582;
  border: 1px solid #c5b582;
  border-radius: 50%;
  color: #fff;
  display: block;
  width: 36px;
  height: 36px;
  line-height: 34px;
  font-size: 16px;
  transition: 0.3s;
}
.hors-footer-area-3 .social-profile li a:hover {
  background: transparent;
  color: #c5b582;
}
.hors-footer-area-3 .social-profile li:last-child {
  margin-right: 0;
}
.hors-footer-area-3 .footer-bottom {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hors-accordion {
  padding: 110px 0;
  background-color: #f8f6f4;
}
.hors-accordion .sub-title {
  color: #000;
  font-weight: bold;
}
.hors-accordion .title {
  padding-top: 10px;
  padding-bottom: 45px;
}
.hors-accordion .accordion-style2 .acdn-item {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 13px 35px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  position: relative;
  transition: 0.3s;
}
.hors-accordion .accordion-style2 .acdn-item.active .acdn-title {
  color: #fff;
  background-color: rgb(82, 149, 45);
}
.hors-accordion .accordion-style2 .acdn-item.active .hors-toggle-icon .icofont-caret-down:before {
  content: "\ea6a";
}
.hors-accordion .accordion-style2 .acdn-title {
  background: rgb(255, 255, 255);
  padding: 11px 25px;
  cursor: pointer;
  position: relative;
  font-size: 18px;
  margin-bottom: 0;
}
.hors-accordion .accordion-style2 .acdn-body {
  background: rgb(255, 255, 255);
  border-top: 1px solid rgba(238, 238, 238, 0.62);
  padding: 20px 30px;
  display: none;
}
.hors-accordion .accordion-style2 .hors-toggle-icon {
  position: absolute;
  right: 20px;
}

.hors-contact-from {
  padding: 110px 0;
  background-color: #f8f6f4;
}
.hors-contact-from .hors-contact-from-title {
  padding-bottom: 55px;
}
.hors-contact-from .form-field {
  margin-bottom: 20px;
}
.hors-contact-from .form-field input {
  width: 100%;
  height: 50px;
  padding: 5px 18px;
  font-size: 14px;
  background-color: #ffffff;
  border: none;
  box-shadow: 0px 13px 35px 0px rgba(0, 0, 0, 0.15);
}
.hors-contact-from .form-field textarea {
  width: 100%;
  padding: 10px 18px;
  font-size: 14px;
  background-color: #ffffff;
  border: none;
  box-shadow: 0px 13px 35px 0px rgba(0, 0, 0, 0.15);
}
.hors-contact-from .form-button button {
  background-color: rgb(82, 149, 45);
  border: 0;
  color: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
  height: 46px;
  min-width: 100%;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  line-height: 20px;
}
.hors-contact-from .form-button button:hover {
  background-color: #c5b582;
}

.hors-product-1 {
  padding: 0 0 110px 0;
}
.hors-product-1 .hors-product-single {
  background-color: #ffffff;
  padding: 15px;
  box-shadow: 0px 13px 35px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}
.hors-product-1 .hors-product-single .hors-product-details {
  padding-top: 25px;
}
.hors-product-1 .hors-product-single .hors-product-details h3 {
  margin: 0;
}
.hors-product-1 .hors-product-single .hors-product-info {
  padding-top: 25px;
}
.hors-product-1 .hors-product-single .hors-product-info-single {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.hors-product-1 .hors-product-single .hors-product-info-single h6 {
  margin: 0;
}
.hors-product-1 .hors-product-single .hors-product-info-single:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hors-form-1 .hors-from-messager {
  position: relative;
  z-index: 1;
}
.hors-form-1 .hors-from-messager .hors-from-bg {
  position: absolute;
  top: 30%;
  z-index: -1;
  max-width: 450px;
}

.hors-single-product {
  padding: 110px 0 20px;
}
.hors-single-product .product-slider-wrapper {
  display: flex;
}
.hors-single-product .product-slider-preview li {
  position: relative;
}
.hors-single-product .product-slider-preview li a {
  position: absolute;
  top: 30px;
  right: 5%;
  display: block;
  width: 40px;
  height: 40px;
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(18px);
}
.hors-single-product .product-slider-preview li:hover a {
  opacity: 1;
  transform: translateX(0);
}
.hors-single-product ul.slider-thumb.slick-initialized.slick-slider.slick-vertical {
  max-width: 150px;
}
.hors-single-product .slider-thumb .slick-slide {
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
}
.hors-single-product .slider-thumb .slick-slide::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.hors-single-product .slider-thumb .slick-current::after {
  content: none;
}
.hors-single-product .mfp-image-holder .mfp-close {
  top: -30px;
  right: -10px;
}
.hors-single-product .slider-thumb .slick-slide {
  margin-right: 10px;
}
.hors-single-product .slick-track {
  margin-left: 0;
}
.hors-single-product .gallery-title {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 18px;
  color: #000000;
}
.hors-single-product .gallery-title a {
  background-color: rgb(255, 255, 255);
  padding: 10px 12px 10px 12px;
  border-radius: 50%;
}
.swiper-slide-active .hors-single-product .gallery-title {
  animation: slide-in 0.3s ease-in both;
}
.hors-single-product .gallery-thumbs {
  order: -1;
  width: 120px;
  height: 390px;
  margin: 0 auto;
  padding-left: 0px;
}
.hors-single-product .gallery-thumbs .swiper-slide img {
  transition: 0.3s;
  cursor: pointer;
}
.hors-single-product .gallery-thumbs .swiper-slide-active {
  opacity: 0.9;
}
.hors-single-product .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
@keyframes slide-in {
  from {
    opacity: 0;
    right: -50%;
  }
}
.hors-single-product .hors-single-product-cart .single-product-rating {
  display: flex;
  padding-top: 22px;
}
.hors-single-product .hors-single-product-cart .single-product-rating li {
  color: #c5b582;
  padding-right: 10px;
}
.hors-single-product .hors-single-product-cart .single-product-rating span {
  color: #000;
}
.hors-single-product .hors-single-product-cart .hors-single-product-price {
  color: #52952d;
  padding: 30px 0;
}
.hors-single-product .hors-single-product-cart p {
  padding: 0;
}
.hors-single-product .hors-single-product-cart .hors-single-product-add {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}
.hors-single-product .hors-single-product-cart .hors-single-product-add ul {
  display: flex;
}
.hors-single-product .hors-single-product-cart .hors-single-product-add ul li {
  border: 1px solid rgb(220, 220, 220);
  width: 40px;
  background-color: #f8f6f4;
  line-height: 50px;
  color: #000;
  height: 52px;
  text-align: center;
}
.hors-single-product .hors-single-product-cart .hors-single-product-add ul .background-none {
  background-color: #ffffff;
  width: 45px;
  height: 52px;
  border: 1px solid rgb(220, 220, 220);
  line-height: 50px;
  color: #000000;
}
.hors-single-product .hors-single-product-cart .hors-single-product-add .add-cart-btn {
  background-color: #000;
  color: #ffffff;
  width: 162px;
  height: 52px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
}
.hors-single-product .hors-single-product-cart .hors-single-product-add .wish-list-btn {
  width: 191px;
  height: 52px;
  color: #000;
  border: 1px solid #000;
  text-align: center;
  line-height: 50px;
}
.hors-single-product .hors-single-product-social {
  display: flex;
  justify-content: space-between;
}
.hors-single-product .hors-single-product-social .facebook i {
  font-size: 16px;
  color: #1877f2;
}
.hors-single-product .hors-single-product-social .twitter i {
  font-size: 16px;
  color: #1877f2;
}
.hors-single-product .hors-single-product-social .pinterest i {
  font-size: 16px;
  color: #e60023;
}
.hors-single-product .hors-single-product-social .linkedin i {
  font-size: 16px;
  color: #0077b5;
}
.hors-single-product .hors-single-product-social span {
  padding-left: 10px;
  color: #000;
}

.hors-single-product-review {
  padding-bottom: 110px;
}
.hors-single-product-review label.form-check-label {
  font-size: 24px;
}
.hors-single-product-review .nav-tabs {
  border-bottom: none;
  float: right;
}
.hors-single-product-review .nav-tabs .nav-link.active {
  color: #52952d;
  background-color: #fff;
  border-color: #fff;
  position: relative;
}
.hors-single-product-review .nav-tabs .nav-link:focus, .hors-single-product-review .nav-tabs .nav-link:hover {
  border-color: #fff #fff #fff;
  isolation: isolate;
  position: relative;
}
.hors-single-product-review .nav-tabs .nav-link:focus::after, .hors-single-product-review .nav-tabs .nav-link:hover::after {
  position: absolute;
  content: "";
  top: 22px;
  left: -35px;
  width: 40px;
  height: 2px;
  background-color: #52952d;
}
.hors-single-product-review .nav-link:focus {
  color: #52952d;
}
.hors-single-product-review .nav-link:focus.nav-link::after {
  background-color: #52952d;
}
.hors-single-product-review .nav-link:hover {
  color: #52952d;
}
.hors-single-product-review .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #000000;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  position: relative;
}
.hors-single-product-review .nav-link::after {
  position: absolute;
  content: "";
  top: 22px;
  left: -35px;
  width: 40px;
  height: 2px;
  background-color: #000000;
}
.hors-single-product-review .tab-pane {
  padding-left: 30px;
  border-left: 1px solid rgb(220, 220, 220);
}
.hors-single-product-review .tab-pane strong {
  color: #000;
}
.hors-single-product-review .tab-author {
  display: flex;
  align-items: center;
}
.hors-single-product-review .tab-author strong {
  color: #000;
}
.hors-single-product-review .tab-author .tab-author-img > img {
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  max-width: 70px;
  margin-right: 20px;
}
.hors-single-product-review .tab-author .single-product-rating {
  display: flex;
  padding-top: 22px;
  padding-bottom: 20px;
}
.hors-single-product-review .tab-author .single-product-rating li {
  color: #c5b582;
  padding-right: 10px;
}
.hors-single-product-review .tab-author-reviews {
  padding-top: 35px;
}
.hors-single-product-review .tab-author-reviews p {
  padding-top: 40px;
}
.hors-single-product-review .tab-author-rating .single-product-rating {
  display: flex;
  padding-bottom: 50px;
  padding-top: 10px;
}
.hors-single-product-review .tab-author-rating .single-product-rating li {
  padding-right: 10px;
}
.hors-single-product-review .hors-from-messager .form-field {
  margin-bottom: 20px;
}
.hors-single-product-review .hors-from-messager .form-field textarea {
  width: 100%;
  padding: 10px 18px;
  font-size: 14px;
  background-color: #f8f6f4;
  border: none;
}
.hors-single-product-review .hors-from-messager .form-field input {
  width: 100%;
  height: 50px;
  padding: 5px 18px;
  font-size: 14px;
  background-color: #f8f6f4;
  border: none;
}
.hors-single-product-review .hors-from-messager .form-button button {
  background-color: rgb(82, 149, 45);
  border: 0;
  color: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
  min-width: 156px;
  padding: 14px 32px;
  font-size: 14px;
  cursor: pointer;
}
.hors-single-product-review .hors-from-messager .form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 0;
  margin-bottom: 20px;
}
.hors-single-product-review .hors-from-messager .form-check input#save_info {
  margin-right: 10px;
}

.hors-single-product-item {
  padding-top: 0;
  background-color: #ffffff;
}

.hors-check-out {
  padding: 110px 0;
  background-color: #ffffff;
}
.hors-check-out h6 {
  font-size: 24px;
}
.hors-check-out h3 {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}
.hors-check-out .hors-checkout-inner {
  background-color: #ffffff;
  padding: 54px 0;
}
.hors-check-out .hors-checkout-inner label {
  color: #000;
  font-size: 16px;
  font-weight: bold;
}
.hors-check-out .hors-checkout-inner h3 {
  margin-bottom: 20px;
}
.hors-check-out .form-field {
  margin-bottom: 20px;
}

.hors-check-order-wrapper {
  background-color: #f8f6f4;
  padding: 50px 30px;
  margin: 40px 0;
}
.hors-check-order-wrapper .hors-check-info li {
  display: flex;
  justify-content: space-between;
  color: #000;
  border-bottom: 1px solid rgb(220, 220, 220);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.hors-check-order-wrapper .hors-check-info li:hover {
  color: #52952d;
}
.hors-check-order-wrapper .hors-check-info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.hors-check-payment-wrapper {
  background-color: #f8f6f4;
  padding: 50px 30px;
  margin-top: 40px;
}
.hors-check-payment-wrapper label {
  display: block;
  margin-bottom: 30px;
}
.hors-check-payment-wrapper label:last-child {
  margin-bottom: 0;
}
.hors-check-payment-wrapper label > input {
  display: none;
}
.hors-check-payment-wrapper label > i {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
  border: 2px solid #52952d;
  transition: 0.25s;
}
.hors-check-payment-wrapper label > input:checked + i {
  box-shadow: inset 0 0 0px #ffffff;
  background-color: #52952d;
}
.hors-check-payment-wrapper label:hover {
  cursor: pointer;
}
.hors-check-payment-wrapper .cash-on {
  position: relative;
  padding-bottom: 5px;
}
.hors-check-payment-wrapper .cash-on p {
  position: relative;
  margin-top: 25px;
  background-color: #ffffff;
  padding: 20px 15px;
  display: none;
  transition: 0.3s;
}
.hors-check-payment-wrapper .cash-on p::after {
  position: absolute;
  content: "";
  top: -30px;
  left: 30px;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-bottom-color: #ffffff;
  transition: 0.3s;
}
.hors-check-payment-wrapper .cash-on:hover p {
  display: block;
}
.hors-check-payment-wrapper .payment-footer {
  display: flex;
  align-items: center;
}
.hors-check-payment-wrapper .payment-footer img {
  width: 150px;
  margin: 0 18px 0 20px;
}
.hors-check-payment-wrapper .payment-footer a {
  color: #000;
}
.hors-check-payment-wrapper .form-button button {
  margin-top: 20px;
  background-color: rgb(82, 149, 45);
  border: 0;
  color: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
  width: 100%;
  padding: 14px 0;
  font-size: 14px;
  cursor: pointer;
}

.hors-contact-us .hors-contact-info {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.08);
  padding: 20px;
  height: 90%;
  text-align: center;
}
.hors-contact-us .hors-contact-info .hors-contact-icon {
  font-size: 30px;
  color: #fff;
  background-color: #c5b582;
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 4px;
  transition: 0.3s;
  text-align: center;
  line-height: 45px;
}
.hors-contact-us .hors-contact-info h4 {
  font-size: 30px;
  margin-top: 5px;
  line-height: 58px;
  margin-bottom: 0px;
}
.hors-contact-us .hors-contact-info p {
  padding-bottom: 28px;
  /*max-width: 260px;*/
  font-size: 18px;
  margin: auto 0;
  line-height: 28px;
}
.hors-contact-us .hors-contact-info a {
  color: #52952d;
  transition: 0.3s;
  font-size: 18px;
  font-weight: bold;
}
.hors-contact-us .hors-contact-info:hover .hors-contact-icon {
  background-color: #c5b582;
}

@media (max-width: 767px) {
  .footer-space {
    margin-bottom: 80px;
  }
}

/* 16. Cart */
.cart-area {
  padding-top: 130px;
  padding-bottom: 130px;
}

.table-content .table > :not(:first-child) {
  border-top: 0;
}
.table-content table {
  background: #ffffff;
  border-color: #52952d;
  border-radius: 0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}

.table-content .table > :not(:last-child) > :last-child > * {
  border-bottom-color: #52952d;
}

.table-content .product-quantity {
  float: none;
}

.table-content table td.product-name {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.table-content table td.product-name a:hover {
  color: #c5b582;
}

.table-content table td {
  border-top: medium none;
  padding: 20px 10px;
  vertical-align: middle;
  font-size: 16px;
}

.table-content table th, .table-content table td {
  border-bottom: 1px solid #52952d;
  border-right: 1px solid #52952d;
}

.product-quantity input {
  color: #000;
  font-size: 14px;
  font-weight: normal;
}

.table td, .table th {
  border-top: 1px solid #52952d;
}

.product-quantity > input {
  width: 80px;
  text-align: center;
}

.table-content table td.product-subtotal {
  font-size: 16px;
}

.table-content table td .cart-plus-minus {
  float: none;
  margin: 0 auto;
}

.coupon-all {
  margin-top: 50px;
}

.coupon {
  float: left;
}

@media (max-width: 767px) {
  .coupon {
    float: none;
  }
}
#coupon_code {
  height: 70px;
  border: 2px solid #eaedff;
  padding: 0 15px;
  margin-right: 10px;
}

@media (max-width: 767px) {
  #coupon_code {
    margin-bottom: 15px;
  }
}
.coupon2 {
  float: right;
}

.checkout-link .tp-btn:hover {
  background-color: #c5b582;
}
.checkout-link .tp-btn-dark-lg:hover {
  background-color: #c5b582;
}

@media (max-width: 767px) {
  .coupon2 {
    float: none;
    margin-top: 15px;
  }
}
.cart-page-total {
  padding-top: 50px;
}

.cart-page-total > h2 {
  font-size: 25px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.cart-page-total > ul {
  border: 1px solid #eaedff;
  margin-bottom: 20px;
}

.cart-page-total > ul > li {
  list-style: none;
  font-size: 15px;
  color: #6f7172;
  padding: 20px 30px;
  border-bottom: 1px solid #eaedff;
  font-weight: 400;
}

.cart-page-total ul > li > span {
  float: right;
}

.cart-page-total li:last-child {
  border-bottom: 0;
}

td.product-thumbnail img {
  width: 125px;
}

/* 17. Checkout */
.coupon-accordion h3 {
  background-color: #f7f7f7;
  border-top: 3px solid #c5b582;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 25px;
  padding: 1em 2em 1em 3.5em;
  position: relative;
  width: auto;
}

.coupon-accordion h3::before {
  content: "\f07b";
  left: 15px;
  top: 13px;
  position: absolute;
  color: #c5b582;
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
}

.coupon-accordion span {
  color: #6f7172;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.coupon-accordion span:hover, p.lost-password a:hover {
  color: #222;
}

.coupon-content {
  border: 1px solid #eaedff;
  display: none;
  margin-bottom: 20px;
  padding: 30px;
}

.coupon-info p.coupon-text {
  margin-bottom: 15px;
}

.coupon-info p {
  margin-bottom: 0;
}

.coupon-info p.form-row-first label, .coupon-info p.form-row-last label {
  display: block;
  color: #6f7172;
}

.coupon-info p.form-row-first label span.required, .coupon-info p.form-row-last label span.required {
  color: #c5b582;
  font-weight: 700;
}

.coupon-info p.form-row-first input, .coupon-info p.form-row-last input {
  border: 1px solid #eaedff;
  height: 45px;
  margin: 0 0 14px;
  max-width: 100%;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
  font-size: 14px;
}
.coupon-info p.form-row-first input:focus, .coupon-info p.form-row-last input:focus {
  border-color: #52952d;
}

.coupon-info p.form-row input[type=submit]:hover, p.checkout-coupon input[type=submit]:hover {
  background: #3e976c none repeat scroll 0 0;
}

.coupon-info p.form-row input[type=checkbox] {
  position: relative;
  top: -1px;
}

.form-row > label {
  margin-top: 15px;
  margin-left: 15px;
  color: #6f7172;
}

.buttons-cart input, .coupon input[type=submit], .buttons-cart a, .coupon-info p.form-row input[type=submit] {
  background: #252525 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  display: inline-block;
  float: left;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  padding: 0 15px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

p.lost-password {
  margin-top: 15px;
}

p.lost-password a {
  color: #6f6f6f;
}

p.checkout-coupon input[type=text] {
  height: 50px;
  padding: 0 15px;
  width: 100%;
  border: 1px solid #eaedff;
  margin-bottom: 15px;
  font-size: 14px;
  outline: none;
}
p.checkout-coupon input[type=text]:focus {
  border-color: #52952d;
}

.coupon-checkout-content {
  display: none;
}

.checkbox-form h3 {
  border-bottom: 1px solid #eaedff;
  font-size: 26px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.country-select {
  margin-bottom: 30px;
  position: relative;
}

.country-select select {
  width: 100%;
  background-color: transparent;
  border: 1px solid #eaedff;
  padding: 0 10px;
  height: 50px;
}

.country-select label, .checkout-form-list label {
  color: #6f7172;
  display: block;
  margin: 0 0 5px;
}

.country-select label span.required, .checkout-form-list label span.required {
  color: #c5b582;
}

.country-select .nice-select {
  border: 1px solid #eaedff;
  height: 45px;
  padding-left: 10px;
  width: 100%;
  color: #6f7172;
  margin-bottom: 20px;
}

.nice-select.open {
  border-color: #52952d;
}

.country-select .nice-select .list {
  width: 100%;
}

.checkout-form-list {
  margin-bottom: 30px;
}

.checkout-form-list label {
  color: #6f7172;
}

.checkout-form-list input[type=text], .checkout-form-list input[type=password], .checkout-form-list input[type=email] {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 0;
  height: 45px;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
}
.checkout-form-list input[type=text]:focus, .checkout-form-list input[type=password]:focus, .checkout-form-list input[type=email]:focus {
  border-color: #52952d;
}

.checkout-form-list input[type=text]::-moz-placeholder,
.checkout-form-list input[type=password]::-moz-placeholder,
.checkout-form-list input[type=email]::-moz-placeholder {
  color: #6f7172;
  opacity: 1;
}

.checkout-form-list input[type=text]::placeholder,
.checkout-form-list input[type=password]::placeholder,
.checkout-form-list input[type=email]::placeholder {
  color: #6f7172;
  opacity: 1;
}

.checkout-form-list input[type=checkbox] {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -1px;
}

.create-acc label {
  color: #6f7172;
  display: inline-block;
}

.create-account {
  display: none;
}

.ship-different-title h3 label {
  display: inline-block;
  margin-right: 20px;
  color: #222;
}

.order-notes textarea {
  border: 1px solid #eaedff;
  height: 120px;
  padding: 15px;
  width: 100%;
  outline: 0;
  resize: none;
}

.order-notes textarea:focus {
  border-color: #52952d;
}

.order-notes textarea::-moz-placeholder {
  color: #6f7172;
  opacity: 1;
}

.order-notes textarea::placeholder {
  color: #6f7172;
  opacity: 1;
}

#ship-box-info {
  display: none;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-default > .panel-heading {
  border-radius: 0;
}

.your-order {
  padding: 30px 40px 45px;
  border: 3px solid #f7f7f7;
}

@media (max-width: 767px) {
  .your-order {
    padding: 15px;
  }
}
.your-order h3 {
  border-bottom: 1px solid #eaedff;
  font-size: 30px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.your-order-table table {
  background: none;
  border: 0;
  width: 100%;
}

.your-order-table table th, .your-order-table table td {
  border-bottom: 1px solid #eaedff;
  border-right: medium none;
  color: #6f7172;
  font-size: 14px;
  padding: 15px 0;
  text-align: left;
}

@media (max-width: 767px) {
  .your-order-table table th, .your-order-table table td {
    padding-right: 10px;
  }
}
.your-order-table table th {
  border-top: medium none;
  color: #6f7172;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  width: 250px;
}

.panel-body > p {
  color: #222;
}

.your-order-table table .shipping ul li {
  list-style: none;
}

.your-order-table table .shipping ul li input {
  position: relative;
  top: -1px;
}

.your-order-table table .shipping ul li label {
  color: #6f7172;
}

.your-order-table table .shipping th {
  vertical-align: top;
}

.your-order-table table .order-total th {
  border-bottom: 0;
  font-size: 14px;
}

.your-order-table table .order-total td {
  border-bottom: medium none;
}

.your-order-table table tr.cart_item:hover {
  background: #F9F9F9;
}

.your-order-table table tr.order-total td span {
  color: #222;
  font-size: 18px;
  font-weight: 500;
}

.payment-method {
  margin-top: 40px;
}
.payment-method .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.payment-method .accordion-item {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #e7e7e7;
}
.payment-method .accordion-button {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  padding: 23px 0;
  border: none;
}
.payment-method .accordion-button::after {
  position: absolute;
  content: "\f067";
  right: 0;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  font-weight: 400;
  margin-left: 0;
  background-image: none;
  color: #c5b582;
}
.payment-method .accordion-button:not(.collapsed) {
  color: #222;
  background-color: #fff;
  box-shadow: none;
}
.payment-method .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.payment-method .accordion-body {
  padding: 8px 0;
  padding-bottom: 40px;
}
.payment-method .accordion-collapse {
  border: none;
}

.panel-title > a {
  display: block;
}

.order-button-payment input {
  background: #232323 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  height: 40px;
  margin: 0px 0 0;
  padding: 0;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.order-button-payment input:hover {
  background: #3e976c none repeat scroll 0 0;
}

.payment-method .btn-link {
  -moz-user-select: none;
  background: no-repeat;
  border: medium none;
  border-radius: 0;
  color: #444;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0;
  padding: 3px 10px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}

.payment-method .card {
  background-color: #ffffff;
  border: 1px solid #eaedff;
  border-radius: 0;
  margin-bottom: 10px;
}

.payment-method .accordion .card:first-of-type {
  border: 1px solid #eaedff;
}

.card-header:first-child {
  border-radius: 0;
}

.payment-method .card-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eaedff;
}

.order-button-payment button {
  width: 100%;
}

.tp-shop-quantity {
  display: flex;
  display: inline-block;
}
.tp-shop-quantity .cart-minus {
  height: 38px;
  width: 38px;
  background-color: #fff;
  text-align: center;
  line-height: 38px;
  cursor: pointer;
}
.tp-shop-quantity input {
  border: 0;
  background-color: transparent;
  height: 38px;
  width: 38px;
  text-align: center;
  line-height: 38px;
}
.tp-shop-quantity .cart-plus {
  height: 38px;
  width: 38px;
  background-color: #fff;
  text-align: center;
  line-height: 38px;
  cursor: pointer;
}

.tp-quantity {
  display: flex;
  background-color: #ddd;
  padding: 3px;
}

.tp-shop-cart a {
  font-size: 16px;
  color: #fff;
  height: 42px;
  width: 42px;
  background-color: #c5b582;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  line-height: 40px;
  transition: 0.3s;
}
.tp-shop-cart:hover a {
  background-color: #c5b582;
}

.tp-shop-button {
  line-height: 1;
}

.productdetails {
  padding-left: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .productdetails {
    padding-left: 0;
  }
}
.productdetails__content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tp-theme-3);
  line-height: 26px;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .productdetails__content p br {
    display: none;
  }
}
.productdetails__ratting i {
  color: #FFDC60;
  font-size: 14px;
}
.productdetails__ratting span {
  font-size: 14px;
  color: var(--tp-theme-1);
  font-weight: 500;
  padding-bottom: 30px;
  display: inline-block;
}
.productdetails__ratting h4 {
  font-weight: 700;
  font-size: 30px;
  color: var(--tp-theme-1);
  padding-bottom: 25px;
  font-family: "DM Sans";
}
.productdetails__ratting h4 del {
  font-size: 20px;
  font-weight: 500;
  color: #B9B9B9;
}
.productdetails__model {
  padding-bottom: 45px;
}
.productdetails__model h5 {
  font-size: 16px;
  color: var(--tp-common-black);
  font-weight: 500;
  padding-bottom: 10px;
}
.productdetails__model a {
  font-size: 12px;
  color: #777B83;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #F7F8FD;
  height: 25px;
  display: inline-block;
  padding: 0px 20px;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.productdetails__model a:hover {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-black);
}

.pd-title {
  font-size: 30px;
  font-weight: 500;
  color: var(--tp-theme-1);
  padding-bottom: 10px;
  text-transform: capitalize;
  margin-bottom: 10px 
}

.tp-shop-quantity span {
  font-size: 20px;
  font-weight: 700;
  margin-right: 10px;
}

.tp-product-details-area {
  padding: 60px 0;
}

.tp-product-img{border: 1px solid rgb(220, 220, 220); padding: 5px;}

.tp-shop-quantity {
  margin-bottom: 30px;
}

/*----------------------------------------*/
/*  19. SHOP CSS START
/*----------------------------------------*/
.productdetails-tabs {
  padding-top: 90px;
  padding-bottom: 90px;
}

.tpshopitem:hover .tpshopitem__thumb img {
  transform: scale(1.2);
}
.tpshopitem:hover .tpshopitem__thumb-icon {
  bottom: 14px;
  opacity: 1;
  visibility: visible;
}
.tpshopitem__thumb {
  border: 1px solid #ECEFF4;
  border-radius: 5px;
}
.tpshopitem__thumb img {
  width: 100%;
}
.tpshopitem__thumb-icon {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
.tpshopitem__thumb-icon a {
  margin: 0 5px;
  height: 45px;
  width: 45px;
  line-height: 45px;
  border: 1px solid var(--tp-theme-blue);
  border-radius: 50%;
  display: inline-block;
  background-color: #0E63FF;
  color: var(--tp-common-white);
}
.tpshopitem__thumb-icon a:hover {
  background-color: var(--tp-theme-pink);
  border: 1px solid var(--tp-theme-pink);
}
.tpshopitem__content p {
  font-size: 18px;
  font-weight: 500;
  color: #777B83;
  margin-bottom: 6px;
}
.tpshopitem__title {
  font-size: 18px;
  font-weight: 500;
  display: block;
}
.tpshopitem__title a {
  background-image: linear-gradient(#0E63FF, #0E63FF), linear-gradient(#0E63FF, #0E63FF);
  background-repeat: no-repeat;
  background-position: 100% 100%, 0% 100%;
  background-size: 0% 1px, 0 1px;
  display: inline;
}
.tpshopitem__title a:hover {
  background-size: 0% 1px, 100% 1px;
  color: var(--tp-theme-blue);
}
.tpshopitem__review i {
  color: #F7931E;
}
.tpshopitem__product-base {
  position: absolute;
  top: 20px;
  left: 30px;
  font-weight: 700;
  font-size: 12px;
  color: var(--tp-common-white);
  padding: 6px 13px;
  background: #FD4766;
  border-radius: 5px;
  line-height: 1;
}

.tpproduct span {
  font-weight: 500;
  font-size: 15px;
}

.tpfilter {
  justify-content: end;
}
@media (max-width: 767px) {
  .tpfilter {
    justify-content: start;
  }
}
.tpfilter span {
  font-weight: 500;
  font-size: 15px;
}
.tpfilter .nice-select {
  padding-left: 5px;
  border: none;
  color: var(--tp-theme-primary);
}

.productthumb img {
  border-radius: 25px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .productthumb img {
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .product {
    margin-left: 0;
  }
}
.product__details-content p {
  font-weight: 400;
  font-size: 16px;
  color: #777B83;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .product__details-content p br {
    display: none;
  }
}
.product-dtitle {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .product-dtitle {
    font-size: 24px;
  }
}
.product-dinfo span {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #141515;
}
.product-rating a {
  color: #FFDC60;
}
.product-dprice {
  font-weight: 400;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.02em;
}
.product-model-title {
  font-family: "Archivo";
  font-weight: 600;
  font-size: 14px;
  line-height: 15px;
  color: #0B0B0B;
}
.product-quantity-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.02em;
  color: #0B0B0B;
}
.product-quantity input {
  color: var(--tp-theme-primary);
  border: none;
  width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}
.product-model-list a {
  font-size: 12px;
  font-weight: 600;
  color: #777B83;
  background: #F7F8FD;
  display: inline-block;
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 15px;
  border-radius: 2px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-model-list a {
    margin-right: 8px;
  }
}
@media (max-width: 767px) {
  .product-model-list a {
    margin-right: 5px;
    padding: 0 6px;
  }
}
.product-model-list a:last-child {
  margin-right: 0;
}
.product-model-list a:hover {
  background: var(--tp-theme-blue);
  color: var(--tp-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-product-img {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .tp-product-img img {
    max-width: 100%;
  }
}

.tp-product-quantity .cart-minus, .tp-product-quantity .cart-plus {
  cursor: pointer;
  color: #8D8884;
}
.tp-product-quantity .cart-minus:hover, .tp-product-quantity .cart-plus:hover {
  color: var(--tp-theme-primary);
}
.tp-product-quantity input {
  height: 30px;
  width: 32px;
  font-size: 14px;
  border: none;
  font-weight: 700;
  text-align: center;
}

.product-rating {
  margin-right: 20px;
}
.product-rating a {
  font-size: 16px;
  color: #FFDC60;
}

.product-dinfo {
  display: flex;
}

.product-dprice del {
  font-size: 20px;
  color: #B9B9B9;
}

.pro-details-nav {
  background: #F9FAFB;
  display: inline-block;
  padding: 7px 7px;
  margin-bottom: 30px;
}

.pro-details-nav-btn {
  border: none;
}
.pro-details-nav-btn li {
  font-weight: 500;
  font-size: 18px;
  color: var(--tp-text-body);
  position: relative;
}
.pro-details-nav-btn li button span {
  position: relative;
  z-index: 9;
}
.pro-details-nav-btn li button::before {
  content: "";
  height: 100%;
  width: 102%;
  top: 0;
  left: -1px;
  background: var(--tp-theme-2);
  border-radius: 10px;
  position: absolute;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
}
.pro-details-nav-btn li button.active::before {
  opacity: 1;
  visibility: visible;
}
.pro-details-nav-btn li::after {
  position: absolute;
  content: "";
  height: 40px;
  width: 1px;
  background: #DFE3E9;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .pro-details-nav-btn li::after {
    display: none;
  }
}
.pro-details-nav-btn li:last-child::after {
  display: none;
}
@media (max-width: 767px) {
  .pro-details-nav-btn li {
    font-size: 16px;
  }
}
.pro-details-nav-btn li .nav-links {
  padding: 20px 45px;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pro-details-nav-btn li .nav-links {
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .pro-details-nav-btn li .nav-links {
    padding: 5px 15px;
  }
}
.pro-details-nav-btn li .nav-links.active {
  background: green;
  color: #fff;
}

.tab-para p {
  font-size: 16px;
  line-height: 30px;
}

.comments-box {
  margin-bottom: 50px;
}

.user-rating ul li {
  display: inline-block;
  color: #FFDC60;
}

.comments-text span,
.comments-text p {
  font-size: 14px;
  color: #777777;
  line-height: 26px;
}

.comment-title p {
  color: #777777;
  font-size: 16px;
}

.comment-rating span {
  font-weight: 500;
  margin-right: 5px;
}
.comment-rating ul li {
  display: inline-block;
  color: #FFDC60;
}

.wishlist-area {
  padding-top: 120px;
  padding-bottom: 120px;
}

.accordion-buttons {
  font-size: 16px;
  width: 100%;
  text-align: left;
  padding: 10px 40px;
  background-color: #fff;
}

.accordion-items {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  background-color: #fff;
}

.comment-input textarea {
  width: 100%;
  height: 120px;
  margin-bottom: 20px;
  border: 1px solid #e7e7e7;
  padding: 20px;
}
.comment-input textarea:focus {
  outline: 0;
  border: 1px solid var(--tp-border-1);
}
.comment-input input {
  width: 100%;
  height: 50px;
  resize: none;
  outline: 0;
  border: 1px solid #e7e7e7;
  padding: 8px 20px;
  margin-bottom: 30px;
}
.comment-input input:focus {
  border: 1px solid var(--tp-border-1);
}

.comments-avatar {
  flex: 0 0 auto;
}

.table .add-info {
  font-size: 18px;
  font-weight: 500;
}

.table td {
  padding: 18px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .shop-left-right {
    margin-left: 0;
    margin-right: 0;
  }
}

.tp-comments-title {
  font-size: 24px;
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .tp-comments-title {
    font-size: 18px;
  }
}

.avatar-name b {
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: uppercase;
}

.shop-faq .accordion-header button {
  font-size: 18px;
  padding: 20px 55px 20px 30px;
}
@media (max-width: 767px) {
  .shop-faq .accordion-header button {
    font-size: 14px;
  }
}
.shop-faq .accordion-content p br {
  display: none;
}
.shop-faq .accordion-content p {
  padding: 0 75px 20px 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-button a {
    margin-bottom: 10px;
  }
}

.comment-title {
  font-size: 24px;
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: capitalize;
}

.tp-product-slider-title {
  color: var(--tp-theme-1);
  font-size: 30px;
  font-weight: 500;
}

.hors-titlebar {
  padding: 130px 0;
}
.hors-titlebar .hors-titlebar-info h1 {
  color: #ffffff;
  z-index: 999;
  margin-bottom: 10px;
}
.hors-titlebar .hors-titlebar-title {
  max-width: 830px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.about-4-intro {
  background-color: #ffffff;
}

.about-area-4 {
  padding: 110px 0 150px 0;
  overflow: hidden;
  background-color: #f8f6f4;
}
.about-area-4 .about-thumb-shape .shape-2 {
  position: absolute;
  top: -60px;
  right: 22px;
  z-index: 1;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
}
.about-area-4 .about-thumb-shape .shape {
  position: absolute;
  right: -25px;
  bottom: -100px;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
  z-index: 1;
}

.hors-services-1 .read-more {
  color: #ffffff;
  text-decoration: underline;
}

.hors-services-details-1 {
  position: relative;
  padding: 110px 0;
  background-color: #f8f6f4;
}
.hors-services-details-1 .hors-sidebar-widget {
  margin-bottom: 40px;
}
.hors-services-details-1 .form-control {
  padding: 20px 70px 20px 20px;
  border: none;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 13px 35px 0px rgba(0, 0, 0, 0.15);
}
.hors-services-details-1 .input-group-text {
  background: rgb(82, 149, 45);
  padding: 24px;
  color: #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
}
.hors-services-details-1 .hors-content-area .gallery {
  padding-top: 0;
}
.hors-services-details-1 .hors-content-area .gallery img {
  margin-bottom: 30px;
}
.hors-services-details-1 .hors-content-area .video-area {
  margin: 30px 0;
}
.hors-services-details-1 .accordion-style2 .acdn-item {
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px;
  margin: 26px 0;
  position: relative;
  z-index: 1;
}
.hors-services-details-1 .accordion-style2 .acdn-item.active .acdn-title {
  color: #fff;
  background-color: rgb(82, 149, 45);
  z-index: -1;
  margin: 0;
}
.hors-services-details-1 .accordion-style2 .acdn-item.active .acdn-title::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 42%;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  z-index: 1;
}
.hors-services-details-1 .accordion-style2 .acdn-item.active .acdn-title::before {
  opacity: 0;
}
.hors-services-details-1 .accordion-style2 .acdn-title {
  background: rgb(255, 255, 255);
  padding: 20px;
  cursor: pointer;
  position: relative;
  z-index: -1;
}
.hors-services-details-1 .accordion-style2 .acdn-title::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 42%;
  z-index: -3;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #000000;
  z-index: 1;
}
.hors-services-details-1 .accordion-style2 .acdn-body {
  background: rgb(255, 255, 255);
  border-top: 1px solid rgba(238, 238, 238, 0.62);
  padding: 26px 20px;
  display: none;
}
.hors-services-details-1 .accordion-style2 .acdn-body p {
  margin: 0;
}

.hors-progress-style {
  font-size: 30px;
  color: #000000;
  text-align: center;
  padding-top: 15px;
}
.hors-progress-style .hors-progress-bar {
  position: relative;
  background-color: #ffffff;
  padding: 15px;
}
.hors-progress-style .hors-progress-bar h3 {
  margin: 0;
}
.hors-progress-style .hors-progress-info {
  position: relative;
}
.hors-progress-style svg {
  width: 200px;
  height: 200px;
  transform: rotate(264deg);
  overflow: initial;
  transform-origin: center;
}
.hors-progress-style circle {
  stroke-width: 15px;
  fill: none;
  transition: all 0.5s ease;
}
.hors-progress-style circle:nth-child(1) {
  stroke: #e6e2eb;
}
.hors-progress-style .progress1 {
  stroke: var(--stroke);
  position: absolute;
  z-index: 1;
  transition: var(--transition);
  stroke-dasharray: var(--stroke-dasharray);
  stroke-dashoffset: var(--stroke-dasharray);
  animation: progress var(--animation-time) ease-in forwards;
  --webkit-stroke-position: inside;
  /* stroke-linecap: round; */
}
.hors-progress-style .data-progress {
  position: absolute;
  font-size: 40px;
  font-weight: bold;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hors-progress-style .hors-progress-bar span {
  color: #000000 !important;
  position: absolute;
}

@keyframes progress {
  to {
    stroke-dashoffset: var(--stroke-dashoffset);
  }
}
.our-course {
  position: relative;
  margin-bottom: 100px;
}
.our-course .hors-swiper-navigation-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 54px;
}
.our-course .swiper-pagination-bullet {
  margin: 0 10px;
  background: #52952d;
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 0;
  padding-top: 10px;
  opacity: 1;
  transition: 0.3s;
}
.our-course .swiper-pagination-bullet:hover {
  background-color: #faa603;
}
.our-course .swiper-button-next.swiper-button-disabled, .our-course .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.our-course .hors-swiper-navigation-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-course .hors-swiper-navigation-wrap .swiper-button-next, .our-course .hors-swiper-navigation-wrap .swiper-button-prev {
  position: inherit;
  width: 42px;
  height: 42px;
  z-index: 10;
  cursor: pointer;
  color: #ffffff;
  background: #52952d;
  margin-top: 0;
  transition: 0.3s;
}
.our-course .hors-swiper-navigation-wrap .swiper-button-next:hover, .our-course .hors-swiper-navigation-wrap .swiper-button-prev:hover {
  background-color: #faa603;
}
.our-course .hors-swiper-navigation-wrap .swiper-button-next {
  margin-left: 10px;
}
.our-course .hors-swiper-navigation-wrap .swiper-button-prev {
  margin-right: 10px;
}
.our-course .hors-swiper-navigation-wrap .swiper-pagination {
  position: inherit !important;
  width: auto !important;
  top: 0;
}
.our-course .swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
  content: "next";
}
.our-course .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
  content: "prev";
}

.hors-posts-titlebar {
  padding: 110px 0;
}
.hors-posts-titlebar h1 {
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.hors-posts-titlebar .hors-posts-meta {
  display: flex;
  justify-content: center;
}
.hors-posts-titlebar .hors-posts-meta p {
  margin-right: 20px;
}

.hors-post-content-wrap {
  padding: 110px 0;
  background-color: #f8f6f4;
}
.hors-post-content-wrap .hors-post-block-single {
  margin-bottom: 30px;
}
.hors-post-content-wrap .hors-post-meta {
  display: flex;
  padding: 32px 25px 15px 25px;
  color: #52952d;
}
.hors-post-content-wrap .hors-post-date {
  margin-right: 20px;
}
.hors-post-content-wrap .hors-post-desc {
  padding: 0 25px 32px 25px;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-post-desc {
    padding: 15px;
  }
}
.hors-post-content-wrap .hors-post-desc h2 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-post-desc h2 {
    font-size: 30px;
  }
}
.hors-post-content-wrap .hors-post-desc p {
  margin: 0;
  padding: 20px 0 30px 0;
}
.hors-post-content-wrap .hors-post-desc .next-page {
  background-color: #52952d;
  color: #ffffff;
  padding: 10px;
  border-radius: 50%;
}
.hors-post-content-wrap .hors-post-desc .next-page:hover {
  background-color: #c5b582;
}
.hors-post-content-wrap .video-thumb {
  position: relative;
  border: 1px none;
}
.hors-post-content-wrap .video-play-btn {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.2274509804);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hors-post-content-wrap .video-play-btn img {
  position: absolute;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hors-post-content-wrap .video-play-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  background-color: #ffffff;
  opacity: 0.258;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: ripple-white3 2.5s linear infinite;
  animation: ripple-white3 2.5s linear infinite;
}
.hors-post-content-wrap .swiper-button-next:after, .hors-post-content-wrap .swiper-button-prev:after {
  display: none;
}
.hors-post-content-wrap .swiper-button-next, .hors-post-content-wrap .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
  font-size: 22px;
  color: #ffffff;
  background-color: #52952d;
  border-radius: 50%;
  padding: 0 21px;
  transition: 0.3s;
}
.hors-post-content-wrap .swiper-button-next:hover, .hors-post-content-wrap .swiper-rtl .swiper-button-prev:hover {
  background-color: #c5b582;
}
.hors-post-content-wrap .swiper-button-prev, .hors-post-content-wrap .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
  font-size: 22px;
  color: #ffffff;
  background-color: #52952d;
  border-radius: 50%;
  padding: 0 21px;
  transition: 0.3s;
}
.hors-post-content-wrap .swiper-button-prev:hover, .hors-post-content-wrap .swiper-rtl .swiper-button-next:hover {
  background-color: #c5b582;
}
.hors-post-content-wrap .hors-post-meta-wrapper {
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
}
.hors-post-content-wrap .hors-post-meta-wrapper img {
  max-width: 50px;
  height: 40px;
  margin-top: 35px;
}
.hors-post-content-wrap .hors-sidebar-widget {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-sidebar-widget {
    margin-top: 50px;
  }
}
.hors-post-content-wrap .input-group-text {
  background: rgb(82, 149, 45);
  padding: 24px;
  color: #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
}
.hors-post-content-wrap .form-control {
  padding: 20px 20px;
  border: none;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 13px 35px 0px rgba(0, 0, 0, 0.15);
}
.hors-post-content-wrap .hors-add-widget {
  padding: 24px;
  background-color: #ffffff;
  position: relative;
}
.hors-post-content-wrap .hors-add-widget h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: bold;
}
.hors-post-content-wrap .hors-add-img {
  position: relative;
}
.hors-post-content-wrap .hors-add-img::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.123);
  width: 100%;
  height: 100%;
}
.hors-post-content-wrap .hors-social-widget {
  padding: 34px 24px;
  background-color: #ffffff;
}
.hors-post-content-wrap .hors-social-widget ul {
  display: flex;
}
.hors-post-content-wrap .hors-social-widget ul li {
  margin-right: 10px;
  background-color: #52952d;
  color: #ffffff;
  padding: 7px 10px;
  border-radius: 50%;
  transition: 0.3s;
}
.hors-post-content-wrap .hors-social-widget ul li:hover {
  background-color: #c5b582;
}
.hors-post-content-wrap .hors-widget-title {
  font-size: 24px;
}
.hors-post-content-wrap .hors-posts-widget {
  background-color: #ffffff;
  padding: 34px 24px;
}
.hors-post-content-wrap .hors-posts-widget .hors-posts-title {
  padding-bottom: 18px;
  border-bottom: 1px solid #000;
  font-size: 24px;
  margin: 0;
}
.hors-post-content-wrap .hors-posts-widget .hors-posts-widget-desc h5 {
  margin: 0;
}
.hors-post-content-wrap .hors-posts-widget .hors-posts-widget-info {
  display: flex;
  padding: 34px 0 0 0;
}
.hors-post-content-wrap .hors-posts-widget .hors-posts-widget-info img {
  max-width: 100px;
  margin-right: 16px;
  object-fit: cover;
  max-height: 110px;
}
.hors-post-content-wrap .hors-posts-widget .hors-posts-widget-desc h6 {
  font-size: 16px;
  margin-bottom: 10px;
}
.hors-post-content-wrap .hors-posts-widget .hors-posts-widget-desc .hors-posts-widget-date {
  color: #52952d;
}
.hors-post-content-wrap .hors-navigation-widget .hors-nav-menu li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  padding-left: 0;
}
.hors-post-content-wrap .hors-navigation-widget .hors-nav-menu li::before {
  opacity: 0;
}
.hors-post-content-wrap .hors-gallery-standard {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hors-post-content-wrap .hors-gallery-standard img {
    margin-bottom: 30px;
  }
}
.hors-post-content-wrap .hors-post-tags {
  padding-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid #000;
}
.hors-post-content-wrap .hors-post-tags ul {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-post-tags ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-post-tags ul li {
    margin-bottom: 15px;
  }
}
.hors-post-content-wrap .hors-post-tags ul li:first-child {
  background: none;
  margin-right: 32px;
  font-size: 20px;
  font-weight: bold;
  padding: 0;
  color: #000;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-post-tags ul li:first-child {
    margin-bottom: 15px;
  }
}
.hors-post-content-wrap .hors-post-tags ul li a {
  margin-right: 10px;
  background-color: #ffffff;
  color: #000;
  padding: 9px 18px;
}
.hors-post-content-wrap .hors-share-tags {
  padding-top: 34px;
  padding-bottom: 34px;
}
.hors-post-content-wrap .hors-share-tags ul {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-share-tags ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-share-tags ul li {
    margin-bottom: 15px;
  }
}
.hors-post-content-wrap .hors-share-tags ul li:first-child {
  background: none;
  margin-right: 32px;
  font-size: 20px;
  font-weight: bold;
  padding: 0;
  color: #000;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-share-tags ul li:first-child {
    margin-bottom: 15px;
  }
}
.hors-post-content-wrap .hors-share-tags ul li:first-child:hover {
  color: #000000;
}
.hors-post-content-wrap .hors-share-tags ul li a {
  margin-right: 20px;
  color: #000;
  transition: 0.3x;
}
.hors-post-content-wrap .hors-share-tags ul li a:hover {
  color: #c5b582;
}
.hors-post-content-wrap .hors-posts-navigation {
  display: flex;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-posts-navigation {
    flex-wrap: wrap;
  }
}
.hors-post-content-wrap .hors-posts-navigation > li > a {
  display: block;
  padding: 20px 62px;
  color: #fff;
}
.hors-post-content-wrap .hors-posts-navigation > li h3 {
  color: #ffffff;
  font-size: 20px;
  margin: 0;
}
.hors-post-content-wrap .hors-posts-navigation > li.hors-posts-navigation-next {
  text-align: right;
}
.hors-post-content-wrap .hors-posts-navigation > li.hors-posts-navigation-next > a {
  background-color: #c5b582;
}
.hors-post-content-wrap .hors-posts-navigation > li.hors-posts-navigation-prev > a {
  background-color: #52952d;
}
.hors-post-content-wrap .hors-post-author {
  display: flex;
  background-color: #ffffff;
  padding: 35px 25px;
  margin: 54px 0;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-post-author {
    flex-wrap: wrap;
  }
}
.hors-post-content-wrap .hors-post-author .author-img {
  margin: 0 40px 30px 0;
}
.hors-post-content-wrap .hors-post-author .author-name {
  margin-bottom: 5px;
  font-size: 22px;
  line-height: 28px;
}
.hors-post-content-wrap .hors-post-author .author-social-profile li {
  display: inline-block;
  margin-bottom: 6px;
}
.hors-post-content-wrap .hors-post-author .author-social-profile a {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  margin-right: 5px;
  text-align: center;
  transition: 0.3s;
  background-color: #52952d;
  color: #fff;
}
.hors-post-content-wrap .hors-post-author .author-social-profile a:hover {
  background-color: #c5b582;
}
.hors-post-content-wrap .hors-comment-list .hors-comment-heading {
  padding-bottom: 34px;
  font-size: 30px;
  margin: 0;
}
.hors-post-content-wrap .hors-comment-list .hors-comment-single {
  display: flex;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-comment-list .hors-comment-single {
    flex-wrap: wrap;
  }
}
.hors-post-content-wrap .hors-comment-list .comment-img {
  width: 90px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-comment-list .comment-img {
    margin-bottom: 20px;
  }
}
.hors-post-content-wrap .hors-comment-list .comment-img img {
  border-radius: 50%;
}
.hors-post-content-wrap .hors-comment-list .hors-comment-body {
  width: calc(100% - 120px);
  padding-bottom: 34px;
  border-bottom: 1px solid;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-comment-list .hors-comment-body {
    width: inherit;
  }
}
.hors-post-content-wrap .hors-comment-list .hors-comment-title {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  font-size: 20px;
  line-height: 1.4;
}
.hors-post-content-wrap .hors-comment-list .hors-comment-title .comment-date {
  margin: 0 0 0 12px;
}
.hors-post-content-wrap .hors-comment-list .comment-reply {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  font-weight: bold;
}
.hors-post-content-wrap .hors-comment-list .children {
  padding-left: 100px;
}
@media (max-width: 767px) {
  .hors-post-content-wrap .hors-comment-list .children {
    padding-left: 0;
  }
}
.hors-post-content-wrap .hors-post-comment-form h3 {
  font-size: 30px;
  margin-bottom: 0;
}
.hors-post-content-wrap .hors-post-comment-form .ras-post-comment-btn {
  background-color: #52952d;
  color: #fff;
  padding: 16px 33px;
  transition: 0.3s;
  border: 0;
}
.hors-post-content-wrap .hors-post-comment-form .ras-post-comment-btn:hover {
  background-color: #c5b582;
}

.pagination li {
  list-style: none;
  margin-left: 10px;
  width: 42px;
  height: 42px;
}
.pagination li:first-child {
  margin-left: 0;
}
.pagination .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.pagination .page-link:hover {
  z-index: 2;
  color: #ffffff;
  background-color: #c5b582;
  border-color: #c5b582;
}
.pagination .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.pagination .page-link {
  position: relative;
  display: block;
  color: #ffffff;
  text-decoration: none;
  background-color: #52952d;
  border: 1px solid #52952d;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.pagination .page-link:focus {
  box-shadow: none;
}

.blockquote {
  background-color: #ffffff;
  padding: 34px 26px 26px 30px;
}
.blockquote p {
  color: #000;
}
.blockquote span {
  font-size: 22px;
  position: relative;
  color: #000;
  padding-left: 60px;
  margin-top: 50px;
}
.blockquote span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #52952d;
}

.hors-blog-masonry {
  padding: 110px 0 50px;
}
.hors-blog-masonry .hors-blog-masonry-wrapper {
  margin-bottom: 50px;
  position: relative;
}
.hors-blog-masonry .hors-blog-masonry-wrapper .blog-mesonry-date {
  position: absolute;
  background-color: #52952d;
  top: 0;
  left: 0;
  text-align: center;
  padding: 10px;
  color: #fff;
}
.hors-blog-masonry .hors-blog-masonry-wrapper .blog-mesonry-date li {
  padding: 12px 0;
  border-bottom: 1px solid #ffffff;
}
.hors-blog-masonry .hors-blog-masonry-wrapper .blog-mesonry-date li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.hors-blog-masonry .hors-blog-masonry-wrapper .blog-mesonry-date li:first-child {
  padding-top: 0;
}
.hors-blog-masonry .hors-blog-masonry-wrapper .blog-masonry-category {
  color: #52952d;
  position: relative;
  padding: 30px 0 10px 0;
}
.hors-blog-masonry .hors-blog-masonry-wrapper .blog-masonry-category a {
  padding-left: 50px;
}
.hors-blog-masonry .hors-blog-masonry-wrapper .blog-masonry-category::after {
  position: absolute;
  content: "";
  top: 63%;
  left: 0;
  padding-right: 20px;
  background-color: #52952d;
  width: 40px;
  height: 3px;
}
.hors-blog-masonry .blog-masonry-title {
  font-size: 32px;
  line-height: 1.2;
}
.hors-blog-masonry .blog-masonry-title a {
  transition: 0.3s;
}
.hors-blog-masonry .blog-masonry-title a:hover {
  color: #c5b582;
}

.hors-shop-titlebar {
  background-color: #f8f6f4;
  padding: 110px 0;
}
.hors-shop-titlebar h1 {
  margin-bottom: 20px;
}

.hors-shop-content-wrap {
  padding: 60px 0 30px;
  /* Double Range CSS */
}
.hors-shop-content-wrap .hors-product-1 {
  background-color: #fff;
  padding: 0;
}
.hors-shop-content-wrap .hors-sidebar-widget {
  background-color: #f8f6f4;
  box-shadow: none;
}
.hors-shop-content-wrap .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: #f8f6f4;
}
.hors-shop-content-wrap .hors-search-widget {
  padding: 10px;
  box-shadow: none;
}
@media (max-width: 767px) {
  .hors-shop-content-wrap .hors-search-widget {
    margin-top: 50px;
  }
}
.hors-shop-content-wrap .hors-search-widget .rounded {
  border-radius: 0 !important;
  border: none;
  background: #f8f6f4;
  position: relative;
}
.hors-shop-content-wrap .hors-search-widget .input-group {
  border-bottom: 1px solid rgba(16, 17, 16, 0.26);
}
.hors-shop-content-wrap .hors-navigation-title {
  padding-bottom: 0;
  border-bottom: none;
  font-size: 18px;
  font-weight: bold;
}
.hors-shop-content-wrap .hors-nav-menu {
  padding-top: 30px;
}
.hors-shop-content-wrap .hors-shop-tag li {
  display: inline-block;
}
.hors-shop-content-wrap .hors-shop-tag li a {
  display: block;
  padding: 8px 10px;
  background: #fff;
  line-height: 1;
  margin-right: 8px;
  margin-bottom: 8px;
}
.hors-shop-content-wrap .hors-navigation-widget .hors-nav-menu li {
  padding-bottom: 25px;
}
.hors-shop-content-wrap .hors-navigation-widget .hors-nav-menu li::before {
  position: absolute;
  content: "";
  bottom: 33px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000000;
  transition: 0.3s;
}
.hors-shop-content-wrap .hors-navigation-widget .hors-nav-menu li:hover a {
  color: #52952d;
}
.hors-shop-content-wrap .hors-navigation-widget .hors-nav-menu li:hover::before {
  background-color: #52952d;
}
.hors-shop-content-wrap .hors-categories .hors-range-slider {
  position: relative;
  padding: 50px 0 40px;
}
.hors-shop-content-wrap .hors-categories .hors-range-slider input[type=range] {
  position: absolute;
  left: 0px;
  bottom: 120px;
}
.hors-shop-content-wrap .hors-categories .hors-input-number:last-child {
  position: absolute;
  left: 134px;
}
.hors-shop-content-wrap .hors-categories .hors-range-slider-output {
  display: flex;
}
.hors-shop-content-wrap .hors-categories .hors-dollar-1 {
  position: relative;
}
.hors-shop-content-wrap .hors-categories .hors-dollar-1::after {
  position: absolute;
  top: 50%;
  background-color: #000;
  width: 30px;
  height: 2px;
  content: "";
  left: -40px;
}
.hors-shop-content-wrap .hors-categories .hors-range-slider input[type=number]::-webkit-outer-spin-button,
.hors-shop-content-wrap .hors-categories .hors-range-slider input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.hors-shop-content-wrap .hors-categories .hors-range-slider input[type=number] {
  -moz-appearance: textfield;
}
.hors-shop-content-wrap .hors-categories input[type=number] {
  font-size: 16px;
  border: none;
  background: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hors-shop-content-wrap .hors-categories input[type=number] {
    font-size: 10px;
  }
}
.hors-shop-content-wrap .hors-categories .hors-contact input[type=number] {
  font-size: 16px;
  border: 1px solid #52952d;
}
.hors-shop-content-wrap .hors-categories .rangeSliderMileage .hors-input-number:last-child {
  position: absolute;
  right: -45px;
}
.hors-shop-content-wrap .hors-categories input[type=number]:invalid,
.hors-shop-content-wrap .hors-categories input[type=number]:out-of-range {
  border: 0;
}
.hors-shop-content-wrap .hors-categories input[type=range] {
  -webkit-appearance: none;
  width: 100%;
}
.hors-shop-content-wrap .hors-categories input[type=range]:focus {
  outline: none;
}
.hors-shop-content-wrap .hors-categories input[type=range]:focus::-webkit-slider-runnable-track {
  background: #52952d;
}
.hors-shop-content-wrap .hors-categories input[type=range]:focus::-ms-fill-lower {
  background: #52952d;
}
.hors-shop-content-wrap .hors-categories input[type=range]:focus::-ms-fill-upper {
  background: #52952d;
}
.hors-shop-content-wrap .hors-categories input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #52952d;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}
.hors-shop-content-wrap .hors-categories input[type=range]::-webkit-slider-thumb {
  z-index: 2;
  position: relative;
  border: 0px;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #52952d;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}
.hors-shop-content-wrap .hors-categories a {
  color: #ffffff;
  padding: 10px 49px;
  background-color: #52952d;
}
.hors-shop-content-wrap .hors-shop-tag h4 {
  padding-top: 40px;
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}

.hors-shop-cart {
  align-items: center;
  padding: 110px 0;
}
.hors-shop-cart .stacktable {
  width: 100%;
}
.hors-shop-cart .stacktable.small-only {
  display: none;
}
.hors-shop-cart .st-space {
  height: 25px;
}
.hors-shop-cart .st-key {
  border: none;
  background-color: #f6f6f6;
  text-align: left;
  padding: 10px 20px;
  color: #606060;
  vertical-align: top;
  font-size: 14px;
  font-weight: 600;
  width: 40%;
  border: 1px solid #eee;
}
.hors-shop-cart .st-val {
  width: 58%;
  text-align: left;
  padding: 10px 20px;
  border: 1px solid #f0f0f0;
  border-left: 0;
}
.hors-shop-cart .st-val a {
  font-weight: 600;
  color: #666;
}
.hors-shop-cart .cart-removed {
  background: #f42e00;
  color: #fff;
  border-radius: 50%;
  border: none;
  float: left;
  cursor: pointer;
  width: 22px;
  height: 22px;
  font-size: 13px;
  outline: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-family: "Icofont";
}
.hors-shop-cart .qtyplus,
.hors-shop-cart .qtyminus,
.hors-shop-cart a.cart-remove {
  background: #f8f6f4;
  color: #000;
  border: none;
  float: left;
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 13px;
  outline: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-family: "Icofont";
}
.hors-shop-cart input.qty {
  padding: 19px 10px;
}
.hors-shop-cart input[type=text], .hors-shop-cart input[type=password], .hors-shop-cart input[type=email], .hors-shop-cart textarea, .hors-shop-cart select {
  outline: none;
  font-size: 13px;
  color: #000;
  margin: 0;
  max-width: 100%;
  display: block;
  background: #ffffff;
  border: 1px solid #f5f5f5;
  font-weight: 600;
}
.hors-shop-cart .st-val .cart-remove {
  color: #a0a0a0;
}
.hors-shop-cart .stacktable.large-only {
  display: table;
}
.hors-shop-cart table.cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: none;
  margin-top: 30px;
  margin-bottom: 54px;
}
.hors-shop-cart table.cart-table th {
  margin: 0;
  font-size: 20px;
  border: none;
  text-align: left;
  padding: 20px 0 20px;
  vertical-align: top;
  font-weight: 600;
  background-color: #52952d;
}
.hors-shop-cart table.cart-table th span {
  font-family: "Frank Ruhl Libre", serif;
  color: #ffffff;
}
.hors-shop-cart table.cart-table th a {
  background-color: #52952d;
  display: inline-block;
  margin: 0;
  padding: 15px 27px 13px 27px;
  border: none;
  color: #ffffff;
  margin-left: 15px;
  transition: 0.3s;
}
.hors-shop-cart table.cart-table th a:hover {
  background-color: #c5b582;
}
.hors-shop-cart table.cart-table .cart-stock {
  background-color: #c5b582;
  padding: 10px 17px;
  color: #ffffff;
}
.hors-shop-cart table.cart-table .cart-add {
  padding: 13px 39px;
  background-color: #52952d;
  color: #ffffff;
  float: right;
  transition: 0.3s;
}
.hors-shop-cart table.cart-table .cart-add:hover {
  background-color: #c5b582;
}
.hors-shop-cart table.cart-table .apply-coupon-wrapper {
  border: none;
  text-align: left;
  padding: 20px 0;
  color: #ffffff;
  vertical-align: top;
  font-size: 14px;
  font-weight: 600;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
}
.hors-shop-cart .cart-table td img {
  max-width: 150px;
}
.hors-shop-cart .cart-title a {
  font-weight: 600;
  color: #666;
}
.hors-shop-cart .qtyminus:before {
  position: relative;
  display: block;
  top: 10px;
  left: 15px;
  content: "\ef9a";
  font-family: inherit;
}
.hors-shop-cart .qty {
  width: 41px;
  height: 22px;
  text-align: center;
  float: left;
  padding: 8px 9px;
}
.hors-shop-cart .qtyplus:before {
  content: "\efc2";
  position: relative;
  display: block;
  top: 10px;
  left: 15px;
}
.hors-shop-cart .cart-removed {
  position: relative;
}
.hors-shop-cart .cart-removed:before {
  position: relative;
  display: block;
  top: 1px;
  left: 5px;
  content: "\eee4";
}
.hors-shop-cart .cart-table.bottom {
  margin-top: -1px;
}
.hors-shop-cart .cart-table.bottom .apply-coupon input {
  background-color: #fff;
  display: inline-block;
  margin: 0;
  padding: 16px 36px 12px;
  border-color: rgb(220, 220, 220);
}
.hors-shop-cart .cart-table.bottom ::placeholder {
  color: #000;
  font-weight: 100;
  font-size: 16px; /* Firefox */
}
.hors-shop-cart .cart-table.bottom :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000;
  font-weight: 100;
  font-size: 16px;
}
.hors-shop-cart .cart-table.bottom ::-ms-input-placeholder { /* Microsoft Edge */
  color: #000;
  font-weight: 100;
  font-size: 16px;
}
.hors-shop-cart .cart-table.bottom .a.button.gray {
  background-color: #c0c0c0;
}
.hors-shop-cart .cart-table.bottom .cart-btns a.button.gray {
  float: right;
  background-color: #52952d;
  color: #ffffff;
  padding: 15px 27px 13px 27px;
  transition: 0.3;
}
.hors-shop-cart .cart-table.bottom .cart-btns a.button.gray:hover {
  background-color: #c5b582;
}
.hors-shop-cart .eight.columns.cart-totals:after {
  position: relative;
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.hors-shop-cart .eight.columns.cart-totals .cart-table tbody th {
  background-color: #ffffff !important;
  color: #000000;
  font-weight: bold;
  font-size: 18px;
}
.hors-shop-cart .eight.columns.cart-totals .cart-table tbody strong {
  margin-right: 40px;
}
.hors-shop-cart .eight.columns.cart-totals .cart-table tbody .border-none {
  border: none;
}
.hors-shop-cart .eight.columns.cart-totals .cart-table tbody tr {
  display: flex;
  justify-content: space-between;
}
.hors-shop-cart .eight.columns.cart-totals .cart-table tbody tr:last-child {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #f5f5f5;
}
.hors-shop-cart .check-out-btn {
  background-color: #52952d;
  color: #ffffff;
  float: right;
  padding: 13px 43px 13px 43px;
  transition: 0.3s;
}
.hors-shop-cart .check-out-btn:hover {
  background-color: #c5b582;
}
.hors-shop-cart .headline {
  font-size: 20px;
  background-color: #52952d;
  padding: 20px 20px;
  text-align: right;
  color: #ffffff;
  z-index: 5;
  position: relative;
}
.hors-shop-cart row, .hors-shop-cart .clearfix {
  zoom: 1;
}
.hors-shop-cart .clearfix:before,
.hors-shop-cart .clearfix:after,
.hors-shop-cart row:before,
.hors-shop-cart row:after {
  content: " ";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.hors-shop-cart row:after,
.hors-shop-cart .clearfix:after {
  clear: both;
}
.hors-shop-cart .cart-totals .cart-table th {
  vertical-align: middle;
  border-bottom: 1px solid #fff;
  width: 40%;
  padding: 10px 15px;
}
.hors-shop-cart .cart-table td {
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 15px;
  color: #000;
  font-weight: bold;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hors-shop-cart .cart-table td {
    padding: 10px;
  }
}

.wish-list .cart-table td {
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 0;
}
.wish-list .cart-remv {
  position: relative;
}
.wish-list .cart-remv:before {
  position: relative;
  display: block;
  top: 8px;
  left: 15px;
  content: "\eee4";
}
.wish-list .cart-remv {
  background: #ffffff !important;
  color: #000;
  border-radius: 50%;
  border: none;
  float: left;
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 13px;
  outline: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.2s ease-in-out;
  font-family: "Icofont";
}
.wish-list .search-field {
  display: flex;
}
.wish-list .form-field {
  margin-bottom: 0px;
  padding: 0px;
}
.wish-list .apply-coupon {
  display: flex;
}
.wish-list .apply-coupon select {
  outline: none;
  font-size: 13px;
  color: #999;
  margin: 0;
  width: 162px;
  height: 52px;
  display: block;
  background: #ffffff;
  border: 1px solid #f5f5f5;
  font-weight: 600;
  color: #000;
}

.hors-single-product-cart h2,
.hors-single-product-cart h3,
.hors-single-product-cart p {
  margin: 0;
}
.hors-single-product-cart p {
  padding: 30px 0;
}

.hors-single-product-rating {
  display: flex;
  align-items: baseline;
}

.hors-contact-location iframe {
  width: 100%;
}

.hors-category_1 {
  padding: 100px 0;
  position: relative;
}
.hors-category_1 .hors-category-sub-title {
  color: #000000;
  font-weight: bold;
}
.hors-category_1 .hors-category-title {
  padding-bottom: 54px;
  width: 500px;
  margin: 0 auto;
}
.hors-category_1 .category {
  transition: 0.3s;
}
.hors-category_1 .category .category-slide-info {
  position: relative;
  text-align: center;
  transition: 0.3s;
}
.hors-category_1 .category .category-slide-info .category-slide-img {
  position: relative;
}
.hors-category_1 .category .category-slide-info .category-slide-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  transition: 0.3s;
}
.hors-category_1 .category .category-slide-info .category-slide-desc {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 100%;
  text-align: center;
  z-index: 999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  padding: 13px;
}
.hors-category_1 .category .category-slide-info .category-slide-desc h6 {
  color: #ffffff;
  transition: 0.3s;
}
.hors-category_1 .category .category-slide-info .category-slide-desc p {
  max-width: 260px;
  color: #ffffff;
  transition: 0.3s;
}
.hors-category_1 .category .category-slide-info .category-slide-desc a {
  color: rgb(242, 156, 65);
  text-decoration: underline;
  transition: 0.3s;
}
.hors-category_1 .category .category-slide-title {
  margin-top: 30px;
  transition: 0.3s;
}
.hors-category_1 .category .swiper-slide {
  position: relative;
}
.hors-category_1 .category .swiper-slide:hover .category-slide-title {
  opacity: 0;
  transform: translateY(-15px);
  visibility: hidden;
}
.hors-category_1 .category .swiper-slide:hover .category-slide-desc {
  opacity: 1;
  top: 50%;
}
.hors-category_1 .category .swiper-slide:hover .category-slide-img::after {
  opacity: 0.7;
}
.hors-category_1 .hors-slider-navigation {
  width: 1250px;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hors-category_1 .hors-slider-navigation .swiper-button-next:after {
  content: "next";
  font-size: 15px;
}
.hors-category_1 .hors-slider-navigation .swiper-button-next {
  right: 0;
  left: auto;
  color: #ffffff;
  width: 40px;
  height: 40px;
  background-color: #52952d;
  border-radius: 50%;
  transition: 0.3s;
}
.hors-category_1 .hors-slider-navigation .swiper-button-next:hover {
  background-color: #c5b582;
}
.hors-category_1 .hors-slider-navigation .swiper-button-prev:after {
  content: "prev";
  font-size: 15px;
}
.hors-category_1 .hors-slider-navigation .swiper-button-prev {
  left: 0px;
  right: auto;
  color: #ffffff;
  width: 40px;
  height: 40px;
  background-color: #52952d;
  border-radius: 50%;
  transition: 0.3s;
}
.hors-category_1 .hors-slider-navigation .swiper-button-prev:hover {
  background-color: #c5b582;
}

.abt {
  background-image: url("../images/quality.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 30px;
}

.abt-11 img{
  box-shadow: 0px 0px 20px 0px #ccc;	
}	

.whatsapp{position: fixed; bottom: 20px; z-index: 9999; left: 0px;}

@media (max-width: 768px) 
{
	
.abt-11 img{	
  margin-bottom: 30px;
 }
.hors-form-1 h2{
  margin-top: 30px;	
} 

}
	
/*# sourceMappingURL=style.css.map */
