@charset "UTF-8";
/* Main Css File */

html {
  font-size: 62.5%;
  font-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #fff;
  color: #7a7d82;
  font: normal 400 1.4rem / 1.8 "Open Sans", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-moz-selection {
  background-color: #282d3b;
  color: #fff;
}

::selection {
  background-color: #282d3b;
  color: #fff;
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f5f5;
  z-index: 9999999;
}

#page-loader > #status {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
}

#page-loader > #status > .spinner {
  position: absolute;
  width: 78px;
  height: 78px;
  left: 50%;
  margin-left: -39px;
  margin-top: -39px;
}

#page-loader > #status > .spinner:before {
  content: '';
  position: absolute;
  width: 45px;
  height: 45px;
  top: 50%;
  margin-top: -23px;
  left: 50%;
  margin-left: -23px;
  border-width: 2px 1px;
  border-style: solid;
  border-color: #67a8e4 rgba(103, 168, 228, 0.3);
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  animation: spin 3.45s infinite;
  -o-animation: spin 3.45s infinite;
  -ms-animation: spin 3.45s infinite;
  -webkit-animation: spin 3.45s infinite;
  -moz-animation: spin 3.45s infinite;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(1080deg);
  }
}

@keyframes pulse {
  0% {
    background-color: rgba(103, 168, 228, 0.2);
  }
  13% {
    background-color: rgba(103, 168, 228, 0.2);
  }
  15% {
    background-color: rgba(103, 168, 228, 0.9);
  }
  28% {
    background-color: rgba(103, 168, 228, 0.9);
  }
  30% {
    background-color: rgba(103, 168, 228, 0.2);
  }
  43% {
    background-color: rgba(103, 168, 228, 0.2);
  }
  45% {
    background-color: rgba(103, 168, 228, 0.9);
  }
  70% {
    background-color: rgba(103, 168, 228, 0.9);
  }
  74% {
    background-color: rgba(103, 168, 228, 0.2);
  }
  100% {
    background-color: rgba(103, 168, 228, 0.9);
  }
}

@-webkit-keyframes pulse {
  0% {
    background-color: rgba(103, 168, 228, 0.2);
  }
  13% {
    background-color: rgba(103, 168, 228, 0.2);
  }
  15% {
    background-color: rgba(103, 168, 228, 0.9);
  }
  28% {
    background-color: rgba(103, 168, 228, 0.9);
  }
  30% {
    background-color: rgba(103, 168, 228, 0.2);
  }
  43% {
    background-color: rgba(103, 168, 228, 0.2);
  }
  45% {
    background-color: rgba(103, 168, 228, 0.9);
  }
  70% {
    background-color: rgba(103, 168, 228, 0.9);
  }
  74% {
    background-color: rgba(103, 168, 228, 0.2);
  }
  100% {
    background-color: rgba(103, 168, 228, 0.9);
  }
}

p {
  margin-bottom: 1.5rem;
}

ul,
ol {
  margin: 0 0 2.25rem;
  padding: 0;
  list-style: none;
}

b,
strong {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

hr {
  max-width: 1730px;
  margin: 5.5rem auto 5.2rem;
  border: 0;
  border-top: 1px solid #dfdfdf;
}

sub,
sup {
  position: relative;
  font-size: 70%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

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

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@-webkit-keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.loading-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all .5s ease-in-out;
  background: #fff;
  opacity: 1;
  visibility: visible;
  z-index: 999999;
}
.loaded > .loading-overlay {
  opacity: 0;
  visibility: hidden;
}

.bounce-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  margin: -9px 0 0 -35px;
  transition: all .2s;
  text-align: center;
  z-index: 10000;
}
.bounce-loader .bounce1,
.bounce-loader .bounce2,
.bounce-loader .bounce3 {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #CCC;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-animation: 1.4s ease-in-out 0s normal both infinite bouncedelay;
  animation: 1.4s ease-in-out 0s normal both infinite bouncedelay;
}
.bounce-loader .bounce1 {
  -webkit-animation-delay: -.32s;
  animation-delay: -.32s;
}
.bounce-loader .bounce2 {
  -webkit-animation-delay: -.16s;
  animation-delay: -.16s;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-bottom: 1.8rem;
  color: #2b2b2d;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

h1, .h1 {
  font-size: 3rem;
}

h2, .h2 {
  font-size: 2.2rem;
}

h3, .h3 {
  font-size: 1.7rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.2rem;
}

h6, .h6 {
  font-size: 1rem;
}

a {
  transition: all .3s;
  /*color: #282d3b;*/
  color:#2085dc;
  text-decoration: none;
}

.item-container > a {
  color: #282d3b;
}

a:hover,
a:focus {
  color: #282d3b;
  text-decoration: underline;
}

.heading {
  margin-bottom: 4rem;
  font-size: 1.4rem;
}
.heading .title {
  margin-bottom: 1.6rem;
}
.heading p {
  letter-spacing: -.015em;
}
.heading p:last-child {
  margin-bottom: 0;
}

.title {
  text-transform: uppercase;
}

.subtitle {
  margin-bottom: 2rem;
  color: #2b2b2d;
  font: 700 1.8rem/1 "Open Sans", sans-serif;
  text-transform: uppercase;
}

.carousel-title {
  margin-bottom: 2.2rem;
  padding: 0;
  color: #2b2b2d;
  font: 700 1.7rem/1;
  letter-spacing: -.01rem;
  text-transform: uppercase;
}

.light-title {
  margin-bottom: 2rem;
  font-weight: 300;
}

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

.lead {
  margin-bottom: 2rem;
  color: #21293c;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  h1, .h1 {
    font-size: 3.2rem;
  }

  h2, .h2 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  h1, .h1 {
    font-size: 3.6rem;
  }
}
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.page-wrapper {
  position: relative;
  transition: transform .35s;
}
.mmenu-active .page-wrapper {
  transform: translateX(250px);
}

.main {
  flex: 1 1 auto;
}

.row.row-sm {
  margin-right: -10px;
  margin-left: -10px;
}
.row.row-sm [class*='col-'] {
  padding-right: 10px;
  padding-left: 10px;
}

.ajax-overlay {
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1041;
}

@media screen and (min-width: 1200px) {
  .padding-left-lg {
    padding-left: 35px;
  }

  .padding-right-lg {
    padding-right: 35px;
  }

  .col-xl-5col {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-xl-7col {
    -ms-flex: 0 0 14.2857%;
    flex: 0 0 14.2857%;
    max-width: 14.2857%;
  }

  .col-xl-8col {
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 100%;
  }
}
.header {
  background-color: #08c;
}
.header .container,
.header .container-fluid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}

.navbar-nav .nav-link {
  padding-left:20px;
  padding-right:20px;
}

.header-left,
.header-center,
.header-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.header-right {
  margin-left: auto;
}

