﻿@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Theme Name: Golf - Golf Club and Sports HTML Template
    Description: Golf Club and Sports HTML Template
    Author: Chitrakoot Web
    Version: 1.0

-----------------------------------------------------------------------------------*/
/* ----------------------------------

    01. Common styles
    02. Navigation
    03. Page title
    04. Section Title
    05. Slider Fade
    06. About Us
    07. Story video
    08. Cards
    09. Blockquote
    10. Testimonial
    11. Pagination
    12. Owl carousel
    13. Others
    14. Accordion
    15. Portfolio
    16. Pages
    17. Blog
    18. Footer

---------------------------------- */
.honeysuckleBackground {
  background-color: #e5e0c3;
}

.field-validation-error {
  color: red;
}

/*#15395A;*/
/* ===================================
    Common styles
====================================== */
/* loader */
#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%;
}
#preloader:before {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #ceaa4d;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#preloader:after {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #ceaa4d;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
}

@keyframes LoaderCicle {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}
/* theme color and basic options */
a:hover, a:active, a:focus {
  color: #ceaa4d;
  text-decoration: none;
}

.bg-primary {
  background-color: #ceaa4d !important;
}

.bg-secondary {
  background: #1f4130 !important;
}

.primary-overlay[data-overlay-dark]:before {
  background: #ceaa4d;
}

.secondary-overlay[data-overlay-dark]:before {
  background: #1f4130;
}

.text-primary {
  color: #ceaa4d !important;
}

.text-secondary {
  color: #1f4130 !important;
}

.cursor-pointer {
  cursor: pointer;
}

.bg-repeat {
  background-repeat: repeat;
}

.height-300 {
  height: 300px;
}

.height-400 {
  height: 400px;
}

/* scroll to top */
.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  border-radius: 50%;
  background: #ceaa4d;
  border: 1px solid #ceaa4d;
  width: 35px;
  height: 35px;
  line-height: 30px;
  z-index: 9999;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.scroll-to-top i {
  color: #fff;
}
.scroll-to-top:hover {
  color: #232323;
  background: #fff;
}
.scroll-to-top:hover i {
  color: #ceaa4d;
}
.scroll-to-top:visited {
  color: #232323;
  text-decoration: none;
}

/* button style */
.butn {
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 0;
  padding: 16px 40px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  vertical-align: middle;
  white-space: nowrap;
  border: 2px solid #ceaa4d;
  background-color: #ceaa4d;
}
.butn:hover, .butn:active, .butn:focus {
  background-color: #1f4130;
  color: #fff;
  border-color: #1f4130;
}
.butn.secondary {
  background-color: #1f4130;
  color: #fff;
  border-color: #1f4130;
}
.butn.secondary:hover, .butn.secondary:active, .butn.secondary:focus {
  background-color: #ceaa4d;
  color: #fff;
  border-color: #ceaa4d;
}
.butn.white-hover:hover, .butn.white-hover:active, .butn.white-hover:focus {
  background-color: #fff;
  color: #ceaa4d;
  border-color: #fff;
}
.butn.sm {
  padding: 10px 15px !important;
}
.butn.md {
  padding: 13px 20px !important;
}

.bd-example button, .bd-example a {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 420px;
  background-position: center center;
}

/* list-style1 */
.list-style1 li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
.list-style1 li i {
  position: absolute;
  left: 4px;
  top: 4px;
  color: #1f4130;
  font-size: 18px;
}
.list-style1 li:last-child {
  margin-bottom: 0;
}

/* list-style2 */
.list-style2 li {
  margin-bottom: 8px;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 8px;
}
.list-style2 li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

/* list-style3 */
.list-style3 li {
  margin-bottom: 10px;
  box-shadow: 0 0 14px rgba(82, 85, 90, 0.2);
}
.list-style3 li:before {
  content: "";
  display: block;
  width: 3px;
  height: 53px;
  background-color: #1f4130;
  position: relative;
  float: left;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.list-style3 li a {
  display: block;
  font-size: 16px;
  border-radius: 3px;
  font-weight: 600;
  padding: 14px 10px 14px 20px;
  background-color: #fff;
}
.list-style3 li.active a {
  background-color: #1f4130;
  color: #fff;
}

/*==============================
 *    Navigation
 *    ================================ */
@media screen and (min-width: 992px) {
  .navbar ul.megamenu ul li:last-child:after {
    content: none;
  }
  .navbar ul.megamenu li:last-child:after {
    bottom: -30px;
    right: -15px;
    z-index: 0;
  }
}
@media screen and (max-width: 991px) {
  .navbar-toggler {
    background: #ceaa4d;
  }
}
/* menu area light */
.navbar-nav li.current > a, .navbar-nav li.active > a {
  color: #ceaa4d;
}

.navbar > ul > li.current > a:after {
  border-color: transparent #ceaa4d #ceaa4d transparent;
}

.menu_area-light .navbar-nav li.current > a, .menu_area-light .navbar-nav li.active > a {
  color: #ceaa4d;
}
.menu_area-light .navbar > ul > li.current > a:after {
  border-color: transparent #ceaa4d #ceaa4d transparent;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a {
  color: #ceaa4d;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
  color: #ceaa4d;
}
.menu_area-light.scrollHeader .navbar-nav li.active > a {
  color: #ceaa4d;
}
.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #ceaa4d #ceaa4d transparent;
}

