/*
@File: Braike Template Styles

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

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

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

** - Default CSS
** - Header Area CSS
** - Search Overlay CSS
** - Main Banner Area CSS
** - About Area CSS
** - Partner Area CSS
** - Listing Area CSS
** - Listing Details Area CSS
** - Destinations Area CSS
** - Video Area CSS
** - Listing Categories Area CSS
** - Process Area CSS
** - Pagination CSS
** - Feedback Area CSS
** - Products Details Area CSS
** - Funfacts Area CSS
** - App Download Area CSS
** - Team Area CSS
** - Listing Widget Sidebar CSS
** - Modal CSS
** - Blog Area CSS
** - Blog Details Area CSS
** - Instagram Area CSS
** - Page Title Area CSS
** - Products Area CSS
** - Widget Sidebar CSS
** - Coming Soon Area CSS
** - Cart Area CSS
** - Checkout Area CSS
** - FAQ Area CSS
** - Login Area CSS
** - Register Area CSS
** - Error 404 Area CSS
** - Contact Area CSS
** - Footer Area CSS
** - Go Top CSS
*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&amp;display=swap");
body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

:focus {
  outline: 0 !important;
}

a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover {
  color: #088dd3;
  text-decoration: none;
}

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

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

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Cabin", sans-serif;
  color: #000000;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.pb-100 {
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

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

.pb-70 {
  padding-bottom: 70px;
}

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

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

/*section-title*/
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title .sub-title {
  display: block;
  color: #088dd3;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}

.section-title h2 {
  margin-bottom: 0;
  position: relative;
  padding-bottom: 25px;
  font-size: 40px;
  font-weight: 700;
}

.section-title h2::before {
  position: absolute;
  left: 0;
  right: 0;
  width: 55px;
  height: 3.5px;
  background-color: #088dd3;
  content: '';
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.section-title .section-title-btn {
  text-transform: uppercase;
  display: inline-block;
  margin-top: 15px;
  padding-right: 22px;
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.section-title .section-title-btn i {
  position: absolute;
  right: 0;
  top: 1px;
  font-size: 20px;
}

.section-title .section-title-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 1px;
  background-color: #088dd3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.section-title .section-title-btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.section-title.text-start h2::before {
  margin-left: 0;
  margin-right: 0;
}

.section-title.text-start .section-title-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-top: 0;
}

/*default-btn*/
.default-btn {
  display: inline-block;
  background-color: #088dd3;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: none;
  padding: 11.5px 30px 12px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}

.default-btn:hover {
  background-color: #20aef9;
  color: #ffffff;
}

.optional-btn {
  display: inline-block;
  background-color: transparent;
  position: relative;
  z-index: 1;
  color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: none;
  padding: 11.5px 30px 12px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}

.optional-btn::before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  border: 1px solid #000000;
  border-radius: 30px;
  z-index: -1;
}

.optional-btn:hover {
  background-color: #20aef9;
  color: #ffffff;
}

.optional-btn:hover::before {
  border-color: #088dd3;
}

/*form-control*/
.form-control {
  background-color: #f5f5f5;
  height: 48px;
  border-radius: 0;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  padding: 0 0 0 15px;
  border: 1px solid #f5f5f5;
  color: #000000;
  font-size: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.form-control:focus {
  border-color: #088dd3;
  background-color: #ffffff;
}

.form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.form-control:focus::placeholder {
  color: transparent;
}

.form-control::-webkit-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.form-control:-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.form-control::-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.form-control::placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

textarea.form-control {
  padding-top: 15px;
  height: auto !important;
}

/*================================================
Header Area CSS
=================================================*/
.header-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}

.top-header {
  background-color: #088dd3;
  padding-top: 12px;
  padding-bottom: 12px;
}

.top-header .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

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

.header-contact-info li {
  display: inline-block;
  color: #ffffff;
  margin-right: 25px;
  position: relative;
  font-weight: 600;
  font-size: 14px;
}

.header-contact-info li::before {
  position: absolute;
  right: -15px;
  top: 6px;
  width: 1px;
  content: '';
  height: 12px;
  background-color: #ffffff;
}

.header-contact-info li a {
  display: inline-block;
  color: #ffffff;
  position: relative;
}

.header-contact-info li a:hover {
  color: #ffffff;
}

.header-contact-info li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-contact-info li a:hover::before {
  width: 100%;
}

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

.header-contact-info li:last-child::before {
  display: none;
}

.header-contact-info li .language-switcher {
  position: relative;
}

.header-contact-info li .language-switcher .dropdown-toggle {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.header-contact-info li .language-switcher .dropdown-toggle::after {
  display: none;
}

.header-contact-info li .language-switcher .dropdown-toggle img {
  width: 35px;
  border-radius: 3px;
  border: 2px solid #ffffff;
  position: relative;
  top: -2px;
}

.header-contact-info li .language-switcher .dropdown-toggle span {
  display: inline-block;
  margin-left: 5px;
}

.header-contact-info li .language-switcher .dropdown-toggle span i {
  position: relative;
  font-size: 20px;
  top: 4px;
  margin-left: -3px;
}

.header-contact-info li .language-switcher .dropdown-menu {
  padding: 15px;
  float: unset;
  border: none;
  -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);
  border-radius: 0;
  display: block;
  margin-top: 12px;
  opacity: 0;
  visibility: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.header-contact-info li .language-switcher .dropdown-menu .dropdown-item {
  padding: 0;
  color: #000000;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.header-contact-info li .language-switcher .dropdown-menu .dropdown-item::before {
  display: none;
}

.header-contact-info li .language-switcher .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}

.header-contact-info li .language-switcher .dropdown-menu .dropdown-item img {
  width: 40px;
  border-radius: 5px;
  border: 3px solid #ffffff;
}

.header-contact-info li .language-switcher .dropdown-menu .dropdown-item span {
  display: inline-block;
  margin-left: 7px;
}

.header-contact-info li .language-switcher .dropdown-menu .dropdown-item:hover, .header-contact-info li .language-switcher .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
}

.header-contact-info li .language-switcher .dropdown-menu .dropdown-item:active, .header-contact-info li .language-switcher .dropdown-menu .dropdown-item.active {
  color: #000000;
  background-color: transparent;
}

.header-contact-info li .language-switcher .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.top-header-discount-info {
  text-align: center;
}

.top-header-discount-info p {
  margin-bottom: 0;
  line-height: initial;
  font-size: 14px;
  color: #ffffff;
}

.top-header-discount-info p a {
  display: inline-block;
  font-weight: 700;
  position: relative;
  color: #ffffff;
}

.top-header-discount-info p a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-header-discount-info p a:hover {
  color: #ffffff;
}

.top-header-discount-info p a:hover::before {
  width: 100%;
}

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

.header-top-menu li {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  margin-right: 25px;
  position: relative;
  font-size: 14px;
}

.header-top-menu li::before {
  position: absolute;
  right: -15px;
  top: 6px;
  width: 1px;
  content: '';
  height: 12px;
  background-color: #ffffff;
}

.header-top-menu li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 16px;
}

.header-top-menu li a {
  display: inline-block;
  color: #ffffff;
  padding-left: 22px;
  position: relative;
}

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

.header-top-menu li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-top-menu li a:hover::before {
  width: 100%;
}

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

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

.braike-responsive-nav {
  display: none;
}

.braike-nav {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.braike-nav .container-fluid {
  padding-left: 45px;
  padding-right: 45px;
}

.braike-nav .navbar {
  position: inherit;
  padding-left: 0;
  padding-right: 0;
}

.braike-nav .navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

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

.braike-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.braike-nav .navbar .navbar-nav .nav-item {
  position: relative;
}

.braike-nav .navbar .navbar-nav .nav-item a {
  color: rgba(255, 255, 255, 0.87);
  font-size: 16px;
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: 13px;
  margin-right: 13px;
}

.braike-nav .navbar .navbar-nav .nav-item a i {
  font-size: 18px;
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: -3px;
  margin-right: -3px;
}

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

.braike-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.braike-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.braike-nav .navbar .navbar-nav .nav-item:hover a, .braike-nav .navbar .navbar-nav .nav-item.active a {
  color: #ffffff;
}

.braike-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: 70px;
  left: 0;
  width: 250px;
  z-index: 99;
  display: block;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  padding: 13px 20px 11px;
  margin: 0;
  position: relative;
  display: block;
  color: #777777;
  border-bottom: 1px dashed #e5e5e5;
  font-size: 15px;
  font-weight: 600;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  margin: 0;
  position: absolute;
  top: 50%;
  font-size: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #777777;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #777777;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #777777;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #777777;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #777777;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #777777;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.braike-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.braike-nav .navbar .navbar-nav .nav-item.megamenu {
  position: inherit;
}

.braike-nav .navbar .navbar-nav .nav-item.megamenu .container {
  display: block;
  -ms-flex-wrap: unset;
      flex-wrap: unset;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}

.braike-nav .navbar .navbar-nav .nav-item.megamenu .dropdown-menu {
  width: 100%;
  margin-top: 8px;
  position: absolute;
  top: auto;
  left: 0;
  padding: 30px 0;
  -webkit-transform: unset !important;
          transform: unset !important;
}

.braike-nav .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .submenu-title {
  color: #000000;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 25px;
  font-size: 15.5px;
  font-weight: 600;
}

