/*-----------------------------------------------------------------------------------

    Theme Name: Fabrex - Transport & Logistics HTML Template
    Description: Transport & Logistics HTML Template
    Author: Chitrakoot Web

-----------------------------------------------------------------------------------*/
/* ----------------------------------

    01. Common styles
    02. Navigation
    03. Page title
    04. Team
    05. Story video
    06. Testimonial
    07. Pagination
    08. Owl carousel
    09. Accordion style
    10. Pages
    11. Blog
    12. Footer
    
---------------------------------- */
/* ===================================
    Common styles
====================================== */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900");
/* loader */
#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%; }
  #preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #002400;
    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 #002400;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s; }

@keyframes LoaderCicle {
  0% {
    width: 0;
    height: 0;
    opacity: 0; }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1; }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1; }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0; } }
/* theme color and basic options */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7; }

.alt-font, .main-font {
  font-family: 'Poppins', sans-serif; }

/* heading */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #1e2022; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #282b2d; }

a:hover, a:active {
  color: #002400;
  text-decoration: none; }

.bg-primary {
  background-color: #002400 !important; }

.primary-overlay[data-overlay-dark]:before {
  background: #002400; }

.text-primary {
  color: #002400 !important; }

.text-secondary {
  color: #292D30 !important; }

.bg-secondary {
  background-color: #292D30 !important; }

.cursor-pointer {
  cursor: pointer; }

input[type=radio] {
  width: auto;
  margin-bottom: 0; }

/* scroll to top */
.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  border-radius: 50%;
  background: #000;
  border: 1px solid #2a2a2a;
  width: 35px;
  height: 35px;
  line-height: 30px;
  z-index: 9999;
  outline: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all 0.3s ease; }
  .scroll-to-top i {
    color: #fff; }
  .scroll-to-top:hover {
    color: #232323;
    background: #fff; }
    .scroll-to-top:hover i {
      color: #232323; }
  .scroll-to-top:visited {
    color: #232323;
    text-decoration: none; }

/* button style */
.butn {
  font-size: 16px;
  color: #fff;
  padding: 18px 40px;
  line-height: 1;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  text-align: center;
  background-color: #002400;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  margin-bottom: -5px; }
  .butn.small {
    padding: 12px 25px; }
  .butn.white {
    color: #002400;
    background: #fff; }
  .butn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, right top, left top, from(#002400), to(transparent));
    background: linear-gradient(right, #002400, transparent);
    width: 100%;
    height: 2px; }
  .butn span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#002400), to(transparent));
    background: linear-gradient(top, #002400, transparent);
    width: 2px;
    height: 100%; }
  .butn span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#002400), to(transparent));
    background: linear-gradient(bottom, #002400, transparent);
    width: 2px;
    height: 100%; }
  .butn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(#002400), to(transparent));
    background: linear-gradient(left, #002400, transparent);
    width: 100%;
    height: 2px; }
  .butn:hover {
    background-color: #292D30;
    color: #fff; }
    .butn:hover::before {
      -webkit-animation: right 2s linear infinite;
      animation: right 2s linear infinite; }
    .butn:hover span::before {
      -webkit-animation: top 2s linear infinite;
      animation: top 2s linear infinite;
      -webkit-animation-delay: 1s;
      animation-delay: 1s; }
    .butn:hover span::after {
      -webkit-animation: bottom 2s linear infinite;
      animation: bottom 2s linear infinite;
      -webkit-animation-delay: 1s;
      animation-delay: 1s; }
    .butn:hover::after {
      -webkit-animation: left 2s linear infinite;
      animation: left 2s linear infinite; }

@-webkit-keyframes left {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }
@keyframes left {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }
@-webkit-keyframes right {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }
@keyframes right {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }
@-webkit-keyframes top {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); } }
@keyframes top {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); } }
@-webkit-keyframes bottom {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); } }
@keyframes bottom {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); } }
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 26px; } }
.form-group {
  margin-bottom: 1rem; }

.btn-check:focus + .btn, .btn:focus {
  box-shadow: none; }

.vw-lg-60 {
  width: 60vw; }

@media screen and (max-width: 991px) {
  .vw-lg-60 {
    width: 100%; } }
.image-hover {
  position: relative;
  overflow: hidden; }
  .image-hover:before {
    position: absolute;
    top: 0;
    left: -120%;
    z-index: 2;
    display: block;
    visibility: visible;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
    transform: skewX(-25deg); }
  .image-hover:hover:before {
    z-index: 1;
    animation: fx_shine 1s forwards; }

@keyframes fx_shine {
  0% {
    left: -90%; }
  100% {
    left: 130%; } }
/* primary listing */
.list-style {
  list-style: none; }
  .list-style li {
    line-height: 24px;
    margin-bottom: 30px;
    vertical-align: middle;
    position: relative;
    padding-left: 50px;
    transition: all 0.3s ease 0s; }
    .list-style li:after {
      content: '\f00c';
      font-family: Font Awesome\ 5 Free;
      position: absolute;
      font-weight: 700;
      font-size: 13px;
      width: 35px;
      top: -5px;
      height: 35px;
      line-height: 35px;
      border: 1px solid #002400;
      color: #002400;
      text-align: center;
      border-radius: 50%;
      left: 0px;
      z-index: 1; }
    .list-style li:last-child {
      margin-bottom: 0; }

/* social links */
.social-icons ul {
  margin-bottom: 0; }
  .social-icons ul li {
    display: inline-block;
    border: 1px solid #002400;
    border-radius: 50%;
    background-color: #002400;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 5px;
    -webkit-transition-duration: .3s;
    transition-duration: 0.3s; }
    .social-icons ul li a {
      color: #fff;
      display: block;
      font-size: 15px;
      height: 35px;
      line-height: 35px;
      text-align: center;
      width: 35px; }
    .social-icons ul li:hover {
      background: transparent;
      border-color: #002400; }
      .social-icons ul li:hover i {
        color: #002400; }

/* section-title1 */
.section-title1 h2 {
  font-size: 50px;
  font-weight: 700; }
.section-title1 .text-stroke {
  word-break: break-word;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #232323;
  -webkit-text-fill-color: transparent;
  transition: all .3s ease-in-out;
  -webkit-text-stroke-width: 1.5px; }
.section-title1 .sub-title {
  color: #292D30;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  display: block; }
.section-title1.white h2, .section-title1.white h1 {
  color: #fff; }
.section-title1.white .text-stroke {
  -webkit-text-stroke-color: #fff; }

@media screen and (max-width: 991px) {
  .section-title1 h2 {
    font-size: 44px; } }
@media screen and (max-width: 767px) {
  .section-title1 h2 {
    font-size: 38px; } }
@media screen and (max-width: 575px) {
  .section-title1 h2 {
    font-size: 32px; } }
/* ===================================
    Navigation
====================================== */
.navbar-nav > li > a {
  font-weight: 600;
  letter-spacing: 1px; }
.navbar-nav li.current > a {
  color: #002400; }

.navbar > ul > li.current > a:after {
  border-color: transparent #002400 #002400 transparent; }

.attr-nav .search {
  margin-top: -5px; }

.navbar > ul > li.has-sub > a:after {
  top: 30px; }
.navbar > ul > li.current > a:after {
  border-color: transparent #002400 #002400 transparent; }
.navbar ul ul li.active > a {
  color: #002400; }

@media screen and (min-width: 992px) {
  .menu_area-light .navbar-nav li a {
    color: #6f6f6f;
    font-size: 16px;
    font-weight: 500; }
  .menu_area-light .navbar-nav li > ul {
    background: #fff; }
  .menu_area-light .navbar-nav > li > a {
    color: #fff; }
  .menu_area-light .navbar ul ul li.active > a {
    color: #002400; }
  .menu_area-light .navbar-nav li.has-sub a:hover {
    color: #232323; }
  .menu_area-light .navbar-nav li.current > a, .menu_area-light .navbar-nav li.active > a {
    color: #002400; }
  .menu_area-light .navbar .sub-title {
    color: #232323; }
  .menu_area-light .navbar-nav > li.has-sub > a:hover {
    color: #fff; }
  .menu_area-light .navbar > ul > li.has-sub > a:hover:after, .menu_area-light .navbar > ul > li.has-sub > a:after {
    border-color: transparent #fff #fff transparent; }
  .menu_area-light .navbar > ul > li.current > a:after {
    border-color: transparent #292D30 #292D30 transparent; }
  .menu_area-light.scrollHeader .navbar-nav > li > a {
    color: #232323; }
  .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #002400; }
  .menu_area-light.scrollHeader .navbar > ul > li.has-sub > a:after {
    border-color: transparent #232323 #232323 transparent; }
  .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
    border-color: transparent #002400 #002400 transparent; }
  .menu_area-light.scrollHeader .navbar-nav li.current > a {
    color: #002400; }
    .menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
      color: #002400; }
  .menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #002400 #002400 transparent; }
  .menu_area-light.scrollHeader .navbar-nav li.active > a {
    color: #002400; }
    .menu_area-light.scrollHeader .navbar-nav li.active > a:hover {
      color: #002400; } }
@media screen and (max-width: 1199px) {
  .navbar-header-custom {
    padding: 12px 0 10px 0; } }
@media screen and (max-width: 991px) {
  .navbar-header-custom {
    padding: 4px 0 8px; }

  .navbar-nav > li > a {
    font-size: 13px; }
  .navbar-nav li.active > a {
    color: #002400; }

  .header-style1 .navbar-toggler, .navbar-toggler {
    background: #efefef; }

  .navbar ul ul li.active > a {
    color: #002400; }

  .navbar-toggler:after {
    border-top: 2px solid #002400;
    border-bottom: 2px solid #002400; }
  .navbar-toggler:before {
    background: #002400; }
  .navbar-toggler.menu-opened:after, .navbar-toggler.menu-opened:before {
    background: #002400; }

  .header-style1 .navbar-toggler {
    background: #002400; }
    .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 {
      background: #fff;
      border-bottom: none; }
    .header-style1 .navbar-toggler.menu-opened:before {
      background: #fff; } }
/* ===================================
    Page title
====================================== */
.page-title-section {
  padding: 250px 0 150px;
  text-align: right; }
  .page-title-section h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px; }
  .page-title-section ul {
    margin: 0;
    display: inline-block; }
    .page-title-section ul li {
      display: inline-block;
      vertical-align: middle; }
      .page-title-section ul li:last-child a {
        color: rgba(255, 255, 255, 0.65); }
      .page-title-section ul li:after {
        content: '\f101';
        font-weight: 700;
        vertical-align: middle;
        color: #fff;
        font-size: 14px;
        font-family: Font Awesome\ 5 Free;
        padding: 0 5px 0 10px; }
      .page-title-section ul li:last-child:after {
        content: none; }
      .page-title-section ul li a {
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px; }
  .page-title-section .active a, .page-title-section li.active:last-child a {
    color: #fff; }

@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 200px 0 100px; }
    .page-title-section h1 {
      font-size: 42px;
      margin-bottom: 15px; }
      .page-title-section h1:before {
        width: 30px; } }
@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 148px 0 75px; }
    .page-title-section h1 {
      text-align: center;
      margin-bottom: 5px;
      font-size: 36px;
      line-height: 42px; }
      .page-title-section h1:before {
        width: 25px; }
    .page-title-section ul {
      margin-top: 0;
      background: none;
      padding: 0; }
      .page-title-section ul li a, .page-title-section ul li:after {
        color: #fff; } }
/* ===================================
    Team
====================================== */
.single-team {
  overflow: hidden;
  text-align: center;
  border-radius: 3px; }

.team-img {
  position: relative; }
  .team-img > a {
    display: inline-block; }

.team-hover-link {
  bottom: 10px;
  left: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  transform: scale(0);
  transition: all 0.7s ease 0s;
  width: 100%; }
  .team-hover-link a {
    background: #002400 none repeat scroll 0 0;
    border-radius: 100%;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin: 7px;
    width: 30px; }
    .team-hover-link a:hover {
      background: #292D30;
      color: #fff; }

.single-team:hover .team-text {
  background: #292D30; }

.team-text {
  background: #002400;
  padding: 15px 10px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -moz-border-radius: 3px;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  border-radius: 3px;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.single-team:hover .team-hover-link {
  transform: scale(1); }
  .single-team:hover .team-hover-link a {
    opacity: 1; }

/* ===================================
    Story video
====================================== */
.story-video {
  height: 100%;
  box-shadow: 0px 5px 24px 6px rgba(0, 0, 0, 0.06); }

.story-video-height {
  height: 100%; }

.video_btn {
  position: relative;
  height: 80px;
  width: 80px;
  background: #002400;
  text-align: center;
  display: inline-block;
  line-height: 85px;
  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 #fff;
    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: .3;
    animation: pulse-border 1500ms ease-out infinite; }
  .video_btn:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 95px;
    width: 95px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -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: .3;
    animation: pulse-border 1500ms ease-out infinite; }

.video_btn-style2:after, .video_btn-style2:before {
  border-color: rgba(0, 0, 0, 0.1); }

@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; } }
.video_btn.border-grey:after, .video_btn.border-grey:before {
  border: 2px solid #d8d8d8; }
.video_btn.small {
  width: 50px;
  height: 50px;
  line-height: 50px; }
  .video_btn.small:after {
    height: 50px;
    width: 50px; }
  .video_btn.small:before {
    height: 65px;
    width: 65px; }

@media screen and (max-width: 1199px) {
  .video_btn {
    height: 75px;
    width: 75px;
    line-height: 80px; }
    .video_btn:after {
      height: 75px;
      width: 75px; }
    .video_btn:before {
      height: 90px;
      width: 90px; } }
@media screen and (max-width: 991px) {
  .story-video-height {
    min-height: 300px; }

  .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) {
  .story-video-height {
    min-height: 250px; }

  .video_btn {
    height: 60px;
    width: 60px;
    line-height: 62px; }
    .video_btn:after {
      height: 60px;
      width: 60px; }
    .video_btn:before {
      height: 75px;
      width: 75px; } }
/* ===================================
    Testimonial
====================================== */
.testimonial-block {
  display: block;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(0, 0, 0, 0.8); }
  .testimonial-block .line {
    position: relative;
    border-left: 1px solid #e6e6e6; }
    .testimonial-block .line:after {
      position: absolute;
      top: 50%;
      left: -2px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      content: '';
      width: 3px;
      height: 30px;
      background: #002400; }
  .testimonial-block .user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    background-size: cover; }
    .testimonial-block .user-img .quote {
      position: absolute;
      bottom: -10px;
      right: 0;
      width: 40px;
      height: 40px;
      background: #fff;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      border-radius: 50%; }

/* ===================================
    Pagination
====================================== */
.pagination {
  border-radius: 0;
  padding: 0;
  margin: 0;
  display: unset; }
  .pagination ul {
    display: inline-block;
    margin: 0 auto;
    padding: 0; }
  .pagination li {
    display: inline; }
  .pagination a {
    float: left;
    padding: 0 18px;
    line-height: 40px;
    text-decoration: none;
    border: 1px solid #dbdbdb;
    border-left-width: 0;
    background: #fff; }
    .pagination a:hover {
      background-color: #232323;
      color: #fff; }
  .pagination .active a {
    background-color: #f7f7f7;
    color: #999;
    cursor: default; }
  .pagination li:first-child a {
    border-left-width: 1px; }
  .pagination a:hover {
    background-color: #232323;
    color: #fff; }
  .pagination .active a {
    background-color: #f7f7f7;
    color: #999;
    cursor: default; }

/* ===================================
    Owl carousel
====================================== */
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #002400; }

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  width: 40px;
  height: 40px;
  background: #fff;
  -webkit-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
  -webkit-box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1);
  -moz-box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1); }

.owl-nav i, .owl-nav span {
  color: #232323;
  font-size: 18px;
  padding-top: 4px; }

.owl-carousel .owl-item img {
  width: auto;
  display: inline-block; }

/* ===================================
    Accordion style
====================================== */
.accordion-style .card {
  background: transparent;
  box-shadow: none;
  margin-top: 0 !important;
  margin-bottom: 10px;
  border: none; }
  .accordion-style .card:last-child {
    margin-bottom: 0; }
.accordion-style .card-header {
  border: 0px;
  padding: 0;
  background: none; }
.accordion-style .btn-link {
  border-bottom: 1px solid #eee;
  color: #6f6f6f;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  padding: 15px 50px 15px 15px;
  text-decoration: none; }
  .accordion-style .btn-link:hover {
    text-decoration: none; }
  .accordion-style .btn-link.collapsed {
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .accordion-style .btn-link.collapsed:after {
      background: none;
      content: "+";
      right: 15px;
      left: inherit;
      font-size: 18px;
      transform: none;
      top: 13px;
      text-align: center;
      padding-left: 0;
      letter-spacing: -1px; }
  .accordion-style .btn-link:after {
    background: none;
    content: "-";
    right: 15px;
    left: inherit;
    font-size: 18px;
    transform: none;
    top: 13px;
    position: absolute;
    color: #002400;
    text-align: center;
    padding-left: 2px;
    letter-spacing: -2px; }
.accordion-style .btn {
  border-radius: 0; }
.accordion-style .card-body {
  background-color: transparent;
  padding: 20px;
  line-height: 24px;
  text-align: left;
  border: none;
  border-top: none; }
.accordion-style.style1 .btn-link {
  border-bottom: none;
  color: #fff;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  padding: 15px 50px 15px 15px;
  text-decoration: none;
  font-size: 15px;
  background: rgba(225, 225, 225, 0.04); }
.accordion-style.style1 .card-body, .accordion-style.style1 .btn-link:after {
  color: #fff; }

@media screen and (max-width: 767px) {
  .accordion-style .btn-link.collapsed:after, .accordion-style .btn-link:after {
    top: 15px; } }
/* ===================================
    Pages
====================================== */
/* custom file */
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  margin-bottom: 0; }

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  margin: 0;
  opacity: 0; }

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem; }

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse"; }

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + .75rem);
  padding: .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 .25rem .25rem 0; }

/* card-style1 */
.card-style1 {
  position: relative;
  height: 280px;
  border-radius: 10px; }
  .card-style1:hover .card-body {
    transform: rotateY(180deg); }
  .card-style1 .card-body {
    position: relative;
    z-index: 1;
    transition: 0.7s;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: inherit; }
  .card-style1 .card-front, .card-style1 .card-back {
    padding: 20px 30px 20px 30px;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.12); }
  .card-style1 .card-front {
    text-align: left;
    justify-content: center;
    background-color: #ffffff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: rotate(0);
    transition: 0.7s;
    perspective: inherit;
    transform-style: preserve-3d; }
  .card-style1 .card-back {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: rotate(0);
    transition: 0.7s;
    perspective: inherit;
    transform-style: preserve-3d;
    text-align: center;
    justify-content: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotateY(-180deg); }

/* blog section */
.blog-style1 {
  position: relative;
  overflow: hidden; }
  .blog-style1:hover .blog-img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  .blog-style1:hover .blog-detail .blog-hover {
    margin-bottom: 0; }
  .blog-style1 .blog-img {
    overflow: hidden; }
    .blog-style1 .blog-img img {
      -webkit-transition: all 0.4s ease-in;
      transition: all 0.4s ease-in; }
  .blog-style1 .blog-detail {
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 20px 15px;
    padding: 18px 19px 20px;
    overflow: hidden; }
    .blog-style1 .blog-detail .blog-hover {
      margin-bottom: -174px;
      -webkit-transition: all 0.4s ease-in;
      transition: all 0.4s ease-in; }

@media screen and (max-width: 1199px) {
  .blog-style1 .blog-detail .blog-hover {
    margin-bottom: -150px; } }
/* service-style1 */
.service-bottom {
  margin-bottom: -90px;
  position: relative;
  z-index: 9; }

.service-style1 {
  background-color: #ffffff;
  padding: 60px 40px;
  text-align: center;
  height: 100%;
  transition: all 0.15s linear 0s; }
  .service-style1.hover {
    background-color: #002400;
    box-shadow: 0 -20px 0 #002400; }
  .service-style1 i {
    color: #292D30; }
  .service-style1:hover {
    background-color: #002400;
    box-shadow: 0 -20px 0 #002400; }
    .service-style1:hover a, .service-style1:hover p, .service-style1:hover h3, .service-style1:hover i {
      color: #fff; }

/* services detail page */
.services-single-menu li {
  margin-bottom: 8px;
  background: #f7f7f7; }
  .services-single-menu li:last-child {
    margin-bottom: none; }
  .services-single-menu li.active a {
    border-left-color: #002400;
    color: #002400; }
    .services-single-menu li.active a:after {
      content: none; }
  .services-single-menu li a {
    display: block;
    border-left: 3px solid transparent;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 10px 14px 20px; }

/* gallery page */
/* Popup gallery*/
.lg-backdrop {
  z-index: 99999; }

.lg-outer {
  z-index: 999999; }
  .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #002400; }

.lg-progress-bar .lg-progress {
  background-color: #002400; }

.lg-backdrop.in {
  opacity: 0.85; }

.gallary-block .overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  text-align: center; }
.gallary-block a {
  color: #fff; }
  .gallary-block a:hover {
    color: #002400; }
.gallary-block .overlay:before {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: #000000;
  content: "";
  opacity: .50;
  transition: all 500ms ease; }
.gallary-block:hover .overlay:before {
  left: 0;
  width: 100%; }
.gallary-block .img-text {
  display: none; }
.gallary-block:hover .img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: 1;
  text-align: center;
  color: #fff;
  transform: translate(-50%, -50%);
  display: block; }

/* error page */
.error-page h2 {
  line-height: 1;
  font-size: 200px;
  font-weight: 600;
  letter-spacing: 0px; }
  .error-page h2 span {
    display: inline-block;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }

@media screen and (max-width: 991px) {
  .error-page h2 {
    font-size: 170px; } }
@media screen and (max-width: 767px) {
  .error-page h2 {
    font-size: 140px; } }
@media screen and (max-width: 575px) {
  .error-page h2 {
    font-size: 100px; } }
/* contact page */
.map {
  height: 400px;
  width: 100%;
  vertical-align: top;
  border: none; }

/* search page */
.search-frame .search_list li:before {
  top: 15px; }

.search-form i {
  font-size: 1.2rem;
  line-height: 2rem; }

/* quform */
.form-group {
  margin-bottom: 1rem; }
  .form-group label {
    margin-bottom: .5rem; }

.form-control:focus {
  border-color: #f7b035; }

.form-check-input:checked {
  border-color: #f7b035;
  background-color: #f7b035; }
.form-check-input:focus {
  box-shadow: none; }

.quform-input {
  position: relative; }
  .quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1; }

.quform-element > label {
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 14px; }
  .quform-element > label .quform-required {
    color: #cc0101;
    font-size: 10px; }

.quform-inner input {
  width: 100%; }

.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top; }
.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px; }

.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal; }
  .quform-errors > .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 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; }

.light-validation .quform-errors > .quform-error {
  color: #fff; }

/* ===================================
    Blog
====================================== */
.tags a {
  background-color: #fff;
  border: 1px solid #eaeaea;
  color: #a6a6a6;
  padding: 5px 15px;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  margin-right: 5px;
  text-transform: uppercase; }
  .tags a:hover {
    background-color: #002400;
    color: #fff; }

.blogs .post {
  margin-bottom: 50px; }
  .blogs .post .content {
    padding-top: 30px; }
    .blogs .post .content .post-title h5 {
      font-size: 26px;
      line-height: normal;
      font-weight: 500;
      margin-bottom: 0; }
      .blogs .post .content .post-title h5 a {
        color: #232323; }
        .blogs .post .content .post-title h5 a:hover {
          color: #F24259; }
    .blogs .post .content .meta {
      margin-bottom: 15px; }
      .blogs .post .content .meta li {
        display: inline-block;
        margin: 5px 5px 0 5px; }
    .blogs .post .content .special {
      padding: 30px;
      margin: 30px 0;
      border-left: 3px solid #002400;
      font-size: 18px; }
    .blogs .post .content .btn {
      border-color: #6f6f6f;
      color: #6f6f6f;
      min-width: auto;
      padding: 6px 20px;
      font-size: 12px; }
      .blogs .post .content .btn:hover {
        color: #fff;
        border-color: #F24259; }
  .blogs .post .share-post {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
    text-align: left; }
    .blogs .post .share-post span {
      font-weight: 700; }
    .blogs .post .share-post ul {
      float: right; }
      .blogs .post .share-post ul li {
        display: inline-block;
        margin: 0 0 0 15px; }
  .blogs .post .post-img img {
    width: 100%; }
.blogs .posts .title-g h3 {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 10px; }

.post-cont ol li {
  padding-bottom: 8px; }
  .post-cont ol li:last-child {
    padding-bottom: 0; }

.pagination {
  border-radius: 0;
  padding: 0;
  margin: 0; }
  .pagination ul {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 auto;
    padding: 0; }
  .pagination li {
    display: inline; }
  .pagination a {
    float: left;
    padding: 0 18px;
    line-height: 40px;
    text-decoration: none;
    border: 1px solid #dbdbdb;
    border-left-width: 0;
    background: #fff; }
    .pagination a:hover {
      background-color: #232323;
      color: #fff; }
  .pagination .active a {
    background-color: #f7f7f7;
    color: #999;
    cursor: default; }
  .pagination .disabled span {
    color: #999;
    background-color: transparent;
    cursor: default; }
  .pagination .disabled a {
    color: #999;
    background-color: transparent;
    cursor: default; }
    .pagination .disabled a:hover {
      color: #999;
      background-color: transparent;
      cursor: default; }
  .pagination li:first-child a {
    border-left-width: 1px; }

.side-bar .widget {
  margin-bottom: 30px; }
  .side-bar .widget:last-child {
    margin-bottom: 0; }
  .side-bar .widget .widget-title h6 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600; }
  .side-bar .widget li {
    margin: 0 0 9px 0;
    color: #6f6f6f; }
    .side-bar .widget li:last-child {
      margin: 0; }
  .side-bar .widget .social-listing {
    margin-bottom: 0; }
    .side-bar .widget .social-listing li {
      list-style: none;
      display: inline-block; }
      .side-bar .widget .social-listing li:after {
        background: none; }
      .side-bar .widget .social-listing li:first-child {
        padding-left: 0; }
.side-bar .search form input {
  width: calc(100% - 50px);
  height: 50px;
  padding: 0 10px;
  margin: 0;
  border: 1px solid #d1d1d1;
  background: #f7f7f7; }
.side-bar .search form button {
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  border: 0;
  float: right;
  border-radius: 0;
  padding: 0; }
  .side-bar .search form button:hover:before {
    border-radius: 0;
    padding: 0; }

@media screen and (max-width: 1199px) {
  .blog-grid-text h4 {
    font-size: 18px; }

  .blogs .post .content .post-title h5 {
    font-size: 22px; }
  .blogs .post .content .special {
    font-size: 16px; }
  .blogs .posts .title-g h3 {
    font-size: 22px; } }
@media screen and (max-width: 767px) {
  .blogs .post .content .post-title h5 {
    font-size: 20px; }
  .blogs .post .content .special {
    font-size: 14px; }
  .blogs .posts .title-g h3 {
    font-size: 18px; } }
/* ===================================
    Footer
====================================== */
footer {
  padding: 50px 0 0;
  background: #292D30;
  color: rgba(255, 255, 255, 0.65); }
  footer a {
    color: rgba(255, 255, 255, 0.65); }
    footer a:hover {
      color: white; }
  footer p {
    margin-bottom: 0; }
  footer h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1;
    position: relative; }

.footer-bar {
  padding-top: 20px;
  padding-bottom: 120px;
  margin-top: 50px;
  text-align: center;
  background: #292D30;
  color: #939393; }
  .footer-bar span {
    font-size: 15px;
    font-weight: 400; }

.instagram-post .single-post {
  float: left;
  padding: 8px;
  width: 33.33%; }
  .instagram-post .single-post > a {
    position: relative;
    display: inline-block; }
    .instagram-post .single-post > a:before {
      background: rgba(255, 192, 70, 0.7);
      content: "";
      height: 100%;
      opacity: 0;
      position: absolute;
      transform: scale(0.6);
      transition: all 0.3s ease 0s;
      width: 100%; }
    .instagram-post .single-post > a:hover:before {
      opacity: 1;
      transform: scale(1); }
  .instagram-post .single-post img {
    width: 100%; }

.footer-social-icons ul {
  margin-bottom: 0; }
  .footer-social-icons ul li {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 5px;
    -webkit-transition-duration: .3s;
    transition-duration: 0.3s; }
    .footer-social-icons ul li a {
      color: #939393;
      display: block;
      font-size: 15px;
      height: 35px;
      line-height: 34px;
      text-align: center;
      width: 35px; }
    .footer-social-icons ul li:hover {
      background: #002400;
      border-color: #002400; }
      .footer-social-icons ul li:hover i {
        color: #fff; }
.footer-social-icons.small ul li {
  margin-bottom: 0; }
  .footer-social-icons.small ul li a {
    font-size: 12px;
    height: 25px;
    line-height: 26px;
    width: 25px; }

@media screen and (max-width: 991px) {
  footer h3 {
    margin-bottom: 25px; }

  .instagram-post .single-post {
    width: auto; } }
@media screen and (max-width: 767px) {
  footer {
    padding-top: 30px; }
    footer h3 {
      font-size: 16px;
      margin-bottom: 20px; }

  .footer-bar {
    margin-top: 30px; }
    .footer-bar p {
      font-size: 13px; } }
@media screen and (max-width: 575px) {
  footer .list-style3 li {
    display: block;
    width: 100%; } }

/*# sourceMappingURL=styles.css.map */