/* header style 2 */
.header-style2 .navbar-nav li.current > a {
  color: #ceaa4d;
}
.header-style2 .navbar > ul > li.current > a:after {
  border-color: transparent #ceaa4d #ceaa4d transparent;
}
.header-style2.scrollHeader .navbar-nav li.current > a {
  color: #ceaa4d;
}
.header-style2.scrollHeader .navbar-nav li.current > a:hover {
  color: #ceaa4d;
}
.header-style2.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #ceaa4d #ceaa4d transparent;
}

@media screen and (min-width: 992px) {
  .header-style1 .navbar-nav li.current > a, .menu_area-light .navbar-nav li.current > a {
    color: #ceaa4d;
  }
  .header-style1 .navbar > ul > li.current > a:after, .menu_area-light .navbar > ul > li.current > a:after {
    border-color: transparent #ceaa4d #ceaa4d transparent;
  }
  .header-style1.scrollHeader .navbar-nav li.current > a, .menu_area-light.scrollHeader .navbar-nav li.current > a, .header-style1.scrollHeader .navbar-nav li.current > a:hover, .menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
    color: #ceaa4d;
  }
  .header-style1.scrollHeader .navbar > ul > li.current > a:after, .menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #ceaa4d #ceaa4d transparent;
  }
  .header-style2.scrollHeader .navbar-nav li.active > a {
    color: #ceaa4d;
  }
  .header-style2.scrollHeader .navbar-nav li.current > a {
    color: #ceaa4d;
  }
  .header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: #ceaa4d;
  }
  .header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #ceaa4d #ceaa4d transparent;
  }
}
/* ===================================
    Page title
====================================== */
.page-title-section {
  padding: 150px 0;
}
.page-title-section h1 {
  font-size: 60px;
  line-height: 1;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  margin-bottom: 10px;
}
.page-title-section ul {
  margin: 0;
  padding: 7px 22px;
  list-style: none;
  background: #ceaa4d;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  line-height: 1.2;
}
.page-title-section ul li {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-title-section ul li:last-child {
  color: #fff;
  opacity: 0.85;
}
.page-title-section ul li:after {
  content: "\f105";
  font-weight: 700;
  vertical-align: middle;
  color: #fff;
  font-size: 14px;
  font-family: Font Awesome\ 5 Free;
  padding: 0 5px 0 10px;
}
.page-title-section ul li:last-child:after {
  content: none;
}
.page-title-section ul li a {
  color: #fff;
}
.page-title-section ul li a:hover {
  color: #fff;
}
.page-title-section .triangle-3 {
  bottom: 30px;
  left: 3%;
}
.page-title-section .triangle-4 {
  left: 3%;
  bottom: 10px;
  top: inherit;
}

@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 130px 0;
  }
  .page-title-section h1 {
    font-size: 52px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 120px 0;
  }
  .page-title-section h1 {
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-title-section {
    padding: 110px 0;
  }
  .page-title-section h1 {
    font-size: 42px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 575px) {
  .page-title-section {
    padding: 100px 0;
  }
  .page-title-section h1 {
    font-size: 36px;
  }
}
/* page-title2 */
.page-title-section2 {
  padding: 210px 0 150px;
}

@media screen and (max-width: 1199px) {
  .page-title-section2 {
    padding: 170px 0 110px;
  }
}
@media screen and (max-width: 991px) {
  .page-title-section2 {
    padding: 150px 0 90px;
  }
}
@media screen and (max-width: 767px) {
  .page-title-section2 {
    padding: 130px 0 70px;
  }
}
/* ===================================
    Section Title
====================================== */
.section-title {
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.section-title:after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #ceaa4d;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}
.section-title.white:after {
  background-color: #fff;
}

/* ===================================
    Slider Fade
====================================== */
.slider-fade .owl-item {
  height: 80vh;
  position: relative;
}
.slider-fade .item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
.slider-fade .item .caption {
  width: 100%;
  padding: 0 15px;
  z-index: 9;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
}
.slider-fade .caption .overflow-hidden {
  display: inline-block;
}
.slider-fade .caption h1 {
  font-size: 58px;
  visibility: hidden;
  opacity: 0;
  color: #ffffff;
}
.slider-fade .owl-nav .owl-next {
  right: 15px;
  position: absolute;
  top: 40%;
  background: none !important;
  opacity: 0.35;
}
.slider-fade .owl-nav .owl-prev {
  position: absolute;
  top: 40%;
  background: none !important;
  opacity: 0.35;
}
.slider-fade .owl-nav .owl-next:hover {
  opacity: 1;
}
.slider-fade .owl-nav .owl-prev {
  left: 15px;
}
.slider-fade .owl-nav .owl-prev:hover {
  opacity: 1;
}
.slider-fade .owl-nav i {
  color: #ffffff;
  font-size: 19px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.3);
  display: block;
  line-height: 45px;
  border-radius: 50%;
}

.owl-nav span {
  color: #ffffff;
  font-size: 19px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.3);
  display: block;
  line-height: 45px;
  border-radius: 50%;
}