.braike-nav .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .submenu-title::before {
  width: 30px;
  height: 1px;
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .submenu-title:first-child {
  margin-top: 0;
}

.braike-nav .navbar .navbar-nav .nav-item.megamenu .dropdown-menu a {
  border-bottom: none !important;
}

.braike-nav .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .megamenu-submenu li a {
  margin-top: 15px;
  color: #777777;
  padding: 0;
  font-weight: 600;
}

.braike-nav .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .megamenu-submenu li a:hover, .braike-nav .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .megamenu-submenu li a.active {
  color: #088dd3;
}

.braike-nav .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .partner-slides {
  margin-top: 30px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
}

.braike-nav .navbar .others-option .option-item {
  margin-left: 15px;
  position: relative;
  z-index: 3;
}

.braike-nav .navbar .others-option .option-item:first-child {
  margin-left: 0;
}

.braike-nav .navbar .others-option .option-item .search-btn-box {
  position: relative;
  top: 5px;
}

.braike-nav .navbar .others-option .option-item .search-btn-box .search-btn {
  font-size: 25px;
  cursor: pointer;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.braike-nav .navbar .others-option .option-item .cart-btn {
  font-size: 25px;
  top: 3px;
  position: relative;
  margin-right: 5px;
  line-height: 1;
}

.braike-nav .navbar .others-option .option-item .cart-btn a {
  display: inline-block;
  position: relative;
  color: #ffffff;
}

.braike-nav .navbar .others-option .option-item .cart-btn a span {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 14px;
  height: 14px;
  text-align: center;
  line-height: 13.9px;
  border-radius: 50%;
  color: #ffffff;
  background-color: #088dd3;
  font-size: 10px;
  font-weight: 600;
}

.braike-nav .navbar .others-option .option-item .default-btn {
  border: 1.5px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  position: relative;
  padding-top: 9px;
  padding-bottom: 10.5px;
  padding-left: 45px;
  padding-right: 20px;
}

.braike-nav .navbar .others-option .option-item .default-btn i {
  position: absolute;
  font-size: 20px;
  left: 20px;
  top: 10px;
}

.braike-nav .navbar .others-option .option-item .default-btn:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #088dd3;
}

.navbar-area.is-sticky {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #088dd3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.1);
}

.navbar-area.is-sticky.scrollUp {
  -webkit-transform: translateY(-95px);
          transform: translateY(-95px);
  opacity: 0;
  visibility: hidden;
}

.navbar-area.is-sticky .braike-nav {
  border-bottom: none;
}

.navbar-area.navbar-style-two .braike-nav {
  border-bottom: none;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: 25px;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item a {
  color: #000000;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item a:hover, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item a:focus, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item a.active {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item:hover a, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item.active a {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #777777;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #777777;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #777777;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #777777;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #777777;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #777777;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #777777;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .megamenu-submenu li a {
  color: #777777;
}

.navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .megamenu-submenu li a:hover, .navbar-area.navbar-style-two .braike-nav .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .megamenu-submenu li a.active {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .others-option .option-item .search-btn-box .search-btn {
  color: #000000;
}

.navbar-area.navbar-style-two .braike-nav .navbar .others-option .option-item .search-btn-box .search-btn:hover {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .others-option .option-item .cart-btn a {
  color: #000000;
}

.navbar-area.navbar-style-two .braike-nav .navbar .others-option .option-item .cart-btn a:hover {
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .others-option .option-item .default-btn {
  border-width: 1px;
  border-color: #088dd3;
  background-color: transparent;
  color: #088dd3;
}

.navbar-area.navbar-style-two .braike-nav .navbar .others-option .option-item .default-btn:hover {
  background-color: #088dd3;
  border-color: #088dd3;
  color: #ffffff;
}

.navbar-area.navbar-style-two.is-sticky {
  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);
}

@media only screen and (max-width: 991px) {
  .braike-responsive-nav {
    display: block;
  }
  .braike-responsive-nav .braike-responsive-menu {
    position: relative;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .mean-nav {
    margin-top: 50px;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .mean-nav ul {
    font-size: 14px;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .mean-nav ul li a.active {
    color: #088dd3;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 14px;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    height: 295px;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .nav-item {
    overflow: hidden;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .nav-item .container {
    padding-left: 0;
    padding-right: 0;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .nav-item .row {
    display: block;
    -ms-flex-wrap: unset;
        flex-wrap: unset;
    margin-left: 0;
    margin-right: 0;
    margin-top: -20px;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .nav-item .row .col {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    -webkit-box-flex: unset;
        -ms-flex-positive: unset;
            flex-grow: unset;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .nav-item .row .col:last-child {
    margin-bottom: 15px;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .nav-item a {
    width: 100%;
    float: unset;
    display: block;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .nav-item .partner-slides {
    margin-top: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .nav-item .partner-slides .partner-item a {
    display: block !important;
    padding: 20px !important;
    width: auto !important;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .submenu-title {
    color: #000000;
    position: relative;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 8px;
    text-transform: uppercase;
    margin-bottom: 5px;
    margin-top: 25px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 13.5px;
    font-weight: 600;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .submenu-title::before {
    width: 30px;
    height: 1px;
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: #088dd3;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .submenu-title:first-child {
    margin-top: 5px;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu a {
    border-bottom: none !important;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .mean-expand {
    display: none !important;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .megamenu-submenu {
    width: auto;
    overflow: hidden;
    display: block !important;
    padding-left: 20px;
    padding-right: 20px;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .megamenu-submenu li a {
    border: none;
    margin-top: 15px;
    color: #666666;
    padding: 0;
    font-weight: 400;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .megamenu-submenu li a:hover, .braike-responsive-nav .braike-responsive-menu.mean-container .navbar-nav .nav-item.megamenu .dropdown-menu .megamenu-submenu li a.active {
    color: #088dd3;
  }
  .braike-responsive-nav .braike-responsive-menu.mean-container .others-option {
    display: none;
  }
  .braike-responsive-nav .mean-container a.meanmenu-reveal {
    color: #ffffff;
  }
  .braike-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #ffffff;
    position: relative;
    top: 8px;
    margin-top: -8px;
  }
  .braike-responsive-nav .logo {
    position: relative;
    width: 50%;
    z-index: 999;
  }
  .braike-nav {
    display: none;
  }
  .navbar-area {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-area.is-sticky {
    border-bottom: none;
  }
  .navbar-area.navbar-style-two {
    border-bottom: none;
  }
  .navbar-area.navbar-style-two .braike-responsive-nav .mean-container a.meanmenu-reveal {
    color: #000000;
  }
  .navbar-area.navbar-style-two .braike-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #000000;
    position: relative;
    top: 8px;
    margin-top: -8px;
  }
}

/*================================================
Search Overlay CSS
=================================================*/
.search-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.search-overlay .search-overlay-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.search-overlay .search-overlay-layer:nth-child(1) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.search-overlay .search-overlay-layer:nth-child(2) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s;
}

.search-overlay .search-overlay-layer:nth-child(3) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.9s ease-in-out 0.6s;
  transition: all 0.9s ease-in-out 0.6s;
}

.search-overlay .search-overlay-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  padding: 10px;
  -webkit-transition: all 0.9s ease-in-out 1.5s;
  transition: all 0.9s ease-in-out 1.5s;
  opacity: 0;
  visibility: hidden;
}

.search-overlay .search-overlay-close .search-overlay-close-line {
  width: 100%;
  height: 3px;
  float: left;
  margin-bottom: 5px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(2) {
  margin-top: -7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.search-overlay .search-overlay-close:hover .search-overlay-close-line {
  background: #088dd3;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.search-overlay .search-overlay-form {
  -webkit-transition: all 0.9s ease-in-out 1.4s;
  transition: all 0.9s ease-in-out 1.4s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  max-width: 500px;
  width: 500px;
}

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

.search-overlay .search-overlay-form form .input-search {
  display: block;
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 30px;
  padding-left: 20px;
  color: #000000;
  font-size: 15px;
}

.search-overlay .search-overlay-form form button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 45px;
  color: #ffffff;
  height: 45px;
  border-radius: 50%;
  background-color: #088dd3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: none;
  font-size: 20px;
  line-height: 45px;
}

.search-overlay .search-overlay-form form button:hover {
  background-color: #20aef9;
  color: #ffffff;
}

.search-overlay.search-overlay-active.search-overlay {
  opacity: 1;
  visibility: visible;
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-layer {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-close {
  opacity: 1;
  visibility: visible;
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-form {
  opacity: 1;
  visibility: visible;
}

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

.main-banner.banner-bg1 {
  background-image: url(../img/main-banner1.jpg);
}

.main-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000000;
  opacity: .30;
}

.main-banner-content {
  max-width: 1050px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.main-search-wrap {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
          box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 15px 20px;
  margin-top: 40px;
}

.main-search-wrap form {
  position: relative;
  padding-right: 165px;
}

.main-search-wrap form .form-group {
  margin-bottom: 0;
  position: relative;
}

.main-search-wrap form .form-group label {
  z-index: 1;
  display: block;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  color: #088dd3;
  font-size: 22px;
  top: 6px;
}

.main-search-wrap form .form-group label a {
  display: block;
  color: #088dd3;
}

.main-search-wrap form .form-group input {
  display: block;
  padding: 0 0 0 28px;
  width: 100%;
  border: none;
  background-color: #ffffff;
  border-right: 1px solid #eeeeee;
  height: 45px;
  border-radius: 0;
  color: #000000;
  font-size: 14.5px;
}

.main-search-wrap form .form-group input::-webkit-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #7d7d7d;
}

.main-search-wrap form .form-group input:-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #7d7d7d;
}

.main-search-wrap form .form-group input::-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #7d7d7d;
}

.main-search-wrap form .form-group input::placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #7d7d7d;
}

.main-search-wrap form .form-group input:focus::-webkit-input-placeholder {
  color: transparent;
}

.main-search-wrap form .form-group input:focus:-ms-input-placeholder {
  color: transparent;
}

.main-search-wrap form .form-group input:focus::-ms-input-placeholder {
  color: transparent;
}

.main-search-wrap form .form-group input:focus::placeholder {
  color: transparent;
}

.main-search-wrap form .form-group .nice-select {
  background-color: #ffffff;
  border-radius: 0;
  border: none;
  border-right: 1px solid #eeeeee;
  display: block;
  height: 45px;
  line-height: 45px;
  color: #7d7d7d;
  padding-left: 29px;
  padding-right: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14.5px;
}

.main-search-wrap form .form-group .nice-select::after {
  border-color: #088dd3;
  height: 8px;
  width: 8px;
  right: 15px;
}

.main-search-wrap form .form-group .nice-select .list {
  background-color: #ffffff;
  border-radius: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  width: 100%;
  -ms-overflow-style: none;
  max-width: 100%;
  height: 215px;
  overflow-y: scroll;
  margin-top: 0;
  margin-bottom: 0;
}

.main-search-wrap form .form-group .nice-select .list .option {
  line-height: 40px;
  min-height: 40px;
  color: #7d7d7d;
  padding-left: 15px;
  padding-top: 3px;
  padding-right: 15px;
}

.main-search-wrap form .form-group .nice-select .list .option.selected {
  background-color: #088dd3 !important;
  color: #ffffff;
  font-weight: normal;
}

.main-search-wrap form .form-group .nice-select .list::-webkit-scrollbar {
  display: none;
}

.main-search-wrap form .main-search-btn {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 140px;
}

.main-search-wrap form .main-search-btn button {
  display: block;
  background-color: #088dd3;
  color: #ffffff;
  border: none;
  padding: 13px 55px 13px 25px;
  text-align: left;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  text-transform: uppercase;
  font-size: 14.5px;
  font-family: "Cabin", sans-serif;
  font-weight: 600;
}

.main-search-wrap form .main-search-btn button i {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-search-wrap form .main-search-btn button:hover {
  background-color: #20aef9;
  color: #ffffff;
}

.main-search-wrap form .main-search-btn button:hover i {
  -webkit-transform: translateY(-50%) rotate(80deg);
          transform: translateY(-50%) rotate(80deg);
}

.main-categories-box {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  overflow: hidden;
  bottom: -70px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

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

.main-categories-box ul li {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
  padding-left: 5px;
  padding-right: 5px;
}

.main-categories-box ul li a {
  display: block;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  font-family: "Cabin", sans-serif;
}

.main-categories-box ul li a .icon {
  display: block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  line-height: 70px;
  font-size: 30px;
  color: #088dd3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
  border: 5px dotted rgba(2, 128, 194, 0.35);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.main-categories-box ul li a:hover .icon {
  background-color: #088dd3;
  color: #ffffff;
  border-color: #088dd3;
}

.main-banner-wrapper {
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  padding-top: 200px;
  padding-bottom: 400px;
  background-image: url(../img/banner-bg1.jpg);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-wrapper-content {
  max-width: 650px;
}

.banner-wrapper-content h1 {
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 700;
}

.banner-wrapper-content p {
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 0;
}

.banner-wrapper-content form {
  position: relative;
  margin-top: 30px;
  max-width: 550px;
}

.banner-wrapper-content form .input-search {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 60px;
  padding-left: 20px;
  border-radius: 70px;
  outline: 0;
  color: #000000;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
}

.banner-wrapper-content form .input-search::-webkit-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #777777;
}

.banner-wrapper-content form .input-search:-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #777777;
}

.banner-wrapper-content form .input-search::-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #777777;
}

.banner-wrapper-content form .input-search::placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #777777;
}

.banner-wrapper-content form .input-search:focus::-webkit-input-placeholder {
  color: transparent;
}

.banner-wrapper-content form .input-search:focus:-ms-input-placeholder {
  color: transparent;
}

.banner-wrapper-content form .input-search:focus::-ms-input-placeholder {
  color: transparent;
}

.banner-wrapper-content form .input-search:focus::placeholder {
  color: transparent;
}

.banner-wrapper-content form button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: #088dd3;
  color: #ffffff;
  border: none;
  height: 50px;
  padding: 0 30px;
  border-radius: 70px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}

.banner-wrapper-content form button:hover, .banner-wrapper-content form button:focus {
  background-color: #20aef9;
  color: #ffffff;
}

.banner-wrapper {
  background-color: #000000;
  position: relative;
  z-index: 1;
  background: linear-gradient(125deg, #00FF57 0%, #010033 40%, #460043 70%, #F0FFC5 100%), linear-gradient(55deg, #0014C9 0%, #410060 100%), linear-gradient(300deg, #FFC700 0%, #001AFF 100%), radial-gradient(135% 215% at 115% 40%, #393939 0%, #393939 40%, #849561 calc(40% + 1px), #849561 60%, #EED690 calc(60% + 1px), #EED690 80%, #ECEFD8 calc(80% + 1px), #ECEFD8 100%), linear-gradient(125deg, #282D4F 0%, #282D4F 40%, #23103A calc(40% + 1px), #23103A 70%, #A0204C calc(70% + 1px), #A0204C 88%, #FF6C00 calc(88% + 1px), #FF6C00 100%);
  background-blend-mode: overlay, screen, overlay, overlay, normal;
  padding-top: 250px;
  padding-bottom: 170px;
}

.wrapper-content {
  padding-right: 15px;
}

.wrapper-content h1 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 700;
}

.wrapper-content p {
  color: #ffffff;
}

.wrapper-content form {
  position: relative;
  margin-top: 30px;
  margin-right: 50px;
}

.wrapper-content form .input-search {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 60px;
  padding-left: 20px;
  border-radius: 70px;
  outline: 0;
  color: #000000;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
}

.wrapper-content form .input-search::-webkit-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #777777;
}

.wrapper-content form .input-search:-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #777777;
}

.wrapper-content form .input-search::-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #777777;
}

.wrapper-content form .input-search::placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #777777;
}

.wrapper-content form .input-search:focus::-webkit-input-placeholder {
  color: transparent;
}

.wrapper-content form .input-search:focus:-ms-input-placeholder {
  color: transparent;
}

.wrapper-content form .input-search:focus::-ms-input-placeholder {
  color: transparent;
}

.wrapper-content form .input-search:focus::placeholder {
  color: transparent;
}

.wrapper-content form button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: #088dd3;
  color: #ffffff;
  border: none;
  height: 50px;
  padding: 0 30px;
  border-radius: 70px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}

.wrapper-content form button:hover, .wrapper-content form button:focus {
  background-color: #20aef9;
  color: #ffffff;
}

.banner-listing-category {
  text-align: center;
  padding-left: 15px;
}

.banner-listing-category ul {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: -16px;
}

.banner-listing-category ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 16px;
}

.banner-listing-category ul li a {
  display: block;
  background-color: #ffffff;
  border-radius: 5px;
  position: relative;
  -webkit-box-shadow: 0 1px 6px 0 rgba(50, 50, 50, 0.4);
          box-shadow: 0 1px 6px 0 rgba(50, 50, 50, 0.4);
  padding: 15px;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

.banner-listing-category ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-color: #088dd3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.banner-listing-category ul li a i {
  display: block;
  font-size: 45px;
  margin-bottom: 8px;
  color: #088dd3;
}

.banner-listing-category ul li a:hover, .banner-listing-category ul li a:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  border-radius: 0;
}

.banner-listing-category ul li a:hover::before, .banner-listing-category ul li a:focus::before {
  opacity: 1;
  visibility: visible;
}

.banner-listing-category ul li:nth-child(2) a i, .banner-listing-category ul li:nth-child(11) a i {
  color: #777777;
}

.banner-listing-category ul li:nth-child(2) a::before, .banner-listing-category ul li:nth-child(11) a::before {
  background-color: #777777;
}

.banner-listing-category ul li:nth-child(3) a i, .banner-listing-category ul li:nth-child(12) a i {
  color: #0093c9;
}

.banner-listing-category ul li:nth-child(3) a::before, .banner-listing-category ul li:nth-child(12) a::before {
  background-color: #0093c9;
}

.banner-listing-category ul li:nth-child(4) a i, .banner-listing-category ul li:nth-child(13) a i {
  color: #2d3942;
}

.banner-listing-category ul li:nth-child(4) a::before, .banner-listing-category ul li:nth-child(13) a::before {
  background-color: #2d3942;
}

.banner-listing-category ul li:nth-child(5) a i, .banner-listing-category ul li:nth-child(14) a i {
  color: #bfd131;
}

.banner-listing-category ul li:nth-child(5) a::before, .banner-listing-category ul li:nth-child(14) a::before {
  background-color: #bfd131;
}

.banner-listing-category ul li:nth-child(6) a i, .banner-listing-category ul li:nth-child(15) a i {
  color: #f49b29;
}

.banner-listing-category ul li:nth-child(6) a::before, .banner-listing-category ul li:nth-child(15) a::before {
  background-color: #f49b29;
}

.banner-listing-category ul li:nth-child(7) a i, .banner-listing-category ul li:nth-child(1165) a i {
  color: #833a8d;
}

.banner-listing-category ul li:nth-child(7) a::before, .banner-listing-category ul li:nth-child(1165) a::before {
  background-color: #833a8d;
}

.banner-listing-category ul li:nth-child(8) a i, .banner-listing-category ul li:nth-child(17) a i {
  color: #c81a7f;
}

.banner-listing-category ul li:nth-child(8) a::before, .banner-listing-category ul li:nth-child(17) a::before {
  background-color: #c81a7f;
}

.banner-listing-category ul li:nth-child(9) a i, .banner-listing-category ul li:nth-child(18) a i {
  color: #1cb5a3;
}

.banner-listing-category ul li:nth-child(9) a::before, .banner-listing-category ul li:nth-child(18) a::before {
  background-color: #1cb5a3;
}

.hero-banner {
  position: relative;
  z-index: 1;
  height: 100vh;
  background-color: #000000;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-banner.banner-bg2 {
  background-image: url(../img/main-banner2.jpg);
}

.hero-banner.banner-bg3 {
  background-image: url(../img/main-banner3.jpg);
}

.hero-banner.banner-bg4 {
  background-image: url(../img/main-banner4.jpg);
}

.hero-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000000;
  opacity: .50;
}

.home-area .main-banner-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  -webkit-transform: translateY(-52%);
          transform: translateY(-52%);
  z-index: 2;
}

.home-area .main-banner-content h1 span {
  display: block;
}

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

.home-slides.owl-theme .owl-nav [class*=owl-] {
  color: #ffffff;
  font-size: 45px;
  margin: 0;
  padding: 0;
  background: transparent;
  display: inline-block;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  left: 0;
  top: 55%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
}

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

.home-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: #088dd3;
  -webkit-transform: translateX(-10px) translateY(-55%);
          transform: translateX(-10px) translateY(-55%);
}

.home-slides.owl-theme .owl-nav [class*=owl-]:hover.owl-next {
  -webkit-transform: translateX(10px) translateY(-55%);
          transform: translateX(10px) translateY(-55%);
}

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

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

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

.about-image {
  position: relative;
  padding-right: 100px;
  padding-bottom: 50px;
}

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

.about-image img:nth-child(2) {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 1;
}

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

.about-content .sub-title {
  display: block;
  color: #088dd3;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}

.about-content h2 {
  margin-bottom: 15px;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 700;
}

.about-content h6 {
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 16px;
}

.about-content .features-text {
  margin-top: 25px;
}

.about-content .features-text h5 {
  margin-bottom: 22px;
  position: relative;
  font-size: 17px;
  font-weight: 600;
  padding-left: 47px;
  padding-top: 8px;
}

.about-content .features-text i {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-color: #088dd3;
  text-align: center;
  line-height: 35px;
  color: #ffffff;
  font-size: 20px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.about-inner-area {
  margin-top: 80px;
}

.about-text h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
  font-size: 23px;
  font-weight: 700;
}

.about-text h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  background-color: #088dd3;
  height: 1px;
}

.about-text p {
  color: #000000;
}

.about-text .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}

.about-text .features-list li {
  position: relative;
  margin-bottom: 13px;
  color: #000000;
  padding-left: 30px;
}

.about-text .features-list li i {
  font-size: 16px;
  color: #000000;
  background-color: #eaeaf2;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-text .features-list li:last-child {
  margin-bottom: 0;
}

.about-text .features-list li:hover i {
  background-color: #088dd3;
  color: #ffffff;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
  background-color: #f4f4f4;
}

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

.partner-item a {
  display: block;
  background-color: #ffffff;
  border-right: 1px solid #eeeeee;
  padding: 20px;
}

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

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

/*================================================
Listing Area CSS
=================================================*/
.listing-area.extra-pt {
  padding-top: 170px;
}

.single-listing-box {
  border-radius: 5px;
  position: relative;
  margin-bottom: 30px;
  padding-right: 8px;
}

.single-listing-box .listing-image {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.single-listing-box .listing-image img {
  width: 100% !important;
  display: inline-block !important;
  border-radius: 5px;
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}

.single-listing-box .listing-image::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 20%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 128, 194, 0)), to(rgba(2, 128, 194, 0.9)));
  background: linear-gradient(to bottom, rgba(2, 128, 194, 0) 0%, rgba(2, 128, 194, 0.9) 100%);
  z-index: 2;
}

.single-listing-box .listing-badge {
  width: 100px;
  height: 38px;
  line-height: 39px;
  padding-left: 14px;
  position: absolute;
  color: #ffffff;
  top: 33px;
  right: 0;
  text-transform: uppercase;
  background-color: #088dd3;
  font-size: 12.5px;
  font-weight: 500;
  font-family: "Cabin", sans-serif;
}

.single-listing-box .listing-badge::before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  top: -8.5px;
  right: 0;
  border-bottom: 9px solid #088dd3;
  border-right: 9px solid transparent;
}

.single-listing-box .listing-badge.closed {
  color: #ffffff;
  background-color: red;
  width: 115px;
}

.single-listing-box .listing-badge.closed::before {
  border-bottom-color: red;
}

.single-listing-box .listing-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 3;
  padding: 30px;
}

.single-listing-box .listing-content .content {
  position: relative;
}

.single-listing-box .listing-content .content .author {
  margin-bottom: 13px;
}

.single-listing-box .listing-content .content .author img {
  display: inline-block !important;
  border-radius: 50%;
  width: 40px !important;
  border: 2px solid #ffffff;
}

.single-listing-box .listing-content .content .author span {
  color: #ffffff;
  position: relative;
  margin-left: 8px;
  top: 3px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
}

.single-listing-box .listing-content .content h3 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.single-listing-box .listing-content .content h3 a {
  display: inline-block;
  color: #ffffff;
}

.single-listing-box .listing-content .content .location {
  display: block;
  color: #ffffff;
  margin-top: 10px;
  position: relative;
  opacity: 0.95;
  padding-left: 19px;
  font-size: 13.5px;
  font-weight: 600;
}

.single-listing-box .listing-content .content .location i {
  position: absolute;
  left: 0;
  top: 3px;
}

.single-listing-box .listing-content .content .rating {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
}

.single-listing-box .listing-content .content .rating i {
  color: #ffc107;
}

.single-listing-box .listing-content .content .rating span {
  display: block;
  color: #ffffff;
  opacity: 0.9;
  margin-top: 2px;
  font-size: 13.5px;
  font-weight: 600;
}

.single-listing-box .listing-content .footer-content {
  border-top: 1px solid #5696b8;
  padding-top: 20px;
  margin-top: 20px;
}

.single-listing-box .listing-content .footer-content .listing-option-list a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 31px;
  text-align: center;
  margin-right: 3px;
  background-color: #088dd3;
  color: #ffffff;
  border-radius: 2px;
}

.single-listing-box .listing-content .footer-content .listing-option-list a:last-child {
  margin-right: 0;
}

.single-listing-box .listing-content .footer-content .listing-option-list a:hover {
  background-color: #ffffff;
  color: #088dd3;
}

.single-listing-box .listing-content .footer-content .price-level span {
  display: inline-block;
  color: #ffffff;
  cursor: pointer;
}

.single-listing-box .listing-content .footer-content .listing-category a {
  display: inline-block;
  color: #ffffff;
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  font-weight: 600;
}

.single-listing-box .listing-content .footer-content .listing-category a i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}

.single-listing-box:hover .listing-image img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.listing-slides.owl-theme .owl-dots {
  margin-top: 10px !important;
}

.listing-slides.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 4px;
  background: transparent;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  border: 1px solid #777777;
}

.listing-slides.owl-theme .owl-dots .owl-dot span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: #777777;
  margin: 3px;
}

.listing-slides.owl-theme .owl-dots .owl-dot:hover span, .listing-slides.owl-theme .owl-dots .owl-dot.active span {
  border-color: #088dd3;
}

.listing-slides.owl-theme .owl-dots .owl-dot:hover span::before, .listing-slides.owl-theme .owl-dots .owl-dot.active span::before {
  background-color: #088dd3;
}

