/*
@File: Fennec Template Styles

* This file contains the styling for the actual tepmlate, this
is the file you need to edit to change the look of the
tepmlate.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Preloader Area CSS
** - Header Area CSS
** - Main Banner Area CSS
** - Boxes Area CSS
** - About Area CSS
** - Services Area CSS
** - Working Process Area CSS
** - History Area CSS
** - Testimonials and Video Area CSS
** - Funfacts and Partner Area CSS
** - Project Area CSS
** - Career Area CSS
** - Team Area CSS
** - FunFacts Area CSS
** - Leading Area CSS
** - Partner Area CSS
** - Quote Area CSS
** - Testimonials Area CSS
** - Blog Area CSS
** - Subscribe Area CSS
** - Page Title Area CSS
** - Shop Area CSS
** - Products Details Area CSS
** - Cart Area CSS
** - Checkout Area CSS
** - Pagination Area CSS
** - Sidebar Area CSS
** - Contact Us Area CSS
** - Services Details Area CSS
** - Blog Details Area CSS
** - Projects Details Area CSS
** - 404 Error Area CSS
** - FAQ Area CSS
** - Coming Soon Area CSS
** - Footer Area CSS
** - Go Top Area CSS
** - Modal Area CSS
*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&amp;display=swap");
body {
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight:200;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.ptb-50
{
  padding-top: 50px;
  padding-bottom: 50px;
}
a {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
  outline: 0;
}

a:hover, a:focus {
  color: #02298a;
  text-decoration: none;
  outline: 0;
}

.d-table {
  height: 100%;
  width: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #1ba5b7;
}

p {
  color: #000;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}

p:last-child {
  margin-bottom: 0;
}

.bg-f8f8f8 {
  background-color: #f8f8f8;
}

.bg-fffcf7 {
  background-color: #fffcf7;
}

/*btn-primary*/
.btn {
  border: 1px solid;
  position: relative;
  border-radius: 5px;
  padding: 12px 25px 13px;
  line-height: initial;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.btn.disabled, .btn:disabled {
  opacity: 1;
}

.btn-primary {
  color: #ffffff;
  /*border-color: #02298a;*/
  background: transparent;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:#1ba5b7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
  color: #ffffff;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  background: transparent;
  border-radius: 0;
  border-color: #fd6c1e;
}

.btn-primary:not(:disabled):not(.disabled).active::before, .btn-primary:not(:disabled):not(.disabled):active::before, .show > .btn-primary.dropdown-toggle::before {
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
}

.btn-primary:not(:disabled):not(.disabled).active::after, .btn-primary:not(:disabled):not(.disabled):active::after, .show > .btn-primary.dropdown-toggle::after {
  opacity: 1;
  visibility: visible;
  border-radius: 0;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.btn-primary:hover, .btn-primary:focus {
  color: #ffffff;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  background: transparent;
  border-radius: 0;
  border-color: #fd6c1e;
}

.btn-primary:hover::before, .btn-primary:focus::before {
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
}

.btn-primary:hover::after, .btn-primary:focus::after {
  opacity: 1;
  visibility: visible;
  border-radius: 0;
}

.btn-secondary {
  border-color: #ff6904;
  color: #ff6904;
  background: transparent;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
  color: #ffffff;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  background: #02298a;
}

.btn-secondary:not(:disabled):not(.disabled).active::before, .btn-secondary:not(:disabled):not(.disabled):active::before, .show > .btn-secondary.dropdown-toggle::before {
  opacity: 1;
  visibility: visible;
  left: 0;
  width: 100%;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.btn-secondary:hover, .btn-secondary:focus {
  color: #ffffff;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  background: transparent;
  border-radius: 0;
}

.btn-secondary:hover::before, .btn-secondary:focus::before {
  opacity: 1;
  visibility: visible;
  left: 0;
  width: 100%;
  border-radius: 0;
}

/*section-title*/
.section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.section-title span {
  color: #1ba5b7;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 10px;
}

.section-title p {
  margin-bottom: 0;
  /* max-width: 450px; */
}

.section-title .btn {
  position: absolute;
  right: 0;
  bottom: 0;
}

.section-title img {
  position: absolute;
  left: -35px;
  top: -35px;
  z-index: -1;
  opacity: .2;
}

.section-title.text-center {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.section-title.text-center img {
  margin: 0 auto;
  right: 0;
}

.section-title.text-center p {
  max-width: 525px;
  margin-left: auto;
  margin-right: auto;
}

.section-title.optional-color span {
  color: #fd6c1e;
}

/*form-control*/
.form-control {
  height: 45px;
  border: 1px solid #43a5b7;
  background-color: transparent;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #141414;
  line-height: initial;
  padding-left: 13px;
  font-size: 14px;
}

.form-control:hover, .form-control:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.form-control::-webkit-input-placeholder {
  color: #999999;
}

.form-control:-ms-input-placeholder {
  color: #999999;
}

.form-control::-ms-input-placeholder {
  color: #999999;
}

.form-control::placeholder {
  color: #999999;
}

.form-control:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  border-color: #02298a;
}


/*================================================
Header Area CSS
=================================================*/
.top-header {
  overflow: hidden;
  border-bottom: 1px solid #ffffff;
  background: red;
  color: #fff;
}

.top-header .nav-list {
  list-style-type: none;
  display: inline-block;
  margin-bottom: 0;
  margin-right: 15px;
  border-right: 2px solid #ff0000;
  padding-left: 230px;
  /* padding-right: 15px; */
}

.top-header .nav-list li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin-right: 20px;
}

.top-header .nav-list li a {
  color: #ffffff;
}

.top-header .nav-list li::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
}

.top-header .nav-list li:last-child {
  margin-right: 0;
}

.top-header .nav-list li:last-child::before {
  display: none;
}

.top-header .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  display: inline-block;
}

.top-header .social li {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
}

.top-header .social li a {
  color: #ffffff;
}

.top-header .social li a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: #fd6c1e;
}

.top-header .social li:last-child {
  margin-right: 0;
}

.top-header .top-header-content {
  z-index: 1;
  position: relative;
  padding-top: 15px;
  padding-bottom: 16px;
}

.top-header .top-header-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #121212;
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.top-header .top-header-content::after {
  content: '';
  position: absolute;
  left: -520px;
  top: 0;
  width: 540px;
  height: 100%;
  z-index: -1;
  background: #121212;
}

.top-header .header-info {
  /* text-align: right; */
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.top-header .header-info li {
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  margin-right: 15px;
}

.top-header .header-info li i {
  color: #ffffff;
  margin-right: 2px;
}

.top-header .header-info li:last-child {
  margin-right: 0;
}

.top-header-style-two {
  border-bottom: 1px solid #e7e7e7;
  background-color: #f8f8f8;
  padding-left: 80px;
  padding-right: 80px;
}

.top-header-style-two .header-info {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.top-header-style-two .header-info li {
  display: inline-block;
  color: #777777;
  font-size: 14px;
  margin-right: 15px;
}

.top-header-style-two .header-info li i {
  color: #fd6c1e;
  margin-right: 2px;
}

.top-header-style-two .header-info li:last-child {
  margin-right: 0;
}

.top-header-style-two .header-info-right {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  text-align: right;
}

.top-header-style-two .header-info-right li {
  display: inline-block;
  text-align: left;
  position: relative;
  margin-right: 25px;
  padding-left: 32px;
}

.top-header-style-two .header-info-right li span a {
  font-weight: 700;
  display: inline-block;
  color: #141414;
}

.top-header-style-two .header-info-right li i {
  color: #fd6c1e;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.top-header-style-two .header-info-right li i::before {
  font-size: 22px;
}

.top-header-style-two .header-info-right li .btn-primary {
  border: none;
  color: #ffffff;
  border-color: #fd6c1e;
  background: transparent;
  border-radius: 0;
  padding: 14px 25px 15px;
}

.top-header-style-two .header-info-right li .btn-primary::before {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
}

.top-header-style-two .header-info-right li .btn-primary::after {
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
}

.top-header-style-two .header-info-right li .btn-primary:not(:disabled):not(.disabled).active, .top-header-style-two .header-info-right li .btn-primary:not(:disabled):not(.disabled):active, .show > .top-header-style-two .header-info-right li .btn-primary.dropdown-toggle {
  border-color: #02298a;
}

.top-header-style-two .header-info-right li .btn-primary:hover, .top-header-style-two .header-info-right li .btn-primary:focus {
  border-color: #02298a;
}

.top-header-style-two .header-info-right li:nth-child(2) span a {
  color: #ae0000;
}

.top-header-style-two .header-info-right li:last-child {
  padding-left: 0;
  margin-right: 0;
}

.middle-header {
  padding-top: 15px;
  padding-bottom: 15px;
}

.middle-header ul {
  text-align: right;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  position: relative;
  top: 8px;
}

.middle-header ul li {
  display: inline-block;
  position: relative;
  text-align: left;
  padding-left: 55px;
  text-transform: uppercase;
  font-size: 14px;
  color: #141414;
  margin-right: 25px;
}

.middle-header ul li span {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #02298a;
}

.middle-header ul li i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.middle-header ul li i::before {
  font-size: 35px;
}

.middle-header ul li:nth-child(2) span {
  color: #ae0000;
  font-size: 19px;
}

.middle-header ul li:last-child {
  margin-right: 0;
  padding-left: 0;
}

.middle-header ul li .btn {
  top: -13px;
}

.middle-header ul li .btn-primary {
  color: #ffffff;
  border-color: #fd6c1e;
  background: transparent;
}

.middle-header ul li .btn-primary::before {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
}

.middle-header ul li .btn-primary::after {
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
}

.middle-header ul li .btn-primary:not(:disabled):not(.disabled).active, .middle-header ul li .btn-primary:not(:disabled):not(.disabled):active, .show > .middle-header ul li .btn-primary.dropdown-toggle {
  border-color: #02298a;
}

.middle-header ul li .btn-primary:hover, .middle-header ul li .btn-primary:focus {
  border-color: #02298a;
}

.fennec-mobile-nav {
  display: none;
}

.fennec-mobile-nav.mean-container .mean-nav ul li a.active {
  color: #02298a;
}

.fennec-mobile-nav .others-option {
  position: absolute;
  text-align: center;
  right: 48px;
  top: 14px;
  width: 21%;
}

.fennec-mobile-nav .others-option .option-item {
  color: #141414;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  line-height: initial;
}

.fennec-mobile-nav .others-option .option-item:last-child {
  margin-right: 0;
}

.fennec-mobile-nav .others-option .option-item .search-btn {
  cursor: pointer;
}

.fennec-mobile-nav .others-option .option-item .search-btn::before {
  font-size: 17px;
}

.fennec-mobile-nav .others-option .option-item .close-btn {
  cursor: pointer;
  display: none;
  font-size: 17px;
}

.fennec-mobile-nav .others-option .option-item .close-btn.active {
  display: block;
}

.fennec-mobile-nav .others-option .option-item a {
  color: #141414;
}

.fennec-mobile-nav .others-option .option-item a i::before {
  font-size: 17px;
}

.fennec-mobile-nav .others-option .option-item a span {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  line-height: 15px;
  font-weight: 600;
  font-size: 10px;
  position: relative;
  top: -12px;
  left: -12px;
}

.fennec-mobile-nav .navbar-nav {
  overflow-y: auto;
  height: 428px;
}

.fennec-mobile-nav .search-overlay.search-popup {
  width: 265px;
  right: -95px;
  margin-top: 23px;
}

.fennec-mobile-nav .search-overlay.search-popup .search-form .search-input {
  width: 95%;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.navbar-area.is-sticky .fennec-nav {
  /*background-color: #121212;*/
}


.nav-clip {
    background: #1ba5b7;
}

.nav-clip:before {
    content: "";
    width: 70px;
    clip-path: polygon(66% 0%, 100% 0, 100% 100%, 0% 100%);
    background: #1ba5b7;
    display: block;
    z-index: 9999;
    /* clear: both; */
    height: 61px;
    position: absolute;
    left: -68px;
}


.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.fennec-nav {
  /*background-color: #121212;*/
  padding-top: 0;
  padding-bottom: 0;
}

.fennec-nav .navbar {
  padding: 0;
}

.fennec-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.fennec-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding: 0;
}

.fennec-nav .navbar .navbar-nav .nav-item a {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  padding: 20px 12px;
  position: relative;
  z-index: 1;
  margin: 0;
}

.fennec-nav .navbar .navbar-nav .nav-item a i {
  margin-left: 1px;
}

.fennec-nav .navbar .navbar-nav .nav-item a i::before {
  font-size: 11px;
}

.fennec-nav .navbar .navbar-nav .nav-item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fennec-nav .navbar .navbar-nav .nav-item a:hover, .fennec-nav .navbar .navbar-nav .nav-item a:focus, .fennec-nav .navbar .navbar-nav .nav-item a.active {
  color: #000;
}

.fennec-nav .navbar .navbar-nav .nav-item a:hover::before, .fennec-nav .navbar .navbar-nav .nav-item a:focus::before, .fennec-nav .navbar .navbar-nav .nav-item a.active::before {
  opacity: 1;
  visibility: visible;
}

.fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: absolute;
  border: none;
  top: 80px;
  left: 0;
  width: 194px;
  z-index: 99;
  display: block;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-top: 15px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 15px;
}

.fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  text-transform: capitalize;
  padding: 5px 15px;
  display: block;
  color: #141414;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
}
.logo-lg {
    position: absolute;
    z-index: 99;
}
.fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::before {
  display: none;
}

.fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 3px;
  left: -5px;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #1ba5b7, #1ba5b7, #1ba5b7, #1ba5b7, #1ba5b7);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  top: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #000;
}

.fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::after, .fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::after, .fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::first-child {
  margin-top: 0;
}

.fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: 220px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 220px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.fennec-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  margin-top: 0;
}

.fennec-nav .others-option {
  margin-left: auto;
}

.fennec-nav .others-option .option-item {
  color: #141414;
  display: inline-block;
  margin-right: 15px;
  position: relative;
  line-height: initial;
}

.fennec-nav .others-option .option-item:last-child {
  margin-right: 0;
}

.fennec-nav .others-option .option-item .search-btn {
  cursor: pointer;
}

.fennec-nav .others-option .option-item .search-btn::before {
  font-size: 20px;
}

.fennec-nav .others-option .option-item .close-btn {
  cursor: pointer;
  display: none;
  font-size: 20px;
}

.fennec-nav .others-option .option-item .close-btn.active {
  display: block;
}

.fennec-nav .others-option .option-item a {
  color: #141414;
}

.fennec-nav .others-option .option-item a i::before {
  font-size: 20px;
}

.fennec-nav .others-option .option-item a span {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  line-height: 15px;
  font-weight: 600;
  font-size: 10px;
  position: relative;
  top: -12px;
  left: -12px;
}

.search-overlay {
  display: none;
}

.search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: #ffffff;
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.search-overlay.search-popup .search-form {
  position: relative;
}

.search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 40px;
  line-height: initial;
  border: 1px solid #eeeeee;
  padding-left: 10px;
  color: #141414;
  outline: 0;
}

.search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  background: transparent;
  border: none;
  width: 40px;
  outline: 0;
  color: #777777;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.search-overlay.search-popup .search-form .search-button:hover, .search-overlay.search-popup .search-form .search-button:focus {
  color: #141414;
}

.navbar-style-two {
  background-color: #f8f8f8;
}