.slider-fade .active h1, .slider-fade .active p, .slider-fade .active .butn {
  animation: anislide 1s ease 100ms both;
  visibility: visible;
  opacity: 1;
}
.slider-fade .active h1 {
  animation-delay: 900ms;
}
.slider-fade .active p {
  animation-delay: 1800ms;
}
.slider-fade .active .butn {
  animation-delay: 2200ms;
}

@media screen and (max-width: 1199px) {
  .slider-fade .caption h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .slider-fade .caption h1 {
    font-size: 44px;
  }
}
@media screen and (max-width: 767px) {
  .slider-fade .caption h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 575px) {
  .slider-fade .caption h1 {
    font-size: 28px;
  }
}
@-webkit-keyframes anislide {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* ===================================
    About Us
====================================== */
.about-img img {
  border-radius: 3px;
}

.about-focus {
  padding: 35px 49px 29px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 3px;
  display: inline-block;
  position: absolute;
  bottom: -60px;
  left: -70px;
  max-width: 220px;
}

.about-info {
  padding-left: 20px;
  border-left: 2px solid #ceaa4d !important;
}

.phone-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1199px) {
  .about-focus {
    left: -10px;
    padding: 29px 29px 29px;
    max-width: 190px;
  }
}
@media screen and (max-width: 575px) {
  .phone-icon {
    width: 50px;
    height: 50px;
    font-size: 25px;
    line-height: 55px;
  }
}
/* zig-zag-block */
.zig-zag-block {
  margin-top: -30px;
}

.zig-zag-img {
  box-shadow: 17px 12px 62px -7px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 991px) {
  .zig-zag-block {
    margin-top: 0;
  }
}
/* ===================================
    Story video
====================================== */
.story-video {
  height: 100%;
}

.video_btn {
  position: relative;
  height: 80px;
  width: 80px;
  background: #ceaa4d;
  text-align: center;
  display: inline-block;
  line-height: 80px;
  color: #fff;
  border-radius: 50%;
  transition-duration: 0s;
}
.video_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video_btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 95px;
  width: 95px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video_btn:hover, .video_btn:active, .video_btn:focus {
  color: #fff;
}

.video-img {
  position: relative;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@media screen and (max-width: 1199px) {
  .video_btn {
    height: 75px;
    width: 75px;
    line-height: 80px;
  }
  .video_btn:after {
    height: 75px;
    width: 75px;
  }
  .video_btn:before {
    height: 90px;
    width: 90px;
  }
}
@media screen and (max-width: 991px) {
  .video_btn {
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .video_btn:after {
    height: 70px;
    width: 70px;
  }
  .video_btn:before {
    height: 85px;
    width: 85px;
  }
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
    }
  }
}
@media screen and (max-width: 767px) {
  .video_btn {
    height: 60px;
    width: 60px;
    line-height: 62px;
  }
  .video_btn:after {
    height: 60px;
    width: 60px;
  }
  .video_btn:before {
    height: 75px;
    width: 75px;
  }
}
/* ===================================
    Cards
====================================== */
/* card-style1 */
.card-style1 {
  box-shadow: 0px 0px 10px 0px rgba(89, 75, 128, 0.09);
}

/* card-style2 */
.card-style2 {
  border: none;
}
.card-style2 .team-img {
  border-radius: 3px;
  min-height: 512px;
}
.card-style2 .team-text {
  position: absolute;
  bottom: 20px;
  left: 30px;
  -webkit-transition: bottom 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  -moz-transition: bottom 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  -o-transition: bottom 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  -ms-transition: bottom 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: bottom 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
}
.card-style2:hover .team-text {
  bottom: 70px;
}
.card-style2 .team-img:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 3px;
  -webkit-transition: opacity 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  -moz-transition: opacity 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  -o-transition: opacity 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  -ms-transition: opacity 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: opacity 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  opacity: 0.2;
}
.card-style2:hover .team-img:before {
  opacity: 0.4;
}
.card-style2 .social-icon {
  position: absolute;
  bottom: -40px;
  left: 0px;
  -webkit-transition: bottom 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  -moz-transition: bottom 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  -o-transition: bottom 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  -ms-transition: bottom 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: bottom 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  list-style: none;
  margin: 0;
  font-size: 0;
}
.card-style2 .social-icon ul li {
  display: inline-block;
  font-size: 14px;
  margin-left: 15px;
  margin-bottom: 0;
}
.card-style2 .social-icon ul li:first-child {
  margin-left: 0;
}
.card-style2:hover .social-icon {
  bottom: 30px;
}