.single-listing-item {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(146, 184, 255, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(146, 184, 255, 0.2);
  border-radius: 5px 5px 0 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 30px;
  position: relative;
}

.single-listing-item .listing-image {
  border-radius: 5px 5px 0 0;
  position: relative;
}

.single-listing-item .listing-image a img {
  border-radius: 5px 5px 0 0;
}

.single-listing-item .listing-image .listing-tag {
  position: absolute;
  right: 20px;
  bottom: 0;
  background-color: #ffffff;
  border-radius: 5px 5px 0 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
}

.single-listing-item .listing-image .listing-tag a {
  display: inline-block;
  color: #088dd3;
}

.single-listing-item .listing-image .listing-rating {
  position: absolute;
  left: 20px;
  color: #ffffff;
  bottom: 5px;
}

.single-listing-item .listing-image .listing-rating .review-stars-rated {
  color: #f2b827;
  display: inline-block;
}

.single-listing-item .listing-image .listing-rating .review-stars-rated i {
  color: #f2b827;
  margin-right: -2px;
}

.single-listing-item .listing-image .listing-rating .rating-total {
  display: inline-block;
  position: relative;
  color: #ffffff;
  top: -1px;
  margin-left: 2px;
  font-size: 13px;
  font-weight: 600;
}

.single-listing-item .listing-content {
  padding: 20px;
}

.single-listing-item .listing-content .listing-author {
  margin-bottom: 13px;
}

.single-listing-item .listing-content .listing-author img {
  width: 36px;
  height: 36px;
}

.single-listing-item .listing-content .listing-author span {
  margin-left: 8px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
}

.single-listing-item .listing-content h3 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
}

.single-listing-item .listing-content .location {
  display: block;
  color: #777777;
  margin-top: 12px;
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  font-weight: 600;
}

.single-listing-item .listing-content .location i {
  position: absolute;
  left: 0;
  color: #088dd3;
  top: 3.7px;
}

.single-listing-item .listing-content .phone-number {
  display: block;
  color: #777777;
  margin-top: 12px;
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  font-weight: 600;
}

.single-listing-item .listing-content .phone-number i {
  position: absolute;
  left: 0;
  color: #088dd3;
  top: 3.7px;
}

.single-listing-item .listing-content .phone-number a {
  display: inline-block;
  color: #777777;
}

.single-listing-item .listing-content .phone-number a:hover {
  color: #088dd3;
}

.single-listing-item .listing-content .email {
  display: block;
  color: #777777;
  margin-top: 12px;
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  font-weight: 600;
}

.single-listing-item .listing-content .email i {
  position: absolute;
  left: 0;
  color: #088dd3;
  top: 3.7px;
}

.single-listing-item .listing-content .email a {
  display: inline-block;
  color: #777777;
}

.single-listing-item .listing-content .email a:hover {
  color: #088dd3;
}

.single-listing-item .listing-box-footer {
  border-top: 1px solid #e2f4ff;
  padding: 20px;
}

.single-listing-item .listing-box-footer .listing-option-list a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 33px;
  text-align: center;
  margin-right: 3px;
  -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-color: #ffffff;
  color: #000000;
  border-radius: 2px;
}

.single-listing-item .listing-box-footer .listing-option-list a:last-child {
  margin-right: 0;
}

.single-listing-item .listing-box-footer .listing-option-list a:hover {
  background-color: #088dd3;
  color: #ffffff;
}

.single-listing-item .listing-box-footer .price span {
  display: inline-block;
  cursor: pointer;
  color: #088dd3;
  font-weight: 600;
  font-size: 15px;
}

.single-listing-item .listing-badge {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: #5ECFB1;
  color: #ffffff;
  text-align: center;
  z-index: 2;
  padding: 3px 12px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13.5px;
}

.single-listing-item .listing-badge.closed {
  background-color: red;
  color: #ffffff;
}

.single-listing-item .listing-discount {
  position: absolute;
  top: -6.1px;
  left: 20px;
  display: inline-block;
}

.single-listing-item .listing-discount span {
  position: relative;
  display: block;
  text-align: center;
  line-height: 1;
  padding: 12px 8px 10px;
  border-top-right-radius: 8px;
  width: 90px;
  background-color: #088dd3;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

.single-listing-item .listing-discount span::before {
  height: 6px;
  width: 6px;
  left: -6px;
  position: absolute;
  content: "";
  top: 0;
  background-color: #088dd3;
}

.single-listing-item .listing-discount span::after {
  position: absolute;
  content: "";
  height: 6px;
  width: 8px;
  left: -8px;
  top: 0;
  border-radius: 8px 8px 0 0;
  background-color: #088dd3;
}

.single-listing-item:hover, .single-listing-item:focus {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.single-listing-item:hover .listing-image .listing-tag, .single-listing-item:focus .listing-image .listing-tag {
  background-color: #088dd3;
}

.single-listing-item:hover .listing-image .listing-tag a, .single-listing-item:focus .listing-image .listing-tag a {
  color: #ffffff;
}

.listing-items {
  margin-left: -15px;
  margin-right: -15px;
}

.listing-items .single-listing-item {
  margin-left: 15px;
  margin-right: 15px;
}

.listing-topbar {
  margin-bottom: 40px;
}

.listing-topbar .topbar-title h2 {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 600;
}

.listing-topbar .topbar-ordering-and-categories {
  text-align: right;
}

.listing-topbar .topbar-ordering-and-categories .topbar-ordering .nice-select {
  background-color: transparent;
  border: none;
  height: 45px;
  -webkit-box-shadow: 0 0.2rem 1rem 0rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.2rem 1rem 0rem rgba(0, 0, 0, 0.1);
  line-height: 45px;
  color: #777777;
  font-size: 15px;
  border-radius: 0;
  text-transform: capitalize;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14.5px;
  font-weight: 500;
}

.listing-topbar .topbar-ordering-and-categories .topbar-ordering .nice-select::after {
  right: 15px;
  width: 7px;
  height: 7px;
  border-color: #777777;
  border-width: 1px;
}

.listing-topbar .topbar-ordering-and-categories .topbar-ordering .nice-select .list {
  background-color: #ffffff;
  border-radius: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  width: 100%;
  -ms-overflow-style: none;
  max-width: 100%;
  height: 240px;
  overflow-y: scroll;
  margin-top: 0;
  margin-bottom: 0;
}

.listing-topbar .topbar-ordering-and-categories .topbar-ordering .nice-select .list .option {
  line-height: 40px;
  min-height: 40px;
  color: #7d7d7d;
  padding-left: 15px;
  padding-right: 15px;
}

.listing-topbar .topbar-ordering-and-categories .topbar-ordering .nice-select .list .option.selected {
  background-color: #088dd3 !important;
  color: #ffffff;
  font-weight: normal;
}

.listing-topbar .topbar-ordering-and-categories .topbar-ordering .nice-select .list::-webkit-scrollbar {
  display: none;
}

.listing-topbar .topbar-ordering-and-categories .topbar-categories .nice-select {
  background-color: transparent;
  border: none;
  height: 45px;
  -webkit-box-shadow: 0 0.2rem 1rem 0rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.2rem 1rem 0rem rgba(0, 0, 0, 0.1);
  line-height: 45px;
  color: #777777;
  font-size: 15px;
  border-radius: 0;
  text-transform: capitalize;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14.5px;
  font-weight: 500;
}

.listing-topbar .topbar-ordering-and-categories .topbar-categories .nice-select::after {
  right: 15px;
  width: 7px;
  height: 7px;
  border-color: #777777;
  border-width: 1px;
}

.listing-topbar .topbar-ordering-and-categories .topbar-categories .nice-select .list {
  background-color: #ffffff;
  border-radius: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  width: 100%;
  -ms-overflow-style: none;
  max-width: 100%;
  height: 240px;
  overflow-y: scroll;
  margin-top: 0;
  margin-bottom: 0;
}

.listing-topbar .topbar-ordering-and-categories .topbar-categories .nice-select .list .option {
  line-height: 40px;
  min-height: 40px;
  color: #7d7d7d;
  padding-left: 15px;
  padding-right: 15px;
}

.listing-topbar .topbar-ordering-and-categories .topbar-categories .nice-select .list .option.selected {
  background-color: #088dd3 !important;
  color: #ffffff;
  font-weight: normal;
}

.listing-topbar .topbar-ordering-and-categories .topbar-categories .nice-select .list::-webkit-scrollbar {
  display: none;
}

.listing-list-tab .tabs {
  text-align: center;
  list-style-type: none;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 16px 0px rgba(146, 184, 255, 0.15);
          box-shadow: 0 2px 16px 0px rgba(146, 184, 255, 0.15);
  border-radius: 5px;
  max-width: 410px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.listing-list-tab .tabs li {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
}

.listing-list-tab .tabs li:last-child {
  margin-right: 0;
}

.listing-list-tab .tabs li:first-child {
  margin-left: 0;
}

.listing-list-tab .tabs li a {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  padding-top: 15px;
  padding-bottom: 15px;
}

.listing-list-tab .tabs li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #eeeeee;
}

.listing-list-tab .tabs li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #088dd3;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.listing-list-tab .tabs li a:hover, .listing-list-tab .tabs li a:focus {
  color: #088dd3;
}

.listing-list-tab .tabs li a:hover::after, .listing-list-tab .tabs li a:focus::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.listing-list-tab .tabs li.current a {
  color: #088dd3;
}

.listing-list-tab .tabs li.current a::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.tab .tabs-item {
  display: none;
}

.tab .tabs-item:first-child {
  display: block;
}

.listing-filter-options {
  margin-bottom: 25px;
}

.listing-filter-options .listing-ordering-list .nice-select {
  background-color: transparent;
  border: none;
  height: 35px;
  line-height: 35px;
  color: #777777;
  font-size: 15px;
  padding-left: 0;
  padding-right: 0;
}

.listing-filter-options .listing-ordering-list .nice-select::after {
  right: 2px;
  width: 7px;
  height: 7px;
  border-color: #727695;
  border-width: 1px;
}

.listing-filter-options .listing-ordering-list .nice-select .current {
  color: #777777;
  font-family: "Cabin", sans-serif;
}

.listing-filter-options .listing-ordering-list .nice-select .list {
  background-color: #ffffff;
  border-radius: 0;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}

.listing-filter-options .listing-ordering-list .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 35px;
  min-height: 35px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14.5px;
}

.listing-filter-options .listing-ordering-list .nice-select .list .option:hover, .listing-filter-options .listing-ordering-list .nice-select .list .option.focus, .listing-filter-options .listing-ordering-list .nice-select .list .option.selected.focus {
  background-color: transparent;
  color: #088dd3;
}

.listing-filter-options .listing-ordering-list .nice-select .list .option.selected {
  font-weight: 700;
}

.listing-filter-options p {
  line-height: initial;
  margin-bottom: 0;
  font-family: "Cabin", sans-serif;
}

/*================================================
Listing Details Area CSS
=================================================*/
.listing-details-header {
  margin-bottom: 30px;
}

.listing-details-header .listing-title h2 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
}

.listing-details-header .listing-meta {
  margin-top: 25px;
}

.listing-details-header .listing-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.listing-details-header .listing-meta ul li {
  margin-right: 20px;
  position: relative;
  display: inline-block;
  border-right: 1px solid #eeeeee;
  font-weight: 500;
  font-size: 16px;
  padding-right: 20px;
  padding-left: 37px;
}

.listing-details-header .listing-meta ul li i {
  font-size: 25px;
  color: #cfcfcf;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.listing-details-header .listing-meta ul li span {
  display: block;
  color: #088dd3;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-size: 13.5px;
  font-weight: 600;
}

.listing-details-header .listing-meta ul li a {
  display: inline-block;
  color: #000000;
  font-weight: 700;
}

.listing-details-header .listing-meta ul li a:hover, .listing-details-header .listing-meta ul li a:focus {
  color: #088dd3;
}

.listing-details-header .listing-meta ul li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.listing-details-header .listing-price {
  text-align: right;
}

.listing-details-header .listing-price .price {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  top: 6px;
  font-size: 30px;
  font-weight: 700;
}

.listing-details-header .listing-price .default-btn {
  border-radius: 5px;
}

.listing-details-header .listing-price .listing-review {
  display: block;
  margin-bottom: 10px;
}

.listing-details-header .listing-price .listing-review .review-stars {
  display: inline-block;
}

.listing-details-header .listing-price .listing-review .review-stars i {
  color: #f2b827;
  font-size: 17px;
  display: inline-block;
  margin-right: -3px;
}

.listing-details-header .listing-price .listing-review .reviews-total {
  position: relative;
  color: #777777;
  position: relative;
  top: -2px;
  font-weight: 500;
  margin-left: 3px;
}

.listing-details-image img {
  width: 100%;
}

.listing-details-image-slides.owl-theme .owl-nav {
  margin-top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.listing-details-image-slides.owl-theme .owl-nav [class*=owl-] {
  color: #87a1c1;
  font-size: 18px;
  margin: 0;
  padding: 0;
  background: #ffffff;
  width: 45px;
  height: 45px;
  line-height: 42px;
  position: absolute;
  left: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 50%;
  padding-right: 2px !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  border-style: solid;
  border-color: #ffffff;
  border-width: 1.5px;
}

.listing-details-image-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 20px;
  padding-right: 0 !important;
  padding-left: 2px !important;
}

.listing-details-image-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: #088dd3;
  color: #ffffff;
  border-color: #088dd3;
}

.listing-details-image-slides.owl-theme:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.listing-details-desc {
  margin-top: 35px;
}

.listing-details-desc h3 {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 700;
}

.listing-details-desc h3:not(first-child) {
  margin-top: 30px;
}

.listing-details-desc .amenities-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  padding-left: 0;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -12px;
}

.listing-details-desc .amenities-list ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 12px;
}

.listing-details-desc .amenities-list ul li span {
  display: block;
  color: #000000;
  position: relative;
  padding-left: 27px;
  line-height: 1.7;
  font-weight: 600;
  font-size: 14.5px;
}

.listing-details-desc .amenities-list ul li span i {
  position: absolute;
  left: 0;
  top: 0;
  color: #088dd3;
  font-size: 20px;
}

.listing-details-desc p strong {
  color: #000000;
}

.listing-details-desc .description-features-list {
  padding-left: 15px;
  margin-bottom: 15px;
  list-style-type: none;
}

.listing-details-desc .description-features-list li {
  color: #777777;
  margin-bottom: 10px;
  position: relative;
  padding-left: 17px;
  line-height: 1.8;
}

.listing-details-desc .description-features-list li::before {
  position: absolute;
  left: 0;
  content: '';
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #088dd3;
}

.listing-details-desc .description-features-list li strong {
  color: #000000;
}

.listing-details-desc .description-features-list li:last-child {
  margin-bottom: 0;
}

.listing-details-desc .listing-author {
  margin-top: 20px;
  border-radius: 5px;
  background: #f8f8f8;
}

.listing-details-desc .listing-author .author-profile-header {
  height: 115px;
  border-radius: 5px 5px 0 0;
  background-color: #088dd3;
  background-image: url(../img/bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.listing-details-desc .listing-author .author-profile {
  padding: 0 25px 25px;
}

.listing-details-desc .listing-author .author-profile .author-profile-title {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  margin-top: -45px;
}

.listing-details-desc .listing-author .author-profile .author-profile-title img {
  display: inline-block;
  border: 3px solid #ffffff;
  width: 100px;
  height: 100px;
}

.listing-details-desc .listing-author .author-profile .author-profile-title .author-profile-title-details {
  margin-top: 15px;
}

.listing-details-desc .listing-author .author-profile .author-profile-title .author-profile-title-details .author-profile-details h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
}

.listing-details-desc .listing-author .author-profile .author-profile-title .author-profile-title-details .author-profile-details span {
  color: #777777;
}

.listing-details-desc .listing-author .author-profile .author-profile-title .author-profile-raque-profile a {
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
}

.listing-details-desc .listing-author .author-profile p {
  margin-bottom: 10px;
}

.listing-details-desc .listing-author .author-profile p:last-child {
  margin-bottom: 0;
}

.listing-details-desc .map-area iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.related-listing {
  margin-top: 40px;
}

.related-listing h3 {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 700;
}

.listing-sidebar-widget {
  padding-left: 15px;
}

.listing-sidebar-widget h3 {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
  font-size: 22px;
  font-weight: 700;
}

.listing-sidebar-widget h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
  background-color: #088dd3;
}

.listing-sidebar-widget .listing-opening-hours {
  margin-bottom: 35px;
}

.listing-sidebar-widget .listing-opening-hours ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.listing-sidebar-widget .listing-opening-hours ul li {
  border-bottom: 1px dashed #eeeeee;
  color: #777777;
  overflow: hidden;
  text-align: right;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14.5px;
  font-weight: 600;
}

.listing-sidebar-widget .listing-opening-hours ul li span {
  display: block;
  width: 170px;
  text-align: left;
  float: left;
}

.listing-sidebar-widget .listing-opening-hours ul li span i {
  color: #088dd3;
  position: relative;
  top: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
  margin-right: 2px;
}