.navbar-style-two .fennec-nav {
  background-color: #f8f8f8;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 80px;
  padding-right: 80px;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav {
  margin-left: auto;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item {
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item a {
  padding: 0;
  margin: 0 12px;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item a i {
  color: #666666;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item a::before {
  display: none;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item a:hover, .navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item a:focus, .navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item a.active {
  color: #fd6c1e;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item a:hover i, .navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item a:focus i, .navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item a.active i {
  color: #fd6c1e;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  margin-top: 6px;
  margin-left: 0;
  margin-right: 0;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::after {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to left, #1ba5b7, #1ba5b7, #1ba5b7, #1ba5b7, #1ba5b7);
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #fd6c1e;
}

.navbar-style-two .fennec-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::first-child {
  margin-top: 0;
}

.navbar-style-two .fennec-nav .others-option {
  margin-left: 22px;
}

.navbar-style-two.is-sticky .fennec-nav {
  padding-top: 10px;
  padding-bottom: 10px;
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 160px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-banner.extra-pb {
  padding-bottom: 125px;
}

.main-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: #312d2d;*/
  opacity: .55;
  z-index: -1;
}

.main-banner-content {
  max-width: 600px;
  background-color: #2f2f2f96;
  padding: 10px 20px;
}

.main-banner-content h1 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 700;
}

.main-banner-content p {
  color: #ffffff;
  opacity: .95;
  font-size: 16px;
  margin-bottom: 30px;
}

.main-banner-content .btn {
  border: none;
  padding: 14px 25px 15px;
}

.home-slides.owl-theme .owl-nav {
  margin-top: 0;
  line-height: .01;
}

.home-slides.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  padding: 0 !important;
  background-color: #343030;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #ffffff;
  border-radius: 5px;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: 0;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
}

.home-slides.owl-theme .owl-nav [class*=owl-]::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
     background: linear-gradient(to left, #1ba5b7, #1ba5b7, #1ba5b7, #1ba5b7, #1ba5b7);
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.home-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 100px;
}

.home-slides.owl-theme .owl-nav [class*=owl-]:hover::before {
  opacity: 1;
  visibility: visible;
}

.home-slides.owl-theme .owl-nav.disabled + .owl-dots {
  line-height: initial;
  margin-top: 0;
  margin-bottom: 30px;
}

.home-slides.owl-theme:hover .owl-nav [class*=owl-] {
  opacity: 1;
  visibility: visible;
  left: 80px;
}

.home-slides.owl-theme:hover .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 80px;
}

.home-slides.owl-theme .owl-dots {
  position: absolute;
  left: 210px;
  bottom: 50px;
}

.home-slides.owl-theme .owl-dots .owl-dot {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  outline: 0;
}

.home-slides.owl-theme .owl-dots .owl-dot span {
  margin: 0 3px;
  width: 20px;
  background: #9d9d9d;
  border-radius: 0;
  height: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.home-slides.owl-theme .owl-dots .owl-dot.active span {
  background: #fd6c1e;
  width: 35px;
}

.home-slides-two.owl-theme .owl-nav {
  margin-top: 0;
  line-height: .01;
  position: absolute;
  width: 235px;
  bottom: -47px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 25px 20px;
  z-index: 3;
}

.home-slides-two.owl-theme .owl-nav [class*=owl-] {
  margin: 0;
  padding: 0 !important;
  background-color: #adadad;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #ffffff;
  border-radius: 5px;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: 0;
  position: relative;
  margin-right: 45px;
}

.home-slides-two.owl-theme .owl-nav [class*=owl-] i::before {
  font-size: 18px;
}

.home-slides-two.owl-theme .owl-nav [class*=owl-]::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.home-slides-two.owl-theme .owl-nav [class*=owl-].owl-next {
  margin-left: 45px;
  margin-right: 0;
}

.home-slides-two.owl-theme .owl-nav [class*=owl-]:hover::before {
  opacity: 1;
  visibility: visible;
}

.home-slides-two.owl-theme .owl-dots {
  position: absolute;
  left: 210px;
  bottom: 210px;
}

.home-slides-two.owl-theme .owl-dots .owl-dot {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  outline: 0;
}

.home-slides-two.owl-theme .owl-dots .owl-dot span {
  margin: 0 3px;
  width: 20px;
  background: #9d9d9d;
  border-radius: 0;
  height: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.home-slides-two.owl-theme .owl-dots .owl-dot.active span {
  background: #fd6c1e;
  width: 35px;
}

.home-area {
  position: relative;
}

.main-banner-two {
  background-image: url(../img/banner-shape.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 20px;
  padding-left: 145px;
  padding-right: 145px;
  padding-bottom: 140px;
}

.hero-content h1 {
  margin-bottom: 15px;
  font-size: 55px;
  font-weight: 700;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 25px;
  max-width: 560px;
}

.hero-content .btn {
  border: none;
  padding: 14px 25px 15px;
}

.hero-content .btn-primary {
  color: #ffffff;
  border-color: #fd6c1e;
  background: transparent;
}

.hero-content .btn-primary::before {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
}

.hero-content .btn-primary::after {
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
}

.hero-content .btn-primary:not(:disabled):not(.disabled).active, .hero-content .btn-primary:not(:disabled):not(.disabled):active, .show > .hero-content .btn-primary.dropdown-toggle {
  border-color: #02298a;
}

.hero-content .btn-primary:hover, .hero-content .btn-primary:focus {
  border-color: #02298a;
}


.item-bg01{
    background-image: url(../img/sliders/newone.jpg);
          height: 578px;
}

.item-bg02{
    background-image: url(../img/sliders/new2.jpg);
          height: 578px;
}


.item-bg03{
    background-image: url(../img/sliders/new3.jpg);
          height: 578px;
}


.item-bg1 {
  background-image: url(../img/sliders/r-banner-001.jpg);
}

.item-bg2 {
  background-image: url(../img/sliders/r-banner-004.jpg);
      height: 578px;
}

.item-bg3 {
  background-image: url(../img/sliders/r-banner-003.jpg);
      height: 578px;
}
.item-bg4 {
  background-image: url(../img/sliders/1.jpg);
}

.item-bg-new {
  background-image: url(../img/sliders/r-banner-001.jpg);
      height: 578px;
}

.item-bg-new1 {
  background-image: url(../img/sliders/r-banner-002.jpg);
      height: 578px;
}

.scroll-down {
  position: absolute;
  left: 0;
  bottom: -27px;
  right: 0;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
  width: 55px;
}

.scroll-down span {
  display: block;
  color: #d8d8d8;
  margin-bottom: 2px;
  font-size: 20px;
  font-style: italic;
}

.scroll-down i {
  font-size: 20px;
  -webkit-animation: bounce 1000ms ease infinite;
          animation: bounce 1000ms ease infinite;
  color: #fd6c1e;
}

@-webkit-keyframes bounce {
  0%, 100% {
    top: 9px;
    opacity: 0.5;
  }
  25% {
    top: 12px;
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes bounce {
  0%, 100% {
    top: 9px;
    opacity: 0.5;
  }
  25% {
    top: 12px;
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}


.Ongoing filter img {
    height: 262px;
}



/*================================================
Boxes Area CSS
=================================================*/
.boxes-area {
  background-color: transparent;
  position: relative;
  z-index: 1;
  margin-top: -100px;
}

.boxes-area::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 0;
  background: url(../img/line.jpg);
  z-index: -1;
  width: 100%;
  height: 100px;
}

.single-box {
  text-align: center;
  background-color: #ffffff;
  padding: 35px 20px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
}

.single-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  opacity: 0;
  visibility: hidden;
}

.single-box .icon {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border: 1px solid #a2c8ef;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
  color: #ffffff;
}

.single-box .icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  z-index: -1;
  border-radius: 50%;
  margin: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-box .icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  z-index: -1;
  border-radius: 50%;
  margin: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.single-box .icon i::before {
  font-size: 30px;
}

.single-box h3 {
  font-size: 22px;
  font-weight: 700;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 1.5;
  margin-bottom: 15px;
  margin-top: 20px;
}

.single-box p {
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-box .read-more-btn {
  margin-top: 20px;
}

.single-box:hover::before {
  opacity: 1;
  visibility: visible;
}

.single-box:hover .icon {
  border-color: #586186;
}

.single-box:hover .icon::after {
  opacity: 1;
  visibility: visible;
}

.single-box:hover .icon::before {
  opacity: 0;
  visibility: hidden;
}

.single-box:hover h3 {
  color: #ffffff;
}

.single-box:hover p {
  color: #ffffff;
}

.single-box:hover .read-more-btn {
  color: #ffffff;
}

.single-box:hover .read-more-btn::before {
  background: #ffffff;
}

.boxes-style-two {
  background-color: transparent;
  position: relative;
  z-index: 1;
  margin-top: -100px;
}

.single-box-item {
  text-align: center;
  background-color: #ffffff;
  padding: 35px 20px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

.single-box-item::before {
  border-radius: 5px;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  opacity: 0;
  visibility: hidden;
}

.single-box-item .icon {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border: 1px solid #fdd3b3;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
  color: #ffffff;
}

.single-box-item .icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  z-index: -1;
  border-radius: 50%;
  margin: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-box-item .icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: -1;
  border-radius: 50%;
  margin: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.single-box-item .icon i::before {
  font-size: 30px;
}

.single-box-item h3 {
  font-size: 22px;
  font-weight: 700;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 1.5;
  margin-bottom: 15px;
  margin-top: 20px;
}

.single-box-item p {
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-box-item .read-more-btn {
  margin-top: 20px;
  color: #fd6c1e;
}

.single-box-item .read-more-btn::before {
  background: #fd6c1e;
}

.single-box-item:hover::before {
  opacity: 1;
  visibility: visible;
}

.single-box-item:hover .icon {
  border-color: #f9a067;
  color: #fd6c1e;
}

.single-box-item:hover .icon::after {
  opacity: 1;
  visibility: visible;
}

.single-box-item:hover .icon::before {
  opacity: 0;
  visibility: hidden;
}

.single-box-item:hover h3 {
  color: #ffffff;
}

.single-box-item:hover p {
  color: #ffffff;
}

.single-box-item:hover .read-more-btn {
  color: #ffffff;
}

.single-box-item:hover .read-more-btn::before {
  background: #ffffff;
}

.col-lg-4.col-md-6:nth-child(2) .single-box::before {
  opacity: 1;
  visibility: visible;
}

.col-lg-4.col-md-6:nth-child(2) .single-box .icon {
  border-color: #586186;
}

.col-lg-4.col-md-6:nth-child(2) .single-box .icon::after {
  opacity: 1;
  visibility: visible;
}

.col-lg-4.col-md-6:nth-child(2) .single-box .icon::before {
  opacity: 0;
  visibility: hidden;
}

.col-lg-4.col-md-6:nth-child(2) .single-box h3 {
  color: #ffffff;
}

.col-lg-4.col-md-6:nth-child(2) .single-box p {
  color: #ffffff;
}

.col-lg-4.col-md-6:nth-child(2) .single-box .read-more-btn {
  color: #ffffff;
}

.col-lg-4.col-md-6:nth-child(2) .single-box .read-more-btn::before {
  background: #ffffff;
}

.col-lg-4.col-md-6:nth-child(2) .single-box-item::before {
  opacity: 1;
  visibility: visible;
}

.col-lg-4.col-md-6:nth-child(2) .single-box-item .icon {
  border-color: #f9a067;
  color: #fd6c1e;
}

.col-lg-4.col-md-6:nth-child(2) .single-box-item .icon::after {
  opacity: 1;
  visibility: visible;
}

.col-lg-4.col-md-6:nth-child(2) .single-box-item .icon::before {
  opacity: 0;
  visibility: hidden;
}

.col-lg-4.col-md-6:nth-child(2) .single-box-item h3 {
  color: #ffffff;
}

.col-lg-4.col-md-6:nth-child(2) .single-box-item p {
  color: #ffffff;
}

.col-lg-4.col-md-6:nth-child(2) .single-box-item .read-more-btn {
  color: #ffffff;
}

.col-lg-4.col-md-6:nth-child(2) .single-box-item .read-more-btn::before {
  background: #ffffff;
}

/*================================================
About Area CSS
=================================================*/
.about-area {
  position: relative;
  z-index: 1;
  background: #fff;
}

.about-image {
  position: relative;
  padding-bottom: 290px;
}

.about-image img {
  border-radius: 5px;
}

.about-image img:nth-child(2) {
  position: absolute;
  bottom: 90px;
  right: -20px;
  max-width: 80%;
}

.about-content {
  padding-left: 15px;
}

.about-content .section-title {
  margin-bottom: 25px;
}

.about-content .section-title p {
  margin-top: 0;
}

.about-content ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-right: -10px;
  margin-bottom: 5px;
  margin-top: -10px;
}

.about-content ul li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 10px;
  font-weight: 600;
  color: #000;
  position: relative;
  padding-right: 10px;
  padding-left: 22px;
}

.about-content ul li i {
  color: #1ba5b7;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-content p {
  margin-top: 15px;
  margin-bottom: 0;
}

.about-content .btn {
  margin-top: 22px;
}

.about-content.optional-color {
  padding-left: 0;
}

.about-content.optional-color .btn-primary {
  color: #ffffff;
  border-color: #fd6c1e;
  background: transparent;
}

.about-content.optional-color .btn-primary::before {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
}

.about-content.optional-color .btn-primary::after {
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
}

.about-content.optional-color .btn-primary:not(:disabled):not(.disabled).active, .about-content.optional-color .btn-primary:not(:disabled):not(.disabled):active, .show > .about-content.optional-color .btn-primary.dropdown-toggle {
  border-color: #02298a;
}

.about-content.optional-color .btn-primary:hover, .about-content.optional-color .btn-primary:focus {
  border-color: #02298a;
}

.shape-box1 {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.shape-box1 img {
  opacity: .05;
}

.about-company-content {
  position: relative;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #090b06, #1e1306, #242424, #242424, #121212);
  z-index: 1;
  margin-top: 45px;
  margin-bottom: 53px;
  margin-right: -70px;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-right: 70px;
}

.about-company-content::before {
  content: '';
  position: absolute;
  bottom: -8px;
  height: 8px;
  left: 0;
  width: 98%;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
}

.about-company-content .inner-content {
  max-width: 540px;
  margin-left: auto;
}

.about-company-content .section-title {
  margin-bottom: 25px;
}

.about-company-content .section-title span {
  color:#1ba5b7;
}

.about-company-content .section-title h2 {
  color: #ffffff;
}

.about-company-content .section-title p {
  margin-top: 0;
  color: #ffffff;
}

.about-company-content .section-title img {
  display: none;
}

.about-company-content ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-right: -10px;
  margin-bottom: 0;
  margin-top: -10px;
}

.about-company-content ul li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  margin-top: 10px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-left: 22px;
  padding-right: 10px;
}

.about-company-content ul li i {
  color: #fd6c1e;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-company-content p {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 0;
}

.about-company-content .btn {
  margin-top: 22px;
}

.about-company-content .btn-primary {
  color: #ffffff;
  border-color: #fd6c1e;
  background: transparent;
}

.about-company-content .btn-primary::before {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
}

.about-company-content .btn-primary::after {
  background: #ffffff;
}

.about-company-content .btn-primary:not(:disabled):not(.disabled).active, .about-company-content .btn-primary:not(:disabled):not(.disabled):active, .show > .about-company-content .btn-primary.dropdown-toggle {
  border-color: #ffffff;
  color: #02298a;
}

.about-company-content .btn-primary:hover, .about-company-content .btn-primary:focus {
  border-color: #ffffff;
  color: #02298a;
}

.about-company-content::after {
  content: '';
  position: absolute;
  background: url(../img/shape2-black.png);
  bottom: 0;
  left: 0;
  width: 670px;
  height: 100%;
  opacity: .60;
  z-index: -1;
}

.about-company-video {
  position: relative;
  width: 96%;
  height: 95%;
  background-image: url(../img/sports/sports6.jpeg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bhb {
    position: relative;
    */: ;
    background-attachment: fixed;
    /* height: 100%; */
    background-attachment: fixed;
    background-image: url(../img/sports/img.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-company-video img {
  display: none;
}

.about-company-video .video-btn {
  position: absolute;
  right: 0;
  left: 0;
  text-align: center;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  color: #02298a;
  background-color: #ffffff;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
}

.about-company-video .video-btn i::before {
  font-size: 40px;
}

.about-company-video .video-btn::after {
  z-index: -1;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.about-company-video .video-btn:hover, .about-company-video .video-btn:focus {
  color: #ffffff;
  background-color: #fd6c1e;
}

.shape-box6 {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.shape-box6 img {
  opacity: .10;
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
  background: #e8e8e8a6;
}

.services-area .pagination-area {
  margin-bottom: 30px;
}

.single-services-box {
  margin-bottom: 30px;
  /* text-align: center; */
  background-color: #000000;
  border-radius: 5px;
  /* border: 2px solid #272727; */
  /* padding: 40px 30px; */
  position: relative;
  z-index: 1;
  padding: 20px;
  background-color: #292929;
}

.single-services-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  /* background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305); */
  z-index: -1;
  width: 100%;
  box-shadow: 0px 0px 10px 5px #000;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box .icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  border: 1px solid #a8cdf5;
  line-height: 78px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box .icon::before, .single-services-box .icon::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 3px;
  z-index: -1;
  content: '';
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box .icon::before {
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
}

.single-services-box .icon::after {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  opacity: 0;
  visibility: hidden;
}

.single-services-box .icon i::before {
  font-size: 35px;
}

.single-services-box .icon i.flaticon-home {
  position: relative;
  top: -2px;
}

.single-services-box h3 {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 22px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.single-services-box p {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 0;
}

.single-services-box .read-more-btn {
  margin-top: 20px;
}

.single-services-box:hover {
  border-radius: 0;
}

.single-services-box:hover h3 {
  color: #ffffff;
}

.single-services-box:hover p {
  color: #ffffff;
}

.single-services-box:hover::before {
  opacity: 1;
  visibility: visible;
}

.single-services-box:hover .read-more-btn {
  color: #ffffff;
}

.single-services-box:hover .read-more-btn::before {
  background: #ffffff;
}

.single-services-box:hover .icon {
  border-color: #556e8b;
}

.single-services-box:hover .icon::before {
  opacity: 0;
  visibility: hidden;
}

.single-services-box:hover .icon::after {
  opacity: 1;
  visibility: visible;
}

.services-box {
  margin-bottom: 30px;
  text-align: center;
  background-color: #f6f6f6;
  border-radius: 5px;
  border: 2px solid #f6f6f6;
  padding: 20px 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.services-box h4 {
    margin-top: 15px;
}
.services-box .icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  border: 1px solid #fdd3b3;
  line-height: 78px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.services-box .icon::before, .services-box .icon::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 3px;
  z-index: -1;
  content: '';
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#our-projects .filter-button
{
        background: #fff;
    border: none;
    padding: 6px 20px;
    border-bottom: 4px solid black;
    text-transform: capitalize;
}
#our-projects .filter-button h5
{
    margin-bottom:0px
}
.services-box .icon::before {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
}

.services-box .icon::after {
  background: #fd6c1e;
  opacity: 0;
  visibility: hidden;
}

.services-box .icon i::before {
  font-size: 35px;
}

.services-box .icon i.flaticon-home {
  position: relative;
  top: -2px;
}

.services-box h3 {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 22px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.services-box p {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 0;
}

.services-box .read-more-btn {
  color: #fd6c1e;
  margin-top: 20px;
}

.services-box .read-more-btn::before {
  background: #fd6c1e;
}

.services-box:hover {
  border-radius: 0;
  border-color: #ffffff;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
}

.services-box:hover .icon::after {
  opacity: 1;
  visibility: visible;
}

.read-more-btn {
  display: inline-block;
  color: #f36507;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
}

.read-more-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 35px;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}

.read-more-btn:hover::before, .read-more-btn:focus::before {
  right: -25px;
  opacity: 1;
  visibility: visible;
}

.services-slides.owl-theme .owl-nav.disabled + .owl-dots {
  line-height: initial;
  margin-top: 0;
  margin-bottom: 30px;
}

.services-slides.owl-theme .owl-dots .owl-dot {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  outline: 0;
}

.services-slides.owl-theme .owl-dots .owl-dot span {
  margin: 0 3px;
  width: 20px;
  background: #acacac;
  border-radius: 0;
  height: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.services-slides.owl-theme .owl-dots .owl-dot.active span {
  background: #ff6904;
  width: 35px;
}

.shape-box2 {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.shape-box2 img {
  opacity: .38;
}

.shape-box4 {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.shape-box4 img {
  opacity: .67;
}

.shape-box5 {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
}

.shape-box5 img {
  opacity: .64;
}

/*================================================
Working Process Area CSS
=================================================*/
.working-process-area {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.working-process-area.extra-mt {
  /* margin-top: 47px; */
}

.single-working-process {
  margin-bottom: 30px;
  position: relative;
  padding-left: 100px;
  z-index: 1;
}

.single-working-process .icon {
  position: absolute;
  left: 0;
  top: 5px;
  width: 80px;
  height: 80px;
  border: 1px solid #a8cdf5;
  line-height: 76px;
  border-radius: 50%;
  z-index: 1;
  color: #ffffff;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-working-process .icon::before, .single-working-process .icon::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 3px;
  z-index: -1;
  content: '';
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-working-process .icon::before {
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
}

.single-working-process .icon::after {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  opacity: 0;
  visibility: hidden;
}

.single-working-process .icon i::before {
  font-size: 35px;
}

.single-working-process h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.single-working-process p {
  margin-bottom: 0;
}

.single-working-process .back-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0 auto;
  text-align: center;
  z-index: -1;
  color: #777777;
  opacity: .12;
  font-size: 100px;
  font-weight: 700;
  font-style: italic;
}

.single-working-process:hover .icon {
  border-color: #556e8b;
}

.single-working-process:hover .icon::before {
  opacity: 0;
  visibility: hidden;
}

.single-working-process:hover .icon::after {
  opacity: 1;
  visibility: visible;
}

/*================================================
History Area CSS
=================================================*/
.history-area {
  padding-bottom: 70px;
}

.timeline {
  position: relative;
  text-align: center;
}

.timeline .slick-current::after {
  background-color: rgba(0, 52, 113, 0);
}

.timeline .slick-current .timeline-year {
  opacity: 1;
}

.timeline .slick-current .timeline-slide__content {
  opacity: 1;
}

.timeline .timeline-nav {
  padding: 0 100px;
}

.timeline .timeline-nav .timeline-nav__item {
  color: #777777;
  margin: 0 25px 20px;
  position: relative;
  outline: none;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: .80;
  font-size: 15px;
  font-weight: 600;
}

.timeline .timeline-nav .timeline-nav__item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #afc9f6;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.timeline .timeline-nav .timeline-nav__item.slick-current, .timeline .timeline-nav .timeline-nav__item:hover {
  color: #02298a;
  opacity: 1;
}

.timeline .timeline-nav .timeline-nav__item.slick-current::before, .timeline .timeline-nav .timeline-nav__item:hover::before {
  background-color: #02298a;
}

.timeline .timeline-wrapper {
  position: relative;
  margin-top: 30px;
}

.timeline .timeline-wrapper .timeline-slide {
  position: relative;
  overflow: hidden;
  outline: none;
  z-index: 1;
  margin-left: 15px;
  margin-right: 15px;
}

.timeline .timeline-wrapper .timeline-slide .timeline-year {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: #02298a;
  display: inline-block;
  color: #ffffff;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 18px;
}

.timeline .timeline-wrapper .timeline-slide .timeline-slide__content {
  z-index: 2;
  position: relative;
  background: #ffffff;
  padding: 40px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  margin-top: -50px;
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 30px;
}

.timeline .timeline-wrapper .timeline-slide .timeline-slide__content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.timeline .timeline-wrapper .timeline-slide .timeline-slide__content p {
  margin-bottom: 0;
}

/*================================================
Testimonials and Video Area CSS
=================================================*/
.testimonials-video {
  position: relative;
  z-index: 1;
  background:black;
}

.testimonials-video::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: -1;
  background-color: #090b06;
}

.testimonials-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #fc6b0a;
  padding-top: 45px;
  padding-bottom: 45px;
}

.testimonials-inner .section-title h2 {
  color: #ffffff;
}

.testimonials-inner .section-title span {
  color: #1ba5b7;
}

.testimonials-inner .section-title img {
  right: 0;
  margin: 0 auto;
  opacity: .26;
}

.testimonials-inner .section-title p {
  margin: 0 auto;
  color: #ffffff;
}

/*.testimonials-inner::before {
  content: "\f101";
  position: absolute;
  bottom: 110px;
  left: 0;
  right: 0;
  color: #000000;
  opacity: .27;
  font-family: Flaticon;
  font-size: 90px;
  font-style: normal;
}*/

.testimonials-item {
  padding: 0 80px;
  text-align: center;
}

.testimonials-item.section-plankey img {
  display: inline-block !important;
  border: 2px solid #dadada;
  width: 100% !important;
  height: 500px;
  
}

.testimonials-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fd6c1e;
  margin-top: 15px;
  margin-bottom: 5px;
}

.testimonials-item span {
  display: block;
  color: #ffffff;
  font-size: 14px;
}

.testimonials-item p {
  color: #ffffff;
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 18px;
  font-style: italic;
}

.testimonials-slides.owl-theme .owl-nav {
  margin-top: 25px;
  line-height: .01;
}

.testimonials-slides.owl-theme .owl-nav [class*=owl-] {
  background: transparent;
  color: #fd6c1e;
  padding: 0 !important;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-left: 8px;
  margin-right: 8px;
}

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

.video-inner img {
  display: none;
}

.video-inner .video-btn {
  position: absolute;
  right: 0;
  left: 0;
  text-align: center;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  color: #02298a;
  background-color: #ffffff;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
}

.video-inner .video-btn i::before {
  font-size: 40px;
}

.video-inner .video-btn::after {
  z-index: -1;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.video-inner .video-btn:hover, .video-inner .video-btn:focus {
  color: #ffffff;
  background-color: #fd6c1e;
}

@-webkit-keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

/*================================================
Funfacts and Partner Area CSS
=================================================*/
.funfacts-partner {
  position: relative;
  z-index: 1;
  background-color: #f6f6f6;
  padding-top: 70px;
  padding-bottom: 70px;
}

.funfacts-partner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: #ff0000;
}

.funfacts-inner {
  padding-left: 20px;
  padding-right: 10px;
}

.funfacts-box {
  position: relative;
  padding-left: 90px;
}

.funfacts-box i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #121212;
  line-height: 1;
}

.funfacts-box i::before {
  font-size: 65px;
}

.funfacts-box h3 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1;
}

.funfacts-box p {
  line-height: initial;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
}

.partner-inner {
  padding-left: 25px;
  padding-right: 25px;
}

.partner-inner .partner-item {
  text-align: center;
}

.partner-inner .partner-item img {
  display: inline-block !important;
  width: auto !important;
}

/*================================================
Project Area CSS
=================================================*/
.project-area {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
  background: #f0f0f0;
}

.project-area .section-title {
  margin-bottom: 0;
}

.project-area .row.align-items-center:first-child {
  margin-bottom: 60px;
}

.project-area.optional-color .single-project-box .project-content {
  background: rgba(0, 0, 0, 0.8);
}

.project-area.optional-color .single-project-box .project-content .inner-content h3 {
  color: #ffffff;
}

.project-area.optional-color .single-project-box .project-content .inner-content h3::before {
  background: #fd6c1e;
}

.project-area.optional-color .single-project-box .project-content .inner-content p {
  color: #ffffff;
}

.project-area.optional-color .single-project-box .project-content .inner-content .btn-primary {
  color: #ffffff;
  border-color: #fd6c1e;
  background: transparent;
}

.project-area.optional-color .single-project-box .project-content .inner-content .btn-primary::before {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
}

.project-area.optional-color .single-project-box .project-content .inner-content .btn-primary::after {
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
}

.project-area.optional-color .single-project-box .project-content .inner-content .btn-primary:not(:disabled):not(.disabled).active, .project-area.optional-color .single-project-box .project-content .inner-content .btn-primary:not(:disabled):not(.disabled):active, .show > .project-area.optional-color .single-project-box .project-content .inner-content .btn-primary.dropdown-toggle {
  border-color: #02298a;
}

.project-area.optional-color .single-project-box .project-content .inner-content .btn-primary:hover, .project-area.optional-color .single-project-box .project-content .inner-content .btn-primary:focus {
  border-color: #02298a;
}

.shorting-menu {
  text-align: right;
}

.shorting-menu .filter {
  border: none;
  outline: 0;
  background: transparent;
  color: #dedede;
  text-transform: uppercase;
  padding: 6px 18px 8px;
  line-height: initial;
  border-radius: 5px 5px 0 0;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 600;
  font-size: 14px;
  margin-left: -1px;
  margin-right: -1px;
}

.shorting-menu .filter.active, .shorting-menu .filter:hover {
  background-color: #e05a00;
  color: #ffffff;
}

.shorting-menu .filter.active::before, .shorting-menu .filter:hover::before {
  opacity: 1;
  visibility: visible;
  height: 5px;
  bottom: -4px;
}

.shorting-menu .filter::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #000000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0 0 5px 5px;
}

.shorting-menu.text-center {
  margin-top: 40px;
  margin-bottom: 40px;
}

.shorting-menu.optional-color .filter {
  padding: 6px 18px;
  border-radius: 5px;
}

.shorting-menu.optional-color .filter.active, .shorting-menu.optional-color .filter:hover {
  background-color: #fd6c1e;
  color: #ffffff;
}

.shorting-menu.optional-color .filter::before {
  display: none;
}

.shorting .mix {
  display: none;
}

.single-project-box {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.single-project-box img {
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  min-height: 250px;
}

.single-project-box .project-content {
  position: absolute;
  border-radius: 5px;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.82);
  margin: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.single-project-box .project-content .inner-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0 auto;
  padding: 20px 30px;
}

.single-project-box .project-content .inner-content h3 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}

.single-project-box .project-content .inner-content h3::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 1px;
  background: #02298a;
  width: 70px;
}

.single-project-box .project-content .inner-content p {
  margin-bottom: 20px;
}

.single-project-box:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.single-project-box:hover .project-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.shape-box3 {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.shape-box3 img {
  opacity: .16;
}

/*================================================
Career Area CSS
=================================================*/
.career-area {
  position: relative;
  z-index: 0;
  display: block;
  background-position: center center;
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
  height: 140px;
  background: #000000;
}

.career-content {
  text-align: center;
  margin: 0 auto;
  max-width: 520px;
}
.career-content1{
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
}
.career-content span {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  color: #fd6c1e;
}

.career-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  margin-top: 8px;
}

.career-content .btn-primary {
  color: #ffffff;
  border-color: #ff0000;
  background: transparent;
}

.career-content .btn-primary::before {
  background: #ff0000;
}

.career-content .btn-primary::after {
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
}

.career-content .btn-primary:not(:disabled):not(.disabled).active, .career-content .btn-primary:not(:disabled):not(.disabled):active, .show > .career-content .btn-primary.dropdown-toggle {
  border-color: #02298a;
}

.career-content .btn-primary:hover, .career-content .btn-primary:focus {
  border-color: #02298a;
}

/*================================================
Team Area CSS
=================================================*/
.team-area {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}

.team-area.bg-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/shape-bg.jpg);
}

.single-team-box {
  text-align: center;
  margin-bottom: 30px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}

.single-team-box img {
  border-radius: 5px 5px 0 0;
}

.single-team-box .team-content {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 35px 15px;
  border-radius: 0 0 5px 5px;
  background-color: #fafafa;
}

.single-team-box .team-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.single-team-box .team-content span {
  display: block;
  color: #777777;
}

.single-team-box .team-hover-content {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 35px 15px;
  border-radius: 0 0 5px 5px;
  background-color: #fafafa;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

.single-team-box .team-hover-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.single-team-box .team-hover-content span {
  display: block;
  color: #777777;
  margin-bottom: 15px;
}

.single-team-box .team-hover-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team-box .team-hover-content ul li {
  display: inline-block;
}

.single-team-box .team-hover-content ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid #abc5e8;
  position: relative;
  z-index: 1;
  color: #ffffff;
  line-height: 38px;
  border-radius: 50%;
}

.single-team-box .team-hover-content ul li a::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  margin: 2px;
  content: '';
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team-box .team-hover-content ul li a::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  content: '';
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.single-team-box .team-hover-content ul li a:hover, .single-team-box .team-hover-content ul li a:focus {
  border-color: #fd6c1e;
}

.single-team-box .team-hover-content ul li a:hover::before, .single-team-box .team-hover-content ul li a:focus::before {
  opacity: 0;
  visibility: hidden;
}

.single-team-box .team-hover-content ul li a:hover::after, .single-team-box .team-hover-content ul li a:focus::after {
  opacity: 1;
  visibility: visible;
}

.single-team-box:hover {
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: #ffffff;
}

.single-team-box:hover .team-content {
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
}

.single-team-box:hover .team-hover-content {
  background-color: #ffffff;
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.team-box {
  background-color: #fafafa;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 50% 50% 0 0;
}

.team-box .team-image {
  position: relative;
}

.team-box .team-image img {
  border-radius: 50%;
}

.team-box .team-image ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.team-box .team-image ul li {
  position: relative;
  margin-bottom: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.team-box .team-image ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid #fde8ca;
  position: relative;
  z-index: 1;
  color: #ffffff;
  line-height: 40px;
  border-radius: 50%;
}

.team-box .team-image ul li a::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  margin: 2px;
  content: '';
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.team-box .team-image ul li a::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  content: '';
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  margin: 2px;
}

.team-box .team-image ul li a:hover, .team-box .team-image ul li a:focus {
  border-color: #abc5e8;
}

.team-box .team-image ul li a:hover::before, .team-box .team-image ul li a:focus::before {
  opacity: 0;
  visibility: hidden;
}

.team-box .team-image ul li a:hover::after, .team-box .team-image ul li a:focus::after {
  opacity: 1;
  visibility: visible;
}

.team-box .team-image ul li:nth-child(1) {
  right: 0;
}

.team-box .team-image ul li:nth-child(2) {
  top: -2px;
  right: -0;
}

.team-box .team-image ul li:nth-child(3) {
  right: -0;
}

.team-box .team-image ul li:nth-child(4) {
  right: 0;
}

.team-box .team-image ul li:last-child {
  margin-bottom: 0;
}

.team-box .team-content {
  padding: 30px 15px;
}

.team-box .team-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.team-box .team-content span {
  display: block;
  color: #777777;
}

.team-box:hover .team-image ul {
  opacity: 1;
  visibility: visible;
}

.team-box:hover .team-image ul li:nth-child(1) {
  right: 10px;
}

.team-box:hover .team-image ul li:nth-child(2) {
  right: -15px;
}

.team-box:hover .team-image ul li:nth-child(3) {
  right: -12px;
}

.team-box:hover .team-image ul li:nth-child(4) {
  right: 10px;
}

/*================================================
FunFacts Area CSS
=================================================*/
.funfacts-area {
  padding-top: 70px;
  padding-bottom: 70px;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  position: relative;
  z-index: 1;
}

.single-funfacts-box {
  position: relative;
  padding-left: 85px;
}

.single-funfacts-box i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fd6c1e;
  line-height: 1;
  color: #d0dff4;
}

.single-funfacts-box i::before {
  font-size: 65px;
}

.single-funfacts-box h3 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1;
}

.single-funfacts-box p {
  line-height: initial;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
}

/*================================================
Leading Area CSS
=================================================*/
.leading-area {
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  /* background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305); */
  overflow: hidden;
  background: #000;
}

.leading-image {
  text-align: center;
}

.leading-content {
  z-index: 1;
  position: relative;
  text-align: center;
}

.leading-content h3 {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 30px;
  font-weight: 700;
}

.leading-content h2 {
  color: #fd6c1e;
  margin-bottom: 0;
  font-size: 140px;
  font-weight: 700;
}

.leading-content span {
  display: block;
  color: #ffffff;
  margin-top: -25px;
  font-size: 22px;
  font-weight: 600;
}

.leading-content ul {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center !important;
  -webkit-box-align: center !important;
          align-items: center !important;
  margin-top: 35px;
  margin-bottom: 0;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 50px;
  padding-right: 50px;
}

.leading-content ul li {
  text-align: left;
  display: inline-block;
  color: #efefef;
  text-transform: uppercase;
  position: relative;
  font-size: 14px;
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  padding-left: 55px;
  padding-right: 15px;
}

.leading-content ul li span {
  font-size: 27px;
  font-weight: 700;
  margin-top: 0;
}

.leading-content ul li i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.leading-content ul li i::before {
  font-size: 35px;
}

.leading-content ul li:nth-child(2) span {
  font-size: 17px;
}

.animate-border span {
  position: absolute;
  display: block;
  width: 5%;
  padding-bottom: 5%;
  top: 50%;
  left: 65%;
  opacity: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  pointer-events: none;
  border-radius: 50%;
  z-index: -1;
  margin-top: 0;
}

.animate-border span:nth-child(1) {
  -webkit-animation: 4.2s ease-out .5s infinite normal none running pulsei;
          animation: 4.2s ease-out .5s infinite normal none running pulsei;
}

.animate-border span:nth-child(2) {
  -webkit-animation: 4.2s ease-out 1.5s infinite normal none running pulsei;
          animation: 4.2s ease-out 1.5s infinite normal none running pulsei;
}

.animate-border span:nth-child(3) {
  -webkit-animation: 4.2s ease-out 2.5s infinite normal none running pulsei;
          animation: 4.2s ease-out 2.5s infinite normal none running pulsei;
}

.animate-border span:nth-child(4) {
  -webkit-animation: 4.2s ease-out 3.5s infinite normal none running pulsei;
          animation: 4.2s ease-out 3.5s infinite normal none running pulsei;
}

@-webkit-keyframes pulsei {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    border: 1.5px solid #023282;
    opacity: 1;
    width: 5%;
    padding-bottom: 5%;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0;
    width: 50%;
    border: 1.5px solid #023282;
    padding-bottom: 50%;
  }
}

@keyframes pulsei {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    border: 1.5px solid #023282;
    opacity: 1;
    width: 5%;
    padding-bottom: 5%;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0;
    width: 50%;
    border: 1.5px solid #023282;
    padding-bottom: 50%;
  }
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
  padding-top: 50px;
  padding-bottom: 50px;
}

.partner-slides-two {
  padding-left: 40px;
  padding-right: 40px;
}

.partner-slides-two .partner-item {
  text-align: center;
}

.partner-slides-two .partner-item img {
  display: inline-block !important;
  width: auto !important;
  opacity: .40;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.partner-slides-two .partner-item:hover img {
  opacity: 1;
}

.partner-slides-three .partner-item {
  text-align: center;
}

.partner-slides-three .partner-item img {
  display: inline-block !important;
  width: auto !important;
  opacity: .40;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.partner-slides-three .partner-item:hover img {
  opacity: 1;
}

/*================================================
Quote Area CSS
=================================================*/
.quote-area {
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
}

.quote-inner {
  background-color: #ffffff;
  padding-right: 40px;
}

.quote-inner .section-title {
  margin-bottom: 30px;
}

.quote-inner .section-title img {
  left: 0;
}

.quote-image {
  width: 100%;
  height: 100%;
  background-image: url(../img/quote-img.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.quote-image img {
  display: none;
}

.quote-content {
  padding-top: 55px;
  padding-bottom: 55px;
}

.quote-content form .row {
  margin-left: -8px;
  margin-right: -8px;
}

.quote-content form .row .col-lg-6, .quote-content form .row .col-lg-12 {
  padding-right: 8px;
  padding-left: 8px;
}

.quote-content form .form-control {
  background-color: #f8f8f8;
  border: none;
}

.quote-content form textarea {
  padding-top: 10px;
}

.quote-content form .nice-select.form-control {
  float: unset;
  line-height: 32px;
  color: #999999;
}

.quote-content form .nice-select.form-control:after {
  height: 7px;
  width: 7px;
}

.quote-content form .nice-select.form-control .list {
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 0;
  margin-bottom: 0;
}

.quote-content form .nice-select.form-control .list .option {
  min-height: unset;
  line-height: 35px;
  padding-left: 15px;
  padding-right: 50px;
}

.quote-content form .nice-select.form-control .list .option.selected {
  color: #02298a;
  background-color: transparent;
  font-weight: normal;
}

.quote-content form button {
  margin-top: 10px;
}

.quote-shape-box1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.quote-shape-box1 img {
  opacity: .40;
}

.quote-shape-box2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.quote-shape-box2 img {
  opacity: .40;
}

/*================================================
Testimonials Area CSS
=================================================*/
.testimonials-video-content {
  position: relative;
}

.testimonials-video-content img {
  width: 100%;
}

.testimonials-video-content .video-btn {
  position: absolute;
  right: 0;
  left: 0;
  text-align: center;
  margin: 0 auto;
  top: 28%;
  display: inline-block;
  color: #02298a;
  background-color: #ffffff;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  z-index: 1;
}

.testimonials-video-content .video-btn i::before {
  font-size: 40px;
}

.testimonials-video-content .video-btn::after {
  z-index: -1;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.testimonials-video-content .video-btn:hover, .testimonials-video-content .video-btn:focus {
  color: #ffffff;
  background-color: #fd6c1e;
}

.testimonials-video-content .video-content {
  border-radius: 40px 40px 0 0;
  position: absolute;
  bottom: 0;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  width: 100%;
  left: 0;
  text-align: center;
  padding: 25px 20px;
}

.testimonials-video-content .video-content h3 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
}

.testimonials-video-content .video-content p {
  color: #e0e0e0;
  font-style: italic;
}

.testimonials-vertical-slider {
  margin-bottom: 0 !important;
}

.testimonials-vertical-slider .slick-dots {
  position: absolute;
  right: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: auto;
  width: auto;
}

.testimonials-vertical-slider .slick-dots li {
  display: block;
  margin: 5px 0;
  width: auto;
  height: auto;
}

.testimonials-vertical-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid #02298a;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 0;
}

.testimonials-vertical-slider .slick-dots li button::before {
  display: none;
}

.testimonials-vertical-slider .slick-dots li.slick-active button, .testimonials-vertical-slider .slick-dots li:hover button {
  background-color: #02298a;
}

.testimonials-vertical-slider .slick-dots li:first-child {
  margin-top: 0;
}

.testimonials-vertical-slider .slick-dots li:last-child {
  margin-bottom: 0;
}

.single-testimonials-item {
  outline: 0;
  position: relative;
  padding-left: 110px;
}

.single-testimonials-item:not(:first-child) {
  margin-top: 25px;
}

.single-testimonials-item .client-image {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.single-testimonials-item .client-image img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
}

.single-testimonials-item .testimonials-desc {
  background-color: #ffffff;
  position: relative;
  padding: 20px 65px 20px 20px;
  z-index: 1;
  border-radius: 5px;
}

.single-testimonials-item .testimonials-desc::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: #ffffff;
  z-index: -1;
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
}

.single-testimonials-item .testimonials-desc p {
  margin-bottom: 0;
  line-height: 1.6;
  font-style: italic;
}

.single-testimonials-item .testimonials-desc span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #02298a;
}

.single-testimonials-item .testimonials-desc i {
  position: absolute;
  right: 15px;
  top: 25px;
  color: #c6c5c6;
}

.single-testimonials-item .testimonials-desc i::before {
  font-size: 35px;
}

.single-feedback-item {
  outline: 0;
  position: relative;
  padding-left: 110px;
  margin-bottom: 30px;
}

.single-feedback-item .client-image {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.single-feedback-item .client-image img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  display: inline-block !important;
}

.single-feedback-item .feedback-desc {
  background-color: #ffffff;
  position: relative;
  padding: 20px 65px 20px 20px;
  z-index: 1;
  border-radius: 5px;
}

.single-feedback-item .feedback-desc::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: #ffffff;
  z-index: -1;
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
}

.single-feedback-item .feedback-desc p {
  margin-bottom: 0;
  line-height: 1.6;
  font-style: italic;
}

.single-feedback-item .feedback-desc span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #02298a;
}

.single-feedback-item .feedback-desc i {
  position: absolute;
  right: 15px;
  top: 25px;
  color: #c6c5c6;
}

.single-feedback-item .feedback-desc i::before {
  font-size: 35px;
}

.feedback-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
  line-height: .01;
}

.feedback-slides.owl-theme .owl-dots .owl-dot {
  outline: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.feedback-slides.owl-theme .owl-dots .owl-dot span {
  margin: 0 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #b3b3b3;
  background-color: transparent;
}

.feedback-slides.owl-theme .owl-dots .owl-dot.active span, .feedback-slides.owl-theme .owl-dots .owl-dot:hover span {
  border-color: #fd6c1e;
  background-color: #fd6c1e;
}

.feedback-mobile-slides {
  display: none !important;
}

.feedback-mobile-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
  line-height: .01;
}

.feedback-mobile-slides.owl-theme .owl-dots .owl-dot {
  outline: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.feedback-mobile-slides.owl-theme .owl-dots .owl-dot span {
  margin: 0 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #b3b3b3;
  background-color: transparent;
}

.feedback-mobile-slides.owl-theme .owl-dots .owl-dot.active span, .feedback-mobile-slides.owl-theme .owl-dots .owl-dot:hover span {
  border-color: #fd6c1e;
  background-color: #fd6c1e;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area {
  position: relative;
  z-index: 1;
}

.blog-area.extra-pb {
  padding-bottom: 180px;
}

.blog-area.optional-color .single-blog-post .blog-content h3 a:hover {
  color: #fd6c1e;
}

.single-blog-post {
  margin-bottom: 30px;
}

.single-blog-post .blog-image {
  border-radius: 5px;
}

.single-blog-post .blog-image a {
  border-radius: 5px;
}

.single-blog-post .blog-image a img {
  border-radius: 5px;
}

.single-blog-post .blog-content {
  margin-top: 25px;
}

.single-blog-post .blog-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 15px;
}

.single-blog-post .blog-content ul li {
  display: inline-block;
  position: relative;
  color: #777777;
  margin-right: 15px;
  font-size: 14px;
}

.single-blog-post .blog-content ul li img {
  width: 30px !important;
  height: 30px;
  border-radius: 50%;
  padding-right: 3px;
  position: relative;
  top: -1.5px;
}

.single-blog-post .blog-content ul li a {
  display: inline-block;
  color: #777777;
}

.single-blog-post .blog-content ul li a:hover {
  color: #02298a;
}

.single-blog-post .blog-content ul li:last-child {
  margin-right: 0;
}

.single-blog-post .blog-content ul li:last-child::before {
  display: none;
}

.single-blog-post .blog-content ul li::before {
  content: '';
  position: absolute;
  right: -9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #acacac;
}

.single-blog-post .blog-content ul li i {
  margin-right: 2px;
}

.single-blog-post .blog-content h3 {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 22px;
  font-weight: 700;
}

.single-blog-post .blog-content h3 a {
  color: #141414;
}

.single-blog-post .blog-content h3 a:hover {
  color: #02298a;
}

.single-blog-post .blog-content p {
  margin-bottom: 0;
}

.single-blog-post .blog-content .read-more-btn {
  margin-top: 20px;
}

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-area {
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  text-align: center;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 90px;
  padding-right: 90px;
  margin-bottom: 80px;
  margin-top: -195px;
}

.subscribe-area h3 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.subscribe-area.optional-color-bg {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
}

.subscribe-area.optional-color-bg .newsletter-form .form-control {
  background-color: #bc4f19;
}

.subscribe-area.optional-color-bg .newsletter-form button {
  color: #ffffff;
}

.subscribe-area.optional-color-bg .newsletter-form button::before {
  background: #141414;
}

.subscribe-area.optional-color-bg .newsletter-form button::after {
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
}

.newsletter-form {
  position: relative;
}

.newsletter-form .form-control {
  border: none;
  background-color: #02307c;
  border-radius: 5px;
  color: #ffffff;
  height: 50px;
}

.newsletter-form .form-control::-webkit-input-placeholder {
  color: #bababa;
}

.newsletter-form .form-control:-ms-input-placeholder {
  color: #bababa;
}

.newsletter-form .form-control::-ms-input-placeholder {
  color: #bababa;
}

.newsletter-form .form-control::placeholder {
  color: #bababa;
}

.newsletter-form .row {
  margin-left: -10px;
  margin-right: -10px;
}

.newsletter-form .row .col-lg-2, .newsletter-form .row .col-lg-4, .newsletter-form .row .col-lg-5, .newsletter-form .row .col-lg-12 {
  padding-left: 10px;
  padding-right: 10px;
}

.newsletter-form button {
  border: none;
  position: relative;
  height: 50px;
  display: block;
  width: 100%;
  z-index: 1;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: 0;
  font-size: 14px;
  font-weight: 700;
}

.newsletter-form button i {
  margin-left: 5px;
}

.newsletter-form button::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0;
  border-radius: 5px;
  top: 0;
}

.newsletter-form button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fd6c1e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.newsletter-form button:hover {
  border-radius: 0;
}

.newsletter-form button:hover::after {
  opacity: 1;
  visibility: visible;
}

.newsletter-form button:hover::before {
  opacity: 0;
  visibility: hidden;
}

.newsletter-form #validator-newsletter {
  position: absolute;
  bottom: -40px;
  color: #ffffff;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #fd6c1e;
  padding-top: 80px;
  padding-bottom: 70px;
}