/* card-style3 */
.card-style3 {
  box-shadow: 0px 0px 10px 0px rgba(89, 75, 128, 0.09);
  border: unset;
  height: 100%;
  transition-timing-function: ease-in-out;
  transform: translateZ(0);
  transition-duration: 0.6s;
}
.card-style3:hover {
  transform: translateY(-13px);
}
.card-style3 .card-header {
  z-index: 1;
  position: relative;
  padding: 45px 35px 0 35px;
  margin-bottom: 70px;
  text-align: center;
}
.card-style3 .card-header h6 {
  border-radius: 3px;
  padding: 7px 25px 4px 25px;
  display: inline-block;
}
.card-style3 .price-icon {
  margin-bottom: -35px;
  height: 62px;
  width: 62px;
  background: #fff;
  box-shadow: 0px 15px 30px 0px rgba(214, 214, 214, 0.3);
  border-radius: 3px;
  line-height: 38px;
  text-align: center;
  display: inline-block;
}

/* card-style4 */
.card-style4 {
  border: unset;
  box-shadow: 0px 0px 10px 0px rgba(89, 75, 128, 0.09);
  border-radius: 3px;
  transition-timing-function: ease-in-out;
  transform: translateZ(0);
  transition-duration: 0.6s;
}
.card-style4:hover {
  transform: translateY(-13px);
}
.card-style4 span {
  position: absolute;
  top: -20px;
  left: 40px;
  border-radius: 3px;
  box-shadow: 0px 0px 10px 0px rgba(89, 75, 128, 0.09);
}

/* card-style5 */
.card-style5 span {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 12px 24px;
  color: #ffffff;
  background: #1f4130;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 0;
}

/* card-style6 */
.card-style6 .card-body {
  box-shadow: 0px 10px 30px 0px rgba(1, 25, 50, 0.04);
  margin-top: -55px;
  background-color: #fff;
}

/* card-style7 */
.card-style7 .card-body {
  overflow: hidden;
  position: relative;
}
.card-style7 .card-img:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  opacity: 1;
  z-index: 1;
  background: rgba(0, 0, 0, 0.76);
  background: linear-gradient(-180deg, transparent, #000 116%);
}
.card-style7 .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  text-align: left;
  padding: 30px 40px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.card-style7 .card-inner {
  position: absolute;
  bottom: 30px;
  opacity: 1;
  width: calc(100% - 80px);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}

/* ===================================
    Blockquote
====================================== */
blockquote {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin: 0 auto;
  color: #232323;
  line-height: 30px;
  max-width: 930px;
  margin-bottom: 20px;
}
blockquote:before {
  content: "\f10d";
  font-family: Font Awesome\ 5 Free;
  font-weight: 600;
  font-size: 36px;
  display: block;
  color: #1f4130;
  text-align: center;
  margin-bottom: 20px;
}
blockquote:after {
  position: absolute;
  content: "";
  right: 0;
  left: 0;
  text-align: center;
  margin: 0 auto;
  background-color: transparent;
}
blockquote cite {
  display: block;
  position: relative;
  margin-top: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
}