.listing-sidebar-widget .listing-opening-hours ul li:hover span i {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.listing-sidebar-widget .listing-opening-hours ul li:first-child {
  padding-top: 0;
}

.listing-sidebar-widget .listing-opening-hours ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.listing-sidebar-widget .listing-contact-info {
  margin-bottom: 35px;
}

.listing-sidebar-widget .listing-contact-info ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.listing-sidebar-widget .listing-contact-info ul li {
  border-bottom: 1px dashed #eeeeee;
  color: #777777;
  font-size: 14.5px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.listing-sidebar-widget .listing-contact-info ul li:first-child {
  border-top: 1px dashed #eeeeee;
}

.listing-sidebar-widget .listing-contact-info ul li span {
  display: inline-block;
  color: #000000;
  font-weight: 600;
}

.listing-sidebar-widget .listing-contact-info ul li a {
  display: inline-block;
  color: #777777;
}

.listing-sidebar-widget .listing-contact-info ul li a:hover {
  color: #088dd3;
}

.listing-sidebar-widget .listing-book-table {
  margin-bottom: 35px;
}

.listing-sidebar-widget .listing-book-table form .form-group {
  margin-bottom: 20px;
}

.listing-sidebar-widget .listing-book-table form .form-control {
  font-size: 14px;
  height: 45px;
}

.listing-sidebar-widget .listing-book-table form .default-btn {
  padding: 10.5px 28px 11px;
  border-radius: 0;
  font-size: 14px;
}

.listing-sidebar-widget .listing-book-table form label {
  display: block;
  margin-bottom: 7px;
  font-size: 14.5px;
  font-weight: 600;
}

.listing-sidebar-widget .listing-book-table form .input-counter {
  max-width: 120px;
  min-width: 120px;
  text-align: center;
  position: relative;
}

.listing-sidebar-widget .listing-book-table form .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 40px;
  height: 100%;
  line-height: 49px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 22px;
}

.listing-sidebar-widget .listing-book-table form .input-counter span.minus-btn {
  left: 0;
}

.listing-sidebar-widget .listing-book-table form .input-counter span.plus-btn {
  right: 0;
}

.listing-sidebar-widget .listing-book-table form .input-counter span:hover {
  color: #088dd3;
}

.listing-sidebar-widget .listing-book-table form .input-counter input {
  height: 45px;
  color: #000000;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}

.listing-sidebar-widget .listing-book-table form .input-counter input::-webkit-input-placeholder {
  color: #000000;
}

.listing-sidebar-widget .listing-book-table form .input-counter input:-ms-input-placeholder {
  color: #000000;
}

.listing-sidebar-widget .listing-book-table form .input-counter input::-ms-input-placeholder {
  color: #000000;
}

.listing-sidebar-widget .listing-book-table form .input-counter input::placeholder {
  color: #000000;
}

.listing-sidebar-widget .listing-instagram {
  margin-bottom: 35px;
}

.listing-sidebar-widget .listing-instagram ul {
  padding-left: 0;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -10px;
  margin-left: -5px;
  margin-right: -5px;
}

.listing-sidebar-widget .listing-instagram ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding-bottom: 10px;
  padding-right: 5px;
  padding-left: 5px;
}

.listing-sidebar-widget .listing-instagram ul li a {
  position: relative;
}

.listing-sidebar-widget .listing-instagram ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #088dd3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.listing-sidebar-widget .listing-instagram ul li a:hover::before {
  opacity: .70;
  visibility: visible;
}

.listing-sidebar-widget .listing-contact {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  height: 400px;
  text-align: center;
  background-image: url(../img/main-banner4.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.listing-sidebar-widget .listing-contact::before {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
  background-color: #088dd3;
  opacity: .50;
  z-index: -1;
}

.listing-sidebar-widget .listing-contact .text {
  position: absolute;
  left: 0;
  bottom: 25px;
  right: 0;
}

.listing-sidebar-widget .listing-contact .text .icon {
  width: 65px;
  height: 65px;
  border: 2px dashed #088dd3;
  position: relative;
  border-radius: 50%;
  font-size: 35px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
  color: #088dd3;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 17px;
}

.listing-sidebar-widget .listing-contact .text .icon i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.listing-sidebar-widget .listing-contact .text span {
  display: block;
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.listing-sidebar-widget .listing-contact .text a {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 25px;
}

.listing-review-comments {
  margin-top: 40px;
}

.listing-review-comments h3 {
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.listing-review-comments .user-review {
  border-bottom: 1px solid #f3f3f3;
  padding: 20px 0 20px 105px;
  position: relative;
}

.listing-review-comments .user-review img {
  position: absolute;
  left: 0;
  top: 20px;
  width: 90px;
  height: 90px;
  border-radius: 5px;
}

.listing-review-comments .user-review .sub-comment {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

.listing-review-comments .user-review .review-rating {
  display: block;
  margin-bottom: 10px;
}

.listing-review-comments .user-review .review-rating .review-stars {
  display: inline-block;
}

.listing-review-comments .user-review .review-rating .review-stars i {
  color: #f2b827;
  font-size: 18px;
  display: inline-block;
  margin-right: -3px;
}

.listing-review-comments .user-review .review-rating span {
  color: #000000;
  position: relative;
  top: -2px;
  font-weight: 600;
  margin-left: 5px;
}

/*================================================
Destinations Area CSS
=================================================*/
.destinations-items {
  margin-left: -15px;
  margin-right: -15px;
}

.destinations-items .single-destinations-box {
  margin-left: 15px;
  margin-right: 15px;
}

.single-destinations-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 5px;
}

.single-destinations-box::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 5px;
  right: 0;
  top: 20%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 128, 194, 0)), to(rgba(2, 128, 194, 0.9)));
  background: linear-gradient(to bottom, rgba(2, 128, 194, 0) 0%, rgba(2, 128, 194, 0.9) 100%);
  z-index: 2;
}

.single-destinations-box img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
  width: 100%;
}

.single-destinations-box .link-btn {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.single-destinations-box .content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: auto;
  z-index: 2;
}

.single-destinations-box .content h3 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.single-destinations-box .content .rating {
  color: #ffc107;
  margin-top: 6px;
}

.single-destinations-box .content .rating i {
  margin-right: -1px;
  display: inline-block;
}

.single-destinations-box .listing-count {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 30px;
  color: #000000;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 600;
}

