@import url('//fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,600i,700,700i,800,800i');
/**
***************************************************************
* AUTHOR : CKavArt
* PROJECT : Thron - Creative One Page Template
* Purchase : https://themeforest.net/user/c-kav 
*
* Copyright 2019-2020 CKavArt
* NOTE : This file licensed to CKavArt - https://themeforest.net/user/c-kav and it is strictly prohibited to copy or reuse it.
***************************************************************
*/
/**
*****************************************************************
* This file is licensed to CKavArt.
* It's not allowed to copy or reuse it Copyright CKavArt 2017-2018
* CKavArt : http://ckavart.com/
*****************************************************************
*/
/* 
TABLE OF CONTENTS
********************************************
- LOGO IMAGE LIST
- POP UP CONTENT
- TAB CONTROLS
-  |- TAB STYLE 1
-  |- TAB STYLE 2
-  |- TAB STYLE 3
-  |- TAB STYLE 4
- PROGRESS BARS
- FILTERS
- CAROUSEL CONTROLS
- ZOOM CAROUSEL
- SWIPER CAROUSEL
- SWIPER GALLERY
- ACCORDION
-  |- ACCORDION STYLE 1
-  |- ACCORDION STYLE 2
- COUNTDOWN CONTROLS
- INFO BOXES
- HOVER BOXES
- NAVIGATION
- PRICE TABLES

********************************************/
/* ALL BASE COLOR
------------------------------------*/
/* TYPOGRAPHY
------------------------------------*/
.v-align {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.c-align {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
/*.mr-mixin (@a, @i) when (@a = all) 		{ .mr-@{i} { margin: unit(@i, px);} }
.mr-mixin (@a, @i) when (@a = top) 		{ .mr-t-@{i} { margin-top: unit(@i, px); } }
.mr-mixin (@a, @i) when (@a = right) 	{ .mr-r-@{i}, .info-obj.img-r.g@{i} .info { margin-right: unit(@i, px); } }
.mr-mixin (@a, @i) when (@a = bottom) 	{ .mr-b-@{i}, .info-obj.img-t.g@{i} .img  { margin-bottom: unit(@i, px); } }
.mr-mixin (@a, @i) when (@a = left) 	{ .mr-l-@{i}, .info-obj.img-l.g@{i} .info { margin-left: unit(@i, px); } }
.mr-mixin (@a, @i) when (@a = tb)		{ .mr-tb-@{i} { margin-top: unit(@i, px); margin-bottom: unit(@i, px); } }
.mr-mixin (@a, @i) when (@a = lr)		{ .mr-lr-@{i} { margin-left: unit(@i, px); margin-right: unit(@i, px); } }*/
/*.pd-mixin (@a, @i) when (@a = all) 		{ .pd-@{i} { padding: unit(@i, px);} }
.pd-mixin (@a, @i) when (@a = top) 		{ .pd-t-@{i} { padding-top: unit(@i, px); } }
.pd-mixin (@a, @i) when (@a = right) 	{ .pd-r-@{i} { padding-right: unit(@i, px); } }
.pd-mixin (@a, @i) when (@a = bottom) 	{ .pd-b-@{i} { padding-bottom: unit(@i, px); } }
.pd-mixin (@a, @i) when (@a = left) 	{ .pd-l-@{i} { padding-left: unit(@i, px); } }
.pd-mixin (@a, @i) when (@a = tb)		{ .pd-tb-@{i} { padding-top: unit(@i, px); padding-bottom: unit(@i, px); } }
.pd-mixin (@a, @i) when (@a = lr)		{ .pd-lr-@{i} { padding-left: unit(@i, px); padding-right: unit(@i, px); } }*/
/*.wh-mixin (@a, @i) when (@a = wpx) 		{ .px-w@{i} { width: unit(@i, px); } }
.wh-mixin (@a, @i) when (@a = wmin-px) 	{ .min-px-w@{i} { min-width: unit(@i, px); } }*/
/*.wh-mixin (@a, @i) when (@a = hpx) 		{ .px-h@{i} { height: unit(@i, px); } }
.wh-mixin (@a, @i) when (@a = hmin-px) 	{ .min-px-h@{i} { min-height: unit(@i, px); } }*/
/* LAYOUT
------------------------------------*/
body.boxed {
  background-color: #f2f2f2;
}
body.boxed .main-wrapper {
  max-width: 1330px;
  min-width: 1200px;
  margin: auto;
  background-color: #fff;
}
.layout-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
/* We tell all items to be 100% width */
.contantarea,
.aside {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
}
.aside {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}
.layout-row._1 .contantarea {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}
.layout-row._2 .contantarea {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}
.layout-row._3 .contantarea {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}
/* We rely on source order for mobile-first approach
 * in this case:
 * 1. header
 * 2. nav
 * 3. main
 * 4. aside
 * 5. footer
 */
/* Large screens */
@media all and (min-width: 992px) {
  /* We invert order of first sidebar and main
	* And tell the main element to take twice as much width as the other two sidebars 
	*/
  .contantarea {
    -webkit-box-flex: 2;
        -ms-flex: 2 0px;
            flex: 2 0px;
  }
  .left-aside {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .contantarea {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .right-aside {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
/* TABLATE
------------------------------------*/
@media (min-width: 768px) and (max-width: 991px) {
  /* We tell both sidebars to share a row */
  .aside {
    -webkit-box-flex: 1;
        -ms-flex: 1 auto;
            flex: 1 auto;
    max-width: 100%;
  }
}
/* MOBILE
------------------------------------*/
@media (min-width: 200px) and (max-width: 767px) {
  .layout-row {
    display: block;
  }
  .aside {
    max-width: 100%;
  }
}
/* HEADER
------------------------------------*/
.main-head {
  z-index: 1000;
}
.main-head > .container-fluid,
.main-head > .container {
  position: relative;
}
.main-head > .container-fluid > .flex-row,
.main-head > .container > .flex-row {
  width: 100%;
}
.main-head .header-logo-wrp {
  display: inline-block;
  margin-bottom: -5px;
}
.main-head .header-logo {
  padding: 10px 0;
  height: auto;
  display: block;
}
.main-head .header-logo img {
  max-width: 100%;
}
.head-overlay {
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 99;
}
.header-sticky {
  -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.15);
  border-bottom: none !important;
}
.header-sticky > .bdr-b {
  border-bottom: none !important;
}
.header-sticky .sticky-hide {
  display: none;
}
.header-sticky .header-logo img {
  max-height: 30px;
}
.header-sticky > [class*="pd-tb"] {
  padding-top: 0;
  padding-bottom: 0;
}
.header-sticky .head-row,
.header-sticky[class*="px-h"],
.header-sticky[class*="min-px-h"],
.header-sticky > [class*="px-h"],
.header-sticky > [class*="min-px-h"] {
  min-height: inherit;
  height: auto;
}
.header-hide {
  opacity: 0;
  top: -100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header-show {
  opacity: 1;
  top: 0 !important;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/* NAVIGATION
------------------------------------*/
.menu {
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  /*----------  MAIN LEVEL  ----------*/
  /*----------  SECOND LEVEL MENU CONTAINER ----------*/
  /*----------  MOBILE MENU HENDLER ----------*/
}
.menu ul {
  list-style: none;
}
.menu li a:hover {
  opacity: 1;
}
.menu .menu-item {
  position: relative;
  /* flex-start | flex-end | center | space-between | space-around */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1px;
}
.menu .menu-item > a {
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 100%;
  white-space: normal;
  display: block;
  padding: 5px 15px;
  position: relative;
  border: 1px solid transparent;
}
.menu .menu-item.has-dropdown > a {
  padding-right: 25px;
  position: relative;
}
.menu .menu-item > .sub {
  position: absolute;
  z-index: 99;
  opacity: 0;
  -webkit-transition-property: none !important;
  transition-property: none !important;
  visibility: hidden;
  display: none;
}
.menu .menu-item > .sub:not([class*="pd-"]) {
  padding: 8px;
}
.menu .menu-item > .sub > li > a,
.menu .menu-item > .sub .dropdown > li > a {
  height: auto;
  font-size: 13px;
  padding: 5px 20px;
  display: block;
  position: relative;
}
.menu .has-dropdown {
  position: relative;
  /*----------  ALL OTHER DROP DOWN ----------*/
}
.menu .has-dropdown.active > .sub {
  display: block;
  opacity: 1;
  visibility: visible;
  top: 100%;
  left: 0px;
}
.menu .has-dropdown.active > .sub:not([class*="min-px-w"]) {
  min-width: 200px;
}
.menu .has-dropdown > .dropdown {
  left: 100%;
  top: 0;
  padding: 8px;
  position: absolute;
  z-index: 99;
  opacity: 0;
  display: none;
  visibility: hidden;
  margin-top: 0px;
  min-width: 200px;
}
.menu .has-dropdown.active > .dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
}
.menu .sub-r {
  right: 0;
  left: auto !important;
}
.menu .has-dropdown > a:after,
.menu .sub-handler {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 10px;
  font-size: 13px;
  font-family: 'FontAwesome';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\f105";
}
.menu .menu-item.has-dropdown > a:after {
  content: "\f107";
}
.menu .sub-handler {
  display: none;
  top: 1px;
  right: 0px;
  width: 30px;
  height: 30px;
  -webkit-transform: none;
          transform: none;
  text-align: center;
  line-height: 30px;
  z-index: 9999;
}
.menu .menu-item > .sub-handler {
  top: 6px;
}
.menu.inline-block {
  width: auto;
}
/* MENU HENDLER
------------------------------------*/
.nav-handle {
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  margin: auto;
  width: auto;
  text-align: center;
  display: none;
  line-height: 1px;
}
/* SERCH POPUP
------------------------------------*/
.popup-search {
  padding: 0px;
}
.popup-search .mfp-close {
  color: #fff;
  width: 100px;
  height: 100px;
  font-size: 50px;
}
.popup-search .search-frm {
  position: relative;
  width: 80%;
}
.popup-search .search-frm .btn {
  height: 100%;
  border-radius: 0 4px 4px 0;
  font-size: 50px;
  width: 170px;
  opacity: 0.25;
}
.popup-search .search-frm .btn:hover {
  opacity: 1;
}
.popup-search .search-frm input {
  border-radius: 0px;
  width: 100%;
  color: #ffffff;
  font-size: 70px;
  padding: 20px 30px;
}
.popup-search .search-frm:hover input {
  border-color: #ffffff;
}
/* INLINE LIST
------------------------------------*/
.inline-list {
  text-align: center;
  margin-bottom: 0;
}
.inline-list > li {
  display: inline-block;
}
.inline-list > li > img {
  margin: auto;
}
.gt-large.inline-list > li {
  margin: 10px 25px;
}
.gt-medium.inline-list > li {
  margin: 10px 20px;
}
.gt-small.inline-list > li {
  margin: 10px 10px;
}
.gt-mini.inline-list > li {
  margin: 10px 8px;
}
.gt-tiny.inline-list > li {
  margin: 10px 5px;
}
.size-large.inline-list > li {
  width: 200px;
}
.size-medium.inline-list > li {
  width: 180px;
}
.size-small.inline-list > li {
  width: 160px;
}
.size-mini.inline-list > li {
  width: 140px;
}
.size-tiny.inline-list > li {
  width: 100px;
}
.align-m.inline-list > li {
  vertical-align: middle;
}
.inline-grid {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gt-large.inline-grid > li {
  margin: 10px 25px;
}
.gt-medium.inline-grid > li {
  margin: 10px 20px;
}
.gt-small.inline-grid > li {
  margin: 10px 10px;
}
.gt-mini.inline-grid > li {
  margin: 10px 8px;
}
.gt-tiny.inline-grid > li {
  margin: 10px 5px;
}
.grid-reverse.inline-grid {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.grid-col.inline-grid {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.grid-col-reverse.inline-grid {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.grid-right.inline-grid {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.grid-center.inline-grid {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.grid-top.inline-grid {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.grid-mid.inline-grid {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.grid-bottom.inline-grid {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
/* INFO BOXES
------------------------------------*/
.info-obj {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.info-obj .img img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.info-obj .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0px;
}
.info-obj-wrp,
.info-obj {
  margin-bottom: 5px;
}
/* INFO BOX IMAGE POSITION
------------------------------------*/
.info-obj.mid {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-obj.bot {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.info-obj.img-r .img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.info-obj.img-t {
  width: 100%;
  display: block;
}
/* IMAGE SIZE
------------------------------------*/
.info-obj.xlarge .img {
  width: 170px;
  font-size: 170px;
}
.info-obj.large .img {
  width: 150px;
  font-size: 150px;
}
.info-obj.medium .img {
  width: 100px;
  font-size: 100px;
}
.info-obj.small .img {
  width: 70px;
  font-size: 70px;
}
.info-obj.mini .img {
  width: 50px;
  font-size: 50px;
}
.info-obj.tiny .img {
  width: 30px;
  font-size: 30px;
}
.info-obj.xtiny .img {
  width: 20px;
  font-size: 20px;
}
/* ICON SIZE
------------------------------------*/
.info-obj.xlarge .iconwrp {
  max-height: 170px;
  min-height: 170px;
}
.info-obj.large .iconwrp {
  max-height: 150px;
  min-height: 150px;
}
.info-obj.medium .iconwrp {
  max-height: 100px;
  min-height: 100px;
}
.info-obj.small .iconwrp {
  max-height: 70px;
  min-height: 70px;
}
.info-obj.mini .iconwrp {
  max-height: 50px;
  min-height: 50px;
}
.info-obj.tiny .iconwrp {
  max-height: 30px;
  min-height: 30px;
}
.info-obj.xlarge .sq,
.info-obj.xlarge .rd {
  font-size: 100px;
}
.info-obj.large .sq,
.info-obj.large .rd {
  font-size: 90px;
}
.info-obj.medium .sq,
.info-obj.medium .rd {
  font-size: 60px;
}
.info-obj.small .sq,
.info-obj.small .rd {
  font-size: 38px;
}
.info-obj.mini .sq,
.info-obj.mini .rd {
  font-size: 25px;
}
.info-obj.tiny .sq,
.info-obj.tiny .rd {
  font-size: 16px;
}
/* IMAGE ALIGNMENT
------------------------------------*/
.info-obj.align-c .img {
  margin-left: auto;
  margin-right: auto;
}
.info-obj.align-r .img {
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 200px) and (max-width: 991px) {
  .info-obj.xlarge,
  .info-obj.large {
    display: block;
  }
  .info-obj.xlarge .info,
  .info-obj.large .info {
    margin-left: auto !important;
    margin-right: 0 !important;
    margin-top: 40px;
  }
}
/* HOVER BOXES
------------------------------------*/
figure.hover-box1:not([class*="mr-"]) {
  margin: 0px;
}
.hover-box1 {
  position: relative;
  overflow: hidden;
}
.hover-box1 img {
  width: 100%;
}
.hover-box1 .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #fff;
  opacity: 0;
  z-index: 200;
  top: 0px;
  left: 0px;
}
.hover-box1 .box-title {
  padding: 15px 20px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
}
.hover-box1:hover .overlay {
  opacity: 1;
}
.hover-box1:hover img:not(.no-scale),
.hover-box1:hover .img-wrp:not(.no-scale) {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.hover-box1:hover .hover-hide {
  opacity: 0;
  display: none;
}
.hover-box1:hover .hover-up {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.hover-box1._1 .overlay {
  opacity: 1;
}
[class*="hover-box"] .ani-up.content {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
[class*="hover-box"] .ani-down.content {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
[class*="hover-box"] .ani-left.content {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
[class*="hover-box"] .ani-right.content {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
[class*="hover-box"]:hover .ani-down.content,
[class*="hover-box"]:hover .ani-up.content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
[class*="hover-box"]:hover .ani-left.content,
[class*="hover-box"]:hover .ani-right.content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
/* BANNER GRIDS NEW
------------------------------------*/
.banner-grid-wrp {
  position: relative;
  margin: auto;
}
.banner-grid-item {
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  overflow: hidden;
}
.banner-grid-item .bnr-img {
  display: block;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.banner-grid-item img {
  width: 100%;
  display: block;
  max-width: 100%;
}
/* MASONRY
------------------------------------*/
.masonry-wrp .masonry-grid {
  position: relative;
}
.masonry-wrp .masonry-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.masonry-wrp .masonry-item img {
  width: 100%;
  display: block;
  max-width: 100%;
}
.masonry-wrp figure {
  display: block;
  position: relative;
  margin: 0px;
}
.masonry-wrp .ratio-square .portfolio-item {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.masonry-wrp .ratio-square figure {
  padding-top: 100%;
}
.masonry-wrp .ratio-square figure.half {
  padding-top: 50%;
}
.masonry-wrp .ratio-square figure.double {
  padding-top: 200%;
}
.masonry-wrp .ratio-square.gt4 figure.half {
  padding-top: calc(50% - 2px);
}
.masonry-wrp .ratio-square.gt10 figure.half {
  padding-top: calc(50% - 5px);
}
.masonry-wrp .ratio-square.gt20 figure.half {
  padding-top: calc(50% - 10px);
}
.masonry-wrp .ratio-square.gt30 figure.half {
  padding-top: calc(50% - 15px);
}
.masonry-wrp .ratio-square.gt40 figure.half {
  padding-top: calc(50% - 20px);
}
.masonry-wrp .ratio-square.gt4 figure.double {
  padding-top: calc(200% + 3px);
}
.masonry-wrp .ratio-square.gt10 figure.double {
  padding-top: calc(200% + 9px);
}
.masonry-wrp .ratio-square.gt20 figure.double {
  padding-top: calc(200% + 19px);
}
.masonry-wrp .ratio-square.gt30 figure.double {
  padding-top: calc(200% + 29px);
}
.masonry-wrp .ratio-square.gt40 figure.double {
  padding-top: calc(200% + 39px);
}
.masonry-wrp .ratio-horizontal .portfolio-item {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.masonry-wrp .ratio-horizontal figure {
  padding-top: 76%;
}
.masonry-wrp .ratio-horizontal figure.half {
  padding-top: 38%;
}
.masonry-wrp .ratio-horizontal figure.double {
  padding-top: 152%;
}
.masonry-wrp .ratio-horizontal.gt4 figure.half {
  padding-top: calc(38% - 2px);
}
.masonry-wrp .ratio-horizontal.gt10 figure.half {
  padding-top: calc(38% - 5px);
}
.masonry-wrp .ratio-horizontal.gt20 figure.half {
  padding-top: calc(38% - 10px);
}
.masonry-wrp .ratio-horizontal.gt30 figure.half {
  padding-top: calc(38% - 15px);
}
.masonry-wrp .ratio-horizontal.gt40 figure.half {
  padding-top: calc(38% - 20px);
}
.masonry-wrp .ratio-horizontal.gt4 figure.double {
  padding-top: calc(152% + 3px);
}
.masonry-wrp .ratio-horizontal.gt10 figure.double {
  padding-top: calc(152% + 9px);
}
.masonry-wrp .ratio-horizontal.gt20 figure.double {
  padding-top: calc(152% + 19px);
}
.masonry-wrp .ratio-horizontal.gt30 figure.double {
  padding-top: calc(152% + 29px);
}
.masonry-wrp .ratio-horizontal.gt40 figure.double {
  padding-top: calc(152% + 39px);
}
.masonry-wrp .ratio-vertical .portfolio-item {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.masonry-wrp .ratio-vertical figure {
  padding-top: 130%;
}
.masonry-wrp .ratio-vertical figure.half {
  padding-top: 65%;
}
.masonry-wrp .ratio-vertical figure.double {
  padding-top: 260%;
}
.masonry-wrp .ratio-vertical.gt4 figure.half {
  padding-top: calc(65% - 2px);
}
.masonry-wrp .ratio-vertical.gt10 figure.half {
  padding-top: calc(65% - 5px);
}
.masonry-wrp .ratio-vertical.gt20 figure.half {
  padding-top: calc(65% - 10px);
}
.masonry-wrp .ratio-vertical.gt30 figure.half {
  padding-top: calc(65% - 15px);
}
.masonry-wrp .ratio-vertical.gt40 figure.half {
  padding-top: calc(65% - 20px);
}
.masonry-wrp .ratio-vertical.gt4 figure.double {
  padding-top: calc(260% + 3px);
}
.masonry-wrp .ratio-vertical.gt10 figure.double {
  padding-top: calc(260% + 9px);
}
.masonry-wrp .ratio-vertical.gt20 figure.double {
  padding-top: calc(260% + 19px);
}
.masonry-wrp .ratio-vertical.gt30 figure.double {
  padding-top: calc(260% + 29px);
}
.masonry-wrp .ratio-vertical.gt40 figure.double {
  padding-top: calc(260% + 39px);
}
@media (min-width: 200px) and (max-width: 991px) {
  .masonry-wrp [class*="col-md-"] {
    width: 100%;
  }
}
/* PRICE TABLE 1
------------------------------------*/
.price-table-1 {
  position: relative;
  overflow: hidden;
}
.price-table-1 > .tag-text {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  display: block;
}
.price-table-1:hover {
  -webkit-box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.2);
}
/* PRICE TABLE 2
------------------------------------*/
.price-table-2 {
  margin: auto;
}
.price-table-2 td,
.price-table-2 th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px;
}
.price-table-2 th {
  font-size: 20px;
  font-weight: 300;
}
.price-table-2 .feature-hd {
  font-size: 40px;
  vertical-align: bottom;
  padding-left: 0px;
}
.price-table-2 .free,
.price-table-2 .pro1 {
  width: 25%;
  text-align: center;
  padding: 0px;
  font-size: 24px;
  font-weight: 300;
}
.price-table-2 th > .hd {
  display: block;
  padding: 15px;
  border-radius: 5px 5px 0 0;
}
.price-table-2 th > .hd > strong {
  display: block;
  font-size: 40px;
  font-weight: inherit;
}
.price-table-2 td {
  font-size: 14px;
  vertical-align: middle;
}
.price-table-2 td p {
  margin-bottom: 0px;
}
.price-table-2 td .info-box {
  margin: 0px;
}
.price-table-2 .td-feature {
  padding-left: 2px;
  padding-right: 25px;
}
.price-table-2 .info-box5 .info {
  margin-top: 0px;
}
.price-table-2 .td-pro1,
.price-table-2 .td-free {
  text-align: center;
}
.price-table-2 .td-free {
  background-color: rgba(0, 0, 0, 0.02);
}
.price-table-2 .td-pro1 {
  background-color: rgba(255, 104, 88, 0.1);
}
.price-table-2 .plan-lbl {
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px 4px 8px;
  border-radius: 3px;
  background-color: #ccc;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: none;
}
.price-table-2 .td-pro1 .plan-lbl {
  background-color: #8BCE7B;
}
/* POPUP BLOCKS CSS
------------------------------------*/
.blocks-popups .mfp-hide {
  display: block !important;
}
.popup-content {
  max-width: 600px;
  min-width: 300px;
  position: relative;
  margin: auto;
  text-align: center;
  background-color: #ffffff;
}
.pop-body,
.pop-header {
  padding: 60px;
}
.popup-content .mfp-close {
  color: #ffffff;
  width: 40px;
  height: 40px;
  top: -40px;
  right: -9px;
  font-size: 30px;
}
.popup-content.reset {
  max-width: none;
  min-width: none;
  background-color: transparent;
  text-align: left;
}
.popup-content.container {
  padding: 0px;
}
.popup-content._1 .mfp-close {
  color: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  font-size: 30px;
  top: 0;
  right: 0;
}
/* PROGRESS BAR
------------------------------------*/
.progress {
  background-color: rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0px;
  margin-bottom: 20px;
  overflow: visible;
  height: auto;
}
.progress .progress-bar {
  position: relative;
  min-height: 5px;
  float: none;
  text-align: center;
  color: #fff;
  line-height: 20px;
  font-size: 11px;
}
.progress .percentage {
  position: absolute;
  top: -24px;
  background-color: #2D3345;
  color: #fff;
  right: 0px;
  font-weight: normal;
  font-size: 11px;
  line-height: 1;
  padding: 4px 6px 5px 6px;
  border-radius: 3px;
}
.progress .percentage i {
  position: absolute;
  top: 14px;
  color: #282c35;
  left: 50%;
  font-weight: normal;
  font-size: 14px;
  margin-left: -3px;
}
/* COUNT DOWN CONTROLS
------------------------------------*/
.countdown-widget .inner-dashboard {
  overflow: auto;
  display: table;
  text-align: center;
  margin: auto;
}
.countdown-widget .dash {
  /* float: left; */
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 20px;
  display: table-cell;
}
.countdown-widget .dash:last-child {
  border-right: none;
}
.countdown-widget .inner-dash {
  overflow: hidden;
  height: 75%;
  position: relative;
  font-size: 60px;
  font-weight: inherit;
  line-height: 1.2;
  margin: 0 auto;
  padding: 0 1px;
  display: table;
  text-align: center;
}
.countdown-widget .dash_title {
  height: 25%;
  font-size: 14px;
  font-style: italic;
  font-weight: inherit;
  display: block;
  margin-bottom: 10px;
}
.countdown-widget .inner-dash > .digit {
  /* float: left; */
  position: relative;
  display: table-cell;
}
.countdown-widget .inner-dash > .digit .top {
  display: none !important;
}
.countdown-widget .inner-dash > .digit:last-child {
  margin-right: 0px;
}
.countdown-widget .inner-dash .dash_title {
  display: block;
}
.light.countdown-widget {
  color: #fff;
}
.light.countdown-widget .dash {
  border-color: rgba(255, 255, 255, 0.2);
}
.no-sep.countdown-widget .dash {
  border-right: none;
}
.countdown-widget.large .dash {
  padding: 0 30px;
}
.countdown-widget.large .inner-dash {
  font-size: 100px;
}
.countdown-widget.large .dash_title {
  font-size: 20px;
}
.countdown-widget.small .inner-dash {
  font-size: 40px;
}
.countdown-widget.small .dash_title {
  font-size: 13px;
  margin-bottom: 5px;
}
.countdown-widget.small .dash {
  padding: 0 15px;
}
.countdown-widget.mini .inner-dash {
  font-size: 26px;
}
.countdown-widget.mini .dash_title {
  font-size: 12px;
  margin-bottom: 3px;
}
.countdown-widget.mini .dash {
  padding: 0 15px;
}
.countdown-widget.tiny .inner-dash {
  padding: 0 2px;
  font-size: 18px;
}
.countdown-widget.tiny .dash_title {
  font-size: 10px;
  margin-bottom: 1px;
}
.countdown-widget.tiny .dash {
  padding: 0 10px;
}
/* FILTER
------------------------------------*/
.filter-list {
  margin-bottom: 40px;
}
.filter-style1 .filter-list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.filter-style1 .filter-list > [data-filter] {
  padding: 15px 20px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: inline-block;
  cursor: pointer;
}
.filter-style1 .filter-list > .active {
  border-color: #1f2229;
}
/* CAROUSEL 
------------------------------------*/
.carousel-widget {
  overflow: hidden;
}
.carousel-widget .item {
  position: relative;
}
.carousel-widget.op-items .item {
  opacity: 0.4;
}
.carousel-widget.op-items .center .item {
  opacity: 1;
}
/* CAROUSEL CONTROLS
------------------------------------*/
.ctrl-1 .owl-controls {
  padding: 1px;
  height: auto;
}
.ctrl-1 .owl-nav {
  position: absolute;
  top: 50%;
  height: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
}
.ctrl-1 .owl-nav > div,
.ctrl-1 .owl-nav > button {
  position: absolute;
  left: 0px;
  opacity: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* flex-start | flex-end | center | space-between | space-around */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -30px;
}
.ctrl-1 .owl-nav > div:before,
.ctrl-1 .owl-nav > button:before {
  display: none;
}
.ctrl-1 .owl-nav > .owl-next {
  right: 0px;
  left: auto;
}
.ctrl-1 [data-dots="true"] .owl-nav {
  margin-top: -42px;
}
.ctrl-1 .owl-nav > div,
.ctrl-1 .owl-nav > button,
.swiper-button-prev,
.swiper-button-next {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #fff !important;
  text-align: center;
  font-size: 40px !important;
  height: 60px;
  width: 60px;
  z-index: 999;
}
.swiper-button-prev {
  left: 0px;
}
.swiper-button-next {
  right: 0px;
}
.ctrl-1:hover .owl-nav > div,
.ctrl-1:hover .owl-nav > button {
  opacity: 1;
}
.ctrl-1.small-arrows .owl-nav > div,
.ctrl-1.small-arrows .owl-nav > button {
  top: -20px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 18px !important;
}
.ctrl-1.small-arrows .owl-nav > .owl-next {
  right: -40px;
}
.ctrl-1.small-arrows .owl-nav > .owl-prev {
  left: -40px;
}
/* CAROUSEL CONTROLS 2
------------------------------------*/
.ctrl-2 .owl-controls {
  padding: 1px;
  height: auto;
}
.ctrl-2 .owl-nav {
  position: absolute;
  top: 50%;
  height: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
}
.ctrl-2 .owl-nav > div,
.ctrl-2 .owl-nav > button {
  position: absolute;
  left: 0px;
  opacity: 1;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* flex-start | flex-end | center | space-between | space-around */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -30px;
}
.ctrl-2 .owl-nav > div:before,
.ctrl-2 .owl-nav > button:before {
  display: none;
}
.ctrl-2 .owl-nav > .owl-prev {
  margin-left: -80px;
}
.ctrl-2 .owl-nav > .owl-next {
  right: 0px;
  left: auto;
  margin-right: -80px;
}
.ctrl-2 [data-dots="true"] .owl-nav {
  margin-top: -42px;
}
.ctrl-2 .owl-nav > div,
.ctrl-2 .owl-nav > button,
.swiper-button-prev,
.swiper-button-next {
  background-image: none;
  background-color: rgba(0, 0, 0, 0) !important;
  color: #fff !important;
  text-align: center;
  font-size: 40px !important;
  height: 60px;
  width: 60px;
  z-index: 999;
}
.swiper-button-prev {
  left: 0px;
}
.swiper-button-next {
  right: 0px;
}
.ctrl-2:hover .owl-nav > div,
.ctrl-2:hover .owl-nav > button {
  opacity: 1;
}
.ctrl-2.small-arrows .owl-nav > div,
.ctrl-2.small-arrows .owl-nav > button {
  top: -20px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 18px !important;
}
.ctrl-2.small-arrows .owl-nav > .owl-next {
  right: -40px;
}
.ctrl-2.small-arrows .owl-nav > .owl-prev {
  left: -40px;
}
/* CONTROLS 3
------------------------------------*/
.ctrl-3 .owl-controls {
  padding: 1px;
  height: auto;
}
.ctrl-3 .owl-nav {
  position: absolute;
  top: 50%;
  height: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
}
.ctrl-3 .owl-nav > div,
.ctrl-3 .owl-nav > button {
  position: absolute;
  left: 0px;
  opacity: 1;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* flex-start | flex-end | center | space-between | space-around */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -30px;
}
.ctrl-3 .owl-nav > div:before,
.ctrl-3 .owl-nav > button:before {
  display: none;
}
.ctrl-3 .owl-nav > .owl-next {
  right: 0px;
  left: auto;
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
}
.ctrl-3 .owl-nav > .owl-prev {
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
}
.ctrl-3 [data-dots="true"] .owl-nav {
  margin-top: -42px;
}
.ctrl-3 .owl-nav > div,
.ctrl-3 .owl-nav > button,
.swiper-button-prev,
.swiper-button-next {
  background-image: none;
  background-color: rgba(0, 0, 0, 0) !important;
  color: #252525 !important;
  text-align: center;
  font-size: 40px !important;
  height: 60px;
  width: 60px;
  z-index: 999;
}
.light.ctrl-3 .owl-nav > div,
.light.ctrl-3 .owl-nav > button,
.light.swiper-button-prev,
.light.swiper-button-next {
  color: #fff !important;
}
.swiper-button-prev {
  left: 0px;
}
.swiper-button-next {
  right: 0px;
}
.ctrl-3:hover .owl-nav > div,
.ctrl-3:hover .owl-nav > button {
  opacity: 1;
}
.ctrl-3.small-arrows .owl-nav > div,
.ctrl-3.small-arrows .owl-nav > button {
  top: -20px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 18px !important;
}
.ctrl-3.small-arrows .owl-nav > .owl-next {
  right: -40px;
}
.ctrl-3.small-arrows .owl-nav > .owl-prev {
  left: -40px;
}
/* CAROUSEL DOTS
------------------------------------*/
.carousel-widget .owl-dots {
  text-align: center;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 30px;
}
.carousel-widget .owl-dots > .owl-dot {
  border: 2px solid rgba(0, 0, 0, 0.4);
  margin: 0 5px;
}
.carousel-widget .owl-dots .active {
  background-color: rgba(0, 0, 0, 0.4);
}
.fill-dot.carousel-widget .owl-dots {
  text-align: center;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 30px;
}
.fill-dot.carousel-widget .owl-dots > .owl-dot {
  border: none;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0 8px;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.fill-dot.carousel-widget .owl-dots .active {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
}
.ctrl-light.fill-dot.carousel-widget .owl-dots {
  text-align: center;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 30px;
}
.ctrl-light.fill-dot.carousel-widget .owl-dots > .owl-dot {
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.ctrl-light.fill-dot.carousel-widget .owl-dots .active {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
}
.carousel-widget.ctrl-light .owl-dots > .owl-dot {
  border-color: rgba(255, 255, 255, 0.4);
}
.carousel-widget.ctrl-light .owl-dots .active {
  background-color: rgba(255, 255, 255, 0.4);
}
.carousel-widget.ctrl-light .owl-nav > div,
.carousel-widget.ctrl-light .owl-nav > button {
  color: #fff !important;
}
.carousel-widget.ctrl-light .owl-nav > div:hover,
.carousel-widget.ctrl-light .owl-nav > button:hover {
  background-color: #fff;
  color: #333;
}
.mr-0 .owl-dots {
  margin: 0px;
}
.ctrl-l .owl-dots {
  text-align: left;
}
.ctrl-r .owl-dots {
  text-align: right;
}
.pager-in .owl-controls {
  padding: 0;
}
.pager-in .owl-dots {
  position: absolute;
  width: 100%;
  z-index: 9999;
  bottom: 0;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #000;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
}
.dot-l.carousel-widget .owl-dots {
  text-align: left;
}
/* ZOOM CAROUSEL
------------------------------------*/
.zoom-carousel .swiper-wrapper,
.zoom-carousel .owl-stage-outer {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.zoom-carousel .swiper-slide > img,
.zoom-carousel .swiper-slide > .content,
.zoom-carousel .item > .content {
  position: relative;
  opacity: 0.4;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.zoom-carousel .swiper-slide-next > img,
.zoom-carousel .swiper-slide-prev > img,
.zoom-carousel .swiper-slide-next > .content,
.zoom-carousel .swiper-slide-prev > .content,
.zoom-carousel .item > .content {
  -webkit-transform: scale(0.86);
          transform: scale(0.86);
}
.zoom-carousel .swiper-slide-active > img,
.zoom-carousel .swiper-slide-active > .content,
.zoom-carousel .center .content {
  position: relative;
  z-index: 9;
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 60px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 60px 0px rgba(0, 0, 0, 0.15);
}
.full.swiper-container {
  width: 100%;
  height: 100%;
}
.full.swiper-container .swiper-slide {
  text-align: center;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vertical.swiper-container {
  width: 100%;
  height: 100%;
}
.vertical.swiper-container .swiper-slide {
  text-align: center;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/* CAROUSLE CAPTION STYLE 1
------------------------------------*/
.caption-1-hd {
  padding: 10px 30px;
  font-size: 70px;
  display: inline-block;
  margin-bottom: 1px;
}
.caption-1-sub-text {
  font-size: 30px;
  padding: 10px 30px;
  margin: 0px;
}
/* CAPTION ANIMATION STYLE 1
------------------------------------*/
.caption-up .caption {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.caption-up .caption {
  -webkit-animation-name: rg_down;
          animation-name: rg_down;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.swiper-slide-active.caption-up .caption,
.swiper-slide-active .caption-up .caption,
.carousel-widget[data-center="false"] .active .caption-up .caption,
.carousel-widget[data-center="true"] .center .caption-up .caption {
  -webkit-animation-name: rg_fadeup;
          animation-name: rg_fadeup;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
/* CAPTION ANIMATION STYLE 2
------------------------------------*/
.caption-left .caption {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.caption-left .caption {
  -webkit-animation-name: rg_left;
          animation-name: rg_left;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.swiper-slide-active .caption-left .caption,
.owl-carousel .active .caption-left .caption,
.owl-carousel[data-center] .center .caption-left .caption {
  -webkit-animation-name: rg_fadeleft;
          animation-name: rg_fadeleft;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
/* SWIPER GALLERY
------------------------------------*/
.swiper-gallery {
  position: relative;
  height: 100%;
}
.swiper-gallery .swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.swiper-gallery .gallery-top:not([class*="vh"]) {
  height: 100%;
}
.swiper-gallery .swiper-slide {
  background-size: cover;
  background-position: center;
}
.swiper-gallery .gallery-thumbs {
  position: absolute;
  height: 100px;
  padding: 10px 0;
  bottom: 0px;
  z-index: 999;
}
.swiper-gallery .gallery-thumbs .swiper-slide {
  width: 80px;
  height: 100%;
  opacity: 0.5;
  cursor: pointer;
  border: 5px solid transparent;
  background-repeat: no-repeat;
  background-size: cover;
}
.swiper-gallery .gallery-thumbs .swiper-slide:hover,
.swiper-gallery .gallery-thumbs .swiper-slide-active {
  opacity: 1;
  border-color: #fff;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
}
.swiper-gallery .gallery-thumbs:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.4);
}
.light.gallery-thumbs {
  background-color: rgba(255, 255, 255, 0.3);
}
/* SWIPER GALLERY 1
------------------------------------*/
.swiper-gallery.layout-1 .gallery-thumbs:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.05);
}
.swiper-gallery.layout-1 .gallery-thumbs {
  position: relative;
}
/* SWIPER GALLERY 2
------------------------------------*/
.swiper-gallery.layout-2 .gallery-thumbs {
  position: relative;
}
.swiper-gallery.layout-2 .gallery-thumbs .swiper-slide {
  border: none;
  opacity: 0.25;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.swiper-gallery.layout-2 .gallery-thumbs .swiper-slide:hover,
.swiper-gallery.layout-2 .gallery-thumbs .swiper-slide-active {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.swiper-gallery.layout-2 .gallery-thumbs {
  position: relative;
}
@media (min-width: 200px) and (max-width: 991px) {
  .dot-l.carousel-widget .owl-dots {
    text-align: center;
  }
}
/* ACCORDION GLOBAL
------------------------------------*/
.panel {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
}
.panel:first-child .panel-hd a {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.acc-style1 .acc-hd,
.panel-hd a {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: block;
  padding: 15px 40px 15px 0;
  font-size: 22px;
  font-weight: 300;
}
.panel-hd i {
  position: absolute;
  width: 24px;
  height: 24px;
  line-height: 18px;
  border-radius: 20px;
  text-align: center;
  right: 2px;
  top: 21px;
  color: #eceef0;
  font-size: 24px;
}
.accordion-widget .active .acc-close,
.accordion-widget .acc-open,
.collapsed .panel-open,
.panel-close {
  display: block;
}
.accordion-widget .active .acc-open,
.accordion-widget .acc-close,
.panel-open,
.collapsed .panel-close {
  display: none;
}
.panel .panel-body {
  padding: 15px 0 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.8;
  color: #97a3ae;
}
.panel-group .panel + .panel {
  margin: 0px;
}
.dark .panel-hd a {
  color: #fff;
}
.dark .panel .panel-body {
  color: rgba(255, 255, 255, 0.6);
}
.dark .panel .panel-body,
.dark .panel .panel-hd a {
  border-color: rgba(255, 255, 255, 0.06);
}
.dark .panel-hd i {
  color: rgba(255, 255, 255, 0.1);
}
.accordion-widget .acc-content {
  overflow: hidden;
}
.acc-hd .info-obj {
  margin: 0;
}
.acc-hd .acc-open,
.acc-hd .acc-close {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
/* ACCORDION STYLE 1
------------------------------------*/
.acc-style1 {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.acc-style1 .acc-hd {
  cursor: pointer;
  color: #0c0c0c;
}
.acc-style1 .acc-content {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.acc-style1 .acc-open,
.acc-style1 .acc-close {
  right: 2px;
  opacity: 0.5;
}
.acc-style1.dark {
  border-color: rgba(255, 255, 255, 0.06);
}
.acc-style1.dark .acc-hd {
  color: #ffffff;
}
.acc-style1.dark .acc-hd,
.acc-style1.dark .acc-content {
  border-color: rgba(255, 255, 255, 0.06);
}
/* ACCORDION STYLE 2
------------------------------------*/
.acc-style2 .acc-hd {
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 10px 20px;
  color: #1f2229;
  border-radius: 2px;
}
.acc-style2 .acc-block {
  margin-bottom: 5px;
}
.acc-style2 .active.acc-hd {
  background-color: #1f2229;
  color: #fff;
  border-radius: 2px 2px 0 0;
}
.acc-style2 .active.acc-hd * {
  color: inherit;
}
.acc-style2 .acc-content {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 0 0 2px 2px;
}
.acc-style2 .acc-open,
.acc-style2 .acc-close {
  right: 15px;
  opacity: 0.5;
  font-size: 18px;
}
.acc-style2.dark .acc-hd {
  background-color: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}
.acc-style2.dark .active.acc-hd {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.acc-style2.dark .acc-content {
  border-color: rgba(255, 255, 255, 0.02);
  background-color: rgba(255, 255, 255, 0.02);
}
/* COMMON TAB STRUCTURE
------------------------------------*/
.tab-pn {
  display: none;
}
[data-tb] {
  cursor: pointer;
}
.tabs-auto .tb-list,
.tab-widget .tb-list {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.tabs-auto .tb-list > li,
.tab-widget .tb-list > li {
  display: inline-block;
  cursor: pointer;
}
.tabs-auto .tb-pn,
.tab-widget .tb-pn {
  overflow: hidden;
  height: 0px;
  opacity: 0;
}
.tabs-auto .tb-pn.active,
.tab-widget .tb-pn.active {
  overflow: visible;
  height: auto;
  opacity: 1;
}
.tabs-auto .tb-pn.active,
.tab-widget .tb-pn.active,
.tabs-auto .tb-list > li.active,
.tab-widget .tb-list > li.active {
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
/* SIDE TAB STRUCTURE
------------------------------------*/
.side-tab {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 20px;
}
.side-tab .tb-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0px;
}
.side-tab .tb-list > li {
  display: block;
}
/* TAB POSITION AND SIZE
------------------------------------*/
.side-tab.tb-r .tb-list {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}
.side-tab.side-xlarge .tb-list {
  width: 400px;
}
.side-tab.side-large .tb-list {
  width: 350px;
}
.side-tab.side-medium .tb-list {
  width: 250px;
}
.side-tab.side-small .tb-list {
  width: 200px;
}
.side-tab.side-mini .tb-list {
  width: 150px;
}
.side-tab.side-tiny .tb-list {
  width: 100px;
}
/* TAB STYLE 1
------------------------------------*/
.tab-style1 .tb-list {
  border-bottom-width: 2px;
  border-bottom-style: solid;
  max-height: 100%;
}
.tab-style1 .tb-list > li {
  margin: 0 -2px 0 0;
  padding: 8px 20px 6px 20px;
  border-radius: 4px 4px 0 0;
  color: #0c0c0c;
}
.tab-style1 .tb-list > li:not([class*="fs"]) {
  font-size: 16px;
}
.tab-style1 .tb-list > li:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.06);
}
.tab-style1 .tb-list > li.active:not([class*="bg-"]) {
  background-color: #0c0c0c;
}
.tab-style1 .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #fff;
}
.tab-style1 .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-bottom-color: #0c0c0c;
}
.tab-style1 .tb-content {
  background-color: rgba(0, 0, 0, 0.03);
}
.tab-style1 .tb-content:not([class*="pd-"]) {
  padding: 30px;
}
.tab-style1:not([data-tb-active*="bg-"]) > li:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.06);
}
/* SIDE TABS STYLE 1
------------------------------------*/
.tab-style1.side-tab .tb-list > li {
  padding-bottom: 7px;
}
.tab-style1.side-tab:not(.tb-r) .tb-list {
  border-right-width: 2px;
  border-right-style: solid;
  border-bottom: none;
}
.tab-style1.side-tab:not(.tb-r) .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-right-color: #0c0c0c;
}
.tab-style1.side-tab:not(.tb-r) .tb-list > li {
  border-radius: 4px 0 0 4px;
  margin-bottom: 2px;
}
.tab-style1.side-tab.tb-r .tb-list {
  border-left-width: 2px;
  border-left-style: solid;
  border-bottom: none;
}
.tab-style1.side-tab.tb-r .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-left-color: #0c0c0c;
}
.tab-style1.tb-r .tb-list > li {
  border-radius: 0 4px 4px 0;
  margin-bottom: 2px;
}
/* TAB DARK THEME
------------------------------------*/
.tab-style1.dark .tb-list > li {
  color: #ffffff;
}
.tab-style1.dark .tb-list > li:not([class*="bg-"]) {
  background-color: rgba(255, 255, 255, 0.06);
}
.tab-style1.dark .tb-list > li.active:not([class*="bg-"]) {
  background-color: #ffffff;
}
.tab-style1.dark .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #0c0c0c;
}
.tab-style1.dark .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-bottom-color: #ffffff;
}
.tab-style1.dark .tb-content {
  background-color: rgba(255, 255, 255, 0.03);
}
.tab-style1.dark.side-tab:not(.tb-r) .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-right-color: #ffffff;
}
.tab-style1.dark.side-tab.tb-r .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-left-color: #0c0c0c;
}
/* TAB STYLE 2
------------------------------------*/
.tab-style2 .tb-list {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-top-width: 1px;
  border-top-style: solid;
  z-index: 99;
  position: relative;
}
.tab-style2 .tb-list > li {
  margin: 0 15px -1px 0;
  padding: 8px 15px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
.tab-style2 .tb-list > li:not([class*="fs"]) {
  font-size: 16px;
}
.tab-style2 .tb-list > li:not([class*="bdr-"]) {
  border-bottom-color: transparent;
}
.tab-style2 .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #0c0c0c;
}
.tab-style2 .tb-list > li.active:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-color: #0c0c0c;
}
.tab-style2 .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
}
.tab-style2 .tb-content:not([class*="pd-"]) {
  padding: 30px 0;
}
/* SIDE TABS STYLE 2
------------------------------------*/
.tab-style2.side-tab .tb-list {
  border-bottom: none;
}
.tab-style2.side-tab:not(.tb-r) .tb-list {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.tab-style2.tb-r .tb-list {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.tab-style2.side-tab .tb-list > li {
  margin: 0;
  padding: 8px 15px;
  border-bottom-width: 1px;
  bofder-bottom-style: solid;
}
.tab-style2.side-tab .tb-list > li:not([class*="bdr-"]) {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
.tab-style2.side-tab .tb-list > li.active:not([class*="bdr-"]) {
  border-bottom-color: #0c0c0c;
}
.tab-style2.side-tab .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #0c0c0c;
}
.tab-style2.side-tab:not(.tb-r) .tb-content {
  padding: 0 0 0 30px;
}
.tab-style2.tb-r .tb-content {
  padding: 0 30px 0 0;
}
/* DARK TAB THEME
------------------------------------*/
.tab-style2.dark .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #ffffff;
}
.tab-style2.dark .tb-list > li.active:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-color: #ffffff;
}
.tab-style2.dark .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.1);
}
.tab-style2.dark.side-tab:not(.tb-r) .tb-list {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.tab-style2.dark.tb-r .tb-list {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.tab-style2.dark.side-tab .tb-list > li:not([class*="bdr-"]) {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.tab-style2.dark.side-tab .tb-list > li.active:not([class*="bdr-"]) {
  border-bottom-color: #ffffff;
}
.tab-style2.dark.side-tab .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #ffffff;
}
/* TAB STYLE 3
------------------------------------*/
.tab-style3 .tb-list:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.1);
}
.tab-style3 .tb-list {
  z-index: 99;
  position: relative;
}
.tab-style3 .tb-list > li {
  margin: 0;
  padding: 10px 20px;
}
.tab-style3 .tb-list > li:not([class*="fs"]) {
  font-size: 16px;
}
.tab-style3 .tb-list > li:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #0c0c0c;
}
.tab-style3 .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #fff;
}
.tab-style3 .tb-list > li.active:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.8);
}
.tab-style3 .tb-content:not([class*="pd-"]) {
  padding: 30px 20px;
}
/* TAB STYLE 3 SIDE TAB
------------------------------------*/
.tab-style3.side-tab:not(.tb-r) .tb-content {
  padding: 0 0 0 30px;
}
.tab-style3.tb-r .tb-content {
  padding: 0 30px 0 0;
}
/* DARK TAB THEME
------------------------------------*/
.tab-style3.dark .tb-list:not([class*="bg-"]) {
  background-color: rgba(255, 255, 255, 0.06);
}
.tab-style3.dark .tb-list > li:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #ffffff;
}
.tab-style3.dark .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #0c0c0c;
}
.tab-style3.dark .tb-list > li.active:not([class*="bg-"]) {
  background-color: #ffffff;
}
/* TAB STYLE 4
------------------------------------*/
.tab-style4 .tb-list {
  z-index: 99;
  position: relative;
}
.tab-style4 .tb-list > li {
  margin: 0 -4px 0 0;
  padding: 10px 20px 9px 20px;
  border-width: 1px;
  border-style: solid;
}
.tab-style4 .tb-list > li:first-child {
  border-radius: 4px 0 0 4px;
}
.tab-style4 .tb-list > li:last-child {
  border-radius: 0 4px 4px 0;
}
.tab-style4 .tb-list > li:not([class*="fs"]) {
  font-size: 16px;
}
.tab-style4 .tb-list > li:not([class*="bdr-"]) {
  border-color: rgba(0, 0, 0, 0.1);
}
.tab-style4 .tb-list > li:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.02);
}
.tab-style4 .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #fff;
}
.tab-style4 .tb-list > li.active:not([class*="bdr-"]) {
  border-color: #0c0c0c;
}
.tab-style4 .tb-list > li.active:not([class*="bg-"]) {
  background-color: #0c0c0c;
}
.tab-style4 .tb-content {
  padding: 30px 0;
}
.dark.tab-style4 .tb-list > li:not([class*="bdr-"]) {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark.tab-style4 .tb-list > li:not([class*="bg-"]) {
  background-color: rgba(255, 255, 255, 0.02);
}
.dark.tab-style4 .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #0c0c0c;
}
.dark.tab-style4 .tb-list > li.active:not([class*="bdr-"]) {
  border-color: #ffffff;
}
.dark.tab-style4 .tb-list > li.active:not([class*="bg-"]) {
  background-color: #ffffff;
}
/* SIDE TAB
------------------------------------*/
.tab-style4.side-tab .tb-list > li {
  margin: 0 0 -1px 0;
}
.tab-style4.side-tab .tb-list > li:first-child {
  border-radius: 4px 4px 0 0;
}
.tab-style4.side-tab .tb-list > li:last-child {
  border-radius: 0 0 4px 4px;
}
.tab-style4.side-tab:not(.tb-r) .tb-content {
  padding: 0 0 0 30px;
}
.tab-style4.tb-r .tb-content {
  padding: 0 30px 0 0;
}
/* TAB STYLE 5
------------------------------------*/
.tab-style5 .shadow-large,
.tab-style5 .active .hov-shadow-large,
.tab-style5 .hov-shadow-large:hover {
  -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.2);
}
/* TAB STYLE 7
------------------------------------*/
.tab-style7 .tb-list > li {
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
.tab-style7 .tb-list > li:not([class*="bdr-"]) {
  border-bottom-color: transparent;
}
.tab-style7 .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #0c0c0c;
}
.tab-style7 .tb-list > li.active:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-color: #0c0c0c;
}
/* TAB SIZES
------------------------------------*/
.tab-style1.xlarge .tb-list > li,
.tab-style2.xlarge .tb-list > li,
.tab-style3.xlarge .tb-list > li,
.tab-style4.xlarge .tb-list > li {
  padding: 20px 40px;
  font-size: 40px;
}
.tab-style1.large .tb-list > li,
.tab-style2.large .tb-list > li,
.tab-style3.large .tb-list > li,
.tab-style4.large .tb-list > li {
  padding: 18px 30px;
  font-size: 30px;
}
.tab-style1.medium .tb-list > li,
.tab-style2.medium .tb-list > li,
.tab-style3.medium .tb-list > li,
.tab-style4.medium .tb-list > li {
  padding: 15px 26px;
  font-size: 20px;
}
.tab-style1.small .tb-list > li,
.tab-style2.small .tb-list > li,
.tab-style3.small .tb-list > li,
.tab-style4.small .tb-list > li {
  padding: 10px 20px;
  font-size: 18px;
}
.tab-style1.mini .tb-list > li,
.tab-style2.mini .tb-list > li,
.tab-style3.mini .tb-list > li,
.tab-style4.mini .tb-list > li {
  padding: 5px 12px;
  font-size: 12px;
}
/* VIDEO CSS
------------------------------------*/
.background-video {
  background-position: top center;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
}
.background-video video,
.background-video source {
  bottom: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
}
.loaded .ytplayer-container {
  display: block;
}
.loaded .placeholder-image {
  opacity: 0;
}
.ytplayer-container {
  bottom: 0;
  height: 100%;
  left: 0;
  min-width: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
.placeholder-image {
  height: 100%;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
}
.ytplayer-shield {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.ytplayer-player {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50% !important;
}
/* OVERLAY AT START
------------------------------------*/
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
/* OVERLAY ANIMATION IN
------------------------------------*/
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* OVERLAY ANIMATION OUT
------------------------------------*/
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
/* CONTENT START
------------------------------------*/
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
/* CONTENT ANIMATE IT
------------------------------------*/
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* CONTENT ANIMATE OUT
------------------------------------*/
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
/* BLOG PAGE
------------------------------------*/
.comment + .comment {
  margin: 0 0 20px 40px;
}
/* PAGE LODER
------------------------------------*/
.pace-running #page {
  opacity: 0;
}
.pace-done #page {
  opacity: 1;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.pace {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 2000;
  position: fixed;
  height: 80px;
  width: 80px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.pace .pace-progress {
  -webkit-transform: none !important;
          transform: none !important;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  width: 80px !important;
  line-height: 80px;
  font-size: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-align: center;
}
.pace .pace-progress:after {
  content: attr(data-progress-text);
  display: block;
  position: relative;
  z-index: 55;
}
.pace .pace-progress:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  -webkit-animation: rg_loader 0.8s linear infinite;
          animation: rg_loader 0.8s linear infinite;
}
.pace.pace-inactive .pace-progress {
  display: none;
}
@-webkit-keyframes rg_loader {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@keyframes rg_loader {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
/* LODER CSS
------------------------------------*/
.page-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #fff;
  left: 0px;
  top: 0px;
}
body > .page-loader {
  position: fixed;
}
.dark.page-loader {
  background-color: #000;
}
.dark.page-loader .spinner {
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
body {
  -webkit-font-smoothing: antialiased;
}
button:focus {
  outline: none !important;
}
.op-full {
  opacity: 1 !important;
}
/*=============================================
= PAGELOADER
=============================================*/
#pageloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* center children content horizontally */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* center children content vertically */
  z-index: 10000;
  background: #252525;
}
.spinner {
  width: 70px;
  text-align: center;
  opacity: 1;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}
.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*=====  End of PAGELOADER  ======*/
/*=============================================
= SECTION SCROLLER 
=============================================*/
.scrollwrapper {
  height: 100vh;
}
.page-section {
  padding: 0;
  overflow-y: scroll;
}
.page-section .animated {
  opacity: 0;
}
.page-section.swiper-slide-active .animated {
  opacity: 1;
}
/*=====  End of SECTION SCROLLER  ======*/
/*=============================================
= NAVIGATION
=============================================*/
.nav-ul li {
  display: inline-block;
}
.nav-ul li a {
  display: block;
  opacity: 1 !important;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  border-bottom: 2px solid transparent;
}
.nav-ul li a.active-hashlink,
.fullscreen-nav-ul li a.active-hashlink {
  border-bottom: 2px solid #d70000;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
/*----------  FULL SCREEN NAVIGATION  ----------*/
.fullscreen-nav-ul li {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-transition: all .5s;
  transition: all .5s;
}
.fullscreen-navwrp.active-open .fullscreen-nav li {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.fullscreen-navwrp.active-open .fullscreen-nav li:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.fullscreen-navwrp.active-open .fullscreen-nav li:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.fullscreen-navwrp.active-open .fullscreen-nav li:nth-child(3) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.fullscreen-navwrp.active-open .fullscreen-nav li:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.fullscreen-navwrp.active-open .fullscreen-nav li:nth-child(5) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.fullscreen-navwrp.active-open .fullscreen-nav li:nth-child(6) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.fullscreen-navwrp.active-open .fullscreen-nav li:nth-child(7) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.fullscreen-navwrp.active-open .fullscreen-nav li:nth-child(8) {
  -webkit-transition-delay: 1.0s;
          transition-delay: 1.0s;
}
.fullscreen-nav-ul li a {
  display: block;
  opacity: 1 !important;
}
.fullscreen-navwrp .fullscreen-nav {
  height: 0px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.fullscreen-navwrp.active-open .fullscreen-nav {
  height: 100%;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
/*=====  End of NAVIGATION ======*/
/*=============================================
= MOBILE MENU
=============================================*/
/*----------  MOBILE MENU  ----------*/
.menu-iconwrp {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}
.menu-icon {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  /* to center */
  margin: 0 auto;
  float: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu-icon > span {
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 2px;
  margin-top: -0.1px;
  background-color: #fff;
  border-radius: 3px;
}
.menu-icon > span:before,
.menu-icon > span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu-icon > span:before {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.menu-icon > span:after {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
/* OPENED */
.menu-icon.open {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-icon.open > span:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.menu-icon.open > span:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
body.slight .menu-icon > span {
  background-color: #000;
}
body.slight .menu-icon > span:before,
body.slight .menu-icon > span:after {
  background-color: #000;
}
/*=====  End of MOBILE MENU  ======*/
/*=============================================
= TOOTLTIP
=============================================*/
/* START TOOLTIP STYLES */
[tooltip] {
  position: relative;
  /* opinion 1 */
}
/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none;
  /* opinion 2 */
  font-size: .9em;
  /* opinion 3 */
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent;
  /* opinion 4 */
  z-index: 1001;
  /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip);
  /* magic! */
  /* most of the rest of this is opinion */
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  /* 
        Let the content set the size of the tooltips/?? 
        but this will also keep them from being obnoxious
        */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  -webkit-box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
          box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #fff;
  color: #000;
  z-index: 1000;
  /* absurdity 2 */
}
/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}
/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #fff;
  right: 25px;
  -webkit-transform: translate(-0.5em, -50%);
          transform: translate(-0.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: 30px;
  -webkit-transform: translate(-0.5em, -50%);
          transform: translate(-0.5em, -50%);
}
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #000;
  right: calc(-5em);
  -webkit-transform: translate(0.5em, -50%);
          transform: translate(0.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(105%);
  -webkit-transform: translate(0.5em, -50%);
          transform: translate(0.5em, -50%);
}
/*----------  STYLE 01  ----------*/
.scrollwrapper-pagination.style-01 [tooltip][flow^="left"]::before {
  top: 0;
  right: 50px;
}
.scrollwrapper-pagination.style-01 [tooltip][flow^="left"]::after {
  top: 0;
  right: 55px;
}
@-webkit-keyframes tooltips-horz {
  to {
    opacity: .9;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
@keyframes tooltips-horz {
  to {
    opacity: .9;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  -webkit-animation: tooltips-horz 300ms ease-out forwards;
          animation: tooltips-horz 300ms ease-out forwards;
}
/*=====  End of TOOLTIP  ======*/
/*=============================================
= DOT NAVIGATION
=============================================*/
.scrollwrapper-pagination .swiper-pagination-bullet:focus {
  outline: none !important;
}
.scrollwrapper-pagination {
  position: absolute;
  z-index: 21;
  right: 40px !important;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.scrollwrapper-pagination .swiper-pagination-bullet {
  margin: 10px 0 !important;
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #fff;
  opacity: 0.8;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}
.scrollwrapper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fd3838;
  height: 30px;
  -webkit-box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
          box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
/*----------  STYLE-01  ----------*/
.scrollwrapper-pagination.style-01 {
  position: absolute;
  z-index: 21;
  right: 40px !important;
  width: 40px !important;
  text-align: center;
  left: inherit !important;
  top: 50%;
  bottom: auto !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.scrollwrapper-pagination.style-01 .swiper-pagination-bullet {
  margin: 0px auto !important;
  padding: 10px 0;
  width: 20px;
  height: 1px;
  border-top: 2px solid #fff;
  display: block;
  border-radius: 0px;
  background: transparent;
  opacity: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-left: none;
  border-right: none;
  border-bottom: none;
  margin-right: 0 !important;
}
.scrollwrapper-pagination.style-01 .swiper-pagination-bullet-active,
.scrollwrapper-pagination.style-01 .swiper-pagination-bullet:hover {
  opacity: 1;
  width: 40px;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
body.slight .scrollwrapper-pagination.style-01 .swiper-pagination-bullet {
  border-top-color: #000;
}
body.slight .scrollwrapper-pagination.style-01 .swiper-pagination-bullet-active {
  border-top-color: #000;
}
#shadow-host-companion{padding: 0px!important;}
/*=====  End of DOT NAVIGATION ======*/

/*=====  Beginning of Modal ======*/
.modal-cr .modal-content{
  text-align: center;
  padding: 50px;
  background-color: rgba(62, 43, 99, 0.7);
}
.modal-cr .modal-content h2 , .modal-cr .modal-content p{
  color: #fff;
}
.modal-cr .modal-content .modal-img{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.modal-cr .modal-content .modal-img img{
  max-height: 90px;
  max-width: 100%;
}
.modal-cr .modal-footer{
  border: none;
}
.modal-cr .modal-footer button{
  width: 100%;
}
/*=====  End of Modal ======*/

/*=====  Beginning of Form ======*/
.form-container{
  z-index: 1;
  position: relative;
  width: 100%;
}
.form-content{
  position: relative;
  top: 30%;
  max-width: 850px;
  margin: auto;
  background-color: white;
  padding: 30px 50px;
  border-radius: 15px;
}
.form-content .gform_heading{
  display: none;
}
.form-content .gform_page_footer .gform_next_button{
  width: 100% ;
}
.form-content .gform_page_fields{
  padding: 30px 0px;
}
.form-content .gform_previous_button{
  width: 50%!important;
}
.form-content .gform_next_button{
  width: 50%!important;
}
.form-content .gform_page_footer{
  gap: inherit!important;
}
.form-content .gfield_radio{
  flex-direction: row!important;
}
.form-content .gfield_radio .gfield-choice-input{
  width: 2em!important;
  height: 2em!important;
}
.form-content .gfield_radio .gchoice label{
  font-size: 19px!important;
}
.form-content .gform-theme--framework .gfield--type-section {
  border: none!important;
}
.form-content .gfield .ginput_container select{
  display: block;
  width: 100%;
  padding: 20px 20px 8px 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.38px;
  height: 60px;
  color: #000;
  border: 1px solid #caccd2;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: 'test_shnekrftig';
  appearance: none;
  border-radius: 0px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
/*=====  End of Form ======*/

/*=====  Beginning of  Map Form ======*/
.mapformwrapper .gform_heading{
  display: none;
}
.mapformwrapper .gform_fields{
  row-gap: 0px!important;
}
.mapformwrapper .ginput_container{
  text-align: left;
}
.mapformwrapper .ginput_container input, .mapformwrapper .ginput_container textarea{
  border-radius: 3px!important;
  -webkit-box-shadow: none!important;
  box-shadow: none!important;
  background-color: transparent!important;
  vertical-align: middle!important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15)!important;
  border-left: none!important;
  border-right: none!important;
  border-top: none!important;
  font-size: 16px!important;
  height: auto!important;
  padding: 10px 15px!important;
  padding-left: 0!important;
  margin-bottom: 10px!important;
  font-weight: normal!important;
}
.mapformwrapper .ginput_container input:hover, .mapformwrapper .ginput_container textarea:hover, .mapformwrapper .ginput_container input:focus, .mapformwrapper .ginput_container textarea:focus{
  border-color: rgba(0, 0, 0, 0.5)!important;
  -webkit-box-shadow: none!important;
          box-shadow: none!important;
}
.mapformwrapper .ginput_container textarea{
  max-height: 141px;
}
.mapformwrapper .gform_footer{
  display: flex;
  justify-content: center;
}
.mapformwrapper .gform_footer input[type="submit"] {
  background-color: #4f87ff!important;
  font-family: "Open Sans", sans-serif!important;
  border-radius: 3px!important;
  padding: 15px 20px!important;
  font-size: 14px!important;
  -webkit-box-sizing: border-box!important;
  box-sizing: border-box!important;
  border: 1px solid transparent!important;
  line-height: 1!important;
  position: relative!important;
  outline: 0px auto -webkit-focus-ring-color !important;
  font-weight: 700!important;
  display: inline-block!important;
}
/*=====  End of Map Form ======*/

.thank-you-container {
    position: absolute;
    top: 50%;
    /* left: 50%; */
    transform: translate(-50%, -50%);
    color: #fff;
    width: 100%;
    text-align: center;
    z-index: 4;
}
.thank-you-container h1{
    margin: 0;
    padding: 10px;
    color: #fff;
    font-size: 46px;
    border-radius: 5px;
}

.thank-you-container p {
    margin: 0;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .thank-you-container {
        top: 50%;
        padding: 10px;
    }

    .thank-you-container h1 {
        font-size: 40px;
    }

    .thank-you-container p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .thank-you-container {
        top: 50%;
        padding: 5px;
    }

    .thank-you-container h1 {
        font-size: 28px;
    }

    .thank-you-container p {
        font-size: 16px;
    }
}
.phn-sticky{
  position: absolute;
  z-index: 999;
  top: 13%;
  right: 2%;
  text-align: center;
  color: #fff;
}
.btn-red{
  background-color: rgba(229,88,73,1)!important;
  color: #ffffff;
}
.btn-red:hover{
  background-color: transparent!important;
  border-color:rgba(229,88,73,1);
}
.phn-sticky p{
  font-size: 20px;
}
#servicessection hr{
  margin: 0px!important;
  margin-bottom: 5px!important;
}
/* Style for the overlay */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Make sure the overlay is on top */
  background: transparent;
}

@media (min-width: 200px) and (max-width: 767px) {
  .phn-sticky p{
    font-size: 16px;
  }
}