@media screen and (max-width: 991px) {
  blockquote:before {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  blockquote {
    line-height: 35px;
  }
  blockquote:before {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
/* ===================================
    Testimonial
====================================== */
.testimonial-carousel.owl-theme .owl-nav [class*=owl-] {
  margin: 0;
}
.testimonial-carousel .owl-nav {
  position: absolute;
  bottom: 0;
  right: -120px;
  display: block !important;
}
.testimonial-carousel .owl-nav i {
  color: #fff;
  font-size: 15px;
  line-height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: block;
  border-radius: 0px;
  width: 50px;
  height: 40px;
}

.testimonial-left-box {
  display: table;
  height: 100%;
  min-height: 512px;
  position: relative;
  margin-left: 20px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.testimonial-left-inner {
  display: table-cell;
  vertical-align: middle;
  padding: 0 90px;
}

@media screen and (max-width: 1399px) {
  .testimonial-left-inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1199px) {
  .testimonial-left-box {
    min-height: auto;
    margin-left: 0;
    position: relative;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    padding: 50px 30px;
  }
  .testimonial-carousel .owl-nav {
    bottom: -40px;
    right: 0;
  }
}
@media screen and (max-width: 991px) {
  .testimonial-left-inner {
    padding: 0 0px;
  }
}
/* ===================================
    Pagination
====================================== */
.pagination {
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.pagination ul {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
}
.pagination li {
  display: inline;
}
.pagination a {
  float: left;
  font-size: 15px;
  padding: 0 18px;
  line-height: 40px;
  text-decoration: none;
  color: #1c1c25;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  margin-right: 10px;
  background: #fff;
  border: unset;
}
.pagination .active a {
  background-color: #ceaa4d;
  color: #ffffff;
  cursor: default;
}
.pagination li:last-child a {
  margin-right: 0;
}
.pagination a:hover {
  background-color: #1f4130;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .pagination a {
    padding: 0 14px;
  }
}
/* ===================================
    Owl carousel
====================================== */
.owl-theme .owl-nav [class*=owl-]:hover {
  background: unset;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #cda94d;
}

.owl-nav i, .owl-nav span {
  color: #232323;
  font-size: 28px;
}

.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

/* ===================================
    Others
====================================== */
/* services-block */
.services-block {
  margin-bottom: -100px;
}

/* pattern-bg-overlay */
.pattern-bg-overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #ceaa4d;
}

/* error page */
.error-page {
  background-color: rgba(186, 186, 186, 0.2901960784);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(234, 234, 235, 0.2);
  padding: 80px 20px;
}
.error-page h1 {
  font-size: 200px;
  line-height: 1;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .error-page h1 {
    font-size: 150px;
  }
}
@media screen and (max-width: 575px) {
  .error-page {
    padding: 40px 20px;
  }
  .error-page h1 {
    font-size: 130px;
  }
}
/* social icon style1 */
.social-icon-style1 li {
  margin-left: 15px;
  display: inline-block;
}
.social-icon-style1 li:first-child {
  margin-left: 0px;
}
.social-icon-style1 li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 40px;
  color: #1f4130;
  text-align: center;
  background: #ffffff;
  box-shadow: 6px 5px 16px 0px rgba(0, 0, 0, 0.15);
  transition: 0.5s;
}
.social-icon-style1 li a:hover {
  background-color: #1f4130;
  color: #fff;
}

/* newsletter */
.newsletter .quform-elements {
  position: relative;
}
.newsletter .quform-submit-inner {
  position: absolute;
  right: 10px;
  top: 1px;
  width: auto;
}
.newsletter .quform-loading-wrap {
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 0;
}
.newsletter input {
  height: 50px;
  padding: 0.5rem 4rem 0.5rem 1.5rem;
}
.newsletter .quform-has-error input {
  border-color: #f5543f;
}

.newsletter-rounded .quform-has-error textarea, .newsletter-rounded .quform-has-error select {
  border-color: #f5543f;
}

.newsletter .quform-input .quform-errors-wrap {
  right: 15px;
}
.newsletter i {
  font-size: 1.5rem;
  line-height: 2rem;
}

/* contact-info */
.contact-info {
  margin-top: -90px;
  z-index: 9;
  position: relative;
  box-shadow: 0px 0px 10px 0px rgba(89, 75, 128, 0.09);
}

/* team */
.team-carousel.owl-theme .owl-nav [class*=owl-] {
  margin: 0;
}
.team-carousel .owl-nav {
  position: absolute;
  bottom: 0;
  left: -120px;
  display: block !important;
}
.team-carousel .owl-nav i {
  color: #fff;
  font-size: 15px;
  line-height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: block;
  border-radius: 0px;
  width: 50px;
  height: 40px;
}

.team-left-box {
  display: table;
  min-height: 512px;
  height: 100%;
  margin-right: 20px;
  z-index: 1;
  position: relative;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.team-left-inner {
  display: table-cell;
  vertical-align: middle;
  padding: 0 90px;
}

@media screen and (max-width: 1399px) {
  .team-left-inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1199px) {
  .team-left-box {
    min-height: auto;
    margin-right: 0;
    position: relative;
    border-bottom-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 50px 30px;
  }
  .team-carousel .owl-nav {
    top: -50px;
    right: 0;
    left: auto;
    bottom: auto;
  }
}
@media screen and (max-width: 991px) {
  .team-left-inner {
    padding: 0 0px;
  }
}
/* join our club */
.membership {
  overflow: visible;
  margin-top: -102px;
  position: relative;
  z-index: 9;
  background: transparent;
}

.membership-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 100px;
  height: 100%;
  background-color: #ceaa4d;
  z-index: 1;
}
.membership-text:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  width: 100px;
  height: 100%;
  background-color: #ceaa4d;
}

@media screen and (max-width: 1199px) {
  .membership-text:before, .membership-text:after {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .membership-img {
    display: none;
  }
  .membership-text:before, .membership-text:after {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .membership-text:before, .membership-text:after {
    display: none;
  }
}
#porchCarousel .carousel-item {
  max-height: 640px;
}

.carousel-inner img {
  max-height: 100%;
}

/* quform */
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  margin-bottom: 0.5rem;
}

.form-control:focus {
  border-color: #cda94d;
}

.form-check-input:checked {
  border-color: #cda94d;
  background-color: #cda94d;
}

.quform-input {
  position: relative;
}
.quform-input .quform-errors-wrap {
  position: absolute;
  right: 8px;
  top: 0;
  line-height: normal;
  z-index: 1;
}

.quform-element > label {
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 16px;
}
.quform-element > label .quform-required {
  color: #cc0101;
  font-size: 17px;
}

.quform-inner input {
  width: 100%;
}

.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top;
}
.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px;
}

.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal;
}
.quform-errors > .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 12px;
  line-height: normal;
  letter-spacing: normal;
}