.single-destinations-box:hover .content {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.single-destinations-box:hover .listing-count {
  background-color: #088dd3;
  color: #ffffff;
}

.single-destinations-box:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.destinations-btn-box {
  text-align: center;
  margin-top: 20px;
}

/*================================================
Video Area CSS
=================================================*/
.video-area {
  position: relative;
  z-index: 1;
  background-image: url(../img/video-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.video-content {
  text-align: center;
}

.video-content .sub-title {
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 13px;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}

.video-content h2 {
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
}

.video-content .video-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  font-size: 50px;
  line-height: 85px;
  background-color: #088dd3;
  border-radius: 50%;
  color: #ffffff;
  margin-top: 35px;
  position: relative;
  z-index: 1;
}

.video-content .video-btn::after, .video-content .video-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  border: 1px solid #088dd3;
}

.video-content .video-btn::before {
  -webkit-animation: ripple 2s linear infinite;
          animation: ripple 2s linear infinite;
}

.video-content .video-btn::after {
  -webkit-animation: ripple 2s linear 1s infinite;
          animation: ripple 2s linear 1s infinite;
}

.video-content .video-btn:hover {
  color: #088dd3;
  background-color: #ffffff;
}

.video-content .video-btn:hover::before, .video-content .video-btn:hover::after {
  border-color: #ffffff;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
            transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
            transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

/*================================================
Listing Categories Area CSS
=================================================*/
.single-categories-listing-item {
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  padding: 40px 20px;
  margin-bottom: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #088dd3;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-categories-listing-item .icon {
  width: 100px;
  height: 100px;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
  font-size: 60px;
  color: #ffffff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border-width: 2px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.single-categories-listing-item .icon i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
}

.single-categories-listing-item h3 {
  color: #ffffff;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  font-size: 24px;
  font-weight: 700;
}

.single-categories-listing-item span {
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  text-transform: uppercase;
  display: block;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}

.single-categories-listing-item .link-btn {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}

.single-categories-listing-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  z-index: -1;
}

.single-categories-listing-item .learn-more-btn {
  display: inline-block;
  position: absolute;
  color: #ffffff;
  z-index: 1;
  padding-right: 19px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  font-size: 15px;
  font-weight: 700;
}

.single-categories-listing-item .learn-more-btn i {
  font-size: 22px;
  position: absolute;
  right: 0;
  top: 1px;
}

.single-categories-listing-item.bg1 {
  background-image: url(../img/categories/img1.jpg);
}

.single-categories-listing-item.bg2 {
  background-image: url(../img/categories/img2.jpg);
}

.single-categories-listing-item.bg3 {
  background-image: url(../img/categories/img3.jpg);
}

.single-categories-listing-item.bg4 {
  background-image: url(../img/categories/img4.jpg);
}

.single-categories-listing-item.bg5 {
  background-image: url(../img/categories/img5.jpg);
}

.single-categories-listing-item.bg6 {
  background-image: url(../img/categories/img6.jpg);
}

.single-categories-listing-item.bg7 {
  background-image: url(../img/categories/img7.jpg);
}

.single-categories-listing-item.bg8 {
  background-image: url(../img/categories/img8.jpg);
}

.single-categories-listing-item:hover, .single-categories-listing-item:focus {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.single-categories-listing-item:hover .icon, .single-categories-listing-item:focus .icon {
  border-color: #ffffff;
  -webkit-transform: translateY(-18px);
          transform: translateY(-18px);
}

.single-categories-listing-item:hover h3, .single-categories-listing-item:focus h3 {
  -webkit-transform: translateY(-18px);
          transform: translateY(-18px);
}

.single-categories-listing-item:hover span, .single-categories-listing-item:focus span {
  -webkit-transform: translateY(-18px);
          transform: translateY(-18px);
}

.single-categories-listing-item:hover .learn-more-btn, .single-categories-listing-item:focus .learn-more-btn {
  opacity: 1;
  visibility: visible;
  bottom: 18px;
}

.single-listing-category {
  text-align: center;
  margin-bottom: 30px;
}

.single-listing-category a {
  display: block;
  background-color: #ffffff;
  border-radius: 5px;
  position: relative;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(146, 184, 255, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(146, 184, 255, 0.2);
  padding: 25px;
  color: #000000;
  z-index: 1;
  font-size: 20px;
  font-weight: 600;
}

.single-listing-category a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.5px;
  background-color: #088dd3;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-listing-category a i {
  display: block;
  font-size: 55px;
  margin-bottom: 12px;
  color: #088dd3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-listing-category a:hover, .single-listing-category a:focus {
  border-radius: 0;
  color: #ffffff;
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

.single-listing-category a:hover i, .single-listing-category a:focus i {
  color: #ffffff;
}

.single-listing-category a:hover::before, .single-listing-category a:focus::before {
  height: 100%;
}

.owl-item:nth-child(2) .single-listing-category a i, .owl-item:nth-child(11) .single-listing-category a i, .col-lg-3:nth-child(2) .single-listing-category a i, .col-lg-3:nth-child(11) .single-listing-category a i {
  color: #777777;
}

.owl-item:nth-child(2) .single-listing-category a::before, .owl-item:nth-child(11) .single-listing-category a::before, .col-lg-3:nth-child(2) .single-listing-category a::before, .col-lg-3:nth-child(11) .single-listing-category a::before {
  background-color: #777777;
}

.owl-item:nth-child(2) .single-listing-category a:hover i, .owl-item:nth-child(2) .single-listing-category a:focus i, .owl-item:nth-child(11) .single-listing-category a:hover i, .owl-item:nth-child(11) .single-listing-category a:focus i, .col-lg-3:nth-child(2) .single-listing-category a:hover i, .col-lg-3:nth-child(2) .single-listing-category a:focus i, .col-lg-3:nth-child(11) .single-listing-category a:hover i, .col-lg-3:nth-child(11) .single-listing-category a:focus i {
  color: #ffffff;
}

.owl-item:nth-child(3) .single-listing-category a i, .owl-item:nth-child(12) .single-listing-category a i, .col-lg-3:nth-child(3) .single-listing-category a i, .col-lg-3:nth-child(12) .single-listing-category a i {
  color: #ff1949;
}

.owl-item:nth-child(3) .single-listing-category a::before, .owl-item:nth-child(12) .single-listing-category a::before, .col-lg-3:nth-child(3) .single-listing-category a::before, .col-lg-3:nth-child(12) .single-listing-category a::before {
  background-color: #ff1949;
}

.owl-item:nth-child(3) .single-listing-category a:hover i, .owl-item:nth-child(3) .single-listing-category a:focus i, .owl-item:nth-child(12) .single-listing-category a:hover i, .owl-item:nth-child(12) .single-listing-category a:focus i, .col-lg-3:nth-child(3) .single-listing-category a:hover i, .col-lg-3:nth-child(3) .single-listing-category a:focus i, .col-lg-3:nth-child(12) .single-listing-category a:hover i, .col-lg-3:nth-child(12) .single-listing-category a:focus i {
  color: #ffffff;
}

.owl-item:nth-child(4) .single-listing-category a i, .owl-item:nth-child(13) .single-listing-category a i, .col-lg-3:nth-child(4) .single-listing-category a i, .col-lg-3:nth-child(13) .single-listing-category a i {
  color: #2d3942;
}

.owl-item:nth-child(4) .single-listing-category a::before, .owl-item:nth-child(13) .single-listing-category a::before, .col-lg-3:nth-child(4) .single-listing-category a::before, .col-lg-3:nth-child(13) .single-listing-category a::before {
  background-color: #2d3942;
}

.owl-item:nth-child(4) .single-listing-category a:hover i, .owl-item:nth-child(4) .single-listing-category a:focus i, .owl-item:nth-child(13) .single-listing-category a:hover i, .owl-item:nth-child(13) .single-listing-category a:focus i, .col-lg-3:nth-child(4) .single-listing-category a:hover i, .col-lg-3:nth-child(4) .single-listing-category a:focus i, .col-lg-3:nth-child(13) .single-listing-category a:hover i, .col-lg-3:nth-child(13) .single-listing-category a:focus i {
  color: #ffffff;
}

.owl-item:nth-child(5) .single-listing-category a i, .owl-item:nth-child(14) .single-listing-category a i, .col-lg-3:nth-child(5) .single-listing-category a i, .col-lg-3:nth-child(14) .single-listing-category a i {
  color: #bfd131;
}

.owl-item:nth-child(5) .single-listing-category a::before, .owl-item:nth-child(14) .single-listing-category a::before, .col-lg-3:nth-child(5) .single-listing-category a::before, .col-lg-3:nth-child(14) .single-listing-category a::before {
  background-color: #bfd131;
}

.owl-item:nth-child(5) .single-listing-category a:hover i, .owl-item:nth-child(5) .single-listing-category a:focus i, .owl-item:nth-child(14) .single-listing-category a:hover i, .owl-item:nth-child(14) .single-listing-category a:focus i, .col-lg-3:nth-child(5) .single-listing-category a:hover i, .col-lg-3:nth-child(5) .single-listing-category a:focus i, .col-lg-3:nth-child(14) .single-listing-category a:hover i, .col-lg-3:nth-child(14) .single-listing-category a:focus i {
  color: #ffffff;
}

.owl-item:nth-child(6) .single-listing-category a i, .owl-item:nth-child(15) .single-listing-category a i, .col-lg-3:nth-child(6) .single-listing-category a i, .col-lg-3:nth-child(15) .single-listing-category a i {
  color: #f49b29;
}

.owl-item:nth-child(6) .single-listing-category a::before, .owl-item:nth-child(15) .single-listing-category a::before, .col-lg-3:nth-child(6) .single-listing-category a::before, .col-lg-3:nth-child(15) .single-listing-category a::before {
  background-color: #f49b29;
}

.owl-item:nth-child(6) .single-listing-category a:hover i, .owl-item:nth-child(6) .single-listing-category a:focus i, .owl-item:nth-child(15) .single-listing-category a:hover i, .owl-item:nth-child(15) .single-listing-category a:focus i, .col-lg-3:nth-child(6) .single-listing-category a:hover i, .col-lg-3:nth-child(6) .single-listing-category a:focus i, .col-lg-3:nth-child(15) .single-listing-category a:hover i, .col-lg-3:nth-child(15) .single-listing-category a:focus i {
  color: #ffffff;
}

.owl-item:nth-child(7) .single-listing-category a i, .owl-item:nth-child(1165) .single-listing-category a i, .col-lg-3:nth-child(7) .single-listing-category a i, .col-lg-3:nth-child(1165) .single-listing-category a i {
  color: #833a8d;
}

.owl-item:nth-child(7) .single-listing-category a::before, .owl-item:nth-child(1165) .single-listing-category a::before, .col-lg-3:nth-child(7) .single-listing-category a::before, .col-lg-3:nth-child(1165) .single-listing-category a::before {
  background-color: #833a8d;
}

.owl-item:nth-child(7) .single-listing-category a:hover i, .owl-item:nth-child(7) .single-listing-category a:focus i, .owl-item:nth-child(1165) .single-listing-category a:hover i, .owl-item:nth-child(1165) .single-listing-category a:focus i, .col-lg-3:nth-child(7) .single-listing-category a:hover i, .col-lg-3:nth-child(7) .single-listing-category a:focus i, .col-lg-3:nth-child(1165) .single-listing-category a:hover i, .col-lg-3:nth-child(1165) .single-listing-category a:focus i {
  color: #ffffff;
}

.owl-item:nth-child(8) .single-listing-category a i, .owl-item:nth-child(17) .single-listing-category a i, .col-lg-3:nth-child(8) .single-listing-category a i, .col-lg-3:nth-child(17) .single-listing-category a i {
  color: #c81a7f;
}

.owl-item:nth-child(8) .single-listing-category a::before, .owl-item:nth-child(17) .single-listing-category a::before, .col-lg-3:nth-child(8) .single-listing-category a::before, .col-lg-3:nth-child(17) .single-listing-category a::before {
  background-color: #c81a7f;
}

.owl-item:nth-child(8) .single-listing-category a:hover i, .owl-item:nth-child(8) .single-listing-category a:focus i, .owl-item:nth-child(17) .single-listing-category a:hover i, .owl-item:nth-child(17) .single-listing-category a:focus i, .col-lg-3:nth-child(8) .single-listing-category a:hover i, .col-lg-3:nth-child(8) .single-listing-category a:focus i, .col-lg-3:nth-child(17) .single-listing-category a:hover i, .col-lg-3:nth-child(17) .single-listing-category a:focus i {
  color: #ffffff;
}

.owl-item:nth-child(9) .single-listing-category a i, .owl-item:nth-child(18) .single-listing-category a i, .col-lg-3:nth-child(9) .single-listing-category a i, .col-lg-3:nth-child(18) .single-listing-category a i {
  color: #1cb5a3;
}

.owl-item:nth-child(9) .single-listing-category a::before, .owl-item:nth-child(18) .single-listing-category a::before, .col-lg-3:nth-child(9) .single-listing-category a::before, .col-lg-3:nth-child(18) .single-listing-category a::before {
  background-color: #1cb5a3;
}

.owl-item:nth-child(9) .single-listing-category a:hover i, .owl-item:nth-child(9) .single-listing-category a:focus i, .owl-item:nth-child(18) .single-listing-category a:hover i, .owl-item:nth-child(18) .single-listing-category a:focus i, .col-lg-3:nth-child(9) .single-listing-category a:hover i, .col-lg-3:nth-child(9) .single-listing-category a:focus i, .col-lg-3:nth-child(18) .single-listing-category a:hover i, .col-lg-3:nth-child(18) .single-listing-category a:focus i {
  color: #ffffff;
}

/*================================================
Process Area CSS
=================================================*/
.process-area {
  position: relative;
  z-index: 1;
  background-color: #f4f5fe;
  background-image: url(../img/white-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.process-area .row {
  position: relative;
}

.process-area .row .col-lg-12 {
  position: unset;
}

.process-area .lines .line {
  background: rgba(2, 128, 194, 0.05);
}

.process-area .lines .line::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 128, 194, 0)), color-stop(75%, #088dd3), to(#088dd3));
  background: linear-gradient(to bottom, rgba(2, 128, 194, 0) 0%, #088dd3 75%, #088dd3 100%);
}

.single-process-box {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-left: 15px;
  padding-right: 15px;
}

.single-process-box .icon {
  border: 4px solid #ffffff;
  width: 85px;
  height: 85px;
  text-align: center;
  color: #ffffff;
  line-height: 79px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  font-size: 35px;
  background-color: #088dd3;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.single-process-box .icon i {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-process-box .content {
  position: relative;
  z-index: 1;
}

.single-process-box .content h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.single-process-box .content .number {
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 25px;
  z-index: -1;
  font-family: "Cabin", sans-serif;
  font-size: 100px;
  font-weight: 500;
  font-style: italic;
}

.process-arrow-icon {
  position: absolute;
  left: 155px;
  z-index: -1;
  top: -20px;
}

/*================================================
Pagination CSS
=================================================*/
.pagination-area {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.pagination-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #eeeeee;
  z-index: -1;
}

.pagination-area .page-numbers {
  color: #000000;
  display: inline-block;
  line-height: 1;
  background-color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  margin-left: -1px;
  margin-right: -1px;
  margin-top: -10px;
  margin-bottom: -10px;
  padding-left: 8px;
  padding-right: 8px;
}

.pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus, .pagination-area .page-numbers.current {
  color: #088dd3;
}

.pagination-area .page-numbers.prev {
  padding-right: 0;
}

.pagination-area .page-numbers.next {
  padding-left: 0;
}

.pagination-area .page-numbers.prev, .pagination-area .page-numbers.next {
  font-size: 28px;
  position: relative;
  top: 5px;
  margin-left: -3px;
  margin-right: -3px;
}

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

.single-feedback-item {
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.single-feedback-item p {
  color: #000000;
  margin-bottom: 0;
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
}

.single-feedback-item .info {
  text-align: right;
  margin-top: 50px;
  position: relative;
  z-index: 1;
  padding-right: 118px;
  padding-bottom: 22px;
}

.single-feedback-item .info img {
  width: 100px !important;
  height: 100px;
  display: inline-block !important;
  border: 3px solid #ffffff;
  position: absolute;
  right: 0;
  bottom: 0;
}

.single-feedback-item .info h3 {
  margin-bottom: 4px;
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}

.single-feedback-item .info span {
  color: #088dd3;
  display: block;
  font-weight: 600;
  font-size: 14px;
}

.single-feedback-item .info::before {
  content: '';
  position: absolute;
  right: 320px;
  bottom: 45px;
  width: 110px;
  height: 75px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/arrow2.png);
}

.feedback-slides.owl-theme {
  margin-bottom: -40px;
}

.feedback-slides.owl-theme .single-feedback-item {
  margin-bottom: 40px;
}

.feedback-slides.owl-theme .owl-nav {
  margin-top: 0;
}

.feedback-slides.owl-theme .owl-nav [class*=owl-] {
  color: #87a1c1;
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: transparent;
  width: 50px;
  height: 50px;
  line-height: 49px;
  position: absolute;
  left: 70px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  border-style: solid;
  border-color: #e3e4ef;
  border-width: 2px;
}

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

.feedback-slides.owl-theme .owl-nav [class*=owl-]:hover, .feedback-slides.owl-theme .owl-nav [class*=owl-]:focus {
  background-color: #088dd3;
  color: #ffffff;
  border-color: #088dd3;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(2, 128, 194, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(2, 128, 194, 0.2);
}

.feedback-slides.owl-theme .owl-nav [class*=owl-].disabled {
  color: #e3e4ef;
}

.feedback-slides.owl-theme .owl-nav [class*=owl-].disabled:hover, .feedback-slides.owl-theme .owl-nav [class*=owl-].disabled:focus {
  background-color: transparent;
  color: #e3e4ef;
  border-color: #e3e4ef;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

/*================================================
Products Details Area CSS
=================================================*/
.products-details-image img {
  width: 100%;
}

.products-details-image .slick-slider {
  position: relative;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.products-details-image .slick-dots {
  padding: 0;
  text-align: center;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-top: 0;
  margin-bottom: 0;
}

.products-details-image .slick-dots li {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
}

.products-details-image .slick-dots li button {
  padding: 0;
  outline: 0;
  display: block;
  border: none;
  margin: 0;
  cursor: pointer;
}

.products-details-image .slick-dots li img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.products-details-image .slick-dots li:hover img, .products-details-image .slick-dots li.slick-active img {
  opacity: .4;
}

.products-details-image .slick-thumbs {
  display: none;
}

.products-details-image .row {
  margin-left: -8px;
  margin-right: -8px;
  margin-top: -15px;
}

.products-details-image .row .col-lg-6 {
  padding-left: 8px;
  padding-right: 8px;
}

.products-details-image .row .col-lg-6 .single-products-details-image {
  margin-top: 15px;
}

.products-details-image .single-products-details-image {
  margin-top: 30px;
}

.products-details-image .single-products-details-image:first-child {
  margin-top: 0;
}

.products-details-desc h3 {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 700;
}

.products-details-desc .price {
  margin-bottom: 17px;
  color: #088dd3;
  font-size: 15px;
  font-weight: 600;
}

.products-details-desc .price .old-price {
  text-decoration: line-through;
  color: #828893;
  font-weight: normal;
}

.products-details-desc .products-review {
  margin-bottom: 12px;
}

.products-details-desc .products-review .rating {
  display: inline-block;
  padding-right: 5px;
  font-size: 16.5px;
}

.products-details-desc .products-review .rating i {
  color: #ffba0a;
  display: inline-block;
  margin-right: -3px;
}

.products-details-desc .products-review .rating-count {
  display: inline-block;
  color: #000000;
  border-bottom: 1px solid #000000;
  line-height: initial;
  position: relative;
  top: -2px;
  font-weight: 600;
}

.products-details-desc .products-review .rating-count:hover {
  color: #088dd3;
  border-color: #088dd3;
}

.products-details-desc .products-info {
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 15px;
}

.products-details-desc .products-info li {
  color: #000000;
  margin-bottom: 8px;
  font-size: 15px;
}

.products-details-desc .products-info li:last-child {
  margin-bottom: 0;
}

.products-details-desc .products-info li span {
  color: #777777;
}

.products-details-desc .products-info li a {
  display: inline-block;
  font-weight: 600;
  color: #000000;
}

.products-details-desc .products-info li a:hover {
  color: #088dd3;
}

.products-details-desc .products-info-btn {
  margin-bottom: 25px;
}

.products-details-desc .products-info-btn a {
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-left: 22px;
  line-height: initial;
  font-size: 14px;
  font-weight: 600;
}

.products-details-desc .products-info-btn a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: #088dd3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.products-details-desc .products-info-btn a i {
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
}

.products-details-desc .products-info-btn a:hover {
  color: #088dd3;
}

.products-details-desc .products-info-btn a:hover::before {
  width: 100%;
}

.products-details-desc .products-info-btn a:not(:first-child) {
  margin-left: 15px;
}

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

.products-details-desc .products-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;
  font-size: 22px;
}

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

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

.products-details-desc .products-add-to-cart .input-counter span:hover {
  color: #088dd3;
}

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

.products-details-desc .products-add-to-cart .input-counter input::-webkit-input-placeholder {
  color: #000000;
}

.products-details-desc .products-add-to-cart .input-counter input:-ms-input-placeholder {
  color: #000000;
}

.products-details-desc .products-add-to-cart .input-counter input::-ms-input-placeholder {
  color: #000000;
}

.products-details-desc .products-add-to-cart .input-counter input::placeholder {
  color: #000000;
}

.products-details-desc .buy-checkbox-btn {
  margin-top: 20px;
}

.products-details-desc .buy-checkbox-btn input {
  display: none;
}

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

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

.products-details-desc .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;
}

.products-details-desc .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;
}

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

.products-details-desc .buy-checkbox-btn .cbx span:last-child {
  padding-left: 4px;
  color: #000000;
  position: relative;
  top: -1px;
}

.products-details-desc .buy-checkbox-btn .cbx:hover span:first-child {
  border-color: #088dd3;
}

.products-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child {
  background: #088dd3;
  border-color: #088dd3;
  -webkit-animation: wave 0.4s ease;
          animation: wave 0.4s ease;
}

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

.products-details-desc .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;
}

.products-details-desc .buy-checkbox-btn .item:not(:first-child) {
  margin-top: 20px;
}

.products-details-desc .buy-checkbox-btn .default-btn {
  display: block;
  text-align: center;
}

.products-details-desc .products-details-accordion {
  margin-top: 25px;
}

.products-details-desc .products-details-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.products-details-desc .products-details-accordion .accordion .accordion-item {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(146, 184, 255, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(146, 184, 255, 0.2);
  border-radius: 5px;
  display: block;
  margin-bottom: 15px;
  border: none;
}

.products-details-desc .products-details-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.products-details-desc .products-details-accordion .accordion .accordion-title {
  color: #000000;
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 15px;
  padding-left: 41px;
}

.products-details-desc .products-details-accordion .accordion .accordion-title i {
  position: absolute;
  left: 15px;
  top: 10px;
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.products-details-desc .products-details-accordion .accordion .accordion-title.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.products-details-desc .products-details-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: -5px;
  border-top: 1px solid #eeeeee;
  padding-top: 15px;
  padding-left: 20px;
  padding-right: 15px;
  padding-bottom: 15px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content.show {
  display: block;
}

.products-details-desc .products-details-accordion .accordion .accordion-content p {
  font-size: 14.5px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content ul, .products-details-desc .products-details-accordion .accordion .accordion-content ol {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.products-details-desc .products-details-accordion .accordion .accordion-content ul li, .products-details-desc .products-details-accordion .accordion .accordion-content ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 13px;
  color: #777777;
}

.products-details-desc .products-details-accordion .accordion .accordion-content ul li::before, .products-details-desc .products-details-accordion .accordion .accordion-content ol li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #088dd3;
  border-radius: 50%;
}

.products-details-desc .products-details-accordion .accordion .accordion-content ul li:last-child, .products-details-desc .products-details-accordion .accordion .accordion-content ol li:last-child {
  margin-bottom: 0;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .table {
  margin-bottom: 0;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .table.table-striped tbody tr td {
  border-top: none;
  vertical-align: middle;
  white-space: nowrap;
  padding: 10px 15px;
  color: #000000;
  font-size: 14.5px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .table.table-striped tbody tr td:first-child {
  font-weight: 500;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .table.table-bordered tbody tr td {
  vertical-align: middle;
  white-space: nowrap;
  padding: 10px 15px;
  color: #777777;
  line-height: 1.7;
  font-size: 14.5px;
  border-color: #eeeeee;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .table.table-bordered tbody tr td:first-child {
  color: #000000;
  font-weight: 500;
}

.products-details-desc .products-details-accordion .accordion .accordion-content h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form {
  margin-top: 10px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-title {
  position: relative;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-title .rating {
  display: inline-block;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-title .rating .bx.bxs-star {
  color: #ffba0a;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-title .rating i {
  color: #ebebeb;
  font-size: 16px;
  margin-right: -1px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-title p {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 5px;
  line-height: initial;
  position: relative;
  top: -2px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-title .default-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-comments {
  margin-top: 35px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-comments .review-item {
  margin-top: 30px;
  position: relative;
  border-top: 1px dashed #eeeeee;
  padding-top: 30px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-comments .review-item .rating .bx.bxs-star {
  color: #ffba0a;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-comments .review-item .rating i {
  font-size: 17px;
  color: #ebebeb;
  margin-right: -1px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-comments .review-item h3 {
  font-size: 20px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-comments .review-item span {
  margin-bottom: 10px;
  font-size: 15px;
  display: block;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-comments .review-item span strong {
  font-weight: 500;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-comments .review-item p {
  margin-bottom: 0;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-form {
  margin-top: 30px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-form h3 {
  margin-bottom: 20px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-form form .form-group {
  margin-bottom: 15px;
}

.products-details-desc .products-details-accordion .accordion .accordion-content .products-review-form .review-form form .default-btn {
  margin-top: 10px;
}

.related-products {
  margin-top: 70px;
}

/*================================================
Funfacts Area CSS
=================================================*/
.funfacts-area {
  position: relative;
  z-index: 1;
  background-image: url(../img/funfacts-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

.single-funfacts {
  margin-bottom: 30px;
  position: relative;
  padding-left: 70px;
}

.single-funfacts i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 50px;
  color: #ffffff;
}

.single-funfacts p {
  margin-bottom: 8px;
  line-height: initial;
  color: #ffffff;
  font-weight: 500;
}

.single-funfacts h3 {
  color: #ffffff;
  margin-bottom: -13px;
  font-size: 45px;
  font-weight: 700;
}

.single-funfacts h3 .odometer-formatting-mark {
  display: none;
}

/*================================================
App Download Area CSS
=================================================*/
.app-download-area {
  background-color: #f4f5fe;
  background-image: url(../img/white-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.app-download-image {
  text-align: center;
}

.app-download-content .sub-title {
  display: inline-block;
  background-color: #088dd3;
  color: #ffffff;
  padding: 5px 25px 6px;
  border-radius: 35px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
}

.app-download-content h2 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
}

.app-download-content .btn-box {
  margin-top: 25px;
}

.app-download-content .btn-box .play-store-btn {
  display: inline-block;
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  padding: 12px 25px 12px 74px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  color: #666786;
  font-size: 13px;
  font-weight: 400;
}

.app-download-content .btn-box .play-store-btn span {
  display: block;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
}

.app-download-content .btn-box .play-store-btn img {
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.app-download-content .btn-box .play-store-btn:hover, .app-download-content .btn-box .play-store-btn:focus {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.app-download-content .btn-box .apple-store-btn {
  margin-right: 8px;
  display: inline-block;
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  padding: 12px 25px 12px 74px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  color: #666786;
  font-size: 13px;
  font-weight: 400;
}

.app-download-content .btn-box .apple-store-btn span {
  display: block;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
}

.app-download-content .btn-box .apple-store-btn img {
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.app-download-content .btn-box .apple-store-btn:hover, .app-download-content .btn-box .apple-store-btn:focus {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/*================================================
Team Area CSS
=================================================*/
.single-team-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
}

.single-team-member .member-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
}

.single-team-member .member-image img {
  border-radius: 3px;
}

.single-team-member .member-image .social {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  bottom: 0;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team-member .member-image .social li {
  display: inline-block;
}

.single-team-member .member-image .social li a {
  margin: 0 2px;
  display: inline-block;
}

.single-team-member .member-image .social li a i {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  font-size: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team-member .member-image .social li a i.bxl-facebook {
  background: #3b5998;
}

.single-team-member .member-image .social li a i.bxl-linkedin {
  background: #0077b5;
}

.single-team-member .member-image .social li a i:hover {
  background-color: #088dd3;
  color: #ffffff;
}

.single-team-member .member-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.666667%;
          flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding-left: 10px;
  padding-right: 10px;
}

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

.single-team-member .member-content span {
  display: block;
  color: #088dd3;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

.single-team-member .member-content p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 0;
  margin-top: 12px;
}

.single-team-member:hover .member-image .social {
  bottom: 15px;
  opacity: 1;
  visibility: visible;
}

/*================================================
Listing Widget Sidebar CSS
=================================================*/
.listing-widget-area .listing-widget {
  margin-bottom: 35px;
}

.listing-widget-area .listing-widget .listing-widget-title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
  font-size: 20px;
  font-weight: 700;
}

.listing-widget-area .listing-widget .listing-widget-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
  background-color: #088dd3;
}

.listing-widget-area .listing-widget:last-child {
  margin-bottom: 0;
}

.listing-widget-area .filter-list-widget .selected-filters-wrap-list ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.listing-widget-area .filter-list-widget .selected-filters-wrap-list ul li {
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 600;
}

.listing-widget-area .filter-list-widget .selected-filters-wrap-list ul li a {
  position: relative;
  padding-left: 28px;
  display: inline-block;
}

.listing-widget-area .filter-list-widget .selected-filters-wrap-list ul li a i {
  display: inline-block;
  background-color: #088dd3;
  width: 18px;
  height: 18px;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  position: absolute;
  left: 0;
  top: 1px;
}

.listing-widget-area .filter-list-widget .selected-filters-wrap-list ul li:last-child {
  margin-bottom: 0;
}

.listing-widget-area .filter-list-widget .selected-filters-wrap-list .delete-selected-filters {
  display: inline-block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
}

.listing-widget-area .filter-list-widget .selected-filters-wrap-list .delete-selected-filters:hover {
  color: red;
}

.listing-widget-area .filter-list-widget .selected-filters-wrap-list .delete-selected-filters span {
  text-decoration: underline;
}

.listing-widget-area .facilities-list-widget .facilities-list-row {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.listing-widget-area .facilities-list-widget .facilities-list-row li {
  margin-bottom: 9px;
}

.listing-widget-area .facilities-list-widget .facilities-list-row li a {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 600;
}

.listing-widget-area .facilities-list-widget .facilities-list-row li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2.5px;
  width: 14px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #000000;
}

.listing-widget-area .facilities-list-widget .facilities-list-row li a:hover {
  color: #088dd3;
}

.listing-widget-area .facilities-list-widget .facilities-list-row li a:hover::before {
  border-color: #088dd3;
}

.listing-widget-area .facilities-list-widget .facilities-list-row li a.active::before {
  background-color: #088dd3;
  border-color: #088dd3;
}

.listing-widget-area .facilities-list-widget .facilities-list-row li.active a::before {
  background-color: #088dd3;
  border-color: #088dd3;
}

.listing-widget-area .facilities-list-widget .facilities-list-row li:last-child {
  margin-bottom: 0;
}

.listing-widget-area .price-list-widget .collection-filter-by-price {
  margin-top: 20px;
}

.listing-widget-area .price-list-widget .collection-filter-by-price .irs-handle {
  cursor: pointer;
}

.listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-from, .listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-to, .listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-single {
  background-color: #088dd3;
  padding: 1px 5px 1px 11.5px;
}

.listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-from::before, .listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-to::before, .listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-single::before {
  border-top-color: #088dd3;
}

.listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-from::after, .listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-to::after, .listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-single::after {
  content: '$';
  position: absolute;
  left: 5px;
  top: 0.5px;
}

.listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-bar {
  background-color: #088dd3;
}

.listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-handle > i:first-child {
  background-color: #088dd3;
}

.listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-min, .listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-max {
  padding: 1px 3px 1px 9.5px;
}

.listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-min::before, .listing-widget-area .price-list-widget .collection-filter-by-price .irs--flat .irs-max::before {
  content: '$';
  position: absolute;
  left: 3px;
  top: 0.5px;
}

.listing-widget-area .categories-list-widget .categories-list-row {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.listing-widget-area .categories-list-widget .categories-list-row li {
  margin-bottom: 9px;
}

.listing-widget-area .categories-list-widget .categories-list-row li a {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 600;
}

.listing-widget-area .categories-list-widget .categories-list-row li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2.5px;
  width: 14px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 14px;
  border-radius: 3px;
  border: 1px solid #000000;
}

.listing-widget-area .categories-list-widget .categories-list-row li a:hover {
  color: #088dd3;
}

.listing-widget-area .categories-list-widget .categories-list-row li a:hover::before {
  border-color: #088dd3;
}

.listing-widget-area .categories-list-widget .categories-list-row li a.active::before {
  background-color: #088dd3;
  border-color: #088dd3;
}

.listing-widget-area .categories-list-widget .categories-list-row li.active a::before {
  background-color: #088dd3;
  border-color: #088dd3;
}

.listing-widget-area .categories-list-widget .categories-list-row li:last-child {
  margin-bottom: 0;
}

.listing-widget-area .aside-trending-widget .aside-trending-products {
  overflow: hidden;
  position: relative;
  text-align: center;
}

.listing-widget-area .aside-trending-widget .aside-trending-products .category {
  position: absolute;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  right: 0;
  background-color: #ffffff;
  padding: 20px;
  bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.listing-widget-area .aside-trending-widget .aside-trending-products .category h3 {
  text-transform: uppercase;
  margin-bottom: 7px;
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
}

.listing-widget-area .aside-trending-widget .aside-trending-products .category span {
  color: #777777;
  display: block;
}

.listing-widget-area .aside-trending-widget .aside-trending-products img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}

.listing-widget-area .aside-trending-widget .aside-trending-products .link-btn {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.listing-widget-area .aside-trending-widget .aside-trending-products:hover img, .listing-widget-area .aside-trending-widget .aside-trending-products:focus img {
  -webkit-transform: scale(1.3) rotate(4deg);
          transform: scale(1.3) rotate(4deg);
}

/*================================================
Modal CSS
=================================================*/
.shoppingCartModal.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 320px;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
          transform: translate3d(0%, 0, 0);
}

.shoppingCartModal.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.shoppingCartModal.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;
}

.shoppingCartModal.modal.right.fade.show .modal-dialog {
  right: 0;
}

.shoppingCartModal .modal-content {
  border-radius: 0;
  border: none;
}

.shoppingCartModal .modal-content .modal-body {
  padding: 25px 15px;
}

.shoppingCartModal .modal-content .modal-body h3 {
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart {
  position: relative;
  border-bottom: 1px dashed #eeeeee;
  margin-bottom: 15px;
  padding-left: 70px;
  padding-bottom: 15px;
}

.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
}

.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-image a {
  display: block;
}

.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content {
  position: relative;
}

.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content h3 {
  font-size: 16px;
  text-transform: initial;
  margin-bottom: 5px;
}

.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content h3 a {
  display: inline-block;
}

.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content span {
  font-size: 13.5px;
  display: block;
  margin-bottom: 5px;
  color: #777777;
}

.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content .products-price {
  color: #088dd3;
  font-weight: 600;
  font-size: 14px;
}

.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content .remove-btn {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  color: #777777;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content .remove-btn:hover {
  color: red;
}

.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content:hover .remove-btn {
  opacity: 1;
  visibility: visible;
}

.shoppingCartModal .modal-content .modal-body .products-cart-subtotal {
  overflow: hidden;
  margin-bottom: 15px;
  border-bottom: 1px dashed #eeeeee;
  padding-bottom: 15px;
}

.shoppingCartModal .modal-content .modal-body .products-cart-subtotal span {
  text-transform: uppercase;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
}

.shoppingCartModal .modal-content .modal-body .products-cart-subtotal span.subtotal {
  float: right;
}

.shoppingCartModal .close {
  color: #000000;
  font-size: 30px;
  outline: 0 !important;
  line-height: initial;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  right: 15px;
  top: 17px;
  z-index: 1;
}

.shoppingCartModal .close:not(:disabled):not(.disabled):hover, .shoppingCartModal .close:not(:disabled):not(.disabled):focus {
  color: red;
  text-decoration: none;
  opacity: 1;
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog-post {
  position: relative;
  margin-bottom: 30px;
}

.single-blog-post .post-image {
  overflow: hidden;
  position: relative;
  border-radius: 5px 5px 0 0;
}

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

.single-blog-post .post-image a img {
  border-radius: 5px 5px 0 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog-post .post-image .date {
  position: absolute;
  right: -100%;
  top: 20px;
  background-color: #ffffff;
  color: #000000;
  padding: 5px 10px 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
}

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

.single-blog-post .post-content .category {
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #088dd3;
  font-weight: 600;
  font-size: 14px;
}

.single-blog-post .post-content h3 {
  margin-bottom: 0;
  font-size: 23px;
  font-weight: 700;
}

.single-blog-post .post-content h3 a {
  display: inline-block;
}

.single-blog-post .post-content .details-btn {
  margin-top: 15px;
  display: inline-block;
  position: relative;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
}

.single-blog-post .post-content .details-btn::before {
  width: 100%;
  height: 1px;
  background-color: #777777;
  content: '';
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0;
  bottom: 0;
}

.single-blog-post .post-content .details-btn:hover {
  color: #088dd3;
}

.single-blog-post .post-content .details-btn:hover::before {
  width: 0;
}

.single-blog-post:hover .post-image img {
  -webkit-transform: scale(1.07) rotate(2deg);
          transform: scale(1.07) rotate(2deg);
}

.single-blog-post:hover .post-image .date {
  visibility: visible;
  right: 0;
}

.blog-items {
  margin-left: -15px;
  margin-right: -15px;
}

.blog-items .single-blog-post {
  margin-left: 15px;
  margin-right: 15px;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-image img {
  width: 100%;
}

.blog-details-desc .article-image-slides.owl-theme .owl-nav {
  margin-top: 0;
}

.blog-details-desc .article-image-slides.owl-theme .owl-nav [class*=owl-] {
  color: #87a1c1;
  font-size: 18px;
  margin: 0;
  padding: 0;
  background: #ffffff;
  width: 45px;
  height: 45px;
  line-height: 40px;
  position: absolute;
  left: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 50%;
  padding-right: 2px !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  border-style: solid;
  border-color: #ffffff;
  border-width: 1.5px;
}

.blog-details-desc .article-image-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 20px;
  padding-right: 0 !important;
  padding-left: 2px !important;
}

.blog-details-desc .article-image-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: #088dd3;
  color: #ffffff;
  border-color: #088dd3;
}

.blog-details-desc .article-video iframe {
  width: 100%;
  height: 400px;
  border: none !important;
}

.blog-details-desc .article-content {
  margin-top: 30px;
}

.blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-desc .article-content .entry-meta ul li {
  margin-right: 20px;
  position: relative;
  display: inline-block;
  border-right: 1px solid #eeeeee;
  font-weight: 500;
  font-size: 16px;
  padding-right: 20px;
  padding-left: 45px;
}

.blog-details-desc .article-content .entry-meta ul li i {
  font-size: 32px;
  color: #cfcfcf;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-details-desc .article-content .entry-meta ul li span {
  display: block;
  color: #088dd3;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 500;
}

.blog-details-desc .article-content .entry-meta ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.blog-details-desc .article-content h3 {
  margin-bottom: 17px;
  margin-top: 25px;
  font-size: 24px;
  font-weight: 700;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.blog-details-desc .article-content .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 30px;
}

.blog-details-desc .article-content .features-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 26px;
  color: #777777;
}

.blog-details-desc .article-content .features-list li i {
  color: #088dd3;
  display: inline-block;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 1px;
}

.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}

.blog-details-desc .article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #eeeeee;
  padding-top: 30px;
  margin-top: 30px;
}

.blog-details-desc .article-footer .article-tags {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  color: #777777;
}

.blog-details-desc .article-footer .article-tags span {
  display: inline-block;
  color: #000000;
  margin-right: 3px;
  position: relative;
  top: 3px;
  font-size: 20px;
}

.blog-details-desc .article-footer .article-tags a {
  display: inline-block;
  font-weight: 600;
}

.blog-details-desc .article-footer .article-share {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}

.blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}

.blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 3px;
  font-weight: 600;
  position: relative;
  top: -2px;
}

.blog-details-desc .article-footer .article-share .social li a {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #088dd3;
  color: #ffffff;
  border: 1px solid #088dd3;
  text-align: center;
  font-size: 17px;
  margin-left: 2px;
}

.blog-details-desc .article-footer .article-share .social li a:hover, .blog-details-desc .article-footer .article-share .social li a:focus {
  color: #088dd3;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.facebook {
  background-color: #3b5998;
  border-color: #3b5998;
  color: #ffffff;
}

.blog-details-desc .article-footer .article-share .social li a.facebook:hover, .blog-details-desc .article-footer .article-share .social li a.facebook:focus {
  color: #3b5998;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.twitter {
  background-color: #1da1f2;
  border-color: #1da1f2;
  color: #ffffff;
}

.blog-details-desc .article-footer .article-share .social li a.twitter:hover, .blog-details-desc .article-footer .article-share .social li a.twitter:focus {
  color: #1da1f2;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.linkedin {
  background-color: #007bb5;
  border-color: #007bb5;
  color: #ffffff;
}

.blog-details-desc .article-footer .article-share .social li a.linkedin:hover, .blog-details-desc .article-footer .article-share .social li a.linkedin:focus {
  color: #007bb5;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.instagram {
  background-color: #c13584;
  border-color: #c13584;
  color: #ffffff;
}

.blog-details-desc .article-footer .article-share .social li a.instagram:hover, .blog-details-desc .article-footer .article-share .social li a.instagram:focus {
  color: #c13584;
  background-color: transparent;
}

.blog-details-desc .article-author {
  margin-top: 30px;
  border-radius: 5px;
  background: #fdfcfc;
}

.blog-details-desc .article-author .author-profile-header {
  height: 115px;
  border-radius: 5px 5px 0 0;
  background-color: #088dd3;
  background-image: url(../img/bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-details-desc .article-author .author-profile {
  padding: 0 25px 25px;
}

.blog-details-desc .article-author .author-profile .author-profile-title {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  margin-top: -45px;
}

.blog-details-desc .article-author .author-profile .author-profile-title img {
  display: inline-block;
  border: 3px solid #ffffff;
  width: 100px;
  height: 100px;
}

.blog-details-desc .article-author .author-profile .author-profile-title .author-profile-title-details {
  margin-top: 15px;
}

.blog-details-desc .article-author .author-profile .author-profile-title .author-profile-title-details .author-profile-details h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
}

.blog-details-desc .article-author .author-profile .author-profile-title .author-profile-title-details .author-profile-details span {
  color: #777777;
}

.blog-details-desc .article-author .author-profile .author-profile-title .author-profile-raque-profile a {
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
}

blockquote, .blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 50px !important;
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 20px;
  margin-top: 20px;
}

blockquote p, .blockquote p {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px !important;
}

blockquote cite, .blockquote cite {
  display: none;
}

blockquote::before, .blockquote::before {
  color: #efefef;
  position: absolute;
  -webkit-animation: fade-up 1.5s infinite linear;
          animation: fade-up 1.5s infinite linear;
  left: 50px;
  top: -50px;
  z-index: -1;
  content: "\ee33";
  font-family: "boxicons" !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-size: 135px;
}

blockquote::after, .blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #088dd3;
  margin-top: 20px;
  margin-bottom: 20px;
}

.braike-post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.prev-link-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
}

.prev-link-wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prev-link-wrapper a:hover .image-prev::after {
  opacity: 1;
  visibility: visible;
}

.prev-link-wrapper a:hover .image-prev .post-nav-title {
  opacity: 1;
  visibility: visible;
}

.prev-link-wrapper a:hover .prev-link-info-wrapper {
  color: #088dd3;
}

.prev-link-wrapper .image-prev {
  display: inline-block;
  min-width: 100px;
  width: 100px;
  border-radius: 5px;
  overflow: hidden;
  vertical-align: top;
  margin-right: 20px;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.prev-link-wrapper .image-prev img {
  border-radius: 5px;
}

.prev-link-wrapper .image-prev::after {
  display: block;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  opacity: 0;
  background-color: #088dd3;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.prev-link-wrapper .image-prev .post-nav-title {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 500;
}

.prev-link-wrapper .prev-link-info-wrapper {
  color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.prev-link-wrapper .prev-title {
  display: inline-block;
  font-weight: 600;
  font-size: 17px;
}

.prev-link-wrapper .meta-wrapper {
  display: block;
  color: #777777;
  text-transform: capitalize;
  margin-top: 5px;
  font-weight: 500;
  font-size: 14px;
}

.next-link-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
  padding-left: 15px;
}

.next-link-wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.next-link-wrapper a:hover .image-next::after {
  opacity: 1;
  visibility: visible;
}

.next-link-wrapper a:hover .image-next .post-nav-title {
  opacity: 1;
  visibility: visible;
}

.next-link-wrapper a:hover .next-link-info-wrapper {
  color: #088dd3;
}

.next-link-wrapper .image-next {
  display: inline-block;
  min-width: 100px;
  width: 100px;
  border-radius: 5px;
  overflow: hidden;
  vertical-align: top;
  margin-left: 20px;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.next-link-wrapper .image-next img {
  border-radius: 5px;
}

.next-link-wrapper .image-next::after {
  display: block;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  opacity: 0;
  background-color: #088dd3;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.next-link-wrapper .image-next .post-nav-title {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 500;
}

.next-link-wrapper .next-link-info-wrapper {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #000000;
}

.next-link-wrapper .next-title {
  display: inline-block;
  font-weight: 600;
  font-size: 17px;
}

.next-link-wrapper .meta-wrapper {
  display: block;
  color: #777777;
  text-transform: capitalize;
  margin-top: 5px;
  font-weight: 500;
  font-size: 14px;
}

.comments-area {
  margin-top: 30px;
}

.comments-area .comments-title {
  margin-bottom: 30px;
  line-height: initial;
  font-size: 24px;
  font-weight: 700;
}

.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 dashed #eeeeee;
  padding-left: 65px;
  color: #000000;
  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 dashed #ded9d9;
  color: #000000;
  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: #088dd3;
  border-color: #088dd3;
}

.comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 0.3em;
  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 {
  margin-bottom: .8em;
  color: #777777;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
}

.comments-area .comment-metadata a {
  display: inline-block;
  color: #777777;
}

.comments-area .comment-metadata a:hover {
  color: #088dd3;
}

.comments-area .comment-respond {
  margin-top: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
  margin-bottom: 20px;
  margin-top: 10px;
}

.comments-area .comment-respond .comment-notes .required {
  color: red;
}

.comments-area .comment-respond .comment-form-comment {
  float: left;
  width: 100%;
}

.comments-area .comment-respond label {
  display: none;
}

.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: #f4f4f4;
  border: none;
  padding: 0 0 0 15px;
  height: 50px;
  outline: 0;
  border-radius: 3px;
  color: #000000;
  font-weight: 500;
  font-size: 15px;
}

.comments-area .comment-respond input[type="date"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="time"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="week"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="month"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="text"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="email"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="url"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="password"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="search"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="tel"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="number"]::-webkit-input-placeholder, .comments-area .comment-respond textarea::-webkit-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #777777;
}

.comments-area .comment-respond input[type="date"]:-ms-input-placeholder, .comments-area .comment-respond input[type="time"]:-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:-ms-input-placeholder, .comments-area .comment-respond input[type="week"]:-ms-input-placeholder, .comments-area .comment-respond input[type="month"]:-ms-input-placeholder, .comments-area .comment-respond input[type="text"]:-ms-input-placeholder, .comments-area .comment-respond input[type="email"]:-ms-input-placeholder, .comments-area .comment-respond input[type="url"]:-ms-input-placeholder, .comments-area .comment-respond input[type="password"]:-ms-input-placeholder, .comments-area .comment-respond input[type="search"]:-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]:-ms-input-placeholder, .comments-area .comment-respond input[type="number"]:-ms-input-placeholder, .comments-area .comment-respond textarea:-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #777777;
}

.comments-area .comment-respond input[type="date"]::-ms-input-placeholder, .comments-area .comment-respond input[type="time"]::-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]::-ms-input-placeholder, .comments-area .comment-respond input[type="week"]::-ms-input-placeholder, .comments-area .comment-respond input[type="month"]::-ms-input-placeholder, .comments-area .comment-respond input[type="text"]::-ms-input-placeholder, .comments-area .comment-respond input[type="email"]::-ms-input-placeholder, .comments-area .comment-respond input[type="url"]::-ms-input-placeholder, .comments-area .comment-respond input[type="password"]::-ms-input-placeholder, .comments-area .comment-respond input[type="search"]::-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]::-ms-input-placeholder, .comments-area .comment-respond input[type="number"]::-ms-input-placeholder, .comments-area .comment-respond textarea::-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #777777;
}

.comments-area .comment-respond input[type="date"]::placeholder, .comments-area .comment-respond input[type="time"]::placeholder, .comments-area .comment-respond input[type="datetime-local"]::placeholder, .comments-area .comment-respond input[type="week"]::placeholder, .comments-area .comment-respond input[type="month"]::placeholder, .comments-area .comment-respond input[type="text"]::placeholder, .comments-area .comment-respond input[type="email"]::placeholder, .comments-area .comment-respond input[type="url"]::placeholder, .comments-area .comment-respond input[type="password"]::placeholder, .comments-area .comment-respond input[type="search"]::placeholder, .comments-area .comment-respond input[type="tel"]::placeholder, .comments-area .comment-respond input[type="number"]::placeholder, .comments-area .comment-respond textarea::placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #777777;
}

.comments-area .comment-respond input[type="date"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="time"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="week"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="month"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="text"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="email"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="url"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="password"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="search"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="tel"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="number"]:focus::-webkit-input-placeholder, .comments-area .comment-respond textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="time"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="week"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="month"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="text"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="email"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="url"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="password"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="search"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="number"]:focus:-ms-input-placeholder, .comments-area .comment-respond textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="time"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="week"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="month"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="text"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="email"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="url"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="password"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="search"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="number"]:focus::-ms-input-placeholder, .comments-area .comment-respond textarea:focus::-ms-input-placeholder {
  color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus::placeholder, .comments-area .comment-respond input[type="time"]:focus::placeholder, .comments-area .comment-respond input[type="datetime-local"]:focus::placeholder, .comments-area .comment-respond input[type="week"]:focus::placeholder, .comments-area .comment-respond input[type="month"]:focus::placeholder, .comments-area .comment-respond input[type="text"]:focus::placeholder, .comments-area .comment-respond input[type="email"]:focus::placeholder, .comments-area .comment-respond input[type="url"]:focus::placeholder, .comments-area .comment-respond input[type="password"]:focus::placeholder, .comments-area .comment-respond input[type="search"]:focus::placeholder, .comments-area .comment-respond input[type="tel"]:focus::placeholder, .comments-area .comment-respond input[type="number"]:focus::placeholder, .comments-area .comment-respond textarea:focus::placeholder {
  color: transparent;
}

.comments-area .comment-respond textarea {
  height: auto !important;
  padding-top: 15px;
}

.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;
  margin-top: 15px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 4px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #777777;
  position: relative;
  top: -3.5px;
  font-weight: normal;
  font-size: 16px;
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  background: #088dd3;
  border: none;
  color: #ffffff;
  padding: 10px 30px 9px;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0;
  font-weight: 600;
  font-size: 14.5px;
}

.comments-area .comment-respond .form-submit input:hover, .comments-area .comment-respond .form-submit input:focus {
  color: #ffffff;
  background: #20aef9;
}

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

.instagram-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.instagram-title {
  margin-bottom: 50px;
  text-align: center;
}

.instagram-title a {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-left: 32px;
  font-size: 15px;
  font-weight: 300;
}

.instagram-title a i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 25px;
}

.single-instagram-post {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.single-instagram-post i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  color: #ffffff;
  font-size: 30px;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 10px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.single-instagram-post .link-btn {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.single-instagram-post::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.single-instagram-post:hover i {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

.single-instagram-post:hover::before {
  visibility: visible;
  opacity: .50;
}

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

.page-title-area.page-title-bg1 {
  background-image: url(../img/page-title1.jpg);
}

.page-title-area.page-title-bg2 {
  background-image: url(../img/page-title2.jpg);
}

.page-title-area.page-title-bg3 {
  background-image: url(../img/page-title3.jpg);
}

.page-title-area.page-title-bg4 {
  background-image: url(../img/page-title4.jpg);
}

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

.page-title-content {
  text-align: center;
}

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

/*================================================
Products Area CSS
=================================================*/
.single-products-box {
  position: relative;
  margin-bottom: 30px;
}

.single-products-box .products-image {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.single-products-box .products-image a {
  position: relative;
  display: block;
}

.single-products-box .products-image a img {
  -webkit-transition: .8s;
  transition: .8s;
}

.single-products-box .products-image a .hover-image {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.single-products-box .products-image .sale-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: red;
  color: #ffffff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}

.single-products-box .products-image .new-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: green;
  color: #ffffff;
  text-align: center;
  z-index: 2;
  padding: 1px 7px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}

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

.single-products-box .products-content h3 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.single-products-box .products-content h3 a {
  display: inline-block;
  color: #000000;
}

.single-products-box .products-content h3 a:hover {
  color: #088dd3;
}

.single-products-box .products-content .price {
  margin-top: 8px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 600;
}

.single-products-box .products-content .price .old-price {
  text-decoration: line-through;
  color: #999999;
  font-weight: 500;
}

.single-products-box .products-content .star-rating {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #f49f0b;
}

.single-products-box .products-content .star-rating i {
  display: inline-block;
  margin-left: -2px;
}

.single-products-box .products-content .add-to-cart {
  position: absolute;
  left: 0;
  bottom: 0;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  color: #777777;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  font-size: 14px;
  font-weight: 600;
}

.single-products-box .products-content .add-to-cart:hover {
  color: #088dd3;
}

.single-products-box:hover .products-content .price {
  opacity: 0;
  visibility: hidden;
}

.single-products-box:hover .products-content .add-to-cart {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.single-products-box:hover .products-image a .main-image {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.single-products-box:hover .products-image a .hover-image {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.single-products-box:hover .products-image .products-button ul li {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/*================================================
Widget Sidebar CSS
=================================================*/
.widget-area .widget {
  margin-bottom: 35px;
}

.widget-area .widget:last-child {
  margin-bottom: 0;
}

.widget-area .widget .widget-title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
  font-size: 22px;
  font-weight: 700;
}

.widget-area .widget .widget-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
  background-color: #088dd3;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .search-field {
  height: 50px;
  color: #000000;
  background-color: #f2f4f5;
  display: block;
  width: 100%;
  border-radius: 5px;
  padding: 0 0 0 15px;
  border: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 500;
}

.widget-area .widget_search form .search-field::-webkit-input-placeholder {
  color: #777777;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form .search-field:-ms-input-placeholder {
  color: #777777;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form .search-field::-ms-input-placeholder {
  color: #777777;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form .search-field::placeholder {
  color: #777777;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form .search-field:focus::-webkit-input-placeholder {
  color: transparent;
}

.widget-area .widget_search form .search-field:focus:-ms-input-placeholder {
  color: transparent;
}

.widget-area .widget_search form .search-field:focus::-ms-input-placeholder {
  color: transparent;
}

.widget-area .widget_search form .search-field:focus::placeholder {
  color: transparent;
}

.widget-area .widget_search form button {
  border: none;
  background-color: #088dd3;
  color: #ffffff;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
  top: 5px;
  font-size: 20px;
}

.widget-area .widget_search form button:hover, .widget-area .widget_search form button:focus {
  background-color: #20aef9;
  color: #ffffff;
}

.widget-area .widget_braike_posts_thumb {
  position: relative;
  overflow: hidden;
}

.widget-area .widget_braike_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 15px;
}

.widget-area .widget_braike_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_braike_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  display: block;
  position: relative;
  width: 80px;
  margin-right: 15px;
  z-index: 1;
}

.widget-area .widget_braike_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 5px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_braike_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../img/blog/img7.jpg);
}

.widget-area .widget_braike_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../img/blog/img8.jpg);
}

.widget-area .widget_braike_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../img/blog/img5.jpg);
}

.widget-area .widget_braike_posts_thumb .item .thumb::before, .widget-area .widget_braike_posts_thumb .item .thumb::after {
  -webkit-transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  content: '';
  background-color: #ffffff;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.widget-area .widget_braike_posts_thumb .item .thumb::before {
  width: 40px;
  height: 1px;
  left: 100%;
}

.widget-area .widget_braike_posts_thumb .item .thumb::after {
  height: 40px;
  width: 1px;
  top: 0;
}

.widget-area .widget_braike_posts_thumb .item .info {
  overflow: hidden;
  margin-top: 5px;
}

.widget-area .widget_braike_posts_thumb .item .info span {
  display: block;
  color: #777777;
  text-transform: uppercase;
  margin-top: -2px;
  margin-bottom: 5px;
  font-size: 12px;
}

.widget-area .widget_braike_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 600;
}

.widget-area .widget_braike_posts_thumb .item .info .title a {
  display: inline-block;
}

.widget-area .widget_braike_posts_thumb .item:hover .thumb::before, .widget-area .widget_braike_posts_thumb .item:hover .thumb::after {
  opacity: 1;
  top: 50%;
  left: 50%;
}

.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_categories ul li {
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
  color: #000000;
  padding-left: 18px;
  font-weight: 600;
  font-size: 14px;
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_categories ul li::before {
  background: #088dd3;
  height: 8px;
  width: 8px;
  content: '';
  border-radius: 50%;
  left: 0;
  top: 7px;
  position: absolute;
}

.widget-area .widget_categories ul li a {
  color: #000000;
  display: inline-block;
}

.widget-area .widget_categories ul li a:hover {
  color: #088dd3;
}

.widget-area .widget_categories ul li .post-count {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  position: relative;
  top: 1px;
}

.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 17px;
}

.widget-area .tagcloud a {
  display: inline-block;
  background-color: #f6f6f6;
  color: #000000;
  padding: 7px 15px;
  border: none;
  border-radius: 3px;
  font-weight: 600;
  font-size: 13.5px !important;
  margin-top: 8px;
  margin-right: 4px;
}

.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
  color: #ffffff;
  background-color: #088dd3;
}

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

.widget-area .widget_instagram ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding-bottom: 10px;
  padding-right: 5px;
  padding-left: 5px;
}

.widget-area .widget_instagram ul li a {
  position: relative;
}

.widget-area .widget_instagram ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #088dd3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.widget-area .widget_instagram ul li a:hover::before {
  opacity: .70;
  visibility: visible;
}

.widget-area .widget_contact {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  height: 400px;
  text-align: center;
  background-image: url(../img/main-banner1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.widget-area .widget_contact::before {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
  background-color: #088dd3;
  opacity: .40;
  z-index: -1;
}

.widget-area .widget_contact .text {
  position: absolute;
  left: 0;
  bottom: 25px;
  right: 0;
}

.widget-area .widget_contact .text .icon {
  width: 65px;
  height: 65px;
  border: 2px dashed #088dd3;
  position: relative;
  border-radius: 50%;
  font-size: 35px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
  color: #088dd3;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 17px;
}

.widget-area .widget_contact .text .icon i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget-area .widget_contact .text span {
  display: block;
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.widget-area .widget_contact .text a {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 25px;
}

/*================================================
Coming Soon Area CSS
=================================================*/
.coming-soon-area {
  height: 100vh;
  position: relative;
  z-index: 1;
  background: #f6f7fb;
  background-image: url(../img/coming-soon-bg.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.coming-soon-content {
  max-width: 700px;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  padding: 40px 60px;
  -webkit-box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
          box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-content .logo {
  display: inline-block;
}

.coming-soon-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 0;
}

.coming-soon-content #timer {
  margin-top: 40px;
}

.coming-soon-content #timer div {
  background-color: #333333;
  color: #ffffff;
  width: 100px;
  height: 105px;
  border-radius: 5px;
  font-size: 40px;
  font-weight: 700;
  font-family: "Cabin", sans-serif;
  margin-left: 10px;
  margin-right: 10px;
}

.coming-soon-content #timer div span {
  display: block;
  margin-top: -2px;
  font-size: 16px;
  font-weight: 500;
}

.coming-soon-content form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.coming-soon-content form .form-group {
  margin-bottom: 25px;
  width: 100%;
  position: relative;
}

.coming-soon-content form .form-group .label-title {
  margin-bottom: 0;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  color: #000000;
}

.coming-soon-content form .form-group .label-title i {
  position: absolute;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 9px;
  font-size: 22px;
}

.coming-soon-content form .form-group .label-title::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #088dd3;
}

.coming-soon-content form .form-group .input-newsletter {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #eeeeee;
  padding: 0 0 0 32px;
  color: #000000;
  height: 45px;
  display: block;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 400;
}

.coming-soon-content form .form-group .input-newsletter::-webkit-input-placeholder {
  color: #A1A1A1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content form .form-group .input-newsletter:-ms-input-placeholder {
  color: #A1A1A1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content form .form-group .input-newsletter::-ms-input-placeholder {
  color: #A1A1A1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content form .form-group .input-newsletter::placeholder {
  color: #A1A1A1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content form .form-group .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}

.coming-soon-content form .form-group .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}

.coming-soon-content form .form-group .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}

.coming-soon-content form .form-group .input-newsletter:focus::placeholder {
  color: transparent;
}

.coming-soon-content form .default-btn {
  border-radius: 0;
}

.coming-soon-content form .validation-danger {
  margin-top: 15px;
  color: red;
}

.coming-soon-content form .validation-success {
  margin-top: 15px;
}

.coming-soon-content form p {
  margin-bottom: 0;
  margin-top: 20px;
}

/*================================================
Cart Area CSS
=================================================*/
.cart-table table {
  margin-bottom: 0;
}

.cart-table table thead tr th {
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 25px 0 25px;
  text-transform: uppercase;
  border: none;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
}

.cart-table table tbody tr td {
  vertical-align: middle;
  color: #777777;
  white-space: nowrap;
  padding-left: 0;
  padding-right: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  border-color: #eaedff;
  border-left: none;
  border-right: none;
}

.cart-table table tbody tr td.product-thumbnail a {
  display: inline-block;
}

.cart-table table tbody tr td.product-thumbnail a img {
  width: 100px;
}

.cart-table table tbody tr td.product-name a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}