.header-center {
  margin-right: auto;
  margin-left: auto;
}

.header-top {
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: .025rem;
  color: #bce1f4;
  padding-top: .4rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid #0e95d9;
}
.header-top a {
  padding-top: .5rem;
  padding-bottom: .5rem;
  color: inherit;
}

.welcome-msg {
  display: none;
  position: relative;
  margin: .3rem 2rem .3rem 0;
  text-transform: uppercase;
}
.welcome-msg::after {
  position: absolute;
  top: 50%;
  right: -14px;
  height: 11px;
  margin-top: -5.5px;
  border-right: 1px solid;
  content: '';
  opacity: .8;
}

.header-middle {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.logo {
  display: block;
}
.logo img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.header-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  padding-top: .4rem;
  padding-bottom: .4rem;
  transition: all .25s;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  z-index: 20;
}

.header .btn-remove::before {
  display: none;
}

.header-search {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 1;
}
.header-search .header-search-wrapper {
  display: none;
  position: relative;
  align-items: stretch;
  width: 100%;
  min-width: 250px;
  border-radius: 20px;
  background-color: #fff;
  overflow: visible;
}
.header-search .header-search-wrapper::after {
  display: block;
  clear: both;
  content: '';
}
.header-search .header-search-wrapper.show {
  display: flex;
}
.header-search form {
  margin: 0;
}
.header-search .select-custom {
  flex: 0 0 142px;
  margin: 0;
}
.header-search .select-custom::after {
  right: 1.1rem;
  color: #8d8d8d;
  font-size: 1.4rem;
}
.header-search .form-control,
.header-search select {
  height: 38px;
  margin: 0;
  background-color: #fff;
  font: 400 1.3rem/1.5 "Open Sans", sans-serif;
}
.header-search .form-control {
  flex: 1 1 auto;
  width: 100%;
  margin: 0;
  padding: 4px 22px;
  border: 0;
  border-radius: 20px 0 0 20px;
  color: #8d8d8d;
  line-height: 20px;
  box-shadow: none;
}
.header-search .form-control::-webkit-input-placeholder {
  color: #8d8d8d;
}
.header-search .form-control::-moz-placeholder {
  color: #8d8d8d;
}
.header-search .form-control:-ms-input-placeholder {
  color: #8d8d8d;
}
.header-search .form-control::-ms-input-placeholder {
  color: #8d8d8d;
}
.header-search .form-control::placeholder {
  color: #8d8d8d;
}
.header-search select {
  width: 100%;
  padding: 1px 20px 1px 10px;
  border: 0;
  border-right: 1px solid #dbe0e2;
  border-radius: 0;
  color: #8d8d8d;
  line-height: 36px;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.header-search .search-toggle {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1;
  min-width: 2.5rem;
  padding: 1rem 0;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.header-search .search-toggle i {
  display: inline-block;
  margin-bottom: 2px;
}
.header-search .btn {
  flex: 0 0 50px;
  min-width: 0;
  max-width: 50px;
  height: 38px;
  margin: 0;
  padding: 0 3px 0 0;
  border: 0;
  border-left: 1px solid #dbe0e2;
  background: transparent;
  background-color: transparent;
  color: #606669;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
.header-search .btn i::before {
  margin: 0;
}
.header-search .btn:hover, .header-search .btn:focus {
  background-color: transparent;
  color: #08c;
}

.header-bottom {
  background-color: #f4f4f4;
}
.header-bottom .container,
.header-bottom .container-fluid {
  position: relative;
}
.header-bottom .logo,
.header-bottom .cart-dropdown {
  display: none;
}
.header-bottom .logo {
  margin-right: 2.5rem;
}
.header-bottom .logo img {
  width: auto;
  max-height: 32px;
}

.mobile-menu-toggler {
  border: 0;
  background: transparent;
  color: #fff;
  padding: 1rem .5rem;
  font-size: 2.1rem;
  line-height: 1;
  display: none;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 1.5rem;
  cursor: pointer;
}
.mobile-menu-toggler i::before {
  margin: 0;
}

@media screen and (min-width: 576px) {
  .welcome-msg {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .welcome-msg {
    margin-right: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .header-search .search-toggle {
    display: none;
  }
  .header-search form {
    width: 450px;
  }
  .header-search .header-search-wrapper {
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .header-middle .header-center {
    padding-right: 90px;
  }
}
@media screen and (max-width: 991px) {
  .header-search {
    margin-left: 5px;
  }
  .header-search .header-search-wrapper {
    position: absolute;
    top: 100%;
    left: -70px;
    width: 450px;
    margin-top: .3rem;
    border-width: 5px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.075);
    z-index: 99;
  }
  .header-search .header-search-wrapper::before {
    display: block;
    position: absolute;
    top: -25px;
    left: 67px;
    width: 20px;
    height: 20px;
    border: 10px solid transparent;
    border-bottom-color: #dbe0e2;
    content: '';
  }

  .header-middle .header-right {
    margin-left: 1rem;
  }

  .header-center {
    margin-right: 0;
    margin-left: auto;
  }

  .header-bottom {
    display: none;
  }

  .mobile-menu-toggler {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .header-middle {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .header-contact {
    display: none;
  }

  .header-search .header-search-wrapper {
    width: 380px;
  }
  .header-search .select-custom {
    flex: 0 0 132px;
  }
  .header-search .btn {
    flex: 0 0 40px;
  }

  .mobile-menu-toggler {
    margin-right: 1rem;
  }

  .header-middle .header-right {
    margin-left: .7rem;
  }
}
@media screen and (max-width: 479px) {
  .header-middle {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .header-search .header-search-wrapper {
    width: 320px;
  }
}
@media (max-width: 360px) {
  .header-search .header-search-wrapper {
    width: 240px;
  }
  .header-search .select-custom {
    display: none;
  }
}
.main-nav {
  width: 100%;
}

.menu,
.menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu::after {
  display: block;
  clear: both;
  content: '';
}
.menu li {
  position: relative;
}
.menu li.megamenu-container {
  position: static;
}
.menu > li {
  float: left;
}
.menu ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
}
.menu ul ul {
  top: -1rem;
  left: 100%;
}

.menu a {
  display: block;
  position: relative;
  text-decoration: none;
}

.menu li:hover > ul,
.menu li.show > ul,
.menu li:hover > .megamenu,
.menu li.show > .megamenu {
  display: block;
}

.menu li {
  padding-right: 1rem;
  padding-left: 1rem;
}
.menu li a {
  font-weight: 600;
  font-size: 1.2rem;
  color: #696969;
  text-transform: uppercase;
  display: block;
  padding: .7rem 1rem;
  white-space: nowrap;
  transition: background 0s;
}
.menu li .menu-title {
  margin-top: 1.25rem;
  margin-bottom: 0;
  color: #434d53;
  letter-spacing: -.01rem;
  text-transform: uppercase;
}
.menu li .menu-title a {
  padding: .7rem 2rem;
  color: #434d53;
  font-size: 1.3rem;
  font-weight: 700;
}
.menu li .menu-title a:hover, .menu li .menu-title a:focus {
  text-decoration: underline;
}
.menu > li {
  padding-right: 0;
  padding-left: 0;
}
.menu > li > a {
  font-weight: 700;
  background-color: transparent;
  color: #465157;
  padding: 1.25rem 1.5rem;
  letter-spacing: .01rem;
}
.menu.sf-arrows > li > a.sf-with-ul {
  padding-right: 2.8rem;
}
.menu.sf-arrows > li > a.sf-with-ul::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border-width: 0 10px 7px;
  border-style: solid;
  border-color: transparent transparent #fff;
  content: '';
  opacity: 0;
  visibility: hidden;
}
.menu.sf-arrows .sf-with-ul {
  position: relative;
}
.menu.sf-arrows .sf-with-ul::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-top: -1px;
  transform: translateY(-50%);
  font-family: 'porto';
  font-size: 1.3rem;
  line-height: 1;
  content: '\e81c';
}
.menu.sf-arrows ul .sf-with-ul::after {
  right: 1rem;
  content: '\e81a';
}
.menu .megamenu,
.menu ul {
  background-color: #fff;
  box-shadow: 0 29px 29px rgba(0, 0, 0, 0.1);
}
.menu ul {
  min-width: 240px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.menu li:hover > a,
.menu li.show > a,
.menu li.active > a {
  background-color: #f4f4f4;
  color: #696969;
}
.menu > li:hover > a,
.menu > li.show > a,
.menu > li.active > a {
  border-color: #08c;
  color: #08c;
}
.menu.sf-arrows > li.show > a.sf-with-ul::before {
  opacity: 1;
  visibility: visible;
}
.menu .show > ul,
.menu .show > .megamenu {
  opacity: 1 !important;
}

.side-menu-container {
  display: none;
  margin-bottom: 3rem;
  border: 1px solid #dae2e6;
  border-radius: .2rem;
}
.side-menu-container h2 {
  margin: 0;
  padding: 1.4rem 2.5rem;
  border-bottom: 1px solid #dae2e6;
  background-color: #f4f4f4;
  color: #465157;
  font: 700 1.3rem/1 "Open Sans", sans-serif;
  text-transform: uppercase;
}

.menu.menu-vertical > li {
  margin-right: -1px;
  margin-left: -1px;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  float: none;
}
.menu.menu-vertical > li > a {
  display: block;
  padding: .6rem 1.2rem;
  transition: background 0s;
  border-top: 1px solid #e6ebee;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .005rem;
  text-transform: capitalize;
}
.menu.menu-vertical > li:first-child > a {
  border-top: 0;
}
.menu.menu-vertical > li i {
  margin-left: 12px;
}
.menu.menu-vertical li {
  transition: background 0s;
}
.menu.menu-vertical li.megamenu-container {
  position: relative;
}
.menu.menu-vertical ul,
.menu.menu-vertical .megamenu {
  top: 0;
  left: 100%;
  margin-left: -1px;
}
.menu.menu-vertical .megamenu:not(.megamenu-fixed-width) {
  width: 721px;
}
.menu.menu-vertical ul ul {
  top: -1rem;
}
.menu.menu-vertical.sf-arrows > li > a.sf-with-ul {
  padding-right: 2.8rem;
}
.menu.menu-vertical.sf-arrows > li > a.sf-with-ul::before {
  top: 50%;
  right: -14px;
  bottom: auto;
  left: auto;
  margin: -10px 0 0;
  border-width: 10px 7px 10px 0;
  transform: rotate(180deg);
  border-color: transparent #fff transparent transparent;
}
.menu.menu-vertical.sf-arrows .sf-with-ul {
  position: relative;
}
.menu.menu-vertical.sf-arrows .sf-with-ul::after {
  top: 50%;
  right: 1.2rem;
  margin-top: -1px;
  content: '\e81a';
}
.menu.menu-vertical > li:hover,
.menu.menu-vertical > li.show,
.menu.menu-vertical > li.active {
  background-color: #08c;
}
.menu.menu-vertical > li:hover > a,
.menu.menu-vertical > li.show > a,
.menu.menu-vertical > li.active > a {
  border-color: #08c;
  background-color: #08c;
  color: #fff;
}

@media screen and (min-width: 992px) {
  .side-menu-container {
    display: block;
  }

  .side-menu-container h2 {
    padding: 1.75rem 3rem;
    font-size: 1.4rem;
  }

  .menu.menu-vertical > li {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .menu.menu-vertical > li > a {
    padding: 1rem 1.2rem;
    font-size: 1.4rem;
  }
  .menu.menu-vertical .megamenu:not(.megamenu-fixed-width) {
    width: 856px;
  }
  .menu.menu-vertical.sf-arrows > li > a.sf-with-ul::before {
    left: -20px;
    right:auto;
  }
}
@media screen and (min-width: 1280px) {
  .menu.menu-vertical .megamenu:not(.megamenu-fixed-width) {
    width: 901px;
  }
}
@media screen and (max-width: 1199px) {
  .menu.menu-vertical .megamenu:not(.megamenu-fixed-width) .col-lg-4 {
    display: none;
  }
  .menu.menu-vertical .megamenu:not(.megamenu-fixed-width) .col-lg-8 {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
  }
  .menu.menu-vertical .megamenu:not(.megamenu-fixed-width) .col-lg-8 .col-lg-4 {
    display: block;
  }
}
.mobile-menu-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 250px;
  transform: translateX(-100%);
  transition: all .35s;
  background-color: #1d1e20;
  font-size: 1.2rem;
  line-height: 1.5;
  box-shadow: 0.1rem 0 0.6rem 0 rgba(50, 50, 50, 0.65);
  visibility: hidden;
  z-index: 1001;
  overflow-y: auto;
}
.mmenu-active .mobile-menu-container {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-container .social-icons {
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
}
.mobile-menu-container .social-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0;
  border: 0;
  background-color: transparent;
  font-size: 1.5rem;
}
.mobile-menu-container .social-icon + .social-icon {
  margin-left: .3rem;
}
.mobile-menu-container .social-icon:hover, .mobile-menu-container .social-icon:focus {
  background-color: transparent;
  color: #fafafa;
}

.mobile-menu-wrapper {
  position: relative;
  padding: 4.2rem 0 3rem;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .4rem;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 9;
}

.mobile-menu-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all .4s;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.mmenu-active .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  margin: 0 0 2rem;
  padding: 0;
}

.mobile-menu {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #242527;
  list-style: none;
}
.mobile-menu > li > a {
  text-transform: uppercase;
}
.mobile-menu li {
  display: block;
  position: relative;
  border-top: 1px solid #242527;
}
.mobile-menu li a {
  display: block;
  position: relative;
  margin-right: 1.5rem;
  padding: 1.1rem 0 1.1rem 1.5rem;
  color: #fff;
}
.mobile-menu li a:hover, .mobile-menu li a:focus {
  color: #08c;
  text-decoration: none;
}
.mobile-menu li.open > a, .mobile-menu li.active > a {
  color: #08c;
}
.mobile-menu li ul {
  display: none;
  margin: 0;
  padding: 0;
}
.mobile-menu li ul li a {
  padding-left: 2.5rem;
}
.mobile-menu li ul ul li a {
  padding-left: 3.5rem;
}

@-webkit-keyframes fixedHeader {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fixedHeader {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  flex: 0 0 auto;
  color: #a8a8a8;
  background-color: #272723;
  font-size: 1.3rem;
  line-height: 1.4;
}
.footer .social-icon {
  color: #fff;
  background-color: #33332f;
  margin-bottom: 0;
  width: 3.7rem;
  height: 3.7rem;
  font-size: 1.4rem;
}
.footer .social-icon + .social-icon {
  margin-left: .4rem;
}
.footer .social-icon:hover, .footer .social-icon:focus {
  background-color: #08c;
  color: #fff;
}
.footer .contact-info {
  padding: 0;
  margin-bottom: 0;
}

.footer-middle {
  padding: 5.8rem 0 1.2rem;
}

.footer-middle .container {
  position: relative;
}

.footer-ribbon {
  position: absolute;
  padding: 1rem;
  left: 1.5rem;
  top: -7.5rem;
  color: #fff;
  font-size: 2.1rem;
  min-width: 13rem;
  line-height: 1;
  letter-spacing: .01em;
  background-color: #08c;
  text-align: center;
}
.footer-ribbon::before {
  display: block;
  position: absolute;
  top: 0;
  right: -1.5rem;
  width: 0;
  height: 0;
  content: '';
  border-left: 15px solid #069;
  border-top: 17px solid transparent;
}

.footer .widget-title {
  color: #fff;
  font-weight: 600;
  font: 700 1.6rem/1.1 "Open Sans", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1.4rem;
}

.footer .widget {
  margin-bottom: 3rem;
}

.footer .links {
  margin-bottom: 0;
}

.footer .links li {
  position: relative;
  margin-bottom: .8rem;
}

.footer a {
  color: inherit;
}

.footer a:hover,
.footer a:focus {
  color: #fff;
  text-decoration: underline;
}

.contact-info li {
  position: relative;
  line-height: 1.4;
  margin-bottom: 1.3rem;
}

.contact-info li:last-child {
  margin-bottom: 1.8rem;
}

.contact-info-label {
  display: block;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

.footer-bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 1.8rem;
  padding-bottom: 4.1rem;
  border-top: 1px solid #3d3d38;
}

#scroll-top {
  height: 40px;
  position: fixed;
  right: 15px;
  width: 40px;
  z-index: 9999;
  bottom: 0;
  background-color: #404040;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 11px 0;
  visibility: hidden;
  opacity: 0;
  border-radius: 0 0 0 0;
  transition: all .3s;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

#scroll-top:hover,
#scroll-top:focus {
  background-color: #555;
}

#scroll-top.fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 992px) {
  .footer-middle {
    padding-top: 6.8rem;
    padding-bottom: 1.2rem;
  }

  .footer-ribbon {
    top: -8.5rem;
  }

  .footer .widget-newsletter {
    margin-top: 0;
  }

  .footer-bottom {
    flex-direction: row;
  }

  .footer-copyright {
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
  }

  .footer-payments {
    margin-bottom: 0;
    margin-right: 0;
  }

  .footer-bottom .contact-info {
    margin-bottom: 0;
    margin-right: 0;
  }
}
.product-wrapper {
  overflow: hidden;
}
.product-wrapper .category-grid {
  margin-bottom: -1px;
}

.product {
  position: relative;
  margin-bottom: 2.5rem;
}

.product-image-container {
  position: relative;
  display: block;
  background-color: #fafafa;
  border: .1rem solid #e8e8e8;
  margin-bottom: 2.4rem;
  transition: all .3s;
}

.product:not(.product-sm):hover .product-image-container {
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.1);
}

.product-image {
  display: block;
}

.product-image::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.07);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.product-image img {
  display: block;
  width: 100%;
  height: auto;
}

.btn-quickview {
  display: inline-block;
  font: 400 1.3rem/1 "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .05rem;
  color: #fff;
  background-color: rgba(43, 43, 43, 0.8);
  padding: 1.85rem 1.5rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  text-decoration: none;
  text-align: center;
}

.product-image-container .btn-quickview {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.product:hover .product-image::after,
.product:hover .btn-quickview {
  opacity: 1;
  visibility: visible;
}

.btn-quickview:hover,
.btn-quickview:focus,
.product:hover .btn-quickview:hover,
.product:hover .btn-quickview:focus {
  color: #fff;
  text-decoration: none;
  opacity: .9;
}

.product-details {
  text-align: center;
}

.product-title {
  font: 400 1.4rem/1.25 "Open Sans", sans-serif;
  color: #5b5b5f;
  letter-spacing: .01rem;
  margin-bottom: .7rem;
}

.product-title a {
  color: inherit;
}

.price-box {
  font-size: 0;
  font: 400 0/1 "Oswald", sans-serif;
  color: #465157;
  margin-bottom: 1.9rem;
}

.product-price {
  font-size: 1.8rem;
}

.old-price {
  color: #999;
  font-size: 1.5rem;
  text-decoration: line-through;
}
.old-price + .product-price {
  margin-left: .6rem;
}

.product-action {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-label {
  position: absolute;
  z-index: 1;
  top: .8em;
  right: .8em;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  padding: .5rem;
  min-width: 46px;
  background-color: #08c;
  color: #fff;
}
.product-label.label-hot, .product-label.label-new {
  background-color: #62b959;
}
.product-label.label-sale {
  background-color: #e27c7c;
}
.product-label + .product-label {
  top: 3.6rem;
}

/* Prouct small*/
.product.product-sm {
  margin-bottom: 2.7rem;
}

.product-sm::after {
  display: block;
  clear: both;
  content: '';
}
.product-sm .product-image-container {
  max-width: 80px;
  margin-bottom: 0;
  float: left;
}
.product-sm .product-image-container a::after {
  display: none;
}
.product-sm .product-details {
  margin-left: 102px;
  text-align: left;
  padding: .2rem 0 0;
}
.product-sm .price-box {
  margin-bottom: 0;
  padding: 0;
  border: 0;
}
.product-sm .product-title {
  margin-bottom: .4rem;
  color: #5b5b5f;
  font-size: 1.4rem;
}
.product-sm .product-title a {
  color: inherit;
}
.product-sm .ratings-container {
  margin-bottom: .8rem;
}
.product-sm .ratings-container .product-ratings,
.product-sm .ratings-container .ratings {
  font-size: 1.1rem;
}
.product-sm .ratings-container .product-ratings {
  height: 11px;
}
.product-sm .old-price {
  font-size: 1.3rem;
}
.product-sm .old-price + .product-price {
  margin-left: .5rem;
}
.product-sm .product-price {
  font-size: 1.5rem;
}
.product-sm:hover .product-image,
.product-sm:hover .product-details {
  transform: translateY(0) !important;
}

.product-list-wrapper::after {
  display: block;
  clear: both;
  content: '';
}
.product-list-wrapper .product-title {
  margin: 0 0 1rem;
  font-size: 1.8rem;
}
.product-list-wrapper .product-details {
  padding: 2rem 0 0;
  color: #8a8a8a;
  font-size: 1.4rem;
  text-align: left;
}
.product-list-wrapper .product-details p {
  margin-bottom: 1.3rem;
}
.product-list-wrapper .product-details p a {
  color: #08c;
}
.product-list-wrapper .price-box {
  margin-bottom: 1.2rem;
}
.product-list-wrapper .product-action {
  justify-content: flex-start;
}
.product-list-wrapper .paction.add-wishlist {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.product-list-wrapper .paction.add-compare {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.category-grid [class*='col-'] {
  border-right: 1px solid #e3e4e4;
  border-bottom: 1px solid #e3e4e4;
}
.category-grid [class*='col-']:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.grid-product {
  padding: 5rem 0 0;
  transition: all .3s;
}
.grid-product:hover {
  padding: 1rem 0 4rem;
}
.grid-product .product-image-container {
  border: 0;
}

.product-grid-action {
  margin: 0;
  transition: all .3s;
  opacity: 0;
  visibility: hidden;
}

.grid-product:hover .product-grid-action {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 479px) {
  .paction.add-wishlist, .paction.add-compare {
    display: none;
  }

  .paction + .paction {
    margin-left: 0;
  }
}
@media screen and (min-width: 576px) {
  .product {
    margin-bottom: 3.5rem;
  }
  .product.product-list-wrapper {
    margin-bottom: 3rem;
  }

  .product-list-wrapper .product-image-container {
    width: 30%;
    margin-bottom: 0;
    float: left;
  }
  .product-list-wrapper .product-details {
    width: 70%;
    padding: 0 0 0 2rem;
    float: left;
  }
}
@media screen and (min-width: 768px) {
  .product {
    margin-bottom: 4.3rem;
  }

  .product-list-wrapper .product-image-container {
    width: 26%;
  }
  .product-list-wrapper .product-details {
    width: 74%;
  }
  .product-list-wrapper .product-title {
    margin-top: .4rem;
  }
}
@media screen and (min-width: 1200px) {
  .row.row-sm .col-xl-7col, .row.row-sm .col-xl-8col {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .col-xl-2 .add-compare, .col-xl-2 .add-wishlist, .col-xl-7col .add-compare, .col-xl-7col .add-wishlist, .col-xl-8col .add-compare, .col-xl-8col .add-wishlist {
    display: none;
  }
  .col-xl-2 .price-box, .col-xl-7col .price-box, .col-xl-8col .price-box {
    margin-bottom: 1.8rem;
  }
  .col-xl-2 .product-image-container, .col-xl-7col .product-image-container, .col-xl-8col .product-image-container {
    margin-bottom: 1rem;
  }
  .col-xl-2 .paction + .paction, .col-xl-7col .paction + .paction, .col-xl-8col .paction + .paction {
    margin-left: 0;
  }
}

.breadcrumb-nav {
  margin-bottom: 0;
}

.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding: 1.4rem 1.5rem 1.2rem;
}

.breadcrumb-item {
  text-transform: capitalize;
  font: 400 1.2rem/1.4 "Open Sans", sans-serif;
  letter-spacing: .025rem;
}
.breadcrumb-item i {
  font-size: 1.3rem;
  vertical-align: top;
  margin-top: -.2rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '\e819';
  font-family: 'porto';
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.3rem;
  vertical-align: middle;
  margin-top: -.3rem;
  color: #8e8e8e;
}

.breadcrumb-item a,
.breadcrumb-item.active {
  color: #8e8e8e;
}

@font-face {
  font-family: 'porto';
  src: url("../fonts/porto.eot?64334846");
  src: url("../fonts/porto.eot?64334846#iefix") format("embedded-opentype"), url("../fonts/porto.woff2?64334846") format("woff2"), url("../fonts/porto.woff?64334846") format("woff"), url("../fonts/porto.ttf?64334846") format("truetype"), url("../fonts/porto.svg?64334846#porto") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^='icon-']::before, [class*=' icon-']::before {
  display: inline-block;
  width: 1em;
  margin-right: .2em;
  margin-left: .2em;
  font-family: 'porto';
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1em;
  text-align: center;
  text-decoration: inherit;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: none;
}

.icon-cancel::before {
  content: '\e800';
}

.icon-spin2::before {
  content: '\e801';
}

.icon-spin3::before {
  content: '\e802';
}

.icon-spin4::before {
  content: '\e803';
}

.icon-spin5::before {
  content: '\e804';
}

.icon-spin6::before {
  content: '\e805';
}

.icon-angle-up::before {
  content: '\e81b';
}

.icon-angle-down::before {
  content: '\e81c';
}

.icon-down::before {
  content: '\e81d';
}

.icon-left::before {
  content: '\e81e';
}

.icon-right::before {
  content: '\e81f';
}

.icon-up::before {
  content: '\e820';
}

.icon-angle-double-left::before {
  content: '\e821';
}

.icon-angle-double-right::before {
  content: '\e822';
}

.icon-angle-double-up::before {
  content: '\e823';
}

.icon-angle-double-down::before {
  content: '\e824';
}

.icon-ok::before {
  content: '\e84e';
}

.icon-chevron-left::before {
  content: '\e84f';
}

.icon-chevron-right::before {
  content: '\e850';
}

.icon-home::before {
  content: '\e883';
}

.icon-menu::before {
  content: '\e85d';
}

.icon-twitter::before {
  content: '\f099';
}

.icon-facebook::before {
  content: '\f09a';
}

.icon-spinner::before {
  content: '\f110';
}

.icon-instagram::before {
  content: '\f16d';
}

.icon-sliders::before {
  content: '\f1de';
}

.icon-question-circle-o::before {
  content: '\f29c';
}

form {
  margin-bottom: 3.5rem;
}
form h2 {
  margin-top: 3.4rem;
  margin-bottom: 2.3rem;
}

label {
  margin: 0 0 .6rem;
  color: #6e7075;
  font-size: 1.4rem;
  font-weight: 400;
}

.required-field > label::after {
  margin: 0 0 0 .45rem;
  color: #e02b27;
  font-size: 1.2rem;
  content: '*';
}

.required {
  color: #e02b27;
  font-size: 1.2rem;
}

.btn {
  padding: 1.25rem 2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "Oswald", sans-serif;
  letter-spacing: .1rem;
  text-transform: uppercase;
  border-radius: 0;
  min-width: 124px;
  transition: all .3s;
}

.btn-sm {
  font-size: 1.3rem;
  padding: 1rem 1.5rem;
  letter-spacing: 1px;
  min-width: 90px;
}

.btn-link {
  padding-top: 0;
  padding-bottom: 0;
  color: #282d3b;
  text-transform: initial;
  letter-spacing: 0;
  font-size: 13px;
  min-width: 0;
  font-family: "Open Sans", sans-serif;
}
.btn-link:hover, .btn-link:focus {
  color: #282d3b;
  text-decoration: underline;
}

.btn-md {
  padding: 1rem 2.4rem;
  font-size: 12px;
  letter-spacing: .025em;
  text-shadow: none;
}

.btn-primary {
  border-color: #08c;
  background-color: #08c;
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary.focus {
  border-color: #00a3f5;
  background-color: #00a3f5;
  color: #fff;
  box-shadow: none;
}
.btn-primary.disabled, .btn-primary:disabled {
  border-color: #08c;
  background-color: #08c;
  color: #fff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  border-color: #005e8c;
  background-color: #006699;
  color: #fff;
}

.btn-secondary {
  border-color: #282d3b;
  background-color: #282d3b;
  color: #fff;
  box-shadow: none;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary.focus {
  border-color: #384053;
  background-color: #384053;
  color: #fff;
  box-shadow: none;
}
.btn-secondary.disabled, .btn-secondary:disabled {
  border-color: #282d3b;
  background-color: #282d3b;
  color: #fff;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  border-color: #0e1015;
  background-color: #13161d;
  color: #fff;
}

.btn-dark {
  border-color: #010204;
  background-color: #010204;
  color: #fff;
  box-shadow: none;
}
.btn-dark:hover, .btn-dark:focus, .btn-dark.focus {
  border-color: #1a1a1a;
  background-color: #1a1a1a;
  color: #fff;
  box-shadow: none;
}
.btn-dark.disabled, .btn-dark:disabled {
  border-color: #010204;
  background-color: #010204;
  color: #fff;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  border-color: #1a1a1a;
  background-color: #1a1a1a;
  color: #fff;
}

.btn-outline {
  border-color: #ccc;
  background-color: transparent;
  background-image: none;
  color: #ccc;
}
.btn-outline:hover, .btn-outline.focus {
  border-color: #08c;
  background-color: transparent;
  color: #282d3b;
  box-shadow: none;
}
.btn-outline.disabled, .btn-outline:disabled {
  background-color: transparent;
  color: #ccc;
}
.btn-outline:not(:disabled):not(.disabled):active, .btn-outline:not(:disabled):not(.disabled).active, .show > .btn-outline.dropdown-toggle {
  border-color: #08c;
  background-color: transparent;
  color: #282d3b;
}

.btn-outline-secondary {
  border-color: #ccc;
  background-color: transparent;
  background-image: none;
  color: #777;
}
.btn-outline-secondary:hover, .btn-outline-secondary.focus {
  border-color: #08c;
  background-color: #08c;
  color: #fff;
  box-shadow: none;
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  background-color: transparent;
  color: #777;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  border-color: #08c;
  background-color: #08c;
  color: #fff;
}

.btn-outline-dark {
  border-color: #efefef;
  background-color: transparent;
  background-image: none;
  color: #05131c;
}
.btn-outline-dark:hover, .btn-outline-dark.focus {
  border-color: #08c;
  background-color: #08c;
  color: #fff;
  box-shadow: none;
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  background-color: transparent;
  color: #05131c;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  border-color: #08c;
  background-color: #08c;
  color: #fff;
}

.btn-social-login {
  display: flex;
  margin-right: 10px;
  margin-left: 10px;
  background-color: #08c;
  font-family: Oswald;
  text-decoration: none;
  text-transform: uppercase;
}
.btn-social-login span, .btn-social-login i {
  color: #fff;
}
.btn-social-login i {
  margin-top: -1px;
  padding-right: 6px;
}

.btn-facebook {
  background: #3a589d;
}

.btn-twitter {
  background: #1aa9e1;
}

.owl-dots .owl-dot, .owl-nav .owl-prev, .owl-nav .owl-next {
  outline: none;
}

a:focus {
  outline: none;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.mfp-container .mfp-preloader,
.porto-loading-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: #08c;
  content: '';
  z-index: 2;
  border-image: none;
  -webkit-animation: spin .75s infinite linear;
  animation: spin .75s infinite linear;
}

.alert {
  margin-bottom: 2rem;
  padding: 1.4rem 1.5rem;
  border-radius: 0;
}
.alert.alert-intro {
  font-size: 1.5rem;
}

.modal form {
  margin: 0;
}
.modal form .form-group {
  max-width: 480px;
}
.modal form .form-control {
  max-width: 100%;
}

.modal-body {
  padding: 1.5rem;
}

.modal-content {
  border-radius: 0;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.35);
}

.modal-header,
.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.modal-title {
  font-weight: 400;
}

.close {
  font-size: 2.2rem;
}

@media screen and (min-width: 576px) {
  .modal-content {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .modal-body {
    max-height: calc(100vh - 210px);
    padding-top: 2rem;
    overflow-y: auto;
  }

  .modal-header,
  .modal-footer,
  .modal-body {
    padding-right: 2em;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .modal-dialog {
    max-width: 800px;
  }

  .modal-header,
  .modal-footer,
  .modal-body {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media screen and (max-width: 479px) {
  .modal-open,
  .modal-open .modal {
    padding-right: 0 !important;
  }
}

.social-icons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.social-icon {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #08c;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  opacity: 1;
}
.social-icon + .social-icon {
  margin-left: .5rem;
}
.social-icon:hover, .social-icon:focus {
  color: #fff;
  text-decoration: none;
  opacity: .85;
}
.social-icon.social-facebook {
  background-color: #3b5a9a;
  color: #fff;
}
.social-icon.social-twitter {
  background-color: #1aa9e1;
  color: #fff;
}
.social-icon.social-linkedin {
  background-color: #0073b2;
  color: #fff;
}
.social-icon.social-gplus {
  background-color: #dd4b39;
  color: #fff;
}
.social-icon.social-mail {
  background-color: #dd4b39;
  color: #fff;
}

.pagination {
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  border-radius: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  height: 3.2rem;
  font-size: 1.4rem;
  padding: 0 .3rem;
  line-height: 1.1;
  color: #706f6c;
  background-color: transparent;
  border: .1rem solid #e9e9e9;
}
.page-link.page-link-btn {
  display: -ms-inline-flex;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 0;
  height: 3.2rem;
  padding: 0;
  border: 0;
  color: #6f6e6b;
  font-size: 2rem;
}
.page-link.page-link-btn i {
  position: relative;
  top: -.1rem;
}
.page-link.page-link-btn i::before {
  margin-right: 0;
  margin-left: 0;
}
.page-link:hover, .page-link:focus {
  box-shadow: none;
  color: #08c;
  text-decoration: none;
  background-color: transparent;
}

.page-item + .page-item {
  margin-left: .7rem;
}
.page-item span {
  padding-right: .3rem;
  padding-left: .3rem;
}
.page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.page-item.active .page-link {
  border-color: #e9e9e9;
  background-color: transparent;
  color: #08c;
}
.page-item.disabled .page-link {
  color: #eaeaea;
}
.page-item.disabled .page-link.page-link-btn {
  color: #eaeaea;
  border-color: #eaeaea;
  background-color: transparent;
}

.home-slider {
  margin-bottom: 2rem;
  height: auto;
  position: relative;
  background-color: #ccc;
}
.home-slider::after, .home-slider::before {
  position: absolute;
  top: calc(50% - 2rem);
  left: calc(50% - 2rem);
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: #08c;
  border-image: none;
  content: '';
}
.home-slider::before {
  -webkit-animation: spin 1s infinite ease;
  animation: spin 1s infinite ease;
  z-index: 4;
}
.home-slider::after {
  -webkit-animation: spin .5s infinite linear;
  animation: spin .5s infinite linear;
  z-index: 5;
}
.home-slider.loaded::after, .home-slider.loaded::before {
  display: none;
}

.home-slide, .category-slide {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  background-color: #ccc;
}
.home-slide .slide-bg, .category-slide .slide-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: none !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 2;
}

.owl-carousel-lazy.owl-carousel {
  display: block;
}
.owl-carousel-lazy.owl-carousel .home-slide:first-child,
.owl-carousel-lazy.owl-carousel .owl-item:first-child .home-slide {
  display: block;
}
.owl-carousel-lazy.owl-carousel:not(.owl-loaded) > *:not(:first-child) {
  display: none;
}

.home-slide {
  position: relative;
}
.home-slide::before {
  display: block;
  width: 100%;
  padding-top: 42.7586206897%;
  content: '';
}

.home-slide-content {
  position: absolute;
  left: 0;
  padding-left: 3.4rem;
  z-index: 3;
  color: #585b5f;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.5;
}
.home-slide-content h1 {
  color: #2c373c;
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1.1;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: -.06rem;
  margin-bottom: .4rem;
  line-height: 1;
}
.home-slide-content h3 {
  color: #2c373c;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  margin-bottom: .1rem;
  letter-spacing: 0;
}
.home-slide-content h3 span {
  font-size: 2.2rem;
  font-family: "Oswald", sans-serif;
}
.home-slide-content p {
  margin-bottom: 2.5rem;
}
.home-slide-content .btn {
  padding: .7rem 1rem;
  font-weight: 400;
  font-size: 1.3rem;
  min-width: 112px;
  border-radius: .1rem;
}
.home-slide-content.text-white {
  color: #fff;
}
.home-slide-content.text-white h1, .home-slide-content.text-white h3 {
  color: #fff;
}

.home-slider.owl-carousel .owl-nav .owl-prev,
.home-slider.owl-carousel .owl-nav .owl-next {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 3rem;
  margin: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .3s;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: #fff;
  font-size: 3rem;
  font-weight: 100;
  line-height: 1;
}
.home-slider.owl-carousel .owl-nav .owl-prev i,
.home-slider.owl-carousel .owl-nav .owl-next i {
  margin-top: -.3rem;
}
.home-slider.owl-carousel .owl-nav .owl-prev i::before,
.home-slider.owl-carousel .owl-nav .owl-next i::before {
  margin: 0;
  border-radius: 0;
}

.home-slider.owl-carousel .owl-nav .owl-prev {
  left: 1.2rem;
}

.home-slider.owl-carousel .owl-nav .owl-next {
  right: 1.2rem;
}

.home-slider.owl-carousel .owl-nav .owl-prev:hover,
.home-slider.owl-carousel .owl-nav .owl-next:hover,
.home-slider.owl-carousel .owl-nav .owl-prev:focus,
.home-slider.owl-carousel .owl-nav .owl-next:focus {
  border-color: transparent;
  background-color: transparent;
  color: #08c;
}

.home-slider.owl-carousel .owl-dots {
  display: none;
  position: absolute;
  left: 3.4rem;
  bottom: 3.4rem;
  margin: 0;
  line-height: 0;
}

.owl-carousel .product:not(.product-sm) {
  margin-bottom: 0;
}

.owl-dots-top.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  top: -40px;
  margin: 0;
}
.owl-dots-top.owl-carousel.owl-theme .owl-nav.disabled + .owl-dots {
  margin: 0;
}

@media screen and (min-width: 576px) {
  .home-slide-content h1 {
    font-size: 4.4rem;
  }
  .home-slide-content h3 {
    font-size: 1.8rem;
  }
  .home-slide-content h3 span {
    font-size: 2.6rem;
  }
  .home-slide-content .btn {
    padding: 1.1rem 2rem;
    min-width: 132px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .home-slider {
    margin-bottom: 3rem;
    height: 373px;
  }

  .home-slide {
    height: 373px;
  }

  .home-slide-content {
    bottom: 7.8rem;
  }
  .home-slide-content p {
    margin-bottom: 4.5rem;
  }

  .home-slider.owl-carousel .owl-dots {
    display: block;
  }
}

.widget .owl-carousel .owl-nav {
  position: absolute;
  top: -4.2rem;
  right: -.4rem;
}
.widget .owl-carousel .owl-nav button.owl-next,
.widget .owl-carousel .owl-nav button.owl-prev {
  padding: 0 .4rem !important;
  border-radius: 0;
  color: #2b2b2d;
  font-size: 1.8rem;
  line-height: 1;
}
.widget .owl-carousel .owl-nav i::before {
  width: auto;
  margin: 0;
}

.category-grid {
  margin-top: -1rem;
}

.transparent-dots {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 1rem;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 80px;
  margin: 0;
  padding: 0;
  opacity: .5;
  z-index: 99;
}
.transparent-dots .active img, .transparent-dots img:hover {
  border: 1px solid #08c;
}

.owl-nav-simple.owl-carousel .owl-nav .owl-prev,
.owl-nav-simple.owl-carousel .owl-nav .owl-next {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 3rem;
  margin: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .3s;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: #21293c;
  font-size: 3rem;
  font-weight: 100;
  line-height: 1;
}
.owl-nav-simple.owl-carousel .owl-nav .owl-prev i,
.owl-nav-simple.owl-carousel .owl-nav .owl-next i {
  margin-top: -.3rem;
  line-height: 1;
}
.owl-nav-simple.owl-carousel .owl-nav .owl-prev i::before,
.owl-nav-simple.owl-carousel .owl-nav .owl-next i::before {
  margin: 0;
  border-radius: 0;
}
.owl-nav-simple.owl-carousel .owl-nav .owl-prev:hover, .owl-nav-simple.owl-carousel .owl-nav .owl-prev:focus,
.owl-nav-simple.owl-carousel .owl-nav .owl-next:hover,
.owl-nav-simple.owl-carousel .owl-nav .owl-next:focus {
  color: #08c;
}
.owl-nav-simple.owl-carousel .owl-nav .owl-prev {
  left: 1rem;
}
.owl-nav-simple.owl-carousel .owl-nav .owl-next {
  right: 1rem;
}

@media screen and (max-width: 991px) {
  .mobile-sidebar {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 260px;
    padding: 0;
    -webkit-transform: translate(-260px);
    transform: translate(-260px);
    transition: transform .2s ease-in-out 0s;
    background-color: #fff;
    z-index: 9999;
    overflow-y: auto;
  }

  .sidebar-opened .mobile-sidebar {
    -webkit-transform: translate(0);
    transform: translate(0);
    transition: transform .3s ease-in-out 0s;
  }

  .sidebar-opened .sidebar-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: .35;
    z-index: 8999;
  }

  .sidebar-product {
    margin: 0;
    padding: 2.5rem;
  }
}
.table.table-size thead tr th,
.table.table-size tbody tr td {
  border: 0;
  color: #21293c;
  font-size: 1.5rem;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.table.table-size thead tr th {
  padding: 2.8rem 1.5rem 1.7rem;
  background-color: #f4f4f2;
  font-weight: 600;
}
.table.table-size tbody tr td {
  padding: 1rem 1.5rem;
  background-color: #fff;
  font-weight: 700;
}
.table.table-size tbody tr td:first-child {
  font-weight: 600;
}
.table.table-size tbody tr:nth-child(2n) td {
  background-color: #ebebeb;
}

@media screen and (min-width: 992px) {
  .table.table-size thead tr th {
    padding-top: 4.2rem;
    padding-bottom: 2.8rem;
  }
  .table.table-size thead tr th,
  .table.table-size tbody tr td {
    padding-right: 3.5rem;
    padding-left: 3.5rem;
  }
}

.btn-remove::before {
  font-size: 1.8rem;
  font-weight: 600;
  content: 'x';
}

.btn-remove,
.btn-edit,
.btn-move {
  color: #08c;
}
.btn-remove:hover, .btn-remove:focus,
.btn-edit:hover,
.btn-edit:focus,
.btn-move:hover,
.btn-move:focus {
  color: #0099e6;
  text-decoration: none;
}

.btn-edit {
  margin-right: 1rem;
  font-size: 1.3rem;
}

.btn-move {
  font-size: 1.3rem;
  line-height: 2.5rem;
}
.btn-move:hover, .btn-move:focus {
  text-decoration: underline;
}

.sidebar {
  position: relative;
  font-size: 1.4rem;
}
.sidebar .widget {
  margin-bottom: 3rem;
}
.sidebar .sidebar-wrapper .widget:last-child {
  margin-bottom: 0;
  padding-bottom: 3rem;
}

.sidebar-wrapper {
  -webkit-backfac-visibility: hidden;
}

.widget-title {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #2b2b2d;
  margin: .5rem 0 1.3rem;
}

.widget form {
  margin-bottom: 0;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}
.list li.active {
  font-weight: 600;
}
.list li.active a {
  color: #2b2b2d;
}
.list li a {
  display: block;
  position: relative;
  padding: .9rem 0 .8rem 2rem;
  border-bottom: 1px solid #EDEDDE;
  color: #7a7d82;
  font-size: 1.4rem;
}
.list li a::before {
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  margin: .9rem 0 0 -1rem;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #333;
  content: '';
}
.list li a:hover, .list li a:focus {
  background-color: #eee;
  text-decoration: none;
}

.contact-info {
  margin-bottom: 3rem;
  padding-top: .5rem;
}
.contact-info > div {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.contact-info > div::after {
  display: block;
  clear: both;
  content: '';
}

.contact-info i {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  float: left;
  width: 4.3rem;
  height: 4.3rem;
  color: #fff;
  background-color: #08c;
  text-align: center;
  font-size: 1.8rem;
  border-radius: 0;
}

.contact-info p {
  margin-bottom: 0;
  margin-left: 5.5rem;
  line-height: 1.4;
}

/* Plugins */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: 0;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../images/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin: 0;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  color: #bfbfbf;
  font-size: 2rem;
}
.owl-theme .owl-nav [class*='owl-'] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #bfbfbf;
  margin: 0;
  font-size: 2rem;
  padding: 4px 7px;
  background: transparent;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*='owl-'] i::before {
  margin: 0;
  width: auto;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  background: transparent;
  color: #08c;
  text-decoration: none;
}
.owl-theme .owl-nav .owl-prev {
  left: 0;
}
.owl-theme .owl-nav .owl-next {
  right: 0;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 2.5rem;
}
.owl-theme .owl-dots {
  line-height: 1;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  margin: 2px 2px;
  background: transparent;
  display: block;
  -webkit-backface-visibility: visible;
  transition: all .3s ease;
  border: 0.2rem solid #d5d5d5;
  border-radius: 50%;
}
.owl-theme .owl-dots .owl-dot span::before {
  content: '';
  display: block;
  width: .4rem;
  height: .4rem;
  background-color: transparent;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #191e31;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  border-radius: 50%;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  border-color: #191e31;
  background: transparent;
}
.owl-theme .owl-dots .owl-dot.active span::before {
  opacity: 1;
  visibility: visible;
}
.owl-theme.owl-theme-light .owl-dots .owl-dot span {
  border-color: #b4caf4;
  background: transparent;
}
.owl-theme.owl-theme-light .owl-dots .owl-dot span::before {
  border-color: #b4caf4;
}
.owl-theme.owl-theme-light .owl-dots .owl-dot.active span, .owl-theme.owl-theme-light .owl-dots .owl-dot:hover span {
  border-color: #fff;
  background: transparent;
}
.owl-theme.owl-theme-light .owl-dots .owl-dot.active span::before {
  background: #fff;
}

.menu.menu-vertical > li > a {
  padding-right:0 !important;
}

a.logo > img {
  max-height:65px;
  width:auto;
}

a.logo {
  color:white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.4em;
}

.blog_content {
  background-color: white;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
  box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
  padding: 30px 47px 42px 50px;
  position: relative;
}