.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.quform-has-error input, .quform-has-error textarea, .quform-has-error select, .quform-has-error input[type=file], .quform-has-error .custom-file-label {
  border-color: #f5543f;
}

.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.quform-submit-inner {
  float: none;
}

.quform-loading-wrap {
  float: none;
}
.quform-loading-wrap .quform-loading {
  display: inline-block;
}

.quform-element {
  margin-bottom: 1rem;
}

/* custom file */
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

/* ===================================
    Accordion
====================================== */
.accordion-style .card {
  background: transparent;
  box-shadow: none;
  margin-bottom: 15px;
  margin-top: 0 !important;
  border: none;
}
.accordion-style .card:last-child {
  margin-bottom: 0;
}
.accordion-style .card-header {
  border: 0;
  background: none;
  padding: 0;
  border-bottom: none;
}
.accordion-style .btn-link {
  color: #ffffff;
  position: relative;
  background: #1f4130;
  border: 1px solid #1f4130;
  display: block;
  width: 100%;
  font-size: 18px;
  border-radius: 3px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  text-align: left;
  white-space: normal;
  box-shadow: none;
  padding: 15px 55px;
  text-decoration: none;
}
.accordion-style .btn-link:hover {
  text-decoration: none;
}
.accordion-style .btn-link.collapsed {
  background: #ffffff;
  border: 1px solid #1f4130;
  color: #1e2022;
  border-radius: 3px;
}
.accordion-style .btn-link.collapsed:after {
  background: none;
  border-radius: 3px;
  content: "+";
  left: 16px;
  right: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  height: 26px;
  transform: none;
  width: 26px;
  top: 15px;
  text-align: center;
  background-color: #1f4130;
  color: #fff;
}
.accordion-style .btn-link:after {
  background: #fff;
  border: none;
  border-radius: 3px;
  content: "-";
  left: 16px;
  right: inherit;
  font-size: 20px;
  font-weight: 600;
  height: 26px;
  line-height: 26px;
  transform: none;
  width: 26px;
  top: 15px;
  position: absolute;
  color: #1f4130;
  text-align: center;
}
.accordion-style .card-body {
  padding: 20px;
  border-top: none;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-left: 1px solid #1f4130;
  border-right: 1px solid #1f4130;
  border-bottom: 1px solid #1f4130;
}

@media screen and (max-width: 767px) {
  .accordion-style .btn-link {
    padding: 15px 40px 15px 55px;
  }
}
@media screen and (max-width: 575px) {
  .accordion-style .btn-link {
    padding: 15px 20px 15px 55px;
  }
}
/* ===================================
    Portfolio
====================================== */
/* Popup gallery*/
.lg-backdrop {
  z-index: 99999;
}

.lg-outer {
  z-index: 999999;
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #ceaa4d;
}

.lg-progress-bar .lg-progress {
  background-color: #ceaa4d;
}

.lg-backdrop.in {
  opacity: 0.85;
}

/* filtering */
.filtering {
  margin-bottom: 20px;
}
.filtering span {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 20px;
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #eeeeee;
  border-radius: 3px;
}
.filtering span:last-child {
  margin: 0;
}
.filtering .active {
  color: #fff;
  background-color: #1f4130;
}

@media screen and (max-width: 991px) {
  .filtering span {
    margin-right: 15px;
    padding: 10px 13px;
  }
}
@media screen and (max-width: 767px) {
  .filtering span {
    margin-right: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 575px) {
  .filtering span {
    margin-right: 10px;
    padding: 7px 14px;
  }
}
/* portfolio style1  */
.portfolio-box .portfolio-img img {
  margin-left: 30px;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-radius: 3px;
}
.portfolio-box:hover .portfolio-img img {
  margin-left: 0;
}
.portfolio-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: #1f4130;
  opacity: 0;
  z-index: 9;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  border-radius: 3px;
}
.portfolio-box:hover:before {
  opacity: 0.9;
}
.portfolio-box .portfolio-content {
  color: #fff;
  z-index: 9;
  position: absolute;
  padding: 30px 30px 30px 45px;
  bottom: 0;
  left: 0;
  opacity: 0;
  display: inline-block;
  width: 100%;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.portfolio-box:hover .portfolio-content {
  opacity: 1;
  padding: 30px;
}

/* portfolio style2  */
.portfolio-box-2 {
  display: inline-block;
  width: 100%;
  float: left;
}
.portfolio-box-2 .portfolio-img img {
  width: 100%;
  transform: scale(1);
  opacity: 1;
  transition: opacity 500ms ease, transform 500ms ease;
  border-radius: 3px;
}
.portfolio-box-2:hover .portfolio-img img {
  transform: scale(1.05);
}
.portfolio-box-2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: #1f4130;
  opacity: 0;
  z-index: 9;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  border-radius: 3px;
}
.portfolio-box-2:hover:before {
  opacity: 0.9;
}
.portfolio-box-2 .portfolio-content {
  color: #fff;
  z-index: 9;
  position: absolute;
  padding: 30px 30px 30px 45px;
  top: 0;
  left: 0;
  opacity: 0;
  display: inline-block;
  width: 100%;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.portfolio-box-2:hover .portfolio-content {
  opacity: 1;
}

/* ===================================
    Pages
====================================== */
/* count-down */
ul.countdown li {
  border-right: 1px solid #626262;
  display: inline-block;
  padding: 0 30px;
  text-align: center;
}
ul.countdown li:first-child {
  padding-left: 0;
}
ul.countdown li:last-child {
  border: medium none;
  padding-right: 0;
}
ul.countdown li span {
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  position: relative;
}
ul.countdown li span::before {
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
}
ul.countdown li p.timeRefDays, ul.countdown li p.timeRefHours, ul.countdown li p.timeRefMinutes, ul.countdown li p.timeRefSeconds {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  ul.countdown li {
    padding: 0 8px;
  }
  ul.countdown li span {
    font-size: 22px;
  }
}
/* modal */
.modal-backdrop {
  z-index: 99999;
}

.modal {
  z-index: 999999;
}

/* elements page */
.icon-gallery .d-table {
  margin-top: 30px;
}
.icon-gallery .d-table-cell {
  width: 125px;
  height: 125px;
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, 0.075);
  vertical-align: middle;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  padding: 10px;
  background: #fff;
}
.icon-gallery i {
  display: block;
  margin-bottom: 15px;
  font-size: 28px;
  color: #ceaa4d;
}