.cart-table table tbody tr td.product-name ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: 0;
}

.cart-table table tbody tr td.product-name ul li {
  margin-bottom: 6px;
  font-size: 13.5px;
}

.cart-table table tbody tr td.product-name ul li span {
  display: inline;
  color: #000000;
}

.cart-table table tbody tr td.product-name ul li:last-child {
  margin-bottom: 0;
}

.cart-table table tbody tr td.product-subtotal {
  overflow: hidden;
}

.cart-table table tbody tr td.product-subtotal .subtotal-amount {
  color: #000000;
  font-weight: 600;
}

.cart-table table tbody tr td.product-subtotal .remove {
  color: red;
  float: right;
  display: block;
  position: relative;
  top: -1px;
  font-size: 18px;
}

.cart-table table tbody tr td.product-quantity .input-counter {
  max-width: 130px;
  min-width: 130px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.cart-table table tbody tr td.product-quantity .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;
  font-size: 22px;
}

.cart-table table tbody tr td.product-quantity .input-counter span.minus-btn {
  left: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter span.plus-btn {
  right: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter span:hover {
  color: #088dd3;
}

.cart-table table tbody tr td.product-quantity .input-counter input {
  height: 45px;
  color: #000000;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}

.cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
  color: #000000;
}

.cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
  color: #000000;
}

.cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
  color: #000000;
}

.cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
  color: #000000;
}

.cart-table table tbody tr td .unit-amount {
  color: #000000;
  font-weight: 600;
}

.cart-buttons {
  margin-top: 30px;
}

.cart-totals {
  background: #ffffff;
  padding: 40px;
  max-width: 500px;
  -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-left: auto;
  margin-top: 50px;
  margin-right: auto;
}

.cart-totals h3 {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 700;
}

.cart-totals ul {
  padding-left: 0;
  margin: 0 0 25px;
  list-style-type: none;
}

.cart-totals ul li {
  border: 1px solid #eaedff;
  padding: 10px 15px;
  color: #000000;
  overflow: hidden;
  font-weight: 600;
}

.cart-totals ul li:first-child {
  border-bottom: none;
}

.cart-totals ul li:last-child {
  font-size: 20px;
  border-top: none;
}

.cart-totals ul li:last-child span {
  color: #000000;
}

.cart-totals ul li span {
  float: right;
  font-weight: normal;
}

/*================================================
Checkout Area 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: 15px 20px;
  border-top: 3px solid #088dd3;
  position: relative;
  margin-bottom: 40px;
}

.user-actions i {
  color: #088dd3;
  margin-right: 2px;
  font-size: 20px;
  position: relative;
  top: 3px;
}

.user-actions span {
  display: inline-block;
  color: #088dd3;
  font-weight: 500;
  font-size: 16px;
}

.user-actions span a {
  display: inline-block;
  color: #000000;
}

.user-actions span a:hover, .user-actions span a:focus {
  color: #088dd3;
}

.billing-details .title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 22px;
  font-weight: 700;
}

.billing-details .title::before {
  content: '';
  position: absolute;
  background: #088dd3;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.billing-details .form-group {
  margin-bottom: 25px;
}

.billing-details .form-group label {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

.billing-details .form-group label .required {
  color: red;
}

.billing-details .form-group .nice-select {
  float: unset;
  line-height: 48px;
  color: #000000;
  border: none;
  background-color: #f5f5f5 !important;
  font-weight: normal;
  font-size: 15px;
  padding-top: 0;
  padding-bottom: 0;
}

.billing-details .form-group .nice-select .list {
  background-color: #ffffff;
  -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);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.billing-details .form-group .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-left: 20px;
  padding-right: 20px;
}

.billing-details .form-group .nice-select .list .option:hover {
  background-color: #088dd3 !important;
  color: #ffffff;
}

.billing-details .form-group .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.billing-details .form-group .nice-select:after {
  right: 20px;
}

.billing-details .form-check {
  margin-bottom: 20px;
}

.billing-details .form-check .form-check-label {
  color: #000000;
}

.billing-details .form-check label {
  position: relative;
  left: -3px;
  top: 1px;
  font-weight: 500;
}

.billing-details .col-lg-12:last-child .form-group {
  margin-bottom: 0;
}

.order-details .title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 22px;
  font-weight: 700;
}

.order-details .title::before {
  content: '';
  position: absolute;
  background: #088dd3;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.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: 12px 20px 10px;
  font-weight: 700;
  font-size: 17px;
}

.order-details .order-table table tbody tr td {
  vertical-align: middle;
  border-color: #eaedff;
  font-size: 15px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 13px;
}

.order-details .order-table table tbody tr td.product-name a {
  display: inline-block;
  font-weight: 500;
}

.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: #000000;
  font-weight: 600;
}

.order-details .order-table table tbody tr td.shipping-price, .order-details .order-table table tbody tr td.order-subtotal-price, .order-details .order-table table tbody tr td.product-subtotal {
  font-weight: 600;
  color: #000000;
}

.order-details .payment-box {
  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);
  margin-top: 30px;
  padding: 30px;
}

.order-details .payment-box .payment-method p [type="radio"]:checked, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) {
  display: none;
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  color: #000000;
  position: relative;
  margin-bottom: 8px;
  font-weight: 600;
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label::before, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label::after, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #088dd3;
  position: absolute;
  top: 8px;
  left: 3px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::after {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.order-details .payment-box .default-btn {
  margin-top: 20px;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
  display: block;
  text-align: center;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-accordion-tab .tabs {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 60px;
  text-align: center;
}

.faq-accordion-tab .tabs li {
  margin-left: 10px;
  margin-right: 10px;
}

.faq-accordion-tab .tabs li a {
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  padding: 20px;
  display: block;
  -webkit-box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13) !important;
          box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13) !important;
  font-size: 17px;
  font-weight: 600;
}

.faq-accordion-tab .tabs li a i {
  font-size: 30px;
}

.faq-accordion-tab .tabs li a span {
  display: block;
  margin-top: 8px;
}

.faq-accordion-tab .tabs li a:hover {
  background-color: #088dd3;
  color: #ffffff;
}

.faq-accordion-tab .tabs li.current a {
  background-color: #088dd3;
  color: #ffffff;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  border-radius: 5px;
  display: block;
  -webkit-box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13) !important;
          box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13) !important;
  background: #ffffff;
  margin-bottom: 15px;
  border: none;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 20px 25px 17px 60px;
  color: #000000;
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: 700;
  font-family: "Cabin", sans-serif;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  left: 25px;
  top: 18px;
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-accordion .accordion .accordion-title.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: -5px;
  padding-bottom: 20px;
  padding-right: 25px;
  padding-left: 60px;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

.faq-accordion .accordion .accordion-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-content ul li {
  color: #777777;
  position: relative;
  margin-bottom: 12px;
  line-height: 25px;
  padding-left: 15px;
}

.faq-accordion .accordion .accordion-content ul li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #088dd3;
  border-radius: 50%;
}

.faq-accordion .accordion .accordion-content ul li:last-child {
  margin-bottom: 0;
}

/*================================================
Login Area CSS
=================================================*/
.login-image {
  height: 100%;
  width: 100%;
  background-image: url(../img/login-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.login-image img {
  display: none;
}

.login-content {
  height: 100vh;
}

.login-content .login-form {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.login-content .login-form .logo {
  margin-bottom: 25px;
}

.login-content .login-form .logo a {
  display: inline-block;
}

.login-content .login-form h3 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
}

.login-content .login-form p {
  margin-top: 10px;
  margin-bottom: 0;
}

.login-content .login-form p a {
  display: inline-block;
}

.login-content .login-form form {
  margin-top: 35px;
}

.login-content .login-form form .form-group {
  margin-bottom: 15px;
}

.login-content .login-form form .form-control {
  background-color: #ffffff;
  color: #000000;
  border: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
  height: 55px;
  font-size: 15px;
}

.login-content .login-form form .form-control::-webkit-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-content .login-form form .form-control:-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-content .login-form form .form-control::-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-content .login-form form .form-control::placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-content .login-form form .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.login-content .login-form form .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.login-content .login-form form .form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.login-content .login-form form .form-control:focus::placeholder {
  color: transparent;
}

.login-content .login-form form button {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
  width: 100%;
  padding: 14px 25px 13px;
  text-transform: uppercase;
  position: relative;
  background-color: #088dd3;
  color: #ffffff;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(8, 141, 211, 0.15);
          box-shadow: 0px 5px 28.5px 1.5px rgba(8, 141, 211, 0.15);
  border-width: 2px;
  border-style: solid;
  border-color: #088dd3;
  border-radius: 5px;
  font-size: 14.5px;
  font-weight: 700;
}

.login-content .login-form form button:hover, .login-content .login-form form button:focus {
  background-color: #20aef9;
  color: #ffffff;
  border-color: #20aef9;
}

.login-content .login-form form .forgot-password {
  text-align: right;
  margin-top: 20px;
}

.login-content .login-form form .forgot-password a {
  display: inline-block;
  color: #088dd3;
  text-decoration: underline;
  font-weight: 600;
}

.login-content .login-form form .forgot-password a:hover {
  color: #20aef9;
}

.login-content .login-form form .connect-with-social {
  margin-top: 20px;
}

.login-content .login-form form .connect-with-social button {
  display: block;
  width: 100%;
  position: relative;
  border: 1px solid #088dd3;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 12px 30px;
  border-radius: 2px;
  color: #088dd3;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  font-weight: 600;
  font-size: 14.5px;
}

.login-content .login-form form .connect-with-social button i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15px;
  font-size: 20px;
}

.login-content .login-form form .connect-with-social button.facebook {
  border-color: #3b5998;
  color: #3b5998;
}

.login-content .login-form form .connect-with-social button.facebook:hover {
  background-color: #3b5998;
  color: #ffffff;
  border-color: #3b5998;
}

.login-content .login-form form .connect-with-social button.twitter {
  margin-top: 15px;
  border-color: #1da1f2;
  color: #1da1f2;
}

.login-content .login-form form .connect-with-social button.twitter:hover {
  background-color: #1da1f2;
  color: #ffffff;
  border-color: #1da1f2;
}

.login-content .login-form form .connect-with-social button:hover {
  background-color: #088dd3;
  color: #ffffff;
  border-color: #088dd3;
}

/*================================================
Register Area CSS
=================================================*/
.register-image {
  height: 100%;
  width: 100%;
  background-image: url(../img/register-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.register-image img {
  display: none;
}

.register-content {
  height: 100vh;
}

.register-content .register-form {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.register-content .register-form .logo {
  margin-bottom: 25px;
}

.register-content .register-form .logo a {
  display: inline-block;
}

.register-content .register-form h3 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
}

.register-content .register-form p {
  margin-top: 10px;
  margin-bottom: 0;
}

.register-content .register-form p a {
  display: inline-block;
}

.register-content .register-form form {
  margin-top: 35px;
}

.register-content .register-form form .form-group {
  margin-bottom: 15px;
}

.register-content .register-form form .form-control {
  background-color: #ffffff;
  color: #000000;
  border: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
  height: 55px;
  font-size: 15px;
}

.register-content .register-form form .form-control::-webkit-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-content .register-form form .form-control:-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-content .register-form form .form-control::-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-content .register-form form .form-control::placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-content .register-form form .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.register-content .register-form form .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.register-content .register-form form .form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.register-content .register-form form .form-control:focus::placeholder {
  color: transparent;
}

.register-content .register-form form button {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
  width: 100%;
  padding: 14px 25px 13px;
  text-transform: uppercase;
  position: relative;
  background-color: #088dd3;
  color: #ffffff;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(8, 141, 211, 0.15);
          box-shadow: 0px 5px 28.5px 1.5px rgba(8, 141, 211, 0.15);
  border-width: 2px;
  border-style: solid;
  border-color: #088dd3;
  border-radius: 5px;
  font-size: 14.5px;
  font-weight: 700;
}

.register-content .register-form form button:hover, .register-content .register-form form button:focus {
  background-color: #20aef9;
  color: #ffffff;
  border-color: #20aef9;
}

/*================================================
Error 404 Area CSS
=================================================*/
.error-404-area {
  z-index: 1;
  background: #f8f8f8;
  position: relative;
  height: 100vh;
}

.error-404-area .notfound {
  position: relative;
  max-width: 520px;
  z-index: 1;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.error-404-area .notfound .notfound-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.error-404-area .notfound .notfound-bg div {
  width: 100%;
  background: #ffffff;
  border-radius: 90px;
  height: 125px;
}

.error-404-area .notfound .notfound-bg div:nth-child(1) {
  -webkit-box-shadow: 5px 5px 0 0 #f3f3f3;
          box-shadow: 5px 5px 0 0 #f3f3f3;
}

.error-404-area .notfound .notfound-bg div:nth-child(2) {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-box-shadow: 5px 5px 0 0 #f3f3f3;
          box-shadow: 5px 5px 0 0 #f3f3f3;
  position: relative;
  z-index: 10;
}

.error-404-area .notfound .notfound-bg div:nth-child(3) {
  -webkit-box-shadow: 5px 5px 0 0 #f3f3f3;
          box-shadow: 5px 5px 0 0 #f3f3f3;
  position: relative;
  z-index: 90;
}

.error-404-area .notfound h1 {
  background: url(../img/main-banner1.jpg) no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  background-position: center;
  text-transform: uppercase;
  font-size: 100px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
}

.error-404-area .notfound h3 {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 22px;
}

.error-404-area .notfound p {
  color: #6084a4;
  margin-bottom: 20px;
  line-height: 1.7;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-info h3 {
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 700;
}

.contact-info p a {
  display: inline;
  font-weight: 500;
}

.contact-info .contact-list {
  padding-left: 0;
  margin-bottom: 25px;
  list-style-type: none;
}

.contact-info .contact-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.contact-info .contact-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #088dd3;
  font-size: 20px;
}

.contact-info .contact-list li a {
  display: inline-block;
  font-weight: 600;
  position: relative;
}

.contact-info .contact-list li a:hover::before {
  width: 100%;
}

.contact-info .contact-list li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #088dd3;
}

.contact-info .contact-list li:last-child {
  margin-bottom: 0;
}

.contact-info .opening-hours {
  padding-left: 0;
  margin-bottom: 25px;
  list-style-type: none;
}

.contact-info .opening-hours li {
  margin-bottom: 10px;
}

.contact-info .opening-hours li:last-child {
  margin-bottom: 0;
}

.contact-info .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.contact-info .social li {
  display: inline-block;
  margin-right: 2px;
}

.contact-info .social li:last-child {
  margin-right: 0;
}

.contact-info .social li a {
  width: 30px;
  height: 30px;
  text-align: center;
  display: block;
  color: #088dd3;
  background-color: #f4f4f4;
  font-size: 18px;
  position: relative;
  border-radius: 2px;
}

.contact-info .social li a i {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-49%);
          transform: translateY(-49%);
}

.contact-info .social li a:hover {
  background-color: #088dd3;
  color: #ffffff;
}

.contact-form h3 {
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 700;
}

.contact-form form .form-group {
  margin-bottom: 20px;
}

.contact-form form .form-group label {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.contact-form form .form-group label span {
  color: red;
}

.contact-form form .with-errors ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: 0;
}

.contact-form form .with-errors ul li {
  color: red;
  font-size: 15px;
}

.contact-form form #msgSubmit {
  margin-bottom: 0;
}

.contact-form form #msgSubmit.text-danger, .contact-form form #msgSubmit.text-success {
  margin-top: 15px;
}