.page-title-area::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000000;
  opacity: .60;
}

.page-title-content {
  position: relative;
}

.page-title-content h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
}

.page-title-content ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page-title-content ul li {
  display: inline-block;
  position: relative;
  color: #1ba5b7;
  margin-right: 20px;
  font-weight: 600;
  font-size: 15px;
}

.page-title-content ul li a {
  color: #ffffff;
}

.page-title-content ul li a:hover {
  color: #fd6c1e;
}

.page-title-content ul li:last-child {
  margin-right: 0;
}

.page-title-content ul li:last-child::before {
  content: '';
}

.page-title-content ul li::before {
  content: "\f054";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  position: absolute;
  right: -15px;
  top: 50%;
  color: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*================================================
Shop CSS
=================================================*/
.woocommerce-topbar {
  margin-bottom: 30px;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select.form-control {
  float: unset;
  line-height: 32px;
  border-radius: 2px;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select.form-control:after {
  height: 7px;
  width: 7px;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select.form-control .list {
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 0;
  margin-bottom: 0;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select.form-control .list .option {
  min-height: unset;
  line-height: 35px;
  padding-left: 15px;
  padding-right: 50px;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select.form-control .list .option.selected {
  color: #02298a;
  background-color: transparent;
  font-weight: normal;
}

.single-products {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.single-products .products-content {
  margin-top: 20px;
}

.single-products .products-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.single-products .products-content h3 a {
  color: #141414;
}

.single-products .products-content h3 a:hover {
  color: #02298a;
}

.single-products .products-content .price {
  margin-bottom: 10px;
}

.single-products .products-content .price span {
  color: #777777;
  font-size: 14px;
  font-weight: 600;
}

.single-products .products-content .price span.old-price {
  text-decoration: line-through;
  color: #c1bdbd;
}

.single-products .products-content .rating {
  margin-bottom: 15px;
}

.single-products .products-content .rating i {
  color: #eac11d;
}

.single-products .products-content .rating i::before {
  font-size: 14px;
}

.single-products .products-content .add-to-cart-btn {
  display: block;
  width: 100%;
  color: #141414;
  border: 1px solid #141414;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

.single-products .sale-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff2d2d;
  color: #fff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  z-index: 2;
}

.single-products .products-image {
  overflow: hidden;
  position: relative;
}

.single-products .products-image img {
  -webkit-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
  width: 100%;
}

.single-products .products-image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  content: '';
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.single-products .products-image ul {
  padding: 0;
  z-index: 2;
  list-style-type: none;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-products .products-image ul li {
  display: inline-block;
}

.single-products .products-image ul li a {
  display: block;
  background: #ffffff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: #141414;
}

.single-products .products-image ul li a:hover, .single-products .products-image ul li a:focus {
  background-color: #02298a;
  color: #ffffff;
}

.single-products .products-image ul li a:nth-child(1) {
  margin-left: -15px;
}

.single-products .products-image ul li a:nth-child(3) {
  margin-right: -15px;
}

.single-products:hover .products-content .add-to-cart-btn, .single-products:focus .products-content .add-to-cart-btn {
  background-color: #141414;
  color: #ffffff;
}

.single-products:hover .products-image img, .single-products:focus .products-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.single-products:hover .products-image::before, .single-products:focus .products-image::before {
  opacity: .50;
  visibility: visible;
}

.single-products:hover .products-image ul, .single-products:focus .products-image ul {
  opacity: 1;
  visibility: visible;
}

.single-products:hover .products-image ul li a:nth-child(1), .single-products:focus .products-image ul li a:nth-child(1) {
  margin-left: 0;
}

.single-products:hover .products-image ul li a:nth-child(3), .single-products:focus .products-image ul li a:nth-child(3) {
  margin-right: 0;
}

/*================================================
Products Details Area CSS
=================================================*/
.products-page-gallery {
  text-align: center;
}

.products-page-gallery .product-page-gallery-main .slick-prev, .products-page-gallery .product-page-gallery-main .slick-next {
  z-index: 1;
  width: 45px;
  height: 45px;
  line-height: 60px;
  padding: 0;
  background-color: #ffffff;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.products-page-gallery .product-page-gallery-main .slick-prev::before, .products-page-gallery .product-page-gallery-main .slick-next::before {
  content: '' !important;
  position: relative;
  display: inline-block;
  width: .8rem;
  height: .8rem;
  border: 0.125rem solid;
  line-height: initial;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom: 0;
  border-left: 0;
  border-radius: 1px;
  border-color: #141414;
}

.products-page-gallery .product-page-gallery-main .slick-prev:hover, .products-page-gallery .product-page-gallery-main .slick-next:hover {
  background-color: #02298a;
  color: #ffffff;
}

.products-page-gallery .product-page-gallery-main .slick-prev:hover::before, .products-page-gallery .product-page-gallery-main .slick-next:hover::before {
  border-color: #ffffff;
}

.products-page-gallery .product-page-gallery-main .slick-next {
  padding-right: 5px;
  right: 0;
}

.products-page-gallery .product-page-gallery-main .slick-next::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.products-page-gallery .product-page-gallery-main .slick-prev {
  padding-left: 5px;
  left: 0;
}

.products-page-gallery .product-page-gallery-main .slick-prev::before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.products-page-gallery .product-page-gallery-main:hover .slick-prev, .products-page-gallery .product-page-gallery-main:hover .slick-next {
  opacity: 1;
  visibility: visible;
}

.products-page-gallery .product-page-gallery-main:hover .slick-next {
  right: 15px;
}

.products-page-gallery .product-page-gallery-main:hover .slick-prev {
  left: 15px;
}

.products-page-gallery .slick-slide {
  outline: 0 !important;
}

.products-page-gallery .product-page-gallery-preview {
  margin-top: 10px;
  margin-left: -5px;
  margin-right: -5px;
}

.products-page-gallery .product-page-gallery-preview .slick-slide {
  margin: 0 5px;
  cursor: pointer;
}

.products-page-gallery .product-page-gallery-preview .slick-slide span {
  display: block;
  position: relative;
}

.products-page-gallery .product-page-gallery-preview .slick-slide span::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #141414;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.products-page-gallery .product-page-gallery-preview .slick-slide span:hover::before, .products-page-gallery .product-page-gallery-preview .slick-slide span:focus::before {
  visibility: visible;
  opacity: 1;
}

.products-page-gallery .product-page-gallery-preview .slick-slide.slick-current.slick-active span::before {
  visibility: visible;
  opacity: 1;
}

.product-details-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.product-details-content h3 a {
  color: #141414;
}

.product-details-content h3 a:hover {
  color: #02298a;
}

.product-details-content p {
  margin-bottom: 0;
}

.product-details-content .price {
  margin-bottom: 8px;
}

.product-details-content .price span {
  color: #777777;
  font-size: 14px;
  font-weight: 600;
}

.product-details-content .price span.old-price {
  text-decoration: line-through;
  color: #c1bdbd;
}

.product-details-content .product-review {
  margin-bottom: 15px;
}

.product-details-content .product-review .rating {
  display: inline-block;
  padding-right: 5px;
  font-size: 14px;
}

.product-details-content .product-review .rating i {
  color: #ffba0a;
}

.product-details-content .product-review .rating-count {
  display: inline-block;
  color: #141414;
  border-bottom: 1px solid #141414;
  line-height: initial;
}

.product-details-content .wishlist-compare-btn {
  margin-top: 20px;
}

.product-details-content .wishlist-compare-btn .btn {
  font-size: 13px;
}

.product-details-content .wishlist-compare-btn .btn i {
  margin-right: 3px;
}

.product-details-content .wishlist-compare-btn .btn:not(:first-child) {
  margin-left: 10px;
}

.product-details-content .product-add-to-cart {
  margin-top: 20px;
}

.product-details-content .product-add-to-cart .input-counter {
  max-width: 130px;
  min-width: 130px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.product-details-content .product-add-to-cart .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 40px;
  height: 100%;
  line-height: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-content .product-add-to-cart .input-counter span.minus-btn {
  left: 0;
}

.product-details-content .product-add-to-cart .input-counter span.plus-btn {
  right: 0;
}

.product-details-content .product-add-to-cart .input-counter span:hover {
  color: #141414;
}

.product-details-content .product-add-to-cart .input-counter input {
  height: 45px;
  color: #141414;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}

.product-details-content .product-add-to-cart .input-counter input::-webkit-input-placeholder {
  color: #141414;
}

.product-details-content .product-add-to-cart .input-counter input:-ms-input-placeholder {
  color: #141414;
}

.product-details-content .product-add-to-cart .input-counter input::-ms-input-placeholder {
  color: #141414;
}

.product-details-content .product-add-to-cart .input-counter input::placeholder {
  color: #141414;
}

.product-details-content .product-add-to-cart .btn {
  height: 45px;
  top: -3px;
  position: relative;
}

.product-details-content .product-add-to-cart .btn i {
  margin-right: 2px;
}

.product-details-content .buy-checkbox-btn {
  margin-top: 25px;
}

.product-details-content .buy-checkbox-btn input {
  display: none;
}

.product-details-content .buy-checkbox-btn .cbx {
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  cursor: pointer;
}

.product-details-content .buy-checkbox-btn .cbx span {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.product-details-content .buy-checkbox-btn .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  -webkit-transform: scale(1);
          transform: scale(1);
  vertical-align: middle;
  border: 1px solid #ebebeb;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-content .buy-checkbox-btn .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-content .buy-checkbox-btn .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #141414;
  display: block;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-content .buy-checkbox-btn .cbx span:last-child {
  padding-left: 4px;
  color: #777777;
}

.product-details-content .buy-checkbox-btn .cbx:hover span:first-child {
  border-color: #141414;
}

.product-details-content .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child {
  background: #141414;
  border-color: #141414;
  -webkit-animation: wave 0.4s ease;
          animation: wave 0.4s ease;
}

.product-details-content .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.product-details-content .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child:before {
  -webkit-transform: scale(3.5);
          transform: scale(3.5);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.product-details-content .buy-checkbox-btn .item:not(:first-child) {
  margin-top: 15px;
}

.product-details-content .buy-checkbox-btn .btn {
  display: block;
}

.product-details-content .custom-payment-options {
  margin-top: 20px;
}

.product-details-content .custom-payment-options span {
  display: block;
  color: #777777;
  margin-bottom: 8px;
}

.product-details-content .custom-payment-options .payment-methods a {
  display: inline-block;
}

.product-details-content .custom-payment-options .payment-methods a img {
  width: 40px;
}

.tab .tabs_item {
  display: none;
}

.tab .tabs_item:first-child {
  display: block;
}

.products-details-tab {
  margin-top: 50px;
}

.products-details-tab .tabs {
  list-style-type: none;
  margin: 0 0 30px;
  padding: 0;
  border-bottom: 1px dashed #eeeeee;
  padding-bottom: 15px;
}

.products-details-tab .tabs li {
  display: inline-block;
  margin-right: 30px;
  line-height: initial;
}

.products-details-tab .tabs li a {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  text-transform: uppercase;
  color: #777777;
  font-weight: 700;
  font-size: 14px;
}

.products-details-tab .tabs li a .dot {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid #777777;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.products-details-tab .tabs li a .dot::before {
  position: absolute;
  top: 0;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  background: #777777;
  margin: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.products-details-tab .tabs li a:hover, .products-details-tab .tabs li a:focus {
  color: #02298a;
}

.products-details-tab .tabs li a:hover .dot, .products-details-tab .tabs li a:focus .dot {
  border-color: #fd6c1e;
}

.products-details-tab .tabs li a:hover .dot::before, .products-details-tab .tabs li a:focus .dot::before {
  background: #fd6c1e;
}

.products-details-tab .tabs li.current a {
  color: #02298a;
}

.products-details-tab .tabs li.current a .dot {
  border-color: #fd6c1e;
}

.products-details-tab .tabs li.current a .dot::before {
  background: #fd6c1e;
}

.products-details-tab .tabs li:last-child {
  margin-right: 0;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content p {
  margin-bottom: 20px;
  font-size: 14px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content p:last-child {
  margin-bottom: 0;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: left;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li {
  border: 1px solid #eeeeee;
  border-bottom: none;
  padding: 10px 15px;
  color: #777777;
  font-weight: normal;
  font-size: 14px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li:last-child {
  border-bottom: 1px solid #eeeeee;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li span {
  display: inline-block;
  width: 45%;
  font-weight: 600;
  color: #141414;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title {
  position: relative;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating {
  display: inline-block;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating .fas.fa-star {
  color: #ffba0a;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating i {
  color: #ebebeb;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title p {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 5px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .btn {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments {
  margin-top: 35px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item {
  margin-top: 30px;
  position: relative;
  padding-right: 200px;
  border-top: 1px dashed #eeeeee;
  padding-top: 30px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .rating .fas.fa-star {
  color: #ffba0a;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .rating i {
  color: #ebebeb;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item span {
  margin-bottom: 10px;
  font-size: 13px;
  display: block;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item span strong {
  font-weight: 600;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item p {
  margin-bottom: 0;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .review-report-link {
  position: absolute;
  right: 20px;
  color: #777777;
  top: 40px;
  text-decoration: underline;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .review-report-link:hover {
  color: #141414;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form {
  margin-top: 35px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group label {
  font-size: 13px;
  color: #777777;
  text-transform: uppercase;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group textarea {
  padding-top: 15px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .btn {
  margin-top: 10px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating {
  margin-bottom: 1rem;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating p {
  margin-bottom: 5px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-source {
  width: 0;
  height: 0;
  margin-top: 5px;
  visibility: hidden;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-source svg {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.15rem;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 105px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-rating label {
  cursor: pointer;
  margin-bottom: 0;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-rating label .star {
  color: transparent;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-rating label:hover ~ label .star, .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-rating svg.star:hover, .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-rating input[name="star"]:focus ~ label .star, .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-rating input[name="star"]:checked ~ label .star {
  color: #f2b01e;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-rating svg {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.15rem;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-rating input[name="star"] {
  display: inline-block;
  width: 0;
  opacity: 0;
  margin-left: -2px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-rating input[name="star"]:checked + label {
  -webkit-animation: scaleup 1s;
          animation: scaleup 1s;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .review-rating .star-rating input[name="star"]:checked + label .star {
  -webkit-animation: starred 0.5s;
          animation: starred 0.5s;
}

.related-products-area {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #eeeeee;
}

.related-products-area .section-title {
  margin-bottom: 0;
}

.related-products-area .single-products {
  margin-top: 30px;
  margin-bottom: 0;
}

/*================================================
Cart CSS
=================================================*/
.cart-table table {
  margin-bottom: 0;
}

.cart-table table thead tr th {
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 15px 0;
  text-transform: uppercase;
  border: none;
  font-weight: 700;
  font-size: 15px;
}

.cart-table table tbody tr td {
  vertical-align: middle;
  color: #777777;
  padding-left: 0;
  padding-right: 0;
  border-color: #eaedff;
  border-left: none;
  border-right: none;
}

.cart-table table tbody tr td.product-thumbnail a {
  display: block;
}

.cart-table table tbody tr td.product-thumbnail a img {
  width: 80px;
}

.cart-table table tbody tr td.product-name a {
  color: #777777;
  font-weight: 600;
  display: inline-block;
}

.cart-table table tbody tr td.product-name a:hover {
  color: #02298a;
}

.cart-table table tbody tr td.product-price span {
  font-weight: 600;
}

.cart-table table tbody tr td.product-subtotal .remove {
  color: red;
  float: right;
  position: relative;
  top: -1px;
}

.cart-table table tbody tr td.product-quantity .form-control {
  background: transparent;
  width: 80px;
}

.cart-table table tbody tr td.product-subtotal {
  overflow: hidden;
}

.cart-table table tbody tr td.product-subtotal span {
  font-weight: 600;
}

.cart-buttons {
  margin-top: 30px;
}

.cart-totals {
  background: #ffffff;
  padding: 40px;
  max-width: 620px;
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  margin: 45px auto 0;
}

.cart-totals h3 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}

.cart-totals ul {
  padding: 0;
  margin: 0 0 25px;
  list-style-type: none;
}

.cart-totals ul li {
  border: 1px solid #eaedff;
  padding: 10px 15px;
  color: #141414;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
}

.cart-totals ul li:first-child {
  border-bottom: none;
}

.cart-totals ul li:last-child {
  border-top: none;
}

.cart-totals ul li span {
  float: right;
  color: #777777;
  font-weight: normal;
}

/*================================================
Checkout CSS
=================================================*/
.user-actions {
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 18px 20px 15px;
  margin-bottom: 65px;
  border-top: 3px solid #02298a;
  position: relative;
}

.user-actions::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -35px;
  width: 100%;
  height: 1px;
  background: #eeeeee;
}

.user-actions span {
  display: inline-block;
  font-weight: 600;
  color: #02298a;
}

.user-actions span i {
  color: #02298a;
  margin-right: 3px;
}

.user-actions span a {
  display: inline-block;
  color: #141414;
  font-weight: 500;
  font-size: 14px;
}

.user-actions span a:hover, .user-actions span a:focus {
  color: #02298a;
}

.checkout-area .title {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}

.billing-details .form-group label {
  display: block;
  color: #777777;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.billing-details .form-group label .required {
  color: red;
}

.billing-details .form-group .nice-select {
  float: unset;
  line-height: 45px;
  padding-top: 0;
  padding-bottom: 0;
}

.billing-details .form-group .nice-select .list {
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 1px;
  margin-bottom: 0;
}

.billing-details .form-group .nice-select .list .option {
  min-height: unset;
  line-height: 35px;
  padding-left: 15px;
  padding-right: 50px;
}

.billing-details .form-group .nice-select .list .option.selected {
  color: #02298a;
  background-color: transparent;
  font-weight: normal;
}

.billing-details .form-group textarea {
  padding-top: 13px;
}

.billing-details .form-check {
  margin-bottom: 15px;
}

.billing-details .form-check .form-check-label {
  color: #777777;
}

.billing-details .form-check label {
  font-size: 14px;
  font-weight: 400;
}

.order-details .order-table table {
  margin-bottom: 0;
}

.order-details .order-table table thead tr th {
  border-bottom-width: 0;
  vertical-align: middle;
  border-color: #eaedff;
  padding: 15px .75rem;
  font-weight: 700;
  font-size: 15.5px;
}

.order-details .order-table table tbody tr td {
  vertical-align: middle;
  color: #777777;
  border-color: #eaedff;
  font-size: 14px;
}

.order-details .order-table table tbody tr td.product-name a {
  color: #777777;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
}

.order-details .order-table table tbody tr td.product-name a:hover {
  color: #02298a;
}

.order-details .order-table table tbody tr td.order-subtotal span, .order-details .order-table table tbody tr td.order-shipping span, .order-details .order-table table tbody tr td.total-price span {
  color: #141414;
  font-weight: 600;
}

.order-details .payment-method {
  margin-top: 40px;
  border-top: 1px solid #eeeeee;
  padding-top: 35px;
}

.order-details .payment-method p {
  font-size: 14px;
}

.order-details .payment-method p [type="radio"]:checked, .order-details .payment-method p [type="radio"]:not(:checked) {
  display: none;
}

.order-details .payment-method p [type="radio"]:checked + label, .order-details .payment-method p [type="radio"]:not(:checked) + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  font-weight: 600;
  color: #141414;
  position: relative;
  margin-bottom: 8px;
}

.order-details .payment-method p [type="radio"]:checked + label::before, .order-details .payment-method p [type="radio"]:not(:checked) + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
}

.order-details .payment-method p [type="radio"]:checked + label::after, .order-details .payment-method p [type="radio"]:not(:checked) + label::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #02298a;
  position: absolute;
  top: 7px;
  left: 3px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.order-details .payment-method p [type="radio"]:not(:checked) + label::after {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.order-details .payment-method p [type="radio"]:checked + label::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.order-details .btn.order-btn {
  display: block;
  margin-top: 25px;
}

/*================================================
Pagination CSS
=================================================*/
.pagination-area {
  margin-top: 30px;
  text-align: center;
}

.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 40px;
  color: #141414;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 17px;
  font-weight: 600;
}

.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
  background: #02298a;
  color: #ffffff;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

/*================================================
Sidebar Area CSS
=================================================*/
.widget-area .widget {
  margin-top: 35px;
}

.widget-area .widget:first-child {
  margin-top: 0;
}

.widget-area .widget .widget-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  color: #3c3c3c;
  font-weight: 700;
  font-size: 19px;
}

.widget-area .widget .widget-title::before {
  content: '';
  position: absolute;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.widget-area .widget_search {
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
  padding: 15px;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form .search-field:focus {
  border-color: #02298a;
}

.widget-area .widget_search form button {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  z-index: 1;
  border: none;
  color: #ffffff;
  background-color: transparent;
}

.widget-area .widget_search form button::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form button::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.widget-area .widget_search form button:hover::before {
  opacity: 0;
  visibility: hidden;
}

.widget-area .widget_search form button:hover::after {
  opacity: 1;
  visibility: visible;
}

.widget-area .widget_fennec_posts_thumb {
  position: relative;
  overflow: hidden;
}

.widget-area .widget_fennec_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 20px;
}

.widget-area .widget_fennec_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_fennec_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}

.widget-area .widget_fennec_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_fennec_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../img/blog-img1.jpg);
}

.widget-area .widget_fennec_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../img/blog-img2.jpg);
}

.widget-area .widget_fennec_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../img/blog-img3.jpg);
}

.widget-area .widget_fennec_posts_thumb .item .info {
  overflow: hidden;
}

.widget-area .widget_fennec_posts_thumb .item .info time {
  display: block;
  color: #777777;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
}

.widget-area .widget_fennec_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 600;
}

.widget-area .widget_fennec_posts_thumb .item .info .title a {
  color: #141414;
}

.widget-area .widget_fennec_posts_thumb .item .info .title a:hover {
  color: #02298a;
}

.widget-area .widget_recent_entries ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_recent_entries ul li {
  position: relative;
  margin-bottom: 12px;
  color: #777777;
  padding-left: 18px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_recent_entries ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_recent_entries ul li a {
  color: #141414;
}

.widget-area .widget_recent_entries ul li a:hover {
  color: #02298a;
}

.widget-area .widget_recent_entries ul li::before {
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget-area .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 13px;
  color: #777777;
  margin-top: 4px;
}

.widget-area .widget_recent_comments ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_recent_comments ul li {
  position: relative;
  margin-bottom: 12px;
  color: #777777;
  padding-left: 18px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_recent_comments ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_recent_comments ul li::before {
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}

.widget-area .widget_recent_comments ul li span {
  display: inline-block;
}

.widget-area .widget_recent_comments ul li a {
  display: inline-block;
  color: #141414;
}

.widget-area .widget_recent_comments ul li a:hover {
  color: #02298a;
}

.widget-area .widget_archive ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_archive ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 18px;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_archive ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_archive ul li::before {
  background: #02298a;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}

.widget-area .widget_archive ul li a {
  color: #141414;
}

.widget-area .widget_archive ul li a:hover {
  color: #02298a;
}

.widget-area .widget_categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_categories ul li {
  position: relative;
  margin-bottom: 12px;
  color: #777777;
  padding-left: 18px;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_categories ul li::before {
  background: #02298a;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}

.widget-area .widget_categories ul li a {
  display: inline-block;
  color: #141414;
}

.widget-area .widget_categories ul li a:hover {
  color: #02298a;
}

.widget-area .widget_categories ul li .post-count {
  float: right;
}

.widget-area .widget_meta ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_meta ul li {
  position: relative;
  margin-bottom: 12px;
  color: #777777;
  padding-left: 18px;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_meta ul li::before {
  background: #02298a;
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget-area .widget_meta ul li a {
  color: #141414;
}

.widget-area .widget_meta ul li a:hover {
  color: #02298a;
}

.widget-area .tagcloud {
  margin-top: -8px;
}

.widget-area .tagcloud a {
  display: inline-block;
  color: #141414;
  font-weight: 600;
  font-size: 14px !important;
  padding: 7px 10px;
  border: 1px dashed #e4dddd;
  margin-top: 8px;
  margin-right: 4px;
}

.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
  background-color: #02298a;
  color: #ffffff;
  border-color: #02298a;
}

.widget-area .widget_services_list {
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background-color: #ffffff;
}

.widget-area .widget_services_list ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.widget-area .widget_services_list ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 600;
}

.widget-area .widget_services_list ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #fd6c1e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.widget-area .widget_services_list ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget-area .widget_services_list ul li a.active, .widget-area .widget_services_list ul li a:hover {
  background-color: #02298a;
  color: #ffffff;
  padding-left: 20px;
}

.widget-area .widget_services_list ul li a.active::before, .widget-area .widget_services_list ul li a:hover::before {
  opacity: 1;
  visibility: visible;
}

.widget-area .widget_services_list ul li:last-child a {
  border-bottom: none;
}

.widget-area .widget_download ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background-color: #ffffff;
}

.widget-area .widget_download ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 600;
}

.widget-area .widget_download ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #fd6c1e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.widget-area .widget_download ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget-area .widget_download ul li a.active, .widget-area .widget_download ul li a:hover {
  background-color: #02298a;
  color: #ffffff;
  padding-left: 20px;
}

.widget-area .widget_download ul li a.active::before, .widget-area .widget_download ul li a:hover::before {
  opacity: 1;
  visibility: visible;
}

.widget-area .widget_download ul li:last-child a {
  border-bottom: none;
}

/*================================================
Contact Us Area CSS
=================================================*/
.contact-box {
  background: #000000c9;
  padding: 30px 20px 30px 90px;
  border-radius: 5px;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}

.contact-box .icon {
  position: absolute;
  left: 20px;
  top: 30px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 46px;
  border: 1px dashed #1ba5b7;
  border-radius: 50%;
  color: #1ba5b7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-box .icon i::before {
  font-size: 18px;
}

.contact-box .content h4 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

.contact-box .content p {
  margin-bottom: 0;
  font-size: 14px;
  color:#fff;
}

.contact-box .content p a {
  color: #777777;
  color:#fff;
}

.contact-box .content p a:hover, .contact-box .content p a:focus {
  color: #ff0000;
}

.contact-box:hover, .contact-box:focus {
  -webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
          box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.contact-box:hover .icon, .contact-box:focus .icon {
  background: #dd5900;
  color: #ffffff;
}

#map {
  height: 400px;
  width: 100%;
}

.contact-form {
  margin-top: 50px;
}

.leave-your-message h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.leave-your-message .stay-connected {
  margin-top: 25px;
}

.leave-your-message .stay-connected h3 {
  margin-bottom: 20px;
}

.leave-your-message .stay-connected ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.leave-your-message .stay-connected ul li {
  font-weight: 600;
  margin-bottom: 10px;
}

.leave-your-message .stay-connected ul li:last-child {
  margin-bottom: 0;
}

.leave-your-message .stay-connected ul li a {
  display: inline-block;
  color: #777777;
}

.leave-your-message .stay-connected ul li a i {
  width: 40px;
  height: 40px;
  text-align: center;
  display: inline-block;
  line-height: 40px;
  border: 1px solid;
  border-radius: 50%;
  margin-right: 8px;
}

.leave-your-message .stay-connected ul li a:hover, .leave-your-message .stay-connected ul li a:focus {
  color: #ff6905;
}

#contactForm,#contactFor2 {
  background: #ffffff;
  padding: 30px;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}

#contactForm label, #contactForm2 label {
  font-weight: 600;
  font-size: 14px;
}

#contactForm textarea, #contactForm2 textarea {
  padding-top: 13px;
}

#contactForm .btn, #contactForm2 .btn {
  margin-top: 8px;
}

#contactForm ul, #contactForm2 ul {
  padding-left: 0;
  margin-bottom: 0;
}

#contactForm ul li, #contactForm2 ul li {
  color: red;
  margin-top: 10px;
  font-size: 14px;
}

#contactForm .text-danger, #contactForm .text-success, #contactForm2 .text-danger, #contactForm2 .text-success {
  margin-bottom: 0;
  margin-top: 20px;
}

#contactForm .h4, #contactForm2 .h4 {
  font-size: 18px;
  font-weight: 600;
}

/*================================================
Services Details Area CSS
=================================================*/
.services-details-desc h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-details-desc .services-details-image-slides {
  margin-bottom: 25px;
  margin-top: 25px;
}

.services-details-desc .services-details-image-slides.owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 15px;
  text-align: center;
}

.services-details-desc .services-details-image-slides.owl-theme .owl-nav.disabled + .owl-dots .owl-dot {
  outline: 0 !important;
}

.services-details-desc .services-details-image-slides.owl-theme .owl-nav.disabled + .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 0 4px;
  outline: 0 !important;
  background: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  position: relative;
  padding: 0;
  text-align: center;
  border: 1px solid #ffffff;
}

.services-details-desc .services-details-image-slides.owl-theme .owl-nav.disabled + .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 3px;
  top: 0;
  border-radius: 50%;
  bottom: 0;
  background: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.services-details-desc .services-details-image-slides.owl-theme .owl-nav.disabled + .owl-dots .owl-dot:hover span, .services-details-desc .services-details-image-slides.owl-theme .owl-nav.disabled + .owl-dots .owl-dot.active span {
  border-color: #02298a;
}

.services-details-desc .services-details-image-slides.owl-theme .owl-nav.disabled + .owl-dots .owl-dot:hover span::before, .services-details-desc .services-details-image-slides.owl-theme .owl-nav.disabled + .owl-dots .owl-dot.active span::before {
  background: #02298a;
}

.services-details-desc .services-features-list {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: -10px;
  margin-top: 20px;
}

.services-details-desc .services-features-list li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  color: #777777;
  line-height: initial;
  font-weight: 600;
  padding-right: 15px;
  padding-left: 38px;
  margin-bottom: 10px;
}

.services-details-desc .services-features-list li i {
  color: #02298a;
  margin-right: 3px;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.services-details-desc .blockquote, .services-details-desc blockquote {
  background: #f7f7f7;
  padding: 30px 20px !important;
  border-left: 4px solid #fd6c1e;
  margin-bottom: 25px;
  margin-top: 25px;
}

.services-details-desc .blockquote::before, .services-details-desc blockquote::before {
  display: none;
}

.services-details-desc .blockquote p, .services-details-desc blockquote p {
  margin-bottom: 0;
  color: #000000;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-area {
  background-color: #F6F4F7;
}

.blog-details .article-content {
  padding: 25px;
  background-color: #ffffff;
}

.blog-details .article-content .entry-meta {
  padding: 0;
  margin: 0 0 20px;
  list-style-type: none;
}

.blog-details .article-content .entry-meta li {
  display: inline-block;
  color: #777777;
  margin-right: 15px;
  font-weight: 600;
  font-size: 14px;
}

.blog-details .article-content .entry-meta li i {
  color: #02298a;
  margin-right: 3px;
}

.blog-details .article-content .entry-meta li:last-child {
  margin-right: 0;
}

.blog-details .article-content .entry-meta li a {
  display: inline-block;
  color: #777777;
}

.blog-details .article-content .entry-meta li a:hover {
  color: #02298a;
}

.blog-details .article-content .category {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}

.blog-details .article-content .category li {
  display: inline-block;
  margin-right: 3px;
}

.blog-details .article-content .category li span {
  font-weight: 600;
}

.blog-details .article-content .category li a {
  border: 1px solid #eeeeee;
  border-radius: 5px;
  padding: 4px 12px;
  color: #777777;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
}

.blog-details .article-content .category li a::before {
  position: absolute;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  z-index: -1;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details .article-content .category li a:hover, .blog-details .article-content .category li a:focus {
  color: #ffffff;
  border-radius: 0;
  border-color: #02298a;
}

.blog-details .article-content .category li a:hover::before, .blog-details .article-content .category li a:focus::before {
  opacity: 1;
  visibility: visible;
  border-radius: 0;
}

.blog-details .article-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}

blockquote {
  background-color: #fafafa;
  padding: 30px 30px 30px 70px !important;
  font-weight: 500;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

blockquote::before {
  color: #02298a;
  content: "\f101";
  position: absolute;
  left: 22px;
  top: 40%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  font-family: Flaticon;
  font-size: 30px;
  font-style: normal;
}

blockquote p {
  font-weight: 600;
}

blockquote cite {
  position: relative;
  padding-left: 17px;
  font-weight: 700;
}

blockquote cite::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  left: 0;
  width: 10px;
  height: 2px;
}

.post-controls-buttons {
  overflow: hidden;
  padding: 30px;
  background-color: #ffffff;
  margin-top: 30px;
  margin-bottom: 30px;
}

.post-controls-buttons div:first-child {
  float: left;
}

.post-controls-buttons div:last-child {
  float: right;
}

.post-controls-buttons div a {
  display: inline-block;
  border: 1px solid #eeeeee;
  padding: 11px 20px;
  color: #141414;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.post-controls-buttons div a:hover, .post-controls-buttons div a:focus {
  border-color: #02298a;
  color: #ffffff;
  background-color: #02298a;
}

.comments-area {
  background-color: #ffffff;
  padding: 25px;
}

.comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 700;
}

.comments-area .comments-title::before {
  content: '';
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.comments-area ol, .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .children {
  margin-left: 20px;
}

.comments-area .comment-body {
  border-bottom: 1px solid #eeeeee;
  padding-left: 65px;
  color: #141414;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.comments-area .comment-body .reply {
  margin-top: 15px;
}

.comments-area .comment-body .reply a {
  border: 1px solid #02298a;
  color: #02298a;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: #02298a;
}

.comments-area .comment-meta {
  margin-bottom: .8em;
}

.comments-area .comment-author {
  font-size: 15px;
  margin-bottom: 0.4em;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
}

.comments-area .comment-author .fn {
  font-weight: 600;
}

.comments-area .comment-author .says {
  display: none;
}

.comments-area .comment-metadata {
  color: #777777;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

.comments-area .comment-metadata a {
  color: #777777;
}

.comments-area .comment-metadata a:hover {
  color: #02298a;
}

.comments-area .comment-content p {
  font-size: 14px;
}

.comments-area .comment-respond .comment-reply-title {
  margin: 0;
  position: relative;
  font-size: 22px;
  font-weight: 700;
}

.comments-area .comment-respond .comment-reply-title::before {
  content: '';
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
  background: linear-gradient(to left, #ff6f0e, #db5800, #c34f02, #de5900, #f06305);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  font-size: 15px;
  display: inline-block;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
  font-size: 15px;
  margin-bottom: 0;
  margin-top: 10px;
}

.comments-area .comment-respond .comment-notes .required {
  color: red;
}

.comments-area .comment-respond .comment-form-comment {
  margin-top: 15px;
  float: left;
  width: 100%;
}

.comments-area .comment-respond label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #141414;
}

.comments-area .comment-respond input[type="date"], .comments-area .comment-respond input[type="time"], .comments-area .comment-respond input[type="datetime-local"], .comments-area .comment-respond input[type="week"], .comments-area .comment-respond input[type="month"], .comments-area .comment-respond input[type="text"], .comments-area .comment-respond input[type="email"], .comments-area .comment-respond input[type="url"], .comments-area .comment-respond input[type="password"], .comments-area .comment-respond input[type="search"], .comments-area .comment-respond input[type="tel"], .comments-area .comment-respond input[type="number"], .comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="date"]:focus, .comments-area .comment-respond input[type="time"]:focus, .comments-area .comment-respond input[type="datetime-local"]:focus, .comments-area .comment-respond input[type="week"]:focus, .comments-area .comment-respond input[type="month"]:focus, .comments-area .comment-respond input[type="text"]:focus, .comments-area .comment-respond input[type="email"]:focus, .comments-area .comment-respond input[type="url"]:focus, .comments-area .comment-respond input[type="password"]:focus, .comments-area .comment-respond input[type="search"]:focus, .comments-area .comment-respond input[type="tel"]:focus, .comments-area .comment-respond input[type="number"]:focus, .comments-area .comment-respond textarea:focus {
  border-color: #02298a;
}

.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 7px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #777777;
  font-weight: normal;
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  background: #02298a;
  border: none;
  color: #ffffff;
  padding: 10.5px 25px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 600;
  font-size: 14px;
}

.comments-area .comment-respond .form-submit input:hover, .comments-area .comment-respond .form-submit input:focus {
  background-color: #fd6c1e;
  color: #ffffff;
}

/*================================================
Projects Details Area CSS
=================================================*/
.project-details-info {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 30px;
}

.project-details-info ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.project-details-info ul li {
  margin-bottom: 14px;
  color: #777777;
  font-size: 16px;
}

.project-details-info ul li:last-child {
  margin-bottom: 0;
}

.project-details-info ul li span {
  color: #141414;
  font-weight: 600;
}

.project-details-info ul li a {
  display: inline-block;
  color: #777777;
}

.project-details-info ul li a:hover {
  color: #02298a;
}

.project-details-desc {
  margin-top: 30px;
}

.project-details-desc h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}

.project-details-desc .blockquote, .project-details-desc blockquote {
  background: #f7f7f7;
  padding: 30px !important;
  border-left: 4px solid #fd6c1e;
  margin-bottom: 25px;
  margin-top: 25px;
}

.project-details-desc .blockquote::before, .project-details-desc blockquote::before {
  display: none;
}

.project-details-desc .blockquote p, .project-details-desc blockquote p {
  margin-bottom: 0;
  color: #000000;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
}

.project-next-and-prev {
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background-color: #ffffff;
  padding: 30px;
  margin-top: 30px;
  position: relative;
}

.project-next-and-prev .btn:not(:first-child) {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
  height: 100vh;
}

.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.error-content h3 {
  font-size: 35px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 17px;
}

.error-content p {
  max-width: 520px;
  margin: 0 auto 20px;
}

/*================================================
FAQ CSS
=================================================*/
.faq-accordion {
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  padding: 50px;
  background: #ffffff;
  border-radius: 5px;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  margin-bottom: 15px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item .accordion-title {
  display: block;
  padding: 12px 20px 12px 53px;
  text-decoration: none;
  color: #141414;
  position: relative;
  border-bottom: 1px solid #ffffff;
  background: #f5f9ff;
  font-size: 16px;
  font-weight: 600;
}

.faq-accordion .accordion .accordion-item .accordion-title i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 100%;
  background: #02298a;
  color: #ffffff;
}

.faq-accordion .accordion .accordion-item .accordion-title i::before {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
}

.faq-accordion .accordion .accordion-item .accordion-title.active {
  border-bottom-color: #e1e1e1;
}

.faq-accordion .accordion .accordion-item .accordion-title.active i::before {
  content: "\f121";
}

.faq-accordion .accordion .accordion-item .accordion-content {
  display: none;
  position: relative;
  padding: 15px 0 0;
  font-size: 14.5px;
}

.faq-accordion .accordion .accordion-item .accordion-content.show {
  display: block;
}

.faq-contact {
  margin-top: 45px;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  padding: 50px;
  border-radius: 5px;
  background: #ffffff;
  text-align: center;
}

.faq-contact h3 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}

.faq-contact form .btn {
  margin-top: 10px;
}

.faq-contact form textarea {
  padding-top: 13px;
}

/*================================================
Coming Soon Area CSS
=================================================*/
.coming-soon-area {
  position: relative;
  z-index: 1;
  height: 100vh;
  background-image: url(../img/coming-soon.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.coming-soon-area::before {
  z-index: -1;
  background: linear-gradient(-9deg, #6a82fb 0%, #6a82fb 40%, #fc5c7d 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: .80;
}

.coming-soon-area .social-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  bottom: 30px;
}

.coming-soon-area .social-list li {
  display: inline-block;
}

.coming-soon-area .social-list li.list-heading {
  display: block;
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.coming-soon-area .social-list li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #02298a;
  color: #ffffff;
  border-radius: 50%;
  margin: 0 2px;
}

.coming-soon-area .social-list li a svg {
  width: 15px;
}

.coming-soon-area .social-list li a.facebook {
  background-color: #3b5998;
}

.coming-soon-area .social-list li a.twitter {
  background-color: #1da1f2;
}

.coming-soon-area .social-list li a.linkedin {
  background-color: #0077b5;
}

.coming-soon-area .social-list li a.instagram {
  background-color: #c13584;
}

.coming-soon-area .social-list li a:hover, .coming-soon-area .social-list li a:focus {
  background-color: #02298a;
}

.coming-soon-content {
  text-align: center;
  max-width: 820px;
  margin: -80px auto 0;
}

.coming-soon-content h1 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 46px;
  font-weight: 700;
}

.coming-soon-content p {
  color: #ffffff;
  font-size: 16px;
  margin: 0 auto;
  max-width: 620px;
}

.coming-soon-content form {
  position: relative;
  margin: 35px auto 55px;
  max-width: 520px;
}

.coming-soon-content form .email-input {
  display: block;
  width: 100%;
  height: 56px;
  border: none;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0px 0px 0px 5px rgba(255, 255, 255, 0.3);
          box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0px 0px 0px 5px rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  padding: 15px 25px;
  outline: 0 !important;
  background: #F1F2F3;
}

.coming-soon-content form .submit-btn {
  position: absolute;
  right: 3px;
  top: 3px;
  height: 50px;
  background: #02298a;
  color: #ffffff;
  border: none;
  border-radius: 40px;
  width: 130px;
  outline: 0 !important;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
  font-weight: 600;
}

.coming-soon-content form .submit-btn:hover, .coming-soon-content form .submit-btn:focus {
  background-color: #fd6c1e;
}

.coming-soon-content #timer div {
  background: #ffffff;
  display: inline-block;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  color: #fd6c1e;
  -webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.5);
          box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.5);
  margin: 0 10px;
  padding-top: 18px;
  font-size: 40px;
  font-weight: 700;
}

.coming-soon-content #timer div span {
  display: block;
  margin-top: -4px;
  color: #777777;
  font-size: 14px;
  font-weight: 600;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color: #242220;
  padding-top: 60px;
  background-image: url(https://www.affordablehomesgurgaon.in/wp-content/themes/realhomes/images/background-outer-wrapper.png);
  background-size: contain;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  box-shadow: inset 0px 2000px 2000px 2000px #0000009e;
}

.footer-area.optional-color .single-footer-widget .social li a:hover {
  background-color: #fd6c1e;
}

.single-footer-widget h3 {
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
}

.single-footer-widget h3::before {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
      background: linear-gradient(to right, #1ba5b7, #1ba5b7, #1ba5b7, #1ba5b7, #1ba5b7);
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 45px;
}

.single-footer-widget .logo {
  margin-bottom: 15px;
}

.single-footer-widget p {
  color: #dddddd;
}

.single-footer-widget .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.single-footer-widget .social li {
  display: inline-block;
}

.single-footer-widget .social li a {
  background-color: #343434;
  color: #ffffff;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 36px;
  font-size: 14px;
  border-radius: 50%;
}

.single-footer-widget .social li a:hover {
  color: #ffffff;
  background-color: #1ba5b7;
}

.single-footer-widget .services-list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.single-footer-widget .services-list li {
  margin-bottom: 12px;
}

.single-footer-widget .services-list li a {
  color: #dddddd;
  position: relative;
  display: inline-block;
}

.single-footer-widget .services-list li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(#fd6b12), color-stop(#fc8712), color-stop(#faa01f), to(#f7b733));
  background: linear-gradient(to right, #fc4a1a, #fd6b12, #fc8712, #faa01f, #f7b733);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .services-list li a:hover {
  padding-left: 12px;
}

.single-footer-widget .services-list li a:hover::before {
  opacity: 1;
  visibility: visible;
}

.single-footer-widget .services-list li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-list li {
  margin-bottom: 8px;
  color: #dddddd;
  line-height: 1.8;
}

.single-footer-widget .footer-contact-list li span {
  color: #ffffff;
  font-weight: 600;
}

.single-footer-widget .footer-contact-list li a {
  color: #dddddd;
  display: inline-block;
}

.single-footer-widget .footer-contact-list li a:hover {
  color: #fd6c1e;
}

.single-footer-widget .footer-contact-list li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .working-hours {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.single-footer-widget .working-hours li {
  margin-bottom: 12px;
  color: #dddddd;
}

.single-footer-widget .working-hours li span {
  color: #ffffff;
  font-weight: 600;
}

.single-footer-widget .working-hours li a {
  color: #dddddd;
  display: inline-block;
}

.single-footer-widget .working-hours li a:hover {
  color: #1ba5b7;
}

.single-footer-widget .working-hours li:last-child {
  margin-bottom: 0;
}

.copyright-area {
  background-color: #000000;
  margin-top: 10px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.copyright-area p {
  color: #f8f8f8;
  font-size: 14px;
}

.copyright-area p span {
  color: #ffffff;
  font-weight: 600;
}

.copyright-area ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  text-align: right;
}

.copyright-area ul li {
  position: relative;
  display: inline-block;
  color: #ffffff;
  margin-right: 17px;
  font-size: 14px;
}

.copyright-area ul li a {
  color: #f8f8f8;
}

.copyright-area ul li a:hover {
  color: #fd6c1e;
}

.copyright-area ul li:last-child {
  margin-right: 0;
}

.copyright-area ul li:last-child::before {
  display: none;
}

.copyright-area ul li::before {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 2px;
  background: #ffffff;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 15px;
  color: #ffffff;
  background-color: #141414;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
          transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, right top, left top, from(#0575e6), color-stop(#0b5eca), color-stop(#0b47af), color-stop(#083194), to(#021b79));
      background: linear-gradient(to left, #1ba5b7, #1ba5b7, #1ba5b7, #1ba5b7, #1ba5b7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover, .go-top:focus {
  color: #ffffff;
}

.go-top:hover::before, .go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child, .go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child, .go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

/*================================================
Modal CSS
=================================================*/
.productsCartModal.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 420px;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
          transform: translate3d(0%, 0, 0);
}

.productsCartModal.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.productsCartModal.modal.right.fade .modal-dialog {
  right: -420px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.productsCartModal.modal.right.fade.show .modal-dialog {
  right: 0;
}

.productsCartModal .modal-content {
  border-radius: 0;
  border: none;
}

.productsCartModal .modal-content .modal-body {
  padding: 30px;
}

.productsCartModal .modal-content .modal-body h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.productsCartModal .modal-content .modal-body .product-cart-content .product-cart {
  position: relative;
  border-bottom: 1px dashed #eeeeee;
  margin-bottom: 15px;
  padding-left: 60px;
  padding-bottom: 15px;
}

.productsCartModal .modal-content .modal-body .product-cart-content .product-cart .product-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
}

.productsCartModal .modal-content .modal-body .product-cart-content .product-cart .product-content {
  padding: 4px;
  position: relative;
  padding-right: 15px;
}

.productsCartModal .modal-content .modal-body .product-cart-content .product-cart .product-content .remove-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  color: #777777;
}

.productsCartModal .modal-content .modal-body .product-cart-content .product-cart .product-content .remove-btn:hover {
  color: red;
}

.productsCartModal .modal-content .modal-body .product-cart-content .product-cart .product-content h3 {
  font-size: 16px;
  text-transform: initial;
  margin-bottom: 3px;
}

.productsCartModal .modal-content .modal-body .product-cart-content .product-cart .product-content h3 a {
  color: #141414;
}

.productsCartModal .modal-content .modal-body .product-cart-content .product-cart .product-content .product-price span {
  display: inline-block;
  margin-bottom: 0;
  color: #777777;
  font-size: 11px;
  font-weight: 600;
}

.productsCartModal .modal-content .modal-body .product-cart-content .product-cart .product-content .product-price span.price {
  font-size: 12px;
  color: #141414;
}

.productsCartModal .modal-content .modal-body .product-cart-subtotal {
  overflow: hidden;
  margin-bottom: 15px;
}

.productsCartModal .modal-content .modal-body .product-cart-subtotal span {
  text-transform: uppercase;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
}

.productsCartModal .modal-content .modal-body .product-cart-subtotal span.subtotal {
  float: right;
  font-weight: normal;
}

.productsCartModal .modal-content .modal-body .product-cart-btn .btn {
  display: block;
}

.productsCartModal .modal-content .modal-body .product-cart-btn .btn.btn-secondary {
  margin-top: 12px;
}

.productsCartModal .close {
  color: #141414;
  font-size: 30px;
  outline: 0 !important;
  line-height: initial;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 1;
}

.productsCartModal .close:not(:disabled):not(.disabled):hover, .productsCartModal .close:not(:disabled):not(.disabled):focus {
  color: #141414;
  text-decoration: none;
  opacity: 1;
}

.productsQuickView .modal-dialog {
  max-width: 900px;
}

.productsQuickView .modal-content {
  border: none;
  border-radius: 0;
}

.productsQuickView .modal-content button.close {
  position: absolute;
  right: 2%;
  display: inline-block;
  opacity: 1;
  z-index: 3;
  top: 2%;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 32px;
  border: 1px solid #eeeeee;
  border-radius: 50%;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-shadow: unset;
}

.productsQuickView .modal-content button.close span {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-shadow: unset;
}

.productsQuickView .modal-content button.close:hover, .productsQuickView .modal-content button.close:focus {
  background-color: #02298a;
  color: #ffffff;
}

.productsQuickView .modal-content button.close:hover span, .productsQuickView .modal-content button.close:focus span {
  color: #ffffff;
}

.productsQuickView .modal-content .products-image {
  overflow: hidden;
}

.productsQuickView .modal-content .products-image img {
  width: 100%;
}

.productsQuickView .modal-content .products-content {
  padding-right: 15px;
}

.productsQuickView .modal-content .products-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.productsQuickView .modal-content .products-content p {
  margin-bottom: 20px;
  font-size: 14px;
}

.productsQuickView .modal-content .products-content .price {
  margin-bottom: 10px;
}

.productsQuickView .modal-content .products-content .price span {
  color: #777777;
  font-size: 14px;
  font-weight: 600;
}

.productsQuickView .modal-content .products-content .price span.old-price {
  text-decoration: line-through;
  color: #c1bdbd;
}

.productsQuickView .modal-content .products-content form .quantity {
  display: inline-block;
}

.productsQuickView .modal-content .products-content form .quantity input {
  border: 1px solid #eeeeee;
  background: #ffffff;
  height: 45px;
  padding: 15px;
  width: 75px;
  outline: 0;
  font-size: 16px;
}

.productsQuickView .modal-content .products-content form button {
  background: #02298a;
  color: #ffffff;
  border: none;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  font-weight: 600;
  cursor: pointer;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.productsQuickView .modal-content .products-content form button:hover, .productsQuickView .modal-content .products-content form button:focus {
  background-color: #fd6c1e;
  color: #ffffff;
}

.productsQuickView .modal-content .products-content .product-meta {
  margin-top: 15px;
}

.productsQuickView .modal-content .products-content .product-meta span {
  display: inline-block;
  margin-right: 8px;
  color: #141414;
  font-weight: 700;
  font-size: 14px;
}

.productsQuickView .modal-content .products-content .product-meta a {
  display: inline-block;
  color: #777777;
  font-weight: normal;
}

.productsQuickView .modal-content .products-content .product-meta a:hover {
  color: #02298a;
}

.about-nav{
    padding:75px;
}
.about-nav li{
    padding:12px;
}
.about-nav li a{
        padding: 11px;
    color: white;
    border-radius: 6px;
    background: #1ba5b7;
}
.about-nav li a:hover{
       
    background:black;
}


.about-nav h3{
    padding:10px;
}
.about-nav p{
    padding:10px;
}
.location-cls img{
   width: 76% !important;
    position: absolute;
    left: 70px; 
}
    

.sideplan-menu ul{
    list-style-type: none;
}
.sideplan-menu li a{
 font-size: 18px;
    border-bottom: 1px solid white;
    padding: 2px;
    margin-left: 150px;
    color: #ff6b09;
    text-decoration: none;
}
.floorplan-cls{
    background: #1f2123;
}
.floorplan-cls h5{
    
    padding:25px;
}

.gallery .filter{
   
        padding: 15px;
}


.breaf-img a{
    padding:12px;
    border:1px solid white;

    
}
.breaf-img h5{
    padding-top:12px;
}

.service-bg{
   background-image: url(../img/sports/service-bg.jpg); 
    min-height: 350px;
    width: 100%;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.work-strip{
 background: linear-gradient(to left, #1c1206c7, #fc8012, #fc8112, #fc8112, #ff000094);
    padding: 15px;
}

.work-strip span{text-align:center;color: red;}



.team-hover-content a{
    color:#ff6905;
}
.team-hover-content a:hover{
   color:red; 
}
.type-plan h2{
    color:black;
    padding:15px;
    text-align:center;
}
.type-plan{
     /* background: #000000c9; */
     padding:60px;
}

.type-plan .bhk-flats:hover{
    margin-top:12px;
}
.border-table tr td{
     border: 1px solid #ff690570;
     padding: 10px 40px 10px 10px;
     color: black;
}
.bg-table{
    background: #f6f6f6;
    padding:60px;
    color: #000;
}


    .site-pic1:before {
    position: absolute;
    right: -65px;
    top: 50%;
    height: 70px;
    width: 70px;
    background: black;
    content: "";
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -35px;
}

.site-plan::before{
   position: absolute;
    right: 141px;
    top: 107%;
    height: 70px;
    width: 70px;
    background: #000000;
    content: "";
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -35px;
}
.type-plan h2{
    color: black;
}
.plan-bg h3{
    text-align: center;
    padding: 25px;

}

.services-box h2{
    color:black;
}

  .location-pic::before {
    position: absolute;
    right: -29px;
    top: 50%;
    z-index: 111;
    height: 70px;
    width: 70px;
    background: #000000;
    content: "";
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -35px;
}

.plan-bg{
    background: #ffffff;
    padding:60px;
}
.lp{
    height:100%;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}
.cont-map{
    padding:0 !important;
}

.cont-map #contactForm{
    padding: 10px 60px 10px 60px;
}
.single-services-box p {
    color:#fff;
}

.latest-news {
    margin-top: 20px;
    background: #f5f5f5;
    box-shadow: 0px 0px 16px 2px #e0dede;
    min-height: 320px;
}

.latest-news .news-head h4 {
    background: #1ba5b7;
    color: #fff !important;
    text-transform: capitalize;
    text-align: center;
    padding: 10px 0px;
    border-bottom: 7px solid #fff;
}

.anouncement-text {
    padding: 20px;
    background: #fff;
    border-bottom: 3px solid #1ba2b4;
}

.anouncement-text:before {
    font-size: 20px;
    color: #1ba2b4;
    content: "\f10e";
    font-family: "FontAwesome";
    display: inline-block;
}
.sidebar-number {
    position: fixed;
    right: -100px;
    top: 30%;
    box-shadow:0px 0px 10px 3px #ccc;
    z-index: 9999;
    background: red;
    padding: 10px;
    transform: rotate(270deg);
}

.sidebar-number a {
    color: #fff;
}
.feature-properties .prop-img {
    position: relative;
    overflow: hidden;
    border-left: 2px solid #fff3;
    /* border-right: 2px solid #fff; */
    border-collapse: collapse;
}

.prop-img h4 {
    position: absolute;
    bottom: -10px;
    transition:.6s;
    text-align: center;
    display: block;
    width: 100%;
    background: #0000009e;
    box-shadow: 0px -12px 8px 20px #0000009e;
    padding-bottom: 20px;
    color: #fff;
    font-weight: 100;
    text-transform: capitalize;
}
.feature-properties .prop-img:hover h4 {
    padding-bottom: 40px;
    transition: .6s;
}
.nm {
    padding: 0pc !important;
}

.prop-img p {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #1ba5b7;
    border-radius: 0px 0px 0px 11px;
    padding: 2px 10px;
    color: #fff;
    box-shadow: 0px 0px 21px 1px #040c05ab;
}

.service-wrapper {
    /* border: 1px solid black; */
    padding: 10px 30px;
    background: #f5f2f2;
    /* box-shadow: 1px 14px 10px #000; */
    overflow: hidden;
    border-top: 0;
}

.service-wrapper .service-img {
    width: 160px;
    height: 150px;
    border-radius: 50%;
    margin: 0px auto;
    background: black;
    text-align: center;
    color: #fff;
    /* box-shadow: 0px 0px 4px 10px #000; */
    line-height: 20px;
}

.service-wrapper .service-img p {
    text-align: center;
    color: #fff;
    line-height: 14;
    text-transform: uppercase;
    margin-top: -100px;
    z-index: 999;
}

.service-text {
    margin-top: 30px;
}

.service-text h4 {
    /* color: red; */
    text-align: center;
    /* text-transform: uppercase; */
    font-weight: 100;
}

.service-text h4:after {
    content: "";
    display: block;
    width: 90px;
    border-top: 2px solid #1ba5b7;
    margin: 10px auto;
    border-radius: 50px;
}.service-wrapper:hover {
    background: #000;
    transition: .6s ease;
}

.service-wrapper:hover .service-text p {
    color: #fff;
}
.main-overview {
    padding: 30px 0px 0px 0px;
    background: #fff;
    height: 100%;
}

.main-overview p.main-p {
    background: red;
    padding: 30px;
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    margin: 20px 0px;
}

.main-overview p.price {
    font-size: 20px;
}

.main-overview p.price span {
    font-size: 30px;
    font-weight: 800;
}
.news li a{color:#000;}

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

a.prop-link {
    display: none;
}

.prop-img:hover h4 {
    height: 100%;
    vertical-align: center;
    vertical-align: ce;
    padding-top: 40%;
    transition: .6s;
}

.prop-img:hover a.prop-link {
    display: block;
    text-align: center;
    position: absolute;
    bottom: 16%;
    width: 40%;
    color: #fff;
    border: 2px solid #fff;
    background: #1ba5b7;
    display: block;
    margin: 0px auto;
    left: 30%;
}
.pdf-listing li a{
    color:#ff0000;
}
.pdf-listing li a:hover{
    color:#fff;
}
.pdf-listing {
    background: #000;
    padding: 10px;
    margin: 10px 0!important;
    padding-left: 10px !important;
}
section.top-section .main-overview a.oc-link {
    /*content: "OC Recieved";*/
    font-size: 17px;
    position: absolute;
    z-index: 9;
    left: -80px;
    display: block;
    color: #000;
    width: 100%;
    bottom: -50px;
    background: red;
    box-shadow: 0px 0px 3px 3px #000;
    width: 120px;
    height: 120px;
    text-transform: uppercase;
    padding-top: 34px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
}

.gallery-slider .item:before {
    content: "Actual image";
    position: absolute;
    top: 0px;
    right: 0px;
    background: #0000007d;
    color: #fff;
    padding: 2px 10px;
    border-radius: 0px 0px 0px 15px;
}
.pdf-listing li {
    list-style: none;
    text-align: left;
}

.pdf-listing li i {
    margin-right: 10px;
}

@media only screen and (max-width:900px)
{
    section.top-section .main-overview a.oc-link
    {
    position:relative;
    border-radius:0px;
    width:100%;
    height:auto;
    left: 0px;
    bottom: 20px;
    padding: 0px;
    box-shadow: unset;
    }
    .feature-properties .prop-img img {
    width: 100%;
}

.service-wrapper .service-img p {
    display: inline;
    line-height: 12;
}
}
p.main-slider-actual {
    position: absolute;
    top: 10px;
    right: 60px;
    z-index: 999;
    background: #1ba5b7;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0px 0px 9px 9px;
    box-shadow: 0px 6px 13px 0px #000;
}
.galleryheight img
{
    height: 157px;
    width: 100%;
}


.button {
        background-color: #1c87c9;
        -webkit-border-radius: 60px;
        border-radius: 60px;
        border: none;
        color: #eeeeee;
        cursor: pointer;
        display: inline-block;
        font-family: sans-serif;
        font-size: 20px;
        padding: 5px 15px;
        text-align: center;
        text-decoration: none;
      }
      @keyframes glowing {
        0% {
          background-color: #e3425f;
          box-shadow: 0 0 5px #2ba805;
        }
        50% {
          background-color: #49e819;
          box-shadow: 0 0 20px #49e819;
        }
        100% {
          background-color: #e3425f;
          box-shadow: 0 0 5px #2ba805;
        }
      }
      .button {
        animation: glowing 1300ms infinite;
      }

.solitaire-custom{
    display:flex;
    justify-content:center;
    align-items:center;
}
@media only screen and (min-width: 725px) {
  .solitaire-custom{
    display:flex;
    /*flex-direction:column !important;*/
    justify-content:center;
    align-items:center;
}
}
.filter img{
    height: 333PX !important;
    width: 100% !important;
    object-fit: cover !important;
}


.testi img
{
    padding: 1px;
    background: white;
    color: #44a5b7;
    border-radius: 50%;
    width: 20% !important;
}

div#nav-tab {
    padding-bottom: 30px;
}
section#section-portfolio\ section-steps-4 {
    padding-bottom: 60px;
}

.march-color
    {
        background: #44a5b7 !important;
        color: white;   
    }
    .aaa.active:focus
    {
        background: #1ba5b7 !important;
        color: white;   
    }
    
    
.tab-pane a{
        text-align: center;
}    


.tab-pane img.img-fluid{
    height: 300px;
    object-fit: cover;
    width: 300px;
}

#our-projects .tab-content a {
    max-height: 400px;
    overflow: hidden;
}
#our-projects .tab-content a.active {
    background: #1da5b8;
}
.online
{
    position: relative;
}
.apply .title {
  margin: 0 auto;
  color: white; 
  font-size: 20px;
}
.apply {
  width: 200px;
  height: auto;  
  display: flex;
  align-items: center;
  position: fixed;
    bottom: 10%;
    right: 1%;
    z-index: 9;
  text-align: center;
  border-radius: 40px;
  animation: changeBackgroundColor 7s infinite;
}

@keyframes changeBackgroundColor {
  0% {
    background-color: #001F3F;
  }
  50% {
    background-color: #FF4136;
  }
  100% {
    background-color: #001F3F;
  }
}