/* Copy Elements */
pre[class*=language-] {
  max-height: 45vh;
  height: 100%;
  margin: 35px 0 15px 0;
  padding-top: 0;
}

.html-code {
  background-color: #fbfbfb;
  position: relative;
  box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ededed;
}
.html-code:before {
  color: #c8dfab;
  content: "•••";
  font-size: 30px;
  left: 24px;
  letter-spacing: 4px;
  line-height: 12px;
  position: absolute;
  top: 24px;
}

.copy-element {
  position: absolute;
  top: 0;
  right: 85px;
  transition: opacity 0.3s ease-in-out;
}

.source-element {
  position: absolute;
  top: 0;
  right: 0;
  transition: opacity 0.3s ease-in-out;
}

.html-code .copy-element {
  top: 15px;
  right: 30px;
}
.html-code:hover .copy-element, .html-code:hover .source-element {
  opacity: 1;
}

.box-hover:hover .copy-element, .box-hover:hover .source-element {
  opacity: 1;
}

.copy-element > a, .source-element > a {
  border-radius: 0.25rem;
  background: #dde1e6;
  color: #777 !important;
  display: inline-block;
  padding: 5px 15px;
  font-size: 14px;
  text-transform: capitalize;
  cursor: pointer !important;
  font-weight: 600;
}

.copy-element > a:hover, .source-element > a:hover {
  background: #ceaa4d;
  color: #fff !important;
}

.copy-clipboard {
  cursor: pointer;
  padding: 5px 15px;
}

.white-popup-block {
  background-color: #fbfbfb;
  position: relative;
  max-width: 650px;
  box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
  padding: 60px 30px 30px 30px;
  border-radius: 5px;
  margin: 40px auto;
  border: 1px solid #ededed;
}
.white-popup-block.popup-copy.mfp-hide {
  display: block !important;
  height: 0;
  position: absolute;
  z-index: -1;
  padding: 0;
  opacity: 0;
  margin: 0;
}
.white-popup-block:before {
  color: rgba(3, 169, 245, 0.2);
  content: "•••";
  font-size: 30px;
  left: 24px;
  letter-spacing: 4px;
  line-height: 12px;
  position: absolute;
  top: 24px;
}
.white-popup-block:hover .copy-element {
  opacity: 1;
}
.white-popup-block .copy-element {
  top: 45px;
  right: 30px;
}

.box-hover {
  position: relative;
}
.box-hover .container {
  position: relative;
}

.inner-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  margin-bottom: 35px;
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .elements-block .inner-title {
    margin-bottom: 65px;
  }
  .copy-element, .source-element {
    top: 65px;
  }
}
/* history section */
.history-even .history-year {
  height: 35px;
  width: 90px;
  background-color: #1f4130;
  color: white;
  border-radius: 3px;
  margin: 0 auto;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  line-height: 2;
}
.history-even .history-year:before {
  position: absolute;
  content: "";
  height: 50px;
  width: 5px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  background-color: #e12454;
  bottom: -50px;
}
.history-even .history-year:after {
  position: absolute;
  content: "";
  height: 50px;
  width: 5px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  background-color: inherit;
  bottom: -50px;
}
.history-even .history-line {
  height: 10px;
  width: 100%;
  margin: 35px 0px 40px;
  background: #1f4130;
  position: relative;
}

