:root {
  --primary-color: #bd1f17;
  --secondary-color: #ecba23;
  --dark-color: #232323;
}
/* =========================
CHEF MENU CSS
========================= */

.chef-menu-section{
    padding:80px 0;
    background:#f7f1e3;
}

.chef-menu-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    align-items:stretch;
}

.chef-menu-box{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,0.08);
    border:2px solid #f1e2ba;
    height:100%;
    transition:0.4s;
    display:flex;
    flex-direction:column;
}

.chef-menu-box:hover{
    transform:translateY(-8px);
}

.chef-menu-content{
    padding:40px 35px;
    display:flex;
    flex-direction:column;
    height:100%;
}
.chef-tag{
    display:inline-block;
    background:#ecba23;
    color:#4b2e14;
    font-size:14px;
    font-weight:700;
    padding:8px 22px;
    border-radius:50px;
    margin-bottom:25px;
    width:max-content;
    text-transform:uppercase;
    letter-spacing:1px;
}
.menu-main-title{
    font-size:32px;
    font-weight:800;
    color:#4b2e14;
    margin-bottom:25px;
    position:relative;
    padding-bottom:15px;
}

.menu-main-title:after{
    content:'';
    width:80px;
    height:4px;
    background:#ecba23;
    position:absolute;
    left:0;
    bottom:0;
    border-radius:10px;
}

.drink-list{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:40px;
}

.drink-item{
    width:100%;
    background:#fff7e5;
    border:1px solid #f0ddb0;
    border-radius:14px;
    padding:16px 20px;
    text-align:center;
    font-size:18px;
    font-weight:700;
    color:#4b2e14;
    transition:0.3s;
    letter-spacing:1px;
}

.drink-item:hover{
    background:#bd1f17;
    color:#fff;
    transform:translateX(5px);
}

.chef-bottom{
    margin-top:auto;
    text-align:center;
    border-top:1px solid #eee;
    padding-top:30px;
}

.chef-price{
    font-size:28px;
    font-weight:800;
    color:#bd1f17;
    margin-bottom:25px;
    line-height:1.5;
}

.chef-btn{
    display:inline-block;
    background:#bd1f17;
    color:#fff;
    text-decoration:none;
    padding:15px 38px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    transition:0.3s;
}

.chef-btn:hover{
    background:#ecba23;
    color:#fff;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .chef-menu-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .chef-menu-section{
        padding:50px 0;
    }

    .chef-menu-content{
        padding:25px 20px;
    }

    .menu-main-title{
        font-size:25px;
    }

    .drink-item{
        font-size:16px;
        padding:14px 15px;
    }

    .chef-price{
        font-size:22px;
    }

    .chef-btn{
        width:100%;
        text-align:center;
    }

}


/* =========================END CHEF MENU CSS========================= */
/* =========================
MODAL
========================= */

.quote-modal{

    border:none;
    border-radius:25px;
    overflow:hidden;
    background:#ffffff;
    box-shadow:0 10px 40px rgba(0,0,0,0.15);

}

/* =========================
HEADER
========================= */

.quote-header{

    background:linear-gradient(135deg,#d9232d,#a5151d);
    padding:30px;
    border:none;
    color:#fff;

}

.quote-title{

    margin:0;
    font-size:28px;
    font-weight:700;

}

.quote-subtitle{

    margin:8px 0 0;
    opacity:0.9;
    font-size:14px;

}

/* =========================
BODY
========================= */

.quote-body{

    padding:35px;

}

/* =========================
LABEL
========================= */

.quote-label{

    font-size:15px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
    display:block;

}

/* =========================
INPUT WRAPPER
========================= */

.input-wrapper{

    position:relative;

}

/* =========================
ICON
========================= */

.input-icon{

    position:absolute;
    top:50%;
    left:18px;
    transform:translateY(-50%);
    color:#999;
    font-size:14px;
    z-index:2;

}

/* =========================
INPUT
========================= */

.quote-input{

    height:55px;
    border:2px solid #f1f1f1 !important;
    border-radius:16px !important;
    padding-left:50px !important;
    font-size:15px !important;
    background:#fafafa !important;
    transition:0.3s;
    box-shadow:none !important;

}

.quote-input:focus{

    border-color:#d9232d !important;
    background:#fff !important;
    box-shadow:0 0 15px rgba(217,35,45,0.15) !important;

}

/* =========================
TEXTAREA
========================= */

.quote-textarea{

    border:2px solid #f1f1f1 !important;
    border-radius:18px !important;
    padding:18px 20px !important;
    font-size:15px !important;
    resize:none !important;
    background:#fafafa !important;
    transition:0.3s;
    box-shadow:none !important;

}

.quote-textarea:focus{

    border-color:#d9232d !important;
    background:#fff !important;
    box-shadow:0 0 15px rgba(217,35,45,0.15) !important;

}

/* =========================
PLACEHOLDER
========================= */

.quote-input::placeholder,
.quote-textarea::placeholder{

    color:#999;

}

/* =========================
BUTTON
========================= */

.quote-submit-btn{

    width:100%;
    height:55px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#d9232d,#a5151d);
    color:#fff;
    font-size:16px;
    font-weight:700;
    transition:0.3s;

}

.quote-submit-btn:hover{

    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(217,35,45,0.3);

}

/* =========================
MOBILE
========================= */

@media(max-width:576px){

    .quote-body{

        padding:25px;

    }

    .quote-title{

        font-size:24px;

    }

}
/*End*/
#nav li a.active{
    color:#c52d2f !important;
    font-weight:700;
}

#nav li.active > a{
    color:#c52d2f !important;
}
/*menu end*/