.map-area iframe {
  width: 100%;
  height: 500px;
  border: none;
  margin-bottom: -8px;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  padding-top: 100px;
  background-color: #000000;
  position: relative;
  z-index: 1;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget h3 {
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 10px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 24px;
  font-weight: 700;
}

.single-footer-widget h3::before {
  width: 50px;
  height: 1px;
  bottom: -1px;
  content: '';
  position: absolute;
  left: 0;
  background-color: #088dd3;
}

.single-footer-widget p {
  color: #c7cad4;
}

.single-footer-widget .about-the-store p {
  font-weight: 600;
}

.single-footer-widget .about-the-store .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .about-the-store .footer-contact-info li {
  margin-bottom: 12px;
  color: #c7cad4;
  position: relative;
  padding-left: 25px;
}

.single-footer-widget .about-the-store .footer-contact-info li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  color: #ffffff;
}

.single-footer-widget .about-the-store .footer-contact-info li a {
  display: inline-block;
  color: #c7cad4;
  font-weight: 600;
  position: relative;
}

.single-footer-widget .about-the-store .footer-contact-info li a:hover {
  color: #088dd3;
}

.single-footer-widget .about-the-store .footer-contact-info li a:hover::before {
  width: 100%;
}

.single-footer-widget .about-the-store .footer-contact-info li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #088dd3;
}

.single-footer-widget .about-the-store .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .social-link {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}

.single-footer-widget .social-link li {
  display: inline-block;
  margin-right: 3px;
}

.single-footer-widget .social-link li:last-child {
  margin-right: 0;
}

.single-footer-widget .social-link li a {
  width: 30px;
  height: 30px;
  text-align: center;
  color: #000000;
  background-color: #c7cad4;
  font-size: 18px;
  position: relative;
  border-radius: 2px;
}

.single-footer-widget .social-link li a i {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-48%);
          transform: translateY(-48%);
}

.single-footer-widget .social-link li a:hover {
  background-color: #088dd3;
  color: #ffffff;
}

.single-footer-widget .quick-links {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .quick-links li {
  margin-bottom: 15px;
  color: #c7cad4;
}

.single-footer-widget .quick-links li a {
  display: inline-block;
  color: #c7cad4;
  font-weight: 600;
  position: relative;
}

.single-footer-widget .quick-links li a:hover {
  color: #088dd3;
}

.single-footer-widget .quick-links li a:hover::before {
  width: 100%;
}

.single-footer-widget .quick-links li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #088dd3;
}

.single-footer-widget .quick-links li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .customer-support {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .customer-support li {
  margin-bottom: 15px;
  color: #c7cad4;
}

.single-footer-widget .customer-support li a {
  display: inline-block;
  color: #c7cad4;
  font-weight: 600;
  position: relative;
}

.single-footer-widget .customer-support li a:hover {
  color: #088dd3;
}

.single-footer-widget .customer-support li a:hover::before {
  width: 100%;
}

.single-footer-widget .customer-support li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #088dd3;
}

.single-footer-widget .customer-support li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-newsletter-box .newsletter-form {
  position: relative;
  margin-top: -5px;
}

.single-footer-widget .footer-newsletter-box .newsletter-form label {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}

.single-footer-widget .footer-newsletter-box .newsletter-form .input-newsletter {
  width: 100%;
  background-color: transparent;
  border: 1px solid #848282;
  border-radius: 0;
  height: 45px;
  padding-left: 10px;
  color: #ffffff;
  font-size: 14px;
  border-radius: .25rem;
}

.single-footer-widget .footer-newsletter-box .newsletter-form .input-newsletter::-webkit-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #cccccc;
}

.single-footer-widget .footer-newsletter-box .newsletter-form .input-newsletter:-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #cccccc;
}

.single-footer-widget .footer-newsletter-box .newsletter-form .input-newsletter::-ms-input-placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #cccccc;
}

.single-footer-widget .footer-newsletter-box .newsletter-form .input-newsletter::placeholder {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #cccccc;
}

.single-footer-widget .footer-newsletter-box .newsletter-form .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}

.single-footer-widget .footer-newsletter-box .newsletter-form .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}

.single-footer-widget .footer-newsletter-box .newsletter-form .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}

.single-footer-widget .footer-newsletter-box .newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
}

.single-footer-widget .footer-newsletter-box .newsletter-form button {
  display: block;
  margin-top: .8rem;
  width: 100%;
  border-radius: .25rem;
  background-color: #088dd3;
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 600;
  font-size: 15px;
}

.single-footer-widget .footer-newsletter-box .newsletter-form button:hover {
  color: #000000;
  background-color: #ffffff;
}

.single-footer-widget .footer-newsletter-box .newsletter-form #validator-newsletter {
  position: absolute;
  left: 0;
  bottom: -32px;
  color: #ffffff !important;
}

.footer-bottom-area {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  padding-bottom: 25px;
}

.footer-bottom-area p {
  line-height: initial;
  margin-bottom: 0;
  color: #c7cad4;
  font-weight: 500;
}

.footer-bottom-area p i {
  position: relative;
  top: 1px;
}

.footer-bottom-area p a {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  position: relative;
}

.footer-bottom-area p a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 1px;
  background-color: #088dd3;
}

.footer-bottom-area p a:hover {
  color: #088dd3;
}

.footer-bottom-area p a:hover::before {
  width: 100%;
}

.footer-bottom-area ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: right;
}

.footer-bottom-area ul li {
  display: inline-block;
  position: relative;
  margin-left: 18px;
}

.footer-bottom-area ul li:first-child {
  margin-left: 0;
}

.footer-bottom-area ul li:first-child::before {
  display: none;
}

.footer-bottom-area ul li a {
  display: block;
  color: #c7cad4;
}

.footer-bottom-area ul li a:hover {
  color: #088dd3;
}

.footer-bottom-area ul li::before {
  content: '';
  position: absolute;
  left: -11px;
  top: 6px;
  height: 12px;
  width: 1px;
  background-color: #c7cad4;
}

.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 90vw;
  z-index: -1;
}

.lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, #ffffff), to(#ffffff));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  -webkit-animation: run 7s 0s infinite;
          animation: run 7s 0s infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
          animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.lines .line:nth-child(1) {
  margin-left: -25%;
}

.lines .line:nth-child(1)::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.lines .line:nth-child(3) {
  margin-left: 25%;
}

.lines .line:nth-child(3)::after {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

@-webkit-keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

@keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 15px;
  color: #000000;
  background-color: #ffffff;
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 40px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 15px;
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 70%;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.go-top:hover {
  background-color: #088dd3;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
/*# sourceMappingURL=style.css.map */