.history-line:before {
  position: absolute;
  content: "";
  left: 0;
  border: 5px solid transparent;
  border-left-color: #ffffff;
  border-right: 0;
}
.history-line:after {
  position: absolute;
  content: "";
  border-right: 0;
  left: auto;
  right: -5px;
  border: 5px solid #ffffff;
  border-left-color: transparent;
}

.history-text {
  text-align: center;
  min-height: 94px;
  display: block;
}

.history-odd .history-year {
  height: 35px;
  width: 90px;
  background-color: #ceaa4d;
  color: white;
  border-radius: 3px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  line-height: 2;
  bottom: -40px;
}
.history-odd .history-year:before, .history-odd .history-year:after {
  position: absolute;
  content: "";
  height: 50px;
  width: 5px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  background-color: #ceaa4d;
  top: -50px;
}
.history-odd .history-line {
  height: 10px;
  width: 100%;
  margin: 37px 0 40px;
  background: #ceaa4d;
  position: relative;
}

@media screen and (max-width: 991px) {
  .history-even .history-line {
    margin: 35px 0px 40px;
  }
}
@media screen and (max-width: 767px) {
  .history-odd .history-year {
    bottom: 169px;
  }
  .history-odd .history-year:before {
    top: 50px;
  }
  .history-odd .history-year:after {
    top: 35px;
  }
  .history-line {
    display: none;
  }
  .history-even .history-year {
    bottom: 60px;
  }
}
.map {
  height: 400px;
  width: 100%;
}

/* course */
.course-doc li a {
  display: block;
  padding: 13px 2px;
  border-radius: 3px;
  border: 1px solid #1f4130;
  text-align: center;
}
.course-doc li a:hover {
  background-color: #1f4130;
  color: #fff;
}

/*search page*/
.search-form_input {
  color: #ceaa4d;
}

.search-frame h4 a:hover {
  color: #ceaa4d;
}
.search-frame .search_list .match {
  color: #ceaa4d;
}
.search-frame .search_list li:before {
  color: #ceaa4d;
}
.search-frame .search_list li + li {
  border-top: 3px solid #ceaa4d;
}
.search-frame .search {
  color: #ceaa4d;
}

/* ===================================
    Blog
====================================== 
/* blog list */
.sidebar .widget {
  background: #fff;
  box-shadow: 0 0 14px rgba(82, 85, 90, 0.1);
  border-radius: 3px;
}
.sidebar .search-box .input-group {
  position: relative;
  margin: 0px;
  padding-right: 62px;
}
.sidebar .search-box .input-group input.form-control {
  position: relative;
  display: block;
  width: 100%;
  height: 46px;
  background: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 3px !important;
  font-size: 18px;
  color: #606060;
  padding: 10px 20px;
}
.sidebar .search-box .main-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 46px;
  height: 46px;
  line-height: 45px;
  font-size: 17px;
  color: #ffffff;
  background: #1f4130;
  border: 1px solid #1f4130;
  border-radius: 5px;
  cursor: pointer;
  transition: all 500ms ease;
}
.sidebar .search-box .main-btn:hover {
  border: 1px solid #ceaa4d;
  background-color: #ceaa4d;
  color: #fff;
}

.tags a {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  margin: 0.6rem 10px 0 0;
  display: inline-block;
}
.tags a:hover {
  background-color: #1f4130;
  color: #fff;
  border: 1px solid #1f4130;
}

/* ===================================
    Footer
====================================== */
footer {
  padding: 80px 0 0;
}

.footer-logo {
  max-width: 100%;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  footer {
    padding-top: 60px;
  }
}
/*footer bar*/
.footer-bar {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

/*footer list*/
.footer-list {
  list-style: none;
  margin-bottom: 0;
}
.footer-list li {
  position: relative;
  margin-bottom: 8px;
}
.footer-list li:last-child {
  margin-bottom: 0;
}
.footer-list li a {
  color: #fff;
}
.footer-list li a:hover {
  color: #ceaa4d;
}

.footer1-left {
  display: table;
  position: relative;
  z-index: 1;
  text-align: center;
  min-height: 100%;
}
.footer1-left .left-data {
  display: table-cell;
  vertical-align: middle;
  padding: 0 90px;
}
.footer1-left ul li a i {
  color: #1f4130;
}
.footer1-left ul li a i:hover {
  color: #ceaa4d;
}

.footer1-right {
  padding: 85px 85px;
}

@media screen and (max-width: 1399px) {
  .footer1-right {
    padding: 85px 44px;
  }
  .footer1-left .left-data {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1199px) {
  .footer1-left {
    display: inherit;
  }
  .footer1-left .left-data {
    padding: 40px 45px;
    display: inherit;
  }
}
@media screen and (max-width: 991px) {
  .footer1-right {
    padding: 50px 30px;
  }
  .footer1-left .left-data {
    padding: 35px 61px;
  }
}
@media screen and (max-width: 767px) {
  .footer1-right, .footer1-left .left-data {
    padding: 50px 50px;
  }
}
@media screen and (max-width: 575px) {
  .footer1-left .left-data, .footer1-right {
    padding: 50px 30px;
  }
}