#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 #bd1f17;
  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 #bd1f17;
  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;
  }
}
a:hover,
a:active {
  color: #bd1f17;
  text-decoration: none;
}
.h-100vh {
  height: 100vh;
}
.bg-black-opacity {
  background-color: rgba(0, 0, 0, 0.5);
}
.primary-overlay[data-overlay-dark]:before {
  background: #bd1f17;
}
.secondary-overlay[data-overlay-dark]:before {
  background: #ecba23;
}
.left-overlay-dark[data-overlay-dark]:before {
  background: rgba(225, 225, 225, 0.76);
  background: linear-gradient(-80deg, transparent, #232323 55%);
}
.text-primary,
.text-primary-hover:hover {
  color: #bd1f17 !important;
}
.bg-primary {
  background-color: #bd1f17 !important;
}
.text-secondary,
.text-secondary-hover:hover {
  color: #ecba23 !important;
}
.bg-secondary {
  background-color: #ecba23 !important;
}
.bg-dark {
  background-color: #232323 !important;
}
.text-dark {
  color: #ecba23 !important;
}
.form-control {
  border-radius: 50px;
  padding: 0.375rem 1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}
.primary-shadow {
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
}
.min-vh-100 {
  min-height: 100vh;
}
.mt-n12 {
  margin-top: -12rem;
}
.scroll-top-percentage {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 50px;
  color: #fff;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}
.scroll-top-percentage.active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  animation: scrollToTop 500ms ease-in-out;
  transition: 0.3s;
}
@media (max-width: 575px),
  (min-width: 576px) and (max-width: 767px),
  (min-width: 992px) and (max-width: 1199px) {
  .scroll-top-percentage {
    right: 30px;
    bottom: 20px;
  }
}
#scroll-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  color: var(--rr-common-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 600;
}
#scroll-value i {
  font-size: 20px;
}
@keyframes scrollToTop {
  0% {
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  100% {
    transform: translateZ(0);
  }
}
.list-style1 li {
  position: relative;
  padding-left: 20px;
}
.list-style1 li:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
  top: 11px;
  left: 0;
}
.list-style2 {
  list-style: none;
  padding-left: 0;
}
.list-style2 li {
  line-height: 32px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 8px;
}
.list-style2 li:last-child {
  margin-bottom: 0;
}
.list-style2 li:before {
  content: "\e64c";
  font-family: "themify";
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  line-height: 35px;
  color: #bd1f17;
}
.list-style02 li {
  display: inline-block;
  margin-right: 2rem;
}
.list-style02 li:last-child {
  margin-right: 0;
}
.list-style02 li a {
  color: rgba(255, 255, 255, 0.6);
}
.list-style02 li a:hover {
  color: #ecba23;
}
.btn-style1 {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1px;
  color: #ffffff;
  background: #bd1f17;
  padding: 12px 38px 14px 38px !important;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
  font-family: "Antonio", sans-serif;
  transition: all 0.4s ease-in-out 0s;
}
.btn-style1:hover {
  background: #ecba23;
}
.btn-style1 span {
  position: relative;
  z-index: 9;
  color: #ffffff;
}
.btn-style1.secondary {
  background: #bd1f17;
}
.btn-style1.secondary:hover {
  background: #bd1f17;
}
.btn-style1.secondary:before {
  border-color: #bd1f17;
}
.btn-style1.white-hover:hover,
.btn-style1.white-hover:active,
.btn-style1.white-hover:focus {
  background: #fff;
  transition: all 0.4s ease-in-out 0s;
}
.btn-style1.white-hover:hover span,
.btn-style1.white-hover:active span,
.btn-style1.white-hover:focus span {
  color: #bd1f17;
  transition: all 0.4s ease-in-out 0s;
}
.btn-style1.white-border:before {
  border-color: #fff;
}
.btn-style1.medium {
  padding: 10px 30px !important;
  font-size: 14px;
}
.btn-style1.small {
  padding: 8px 28px !important;
  font-size: 14px;
}
.btn-style1.md {
  padding: 7px 27px !important;
}
@media screen and (min-width: 992px) {
  .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1 {
    color: #fff;
    border: 1px solid transparent;
  }
  .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:hover,
  .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:active,
  .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:focus {
    color: #bd1f17;
    border: 1px solid #ecba23;
  }
}
.top-bar-info {
  display: inline-block;
  vertical-align: middle;
}
.top-bar-info ul {
  margin-bottom: 0;
}
.top-bar-info li {
  font-weight: 500;
  color: #fff;
  list-style-type: none;
  font-size: 14px;
  padding: 0 5px 0;
  display: inline-block;
  margin-bottom: 0;
}
.top-bar {
  display: block;
  position: relative;
  z-index: 999;
  padding: 7px 0;
}
.top-bar-info li i {
  font-size: 16px;
  color: #fff;
  margin-right: 8px;
  margin-top: 0;
  display: inline-block;
  vertical-align: text-bottom;
}
.top-social-icon {
  padding: 0;
  float: right;
  margin: 0;
}
.top-social-icon li {
  font-size: 14px;
  list-style-type: none;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0 7px;
}
.top-social-icon li:last-child {
  padding-right: 0;
}
.top-social-icon li:last-child a {
  padding-right: 0;
}
.top-social-icon li a {
  color: #fff;
  line-height: 28px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 0 3px;
}
.top-social-icon li a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.navbar-default {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
}
.navbar-nav li.current > a,
.navbar-nav li.active > a {
  color: #d7c12f;
}
.attr-nav > ul > li > a.butn {
  color: #fff;
}
.navbar > ul > li.current > a:after {
  border-color: transparent #d7c12f #d7c12f transparent;
}
.menu_area-light .navbar-nav li.current > a,
.menu_area-light .navbar-nav li.active > a {
  color: #d7c12f;
}
.menu_area-light .navbar > ul > li.current > a:after {
  border-color: transparent #d7c12f #d7c12f transparent;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a {
  color: #d7c12f;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
  color: #d7c12f;
}
.menu_area-light.scrollHeader .navbar-nav li.active > a {
  color: #d7c12f;
}
.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #d7c12f #d7c12f transparent;
}
.navbar ul ul > li.has-sub:hover > a:before {
  top: 15px;
}
.navbar ul ul li.has-sub > a:before {
  top: 16px;
  right: 26px;
  width: 2px;
  height: 10px;
  background: #d7c12f;
}
.navbar ul ul li.has-sub > a:after {
  top: 20px;
  right: 22px;
  width: 10px;
  height: 2px;
  background: #d7c12f;
}
.header-style3 .navbar-nav li.current > a,
.header-style3 .navbar-nav li.active > a {
  color: #d7c12f;
}
@media screen and (min-width: 992px) {
  .menu_area-light .navbar ul ul li.active > a {
    color: #d7c12f;
  }
  .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
    border-color: #d7c12f;
  }
  .menu_area-light .navbar-nav li.has-sub a:hover,
  .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #d7c12f;
  }
  .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #d7c12f;
  }
  .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
    border-color: transparent #d7c12f #d7c12f transparent;
  }
  .header-style2.scrollHeader .navbar-nav li.current > a {
    color: #d7c12f;
  }
  .header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: #d7c12f;
  }
  .header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #d7c12f #d7c12f transparent;
  }
  .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
    border-color: transparent #d7c12f #d7c12f transparent;
  }
  .header-style2 .navbar > ul > li.has-sub > a:hover:after,
  .header-style2 .navbar > ul > li.has-sub > a:active:after,
  .header-style2 .navbar > ul > li.has-sub > a:focus:after {
    border-color: transparent #d7c12f #d7c12f transparent;
  }
  .header-style2 .navbar ul ul li.active > a {
    color: #d7c12f;
  }
  .header-style2 .navbar-nav li.has-sub a:hover,
  .header-style2 .navbar-nav li.has-sub a:active,
  .header-style2 .navbar-nav li.has-sub a:focus {
    color: #d7c12f;
  }
  .header-style2 .navbar-nav li.current > a,
  .header-style2 .navbar-nav li.active > a {
    color: #d7c12f;
  }
  .header-style3 .navbar-nav li.active > a {
    color: #d7c12f;
  }
  .header-style3 .navbar-nav > li > a:hover,
  .header-style3 .navbar-nav > li > a:active,
  .header-style3 .navbar-nav > li > a:focus {
    color: #d7c12f;
  }
  .header-style3 .navbar ul ul li.active > a {
    color: #d7c12f;
  }
  .header-style3 .navbar-nav li.has-sub a:hover,
  .header-style3 .navbar-nav li.current > a {
    color: #d7c12f;
  }
  .header-style3 .navbar-nav > li.has-sub > a:hover {
    color: #d7c12f;
  }
  .header-style3 .navbar > ul > li.has-sub > a:hover:after,
  .header-style3 .navbar > ul > li.current > a:after {
    border-color: transparent #d7c12f #d7c12f transparent;
  }
  .header-style3.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #d7c12f;
  }
  .header-style3.scrollHeader .navbar > ul > li.has-sub > a:hover:after {
    border-color: transparent #d7c12f #d7c12f transparent;
  }
  .header-style3.scrollHeader .navbar-nav > li.active > a {
    color: #d7c12f;
  }
  .header-style3.scrollHeader .navbar-nav li.current > a {
    color: #d7c12f;
  }
  .header-style3.scrollHeader .navbar-nav li.current > a:hover {
    color: #d7c12f;
  }
  .header-style3.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #d7c12f #d7c12f transparent;
  }
}
@media screen and (max-width: 991px) {
  .header-style1 .navbar-toggler {
    background: #229f72;
  }
  .header-style1 .navbar-toggler:after {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .header-style1 .navbar-toggler:before {
    background: #fff;
  }
  .header-style1 .navbar-toggler.menu-opened:after,
  .header-style1 .navbar-toggler.menu-opened:before {
    background: #fff;
  }
}
@media screen and (max-width: 991px) {
  .header-style3 .navbar-toggler {
    background: #229f72;
  }
  .header-style3 .navbar-toggler:after {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .header-style3 .navbar-toggler:before {
    background: #fff;
  }
  .header-style3 .navbar-toggler.menu-opened:after,
  .header-style3 .navbar-toggler.menu-opened:before {
    background: #fff;
  }
}
.header-style2 .navbar-nav li.current > a {
  color: #d7c12f;
}
.header-style2 .navbar > ul > li.current > a:after {
  border-color: transparent #d7c12f #d7c12f transparent;
}
.header-style2.scrollHeader .navbar-nav li.current > a {
  color: #d7c12f;
}
.header-style2.scrollHeader .navbar-nav li.current > a:hover {
  color: #d7c12f;
}
.header-style2.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #d7c12f #d7c12f transparent;
}
@media screen and (min-width: 992px) {
  .header-style2 .navbar ul ul li.active > a {
    color: #d7c12f;
  }
  .header-style2 .butn.secondary:before {
    background: #ffffff;
  }
  .header-style2 .butn.secondary:hover,
  .header-style2 .butn.secondary:focus,
  .header-style2 .butn.secondary:active {
    color: #18455d !important;
  }
  .header-style2.scrollHeader .butn.secondary:before {
    background: #d7c12f;
  }
  .header-style2.scrollHeader .butn.secondary:hover,
  .header-style2.scrollHeader .butn.secondary:focus,
  .header-style2.scrollHeader .butn.secondary:active {
    color: #fff !important;
  }
}
.owl-carousel .owl-nav button.owl-next {
  right: 15px;
}
.owl-carousel .owl-nav button.owl-prev {
  left: 15px;
}
.slider-fade2 .bg-img {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 8000ms linear;
}
.slider-fade2 .owl-item.active .bg-img {
  transform: scale(1.25);
}
.slider-fade2 .item {
  height: 100vh;
}
.slider-fade2 .owl-item {
  position: relative;
}
.slider-fade2 h1 {
  margin-bottom: 25px;
  animation-delay: 0.8s;
}
.slider-fade2 p {
  animation-delay: 1.2s;
}
.slider-fade2 a {
  animation-delay: 1.6s;
}
.slider-fade2 .owl-dots {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  margin: 0 !important;
}
.slider-fade2 .video_btn {
  background: rgba(29, 70, 93, 0.3);
  color: #18455d;
}
.slider-fade2 .video_btn:before,
.slider-fade2 .video_btn:after {
  content: none !important;
}
.slider-fade2.owl-theme .owl-dots {
  counter-reset: dots;
  font-size: 1.7rem;
  color: #18455d;
}
.slider-fade2.owl-theme .owl-dots .owl-dot {
  position: relative;
  display: block;
  color: #fff;
}
.slider-fade2.owl-theme .owl-dots .owl-dot.active {
  color: #ecba23;
}
.slider-fade2.owl-theme .owl-dots .owl-dot:before {
  counter-increment: dots;
  content: counter(dots, decimal-leading-zero);
  position: absolute;
  right: 8px;
  font-weight: 800;
  z-index: 2;
  font-size: 30px;
}
.slider-fade2.owl-theme .owl-dots .owl-dot span {
  background: transparent;
  height: 60px;
  width: 50px;
  border-radius: 0;
  position: relative;
  margin: 0 20px 10px 0;
}
.slider-fade2.owl-theme .owl-dots .owl-dot:last-child span:before {
  content: none;
}
.slider-fade2.owl-theme .owl-dots .owl-dot.active span,
.slider-fade2.owl-theme .owl-dots .owl-dot:hover span {
  background-color: transparent;
}
.slider-fade2.owl-theme .owl-nav [class*="owl-"]:hover {
  background: none;
  color: unset;
  text-decoration: none;
}
.slider-fade2.owl-carousel .owl-nav {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 20px;
}
.slider-fade2.owl-carousel .owl-nav button.owl-prev,
.slider-fade2.owl-carousel .owl-nav button.owl-next {
  display: block;
}
.slider-fade2.owl-carousel .owl-nav button.owl-prev i,
.slider-fade2.owl-carousel .owl-nav button.owl-next i {
  width: 57px;
  height: 57px;
  background-color: #ecba23;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  line-height: 57px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-fade2.owl-carousel .owl-nav button.owl-prev i:hover,
.slider-fade2.owl-carousel .owl-nav button.owl-next i:hover {
  background-color: #bd1f17;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .slider-fade2.owl-theme .owl-dots {
    display: none;
  }
}
@media (max-width: 991px) {
  .slider-fade2.owl-carousel .owl-nav {
    position: absolute;
    transform: translateX(-50%);
    top: inherit;
    bottom: 20px;
    left: 50%;
  }
  .slider-fade2.owl-carousel .owl-nav button.owl-prev,
  .slider-fade2.owl-carousel .owl-nav button.owl-next {
    display: inline-block;
  }
  .slider-fade2.owl-carousel .owl-nav button.owl-prev i,
  .slider-fade2.owl-carousel .owl-nav button.owl-next i {
    width: 50px;
    height: 50px;
  }
}
.banner-style01 h1 {
  font-size: 121px;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: -0.03em;
}
@media (max-width: 1599px) {
  .banner-style01 h1 {
    font-size: 105px;
  }
}
@media (max-width: 1399px) {
  .banner-style01 h1 {
    font-size: 95px;
  }
}
@media (max-width: 767px) {
  .banner-style01 h1 {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .banner-style01 h1 {
    font-size: 40px;
  }
}
.banner-shape {
  transform: rotate(180deg);
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  direction: ltr;
  z-index: 9;
}
.banner-shape svg {
  width: calc(300% + 1.3px);
  height: 181px;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.banner-shape .shape-fill {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg);
}
.banner-style02 .banner-title .title {
  width: 60px;
  display: inline-block;
  height: 1px;
  background: #fff;
  vertical-align: middle;
  text-align: center;
}
.banner-style02 .banner-btn a:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #bd1f17;
  content: "";
  transition: transform 0.2s ease;
  transform-origin: 100% 0;
}
.banner-style02 .banner-btn a:hover:before {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.section-title-01 .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 79px;
  text-align: center;
  justify-content: center;
  height: 2px;
  background: #bd1f17;
}
.section-title-01 .title.title-left:before {
  left: 0px !important;
  transform: translateX(0) !important;
}
.section-title-01 .title.title-right:before {
  right: 0 !important;
  left: unset;
  transform: translateX(0) !important;
}
@media screen and (max-width: 991px) {
  .section-title-01 .title.title-right:before {
    right: unset !important;
  }
}
.small-title {
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0;
  display: block;
  margin-bottom: 1rem;
}
.small-title:before {
  background-color: #bd1f17;
  height: 2px;
  width: 40px;
  margin-left: 15px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.small-title.text-secondary:before {
  background-color: #ecba23;
}
.page-title-section {
  padding: 170px 0 110px 0;
}
.page-title-section.style1 {
  padding: 150px 0;
}
.page-title-section h1 {
  font-size: 64px;
  line-height: 1;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 9;
}
.pagetitle-lg-title {
  display: block;
  font-size: 105px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  opacity: 0.2;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  margin: 0 0 -58px 0;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}
.page-title-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  line-height: 1.2;
}
.page-title-section ul li {
  display: inline-block;
}
.page-title-section ul li:last-child {
  color: #ffffff;
  opacity: 0.8;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.page-title-section ul li:last-child a {
  color: #ffffff;
  opacity: 0.8;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.page-title-section ul li:after {
  content: "";
  font-weight: 700;
  vertical-align: middle;
  background-color: #ecba23;
  width: 10px;
  padding: 0 5px 0 10px;
  height: 2px;
  display: inline-block;
  margin: 0 15px;
}
.page-title-section ul li:last-child:after {
  content: none;
}
.page-title-section ul li a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.page-title-section .shape-1 {
  padding: 20px;
  background: #fff;
  z-index: 3;
  bottom: 73px;
  left: 52px;
}
@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 160px 0 100px 0;
  }
  .page-title-section h1 {
    font-size: 52px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 140px 0 100px 0;
  }
  .page-title-section.style1 {
    padding: 130px 0;
  }
  .page-title-section h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 575px) {
  .page-title-section {
    padding: 140px 0 90px 0;
  }
  .page-title-section.style1 {
    padding: 100px 0;
  }
  .page-title-section h1 {
    font-size: 36px;
  }
}
.card-style01 {
  box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
  height: 100%;
}
.card-style01 .blog-date {
  top: -40px;
  right: 37px;
  height: 70px;
  width: 60px;
  z-index: 0;
  position: absolute;
  background: #ecba23;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-style02 .card-details ul li:after {
  content: "";
  width: 5px;
  height: 5px;
  background: #666;
  display: inline-flex;
  margin: 10px;
  margin-right: 0;
  transform: rotate(45deg);
}
.card-style02 .card-details ul li:last-child:after {
  display: none;
}
.card-style02 .card-top {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #bd1f17;
  padding: 0px 14px;
  text-transform: uppercase;
}
.video_btn {
  position: relative;
  height: 80px;
  width: 80px;
  background: #e74860;
  text-align: center;
  display: inline-block;
  line-height: 80px;
  color: #fff;
  border-radius: 50%;
  transition-duration: 0s;
  -ms-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
}
.video_btn:hover i,
.video_btn:focus i {
  color: #fff;
}
.video_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  border: 2px solid #e74860;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-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 #e74860;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video_btn.small {
  width: 55px;
  height: 55px;
  line-height: 55px;
}
.video_btn.small:after {
  height: 50px;
  width: 50px;
}
.video_btn.small:before {
  height: 65px;
  width: 65px;
}
@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: 75px;
  }
  .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: 60px;
  }
  .video_btn:after {
    height: 60px;
    width: 60px;
  }
  .video_btn:before {
    height: 75px;
    width: 75px;
  }
}
.video-style01 .video-btn {
  position: relative;
  height: 90px;
  width: 90px;
  border: 1px solid #fff;
  text-align: center;
  display: inline-block;
  line-height: 90px;
  color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .video-style01 .video-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}
.video-style02 {
  margin-top: -200px;
}
.video-style02 .video_btn {
  width: 90px;
  height: 90px;
  line-height: 90px;
}
.video-style02 .video_btn:before,
.video-style02 .video_btn:after {
  content: none;
}
@media screen and (max-width: 991px) {
  .video-style02 .video_btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .video-style02 {
    margin-top: -110px;
  }
}
.lg-backdrop {
  z-index: 99999;
}
.lg-outer {
  z-index: 999999;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #bd1f17;
}
.lg-progress-bar .lg-progress {
  background-color: #bd1f17;
}
.lg-backdrop.in {
  opacity: 0.85;
}
.portfolio-style01 .portfolio-item-one .portfolio-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 34px 30px 60px 40px;
  z-index: 9;
}
.portfolio-style01 .portfolio-item-one .potfolio-img {
  position: relative;
  overflow: hidden;
  transition: 0.35s ease-in-out;
}
.portfolio-style01 .portfolio-item-one:hover .potfolio-img {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
}
.portfolio-style01 .portfolio-item-two {
  padding: 30px;
}
.portfolio-style01 .prt-btn a:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #bd1f17;
  content: "";
  transition: transform 0.2s ease;
  transform-origin: 100% 0;
}
.portfolio-style01 .prt-btn a:hover:before {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.portfolio-style01 .portfolio-item-three .portfolio-text {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}
.gallery-style-01:hover .gallery-text-holder {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  -webkit-transition: 0.4s cubic-bezier(0.48, 0.57, 0.33, 0.89);
  -o-transition: 0.4s cubic-bezier(0.48, 0.57, 0.33, 0.89);
  transition: 0.4s cubic-bezier(0.48, 0.57, 0.33, 0.89);
}
.gallery-style-01 .gallery-text-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 35px;
  top: 35px;
  right: 35px;
  bottom: 35px;
  background-color: rgba(236, 186, 35, 0.85);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  padding: 20px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 1;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  -webkit-transition: 0.2s cubic-bezier(0.48, 0.57, 0.33, 0.89);
  -o-transition: 0.2s cubic-bezier(0.48, 0.57, 0.33, 0.89);
  transition: 0.2s cubic-bezier(0.48, 0.57, 0.33, 0.89);
}
@media screen and (max-width: 1199px) {
  .gallery-style-01 .gallery-text-holder {
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
  }
}
.gallery-carousel .gallery-item .gallery-overly {
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(236, 186, 35, 0.8);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
.gallery-carousel .gallery-item:hover .gallery-overly {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}
.gallery-carousel .gallery-item .gallery-overly .icon {
  position: relative;
  width: 40px;
  height: 40px;
  color: #ffffff;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  border-radius: 0px;
  font-weight: 700;
  display: inline-block;
  background-color: #bd1f17;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.gallery-carousel .gallery-item .gallery-overly .icon:hover {
  background-color: #fff;
  color: #bd1f17;
}
.pagination {
  border-radius: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
.pagination ul {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
}
.pagination li {
  display: inline;
  margin-right: 10px;
}
.pagination li:last-child {
  margin-right: 0;
}
.pagination a {
  background: transparent;
  font-weight: 700;
  text-align: center;
  padding: 12px 16px;
  color: #42545e;
  border: 1px solid #dddddd;
  line-height: 25px;
}
.pagination a:hover,
.pagination a:active,
.pagination a:focus {
  background-color: #ecba23;
  color: #ffffff;
  box-shadow: none;
}
.pagination .active a {
  background-color: #f7f7f7;
  color: #002147;
  border: 1px solid #dbdbdb;
  cursor: default;
}
@media screen and (max-width: 575px) {
  .pagination li {
    margin-right: 8px;
  }
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
  text-align: left;
}
.owl-theme .owl-dots .owl-dot span {
  border-radius: 0;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #bd1f17;
}
.owl-nav i,
.owl-nav span {
  color: #232323;
  font-size: 28px;
}
.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}
ul.resp-tabs-list {
  margin-bottom: 15px;
  padding: 0px;
}
.resp-tabs-list li {
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  padding: 12px 20px;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
  margin: 0 4px 0 0;
  list-style: none;
  cursor: pointer;
  background: #fff;
  color: #bd1f17;
  text-align: left;
  border-radius: 0;
}
.resp-tabs-list li:last-child {
  margin-right: 0;
}
.resp-tabs-list li i {
  font-size: 24px;
  padding-right: 10px;
  vertical-align: text-bottom;
}
.resp-tabs-container {
  padding: 0px;
  clear: left;
}
.resp-tab-content {
  display: none;
  padding: 40px;
  border: none;
  float: left;
  width: 100%;
  box-shadow: none;
  border-radius: 4px;
  background: transparent;
}
.resp-tabs-list li.resp-tab-active {
  margin-bottom: -1px;
  background-color: #bd1f17;
  color: #fff;
}
.resp-content-active,
.resp-accordion-active {
  display: block;
}
h2.resp-accordion {
  cursor: pointer;
  display: none;
  font-size: 18px;
  color: #fff;
  border-top: 0px solid #c1c1c1;
  margin-bottom: 5px;
  padding: 14px 15px;
  float: left;
  width: 100%;
  background: #ecba23 !important;
  border-radius: 0;
}
h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  background-color: #bd1f17 !important;
  color: #fff;
  margin-bottom: 0;
  border-radius: 0px;
}
h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}
.resp-vtabs.style1 ul.resp-tabs-list {
  margin-top: -80px;
}
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 0;
}
.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 18px 20px !important;
  margin: 0 0 25px;
  cursor: pointer;
  float: none;
  font-size: 18px;
  background: rgba(236, 186, 35, 0.1);
  color: #ecba23;
  border-radius: 0px;
}
.resp-vtabs .resp-tabs-list li:last-child {
  margin-bottom: 0;
}
.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  float: left;
  width: 100%;
  clear: none;
  border-radius: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.resp-vtabs .resp-tab-content {
  word-wrap: break-word;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0;
}
.resp-vtabs li.resp-tab-active {
  position: relative;
  z-index: 1;
  margin-right: -1px !important;
  padding: 18px 20px !important;
  background-color: #bd1f17;
  color: #fff;
}
.resp-arrow {
  border-color: transparent #fff #fff transparent;
  border-style: solid;
  border-width: 0 2px 2px 0;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 7px;
}
.resp-easy-accordion h2.resp-accordion {
  display: block;
}
.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1;
}
.resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1;
}
.resp-jfit {
  width: 100%;
  margin: 0px;
}
.resp-tab-content-active {
  display: block;
  border-color: #e8e8e8 !important;
}
h2.resp-accordion.resp-tab-active {
  border-color: #e8e8e8 !important;
}
@media screen and (max-width: 991px) {
  ul.resp-tabs-list {
    display: none;
  }
  h2.resp-accordion {
    display: block;
  }
  h2.resp-accordion i {
    margin-right: 8px;
    font-size: 20px;
    color: #fff;
    vertical-align: text-bottom;
  }
  .resp-vtabs .resp-tab-content {
    margin-bottom: 5px;
    padding: 30px;
  }
  .resp-vtabs .resp-tab-content:last-child {
    margin-bottom: 0;
  }
  .resp-vtabs .resp-tabs-container {
    border: none !important;
    float: left;
    width: 100%;
    min-height: 100px;
    clear: none;
    background: none;
  }
  .resp-accordion-closed {
    display: none !important;
  }
  .resp-tab-content {
    background-color: #fff;
    border-radius: 0;
    border: 1px solid #eee;
    margin-bottom: 5px;
    padding: 30px;
  }
  .resp-tab-content:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .resp-vtabs .resp-tab-content,
  .resp-tab-content {
    padding: 20px;
  }
}
.resp-tabs-list li:last-child {
  margin-right: 0;
}
.resp-tabs-list li i {
  font-size: 20px;
  padding-right: 5px;
  vertical-align: text-bottom;
}
.resp-content-active,
.resp-accordion-active {
  display: block;
}
h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 30%;
  margin-top: 0 !important;
}
.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 30px 25px !important;
  margin: 0;
  cursor: pointer;
  float: none;
}
.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  border: 1px solid #86bc42 !important;
  float: left;
  width: 70%;
  min-height: 250px;
  clear: none;
}
.resp-vtabs .resp-tab-content {
  border: none;
  word-wrap: break-word;
}
.resp-vtabs li.resp-tab-active {
  position: relative;
  z-index: 1;
  margin-right: -1px !important;
  padding: 14px 15px 15px 11px !important;
  border-top: 4px solid #f499aa !important;
  border: 4px solid #f499aa !important;
  border-left: 4px solid #f499aa !important;
  margin-bottom: 0 0 20px;
  border-right: 4px solid #f499aa !important;
}
.tab-style1 ul.resp-tabs-list {
  margin-bottom: 0;
}
.tab-style1 .resp-tab-content-active {
  border: none;
}
.tab-style1 .resp-tabs-list li {
  font-size: 14px;
  min-width: 130px;
  text-align: center;
  margin-right: 15px;
  padding: 15px 0;
  border: 1px solid #ededed;
}
.tab-style1 .resp-tabs-list li:last-child {
  margin-right: 0;
}
.tab-style1 .resp-tab-content {
  padding: 50px 0 0 0;
}
.tab-style1 .resp-tabs-list li.resp-tab-active {
  border: 1px solid #bd1f17 !important;
  margin-bottom: 0;
  position: relative;
}
.tab-style1 .resp-tabs-list li.resp-tab-active:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 13px;
  height: 13px;
  border-width: 0 0 1px 1px;
  transform: translateX(-50%) rotate(-45deg);
  transition-delay: 0.07s;
  background: #bd1f17;
}
.tab-style1 .resp-content-active,
.tab-style1 .resp-accordion-active {
  display: block;
}
.tab-style1 h2.resp-accordion {
  border: 1px solid #ededed;
  border-top: 0px solid #ededed;
  margin: 0px;
  font-size: 18px;
  letter-spacing: 1px;
}
.tab-style1 h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}
.tab-style1 .resp-arrow {
  border-color: transparent #fff #fff transparent;
  border-width: 0 1px 1px 0;
  margin-top: 4px;
}
@media screen and (max-width: 991px) {
  .tab-style1 .resp-tab-content {
    padding: 25px;
    margin-bottom: 0;
  }
  .tab-style1 .resp-tab-content-active {
    border: 1px solid #bd1f17;
  }
}
.accordion-style .card {
  background: transparent;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  border: none;
  margin-top: 0 !important;
  border-radius: 0;
}
.accordion-style .card-header {
  border: 0px;
  padding: 0;
  border-bottom: none;
  background: none;
}
.accordion-style .btn-link {
  color: #bd1f17;
  line-height: 26px;
  position: relative;
  border: none;
  border-bottom: none;
  border-left: none;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  border-radius: 0;
  padding: 20px 45px 20px 18px;
  font-weight: 700;
  text-decoration: none;
  background-color: #ffffff;
}
.accordion-style .btn-link.collapsed {
  color: #42545e;
  line-height: 26px;
  position: relative;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  border: none;
  padding: 20px 45px 20px 18px;
  font-weight: 700;
  text-decoration: none;
  background-color: #fff;
}
.accordion-style .btn-link:hover,
.accordion-style .btn-link:active,
.accordion-style .btn-link:focus {
  text-decoration: none;
  color: #bd1f17;
}
.accordion-style .btn-link.collapsed:after {
  content: "+";
  right: 17px;
  left: inherit;
  font-size: 20px;
  transform: none;
  top: 22px;
  position: absolute;
  color: #212121;
  background-color: transparent;
  border-radius: 0.3rem;
  line-height: 20px;
  width: 25px;
  height: 25px;
  text-align: center;
}
.accordion-style .btn-link:after {
  content: "-";
  right: 17px;
  left: inherit;
  font-size: 20px;
  transform: none;
  top: 22px;
  position: absolute;
  color: #bd1f17;
  background-color: transparent;
  border-radius: 0.3rem;
  line-height: 22px;
  width: 25px;
  height: 25px;
  text-align: center;
}
.accordion-style .card-body {
  padding: 0px 30px 25px 26px;
  line-height: 24px;
  text-align: left;
  border: none;
  border-left: none;
  background: #fff;
  border-top: none;
}
@media screen and (max-width: 991px) {
  .accordion-style .card-body {
    padding: 10px 25px 30px 25px;
  }
}
.accordion-style.style1 .btn-link {
  padding: 20px 18px 20px 61px;
  font-size: 20px;
}
.accordion-style.style1 .btn-link:after {
  left: 17px;
  right: unset;
  color: #fff;
  background-color: #bd1f17;
}
.accordion-style.style1 .btn-link.collapsed {
  padding: 20px 18px 20px 61px;
}
.accordion-style.style1 .btn-link.collapsed:after {
  color: #fff;
  background-color: #bd1f17;
}
.blog-sidebar .widget {
  padding: 30px 25px;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
  position: relative;
  display: block;
}
.blog-sidebar .widget .widget-content {
  position: relative;
}
.blog-sidebar .widget .widget-content .input-group .btn-style1 {
  border-radius: 0 50px 50px 0;
}
.blog-sidebar .widget .category-list li {
  margin-bottom: 1rem;
}
.blog-sidebar .widget .category-list li:last-child {
  margin-bottom: 0px;
}
.blog-sidebar .widget .category-list li a {
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 20px 14px 28px;
  border-radius: 50rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.blog-sidebar .widget .category-list li a span {
  z-index: 9;
  position: relative;
}
.blog-sidebar .widget .category-list li a:after {
  content: "\e649";
  font-family: "themify";
  font-size: 12px;
  font-weight: bold;
}
.blog-sidebar .widget .category-list li.active a:after,
.blog-sidebar .widget .category-list li:hover a:after {
  margin-left: 10px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.blog-tags a {
  background-color: #bd1f17;
  padding: 7px 12px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  margin: 0.6rem 5px 0 0;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #bd1f17;
  border-radius: 50rem;
}
.blog-tags a:hover,
.blog-tags a:active,
.blog-tags a:focus {
  background-color: #fff;
  color: #bd1f17;
}
.comment-reply-link {
  color: #ecba23;
  background: rgba(236, 186, 35, 0.1);
  padding: 5px 18px;
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
}
.comment-reply-link:hover,
.comment-reply-link:active,
.comment-reply-link:focus {
  color: #fff;
  background: #ecba23;
}
.blog-sidebar .widget .category-list li:hover a {
  color: #bd1f17;
}
.blog-sidebar .widget .category-list li a {
  color: #6b6b6b;
  font-weight: 700;
}
.blog-style-01 {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.blog-style-01:hover .blog-img .image a:after {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.blog-style-01:hover .blog-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.blog-style-01:hover .content-box {
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
}
.blog-style-01 .blog-img .image img {
  display: block;
  width: 100%;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.blog-style-01 .blog-img .image a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.blog-style-01 .content-box {
  position: relative;
  margin-top: -65px;
  margin-left: 30px;
  padding: 30px 40px 35px 40px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.blog-style-01 .blog-img .date {
  position: absolute;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  background-color: #bd1f17;
  font-size: 12px;
  color: #fff;
  padding: 5px 20px;
  font-weight: 700;
  top: 14px;
  left: 20px;
}
.blog-style-01 .content-box .text {
  margin-bottom: 15px;
}
.blog-style-01 .content-box .button-01 {
  position: relative;
  font-size: 12px;
  line-height: 25px;
  color: #0f0f0f;
  font-weight: 700;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.blog-style-01 .content-box .button-01 i {
  margin-right: 10px;
  font-size: 16px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.blog-style-01 .content-box .button-01:hover,
.blog-style-01 .content-box .button-01:active,
.blog-style-01 .content-box .button-01:focus {
  color: #bd1f17;
  -webkit-transform: translateX(-25px);
  transform: translateX(-25px);
}
.blog-style-01 .content-box .button-01:hover i,
.blog-style-01 .content-box .button-01:active i,
.blog-style-01 .content-box .button-01:focus i {
  opacity: 0;
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
}
@media screen and (max-width: 991px) {
  .blog-style-01 .content-box {
    padding: 20px 30px 25px 30px;
  }
}
@media screen and (max-width: 575px) {
  .blog-style-01 .content-box {
    margin-top: -45px;
  }
}
.countdown {
  padding: 0;
}
.countdown li {
  background: #bd1f17;
  display: inline-block;
  text-align: center;
  min-width: 107px;
  overflow: hidden;
  margin-right: 10px;
  padding: 15px 10px;
  position: relative;
}
.countdown li:last-child {
  margin-right: 0;
}
.countdown li span {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  line-height: normal;
  position: relative;
}
.countdown li p.timeRefDays,
.countdown li p.timeRefHours,
.countdown li p.timeRefMinutes,
.countdown li p.timeRefSeconds {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  z-index: 2;
  position: relative;
  padding: 0;
  text-transform: capitalize;
}
@media screen and (max-width: 1199px) {
  .countdown li {
    min-width: 103px;
  }
  .countdown li span {
    font-size: 34px;
  }
}
@media screen and (max-width: 991px) {
  .countdown li {
    min-width: 100px;
  }
}
@media screen and (max-width: 991px) {
  .countdown li span {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .countdown li {
    min-width: 180px;
    margin-top: 5px;
  }
  .countdown li:nth-child(2) {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .countdown li {
    min-width: 43%;
  }
  .countdown li span {
    font-size: 26px;
  }
}
.coming-soon .countdown li {
  background: transparent;
  min-width: 200px;
  padding: 0;
}
.coming-soon .countdown li span {
  font-size: 80px;
}
.coming-soon .countdown li p.timeRefDays,
.coming-soon .countdown li p.timeRefHours,
.coming-soon .countdown li p.timeRefMinutes,
.coming-soon .countdown li p.timeRefSeconds {
  font-size: 19px;
}
@media screen and (max-width: 1399px) {
  .coming-soon .countdown li {
    min-width: 170px;
  }
}
@media screen and (max-width: 1199px) {
  .coming-soon .countdown li {
    min-width: 140px;
  }
  .coming-soon .countdown li span {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .coming-soon .countdown li {
    min-width: 100px;
  }
  .coming-soon .countdown li span {
    font-size: 40px;
  }
  .coming-soon .countdown li p.timeRefDays,
  .coming-soon .countdown li p.timeRefHours,
  .coming-soon .countdown li p.timeRefMinutes,
  .coming-soon .countdown li p.timeRefSeconds {
    font-size: 14px;
  }
}
.error-section h3 {
  font-size: 262px;
}
@media screen and (max-width: 767px) {
  .error-section h3 {
    font-size: 190px;
  }
}
@media screen and (max-width: 575px) {
  .error-section h3 {
    font-size: 100px;
  }
}
.counter-style1 .counter-item .h3 {
  font-size: 95px;
  transition: all 0.3s ease 0s;
  font-weight: 600;
}
.counter-style1 .counter-item:hover .h3 {
  color: #bd1f17;
}
@media screen and (max-width: 1199px) {
  .counter-style1 .counter-item .h3 {
    font-size: 86px;
  }
}
@media screen and (max-width: 991px) {
  .counter-style1 .counter-item .h3 {
    font-size: 72px;
  }
}
@media screen and (max-width: 575px) {
  .counter-style1 .counter-item .h3 {
    font-size: 58px;
  }
}
.counter-style2 .counter-item .h3 {
  font-size: 95px;
  transition: all 0.3s ease 0s;
  font-weight: 600;
  color: #fff;
}
.counter-style2 .counter-item:hover .h3 {
  color: #bd1f17;
}
@media screen and (max-width: 1199px) {
  .counter-style2 .counter-item .h3 {
    font-size: 85px;
  }
}
@media screen and (max-width: 767px) {
  .counter-style2 .counter-item .h3 {
    font-size: 55px;
  }
}
.faq-style01 .faq-img-overlay-text {
  position: absolute;
  left: 50px;
  bottom: 50px;
}
@media screen and (max-width: 1199px) {
  .faq-style01 .faq-img-overlay-text {
    left: 30px;
    bottom: 30px;
  }
}
.marquee-section {
  overflow-x: clip;
  overflow-y: visible;
  z-index: 99;
  position: relative;
}
.marquee {
  position: relative;
  overflow: hidden;
  margin-left: -30px;
}
.marquee h4 {
  font-size: 120px;
}
.slide-har {
  position: relative;
}
.slide-har.st1 .box {
  position: relative;
  -webkit-animation: slide-har 80s linear infinite;
  animation: slide-har 80s linear infinite;
}
@-webkit-keyframes slide-har {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slide-har {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.main-marq {
  position: relative;
  padding: 0;
}
.main-marq:after {
  position: absolute;
  top: -30px;
  bottom: -30px;
  left: -30px;
  right: -30px;
  pointer-events: none;
  background: -webkit-linear-gradient(
    right,
    #181818,
    rgba(255, 255, 255, 0) 220px,
    rgba(255, 255, 255, 0) calc(100% - 220px),
    #181818
  );
  background: -o-linear-gradient(
    right,
    #181818,
    rgba(255, 255, 255, 0) 220px,
    rgba(255, 255, 255, 0) calc(100% - 220px),
    #181818
  );
  background: linear-gradient(
    to left,
    #181818,
    rgba(255, 255, 255, 0) 220px,
    rgba(255, 255, 255, 0) calc(100% - 220px),
    #181818
  );
}
.main-marq .slide-har {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-marq .strok .item h4 {
  color: transparent !important;
  -webkit-text-stroke: 0.5px #1d1d1d;
}
.main-marq .strok .item h4 a {
  color: transparent !important;
  -webkit-text-stroke: 0.5px #1d1d1d;
}
.main-marq .non-strok .item h4 {
  color: #1d1d1d !important;
  -webkit-text-stroke: 0 !important;
}
.main-marq .non-strok .item h4 a {
  color: #1d1d1d !important;
  -webkit-text-stroke: 0 !important;
}
.main-marq .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-marq .box .item {
  padding: 0 30px;
}
.main-marq .box .item h4 {
  white-space: nowrap;
  line-height: 1;
  margin: 0;
}
.main-marq .box .item h4 .icon {
  margin-bottom: -15px;
}
.main-marq .box .item:nth-of-type(even) h4 {
  color: transparent;
  -webkit-text-stroke: 0.5px #1d1d1d;
}
.main-marq .box .item:nth-of-type(even) h4 a {
  color: transparent;
  -webkit-text-stroke: 0.5px #1d1d1d;
}
.main-marq .box:last-of-type .item:nth-of-type(even) h4 {
  color: #1d1d1d;
  -webkit-text-stroke: 0;
}
.main-marq .box:last-of-type .item:nth-of-type(even) h4 a {
  color: #1d1d1d;
  -webkit-text-stroke: 0;
}
.main-marq .box:last-of-type .item:nth-of-type(odd) h4 {
  color: transparent;
  -webkit-text-stroke: 1px #1d1d1d;
}
.main-marq .box:last-of-type .item:nth-of-type(odd) h4 a {
  color: transparent;
  -webkit-text-stroke: 1px #1d1d1d;
}
@media screen and (max-width: 1199px) {
  .marquee h4 {
    font-size: 90px;
  }
}
@media screen and (max-width: 991px) {
  .marquee {
    padding: 0 0 0 0;
  }
  .marquee h4 {
    font-size: 70px;
  }
}
@media screen and (max-width: 575px) {
  .marquee h4 {
    font-size: 50px;
  }
}
.newsletter-rounded .quform-elements {
  position: relative;
}
.newsletter-rounded .quform-submit-inner {
  position: absolute;
  right: 0px;
  top: 6px;
  width: auto;
}
.newsletter-rounded .quform-loading-wrap {
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 0;
}
.newsletter-rounded input {
  border: 3px solid rgba(255, 255, 255, 0.1);
  height: 60px;
  min-height: auto;
  padding: 0.5rem 4rem 0.5rem 1.5rem;
}
.newsletter-rounded .quform-has-error input,
.newsletter-rounded .quform-has-error textarea,
.newsletter-rounded .quform-has-error select {
  border-color: #f5543f;
}
.newsletter-rounded .quform-input .quform-errors-wrap {
  right: 15px;
}
.newsletter-rounded i {
  font-size: 1.5rem;
  line-height: 2rem;
}
.newsletter-form01 .form-control {
  min-height: 56px;
}
.menu-style01 .portfolio-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-style01 .portfolio-item .product-price {
  min-width: 90px;
}
.menu-style01 .portfolio-item .product-price span {
  background: #fff;
  padding: 5px 7px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  transition: all cubic-bezier(0.39, 0.58, 0.57, 1) 0.3s;
  box-shadow: 0 0 25px -12px rgba(17, 17, 17, 0.1607843137);
}
.menu-style01 .portfolio-item:hover .product-price span {
  background: #bd1f17;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .menu-style01 .portfolio-item {
    display: unset;
  }
}
.menu-style02 .menu-image {
  margin-bottom: 30px;
  text-align: center;
}
.menu-style02 .menu-item .menu-image img {
  transition: all 0.7s cubic-bezier(0, 0, 0.2, 1);
  width: 75%;
  border-radius: 50%;
}
.menu-style02 .menu-item:hover .menu-image img {
  transform: translateY(-10px);
}
@media screen and (max-width: 575px) {
  .menu-style02 .menu-item .menu-image img {
    width: unset;
  }
}
.team-carousel-one.owl-carousel .owl-nav button.owl-prev i,
.team-carousel-one.owl-carousel .owl-nav button.owl-next i {
  width: 57px;
  height: 57px;
  background-color: #ecba23;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  line-height: 57px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-carousel-one.owl-carousel .owl-nav button.owl-prev i:hover,
.team-carousel-one.owl-carousel .owl-nav button.owl-next i:hover {
  background-color: #bd1f17;
  color: #fff;
}
.team-carousel-one.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: -34px;
  bottom: 50%;
}
.team-carousel-one.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -30px;
  bottom: 50%;
}
.team-carousel-one.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
}
@media (max-width: 991px) {
  .team-carousel-one.owl-carousel .owl-nav button.owl-prev i,
  .team-carousel-one.owl-carousel .owl-nav button.owl-next i {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .team-carousel-one.owl-carousel .owl-nav button.owl-prev {
    left: 0;
  }
  .team-carousel-one.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }
}
.testimonial-carousel2.owl-carousel .owl-dots {
  text-align: start;
}
.testimonial-carousel2.owl-carousel .owl-nav {
  text-align: start;
  margin-bottom: 10px;
}
.testimonial-carousel2.owl-carousel .owl-nav button.owl-prev i,
.testimonial-carousel2.owl-carousel .owl-nav button.owl-next i {
  width: 57px;
  height: 57px;
  background-color: #ecba23;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  line-height: 57px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-carousel2.owl-carousel .owl-nav button.owl-prev i:hover,
.testimonial-carousel2.owl-carousel .owl-nav button.owl-next i:hover {
  background-color: #bd1f17;
  color: #fff;
}
.testimonial-carousel2.owl-theme .owl-nav [class*="owl-"]:hover {
  background: none;
  color: unset;
  text-decoration: none;
}
@media (max-width: 991px) {
  .testimonial-carousel2.owl-carousel .owl-nav button.owl-prev i,
  .testimonial-carousel2.owl-carousel .owl-nav button.owl-next i {
    width: 50px;
    height: 50px;
  }
}
.instagram-carousel.owl-carousel .owl-dots {
  text-align: center;
}
.instagram-carousel.owl-carousel .owl-nav {
  text-align: start;
}
.instagram-carousel.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 0;
  bottom: 50%;
}
.instagram-carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: 0;
  bottom: 50%;
}
.instagram-carousel.owl-carousel .owl-nav button.owl-prev i,
.instagram-carousel.owl-carousel .owl-nav button.owl-next i {
  width: 57px;
  height: 57px;
  background-color: #ecba23;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  line-height: 57px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.instagram-carousel.owl-carousel .owl-nav button.owl-prev i:hover,
.instagram-carousel.owl-carousel .owl-nav button.owl-next i:hover {
  background-color: #bd1f17;
  color: #fff;
}
.instagram-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
  background: none;
  color: unset;
  text-decoration: none;
}
@media (max-width: 991px) {
  .instagram-carousel.owl-carousel .owl-nav button.owl-prev i,
  .instagram-carousel.owl-carousel .owl-nav button.owl-next i {
    width: 50px;
    height: 50px;
  }
}
.gallery-carousel.owl-carousel .owl-dots {
  text-align: center;
}
.gallery-carousel.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 0;
  bottom: 50%;
}
.gallery-carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: 0;
  bottom: 50%;
}
.gallery-carousel.owl-carousel .owl-nav button.owl-prev i,
.gallery-carousel.owl-carousel .owl-nav button.owl-next i {
  width: 57px;
  height: 57px;
  background-color: #ecba23;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  line-height: 57px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-carousel.owl-carousel .owl-nav button.owl-prev i:hover,
.gallery-carousel.owl-carousel .owl-nav button.owl-next i:hover {
  background-color: #bd1f17;
  color: #fff;
}
.gallery-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
  background: none;
  color: unset;
  text-decoration: none;
}
@media (max-width: 991px) {
  .gallery-carousel.owl-carousel .owl-nav button.owl-prev i,
  .gallery-carousel.owl-carousel .owl-nav button.owl-next i {
    width: 50px;
    height: 50px;
  }
}
.team-carousel.owl-carousel .owl-nav {
  position: absolute;
  bottom: 5%;
  left: -104%;
  margin-top: 0;
}
.team-carousel .owl-nav span {
  width: 54px;
  height: 54px;
  line-height: 50px;
  display: inline-block;
  background: transparent;
  border-radius: 0;
  text-align: center;
  font-size: 31px;
  transition: all 0.5s;
  border: 1px solid #eeeeee;
  font-weight: bold;
  box-shadow: none;
}
.team-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #bd1f17;
}
.team-carousel.owl-theme .owl-nav [class*="owl-"]:hover span {
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .team-carousel .owl-nav span {
    width: 44px;
    height: 44px;
    line-height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .team-carousel.owl-carousel .owl-nav button.owl-prev,
  .team-carousel.owl-carousel .owl-nav button.owl-next {
    display: none;
  }
}
.team-style01 .team-social {
  position: absolute;
  bottom: 0;
  right: 0;
}
.team-style01 .team-social .main i {
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}
.team-style01 .team-social .main i:before {
  font-weight: bold;
}
.team-style01 .team-social:hover .main {
  background: #bd1f17;
  color: #ffffff;
  opacity: 1;
}
.team-style01 .team-social:hover .main i {
  background: #bd1f17;
  color: #fff;
}
.team-style01 .team-social-one {
  display: flex;
  flex-direction: column;
  position: absolute;
  transform: translateY(-45px);
  transition: 1s;
  opacity: 0;
}
.team-style01 .team-social-one i {
  background: #fff;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  margin-bottom: -1px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-style01 .team-social-one i:hover {
  background: #bd1f17;
  color: #fff;
}
.team-style01 .team-social:hover .main:after {
  background: #bd1f17;
  color: #ffffff;
  opacity: 1;
}
.team-style01 .team-social:hover .team-social-one {
  transform: translateY(-125%);
  z-index: 2;
  opacity: 1;
}
.team-style02 .team-iteam {
  text-align: center;
  position: relative;
  padding-bottom: 40px;
}
.team-style02 .team-iteam .team-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: #1b1b1b;
  opacity: 0.9;
  visibility: hidden;
}
.team-style02 .team-iteam .title-box,
.team-style02 .team-iteam .team-content,
.team-style02 .team-iteam .team-img:before {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.team-style02 .team-iteam .team-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}
.team-style02 .team-iteam .social a {
  font-size: 15px;
  color: #fff;
  margin: 0 5px;
}
.team-style02 .team-iteam:hover .team-img::before {
  height: 100%;
  visibility: visible;
}
.team-style02 .team-iteam:hover .team-content {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.team-style02 .team-iteam:hover .title-box {
  opacity: 0;
  visibility: hidden;
  margin-bottom: 80px;
}
.team-style02 .team-iteam .social a:hover {
  color: #bd1f17;
}
.team-style02 .team-iteam .title-box {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  z-index: 2;
  background-color: #fafafa;
  padding: 25px 0;
  opacity: 1;
  visibility: visible;
  margin-bottom: 0;
  border-radius: 1px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.team-details-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.team-details-social ul {
  margin-left: 30px;
  padding-left: 0;
  margin-bottom: 0;
}
.team-details-social ul li {
  display: inline-block;
  list-style: none;
  margin-right: 10px;
}
.team-details-social ul li:last-child {
  margin: 0;
}
.team-details-social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  border: 1px solid #ededed;
  color: #343a40;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.team-details-social ul li a:hover {
  color: #fff;
  border-color: #bd1f17;
  background: #bd1f17;
}
.progress-style1 .progress {
  height: 8px;
}
.testimonial-carousel1.owl-carousel .owl-nav.disabled,
.testimonial-carousel1.owl-carousel .owl-dots.disabled {
  display: block;
}
.testimonial-carousel1.owl-carousel .owl-nav button.owl-prev i,
.testimonial-carousel1.owl-carousel .owl-nav button.owl-next i {
  width: 57px;
  height: 57px;
  background-color: #ecba23;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  line-height: 57px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-carousel1.owl-carousel .owl-nav button.owl-prev:hover i,
.testimonial-carousel1.owl-carousel .owl-nav button.owl-next:hover i {
  background-color: #bd1f17;
  color: #fff;
}
.testimonial-carousel1.owl-theme .owl-nav {
  position: absolute;
  bottom: 0%;
  left: -52%;
}
.testimonial-carousel1.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
}
@media screen and (max-width: 1199px) {
  .testimonial-carousel1.owl-theme .owl-nav {
    bottom: unset;
    left: 0;
    top: -22%;
  }
  .testimonial-carousel1.owl-carousel .owl-nav button.owl-prev i,
  .testimonial-carousel1.owl-carousel .owl-nav button.owl-next i {
    width: 47px;
    height: 47px;
    line-height: 47px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .testimonial-carousel1.owl-theme .owl-nav {
    display: none;
  }
}
.testimonial-style01 .owl-carousel .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.testimonial-style01 .owl-carousel .item {
  text-align: center;
  opacity: 0.2;
  -webkit-transform: scale3d(0.9, 0.9, 1);
  transform: scale3d(0.9, 0.9, 1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.testimonial-style01 .shadow-effect {
  background: #fff;
  padding: 20px 40px 40px 40px;
  text-align: center;
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.1);
}
.testimonial-style01 .shadow-effect .testimonial-info-desc {
  color: #000000;
  font-size: 16px;
  margin-bottom: 20px;
}
.testimonial-style01 .shadow-effect .testimonial-info-img {
  vertical-align: middle;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .testimonial-style01 .shadow-effect {
    padding: 23px;
    padding-top: 0 !important;
  }
}
.testimonial-style02 .testimonial-items {
  max-width: 430px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.testimonial-style02 .testimonials-inner {
  display: flex;
  align-items: center;
  background-color: #bd1f17;
  padding: 10px 31px 10px;
}
.testimonial-style02 .testimonials-text::before {
  position: absolute;
  left: -18px;
  bottom: -3px;
  content: ".";
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.testimonial-style02 .testimonial-items::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 74px 40px 0;
  border-color: transparent var(--solox-white, #fff) transparent transparent;
  position: absolute;
  right: 115px;
  bottom: -40px;
  content: "";
}
@media screen and (max-width: 767px) {
  .testimonial-style02 .testimonial-items {
    border: 1px solid #dee2e6;
    box-shadow: none;
    max-width: unset;
  }
  .testimonial-style02 .testimonial-items::after {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .testimonial-style02 .testimonial-items {
    padding: 15px;
  }
}
.ani-top-bottom {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: TopBottom;
  animation-timing-function: ease-in-out;
}
@keyframes TopBottom {
  0% {
    transform: translate(0px, 0px);
  }
  65% {
    transform: translate(0, 30px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.ani-rotateme {
  -webkit-animation-name: rotateme;
  -moz-animation-name: rotateme;
  animation-name: rotateme;
  -webkit-animation-duration: 50s;
  -moz-animation-duration: 50s;
  animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
}
@keyframes rotateme {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    -moz-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
#circle svg {
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 25s;
  -moz-animation-duration: 25s;
  -ms-animation-duration: 25s;
  -o-animation-duration: 25s;
  animation-duration: 25s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0);
  }
}
@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(360deg);
  }
  to {
    -moz-transform: rotate(0);
  }
}
@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(360deg);
  }
  to {
    -ms-transform: rotate(0);
  }
}
@-o-keyframes rotate {
  from {
    -o-transform: rotate(360deg);
  }
  to {
    -o-transform: rotate(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0);
  }
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  margin-bottom: 0.5rem;
}
.form-control:focus {
  border-color: #bd1f17;
}
.form-check-input:checked {
  border-color: #bd1f17;
  background-color: #bd1f17;
}
.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: 600;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 15px;
}
.quform-element > label .quform-required {
  color: #cc0101;
  font-size: 10px;
}
.quform-inner input {
  width: 100%;
}
.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 1rem 2rem;
  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: 11px;
  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;
}
.social-icon-style1 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 0px;
  list-style: none;
}
.social-icon-style1 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}
.social-icon-style1 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  height: 41px;
  line-height: 41px;
  width: 41px;
}
.social-icon-style1 li a:hover {
  background: #bd1f17;
}
.social-icon-style1 li:last-child {
  margin-right: 0;
}
.social-icon-style2 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 10px;
  list-style: none;
}
.social-icon-style2 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}
.social-icon-style2 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  height: 41px;
  line-height: 42px;
  width: 41px;
  background-color: #bd1f17;
  color: #fff;
  border-radius: 50rem;
}
.social-icon-style2 li a:hover {
  background-color: #ecba23;
  color: #fff;
}
.social-icon-style2 li:last-child {
  margin-right: 0;
}
.social-icon-style2 li a.small {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 11px;
}
.social-icon-style2.small li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
}
@media screen and (max-width: 991px) {
  .social-icon-style2.small li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.social-icon-style3 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 0px;
  list-style: none;
}
.social-icon-style3 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 12px;
}
.social-icon-style3 li a {
  z-index: 1;
  width: 35px;
  height: 35px;
  color: white;
  font-size: 14px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 600;
  position: relative;
  border-radius: 5px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  background-color: #ecba23;
}
.social-icon-style3 li a:before {
  z-index: -1;
  content: "";
  -webkit-transition: 0.75s;
  -o-transition: 0.75s;
  transition: 0.75s;
  position: absolute;
  width: 0;
  height: 0;
  background: transparent;
  left: 0;
  top: 0;
  border-bottom: 55px solid transparent;
  border-left: 350px solid #bd1f17;
}
.social-icon-style3 li a:after {
  z-index: -1;
  content: "";
  -webkit-transition: 0.75s;
  -o-transition: 0.75s;
  transition: 0.75s;
  position: absolute;
  width: 0;
  height: 0;
  background: transparent;
  right: 0;
  bottom: 0;
  border-top: 55px solid transparent;
  border-right: 350px solid #bd1f17;
}
.social-icon-style3 li a:hover {
  background: #fff;
  color: #bd1f17;
}
.social-icon-style3 li a:hover:before {
  border-bottom: 0px solid transparent;
  border-left: 0px solid #bd1f17;
}
.social-icon-style3 li a:hover:after {
  border-top: 0px solid transparent;
  border-right: 0px solid #bd1f17;
}
.social-icon-style3 li:last-child {
  margin-right: 0;
}
.social-icon-style4 li a {
  background: #eee;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 11px 35px;
}
@media screen and (max-width: 575px) {
  .social-icon-style4 li a {
    padding: 11px 15px;
  }
}
.search-form_input {
  color: #bd1f17;
}
.search-frame h4 a:hover {
  color: #bd1f17;
}
.search-frame .search_list .match {
  color: #bd1f17;
}
.search-frame .search_list li:before {
  color: #bd1f17;
}
.search-frame .search_list li + li {
  border-top: 3px solid #bd1f17;
}
.search-frame .search {
  color: #bd1f17;
}
.contact-map {
  width: 100%;
  height: 400px;
  vertical-align: top;
  border: 0;
}
.contact-from-01 .contact-us-section .contact-image {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.09);
}
.contact-from-01 .contact-us-section .contact-image.one {
  margin-bottom: 30px;
}
.contact-from-01 .contact-us-section .contact-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.contact-from-01 .contact-image .contact-text {
  position: absolute;
  bottom: 0;
  right: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  padding-bottom: 25px;
}
.contact-form-02 .contact-section {
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 39px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-form-02 .icons {
  background: #faf7f2;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form-02 .icons i {
  font-size: 32px;
  color: #bd1f17;
}
.contact-us {
  padding: 60px;
  background-color: #f6f6f6;
}
.contact-us .contacts-icon img {
  padding: 16px;
}
.contact-us .contact-details {
  padding: 30px 50px 40px;
  border-radius: 5px;
  margin-left: 20px;
  background-color: #ecba23;
}
.contact-us .contact-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
  padding: 0 0 25px;
  margin-bottom: 22px;
}
.contact-us .contacts-icon {
  float: left;
  margin-right: 20px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background-color: rgba(255, 255, 255, 0.5196078431);
  text-align: center;
  display: inline-block;
  transition: 0.5s;
}
.contact-us .contacts-icon i {
  color: #fff;
  font-size: 22px;
  transition: 0.5s;
}
.contact-us .contacts-title h6 {
  font-size: 14px;
  line-height: 23px;
  opacity: 0.702;
  margin-top: 5px;
}
.contact-us .contact-info:hover .contacts-icon {
  transform: rotateY(180deg);
  background: #bd1f17;
}
.contact-us .contact-info.upper2 {
  border-bottom: none;
  margin-bottom: 0px;
}
.contact-us .contact-details .follow-company-icon2 a {
  font-size: 14px;
  display: inline-block;
  color: #fff;
  margin-right: 7px;
  transition: 0.5s;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.contact-us .follow-company-icon2 a:hover {
  background: #bd1f17;
}
@media screen and (max-width: 1199px) {
  .contact-us {
    padding: 40px;
  }
  .contact-us .contact-details {
    padding: 30px 31px 30px;
    margin-left: 7px;
  }
}
@media screen and (max-width: 575px) {
  .contact-us {
    padding: 30px 19px 31px 19px;
  }
  .contact-us .contact-info {
    padding: 0 0 18px;
    margin-bottom: 21px;
  }
  .contact-us .contacts-icon {
    margin-right: 13px;
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
  .contact-us .contact-details {
    padding: 19px 19px 19px;
    margin-left: 7px;
  }
  .contact-us .contacts-title h6 {
    font-size: 13px;
    line-height: 21px;
  }
}
.exra-setion .prt-btn a:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #bd1f17;
  content: "";
  transition: transform 0.2s ease;
  transform-origin: 100% 0;
}
.exra-setion .prt-btn a:hover:before {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.instagram-style01:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  background-color: #000;
  transition: all 0.3s ease;
}
.instagram-style01:hover:before {
  opacity: 0.6;
}
.timeline {
  width: 100%;
}
.timeline-item .timeline-content {
  padding-right: 30px;
}
.timeline.timeline-wrapper .timeline-item {
  position: relative;
  width: 50%;
  margin-left: 50%;
  padding-bottom: 44px;
  padding-left: 44px;
  text-align: left;
}
.timeline.timeline-wrapper .timeline-item:nth-child(2n + 1) {
  margin-left: 0;
  padding-right: 44px;
  padding-left: 0;
  text-align: right;
}
.timeline.timeline-wrapper .timeline-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 20px;
  z-index: 2;
  height: 20px;
  margin-left: -10px;
  border: 4px solid #bd1f17;
  background: #fafafa;
  box-shadow: 0 0 0 4px #fcfcfc;
  border-radius: 50%;
}
.timeline.timeline-wrapper .timeline-item:nth-child(2n + 1):before {
  right: 0;
  left: auto;
  margin-right: -8px;
}
.timeline.timeline-wrapper .timeline-item:nth-child(2n + 1):after {
  right: 0;
  left: auto;
}
.timeline.timeline-wrapper .timeline-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 10px;
  height: 100%;
  width: 4px;
  margin-top: 9px;
  margin-left: -4px;
  background-color: #bd1f17;
}
@media screen and (max-width: 1199px) {
  .timeline.timeline-wrapper .timeline-item {
    padding-left: 35px;
    padding-bottom: 40px;
  }
  .timeline.timeline-wrapper .timeline-item:nth-child(2n + 1) {
    padding-right: 35px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .timeline.timeline-wrapper .timeline-item {
    width: 100%;
    margin-left: 0;
    padding-bottom: 35px;
  }
  .timeline.timeline-wrapper .timeline-item:nth-child(2n + 1) {
    text-align: left;
    padding-left: 35px;
    padding-right: 0;
    padding-bottom: 35px;
  }
  .timeline.timeline-wrapper .timeline-item:nth-child(2n + 1):before,
  .timeline.timeline-wrapper .timeline-item:nth-child(2n + 1):after {
    right: auto;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .timeline-item .timeline-content {
    border-right: 0;
    padding: 25px 0;
  }
  .timeline.timeline-wrapper .timeline-item {
    padding-left: 25px;
    padding-bottom: 25px;
  }
  .timeline.timeline-wrapper .timeline-item:nth-child(2n + 1) {
    padding-left: 25px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 575px) {
  .timeline-item .timeline-content {
    padding: 0;
  }
}
.feature-card {
  background-color: #fff;
  padding: 10px;
  text-align: center;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}
.feature-card:hover {
  box-shadow: 0 0 20px 1px #e7e6e6;
}
.feature-card .feature-box {
  display: inline-flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #fff9f4;
  margin-top: 20px;
  margin-bottom: 20px;
}
.feature-card .discover-btn {
  color: #666;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.feature-card .discover-btn:after,
.feature-card .discover-btn:before {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.feature-card .discover-btn:after,
.feature-card .discover-btn:before {
  content: "";
  width: 5px;
  height: 5px;
  background: rgba(236, 186, 35, 0.5);
  display: inline-flex;
  margin: 10px;
  transform: rotate(45deg);
}
.feature-card:hover .discover-btn,
.feature-card:hover .feature-name a {
  color: #bd1f17;
}
.feature-card:hover .discover-btn:after,
.feature-card:hover .discover-btn:before {
  background: #ecba23;
}
.page-navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.prev-page,
.next-page {
  position: relative;
  width: 50%;
  max-width: 350px;
  margin: 10px;
}
.prev-page:before,
.next-page:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
  transform: scale(1.04, 1.12);
  transition: 0.3s ease-in-out;
  pointer-events: none;
}
.prev-page .page-info > a,
.next-page .page-info > a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px 20px;
  min-height: 110px;
  transition: 0.8s;
}
.prev-page .page-info .image-prev,
.prev-page .page-info .image-next {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  transition: inherit;
  overflow: hidden;
}
.next-page .page-info .image-prev,
.next-page .page-info .image-next {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  transition: inherit;
  overflow: hidden;
}
.prev-page .page-info .prev-title,
.prev-page .page-info .next-title {
  display: inline-block;
  position: relative;
  max-width: 220px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  word-wrap: break-word;
  vertical-align: middle;
  transition: 0.45s;
}
.next-page .page-info .prev-title,
.next-page .page-info .next-title {
  display: inline-block;
  position: relative;
  max-width: 220px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  word-wrap: break-word;
  vertical-align: middle;
  transition: 0.45s;
}
.prev-page .page-info .prev-title:empty,
.prev-page .page-info .next-title:empty {
  display: none;
}
.next-page .page-info .prev-title:empty,
.next-page .page-info .next-title:empty {
  display: none;
}
.prev-page:hover:before,
.next-page:hover:before {
  background-color: white;
  transform: scale(1);
  box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1);
}
.prev-page a {
  justify-content: flex-start;
  text-align: left;
}
.prev-page a:hover .image-prev:after {
  visibility: visible;
  opacity: 1;
}
.prev-page a:hover .image-prev:before {
  visibility: visible;
  opacity: 1;
  margin-left: 0;
}
.prev-page .image-prev {
  margin-right: 20px;
}
.prev-page .image-prev:after {
  background-color: #bd1f17;
}
.next-page .image-next:after {
  background-color: #bd1f17;
}
.prev-page .image-prev:before {
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin-left: 20px;
  content: "\e64a";
  font-family: "themify";
  font-size: 21px;
  line-height: 70px;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.prev-page .image-prev:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.next-page {
  margin-left: auto;
}
.next-page a {
  justify-content: flex-end;
  text-align: right;
}
.next-page a:hover .image-next:after {
  visibility: visible;
  opacity: 1;
}
.next-page a:hover .image-next:before {
  visibility: visible;
  opacity: 1;
  margin-right: 0;
}
.next-page .image-next {
  margin-left: 20px;
}
.next-page .image-next:before {
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin-right: 20px;
  content: "\e64a";
  font-family: "themify";
  font-size: 21px;
  line-height: 70px;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  transform: scaleX(-1);
}
.next-page .image-next:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.next-page .next-title {
  text-align: right;
}
.prev-link-page-info > span,
.next-link-page-info > span {
  display: block;
}
.prev-link-page-info .date-details,
.next-link-page-info .date-details {
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 20px;
  margin-bottom: -2px;
}
.prev-link-page-info .date-details > div,
.prev-link-page-info .date-details > span {
  line-height: inherit;
  transition: 0.45s;
  font-weight: 500;
}
.next-link-page-info .date-details > div,
.next-link-page-info .date-details > span {
  line-height: inherit;
  transition: 0.45s;
  font-weight: 500;
}
.prev-link-page-info .date-details:only-child,
.next-link-page-info .date-details:only-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .prev-page,
  .next-page {
    width: calc(100% - 20px);
    max-width: unset;
  }
  .prev-page + .next-page {
    margin-top: 0;
  }
  .page-navigation {
    flex-direction: column;
  }
}
@media screen and (max-width: 575px) {
  .prev-page .page-info > a,
  .next-page .page-info > a {
    padding: 10px;
  }
  .prev-page .page-info .prev-title,
  .prev-page .page-info .next-title {
    max-width: 168px;
  }
  .next-page .page-info .prev-title,
  .next-page .page-info .next-title {
    max-width: 168px;
  }
}
.footer-style1 .footer-item .social-area {
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-social-icon li {
  color: #fff;
  margin-right: 9px;
  display: inline-block;
}
.footer-social-icon li:last-child {
  margin-right: 0;
}
.footer-social-icon li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  background: transparent;
  height: 37px;
  line-height: 37px;
  width: 37px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.footer-social-icon li a:hover {
  background: #ecba23;
}
.footer-logo {
  max-width: 214px;
  width: 100%;
  display: inline-block;
}
.footer-logo > a {
  display: inline-block;
}
footer .email {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding-bottom: 5px;
}
footer .email a {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  transition: all 0.8s ease;
}
footer .email a:hover:after,
footer .email a:active:after,
footer .email a:focus:after {
  width: 100%;
}
footer .email a:hover,
footer .email a:active,
footer .email a:focus {
  color: #bd1f17;
}
footer .email a:after {
  border-bottom: 1px solid #fff;
  transition: all 0.8s ease;
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
}
footer .phone {
  padding-bottom: 0;
  margin-bottom: 0;
}
footer .phone a {
  padding-bottom: 0;
  letter-spacing: -0.05rem;
  color: #fff;
}
footer .phone a:hover,
footer .phone a:active,
footer .phone a:focus {
  color: #bd1f17;
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 60px;
  }
}
