@import url('//fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,600i,700,700i,800,800i');
/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++
AUTHOR : R_GENESIS
PROJECT : RGen Landing Page with Page Builder
This file licensed to R_GENESIS (http://themeforest.net/user/r_genesis) and it’s strictly prohibited to copy or reuse it.
Copyright 2015-2017 R.Genesis.Art
++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/* 
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

********************************************/
.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;
}
/* .layout-row .layout-column > div {
	background-color: rgba(0,0,0,0.1);
} */
/* We tell all items to be 100% width */
.contantarea,
.aside {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
  /* background-color: rgba(0,0,0,0.1); */
}
.aside {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
  /* background-color: rgba(0,0,0,0.2); */
}
.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;
  }
}
/*===========================================*/
/*	TABLET
/*===========================================*/
@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-height: 40px;
  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 drop-down container ----------*/
  /*----------  Mobile menu handler ----------*/
}
.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: Font Awesome\ 5 Free;
  speak: none;
  font-style: normal;
  font-weight: 900;
  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 handle
====================================
*/
.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;
}
/*
====================================
Search 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;
}
.inline-grid > li,
.inline-grid .grid-cell {
  /* 	border: 1px solid #fff; */
}
.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;
  /*.img {
		overflow: hidden;
	}*/
}
.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: 20px;
}
/*
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 sizes
------------------------------------
*/
.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;
}
/*
Icon sizes
------------------------------------
*/
.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
***************************************************************
*/
/* .masonry-wrp, */
.banner-grid-wrp {
  position: relative;
  margin: auto;
}
/* .masonry-wrp:after{
	content: '';
	display: table;
	clear: both;
}
.masonry-item, */
.banner-grid-item {
  float: left;
  /* position: absolute; */
  -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;
}
/* .masonry-item img, */
.banner-grid-item img {
  width: 100%;
  display: block;
  max-width: 100%;
}
/**
 * Masonry grids
 */
.masonry-wrp .masonry-grid {
  position: relative;
}
.masonry-wrp .masonry-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*overflow: hidden;*/
}
.masonry-wrp .masonry-item img {
  width: 100%;
  display: block;
  max-width: 100%;
}
.masonry-wrp figure {
  display: block;
  position: relative;
  margin: 0px;
  overflow: hidden;
  /*background-color: #f00;*/
}
.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 TABLES
***************************************************************
*/
/*
====================================
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;
}
/*
***************************************************************
POP UP BLOCK 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: 40px;
}
.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 BARS
***************************************************************
*/
.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;
}
/*
***************************************************************
Countdown 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;
}
/*
***************************************************************
FILTERS 
***************************************************************
*/
.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-widget .item,
.carousel-widget .owl-item,
.carousel-widget .owl-stage,
.carousel-widget,
.owl-carousel,
.owl-carousel .owl-stage-outer {
	height: 100%;
}*/
/*
====================================
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 {
  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: -9px;
}
.ctrl-1 .owl-nav > div: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,
.swiper-button-prev,
.swiper-button-next {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  /*line-height: 56px;*/
  text-align: center;
  font-size: 40px;
  height: 60px;
  width: 60px;
  z-index: 999;
}
.swiper-button-prev {
  left: 0px;
}
.swiper-button-next {
  right: 0px;
}
.ctrl-1:hover .owl-nav > div {
  opacity: 1;
}
.ctrl-1.small-arrows .owl-nav > div {
  top: -20px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 18px;
}
.ctrl-1.small-arrows .owl-nav > .owl-next {
  right: -40px;
}
.ctrl-1.small-arrows .owl-nav > .owl-prev {
  left: -40px;
}
/*
Carousel dots
------------------------------------
*/
.owl-dots {
  text-align: center;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 0px;
  /*span {
		border: 1px solid rgba(0,0,0,0.4);
		display: block;
		width: 10px; height: 10px;
		border-radius: 20px;
		margin: 0 5px;
	}
	.active span {
		background-color: rgba(0,0,0,0.4);
	}*/
}
.owl-dots > .owl-dot {
  border: 2px solid rgba(0, 0, 0, 0.4);
  margin: 0 5px;
}
.owl-dots .active {
  background-color: rgba(0, 0, 0, 0.4);
}
.ctrl-light .owl-dots > .owl-dot {
  border-color: rgba(255, 255, 255, 0.4);
}
.ctrl-light .owl-dots .active {
  background-color: rgba(255, 255, 255, 0.4);
}
.ctrl-light .owl-nav > div {
  color: #fff;
}
.ctrl-light .owl-nav > div: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;
}
/*
====================================
Zoom carousel
====================================
*/
.zoom-carousel .swiper-wrapper,
.zoom-carousel .owl-stage-outer {
  /*padding-top: 30px;
		padding-bottom: 30px;*/
  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 20px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.3);
}
/*
====================================
Swiper Carousel
====================================
*/
/*.swiper-container {
	width: 100% !important;
	height: 100%;
	position: relative;
	overflow: hidden;

	.swiper-slide {
		text-align: center;
	}
}
.swiper-button-prev { left: 0px; }
.swiper-button-next { right: 0px; }
.swiper-button-prev:hover,
.swiper-button-next:hover {
	background-color: #1f2229;
}
.swiper-pagination-bullet {	
	width: 15px;
	height: 15px;
}
.swiper-pagination-bullet-active {
	background-color: rgba(0,0,0,0.8);
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	pointer-events: inherit;
}*/
.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;
}
/*
====================================
Caption styles
====================================
*/
/*
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 animations
====================================
*/
/*
caption animate 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 animate 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;
}
/*
Swiper slider
------------------------------------
*/
/*
***************************************************************
Accordion
***************************************************************
*/
.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: #1f2229;
}
.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);
}
/*
***************************************************************
TABS
***************************************************************
*/
/*
====================================
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 {
  /* display: none; */
  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 positions & sizes
------------------------------------
*/
.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: #1f2229;
}
.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: #1f2229;
}
.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: #1f2229;
}
.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);
}
/*
Tab style 1 : Side tabs
------------------------------------
*/
.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: #1f2229;
}
.tab-style1.side-tab:not(.tb-r) .tb-list > li {
  border-radius: 4px 0 0 4px;
  margin-bottom: 2px;
}
/*.tab-style1.tb-r .tb-list {
	border-left: 2px solid @dark;
	border-bottom: none;
}*/
.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: #1f2229;
}
.tab-style1.tb-r .tb-list > li {
  border-radius: 0 4px 4px 0;
  margin-bottom: 2px;
}
/**
 * Dark theme of tabs
 */
.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: #1f2229;
}
.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: #1f2229;
}
/*
====================================
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: #1f2229;
}
.tab-style2 .tb-list > li.active:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-color: #1f2229;
}
.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;
}
/*
Tab style 2 : Side tabs
------------------------------------
*/
.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: #1f2229;
}
.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: #1f2229;
}
.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 theme of tabs
 */
.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: #1f2229;
}
.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 tabs
------------------------------------
*/
.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 theme of tabs
 */
.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: #1f2229;
}
.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: #1f2229;
}
.tab-style4 .tb-list > li.active:not([class*="bg-"]) {
  background-color: #1f2229;
}
.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: #1f2229;
}
.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;
}
/*
Tab style 4 : Side tabs
------------------------------------
*/
.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;
}
/*
====================================
All 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 animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at 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 loader css
***************************************************************
*/
.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);
  }
}
/* Loader CSS
=========================*/
.page-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #fff;
  left: 0px;
  top: 0px;
}
body > .page-loader {
  position: fixed;
}
.spinner {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
}
.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);
  }
}
/* 
rw - Row
cl - Column : Common for large devices;
gt - Gutter
---------------
Flexible grids
--------------
cl = common for all layout
m-xs >= 320
m-sm >= 480
m-xl >= 600
t-xl >= 768
d-xl >= 980

Equal grids
--------------
cl 				= column class
eq12 > cl 		= 12 grids
d-eq12 > cl 	= 12 grids >= 980
t-eq12 > cl 	= 12 grids >= 768
mxl-eq12 > cl 	= 12 grids >= 600
msm-eq12 > cl 	= 12 grids >= 480
mxs-eq12 > cl 	= 12 grids >= 320


LAYOUT STRUCTURE 
********************************************/
ul.rw {
	list-style-type: none;
	padding: 0px; margin-top: 0px; margin-bottom: 0px;
}
.rw { 
	margin-right: 0px;
	margin-left: 0px;
}
/*.cfix,
.rw:after, 
.rw:before  { 
	content: '';
	display: table;
	clear: both;
	height: 0px;
}*/
.rw > [class*="cl"] { 
	/*float: left;
	padding-right: 0px;
	padding-left: 0px;*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/*min-height: 5px;*/
}

.tbl-gr { display: table; width: 100%; table-layout: fixed; margin: 0px; }
.tbl-gr > [class*="cl"], .tbl-gr > [class*="col-"] { float: none; display: table-cell; }
.tbl-gr.align-m > [class*="cl"] { vertical-align: middle; }
.tbl-gr.align-t > [class*="cl"] { vertical-align: top; }
.tbl-gr.align-b > [class*="cl"] { vertical-align: bottom; }

.preview > [class*="cl"] > div { background-color: rgba(0,0,0,0.2); padding: 15px; }
.cl-sep > [class*="cl"] { border-right: 1px solid rgba(0,0,0,0.05); }
.cl-sep > [class*="cl"]:last-child { border-right: none; }

.gt0	{ margin-right: 0px; margin-left: 0px; }
.gt1	{ margin-right: -1px; margin-left: 0px; }
.gt2	{ margin-right: -1px;  margin-left: -1px; }
.gt4	{ margin-right: -2px;  margin-left: -2px; }
.gt10	{ margin-right: -5px;  margin-left: -5px; }
.gt12	{ margin-right: -6px;  margin-left: -6px; }
.gt14	{ margin-right: -7px;  margin-left: -7px; }
.gt16	{ margin-right: -8px;  margin-left: -8px; }
.gt18	{ margin-right: -9px;  margin-left: -9px; }
.gt20	{ margin-right: -10px; margin-left: -10px; }
.gt22	{ margin-right: -11px; margin-left: -11px; }
.gt24	{ margin-right: -12px; margin-left: -12px; }
.gt26	{ margin-right: -13px; margin-left: -13px; }
.gt28	{ margin-right: -14px; margin-left: -14px; }
.gt30	{ margin-right: -15px; margin-left: -15px; }
.gt40	{ margin-right: -20px; margin-left: -20px; }
.gt50	{ margin-right: -25px; margin-left: -25px; }
.gt60	{ margin-right: -30px; margin-left: -30px; }
.gt70	{ margin-right: -35px; margin-left: -35px; }
.gt80	{ margin-right: -40px; margin-left: -40px; }
.gt90	{ margin-right: -45px; margin-left: -45px; }
.gt100	{ margin-right: -50px; margin-left: -50px; }

.gt0 > [class*="cl"], .gt0 > [class*="col-"], .gt0 > [class*="flex-col-"] 	{ padding-right: 0px;  padding-left: 0px; }
.gt1 > [class*="cl"], .gt1 > [class*="col-"], .gt1 > [class*="flex-col-"] 	{ padding-right: 1px;  padding-left: 0px; }
.gt2 > [class*="cl"], .gt2 > [class*="col-"], .gt2 > [class*="flex-col-"] 	{ padding-right: 1px;  padding-left: 1px; }
.gt4 > [class*="cl"], .gt4 > [class*="col-"], .gt4 > [class*="flex-col-"] 	{ padding-right: 2px;  padding-left: 2px; }
.gt10 > [class*="cl"], .gt10 > [class*="col-"], .gt10 > [class*="flex-col-"] 	{ padding-right: 5px;  padding-left: 5px; }
.gt12 > [class*="cl"], .gt12 > [class*="col-"], .gt12 > [class*="flex-col-"] 	{ padding-right: 6px;  padding-left: 6px; }
.gt14 > [class*="cl"], .gt14 > [class*="col-"], .gt14 > [class*="flex-col-"] 	{ padding-right: 7px;  padding-left: 7px; }
.gt16 > [class*="cl"], .gt16 > [class*="col-"], .gt16 > [class*="flex-col-"] 	{ padding-right: 8px;  padding-left: 8px; }
.gt18 > [class*="cl"], .gt18 > [class*="col-"], .gt18 > [class*="flex-col-"] 	{ padding-right: 9px;  padding-left: 9px; }
.gt20 > [class*="cl"], .gt20 > [class*="col-"], .gt20 > [class*="flex-col-"] 	{ padding-right: 10px; padding-left: 10px; }
.gt22 > [class*="cl"], .gt22 > [class*="col-"], .gt22 > [class*="flex-col-"] 	{ padding-right: 11px; padding-left: 11px; }
.gt24 > [class*="cl"], .gt24 > [class*="col-"], .gt24 > [class*="flex-col-"] 	{ padding-right: 12px; padding-left: 12px; }
.gt26 > [class*="cl"], .gt26 > [class*="col-"], .gt26 > [class*="flex-col-"] 	{ padding-right: 13px; padding-left: 13px; }
.gt28 > [class*="cl"], .gt28 > [class*="col-"], .gt28 > [class*="flex-col-"] 	{ padding-right: 14px; padding-left: 14px; }
.gt30 > [class*="cl"], .gt30 > [class*="col-"], .gt30 > [class*="flex-col-"] 	{ padding-right: 15px; padding-left: 15px; }
.gt40 > [class*="cl"], .gt40 > [class*="col-"], .gt40 > [class*="flex-col-"] 	{ padding-right: 20px; padding-left: 20px; }
.gt50 > [class*="cl"], .gt50 > [class*="col-"], .gt50 > [class*="flex-col-"] 	{ padding-right: 25px; padding-left: 25px; }
.gt60 > [class*="cl"], .gt60 > [class*="col-"], .gt60 > [class*="flex-col-"] 	{ padding-right: 30px; padding-left: 30px; }
.gt70 > [class*="cl"], .gt70 > [class*="col-"], .gt70 > [class*="flex-col-"] 	{ padding-right: 35px; padding-left: 35px; }
.gt80 > [class*="cl"], .gt80 > [class*="col-"], .gt80 > [class*="flex-col-"] 	{ padding-right: 40px; padding-left: 40px; }
.gt90 > [class*="cl"], .gt90 > [class*="col-"], .gt90 > [class*="flex-col-"] 	{ padding-right: 45px; padding-left: 45px; }
.gt100 > [class*="cl"], .gt100 > [class*="col-"], .gt100 > [class*="flex-col-"] 	{ padding-right: 50px; padding-left: 50px; }

/* Grid bottom margin
------------------------*/
.mb0 > [class*="cl"], .mb0 > [class*="col-"], .mb0 > [class*="flex-col-"] 	{ margin-bottom: 0px;  }
.mb1 > [class*="cl"], .mb1 > [class*="col-"], .mb1 > [class*="flex-col-"] 	{ margin-bottom: 1px;  }
.mb2 > [class*="cl"], .mb2 > [class*="col-"], .mb2 > [class*="flex-col-"] 	{ margin-bottom: 2px;  }
.mb4 > [class*="cl"], .mb4 > [class*="col-"], .mb4 > [class*="flex-col-"] 	{ margin-bottom: 4px;  }
.mb10 > [class*="cl"], .mb10 > [class*="col-"], .mb10 > [class*="flex-col-"] 	{ margin-bottom: 10px; }
.mb12 > [class*="cl"], .mb12 > [class*="col-"], .mb12 > [class*="flex-col-"] 	{ margin-bottom: 12px; }
.mb14 > [class*="cl"], .mb14 > [class*="col-"], .mb14 > [class*="flex-col-"] 	{ margin-bottom: 14px; }
.mb16 > [class*="cl"], .mb16 > [class*="col-"], .mb16 > [class*="flex-col-"] 	{ margin-bottom: 16px; }
.mb18 > [class*="cl"], .mb18 > [class*="col-"], .mb18 > [class*="flex-col-"] 	{ margin-bottom: 18px; }
.mb20 > [class*="cl"], .mb20 > [class*="col-"], .mb20 > [class*="flex-col-"] 	{ margin-bottom: 20px; }
.mb22 > [class*="cl"], .mb22 > [class*="col-"], .mb22 > [class*="flex-col-"] 	{ margin-bottom: 22px; }
.mb24 > [class*="cl"], .mb24 > [class*="col-"], .mb24 > [class*="flex-col-"] 	{ margin-bottom: 24px; }
.mb26 > [class*="cl"], .mb26 > [class*="col-"], .mb26 > [class*="flex-col-"] 	{ margin-bottom: 26px; }
.mb28 > [class*="cl"], .mb28 > [class*="col-"], .mb28 > [class*="flex-col-"] 	{ margin-bottom: 28px; }
.mb30 > [class*="cl"], .mb30 > [class*="col-"], .mb30 > [class*="flex-col-"] 	{ margin-bottom: 30px; }
.mb40 > [class*="cl"], .mb40 > [class*="col-"], .mb40 > [class*="flex-col-"] 	{ margin-bottom: 40px; }
.mb50 > [class*="cl"], .mb50 > [class*="col-"], .mb50 > [class*="flex-col-"] 	{ margin-bottom: 50px; }
.mb60 > [class*="cl"], .mb60 > [class*="col-"], .mb60 > [class*="flex-col-"] 	{ margin-bottom: 60px; }
.mb70 > [class*="cl"], .mb70 > [class*="col-"], .mb70 > [class*="flex-col-"] 	{ margin-bottom: 70px; }
.mb80 > [class*="cl"], .mb80 > [class*="col-"], .mb80 > [class*="flex-col-"] 	{ margin-bottom: 80px; }
.mb90 > [class*="cl"], .mb90 > [class*="col-"], .mb90 > [class*="flex-col-"] 	{ margin-bottom: 90px; }
.mb100 > [class*="cl"], .mb100 > [class*="col-"], .mb100 > [class*="flex-col-"] 	{ margin-bottom: 100px; }

/* Flexible grid system
------------------------*/
.cl12 { width: 100%; }
.cl11 { width: 91.66666667%; }
.cl10 { width: 83.33333333%; }
.cl9 { width: 75%; }
.cl8 { width: 66.66666667%; }
.cl7 { width: 58.33333333%; }
.cl6 { width: 50%; }
.cl5 { width: 41.66666667%; }
.cl4 { width: 33.33333333%; }
.cl3 { width: 25%; }
.cl2 { width: 16.66666667%; }
.cl1 { width: 8.33333333%; }

/* Equal grid system
------------------------*/
/*.eq1 > .cl { width: 100%; }
.eq2 > .cl { width: 50%; }
.eq3 > .cl { width: 33.33333333333333%; }
.eq4 > .cl { width: 25%; }
.eq5 > .cl { width: 20%; }
.eq6 > .cl { width: 16.66666666666667%; }
.eq7 > .cl { width: 14.28571428571429%; }
.eq8 > .cl { width: 12.5%; }
.eq9 > .cl { width: 11.11111111111111%; }
.eq10 > .cl { width: 10%; }
.eq11 > .cl { width: 9.090909090909091%; }
.eq12 > .cl { width: 8.333333333333333%; }*/


/*
FLEX GRIDS
https://github.com/kristoferjoseph/flexboxgrid
********************************************/
.rw,
.flex-row {
	box-sizing: border-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	-webkit-box-flex: 0;
	flex: 0 1 auto;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
/* .flex-row > [class*="flex-col-"],
.flex-row {
	border: 1px solid #000;
} */
.rw > [class*="cl"],
.flex-row > hr,
.flex-row > [class*="flex-col-"] {
	width: 100%;
}
.flex-row.reverse {
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}

.flex-col.reverse {
	-webkit-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	flex-direction: column-reverse;
}

.flex-col-xs,
.flex-col-xs-1,
.flex-col-xs-2,
.flex-col-xs-3,
.flex-col-xs-4,
.flex-col-xs-5,
.flex-col-xs-6,
.flex-col-xs-7,
.flex-col-xs-8,
.flex-col-xs-9,
.flex-col-xs-10,
.flex-col-xs-11,
.flex-col-xs-12 {
	box-sizing: border-box;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	-webkit-box-flex: 0;
	flex: 0 0 auto;
}

.flex-col-xs {
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	-webkit-box-flex: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 0;
	-webkit-flex-basis: 0;
	flex-basis: 0;
	max-width: 100%;
}

.flex-col-xs-1 {
	-ms-flex-preferred-size: 8.333%;
	-webkit-flex-basis: 8.333%;
	flex-basis: 8.333%;
	max-width: 8.333%;
}

.flex-col-xs-2 {
	-ms-flex-preferred-size: 16.667%;
	-webkit-flex-basis: 16.667%;
	flex-basis: 16.667%;
	max-width: 16.667%;
}

.flex-col-xs-3 {
	-ms-flex-preferred-size: 25%;
	-webkit-flex-basis: 25%;
	flex-basis: 25%;
	max-width: 25%;
}

.flex-col-xs-4 {
	-ms-flex-preferred-size: 33.333%;
	-webkit-flex-basis: 33.333%;
	flex-basis: 33.333%;
	max-width: 33.333%;
}

.flex-col-xs-5 {
	-ms-flex-preferred-size: 41.667%;
	-webkit-flex-basis: 41.667%;
	flex-basis: 41.667%;
	max-width: 41.667%;
}

.flex-col-xs-6 {
	-ms-flex-preferred-size: 50%;
	-webkit-flex-basis: 50%;
	flex-basis: 50%;
	max-width: 50%;
}

.flex-col-xs-7 {
	-ms-flex-preferred-size: 58.333%;
	-webkit-flex-basis: 58.333%;
	flex-basis: 58.333%;
	max-width: 58.333%;
}

.flex-col-xs-8 {
	-ms-flex-preferred-size: 66.667%;
	-webkit-flex-basis: 66.667%;
	flex-basis: 66.667%;
	max-width: 66.667%;
}

.flex-col-xs-9 {
	-ms-flex-preferred-size: 75%;
	-webkit-flex-basis: 75%;
	flex-basis: 75%;
	max-width: 75%;
}

.flex-col-xs-10 {
	-ms-flex-preferred-size: 83.333%;
	-webkit-flex-basis: 83.333%;
	flex-basis: 83.333%;
	max-width: 83.333%;
}

.flex-col-xs-11 {
	-ms-flex-preferred-size: 91.667%;
	-webkit-flex-basis: 91.667%;
	flex-basis: 91.667%;
	max-width: 91.667%;
}

.flex-col-xs-12 {
	-ms-flex-preferred-size: 100%;
	-webkit-flex-basis: 100%;
	flex-basis: 100%;
	max-width: 100%;
}

.flex-col-xs-offset-1 {
	margin-left: 8.333%;
}

.flex-col-xs-offset-2 {
	margin-left: 16.667%;
}

.flex-col-xs-offset-3 {
	margin-left: 25%;
}

.flex-col-xs-offset-4 {
	margin-left: 33.333%;
}

.flex-col-xs-offset-5 {
	margin-left: 41.667%;
}

.flex-col-xs-offset-6 {
	margin-left: 50%;
}

.flex-col-xs-offset-7 {
	margin-left: 58.333%;
}

.flex-col-xs-offset-8 {
	margin-left: 66.667%;
}

.flex-col-xs-offset-9 {
	margin-left: 75%;
}

.flex-col-xs-offset-10 {
	margin-left: 83.333%;
}

.flex-col-xs-offset-11 {
	margin-left: 91.667%;
}

.start-xs {
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	-webkit-box-pack: start;
	justify-content: flex-start;
	text-align: start;
}

.center-xs {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
}

.end-xs {
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	-webkit-box-pack: end;
	justify-content: flex-end;
	text-align: end;
}

.top-xs {
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	-webkit-box-align: start;
	align-items: flex-start;
}

.middle-xs {
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}

.bottom-xs {
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	-webkit-box-align: end;
	align-items: flex-end;
}

.around-xs {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.between-xs {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.first-xs {
	-webkit-order: -1;
	-ms-flex-order: -1;
	-webkit-box-ordinal-group: 0;
	order: -1;
}

.last-xs {
	-webkit-order: 1;
	-ms-flex-order: 1;
	-webkit-box-ordinal-group: 2;
	order: 1;
}

@media (min-width: 768px) {
/* @media only screen and (min-width:48em) { */
	.flex-col-sm,
	.flex-col-sm-1,
	.flex-col-sm-2,
	.flex-col-sm-3,
	.flex-col-sm-4,
	.flex-col-sm-5,
	.flex-col-sm-6,
	.flex-col-sm-7,
	.flex-col-sm-8,
	.flex-col-sm-9,
	.flex-col-sm-10,
	.flex-col-sm-11,
	.flex-col-sm-12 {
		box-sizing: border-box;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		-webkit-box-flex: 0;
		flex: 0 0 auto;
	}

	.flex-col-sm {
		-webkit-flex-grow: 1;
		-ms-flex-positive: 1;
		-webkit-box-flex: 1;
		flex-grow: 1;
		-ms-flex-preferred-size: 0;
		-webkit-flex-basis: 0;
		flex-basis: 0;
		max-width: 100%;
	}

	.flex-col-sm-1 {
		-ms-flex-preferred-size: 8.333%;
		-webkit-flex-basis: 8.333%;
		flex-basis: 8.333%;
		max-width: 8.333%;
	}

	.flex-col-sm-2 {
		-ms-flex-preferred-size: 16.667%;
		-webkit-flex-basis: 16.667%;
		flex-basis: 16.667%;
		max-width: 16.667%;
	}

	.flex-col-sm-3 {
		-ms-flex-preferred-size: 25%;
		-webkit-flex-basis: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}

	.flex-col-sm-4 {
		-ms-flex-preferred-size: 33.333%;
		-webkit-flex-basis: 33.333%;
		flex-basis: 33.333%;
		max-width: 33.333%;
	}

	.flex-col-sm-5 {
		-ms-flex-preferred-size: 41.667%;
		-webkit-flex-basis: 41.667%;
		flex-basis: 41.667%;
		max-width: 41.667%;
	}

	.flex-col-sm-6 {
		-ms-flex-preferred-size: 50%;
		-webkit-flex-basis: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}

	.flex-col-sm-7 {
		-ms-flex-preferred-size: 58.333%;
		-webkit-flex-basis: 58.333%;
		flex-basis: 58.333%;
		max-width: 58.333%;
	}

	.flex-col-sm-8 {
		-ms-flex-preferred-size: 66.667%;
		-webkit-flex-basis: 66.667%;
		flex-basis: 66.667%;
		max-width: 66.667%;
	}

	.flex-col-sm-9 {
		-ms-flex-preferred-size: 75%;
		-webkit-flex-basis: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}

	.flex-col-sm-10 {
		-ms-flex-preferred-size: 83.333%;
		-webkit-flex-basis: 83.333%;
		flex-basis: 83.333%;
		max-width: 83.333%;
	}

	.flex-col-sm-11 {
		-ms-flex-preferred-size: 91.667%;
		-webkit-flex-basis: 91.667%;
		flex-basis: 91.667%;
		max-width: 91.667%;
	}

	.flex-col-sm-12 {
		-ms-flex-preferred-size: 100%;
		-webkit-flex-basis: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}

	.flex-col-sm-offset-1 {
		margin-left: 8.333%;
	}

	.flex-col-sm-offset-2 {
		margin-left: 16.667%;
	}

	.flex-col-sm-offset-3 {
		margin-left: 25%;
	}

	.flex-col-sm-offset-4 {
		margin-left: 33.333%;
	}

	.flex-col-sm-offset-5 {
		margin-left: 41.667%;
	}

	.flex-col-sm-offset-6 {
		margin-left: 50%;
	}

	.flex-col-sm-offset-7 {
		margin-left: 58.333%;
	}

	.flex-col-sm-offset-8 {
		margin-left: 66.667%;
	}

	.flex-col-sm-offset-9 {
		margin-left: 75%;
	}

	.flex-col-sm-offset-10 {
		margin-left: 83.333%;
	}

	.flex-col-sm-offset-11 {
		margin-left: 91.667%;
	}

	.start-sm {
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		-webkit-box-pack: start;
		justify-content: flex-start;
		text-align: start;
	}

	.center-sm {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		-webkit-box-pack: center;
		justify-content: center;
		text-align: center;
	}

	.end-sm {
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		-webkit-box-pack: end;
		justify-content: flex-end;
		text-align: end;
	}

	.top-sm {
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		-webkit-box-align: start;
		align-items: flex-start;
	}

	.middle-sm {
		-webkit-align-items: center;
		-ms-flex-align: center;
		-webkit-box-align: center;
		align-items: center;
	}

	.bottom-sm {
		-webkit-align-items: flex-end;
		-ms-flex-align: end;
		-webkit-box-align: end;
		align-items: flex-end;
	}

	.around-sm {
		-webkit-justify-content: space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}

	.between-sm {
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		-webkit-box-pack: justify;
		justify-content: space-between;
	}

	.first-sm {
		-webkit-order: -1;
		-ms-flex-order: -1;
		-webkit-box-ordinal-group: 0;
		order: -1;
	}

	.last-sm {
		-webkit-order: 1;
		-ms-flex-order: 1;
		-webkit-box-ordinal-group: 2;
		order: 1;
	}

}

@media (min-width: 992px) {
/* @media only screen and (min-width:62em) { */
	.flex-col-md,
	.flex-col-md-1,
	.flex-col-md-2,
	.flex-col-md-3,
	.flex-col-md-4,
	.flex-col-md-5,
	.flex-col-md-6,
	.flex-col-md-7,
	.flex-col-md-8,
	.flex-col-md-9,
	.flex-col-md-10,
	.flex-col-md-11,
	.flex-col-md-12 {
		box-sizing: border-box;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		-webkit-box-flex: 0;
		flex: 0 0 auto;
	}

	.flex-col-md {
		-webkit-flex-grow: 1;
		-ms-flex-positive: 1;
		-webkit-box-flex: 1;
		flex-grow: 1;
		-ms-flex-preferred-size: 0;
		-webkit-flex-basis: 0;
		flex-basis: 0;
		max-width: 100%;
	}

	.flex-col-md-1 {
		-ms-flex-preferred-size: 8.333%;
		-webkit-flex-basis: 8.333%;
		flex-basis: 8.333%;
		max-width: 8.333%;
	}

	.flex-col-md-2 {
		-ms-flex-preferred-size: 16.667%;
		-webkit-flex-basis: 16.667%;
		flex-basis: 16.667%;
		max-width: 16.667%;
	}

	.flex-col-md-3 {
		-ms-flex-preferred-size: 25%;
		-webkit-flex-basis: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}

	.flex-col-md-4 {
		-ms-flex-preferred-size: 33.333%;
		-webkit-flex-basis: 33.333%;
		flex-basis: 33.333%;
		max-width: 33.333%;
	}

	.flex-col-md-5 {
		-ms-flex-preferred-size: 41.667%;
		-webkit-flex-basis: 41.667%;
		flex-basis: 41.667%;
		max-width: 41.667%;
	}

	.flex-col-md-6 {
		-ms-flex-preferred-size: 50%;
		-webkit-flex-basis: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}

	.flex-col-md-7 {
		-ms-flex-preferred-size: 58.333%;
		-webkit-flex-basis: 58.333%;
		flex-basis: 58.333%;
		max-width: 58.333%;
	}

	.flex-col-md-8 {
		-ms-flex-preferred-size: 66.667%;
		-webkit-flex-basis: 66.667%;
		flex-basis: 66.667%;
		max-width: 66.667%;
	}

	.flex-col-md-9 {
		-ms-flex-preferred-size: 75%;
		-webkit-flex-basis: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}

	.flex-col-md-10 {
		-ms-flex-preferred-size: 83.333%;
		-webkit-flex-basis: 83.333%;
		flex-basis: 83.333%;
		max-width: 83.333%;
	}

	.flex-col-md-11 {
		-ms-flex-preferred-size: 91.667%;
		-webkit-flex-basis: 91.667%;
		flex-basis: 91.667%;
		max-width: 91.667%;
	}

	.flex-col-md-12 {
		-ms-flex-preferred-size: 100%;
		-webkit-flex-basis: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}

	.flex-col-md-offset-1 {
		margin-left: 8.333%;
	}

	.flex-col-md-offset-2 {
		margin-left: 16.667%;
	}

	.flex-col-md-offset-3 {
		margin-left: 25%;
	}

	.flex-col-md-offset-4 {
		margin-left: 33.333%;
	}

	.flex-col-md-offset-5 {
		margin-left: 41.667%;
	}

	.flex-col-md-offset-6 {
		margin-left: 50%;
	}

	.flex-col-md-offset-7 {
		margin-left: 58.333%;
	}

	.flex-col-md-offset-8 {
		margin-left: 66.667%;
	}

	.flex-col-md-offset-9 {
		margin-left: 75%;
	}

	.flex-col-md-offset-10 {
		margin-left: 83.333%;
	}

	.flex-col-md-offset-11 {
		margin-left: 91.667%;
	}

	.start-md {
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		-webkit-box-pack: start;
		justify-content: flex-start;
		text-align: start;
	}

	.center-md {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		-webkit-box-pack: center;
		justify-content: center;
		text-align: center;
	}

	.end-md {
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		-webkit-box-pack: end;
		justify-content: flex-end;
		text-align: end;
	}

	.top-md {
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		-webkit-box-align: start;
		align-items: flex-start;
	}

	.middle-md {
		-webkit-align-items: center;
		-ms-flex-align: center;
		-webkit-box-align: center;
		align-items: center;
	}

	.bottom-md {
		-webkit-align-items: flex-end;
		-ms-flex-align: end;
		-webkit-box-align: end;
		align-items: flex-end;
	}

	.around-md {
		-webkit-justify-content: space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}

	.between-md {
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		-webkit-box-pack: justify;
		justify-content: space-between;
	}

	.first-md {
		-webkit-order: -1;
		-ms-flex-order: -1;
		-webkit-box-ordinal-group: 0;
		order: -1;
	}

	.last-md {
		-webkit-order: 1;
		-ms-flex-order: 1;
		-webkit-box-ordinal-group: 2;
		order: 1;
	}

}


/* @media only screen and (min-width:75em) { */
@media (min-width: 1200px) {
	.flex-col-lg,
	.flex-col-lg-1,
	.flex-col-lg-2,
	.flex-col-lg-3,
	.flex-col-lg-4,
	.flex-col-lg-5,
	.flex-col-lg-6,
	.flex-col-lg-7,
	.flex-col-lg-8,
	.flex-col-lg-9,
	.flex-col-lg-10,
	.flex-col-lg-11,
	.flex-col-lg-12 {
		box-sizing: border-box;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		-webkit-box-flex: 0;
		flex: 0 0 auto;
	}

	.flex-col-lg {
		-webkit-flex-grow: 1;
		-ms-flex-positive: 1;
		-webkit-box-flex: 1;
		flex-grow: 1;
		-ms-flex-preferred-size: 0;
		-webkit-flex-basis: 0;
		flex-basis: 0;
		max-width: 100%;
	}

	.flex-col-lg-1 {
		-ms-flex-preferred-size: 8.333%;
		-webkit-flex-basis: 8.333%;
		flex-basis: 8.333%;
		max-width: 8.333%;
	}

	.flex-col-lg-2 {
		-ms-flex-preferred-size: 16.667%;
		-webkit-flex-basis: 16.667%;
		flex-basis: 16.667%;
		max-width: 16.667%;
	}

	.flex-col-lg-3 {
		-ms-flex-preferred-size: 25%;
		-webkit-flex-basis: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}

	.flex-col-lg-4 {
		-ms-flex-preferred-size: 33.333%;
		-webkit-flex-basis: 33.333%;
		flex-basis: 33.333%;
		max-width: 33.333%;
	}

	.flex-col-lg-5 {
		-ms-flex-preferred-size: 41.667%;
		-webkit-flex-basis: 41.667%;
		flex-basis: 41.667%;
		max-width: 41.667%;
	}

	.flex-col-lg-6 {
		-ms-flex-preferred-size: 50%;
		-webkit-flex-basis: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}

	.flex-col-lg-7 {
		-ms-flex-preferred-size: 58.333%;
		-webkit-flex-basis: 58.333%;
		flex-basis: 58.333%;
		max-width: 58.333%;
	}

	.flex-col-lg-8 {
		-ms-flex-preferred-size: 66.667%;
		-webkit-flex-basis: 66.667%;
		flex-basis: 66.667%;
		max-width: 66.667%;
	}

	.flex-col-lg-9 {
		-ms-flex-preferred-size: 75%;
		-webkit-flex-basis: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}

	.flex-col-lg-10 {
		-ms-flex-preferred-size: 83.333%;
		-webkit-flex-basis: 83.333%;
		flex-basis: 83.333%;
		max-width: 83.333%;
	}

	.flex-col-lg-11 {
		-ms-flex-preferred-size: 91.667%;
		-webkit-flex-basis: 91.667%;
		flex-basis: 91.667%;
		max-width: 91.667%;
	}

	.flex-col-lg-12 {
		-ms-flex-preferred-size: 100%;
		-webkit-flex-basis: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}

	.flex-col-lg-offset-1 {
		margin-left: 8.333%;
	}

	.flex-col-lg-offset-2 {
		margin-left: 16.667%;
	}

	.flex-col-lg-offset-3 {
		margin-left: 25%;
	}

	.flex-col-lg-offset-4 {
		margin-left: 33.333%;
	}

	.flex-col-lg-offset-5 {
		margin-left: 41.667%;
	}

	.flex-col-lg-offset-6 {
		margin-left: 50%;
	}

	.flex-col-lg-offset-7 {
		margin-left: 58.333%;
	}

	.flex-col-lg-offset-8 {
		margin-left: 66.667%;
	}

	.flex-col-lg-offset-9 {
		margin-left: 75%;
	}

	.flex-col-lg-offset-10 {
		margin-left: 83.333%;
	}

	.flex-col-lg-offset-11 {
		margin-left: 91.667%;
	}

	.start-lg {
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		-webkit-box-pack: start;
		justify-content: flex-start;
		text-align: start;
	}

	.center-lg {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		-webkit-box-pack: center;
		justify-content: center;
		text-align: center;
	}

	.end-lg {
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		-webkit-box-pack: end;
		justify-content: flex-end;
		text-align: end;
	}

	.top-lg {
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		-webkit-box-align: start;
		align-items: flex-start;
	}

	.middle-lg {
		-webkit-align-items: center;
		-ms-flex-align: center;
		-webkit-box-align: center;
		align-items: center;
	}

	.bottom-lg {
		-webkit-align-items: flex-end;
		-ms-flex-align: end;
		-webkit-box-align: end;
		align-items: flex-end;
	}

	.around-lg {
		-webkit-justify-content: space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}

	.between-lg {
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		-webkit-box-pack: justify;
		justify-content: space-between;
	}

	.first-lg {
		-webkit-order: -1;
		-ms-flex-order: -1;
		-webkit-box-ordinal-group: 0;
		order: -1;
	}

	.last-lg {
		-webkit-order: 1;
		-ms-flex-order: 1;
		-webkit-box-ordinal-group: 2;
		order: 1;
	}

}

@media (min-width: 992px) {
	/* Equal grid system
	------------------------*/
	.eq1 > .cl {
		-ms-flex-preferred-size: 100%;
		-webkit-flex-basis: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.eq2 > .cl {
		-ms-flex-preferred-size: 50%;
		-webkit-flex-basis: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	.eq3 > .cl {
		-ms-flex-preferred-size: 33.33333333333333%;;
		-webkit-flex-basis: 33.33333333333333%;;
		flex-basis: 33.33333333333333%;;
		max-width: 33.33333333333333%;;
	}
	.eq4 > .cl {
		-ms-flex-preferred-size: 25%;
		-webkit-flex-basis: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	.eq5 > .cl {
		-ms-flex-preferred-size: 20%;
		-webkit-flex-basis: 20%;
		flex-basis: 20%;
		max-width: 20%;
	}
	.eq6 > .cl {
		-ms-flex-preferred-size: 16.66666666666667%;
		-webkit-flex-basis: 16.66666666666667%;
		flex-basis: 16.66666666666667%;
		max-width: 16.66666666666667%;
	}
	.eq7 > .cl {
		-ms-flex-preferred-size: 14.28571428571429%;
		-webkit-flex-basis: 14.28571428571429%;
		flex-basis: 14.28571428571429%;
		max-width: 14.28571428571429%;
	}
	.eq8 > .cl {
		-ms-flex-preferred-size: 12.5%;
		-webkit-flex-basis: 12.5%;
		flex-basis: 12.5%;
		max-width: 12.5%;
	}
	.eq9 > .cl {
		-ms-flex-preferred-size: 11.11111111111111%;
		-webkit-flex-basis: 11.11111111111111%;
		flex-basis: 11.11111111111111%;
		max-width: 11.11111111111111%;
	}
	.eq10 > .cl {
		-ms-flex-preferred-size: 10%;
		-webkit-flex-basis: 10%;
		flex-basis: 10%;
		max-width: 10%;
	}
	.eq11 > .cl {
		-ms-flex-preferred-size: 9.090909090909091%;
		-webkit-flex-basis: 9.090909090909091%;
		flex-basis: 9.090909090909091%;
		max-width: 9.090909090909091%;
	}
	.eq12 > .cl {
		-ms-flex-preferred-size: 8.333333333333333%;
		-webkit-flex-basis: 8.333333333333333%;
		flex-basis: 8.333333333333333%;
		max-width: 8.333333333333333%;
	}

}
/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++
AUTHOR : R_GENESIS
PROJECT : RGen Landing Page with Page Builder
This file licensed to R_GENESIS (http://themeforest.net/user/r_genesis) and it’s strictly prohibited to copy or reuse it.
Copyright 2015-2017 R.Genesis.Art
++++++++++++++++++++++++++++++++++++++++++++++++++++++


TABLE OF CONTENTS
********************************************
- COMMON
- Z-INDEX
- OPACITY
- SHADOW
- CLEARING
- ICON BLOCKS
- BUTTONS
- COMMON TYPOGRAPHY
- LIST CLASSES
- TAG TEXT
- TEXT TRANSFORM
- FONTS SIZES
- LINE HEIGHT
- FONT WEIGHT
- FONT FAMILY
- FORM CONTROLS
- ALIGNMENT
- RADIUS
- BORDER
- PADDING
- MARGIN
- SQUARE
- WIDTH
- HEIGHT
- OTHER UTILITIES
- ANIMATION
- MOBILE & TABLET COMMON
- TABLET

********************************************/
.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); } }*/
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
body {
  margin: 0;
}
svg {
  max-height: 100%;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #888888;
  line-height: 1.5;
  font-size: 14px;
}
[data-pageloader="y"] #page {
  opacity: 0;
}
.b-lazy {
  -webkit-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
  max-width: 100%;
  opacity: 0;
}
.b-lazy.b-loaded {
  opacity: 1;
}
/* COMMON
********************************************/
a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  outline: 0;
}
a:not([class*="btn"]):hover,
a:not([class*="btn"]):focus {
  opacity: 0.7;
}
/*a:not([class]) { color: #1f9df3; }*/
footer,
section,
.section {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
}
.container {
  position: relative;
  z-index: 999;
}
.container.small {
  width: 960px;
}
hr {
  height: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}
.light hr,
hr.light {
  border-color: rgba(255, 255, 255, 0.15);
}
p {
  margin-bottom: 20px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
[data-parallax-img] {
  overflow: hidden;
}
.el-parallax {
  top: 0px;
}
/* Common
********************************************/
.full-wh {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
.full-vh {
  position: absolute;
  /*top: 0px;*/
  left: 0px;
  right: 0px;
  height: 110vh;
  top: 50%;
  margin-top: -55vh;
}
.full-vh.vh120 {
  margin-top: -60vh;
}
.full-vh.vh130 {
  margin-top: -65vh;
}
.full-vh.vh140 {
  margin-top: -70vh;
}
.full-vh.vh150 {
  margin-top: -75vh;
}
.full-vh.vh160 {
  margin-top: -80vh;
}
.full-vh.vh170 {
  margin-top: -85vh;
}
.full-vh.vh180 {
  margin-top: -90vh;
}
.full-vh.vh190 {
  margin-top: -95vh;
}
.full-vh.vh200 {
  margin-top: -100vh;
}
section.no-border,
.section.no-border,
.no-border {
  border: none;
}
.pos-rel {
  position: relative;
}
.pos-abs {
  position: absolute;
}
.l0 {
  left: 0px;
}
.l2 {
  left: 2px;
}
.l4 {
  left: 4px;
}
.l6 {
  left: 6px;
}
.l8 {
  left: 8px;
}
.l10 {
  left: 10px;
}
.l15 {
  left: 15px;
}
.l20 {
  left: 20px;
}
.l25 {
  left: 25px;
}
.l30 {
  left: 30px;
}
.l35 {
  left: 35px;
}
.l40 {
  left: 40px;
}
.l45 {
  left: 45px;
}
.l50 {
  left: 50px;
}
.r0 {
  right: 0px;
}
.r2 {
  right: 2px;
}
.r4 {
  right: 4px;
}
.r6 {
  right: 6px;
}
.r8 {
  right: 8px;
}
.r10 {
  right: 10px;
}
.r15 {
  right: 15px;
}
.r20 {
  right: 20px;
}
.r25 {
  right: 25px;
}
.r30 {
  right: 30px;
}
.r35 {
  right: 35px;
}
.r40 {
  right: 40px;
}
.r45 {
  right: 45px;
}
.r50 {
  right: 50px;
}
.-b1 {
  bottom: -1px;
}
.b0 {
  bottom: 0px;
}
.b2 {
  bottom: 2px;
}
.b4 {
  bottom: 4px;
}
.b6 {
  bottom: 6px;
}
.b8 {
  bottom: 8px;
}
.b10 {
  bottom: 10px;
}
.b15 {
  bottom: 15px;
}
.b20 {
  bottom: 20px;
}
.b25 {
  bottom: 25px;
}
.b30 {
  bottom: 30px;
}
.b35 {
  bottom: 35px;
}
.b40 {
  bottom: 40px;
}
.b45 {
  bottom: 45px;
}
.b50 {
  bottom: 50px;
}
.t0 {
  top: 0px;
}
.t2 {
  top: 2px;
}
.t4 {
  top: 4px;
}
.t6 {
  top: 6px;
}
.t8 {
  top: 8px;
}
.t10 {
  top: 10px;
}
.t15 {
  top: 15px;
}
.t20 {
  top: 20px;
}
.t25 {
  top: 25px;
}
.t30 {
  top: 30px;
}
.t35 {
  top: 35px;
}
.t40 {
  top: 40px;
}
.t45 {
  top: 45px;
}
.t50 {
  top: 50px;
}
.t-auto {
  top: auto;
}
.b-auto {
  bottom: auto;
}
.l-auto {
  left: auto;
}
.r-auto {
  right: auto;
}
.google-map-markers,
.list-reset {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
/* .img-l {
	float: left;
	margin: 0 20px 20px 0;
}
.img-r {
	float: right;
	margin: 0 0 20px 20px;
}
.img-c {
	display: inline-block;
	margin: 0 20px 20px 20px;
} */
.content-img figcaption {
  display: block;
  padding: 10px 0 0 0;
}
/* z-index
=========================*/
.z0 {
  z-index: 0;
}
.z1 {
  z-index: 1;
}
.z2 {
  z-index: 200;
}
.z3 {
  z-index: 300;
}
.z4 {
  z-index: 400;
}
.z5 {
  z-index: 500;
}
.z6 {
  z-index: 600;
}
.z7 {
  z-index: 700;
}
.z8 {
  z-index: 800;
}
.z9 {
  z-index: 900;
}
.z10 {
  z-index: 1000;
}
/* Opacity
=========================*/
.op-0 {
  opacity: 0;
}
.op-001 {
  opacity: 0.01;
}
.op-002 {
  opacity: 0.02;
}
.op-003 {
  opacity: 0.03;
}
.op-004 {
  opacity: 0.04;
}
.op-005 {
  opacity: 0.05;
}
.op-006 {
  opacity: 0.06;
}
.op-007 {
  opacity: 0.07;
}
.op-008 {
  opacity: 0.08;
}
.op-009 {
  opacity: 0.09;
}
.op-01 {
  opacity: 0.1;
}
.op-02,
[data-hover-class*="op-02"]:hover {
  opacity: 0.2;
}
.op-03 {
  opacity: 0.3;
}
.op-04 {
  opacity: 0.4;
}
.op-05 {
  opacity: 0.5;
}
.op-06 {
  opacity: 0.6;
}
.op-07 {
  opacity: 0.7;
}
.op-08 {
  opacity: 0.8;
}
.op-09 {
  opacity: 0.9;
}
/*.op-1 { opacity: 1; }*/
[data-animate-in]:not(.animated) {
  opacity: 0;
}
/* Shadow
=========================*/
.shadow-large,
.hov-shadow-large:hover {
  -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.15);
}
.shadow-medium,
.hov-shadow-medium:hover {
  -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.15);
}
.shadow-small,
.hov-shadow-small:hover {
  -webkit-box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
}
.shadow-mini,
.hov-shadow-mini:hover {
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}
.shadow-tiny,
.hov-shadow-tiny:hover {
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
}
.shadow-micro,
.hov-shadow-micro:hover {
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15);
}
/* Clearing
=========================*/
.nav-header:before,
.nav-header:after,
.nav-links:before,
.nav-links:after {
  content: '';
  display: table;
  clear: both;
}
/* Icon blocks
=========================*/
.iconwrp {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.iconwrp.l {
  margin-left: 0;
}
.iconwrp.r {
  margin-right: 0;
}
.iconbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/* Table
********************************************/
.table-responsive {
  border-color: rgba(0, 0, 0, 0.1);
}
.light.table-responsive {
  border-color: rgba(255, 255, 255, 0.1);
}
.tbl {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
}
.light.tbl-border th,
.light.tbl-border td {
  border-color: rgba(255, 255, 255, 0.1);
}
.tbl td,
.tbl th {
  padding: 10px;
}
.pd-lr-10 th,
.pd-lr-10 td {
  padding-left: 10px;
  padding-right: 10px;
}
.pd-lr-15 th,
.pd-lr-15 td {
  padding-left: 15px;
  padding-right: 15px;
}
.pd-lr-20 th,
.pd-lr-20 td {
  padding-left: 20px;
  padding-right: 20px;
}
.pd-lr-30 th,
.pd-lr-30 td {
  padding-left: 30px;
  padding-right: 30px;
}
.pd-tb-10 th,
.pd-tb-10 td {
  padding-top: 10px;
  padding-bottom: 10px;
}
.pd-tb-15 th,
.pd-tb-15 td {
  padding-top: 15px;
  padding-bottom: 15px;
}
.pd-tb-20 th,
.pd-tb-20 td {
  padding-top: 20px;
  padding-bottom: 20px;
}
.pd-tb-30 th,
.pd-tb-30 td {
  padding-top: 30px;
  padding-bottom: 30px;
}
.align-m th,
.align-m td {
  vertical-align: middle;
}
.align-t th,
.align-t td {
  vertical-align: top;
}
.align-b th,
.align-b td {
  vertical-align: bottom;
}
/* FORMS
********************************************/
.form-group label {
  font-weight: normal;
}
.datetimepicker {
  z-index: 99999;
}
/* Form controls
=========================*/
.form-control {
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  vertical-align: middle;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  height: auto;
  padding: 10px 15px;
  margin-bottom: 10px;
  font-weight: normal;
}
.form-control:hover,
.form-control:focus {
  border-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: none;
          box-shadow: none;
}
/* Light form control */
.form-control-light {
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.form-control-light option {
  color: #333;
}
.form-control-light:hover,
.form-control-light:focus {
  border-color: rgba(255, 255, 255, 0.5);
}
.form-control-light::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-control-light::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-control-light:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-control-light:-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.inline-control {
  position: relative;
  padding-left: 25px;
}
.inline-control [type="checkbox"],
.inline-control [type="radio"] {
  position: absolute;
  left: 0px;
  top: 5px;
}
/* form control sizes */
.large.form-control {
  font-size: 18px;
  padding: 15px 25px;
}
.medium.form-control {
  font-size: 16px;
  padding: 10px 15px;
}
.small.form-control {
  font-size: 14px;
  padding: 8px 10px;
}
.mini.form-control {
  font-size: 13px;
  padding: 5px 8px;
}
textarea.form-control {
  height: 150px;
}
.field-list {
  list-style-type: none;
  margin: 0 0 10px 0;
  padding: 0px;
}
.field-list li {
  margin: 0 0 3px 0;
}
.field-list li > span {
  display: inline-block;
  margin-left: 5px;
  vertical-align: top;
}
.field-list li input {
  position: relative;
  top: -2px;
}
/*All messages*/
.sweet-alert {
  padding: 30px;
}
.sweet-alert h2 {
  margin: 20px 0;
}
.sweet-alert p {
  font-weight: normal;
}
.error {
  display: block;
  font-weight: normal;
  margin: 0px;
  text-align: left;
  font-size: 12px;
  color: #e74c3c;
}
.error.valid {
  display: none !important;
}
.form-control + .error {
  margin-bottom: 10px;
  margin-top: -4px;
}
.typo-light .error {
  color: #fff;
}
/*Form table row*/
.form-inline-tbl {
  display: table;
  table-layout: fixed;
  border-spacing: 10px;
  margin-left: auto;
  margin-right: auto;
  list-style-type: none;
  padding: 0px;
}
.form-inline-tbl > li {
  display: table-cell;
}
/*
***************************************************************
Subscribe blocks
***************************************************************
*/
.subscribe-block .form-group {
  position: relative;
  margin: 0 0 5px 0;
  padding-bottom: 1px;
}
.subscribe-block .btn {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 0px 20px;
  min-height: inherit;
}
.subscribe-block .btn,
.subscribe-block [type="email"],
.subscribe-block [type="text"] {
  height: 50px;
}
.subscribe-block.inline > .form-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.subscribe-block.inline > .form-widget > .form-group {
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 10px;
}
.subscribe-block.inline > .form-widget > .form-group:last-child {
  margin-right: 0;
  /* & .btn {
				width: 100%;
			} */
}
/*
Large size
------------------------------------
*/
.large.subscribe-block .btn {
  padding: 0px 30px;
}
.large.subscribe-block .btn,
.large.subscribe-block [type="email"],
.large.subscribe-block [type="text"] {
  height: 70px;
}
.large.subscribe-block [type="email"] {
  padding-left: 30px;
}
/*
Large size
------------------------------------
*/
.small.subscribe-block .btn {
  padding: 0px 15px;
}
.small.subscribe-block .btn,
.small.subscribe-block [type="email"],
.small.subscribe-block [type="text"] {
  height: 40px;
}
/*
====================================
Subscribe blocks 1
====================================
*/
.subscribe-block._1 .btn {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
/*
====================================
Subscribe blocks 2
====================================
*/
.subscribe-block._2 .btn {
  height: 38px;
  right: 6px;
  top: 6px;
}
.large.subscribe-block._2 .btn {
  height: 58px;
}
.small.subscribe-block._2 .btn {
  height: 28px;
}
/*.subscribe-block._2.inline .btn {
	right: 11px;
}*/
/*
====================================
Subscribe blocks 3
====================================
*/
.subscribe-block._3 > .form-widget > .form-group:last-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.subscribe-block._3 .btn {
  position: static;
}
.subscribe-block._3.inline .btn {
  width: 100%;
}
/*
***************************************************************
Search field
***************************************************************
*/
.search-frm {
  position: relative;
}
.search-frm .btn {
  position: absolute;
  height: 100%;
  border-radius: 0 4px 4px 0;
  right: 0px;
  width: 50px;
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
  top: 0px;
}
.search-frm input {
  border-radius: 4px 0 0 4px;
  width: calc(100% - 50px);
  margin: 0px;
}
/* Buttons
=========================*/
.btn {
  font-family: "Open Sans", sans-serif;
  border-radius: 3px;
  padding: 12px 20px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid transparent;
  background-color: transparent;
  line-height: 1;
  position: relative;
  outline: 0px auto -webkit-focus-ring-color !important;
  font-weight: 700;
  display: inline-block;
}
.btn:active,
.btn.active,
.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
/* Button utilities
=========================*/
.btn.large {
  padding: 14px 30px;
  font-size: 26px;
  line-height: 1;
}
.btn.medium {
  padding: 12px 20px;
  font-size: 16px;
  line-height: 1;
}
.btn.small {
  padding: 8px 18px;
  font-size: 13px;
  line-height: 1;
}
.btn.mini {
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1;
}
.btn.tiny {
  padding: 5px 10px;
  font-size: 11px;
  line-height: 1;
}
.btn.large.round {
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 100px;
}
.btn.round,
.btn.medium.round {
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 100px;
}
.btn.small.round {
  padding-left: 28px;
  padding-right: 28px;
  border-radius: 100px;
}
.btn.mini.round {
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 100px;
}
.btn.tiny.round {
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 100px;
}
.btn-reset {
  padding: 0;
  line-height: 100%;
}
.btn.block {
  display: block;
  width: 100%;
}
.btn.inline-block {
  display: inline-block;
  width: auto;
}
.btn > .btn-icon,
.btn > .btn-txt {
  vertical-align: middle;
}
/* .btn > .btn-icon {
	margin-right: 10px;
} */
.btn > .btn-icon + .btn-txt {
  margin-left: 10px;
}
.btn.large > .btn-icon:not([class*="fs"]) {
  font-size: 26px;
}
.btn > .btn-icon:not([class*="fs"]),
.btn.medium > .btn-icon:not([class*="fs"]) {
  font-size: 20px;
}
.btn.small > .btn-icon:not([class*="fs"]) {
  font-size: 14px;
  margin-right: 6px;
}
.btn.mini > .btn-icon:not([class*="fs"]) {
  font-size: 13px;
  margin-right: 6px;
}
.btn.tiny > .btn-icon:not([class*="fs"]) {
  font-size: 11px;
  margin-right: 6px;
  margin-top: -2px;
}
/* APP Buttons
=========================*/
.appstore-btn {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background-color: #000;
  border-radius: 6px;
  padding: 15px 26px 15px 64px;
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 1.2;
  margin: 4px;
  text-align: left;
}
.appstore-btn i {
  position: absolute;
  left: 15px;
  top: 50%;
  font-size: 35px;
  width: 35px;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.appstore-btn small {
  display: block;
  font-size: 12px;
  padding-left: 2px;
}
.appstore-btn:hover {
  color: #fff;
}
.round.appstore-btn {
  padding-left: 70px;
  padding-right: 30px;
  border-radius: 100px;
}
.round.appstore-btn i {
  left: 25px;
}
.bdr-glass,
.bdr-glass:hover,
.bdr-glass:focus {
  border-color: transparent;
}
/* Radius
=========================*/
.rd {
  border-radius: 100%;
}
.rd-0 {
  border-radius: 0;
}
.rd-2 {
  border-radius: 2px;
}
.rd-4 {
  border-radius: 4px;
}
.rd-5 {
  border-radius: 5px;
}
.rd-6 {
  border-radius: 6px;
}
.rd-10 {
  border-radius: 10px;
}
.rd-20 {
  border-radius: 20px;
}
.rd-30 {
  border-radius: 30px;
}
.rd-40 {
  border-radius: 40px;
}
.rd-50 {
  border-radius: 50px;
}
.rd-100 {
  border-radius: 100px;
}
.rd-150 {
  border-radius: 150px;
}
.rd-200 {
  border-radius: 200px;
}
.rd-250 {
  border-radius: 250px;
}
.rd-300 {
  border-radius: 300px;
}
.rd-350 {
  border-radius: 350px;
}
.rd-400 {
  border-radius: 400px;
}
/* Border
=========================*/
.bdr-l {
  border-left-width: 1px;
  border-left-style: solid;
}
.bdr-r {
  border-right-width: 1px;
  border-right-style: solid;
}
.bdr-t {
  border-top-width: 1px;
  border-top-style: solid;
}
.bdr-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.bdr-1 {
  border-width: 1px;
  border-style: solid;
}
.bdr-2 {
  border-width: 2px;
  border-style: solid;
}
.bdr-3 {
  border-width: 3px;
  border-style: solid;
}
.bdr-4 {
  border-width: 4px;
  border-style: solid;
}
.bdr-5 {
  border-width: 5px;
  border-style: solid;
}
.bdr-10 {
  border-width: 10px;
  border-style: solid;
}
.bdr-15 {
  border-width: 15px;
  border-style: solid;
}
.bdr-20 {
  border-width: 20px;
  border-style: solid;
}
.bdr-25 {
  border-width: 25px;
  border-style: solid;
}
.bdr-30 {
  border-width: 30px;
  border-style: solid;
}
.bdr-t-2 {
  border-top-width: 2px;
  border-top-style: solid;
}
.bdr-t-3 {
  border-top-width: 3px;
  border-top-style: solid;
}
.bdr-t-4 {
  border-top-width: 4px;
  border-top-style: solid;
}
.bdr-t-5 {
  border-top-width: 5px;
  border-top-style: solid;
}
.bdr-t-10 {
  border-top-width: 10px;
  border-top-style: solid;
}
.bdr-t-15 {
  border-top-width: 15px;
  border-top-style: solid;
}
.bdr-t-20 {
  border-top-width: 20px;
  border-top-style: solid;
}
.bdr-t-25 {
  border-top-width: 25px;
  border-top-style: solid;
}
.bdr-t-30 {
  border-top-width: 30px;
  border-top-style: solid;
}
.bdr-r-2 {
  border-right-width: 2px;
  border-right-style: solid;
}
.bdr-r-3 {
  border-right-width: 3px;
  border-right-style: solid;
}
.bdr-r-4 {
  border-right-width: 4px;
  border-right-style: solid;
}
.bdr-r-5 {
  border-right-width: 5px;
  border-right-style: solid;
}
.bdr-r-10 {
  border-right-width: 10px;
  border-right-style: solid;
}
.bdr-r-15 {
  border-right-width: 15px;
  border-right-style: solid;
}
.bdr-r-20 {
  border-right-width: 20px;
  border-right-style: solid;
}
.bdr-r-25 {
  border-right-width: 25px;
  border-right-style: solid;
}
.bdr-r-30 {
  border-right-width: 30px;
  border-right-style: solid;
}
.bdr-b-2 {
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
.bdr-b-3 {
  border-bottom-width: 3px;
  border-bottom-style: solid;
}
.bdr-b-4 {
  border-bottom-width: 4px;
  border-bottom-style: solid;
}
.bdr-b-5 {
  border-bottom-width: 5px;
  border-bottom-style: solid;
}
.bdr-b-10 {
  border-bottom-width: 10px;
  border-bottom-style: solid;
}
.bdr-b-15 {
  border-bottom-width: 15px;
  border-bottom-style: solid;
}
.bdr-b-20 {
  border-bottom-width: 20px;
  border-bottom-style: solid;
}
.bdr-b-25 {
  border-bottom-width: 25px;
  border-bottom-style: solid;
}
.bdr-b-30 {
  border-bottom-width: 30px;
  border-bottom-style: solid;
}
.bdr-l-2 {
  border-left-width: 2px;
  border-left-style: solid;
}
.bdr-l-3 {
  border-left-width: 3px;
  border-left-style: solid;
}
.bdr-l-4 {
  border-left-width: 4px;
  border-left-style: solid;
}
.bdr-l-5 {
  border-left-width: 5px;
  border-left-style: solid;
}
.bdr-l-10 {
  border-left-width: 10px;
  border-left-style: solid;
}
.bdr-l-15 {
  border-left-width: 15px;
  border-left-style: solid;
}
.bdr-l-20 {
  border-left-width: 20px;
  border-left-style: solid;
}
.bdr-l-25 {
  border-left-width: 25px;
  border-left-style: solid;
}
.bdr-l-30 {
  border-left-width: 30px;
  border-left-style: solid;
}
.row-bdr > [class*="flex-col-"],
.row-bdr > [class*="col-"] {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.row-bdr > [class*="flex-col-"]:last-child,
.row-bdr > [class*="col-"]:last-child {
  border-right: none;
}
.row-bdr {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.row-sep > [class*="flex-col-"],
.row-sep > [class*="col-"] {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.row-sep > [class*="flex-col-"]:last-child,
.row-sep > [class*="col-"]:last-child {
  border-right: none;
}
/* Common typography
=========================*/
small,
.small {
  font-size: inherit;
  font-weight: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6,
.hd-1,
.hd-2,
.hd-3,
.hd-4,
.hd-5,
.hd-6 {
  margin: 0px;
  line-height: 1.3;
}
h1,
h2,
h3,
h4,
h5,
h6,
.tb-list {
  font-family: Merriweather,serif;
}
h1,
.hd-1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
h2,
.hd-2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
h3,
.hd-3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
h4,
.hd-4 {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
h5,
.hd-5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
h6,
.hd-6 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
h1.bdr-b {
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
}
h2.bdr-b {
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
}
h3.bdr-b {
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
}
h4.bdr-b {
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
}
h5.bdr-b {
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
}
h6.bdr-b {
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
}
.title {
  font-size: 2.25rem;
  margin-bottom: 0.9375rem;
  font-weight: 700;
}
.title.xlarge {
  font-size: 4.375rem;
  font-weight: 700;
}
.title.large {
  font-size: 3.125rem;
  font-weight: 700;
}
.title.small {
  font-size: 1.5rem;
  font-weight: 700;
}
.title.mini {
  font-size: 1.125rem;
  font-weight: 700;
}
.title.tiny {
  font-size: 1rem;
  font-weight: 700;
}
.title-sub {
  font-size: 1.375rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.title-sub.large {
  font-size: 1.625rem;
}
.title-sub.small {
  font-size: 1.25rem;
}
.title-sub.mini {
  font-size: 1.125rem;
}
.title-sub.tiny {
  font-size: 1.0625rem;
}
.title.with-sep {
  position: relative;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}
.title.with-sep > span {
  padding: 0 1.25rem;
}
.title.with-sep:before,
.title.with-sep:after {
  content: '';
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  height: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.title.with-sep.sep-light:before,
.title.with-sep.sep-light:after {
  border-color: rgba(255, 255, 255, 0.1);
}
blockquote {
  padding: 0.625rem 1.875rem;
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  border-left: 0.3125rem solid rgba(0, 0, 0, 0.1);
  font-weight: 300;
}
/* List classes
=========================*/
ul.row {
  list-style-type: none;
}
.list-3,
.list-2,
.list-1 {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
.list-1 li {
  margin-bottom: 5px;
}
.builder .list-1 > li {
  padding: 2px;
}
.list-2 {
  font-size: 16px;
}
.list-3 li,
.list-2 li {
  margin-bottom: 10px;
  padding-left: 35px;
  position: relative;
}
.list-2 li {
  margin-bottom: 20px;
  padding-left: 40px;
}
.list-2 li > i {
  position: absolute;
  left: 0px;
  top: 1px;
}
.list-2 li > i:not([class*="fs"]) {
  font-size: 24px;
}
.list-3 {
  margin: 20px 0;
}
.list-3 li:before {
  position: absolute;
  left: 10px;
  top: 4px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  content: "\f0da";
}
.list-3 li {
  padding-left: 25px;
}
.mb4 li {
  margin-bottom: 4px;
}
.mb6 li {
  margin-bottom: 6px;
}
.mb8 li {
  margin-bottom: 8px;
}
.mb10 li {
  margin-bottom: 10px;
}
.mb15 li {
  margin-bottom: 15px;
}
/* Tag text
=========================*/
.tag-text {
  display: inline-block;
  padding: 5px 8px;
  line-height: 1;
}
.tag-text.sm {
  padding: 6px 8px;
  font-size: 14px;
  font-weight: normal;
}
/* Text transform
=========================*/
.txt-upper {
  text-transform: uppercase;
}
.txt-lower {
  text-transform: lowercase;
}
.txt-capi {
  text-transform: capitalize;
}
/* Fonts sizes
=========================*/
.fs11 {
  font-size: 0.6875rem;
}
.fs12 {
  font-size: 0.75rem;
}
.fs13 {
  font-size: 0.8125rem;
}
.fs14 {
  font-size: 0.875rem;
}
.fs16 {
  font-size: 1rem;
}
.fs18 {
  font-size: 1.125rem;
}
.fs20 {
  font-size: 1.25rem;
}
.fs22 {
  font-size: 1.375rem;
}
.fs24 {
  font-size: 1.5rem;
}
.fs26 {
  font-size: 1.625rem;
}
.fs28 {
  font-size: 1.75rem;
}
.fs30 {
  font-size: 1.875rem;
}
.fs32 {
  font-size: 2rem;
}
.fs34 {
  font-size: 2.125rem;
}
.fs36 {
  font-size: 2.25rem;
}
.fs38 {
  font-size: 2.375rem;
}
.fs40 {
  font-size: 2.5rem;
}
.fs42 {
  font-size: 2.625rem;
}
.fs44 {
  font-size: 2.75rem;
}
.fs46 {
  font-size: 2.875rem;
}
.fs48 {
  font-size: 3rem;
}
.fs50 {
  font-size: 3.125rem;
}
.fs52 {
  font-size: 3.25rem;
}
.fs54 {
  font-size: 3.375rem;
}
.fs56 {
  font-size: 3.5rem;
}
.fs58 {
  font-size: 3.625rem;
}
.fs60 {
  font-size: 3.75rem;
}
.fs62 {
  font-size: 3.875rem;
}
.fs64 {
  font-size: 4rem;
}
.fs66 {
  font-size: 4.125rem;
}
.fs68 {
  font-size: 4.25rem;
}
.fs70 {
  font-size: 4.375rem;
}
.fs72 {
  font-size: 4.5rem;
}
.fs74 {
  font-size: 4.625rem;
}
.fs76 {
  font-size: 4.75rem;
}
.fs78 {
  font-size: 4.875rem;
}
.fs80 {
  font-size: 5rem;
}
.fs82 {
  font-size: 5.125rem;
}
.fs84 {
  font-size: 5.25rem;
}
.fs86 {
  font-size: 5.375rem;
}
.fs88 {
  font-size: 5.5rem;
}
.fs90 {
  font-size: 5.625rem;
}
.fs100 {
  font-size: 6.25rem;
}
.fs110 {
  font-size: 6.875rem;
}
.fs120 {
  font-size: 7.5rem;
}
.fs130 {
  font-size: 8.125rem;
}
.fs140 {
  font-size: 8.75rem;
}
.fs150 {
  font-size: 9.375rem;
}
.fs160 {
  font-size: 10rem;
}
.fs170 {
  font-size: 10.625rem;
}
.fs180 {
  font-size: 11.25rem;
}
.fs190 {
  font-size: 11.875rem;
}
.fs200 {
  font-size: 12.5rem;
}
.fs100p {
  font-size: 100%;
}
/* Line height
=========================*/
.lh-1 {
  line-height: 1.1;
}
.lh-2 {
  line-height: 1.2;
}
.lh-3 {
  line-height: 1.3;
}
.lh-4 {
  line-height: 1.4;
}
.lh-5 {
  line-height: 1.5;
}
.lh-6 {
  line-height: 1.6;
}
.lh-7 {
  line-height: 1.7;
}
.lh-8 {
  line-height: 1.8;
}
.lh-9 {
  line-height: 1.9;
}
.lh-10 {
  line-height: 2;
}
.lh-11 {
  line-height: 2.1;
}
.lh-12 {
  line-height: 2.2;
}
.lh-13 {
  line-height: 2.3;
}
.lh-14 {
  line-height: 2.4;
}
.lh-15 {
  line-height: 2.5;
}
.lh-16 {
  line-height: 2.6;
}
.lh-17 {
  line-height: 2.7;
}
.lh-18 {
  line-height: 2.8;
}
.lh-19 {
  line-height: 2.9;
}
.lh-20 {
  line-height: 3;
}
/* Font weight
=========================*/
.bold-n {
  font-weight: normal;
}
.bold-0 {
  font-weight: 200;
}
.bold-1 {
  font-weight: 300;
}
.bold-2 {
  font-weight: 400;
}
.bold-3 {
  font-weight: 500;
}
.bold-4 {
  font-weight: 600;
}
.bold-5 {
  font-weight: 700;
}
.bold-6 {
  font-weight: 800;
}
.bold-7 {
  font-weight: 900;
}
.italic {
  font-style: italic;
}
.l-through {
  text-decoration: line-through;
}
/* Font family
=========================*/
.f-1 {
  font-family: "Open Sans", sans-serif;
}
.f-2 {
  font-family: "Montserrat", sans-serif;
}
.f-3 {
  font-family: 'Rancho', cursive;
}
[class*="link-"]:hover {
  text-decoration: underline;
}
.list-links {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  font-size: 13px;
}
.list-links li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 6px 0;
}
.list-links li > ul {
  background-color: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  list-style-type: none;
  margin: 5px 0 -5px 0;
  padding: 0;
}
.list-links li > ul > li {
  padding: 6px 15px;
}
.list-links li > ul > li:last-child {
  border-bottom: none;
}
/* Background properties 
=========================*/
.bg-section {
  top: 0px;
}
.bg-fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
}
section[data-bg]:not([class*="bg-cover"]),
.bg-cover {
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-contain {
  background-size: contain;
  background-repeat: no-repeat;
}
section[data-bg]:not([class*="bg-cc"]),
.bg-cc {
  background-position: center center;
}
.bg-ct {
  background-position: center top;
}
.bg-cb {
  background-position: center bottom;
}
.bg-lt {
  background-position: left top;
}
.bg-lc {
  background-position: left center;
}
.bg-lb {
  background-position: left bottom;
}
.bg-rt {
  background-position: right top;
}
.bg-rc {
  background-position: right center;
}
.bg-rb {
  background-position: right bottom;
}
.bg-repeat {
  background-repeat: repeat;
}
.bg-repeat-x {
  background-repeat: repeat-x;
}
.bg-repeat-y {
  background-repeat: repeat-y;
}
/* Alignment 
=========================*/
.vm,
.cm {
  position: relative;
}
.cm-item,
.cm > .cm-item {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.vm-item,
.vm > .vm-item {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.c-item {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
.align-l {
  text-align: left;
}
.align-r {
  text-align: right;
}
.align-c {
  text-align: center;
}
.align-m {
  vertical-align: middle;
}
.align-t {
  vertical-align: top;
}
.flex-reset {
  display: block;
}
.iconwrp,
.flex-wrp,
.flex-tl,
.flex-tc,
.flex-tr,
.flex-cc,
.flex-cl,
.flex-cr,
.flex-bc,
.flex-bl,
.flex-br {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-tl {
  /* flex-start | flex-end | center | space-between | space-around */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex-tc {
  /* 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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex-tr {
  /* flex-start | flex-end | center | space-between | space-around */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.iconwrp,
.flex-cl {
  /* flex-start | flex-end | center | space-between | space-around */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-obj.align-c .iconwrp,
.info-obj.align-r .sq.iconwrp,
.info-obj.align-r .rd.iconwrp,
.info-obj .sq.iconwrp,
.info-obj .rd.iconwrp,
.info-obj.img-l .iconwrp,
.info-obj.img-r .iconwrp,
.flex-cc {
  /* 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;
}
.info-obj.align-r .iconwrp,
.flex-cr {
  /* flex-start | flex-end | center | space-between | space-around */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-bc {
  /* 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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex-bl {
  /* flex-start | flex-end | center | space-between | space-around */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex-br {
  /* flex-start | flex-end | center | space-between | space-around */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex-item-bc {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.flex-item-cl {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.flex-eqh {
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.flex-mid {
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-bot {
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
/* Padding
=========================*/
.pd-large {
  padding: 12.5rem;
}
.pd-medium {
  padding: 4.375rem;
}
.pd-small {
  padding: 3.125rem;
}
.pd-mini {
  padding: 2.5rem;
}
.pd-tiny {
  padding: 1.875rem;
}
.pd-micro {
  padding: 0.625rem;
}
.pd-tb-large {
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
}
.pd-tb-medium {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
}
.pd-tb-small {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.pd-tb-mini {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
.pd-tb-tiny {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
.pd-tb-micro {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.pd-lr-large {
  padding-left: 12.5rem;
  padding-right: 12.5rem;
}
.pd-lr-medium {
  padding-left: 9.375rem;
  padding-right: 9.375rem;
}
.pd-lr-small {
  padding-left: 6.25rem;
  padding-right: 6.25rem;
}
.pd-lr-mini {
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}
.pd-lr-tiny {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
.pd-lr-micro {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.pd-t-large {
  padding-top: 12.5rem;
}
.pd-t-medium {
  padding-top: 9.375rem;
}
.pd-t-small {
  padding-top: 6.25rem;
}
.pd-t-mini {
  padding-top: 3.125rem;
}
.pd-t-tiny {
  padding-top: 1.875rem;
}
.pd-t-micro {
  padding-top: 0.625rem;
}
.pd-b-large {
  padding-bottom: 12.5rem;
}
.pd-b-medium {
  padding-bottom: 9.375rem;
}
.pd-b-small {
  padding-bottom: 6.25rem;
}
.pd-b-mini {
  padding-bottom: 3.125rem;
}
.pd-b-tiny {
  padding-bottom: 1.875rem;
}
.pd-b-micro {
  padding-bottom: 0.625rem;
}
.pd-l-large {
  padding-left: 12.5rem;
}
.pd-l-medium {
  padding-left: 9.375rem;
}
.pd-l-small {
  padding-left: 6.25rem;
}
.pd-l-mini {
  padding-left: 3.125rem;
}
.pd-l-tiny {
  padding-left: 1.875rem;
}
.pd-l-micro {
  padding-left: 0.625rem;
}
.pd-r-large {
  padding-right: 12.5rem;
}
.pd-r-medium {
  padding-right: 9.375rem;
}
.pd-r-small {
  padding-right: 6.25rem;
}
.pd-r-mini {
  padding-right: 3.125rem;
}
.pd-r-tiny {
  padding-right: 1.875rem;
}
.pd-r-micro {
  padding-right: 0.625rem;
}
/* common padding */
.pd-20 {
  padding: 1.25rem;
}
.pd-15 {
  padding: 0.9375rem;
}
.pd-0 {
  padding: 0rem;
}
/* .pd(300, 10, all); */
/* padding top only */
.pd-t-1 {
  padding-top: 1px;
}
.pd-t-0 {
  padding-top: 0rem;
}
.pd-t-10 {
  padding-top: 0.625rem;
}
.pd-t-20 {
  padding-top: 1.25rem;
}
.pd-t-30 {
  padding-top: 1.875rem;
}
.pd-t-40 {
  padding-top: 2.5rem;
}
.pd-t-50 {
  padding-top: 3.125rem;
}
.pd-t-60 {
  padding-top: 3.75rem;
}
.pd-t-70 {
  padding-top: 4.375rem;
}
.pd-t-80 {
  padding-top: 5rem;
}
.pd-t-90 {
  padding-top: 5.625rem;
}
.pd-t-100 {
  padding-top: 6.25rem;
}
/* padding right only */
.pd-r-1 {
  padding-right: 1px;
}
.pd-r-0 {
  padding-right: 0rem;
}
.pd-r-10 {
  padding-right: 0.625rem;
}
.pd-r-20 {
  padding-right: 1.25rem;
}
.pd-r-30 {
  padding-right: 1.875rem;
}
.pd-r-40 {
  padding-right: 2.5rem;
}
.pd-r-50 {
  padding-right: 3.125rem;
}
.pd-r-60 {
  padding-right: 3.75rem;
}
.pd-r-70 {
  padding-right: 4.375rem;
}
.pd-r-80 {
  padding-right: 5rem;
}
.pd-r-90 {
  padding-right: 5.625rem;
}
.pd-r-100 {
  padding-right: 6.25rem;
}
/* padding bottom only */
.pd-b-1 {
  padding-bottom: 1px;
}
.pd-b-5 {
  padding-bottom: 5px;
}
.pd-b-0 {
  padding-bottom: 0rem;
}
.pd-b-10 {
  padding-bottom: 0.625rem;
}
.pd-b-20 {
  padding-bottom: 1.25rem;
}
.pd-b-30 {
  padding-bottom: 1.875rem;
}
.pd-b-40 {
  padding-bottom: 2.5rem;
}
.pd-b-50 {
  padding-bottom: 3.125rem;
}
.pd-b-60 {
  padding-bottom: 3.75rem;
}
.pd-b-70 {
  padding-bottom: 4.375rem;
}
.pd-b-80 {
  padding-bottom: 5rem;
}
.pd-b-90 {
  padding-bottom: 5.625rem;
}
.pd-b-100 {
  padding-bottom: 6.25rem;
}
/* padding left only */
.pd-l-1 {
  padding-left: 1px;
}
.pd-l-0 {
  padding-left: 0rem;
}
.pd-l-10 {
  padding-left: 0.625rem;
}
.pd-l-20 {
  padding-left: 1.25rem;
}
.pd-l-30 {
  padding-left: 1.875rem;
}
.pd-l-40 {
  padding-left: 2.5rem;
}
.pd-l-50 {
  padding-left: 3.125rem;
}
.pd-l-60 {
  padding-left: 3.75rem;
}
.pd-l-70 {
  padding-left: 4.375rem;
}
.pd-l-80 {
  padding-left: 5rem;
}
.pd-l-90 {
  padding-left: 5.625rem;
}
.pd-l-100 {
  padding-left: 6.25rem;
}
/* padding top bottom only */
.pd-tb-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}
.pd-tb-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.pd-tb-10 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.pd-tb-20 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.pd-tb-30 {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
.pd-tb-40 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.pd-tb-50 {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
.pd-tb-60 {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.pd-tb-70 {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
.pd-tb-80 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pd-tb-90 {
  padding-top: 5.625rem;
  padding-bottom: 5.625rem;
}
.pd-tb-100 {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
/* padding left right only */
.pd-lr-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}
.pd-lr-10 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.pd-lr-20 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.pd-lr-30 {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
.pd-lr-40 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.pd-lr-50 {
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}
.pd-lr-60 {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}
.pd-lr-70 {
  padding-left: 4.375rem;
  padding-right: 4.375rem;
}
.pd-lr-80 {
  padding-left: 5rem;
  padding-right: 5rem;
}
.pd-lr-90 {
  padding-left: 5.625rem;
  padding-right: 5.625rem;
}
.pd-lr-100 {
  padding-left: 6.25rem;
  padding-right: 6.25rem;
}
/* Margin
=========================*/
.mr-large {
  margin: 12.5rem;
}
.mr-medium {
  margin: 4.375rem;
}
.mr-small {
  margin: 3.125rem;
}
.mr-mini {
  margin: 2.5rem;
}
.mr-tiny {
  margin: 1.875rem;
}
.mr-micro {
  margin: 0.625rem;
}
.mr-tb-large {
  margin-top: 12.5rem;
  margin-bottom: 12.5rem;
}
.mr-tb-medium {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}
.mr-tb-small {
  margin-top: 4.6875rem;
  margin-bottom: 4.6875rem;
}
.mr-tb-mini {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}
.mr-tb-tiny {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
.mr-tb-micro {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
.mr-lr-large {
  margin-left: 12.5rem;
  margin-right: 12.5rem;
}
.mr-lr-medium {
  margin-left: 9.375rem;
  margin-right: 9.375rem;
}
.mr-lr-small {
  margin-left: 6.25rem;
  margin-right: 6.25rem;
}
.mr-lr-mini {
  margin-left: 3.125rem;
  margin-right: 3.125rem;
}
.mr-lr-tiny {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
}
.mr-lr-micro {
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
.mr-b-large {
  margin-bottom: 12.5rem;
}
.mr-b-medium {
  margin-bottom: 9.375rem;
}
.mr-b-small {
  margin-bottom: 6.25rem;
}
.mr-b-mini {
  margin-bottom: 3.125rem;
}
.mr-b-tiny {
  margin-bottom: 1.875rem;
}
.mr-b-micro {
  margin-bottom: 0.625rem;
}
.mr-t-large {
  margin-top: 12.5rem;
}
.mr-t-medium {
  margin-top: 9.375rem;
}
.mr-t-small {
  margin-top: 6.25rem;
}
.mr-t-mini {
  margin-top: 3.125rem;
}
.mr-t-tiny {
  margin-top: 1.875rem;
}
.mr-t-micro {
  margin-top: 0.625rem;
}
.mr-r-large {
  margin-right: 12.5rem;
}
.mr-r-medium {
  margin-right: 9.375rem;
}
.mr-r-small {
  margin-right: 6.25rem;
}
.mr-r-mini {
  margin-right: 3.125rem;
}
.mr-r-tiny {
  margin-right: 1.875rem;
}
.mr-r-micro {
  margin-right: 0.625rem;
}
.mr-l-large {
  margin-left: 12.5rem;
}
.mr-l-medium {
  margin-left: 9.375rem;
}
.mr-l-small {
  margin-left: 6.25rem;
}
.mr-l-mini {
  margin-left: 3.125rem;
}
.mr-l-tiny {
  margin-left: 1.875rem;
}
.mr-l-micro {
  margin-left: 0.625rem;
}
.mr-auto {
  margin-left: auto;
  margin-right: auto;
}
/* common margin */
.mr-0 {
  margin: 0rem;
}
.mr-2 {
  margin: 0.125rem;
}
.mr-4 {
  margin: 0.25rem !important;
}
.mr-6 {
  margin: 0.375rem;
}
.mr-8 {
  margin: 0.5rem;
}
.mr-10 {
  margin: 0.625rem;
}
.mr-12 {
  margin: 0.75rem;
}
.mr-14 {
  margin: 0.875rem;
}
.mr-16 {
  margin: 1rem;
}
.mr-18 {
  margin: 1.125rem;
}
.mr-20 {
  margin: 1.25rem;
}
.mr-0 {
  margin: 0rem;
}
.mr-10 {
  margin: 0.625rem;
}
.mr-20 {
  margin: 1.25rem;
}
.mr-30 {
  margin: 1.875rem;
}
.mr-40 {
  margin: 2.5rem;
}
.mr-50 {
  margin: 3.125rem;
}
.mr-60 {
  margin: 3.75rem;
}
.mr-70 {
  margin: 4.375rem;
}
.mr-80 {
  margin: 5rem;
}
.mr-90 {
  margin: 5.625rem;
}
.mr-100 {
  margin: 6.25rem;
}
/* margin top only */
.mr-t-1 {
  margin-top: 1px;
}
.mr-t-0 {
  margin-top: 0rem;
}
.mr-t-2 {
  margin-top: 0.125rem;
}
.mr-t-4 {
  margin-top: 0.25rem;
}
.mr-t-6 {
  margin-top: 0.375rem;
}
.mr-t-8 {
  margin-top: 0.5rem;
}
.mr-t-10 {
  margin-top: 0.625rem;
}
.mr-t-12 {
  margin-top: 0.75rem;
}
.mr-t-14 {
  margin-top: 0.875rem;
}
.mr-t-16 {
  margin-top: 1rem;
}
.mr-t-18 {
  margin-top: 1.125rem;
}
.mr-t-20 {
  margin-top: 1.25rem;
}
.mr-t-10 {
  margin-top: 0.625rem;
}
.mr-t-20 {
  margin-top: 1.25rem;
}
.mr-t-30 {
  margin-top: 1.875rem;
}
.mr-t-40 {
  margin-top: 2.5rem;
}
.mr-t-50 {
  margin-top: 3.125rem;
}
.mr-t-60 {
  margin-top: 3.75rem;
}
.mr-t-70 {
  margin-top: 4.375rem;
}
.mr-t-80 {
  margin-top: 5rem;
}
.mr-t-90 {
  margin-top: 5.625rem;
}
.mr-t-100 {
  margin-top: 6.25rem;
}
.mr-t-200 {
  margin-top: 12.5rem;
}
.mr-t-250 {
  margin-top: 15.625rem;
}
.mr-t-300 {
  margin-top: 18.75rem;
}
.mr-t-350 {
  margin-top: 21.875rem;
}
.mr-t-400 {
  margin-top: 25rem;
}
.mr-t-450 {
  margin-top: 28.125rem;
}
.mr-t-500 {
  margin-top: 31.25rem;
}
/* margin right only */
.mr-r-1 {
  margin-right: 1px;
}
.mr-r-0,
.info-obj.img-r.g0 .info {
  margin-right: 0rem;
}
.mr-r-2,
.info-obj.img-r.g2 .info {
  margin-right: 0.125rem;
}
.mr-r-4,
.info-obj.img-r.g4 .info {
  margin-right: 0.25rem;
}
.mr-r-6,
.info-obj.img-r.g6 .info {
  margin-right: 0.375rem;
}
.mr-r-8,
.info-obj.img-r.g8 .info {
  margin-right: 0.5rem;
}
.mr-r-10,
.info-obj.img-r.g10 .info {
  margin-right: 0.625rem;
}
.mr-r-12,
.info-obj.img-r.g12 .info {
  margin-right: 0.75rem;
}
.mr-r-14,
.info-obj.img-r.g14 .info {
  margin-right: 0.875rem;
}
.mr-r-16,
.info-obj.img-r.g16 .info {
  margin-right: 1rem;
}
.mr-r-18,
.info-obj.img-r.g18 .info {
  margin-right: 1.125rem;
}
.mr-r-20,
.info-obj.img-r.g20 .info {
  margin-right: 1.25rem;
}
.mr-r-10,
.info-obj.img-r.g10 .info {
  margin-right: 0.625rem;
}
.mr-r-20,
.info-obj.img-r.g20 .info {
  margin-right: 1.25rem;
}
.mr-r-30,
.info-obj.img-r.g30 .info {
  margin-right: 1.875rem;
}
.mr-r-40,
.info-obj.img-r.g40 .info {
  margin-right: 2.5rem;
}
.mr-r-50,
.info-obj.img-r.g50 .info {
  margin-right: 3.125rem;
}
.mr-r-60,
.info-obj.img-r.g60 .info {
  margin-right: 3.75rem;
}
.mr-r-70,
.info-obj.img-r.g70 .info {
  margin-right: 4.375rem;
}
.mr-r-80,
.info-obj.img-r.g80 .info {
  margin-right: 5rem;
}
.mr-r-90,
.info-obj.img-r.g90 .info {
  margin-right: 5.625rem;
}
.mr-r-100,
.info-obj.img-r.g100 .info {
  margin-right: 6.25rem;
}
/* margin bottom only */
.mr-b-1 {
  margin-bottom: 1px;
}
.mr-b-0,
.info-obj.img-t.g0 .img {
  margin-bottom: 0rem;
}
.mr-b-2,
.info-obj.img-t.g2 .img {
  margin-bottom: 0.125rem;
}
.mr-b-4,
.info-obj.img-t.g4 .img {
  margin-bottom: 0.25rem;
}
.mr-b-6,
.info-obj.img-t.g6 .img {
  margin-bottom: 0.375rem;
}
.mr-b-8,
.info-obj.img-t.g8 .img {
  margin-bottom: 0.5rem;
}
.mr-b-10,
.info-obj.img-t.g10 .img {
  margin-bottom: 0.625rem;
}
.mr-b-12,
.info-obj.img-t.g12 .img {
  margin-bottom: 0.75rem;
}
.mr-b-14,
.info-obj.img-t.g14 .img {
  margin-bottom: 0.875rem;
}
.mr-b-16,
.info-obj.img-t.g16 .img {
  margin-bottom: 1rem;
}
.mr-b-18,
.info-obj.img-t.g18 .img {
  margin-bottom: 1.125rem;
}
.mr-b-20,
.info-obj.img-t.g20 .img {
  margin-bottom: 1.25rem;
}
.mr-b-10,
.info-obj.img-t.g10 .img {
  margin-bottom: 0.625rem;
}
.mr-b-20,
.info-obj.img-t.g20 .img {
  margin-bottom: 1.25rem;
}
.mr-b-30,
.info-obj.img-t.g30 .img {
  margin-bottom: 1.875rem;
}
.mr-b-40,
.info-obj.img-t.g40 .img {
  margin-bottom: 2.5rem;
}
.mr-b-50,
.info-obj.img-t.g50 .img {
  margin-bottom: 3.125rem;
}
.mr-b-60,
.info-obj.img-t.g60 .img {
  margin-bottom: 3.75rem;
}
.mr-b-70,
.info-obj.img-t.g70 .img {
  margin-bottom: 4.375rem;
}
.mr-b-80,
.info-obj.img-t.g80 .img {
  margin-bottom: 5rem;
}
.mr-b-90,
.info-obj.img-t.g90 .img {
  margin-bottom: 5.625rem;
}
.mr-b-100,
.info-obj.img-t.g100 .img {
  margin-bottom: 6.25rem;
}
.mr-b-200,
.info-obj.img-t.g200 .img {
  margin-bottom: 12.5rem;
}
.mr-b-250,
.info-obj.img-t.g250 .img {
  margin-bottom: 15.625rem;
}
.mr-b-300,
.info-obj.img-t.g300 .img {
  margin-bottom: 18.75rem;
}
.mr-b-350,
.info-obj.img-t.g350 .img {
  margin-bottom: 21.875rem;
}
.mr-b-400,
.info-obj.img-t.g400 .img {
  margin-bottom: 25rem;
}
.mr-b-450,
.info-obj.img-t.g450 .img {
  margin-bottom: 28.125rem;
}
.mr-b-500,
.info-obj.img-t.g500 .img {
  margin-bottom: 31.25rem;
}
/* margin left only */
.mr-l-1 {
  margin-left: 1px;
}
.mr-l-0,
.info-obj.img-l.g0 .info {
  margin-left: 0rem;
}
.mr-l-2,
.info-obj.img-l.g2 .info {
  margin-left: 0.125rem;
}
.mr-l-4,
.info-obj.img-l.g4 .info {
  margin-left: 0.25rem;
}
.mr-l-6,
.info-obj.img-l.g6 .info {
  margin-left: 0.375rem;
}
.mr-l-8,
.info-obj.img-l.g8 .info {
  margin-left: 0.5rem;
}
.mr-l-10,
.info-obj.img-l.g10 .info {
  margin-left: 0.625rem;
}
.mr-l-12,
.info-obj.img-l.g12 .info {
  margin-left: 0.75rem;
}
.mr-l-14,
.info-obj.img-l.g14 .info {
  margin-left: 0.875rem;
}
.mr-l-16,
.info-obj.img-l.g16 .info {
  margin-left: 1rem;
}
.mr-l-18,
.info-obj.img-l.g18 .info {
  margin-left: 1.125rem;
}
.mr-l-20,
.info-obj.img-l.g20 .info {
  margin-left: 1.25rem;
}
.mr-l-10,
.info-obj.img-l.g10 .info {
  margin-left: 0.625rem;
}
.mr-l-20,
.info-obj.img-l.g20 .info {
  margin-left: 1.25rem;
}
.mr-l-30,
.info-obj.img-l.g30 .info {
  margin-left: 1.875rem;
}
.mr-l-40,
.info-obj.img-l.g40 .info {
  margin-left: 2.5rem;
}
.mr-l-50,
.info-obj.img-l.g50 .info {
  margin-left: 3.125rem;
}
.mr-l-60,
.info-obj.img-l.g60 .info {
  margin-left: 3.75rem;
}
.mr-l-70,
.info-obj.img-l.g70 .info {
  margin-left: 4.375rem;
}
.mr-l-80,
.info-obj.img-l.g80 .info {
  margin-left: 5rem;
}
.mr-l-90,
.info-obj.img-l.g90 .info {
  margin-left: 5.625rem;
}
.mr-l-100,
.info-obj.img-l.g100 .info {
  margin-left: 6.25rem;
}
/* margin top bottom only */
.mr-tb-5 {
  margin-top: 0.3125rem;
  margin-bottom: 0.3125rem;
}
.mr-tb-10 {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
.mr-tb-20 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.mr-tb-30 {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
.mr-tb-40 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.mr-tb-50 {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}
.mr-tb-60 {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
.mr-tb-70 {
  margin-top: 4.375rem;
  margin-bottom: 4.375rem;
}
.mr-tb-80 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.mr-tb-90 {
  margin-top: 5.625rem;
  margin-bottom: 5.625rem;
}
.mr-tb-100 {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}
/* margin left right only */
.mr-lr-5 {
  margin-left: 0.3125rem;
  margin-right: 0.3125rem;
}
.mr-lr-10 {
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
.mr-lr-20 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.mr-lr-30 {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
}
.mr-lr-40 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}
.mr-lr-50 {
  margin-left: 3.125rem;
  margin-right: 3.125rem;
}
.mr-lr-60 {
  margin-left: 3.75rem;
  margin-right: 3.75rem;
}
.mr-lr-70 {
  margin-left: 4.375rem;
  margin-right: 4.375rem;
}
.mr-lr-80 {
  margin-left: 5rem;
  margin-right: 5rem;
}
.mr-lr-90 {
  margin-left: 5.625rem;
  margin-right: 5.625rem;
}
.mr-lr-100 {
  margin-left: 6.25rem;
  margin-right: 6.25rem;
}
/* Minus top margin */
.-mr-t {
  margin-top: -100%;
}
.-mr-t-10 {
  margin-top: -10px;
}
.-mr-t-20 {
  margin-top: -20px;
}
.-mr-t-30 {
  margin-top: -30px;
}
.-mr-t-40 {
  margin-top: -40px;
}
.-mr-t-50 {
  margin-top: -50px;
}
.-mr-t-60 {
  margin-top: -60px;
}
.-mr-t-70 {
  margin-top: -70px;
}
.-mr-t-80 {
  margin-top: -80px;
}
.-mr-t-90 {
  margin-top: -90px;
}
.-mr-t-100 {
  margin-top: -100px;
}
.-mr-t-150 {
  margin-top: -150px;
}
.-mr-t-200 {
  margin-top: -200px;
}
.-mr-t-250 {
  margin-top: -250px;
}
.-mr-t-300 {
  margin-top: -300px;
}
.-mr-t-350 {
  margin-top: -350px;
}
.-mr-t-400 {
  margin-top: -400px;
}
/* Minus bottom margin */
.-mr-b {
  margin-bottom: -100%;
}
.-mr-b-10 {
  margin-bottom: -10px;
}
.-mr-b-20 {
  margin-bottom: -20px;
}
.-mr-b-30 {
  margin-bottom: -30px;
}
.-mr-b-40 {
  margin-bottom: -40px;
}
.-mr-b-50 {
  margin-bottom: -50px;
}
.-mr-b-60 {
  margin-bottom: -60px;
}
.-mr-b-70 {
  margin-bottom: -70px;
}
.-mr-b-80 {
  margin-bottom: -80px;
}
.-mr-b-90 {
  margin-bottom: -90px;
}
.-mr-b-100 {
  margin-bottom: -100px;
}
.-mr-b-150 {
  margin-bottom: -150px;
}
.-mr-b-200 {
  margin-bottom: -200px;
}
.-mr-b-250 {
  margin-bottom: -250px;
}
.-mr-b-300 {
  margin-bottom: -300px;
}
.-mr-b-350 {
  margin-bottom: -350px;
}
.-mr-b-400 {
  margin-bottom: -400px;
}
/* Minus left margin */
.-mr-l {
  margin-left: -100%;
}
.-mr-l-10 {
  margin-left: -10px;
}
.-mr-l-20 {
  margin-left: -20px;
}
.-mr-l-30 {
  margin-left: -30px;
}
.-mr-l-40 {
  margin-left: -40px;
}
.-mr-l-50 {
  margin-left: -50px;
}
.-mr-l-60 {
  margin-left: -60px;
}
.-mr-l-70 {
  margin-left: -70px;
}
.-mr-l-80 {
  margin-left: -80px;
}
.-mr-l-90 {
  margin-left: -90px;
}
.-mr-l-100 {
  margin-left: -100px;
}
.-mr-l-150 {
  margin-left: -150px;
}
.-mr-l-200 {
  margin-left: -200px;
}
.-mr-l-250 {
  margin-left: -250px;
}
.-mr-l-300 {
  margin-left: -300px;
}
.-mr-l-350 {
  margin-left: -350px;
}
.-mr-l-400 {
  margin-left: -400px;
}
/* Minus bottom margin */
.-mr-r {
  margin-right: -100%;
}
.-mr-r-10 {
  margin-right: -10px;
}
.-mr-r-20 {
  margin-right: -20px;
}
.-mr-r-30 {
  margin-right: -30px;
}
.-mr-r-40 {
  margin-right: -40px;
}
.-mr-r-50 {
  margin-right: -50px;
}
.-mr-r-60 {
  margin-right: -60px;
}
.-mr-r-70 {
  margin-right: -70px;
}
.-mr-r-80 {
  margin-right: -80px;
}
.-mr-r-90 {
  margin-right: -90px;
}
.-mr-r-100 {
  margin-right: -100px;
}
.-mr-r-150 {
  margin-right: -150px;
}
.-mr-r-200 {
  margin-right: -200px;
}
.-mr-r-250 {
  margin-right: -250px;
}
.-mr-r-300 {
  margin-right: -300px;
}
.-mr-r-350 {
  margin-right: -350px;
}
.-mr-r-400 {
  margin-right: -400px;
}
/* Slider pagination margin */
.ctrl-mr-t10 .owl-dots {
  margin-top: 10px;
}
.ctrl-mr-t20 .owl-dots {
  margin-top: 20px;
}
.ctrl-mr-t30 .owl-dots {
  margin-top: 30px;
}
.ctrl-mr-t40 .owl-dots {
  margin-top: 40px;
}
form.frm-gt5 .form-control {
  margin-bottom: 5px;
}
form.frm-gt10 .form-control {
  margin-bottom: 10px;
}
form.frm-gt20 .form-control {
  margin-bottom: 20px;
}
form.frm-gt30 .form-control {
  margin-bottom: 30px;
}
form.frm-gt40 .form-control {
  margin-bottom: 40px;
}
form.frm-gt50 .form-control {
  margin-bottom: 50px;
}
form.frm-gt60 .form-control {
  margin-bottom: 60px;
}
form.frm-gt70 .form-control {
  margin-bottom: 70px;
}
form.frm-gt80 .form-control {
  margin-bottom: 80px;
}
form.frm-gt90 .form-control {
  margin-bottom: 90px;
}
form.frm-gt100 .form-control {
  margin-bottom: 100px;
}
form.frm-gt150 .form-control {
  margin-bottom: 150px;
}
form.frm-gt200 .form-control {
  margin-bottom: 200px;
}
.img-half {
  width: 50%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  position: absolute;
  overflow: hidden;
}
.img-half img {
  height: 100%;
  width: auto;
  max-width: none;
}
.img-half.r {
  right: 0px;
}
.img-half.l {
  left: 0px;
}
/* Square
=========================*/
.sq20 {
  width: 1.25rem;
  height: 1.25rem;
}
.sq30 {
  width: 1.875rem;
  height: 1.875rem;
}
.sq40 {
  width: 2.5rem;
  height: 2.5rem;
}
.sq50 {
  width: 3.125rem;
  height: 3.125rem;
}
.sq60 {
  width: 3.75rem;
  height: 3.75rem;
}
.sq70 {
  width: 4.375rem;
  height: 4.375rem;
}
.sq80 {
  width: 5rem;
  height: 5rem;
}
.sq90 {
  width: 5.625rem;
  height: 5.625rem;
}
.sq100 {
  width: 6.25rem;
  height: 6.25rem;
}
.sq120 {
  width: 7.5rem;
  height: 7.5rem;
}
.sq140 {
  width: 8.75rem;
  height: 8.75rem;
}
.sq160 {
  width: 10rem;
  height: 10rem;
}
.sq180 {
  width: 11.25rem;
  height: 11.25rem;
}
.sq200 {
  width: 12.5rem;
  height: 12.5rem;
}
/* Width - view port size
=========================*/
.vw100 {
  width: 100vw;
}
.vw110 {
  width: 110vw;
}
.vw120 {
  width: 120vw;
}
.vw130 {
  width: 130vw;
}
.vw140 {
  width: 140vw;
}
.vw150 {
  width: 150vw;
}
.vw160 {
  width: 160vw;
}
.vw170 {
  width: 170vw;
}
.vw180 {
  width: 180vw;
}
.vw190 {
  width: 190vw;
}
.vw200 {
  width: 200vw;
}
/* Width - percentage size
=========================*/
.w5 {
  width: 5%;
}
.w10 {
  width: 10%;
}
.w15 {
  width: 15%;
}
.w20 {
  width: 20%;
}
.w25 {
  width: 25%;
}
.w30 {
  width: 30%;
}
.w35 {
  width: 35%;
}
.w40 {
  width: 40%;
}
.w45 {
  width: 45%;
}
.w50 {
  width: 50%;
}
.w55 {
  width: 55%;
}
.w60 {
  width: 60%;
}
.w65 {
  width: 65%;
}
.w70 {
  width: 70%;
}
.w75 {
  width: 75%;
}
.w80 {
  width: 80%;
}
.w85 {
  width: 85%;
}
.w90 {
  width: 90%;
}
.w95 {
  width: 95%;
}
.w100 {
  width: 100%;
}
.w110 {
  width: 110%;
}
.w120 {
  width: 120%;
}
.w130 {
  width: 130%;
}
.w140 {
  width: 140%;
}
.w150 {
  width: 150%;
}
.w160 {
  width: 160%;
}
.w170 {
  width: 170%;
}
.w180 {
  width: 180%;
}
.w190 {
  width: 190%;
}
.w200 {
  width: 200%;
}
/* Width - px size
=========================*/
.px-w100 {
  width: 6.25rem;
}
.px-w200 {
  width: 12.5rem;
}
.px-w300 {
  width: 18.75rem;
}
.px-w400 {
  width: 25rem;
}
.px-w500 {
  width: 31.25rem;
}
.px-w600 {
  width: 37.5rem;
}
.px-w700 {
  width: 43.75rem;
}
.px-w800 {
  width: 50rem;
}
.px-w900 {
  width: 56.25rem;
}
.px-w1000 {
  width: 62.5rem;
}
/* Custom size */
.w0 {
  width: 0px;
}
.w33 {
  width: 33.33333333333333%;
}
/* Width - minimum sizes
=========================*/
.min-px-w20 {
  min-width: 1.25rem;
}
.min-px-w30 {
  min-width: 1.875rem;
}
.min-px-w40 {
  min-width: 2.5rem;
}
.min-px-w50 {
  min-width: 3.125rem;
}
.min-px-w60 {
  min-width: 3.75rem;
}
.min-px-w70 {
  min-width: 4.375rem;
}
.min-px-w80 {
  min-width: 5rem;
}
.min-px-w90 {
  min-width: 5.625rem;
}
.min-px-w100 {
  min-width: 6.25rem;
}
.min-px-w150 {
  min-width: 9.375rem;
}
.min-px-w200 {
  min-width: 12.5rem;
}
.min-px-w250 {
  min-width: 15.625rem;
}
.min-px-w300 {
  min-width: 18.75rem;
}
.min-px-w350 {
  min-width: 21.875rem;
}
.min-px-w400 {
  min-width: 25rem;
}
.min-px-w450 {
  min-width: 28.125rem;
}
.min-px-w500 {
  min-width: 31.25rem;
}
.min-px-w550 {
  min-width: 34.375rem;
}
.min-px-w600 {
  min-width: 37.5rem;
}
.min-px-w650 {
  min-width: 40.625rem;
}
.min-px-w700 {
  min-width: 43.75rem;
}
.min-px-w750 {
  min-width: 46.875rem;
}
.min-px-w800 {
  min-width: 50rem;
}
.min-px-w850 {
  min-width: 53.125rem;
}
.min-px-w900 {
  min-width: 56.25rem;
}
.min-w10 {
  min-width: 10%;
}
.min-w20 {
  min-width: 20%;
}
.min-w30 {
  min-width: 30%;
}
.min-w40 {
  min-width: 40%;
}
.min-w50 {
  min-width: 50%;
}
.min-w60 {
  min-width: 60%;
}
.min-w70 {
  min-width: 70%;
}
.min-w80 {
  min-width: 80%;
}
.min-w90 {
  min-width: 90%;
}
.min-w100 {
  min-width: 100%;
}
/* Width - maximum sizes
=========================*/
.max-px-w20 {
  max-width: 1.25rem;
}
.max-px-w30 {
  max-width: 1.875rem;
}
.max-px-w40 {
  max-width: 2.5rem;
}
.max-px-w50 {
  max-width: 3.125rem;
}
.max-px-w60 {
  max-width: 3.75rem;
}
.max-px-w70 {
  max-width: 4.375rem;
}
.max-px-w80 {
  max-width: 5rem;
}
.max-px-w90 {
  max-width: 5.625rem;
}
.max-px-w100 {
  max-width: 6.25rem;
}
.max-px-w150 {
  max-width: 9.375rem;
}
.max-px-w200 {
  max-width: 12.5rem;
}
.max-px-w250 {
  max-width: 15.625rem;
}
.max-px-w300 {
  max-width: 18.75rem;
}
.max-px-w350 {
  max-width: 21.875rem;
}
.max-px-w400 {
  max-width: 25rem;
}
.max-px-w450 {
  max-width: 28.125rem;
}
.max-px-w500 {
  max-width: 31.25rem;
}
.max-px-w550 {
  max-width: 34.375rem;
}
.max-px-w600 {
  max-width: 37.5rem;
}
.max-w10 {
  max-width: 10%;
}
.max-w20 {
  max-width: 20%;
}
.max-w30 {
  max-width: 30%;
}
.max-w40 {
  max-width: 40%;
}
.max-w50 {
  max-width: 50%;
}
.max-w60 {
  max-width: 60%;
}
.max-w70 {
  max-width: 70%;
}
.max-w80 {
  max-width: 80%;
}
.max-w90 {
  max-width: 90%;
}
.max-w100 {
  max-width: 100%;
}
/* Height - view port size
=========================*/
.vh50 {
  height: 50vh;
}
.vh60 {
  height: 60vh;
}
.vh70 {
  height: 70vh;
}
.vh80 {
  height: 80vh;
}
.vh90 {
  height: 90vh;
}
.vh100 {
  height: 100vh;
}
.vh110 {
  height: 110vh;
}
.vh120 {
  height: 120vh;
}
.vh130 {
  height: 130vh;
}
.vh140 {
  height: 140vh;
}
.vh150 {
  height: 150vh;
}
.vh160 {
  height: 160vh;
}
.vh170 {
  height: 170vh;
}
.vh180 {
  height: 180vh;
}
.vh190 {
  height: 190vh;
}
.vh200 {
  height: 200vh;
}
/* Height - percentage size
=========================*/
.h50 {
  height: 50%;
}
.h100 {
  height: 100%;
}
/* Height - px size
=========================*/
.px-h100 {
  height: 6.25rem;
}
.px-h200 {
  height: 12.5rem;
}
.px-h300 {
  height: 18.75rem;
}
.px-h400 {
  height: 25rem;
}
.px-h500 {
  height: 31.25rem;
}
.px-h600 {
  height: 37.5rem;
}
.px-h700 {
  height: 43.75rem;
}
.px-h800 {
  height: 50rem;
}
.px-h900 {
  height: 56.25rem;
}
.px-h1000 {
  height: 62.5rem;
}
/* Height - minimum sizes
=========================*/
.min-px-h20 {
  min-height: 1.25rem;
}
.min-px-h30 {
  min-height: 1.875rem;
}
.min-px-h40 {
  min-height: 2.5rem;
}
.min-px-h50 {
  min-height: 3.125rem;
}
.min-px-h60 {
  min-height: 3.75rem;
}
.min-px-h70 {
  min-height: 4.375rem;
}
.min-px-h80 {
  min-height: 5rem;
}
.min-px-h90 {
  min-height: 5.625rem;
}
.min-px-h100 {
  min-height: 6.25rem;
}
.min-px-h150 {
  min-height: 9.375rem;
}
.min-px-h200 {
  min-height: 12.5rem;
}
.min-px-h250 {
  min-height: 15.625rem;
}
.min-px-h300 {
  min-height: 18.75rem;
}
.min-px-h350 {
  min-height: 21.875rem;
}
.min-px-h400 {
  min-height: 25rem;
}
.min-px-h450 {
  min-height: 28.125rem;
}
.min-px-h500 {
  min-height: 31.25rem;
}
.min-px-h550 {
  min-height: 34.375rem;
}
.min-px-h600 {
  min-height: 37.5rem;
}
.min-vh-h10 {
  min-height: 10vh;
}
.min-vh-h20 {
  min-height: 20vh;
}
.min-vh-h30 {
  min-height: 30vh;
}
.min-vh-h40 {
  min-height: 40vh;
}
.min-vh-h50 {
  min-height: 50vh;
}
.min-vh-h60 {
  min-height: 60vh;
}
.min-vh-h70 {
  min-height: 70vh;
}
.min-vh-h80 {
  min-height: 80vh;
}
.min-vh-h90 {
  min-height: 90vh;
}
.min-vh-h100 {
  min-height: 100vh;
}
/* Height - maximum sizes
=========================*/
.max-px-h20 {
  max-height: 1.25rem;
}
.max-px-h30 {
  max-height: 1.875rem;
}
.max-px-h40 {
  max-height: 2.5rem;
}
.max-px-h50 {
  max-height: 3.125rem;
}
.max-px-h60 {
  max-height: 3.75rem;
}
.max-px-h70 {
  max-height: 4.375rem;
}
.max-px-h80 {
  max-height: 5rem;
}
.max-px-h90 {
  max-height: 5.625rem;
}
.max-px-h100 {
  max-height: 6.25rem;
}
.max-px-h150 {
  max-height: 9.375rem;
}
.max-px-h200 {
  max-height: 12.5rem;
}
.max-px-h250 {
  max-height: 15.625rem;
}
.max-px-h300 {
  max-height: 18.75rem;
}
.max-px-h350 {
  max-height: 21.875rem;
}
.max-px-h400 {
  max-height: 25rem;
}
.max-px-h450 {
  max-height: 28.125rem;
}
.max-px-h500 {
  max-height: 31.25rem;
}
.max-px-h550 {
  max-height: 34.375rem;
}
.max-px-h600 {
  max-height: 37.5rem;
}
.max-px-h700 {
  max-height: 43.75rem;
}
.max-px-h800 {
  max-height: 50rem;
}
.max-px-h900 {
  max-height: 56.25rem;
}
/* Width x Height - other
=========================*/
.w-auto {
  width: auto!important;
}
.w-inherit {
  width: inherit!important;
}
.w-initial {
  width: initial!important;
}
.w-max-auto {
  max-width: none!important;
}
.h-auto {
  height: auto!important;
}
.h-inherit {
  height: inherit!important;
}
.h-initial {
  height: initial!important;
}
/* Other utilities
=========================*/
.hide {
  display: none;
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-auto {
  overflow: auto;
}
.overflow-none {
  overflow: visible;
}
.pre {
  white-space: pre;
}
.nowrap {
  white-space: nowrap;
}
.wrap-normal {
  white-space: normal;
}
.scroll-horizontal {
  overflow-x: scroll;
  overflow-y: hidden;
}
.scroll-vertical {
  overflow-x: hidden;
  overflow-y: scroll;
}
.no-scrollbar::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background: transparent;
}
.resize-none {
  resize: none;
}
.resize-vertical {
  resize: vertical;
}
.resize-horizontal {
  resize: horizontal;
}
.cursor-pointer {
  cursor: pointer;
}
.no-pointer-events {
  pointer-events: none;
}
.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.fullscreen {
  min-height: 100vh;
  min-width: 100%;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.top {
  top: 0;
}
.right {
  right: 0;
}
.bottom {
  bottom: 0;
}
.left {
  left: 0;
}
.absolute-center {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
/* Animation
=========================*/
[data-masonry],
.main-head *,
.main-head .header-logo img,
.progress .progress-bar,
.hover-box1 *,
.price-table-4 .price-box,
.swiper-button-prev,
.swiper-button-next,
.member-box1 .social,
.price-table-1 > div,
.other-section-1 ol > li,
.other-section-1 ol > li *,
.menu-wrp,
a,
.btn,
.owl-nav *,
.anim {
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
@-webkit-keyframes rg_fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes rg_fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes rg_fadedown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}
@keyframes rg_fadedown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}
@-webkit-keyframes rg_fadeindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes rg_fadeindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes rg_fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes rg_fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.rg_fadeup {
  -webkit-animation-name: rg_fadeup;
          animation-name: rg_fadeup;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.rg_fadedown {
  -webkit-animation-name: rg_fadedown;
          animation-name: rg_fadedown;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.rg_fadeindown {
  -webkit-animation-name: rg_fadeindown;
          animation-name: rg_fadeindown;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.rg_fadeleft {
  -webkit-animation-name: rg_fadeleft;
          animation-name: rg_fadeleft;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.s01 {
  -webkit-animation-duration: 01s;
  animation-duration: 01s;
}
.s02 {
  -webkit-animation-duration: 02s;
  animation-duration: 02s;
}
.s04 {
  -webkit-animation-duration: 04s;
  animation-duration: 04s;
}
.s010 {
  -webkit-animation-duration: 010s;
  animation-duration: 010s;
}
.delay-0s {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.delay-0-1s {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.delay-0-2s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.delay-0-3s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.delay-0-4s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.delay-0-5s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.delay-0-6s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.delay-0-7s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.delay-0-8s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.delay-0-9s {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.delay-1-1s {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.delay-1-2s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.delay-1-3s {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.delay-1-4s {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.delay-1-5s {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.delay-1-6s {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.delay-1-7s {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
.delay-1-8s {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.delay-1-9s {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}
.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.delay-2-1s {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}
.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.delay-3-5s {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}
.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.delay-4-5s {
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}
.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.delay-5-5s {
  -webkit-animation-delay: 5.5s;
  animation-delay: 5.5s;
}
.delay-6s {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.delay-6-5s {
  -webkit-animation-delay: 6.5s;
  animation-delay: 6.5s;
}
.delay-7s {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}
.delay-7-5s {
  -webkit-animation-delay: 7.5s;
  animation-delay: 7.5s;
}
.delay-8s {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}
.delay-8-5s {
  -webkit-animation-delay: 8.5s;
  animation-delay: 8.5s;
}
.delay-9s {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
.delay-9-5s {
  -webkit-animation-delay: 9.5s;
  animation-delay: 9.5s;
}
.delay-10s {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
.delay-10-5s {
  -webkit-animation-delay: 10.5s;
  animation-delay: 10.5s;
}
/*===========================================*/
/*	MOBILE & TABLET COMMON
/*===========================================*/
@media (min-width: 200px) and (max-width: 991px) {
  /* COMMON
	********************************************/
  .el-parallax {
    -webkit-transform: none !important;
            transform: none !important;
  }
  /* Font sizes
	=========================*/
  [data-rgen-sm*="fs12"],
  .title[data-rgen-sm*="fs12"] {
    font-size: 12px;
  }
  [data-rgen-sm*="fs13"],
  .title[data-rgen-sm*="fs13"] {
    font-size: 13px;
  }
  [data-rgen-sm*="fs14"],
  .title[data-rgen-sm*="fs14"] {
    font-size: 14px;
  }
  [data-rgen-sm*="fs16"],
  .title[data-rgen-sm*="fs16"] {
    font-size: 16px;
  }
  [data-rgen-sm*="fs18"],
  .title[data-rgen-sm*="fs18"] {
    font-size: 18px;
  }
  [data-rgen-sm*="fs20"],
  .title[data-rgen-sm*="fs20"] {
    font-size: 20px;
  }
  [data-rgen-sm*="fs22"],
  .title[data-rgen-sm*="fs22"] {
    font-size: 22px;
  }
  [data-rgen-sm*="fs24"],
  .title[data-rgen-sm*="fs24"] {
    font-size: 24px;
  }
  [data-rgen-sm*="fs26"],
  .title[data-rgen-sm*="fs26"] {
    font-size: 26px;
  }
  [data-rgen-sm*="fs28"],
  .title[data-rgen-sm*="fs28"] {
    font-size: 28px;
  }
  [data-rgen-sm*="fs30"],
  .title[data-rgen-sm*="fs30"] {
    font-size: 30px;
  }
  .title[data-rgen-sm*="large"] {
    font-size: 40px;
  }
  .title[data-rgen-sm*="medium"] {
    font-size: 26px;
  }
  .title[data-rgen-sm*="small"] {
    font-size: 20px;
  }
  .title[data-rgen-sm*="mini"] {
    font-size: 16px;
  }
  .title[data-rgen-sm*="tiny"] {
    font-size: 14px;
  }
  .title-sub[data-rgen-sm*="large"] {
    font-size: 24px;
  }
  .title-sub[data-rgen-sm*="medium"] {
    font-size: 20px;
  }
  .title-sub[data-rgen-sm*="small"] {
    font-size: 16px;
  }
  .title-sub[data-rgen-sm*="mini"] {
    font-size: 14px;
  }
  .title-sub[data-rgen-sm*="tiny"] {
    font-size: 12px;
  }
  /* Font weight
	=========================*/
  [data-rgen-sm*="bold-n"] {
    font-weight: normal;
  }
  [data-rgen-sm*="bold-1"] {
    font-weight: 300;
  }
  [data-rgen-sm*="bold-2"] {
    font-weight: 400;
  }
  [data-rgen-sm*="bold-3"] {
    font-weight: 600;
  }
  [data-rgen-sm*="bold-4"] {
    font-weight: 700;
  }
  [data-rgen-sm*="bold-5"] {
    font-weight: 800;
  }
  /* Button utilities
	=========================*/
  .btn[data-rgen-sm*="large"] {
    padding: 18px 30px;
    font-size: 26px;
    min-height: 64px;
  }
  .btn[data-rgen-sm*="medium"] {
    padding: 14px 20px;
    font-size: 16px;
    min-height: 45px;
  }
  .btn[data-rgen-sm*="small"] {
    padding: 10px 18px;
    font-size: 13px;
    min-height: 14px;
  }
  .btn[data-rgen-sm*="mini"] {
    padding: 6px 12px;
    font-size: 13px;
    min-height: 26px;
  }
  .btn[data-rgen-sm*="tiny"] {
    padding: 5px 10px 4px 10px;
    font-size: 11px;
    min-height: 22px;
  }
  .btn[data-rgen-sm*="large round"] {
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 100px;
  }
  .btn[data-rgen-sm*="medium round"] {
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 100px;
  }
  .btn[data-rgen-sm*="small round"] {
    padding-left: 28px;
    padding-right: 28px;
    border-radius: 100px;
  }
  .btn[data-rgen-sm*="mini round"] {
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 100px;
  }
  .btn[data-rgen-sm*="tiny round"] {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 100px;
  }
  /* Alignment
	=========================*/
  [data-rgen-sm*="align-c"].ctrl-l .owl-dots,
  [data-rgen-sm*="align-c"] {
    text-align: center;
  }
  [data-rgen-sm*="align-c"] .img {
    margin-left: auto;
    margin-right: auto;
  }
  [data-rgen-sm*="align-l"] {
    text-align: left;
  }
  /* Margin
	=========================*/
  [data-rgen-sm*="mr-auto"] {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  [data-rgen-sm*="mr-0"] {
    margin: 0px;
  }
  [data-rgen-sm*="mr-5"] {
    margin: 5px;
  }
  [data-rgen-sm*="mr-10"] {
    margin: 10px;
  }
  [data-rgen-sm*="mr-tb-0"] {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  [data-rgen-sm*="mr-tb-10"] {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  [data-rgen-sm*="mr-tb-20"] {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  [data-rgen-sm*="mr-tb-30"] {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  [data-rgen-sm*="mr-tb-large"] {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  [data-rgen-sm*="mr-tb-medium"] {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  [data-rgen-sm*="mr-tb-small"] {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  [data-rgen-sm*="mr-tb-mini"] {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  [data-rgen-sm*="mr-tb-tiny"] {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  [data-rgen-sm*="mr-tb-micro"] {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  [data-rgen-sm*="mr-t-0"] {
    margin-top: 0px;
  }
  [data-rgen-sm*="mr-t-5"] {
    margin-top: 5px;
  }
  [data-rgen-sm*="mr-t-10"] {
    margin-top: 10px;
  }
  [data-rgen-sm*="mr-t-20"] {
    margin-top: 20px;
  }
  [data-rgen-sm*="mr-t-30"] {
    margin-top: 30px;
  }
  [data-rgen-sm*="mr-t-40"] {
    margin-top: 40px;
  }
  [data-rgen-sm*="mr-t-50"] {
    margin-top: 50px;
  }
  [data-rgen-sm*="mr-t-60"] {
    margin-top: 60px;
  }
  [data-rgen-sm*="mr-b-0"] {
    margin-bottom: 0px;
  }
  [data-rgen-sm*="mr-b-5"] {
    margin-bottom: 5px;
  }
  [data-rgen-sm*="mr-b-10"] {
    margin-bottom: 10px;
  }
  [data-rgen-sm*="mr-b-20"] {
    margin-bottom: 20px;
  }
  [data-rgen-sm*="mr-b-30"] {
    margin-bottom: 30px;
  }
  [data-rgen-sm*="mr-b-40"] {
    margin-bottom: 40px;
  }
  [data-rgen-sm*="mr-b-50"] {
    margin-bottom: 50px;
  }
  [data-rgen-sm*="mr-b-60"] {
    margin-bottom: 60px;
  }
  /* Padding
	=========================*/
  [data-rgen-sm*="pd-0"] {
    padding: 0px;
  }
  [data-rgen-sm*="pd-10"] {
    padding: 10px;
  }
  [data-rgen-sm*="pd-20"] {
    padding: 20px;
  }
  [data-rgen-sm*="pd-30"] {
    padding: 30px;
  }
  [data-rgen-sm*="pd-lr-10"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  [data-rgen-sm*="pd-lr-20"] {
    padding-left: 20px;
    padding-right: 20px;
  }
  [data-rgen-sm*="pd-lr-30"] {
    padding-left: 30px;
    padding-right: 30px;
  }
  [data-rgen-sm*="pd-tb-large"] {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  [data-rgen-sm*="pd-tb-medium"] {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  [data-rgen-sm*="pd-tb-small"] {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  [data-rgen-sm*="pd-tb-mini"] {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  [data-rgen-sm*="pd-tb-tiny"] {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  [data-rgen-sm*="pd-tb-micro"] {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  [data-rgen-sm*="pd-t-0"] {
    padding-top: 0px;
  }
  [data-rgen-sm*="pd-t-5"] {
    padding-top: 5px;
  }
  [data-rgen-sm*="pd-t-10"] {
    padding-top: 10px;
  }
  [data-rgen-sm*="pd-t-20"] {
    padding-top: 20px;
  }
  [data-rgen-sm*="pd-t-30"] {
    padding-top: 30px;
  }
  [data-rgen-sm*="pd-t-40"] {
    padding-top: 40px;
  }
  [data-rgen-sm*="pd-t-50"] {
    padding-top: 50px;
  }
  [data-rgen-sm*="pd-t-60"] {
    padding-top: 60px;
  }
  [data-rgen-sm*="pd-b-0"] {
    padding-bottom: 0px;
  }
  [data-rgen-sm*="pd-b-5"] {
    padding-bottom: 5px;
  }
  [data-rgen-sm*="pd-b-10"] {
    padding-bottom: 10px;
  }
  [data-rgen-sm*="pd-b-20"] {
    padding-bottom: 20px;
  }
  [data-rgen-sm*="pd-b-30"] {
    padding-bottom: 30px;
  }
  [data-rgen-sm*="pd-b-40"] {
    padding-bottom: 40px;
  }
  [data-rgen-sm*="pd-b-50"] {
    padding-bottom: 50px;
  }
  [data-rgen-sm*="pd-b-60"] {
    padding-bottom: 60px;
  }
  /* Width
	=========================*/
  [data-rgen-sm*="w-reset"] {
    width: auto;
    max-width: inherit;
    min-width: inherit;
  }
  .w80,
  .w60,
  .w75,
  .w50,
  .w33,
  .w25,
  .w20 {
    width: 100%;
  }
  [data-rgen-sm*="w100"] {
    width: 100%;
  }
  [data-rgen-sm*="max-px-w100"] {
    max-width: 100px;
  }
  [data-rgen-sm*="max-px-w200"] {
    max-width: 200px;
  }
  [data-rgen-sm*="max-px-w300"] {
    max-width: 300px;
  }
  [data-rgen-sm*="max-px-w400"] {
    max-width: 400px;
  }
  /* Height
	=========================*/
  [data-rgen-sm*="h-reset"] {
    height: auto !important;
    max-height: inherit;
    min-height: inherit;
  }
  [data-rgen-sm*="h100"] {
    height: 100%;
  }
  [data-rgen-sm*="px-h400"] {
    height: 400px;
  }
  [data-rgen-sm*="min-px-h100"] {
    min-height: 100px;
  }
  [data-rgen-sm*="min-px-h200"] {
    min-height: 200px;
  }
  [data-rgen-sm*="min-px-h300"] {
    min-height: 300px;
  }
  [data-rgen-sm*="min-px-h400"] {
    min-height: 400px;
  }
  [data-rgen-sm*="min-px-h500"] {
    min-height: 500px;
  }
  /* Other
	=========================*/
  .row-bdr > [class*="flex-col-"] {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .row-bdr > [class*="flex-col-"]:last-child {
    border-bottom: none;
  }
  .row-bdr {
    border: 1px solid rgba(0, 0, 0, 0.06);
  }
  .img-half {
    width: 100%;
    position: static;
  }
  .img-half img {
    float: none;
    width: 100%;
    height: auto;
  }
  [data-rgen-sm*="hide"] {
    display: none !important;
  }
  [data-rgen-sm*="pos-rel"] {
    position: relative;
  }
  [data-rgen-sm*="block"] {
    display: block !important;
  }
  [data-rgen-sm*="bdr-reset"] {
    border: none;
  }
  [data-rgen-sm*="row-sep-reset"] > [class*="flex-col-"] {
    border: none;
  }
  /**
	 * Row padding margin reset
	 */
  [data-rgen-sm*="gt0"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  [data-rgen-sm*="gt0"] > [class*="flex-col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /**
	 * Inline grid reset
	 */
  [data-rgen-sm*="reset-grid"] {
    display: block;
  }
  [data-rgen-sm*="img-t"].info-obj {
    width: 100%;
    display: block;
  }
  [data-rgen-sm*="img-t"].info-obj > .img {
    margin-bottom: 20px;
  }
  [data-rgen-sm*="img-t"].info-obj .info {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  [data-rgen-sm*="subscribe-reset"].inline.subscribe-block .form-group:nth-child(3) .btn {
    display: block;
    position: relative;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
  }
  [data-rgen-sm*="subscribe-reset"].inline.subscribe-block .form-widget,
  [data-rgen-sm*="subscribe-reset"].inline.subscribe-block input,
  [data-rgen-sm*="subscribe-reset"].inline.subscribe-block .form-group {
    display: block !important;
    margin-right: 0px;
  }
  [data-rgen-sm*="inline-grid-reset"] {
    display: block;
  }
}
/*===========================================*/
/*	TABLET
/*===========================================*/
@media (min-width: 768px) and (max-width: 1024px) {
  /* COMMON
	********************************************/
  .pd-tb-large {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .el-parallax {
    -webkit-transform: none !important;
            transform: none !important;
  }
  /* Font sizes
	=========================*/
  [data-rgen-md*="fs12"],
  .title[data-rgen-md*="fs12"] {
    font-size: 12px;
  }
  [data-rgen-md*="fs13"],
  .title[data-rgen-md*="fs13"] {
    font-size: 13px;
  }
  [data-rgen-md*="fs14"],
  .title[data-rgen-md*="fs14"] {
    font-size: 14px;
  }
  [data-rgen-md*="fs16"],
  .title[data-rgen-md*="fs16"] {
    font-size: 16px;
  }
  [data-rgen-md*="fs18"],
  .title[data-rgen-md*="fs18"] {
    font-size: 18px;
  }
  [data-rgen-md*="fs20"],
  .title[data-rgen-md*="fs20"] {
    font-size: 20px;
  }
  [data-rgen-md*="fs22"],
  .title[data-rgen-md*="fs22"] {
    font-size: 22px;
  }
  [data-rgen-md*="fs24"],
  .title[data-rgen-md*="fs24"] {
    font-size: 24px;
  }
  [data-rgen-md*="fs26"],
  .title[data-rgen-md*="fs26"] {
    font-size: 26px;
  }
  [data-rgen-md*="fs28"],
  .title[data-rgen-md*="fs28"] {
    font-size: 28px;
  }
  [data-rgen-md*="fs30"],
  .title[data-rgen-md*="fs30"] {
    font-size: 30px;
  }
  [data-rgen-md*="fs40"],
  .title[data-rgen-md*="fs40"] {
    font-size: 40px;
  }
  .title[data-rgen-md*="large"] {
    font-size: 40px;
  }
  .title[data-rgen-md*="medium"] {
    font-size: 30px;
  }
  .title[data-rgen-md*="small"] {
    font-size: 26px;
  }
  .title[data-rgen-md*="mini"] {
    font-size: 22px;
  }
  .title[data-rgen-md*="tiny"] {
    font-size: 18px;
  }
  .title-sub[data-rgen-md*="large"] {
    font-size: 24px;
  }
  .title-sub[data-rgen-md*="medium"] {
    font-size: 20px;
  }
  .title-sub[data-rgen-md*="small"] {
    font-size: 16px;
  }
  .title-sub[data-rgen-md*="mini"] {
    font-size: 14px;
  }
  .title-sub[data-rgen-md*="tiny"] {
    font-size: 12px;
  }
  /* Font weight
	=========================*/
  [data-rgen-md*="bold-n"] {
    font-weight: normal;
  }
  [data-rgen-md*="bold-1"] {
    font-weight: 300;
  }
  [data-rgen-md*="bold-2"] {
    font-weight: 400;
  }
  [data-rgen-md*="bold-3"] {
    font-weight: 600;
  }
  [data-rgen-md*="bold-4"] {
    font-weight: 700;
  }
  [data-rgen-md*="bold-5"] {
    font-weight: 800;
  }
  /* Button utilities
	=========================*/
  .btn[data-rgen-md*="large"] {
    padding: 18px 30px;
    font-size: 26px;
    min-height: 64px;
  }
  .btn[data-rgen-md*="medium"] {
    padding: 14px 20px;
    font-size: 16px;
    min-height: 45px;
  }
  .btn[data-rgen-md*="small"] {
    padding: 10px 18px;
    font-size: 13px;
    min-height: 14px;
  }
  .btn[data-rgen-md*="mini"] {
    padding: 6px 12px;
    font-size: 13px;
    min-height: 26px;
  }
  .btn[data-rgen-md*="tiny"] {
    padding: 5px 10px 4px 10px;
    font-size: 11px;
    min-height: 22px;
  }
  .btn[data-rgen-md*="large round"] {
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 100px;
  }
  .btn[data-rgen-md*="medium round"] {
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 100px;
  }
  .btn[data-rgen-md*="small round"] {
    padding-left: 28px;
    padding-right: 28px;
    border-radius: 100px;
  }
  .btn[data-rgen-md*="mini round"] {
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 100px;
  }
  .btn[data-rgen-md*="tiny round"] {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 100px;
  }
  /* Alignment
	=========================*/
  [data-rgen-md*="align-c"].ctrl-l .owl-dots,
  [data-rgen-md*="align-c"] {
    text-align: center;
  }
  [data-rgen-md*="align-c"] .img {
    margin-left: auto;
    margin-right: auto;
  }
  [data-rgen-md*="align-l"] {
    text-align: left;
  }
  /* Margin
	=========================*/
  [data-rgen-md*="mr-auto"] {
    margin-left: auto;
    margin-right: auto;
  }
  [data-rgen-md*="mr-0"] {
    margin: 0px;
  }
  [data-rgen-md*="mr-5"] {
    margin: 5px;
  }
  [data-rgen-md*="mr-10"] {
    margin: 10px;
  }
  [data-rgen-md*="mr-tb-0"] {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  [data-rgen-md*="mr-tb-10"] {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  [data-rgen-md*="mr-tb-20"] {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  [data-rgen-md*="mr-tb-30"] {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  [data-rgen-md*="mr-t-0"] {
    margin-top: 0px;
  }
  [data-rgen-md*="mr-t-5"] {
    margin-top: 5px;
  }
  [data-rgen-md*="mr-t-10"] {
    margin-top: 10px;
  }
  [data-rgen-md*="mr-t-20"] {
    margin-top: 20px;
  }
  [data-rgen-md*="mr-t-30"] {
    margin-top: 30px;
  }
  [data-rgen-md*="mr-t-40"] {
    margin-top: 40px;
  }
  [data-rgen-md*="mr-t-50"] {
    margin-top: 50px;
  }
  [data-rgen-md*="mr-t-60"] {
    margin-top: 60px;
  }
  [data-rgen-md*="mr-b-0"] {
    margin-bottom: 0px;
  }
  [data-rgen-md*="mr-b-5"] {
    margin-bottom: 5px;
  }
  [data-rgen-md*="mr-b-10"] {
    margin-bottom: 10px;
  }
  [data-rgen-md*="mr-b-20"] {
    margin-bottom: 20px;
  }
  [data-rgen-md*="mr-b-30"] {
    margin-bottom: 30px;
  }
  [data-rgen-md*="mr-b-40"] {
    margin-bottom: 40px;
  }
  [data-rgen-md*="mr-b-50"] {
    margin-bottom: 50px;
  }
  [data-rgen-md*="mr-b-60"] {
    margin-bottom: 60px;
  }
  /* Padding
	=========================*/
  [data-rgen-md*="pd-0"] {
    padding: 0px;
  }
  [data-rgen-md*="pd-10"] {
    padding: 10px;
  }
  [data-rgen-md*="pd-20"] {
    padding: 20px;
  }
  [data-rgen-md*="pd-30"] {
    padding: 30px;
  }
  [data-rgen-md*="pd-lr-10"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  [data-rgen-md*="pd-lr-20"] {
    padding-left: 20px;
    padding-right: 20px;
  }
  [data-rgen-md*="pd-lr-30"] {
    padding-left: 30px;
    padding-right: 30px;
  }
  [data-rgen-md*="pd-tb-large"] {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  [data-rgen-md*="pd-tb-medium"] {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  [data-rgen-md*="pd-tb-small"] {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  [data-rgen-md*="pd-tb-mini"] {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  [data-rgen-md*="pd-tb-tiny"] {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  [data-rgen-md*="pd-tb-micro"] {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  [data-rgen-md*="pd-t-0"] {
    padding-top: 0px;
  }
  [data-rgen-md*="pd-t-5"] {
    padding-top: 5px;
  }
  [data-rgen-md*="pd-t-10"] {
    padding-top: 10px;
  }
  [data-rgen-md*="pd-t-20"] {
    padding-top: 20px;
  }
  [data-rgen-md*="pd-t-30"] {
    padding-top: 30px;
  }
  [data-rgen-md*="pd-t-40"] {
    padding-top: 40px;
  }
  [data-rgen-md*="pd-t-50"] {
    padding-top: 50px;
  }
  [data-rgen-md*="pd-t-60"] {
    padding-top: 60px;
  }
  [data-rgen-md*="pd-b-0"] {
    padding-bottom: 0px;
  }
  [data-rgen-md*="pd-b-5"] {
    padding-bottom: 5px;
  }
  [data-rgen-md*="pd-b-10"] {
    padding-bottom: 10px;
  }
  [data-rgen-md*="pd-b-20"] {
    padding-bottom: 20px;
  }
  [data-rgen-md*="pd-b-30"] {
    padding-bottom: 30px;
  }
  [data-rgen-md*="pd-b-40"] {
    padding-bottom: 40px;
  }
  [data-rgen-md*="pd-b-50"] {
    padding-bottom: 50px;
  }
  [data-rgen-md*="pd-b-60"] {
    padding-bottom: 60px;
  }
  /* Width
	=========================*/
  [data-rgen-md*="w-reset"] {
    width: auto;
    max-width: inherit;
    min-width: inherit;
  }
  [data-rgen-md*="w100"] {
    width: 100%;
  }
  [data-rgen-md*="w80"] {
    width: 80%;
  }
  [data-rgen-md*="max-px-w100"] {
    max-width: 100px;
  }
  [data-rgen-md*="max-px-w200"] {
    max-width: 200px;
  }
  [data-rgen-md*="max-px-w300"] {
    max-width: 300px;
  }
  [data-rgen-md*="max-px-w400"] {
    max-width: 400px;
  }
  /* Height
	=========================*/
  [data-rgen-md*="h-reset"] {
    height: auto;
    max-height: inherit;
    min-height: inherit;
  }
  [data-rgen-md*="h100"] {
    height: 100%;
  }
  [data-rgen-md*="px-h400"] {
    height: 400px;
  }
  [data-rgen-md*="min-px-h100"] {
    min-height: 100px;
  }
  [data-rgen-md*="min-px-h200"] {
    min-height: 200px;
  }
  [data-rgen-md*="min-px-h300"] {
    min-height: 300px;
  }
  [data-rgen-md*="min-px-h400"] {
    min-height: 400px;
  }
  [data-rgen-md*="min-px-h500"] {
    min-height: 500px;
  }
  /* Other
	=========================*/
  [data-rgen-md*="hide"] {
    display: none !important;
  }
  [data-rgen-md*="pos-rel"] {
    position: relative;
  }
  [data-rgen-md*="block"] {
    display: block !important;
  }
  [data-rgen-md*="bdr-reset"] {
    border: none;
  }
  [data-rgen-md*="img-t"].info-obj {
    width: 100%;
    display: block;
  }
  [data-rgen-md*="img-t"].info-obj .info {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  [data-rgen-md*="parallax-reset"] {
    -webkit-transform: none !important;
            transform: none !important;
    display: block !important;
    top: 0 !important;
    margin: 0 !important;
  }
}
/*===========================================*/
/*	DESKTOP LAYOUT 
/*===========================================*/
@media (min-width: 992px) {
  .boxed,
  .boxed .nav-wrp {
    min-width: 990px;
    max-width: 1400px;
    margin: auto;
  }
  .tbl-gr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .tbl-gr > [class*="col-"] {
    float: none;
    display: table-cell;
  }
  .tbl-gr.align-m > [class*="col-"] {
    vertical-align: middle;
  }
  .tbl-gr.align-t > [class*="col-"] {
    vertical-align: top;
  }
  .tbl-gr.align-b > [class*="col-"] {
    vertical-align: bottom;
  }
  .nav-transparent:not(.nav-sticky) {
    background-color: transparent !important;
    top: 0px;
    opacity: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
/*===========================================*/
/*	MOBILE & TABLET COMMON
/*===========================================*/
@media (min-width: 200px) and (max-width: 991px) {
  .container.small {
    width: auto;
  }
  #page {
    overflow: hidden;
  }
  .ctrl-2 .owl-nav > div {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
  }
  .ctrl-2 .owl-nav > .owl-next {
    right: 0;
  }
  .ctrl-2 .owl-nav > .owl-prev {
    left: 0;
  }
  .ctrl-2 .owl-dots,
  .ctrl-1 .owl-dots {
    margin: 0px;
  }
  [class*="gt"] {
    margin-left: -15px;
    margin-right: -15px !important;
  }
  [class*="gt"] > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .rw > [class*="cl"] {
    width: 100%;
  }
  .tbl-gr > [class*="cl"],
  .tbl-gr > [class*="col-"] {
    display: block;
  }
  .form-inline-tbl,
  .form-inline-tbl > li {
    display: block;
    padding: 5px;
  }
  /* Tabs
	=========================*/
  .side-tab,
  .tabs-auto .tb-list > li {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
  }
  .side-tab .tb-list {
    width: 100% !important;
  }
  .tab-style2.side-tab:not(.tb-r) .tb-content,
  .tab-style2.tb-r .tb-content,
  .tab-style3.side-tab:not(.tb-r) .tb-content,
  .tab-style3.tb-r .tb-content,
  .tab-style4.side-tab:not(.tb-r) .tb-content,
  .tab-style4.tb-r .tb-content {
    padding-left: 0px;
    padding-top: 30px;
  }
  /* NAVIGATION
	********************************************/
  .main-head {
    /* position: static; */
  }
  .main-head .header-logo img {
    max-height: 30px;
  }
  .main-head[class*="px-h"],
  .main-head[class*="min-px-h"],
  .main-head > [class*="px-h"],
  .main-head > [class*="min-px-h"] {
    min-height: inherit;
    height: auto;
  }
  .m-content {
    display: none;
  }
  .nav-handle {
    display: block;
  }
  .open.m-nav {
    display: block !important;
    padding-top: 15px;
    padding-bottom: 15px;
    max-height: 400px;
    overflow-y: scroll;
  }
  .open.m-nav .menu {
    min-height: inherit !important;
  }
  .open.m-nav .sub-handler,
  .open.m-nav .inline-grid,
  .open.m-nav .menu,
  .open.m-nav .menu-item {
    display: block;
  }
  .open.m-nav .menu-item > a {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0px;
  }
  .open.m-nav .has-dropdown > .sub,
  .open.m-nav .has-dropdown .dropdown {
    position: static;
    padding: 0px;
  }
  .open.m-nav .has-dropdown .dropdown {
    margin-left: 10px;
    padding: 0px;
  }
  .open.m-nav .has-dropdown > a:after {
    display: none;
  }
  .open.m-nav .has-dropdown > .mega-menu {
    width: 100% !important;
    min-width: 100% !important;
    padding: 20px;
    margin: 0px;
  }
  .btn {
    white-space: normal;
  }
  [data-stellar] {
    -webkit-transform: none !important;
            transform: none !important;
    display: block !important;
    top: 0 !important;
    margin: 0;
  }
  /*
	====================================
	Search popup
	====================================
	*/
  .popup-search .mfp-close {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
  .popup-search .search-frm {
    width: 95%;
  }
  .popup-search .search-frm .btn {
    height: 100%;
    font-size: 18px;
    width: 50px;
  }
  .popup-search .search-frm input {
    border-width: 2px;
    border-radius: 0px;
    width: 100%;
    font-size: 20px;
    padding: 10px 15px;
  }
  /* Filters
	=========================*/
  .filter-style1 .filter-list {
    text-align: center;
  }
  /* Price - 1
	=========================*/
  .price-section-1 {
    padding: 35px 0;
  }
  .price-section-1 .download-block {
    text-align: center;
  }
  .price-table th {
    text-align: center;
  }
  .price-table th > .hd > strong {
    font-size: 28px;
  }
  .price-table th > .hd {
    border-radius: 5px;
    margin: 10px 0;
  }
  .price-table .feature-hd {
    display: none;
  }
  .price-table .free,
  .price-table .pro1,
  .price-table td {
    display: block;
    width: 100%;
  }
  .price-table .td-free {
    border-left: none;
  }
  .price-table td:last-child {
    border-bottom-width: 2px;
  }
  .price-table .plan-lbl {
    display: inline-block;
  }
  .price-table .info-box5 .img {
    float: none;
    margin: 0 auto 10px auto;
  }
  .price-table .info-box5 .info {
    margin: 0;
    text-align: center;
  }
  .price-table .td-feature {
    padding: 15px;
  }
  .price-table-1 > div {
    width: 100%;
    margin: 0 0 20px 0;
  }
  /* Responsive table
	=========================*/
  .tbl-responsive td {
    padding: 10px;
    display: block;
  }
  .tbl-responsive.tbl-border td:nth-child(n+2) {
    border-top: none;
  }
  .tbl-responsive tr td:last-child {
    margin-bottom: 20px;
  }
  .tbl-responsive td:before {
    display: inline-block;
    content: attr(data-th);
    font-size: 11px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    padding: 3px 10px;
    margin-bottom: 5px;
  }
  .light.tbl-responsive td:before {
    color: #000;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .tbl-responsive td:not([data-th]):before {
    display: none;
  }
}
/*===========================================*/
/*	TABLET
/*===========================================*/
@media (min-width: 768px) and (max-width: 1024px) {
  .nav-links > li > a {
    padding-left: 6px;
    padding-right: 6px;
  }
  .vh50,
  .vh55,
  .vh60,
  .vh65,
  .vh70,
  .vh75,
  .vh80,
  .vh85,
  .vh90 {
    height: 100vh;
  }
}
/*===========================================*/
/*	MOBILE
/*===========================================*/
/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++
AUTHOR : R_GENESIS
PROJECT : RGen Landing Page with Page Builder
This file licensed to R_GENESIS (http://themeforest.net/user/r_genesis) and it’s strictly prohibited to copy or reuse it.
Copyright 2015-2017 R.Genesis.Art
++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.v-align {
  transform: translateY(-50%);
  top: 50%;
}
.c-align {
  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); } }*/
/* Menu light
=========================*/
.main-head {
  /*----------  Mobile menu  ----------*/
}
.main-head .menu-item {
  /*----------  Sub menu  ----------*/
}
.main-head .menu-item > a {
  color: #1f2229;
}
.main-head .menu-item > a:hover,
.main-head .menu-item.active > a {
  border-color: rgba(0, 0, 0, 0.1);
}
.main-head .menu-item .sub {
  background: #ffffff;
}
.main-head .menu-item > .sub li a {
  opacity: 0.6;
  color: #1f2229;
}
.main-head .menu-item > .sub li a:hover {
  opacity: 1;
}
.main-head .has-dropdown .dropdown,
.main-head .has-dropdown .sub {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}
.main-head .sub-handler {
  color: rgba(0, 0, 0, 0.4);
}
.main-head .open.m-nav {
  background-color: rgba(0, 0, 0, 0.03);
}
.main-head .open.m-nav .menu {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.main-head .open.m-nav .menu-item > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.main-head .open.m-nav .menu-item > ul li a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.main-head .open.m-nav .has-dropdown .dropdown,
.main-head .open.m-nav .has-dropdown .sub {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}
/* Menu dark
=========================*/
.main-head.dark {
  /*----------  Mobile menu  ----------*/
}
.main-head.dark .menu-item {
  /*----------  Sub menu  ----------*/
}
.main-head.dark .menu-item > a {
  color: #ffffff;
}
.main-head.dark .menu-item > a:hover,
.main-head.dark .menu-item.active > a {
  border-color: rgba(255, 255, 255, 0.2);
}
.main-head.dark .menu-item .sub {
  background: #1f2229;
}
.main-head.dark .menu-item > .sub li a {
  opacity: 0.6;
  color: #ffffff;
}
.main-head.dark .menu-item > .sub li a:hover {
  opacity: 1;
}
.main-head.dark .has-dropdown .dropdown,
.main-head.dark .has-dropdown .sub {
  background: #1f2229;
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}
.main-head.dark .sub-handler {
  color: rgba(255, 255, 255, 0.4);
}
.main-head.dark .open.m-nav {
  background-color: rgba(255, 255, 255, 0.03);
}
.main-head.dark .open.m-nav .menu {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.main-head.dark .open.m-nav .menu-item > a {
  border-width: 0 0 1px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.main-head.dark .open.m-nav .menu-item > ul li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.main-head.dark .open.m-nav .has-dropdown .dropdown,
.main-head.dark .open.m-nav .has-dropdown .sub {
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  box-shadow: none;
}
.header-sticky {
  background-color: #ffffff !important;
}
.dark.header-sticky {
  background-color: #1f2229 !important;
}
@media (min-width: 200px) and (max-width: 991px) {
  .main-head {
    background-color: #ffffff !important;
  }
  .dark.main-head {
    background-color: #1f2229 !important;
  }
}
/* Button colors
=========================*/
.btn-default {
  background-color: transparent;
  border-color: #830045;
  color: #830045;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active {
  background-color: #830045;
  border-color: #830045;
  color: #ffffff;
}
.solid.btn-default {
  border-color: #830045;
  color: #ffffff;
}
.solid.btn-default:not([class*="bg-glass-"]) {
  background-color: #830045;
}
.solid.btn-default:hover,
.solid.btn-default:focus,
.solid.btn-default:active,
.solid.btn-default.active {
  background-color: transparent;
  border-color: #830045;
  color: #830045;
}
.btn-primary {
  background-color: transparent;
  border-color: #830045;
  color: #830045;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  background-color: #830045;
  border-color: #830045;
  color: #ffffff;
}
.solid.btn-primary {
  border-color: #830045;
  color: #ffffff;
}
.solid.btn-primary:not([class*="bg-glass-"]) {
  background-color: #830045;
}
.solid.btn-primary:hover,
.solid.btn-primary:focus,
.solid.btn-primary:active,
.solid.btn-primary.active {
  background-color: transparent;
  border-color: #830045;
  color: #830045;
}
.btn-secondary {
  background-color: transparent;
  border-color: #6cbc35;
  color: #6cbc35;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #6cbc35;
  border-color: #6cbc35;
  color: #ffffff;
}
.solid.btn-secondary {
  border-color: #6cbc35;
  color: #ffffff;
}
.solid.btn-secondary:not([class*="bg-glass-"]) {
  background-color: #6cbc35;
}
.solid.btn-secondary:hover,
.solid.btn-secondary:focus,
.solid.btn-secondary:active,
.solid.btn-secondary.active {
  background-color: transparent;
  border-color: #6cbc35;
  color: #6cbc35;
}
.btn-dark {
  background-color: transparent;
  border-color: #1f2229;
  color: #1f2229;
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active {
  background-color: #1f2229;
  border-color: #1f2229;
  color: #ffffff;
}
.solid.btn-dark {
  border-color: #1f2229;
  color: #ffffff;
}
.solid.btn-dark:not([class*="bg-glass-"]) {
  background-color: #1f2229;
}
.solid.btn-dark:hover,
.solid.btn-dark:focus,
.solid.btn-dark:active,
.solid.btn-dark.active {
  background-color: transparent;
  border-color: #1f2229;
  color: #1f2229;
}
.btn-light {
  background-color: transparent;
  border-color: #e1f2fb;
  color: #e1f2fb;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:active,
.btn-light.active {
  background-color: #e1f2fb;
  border-color: #e1f2fb;
  color: #1f2229;
}
.solid.btn-light {
  border-color: #e1f2fb;
  color: #1f2229;
}
.solid.btn-light:not([class*="bg-glass-"]) {
  background-color: #e1f2fb;
}
.solid.btn-light:hover,
.solid.btn-light:focus,
.solid.btn-light:active,
.solid.btn-light.active {
  background-color: transparent;
  border-color: #e1f2fb;
  color: #e1f2fb;
}
.btn-white {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1f2229;
}
.solid.btn-white {
  border-color: #ffffff;
  color: #1f2229;
}
.solid.btn-white:not([class*="bg-glass-"]) {
  background-color: #ffffff;
}
.solid.btn-white:hover,
.solid.btn-white:focus,
.solid.btn-white:active,
.solid.btn-white.active {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.hov-btn-default:hover,
.solid.hov-btn-default:hover {
  background-color: #830045;
  border-color: #830045;
  color: #ffffff;
}
.hov-btn-primary:hover,
.solid.hov-btn-primary:hover {
  background-color: #830045;
  border-color: #830045;
  color: #ffffff;
}
.hov-btn-secondary:hover,
.solid.hov-btn-secondary:hover {
  background-color: #6cbc35;
  border-color: #6cbc35;
  color: #ffffff;
}
.hov-btn-dark:hover,
.solid.hov-btn-dark:hover {
  background-color: #1f2229;
  border-color: #1f2229;
  color: #ffffff;
}
.hov-btn-light:hover,
.solid.hov-btn-light:hover {
  background-color: #e1f2fb;
  border-color: #e1f2fb;
  color: #1f2229;
}
.hov-btn-white:hover,
.solid.hov-btn-white:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1f2229;
}
/* Border other colors
=========================*/
.bdr-default,
.bdr-default.row-bdr,
.bdr-default.row-bdr > [class*="flex-col-"],
.bdr-default.row-sep > [class*="flex-col-"],
.bdr-default.form-control,
.bdr-default {
  border-color: #830045;
}
.bdr-primary,
.bdr-primary.row-bdr,
.bdr-primary.row-bdr > [class*="flex-col-"],
.bdr-primary.row-sep > [class*="flex-col-"],
.bdr-primary.form-control,
.bdr-primary {
  border-color: #830045;
}
.bdr-secondary,
.bdr-secondary.row-bdr,
.bdr-secondary.row-bdr > [class*="flex-col-"],
.bdr-secondary.row-sep > [class*="flex-col-"],
.bdr-secondary.form-control,
.bdr-secondary {
  border-color: #6cbc35;
}
.bdr-dark,
.bdr-dark.row-bdr,
.bdr-dark.row-bdr > [class*="flex-col-"],
.bdr-dark.row-sep > [class*="flex-col-"],
.bdr-dark.form-control,
.bdr-dark {
  border-color: #1f2229;
}
.bdr-light,
.bdr-light.row-bdr,
.bdr-light.row-bdr > [class*="flex-col-"],
.bdr-light.row-sep > [class*="flex-col-"],
.bdr-light.form-control,
.bdr-light {
  border-color: #e1f2fb;
}
.bdr-white,
.bdr-white.row-bdr,
.bdr-white.row-bdr > [class*="flex-col-"],
.bdr-white.row-sep > [class*="flex-col-"],
.bdr-white.form-control,
.bdr-white {
  border-color: #ffffff;
}
/* Border other hover colors
=========================*/
.hov-bdr-default:hover,
.hov-bdr-default:hover.row-bdr,
.hov-bdr-default:hover.row-bdr > [class*="flex-col-"],
.hov-bdr-default:hover.row-sep > [class*="flex-col-"],
.hov-bdr-default:hover.form-control,
.hov-bdr-default:focus.form-control,
.hov-bdr-default:hover {
  border-color: #830045;
}
.hov-bdr-primary:hover,
.hov-bdr-primary:hover.row-bdr,
.hov-bdr-primary:hover.row-bdr > [class*="flex-col-"],
.hov-bdr-primary:hover.row-sep > [class*="flex-col-"],
.hov-bdr-primary:hover.form-control,
.hov-bdr-primary:focus.form-control,
.hov-bdr-primary:hover {
  border-color: #830045;
}
.hov-bdr-secondary:hover,
.hov-bdr-secondary:hover.row-bdr,
.hov-bdr-secondary:hover.row-bdr > [class*="flex-col-"],
.hov-bdr-secondary:hover.row-sep > [class*="flex-col-"],
.hov-bdr-secondary:hover.form-control,
.hov-bdr-secondary:focus.form-control,
.hov-bdr-secondary:hover {
  border-color: #6cbc35;
}
.hov-bdr-dark:hover,
.hov-bdr-dark:hover.row-bdr,
.hov-bdr-dark:hover.row-bdr > [class*="flex-col-"],
.hov-bdr-dark:hover.row-sep > [class*="flex-col-"],
.hov-bdr-dark:hover.form-control,
.hov-bdr-dark:focus.form-control,
.hov-bdr-dark:hover {
  border-color: #1f2229;
}
.hov-bdr-light:hover,
.hov-bdr-light:hover.row-bdr,
.hov-bdr-light:hover.row-bdr > [class*="flex-col-"],
.hov-bdr-light:hover.row-sep > [class*="flex-col-"],
.hov-bdr-light:hover.form-control,
.hov-bdr-light:focus.form-control,
.hov-bdr-light:hover {
  border-color: #e1f2fb;
}
.hov-bdr-white:hover,
.hov-bdr-white:hover.row-bdr,
.hov-bdr-white:hover.row-bdr > [class*="flex-col-"],
.hov-bdr-white:hover.row-sep > [class*="flex-col-"],
.hov-bdr-white:hover.form-control,
.hov-bdr-white:focus.form-control,
.hov-bdr-white:hover {
  border-color: #ffffff;
}
/* Border utility
=========================*/
.bdr-t-glass {
  border-top-color: transparent;
}
.bdr-r-glass {
  border-right-color: transparent;
}
.bdr-b-glass {
  border-bottom-color: transparent;
}
.bdr-l-glass {
  border-left-color: transparent;
}
.bdr-n,
.bdr-n:hover,
.bdr-n:focus {
  border: none;
}
.bdr-t-n {
  border-top: none;
}
.bdr-r-n {
  border-right: none;
}
.bdr-b-n {
  border-bottom: none;
}
.bdr-l-n {
  border-left: none;
}
[class*="btn-"].bdr-glass,
[class*="btn-"].bdr-glass:hover,
[class*="btn-"].bdr-glass:focus {
  border-color: transparent;
}
/* Border dark with opacity
=========================*/
.bdr-op-1,
.bdr-op-1.row-bdr,
hr.bdr-op-1,
.bdr-op-1.row-bdr > [class*="flex-col-"],
.bdr-op-1.row-sep > [class*="flex-col-"],
.bdr-op-1.form-control:hover,
.bdr-op-1.form-control:focus,
.hov-bdr-op-1:hover {
  border-color: rgba(0, 0, 0, 0.1);
}
.bdr-op-2,
.bdr-op-2.row-bdr,
hr.bdr-op-2,
.bdr-op-2.row-bdr > [class*="flex-col-"],
.bdr-op-2.row-sep > [class*="flex-col-"],
.bdr-op-2.form-control:hover,
.bdr-op-2.form-control:focus,
.hov-bdr-op-2:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
.bdr-op-3,
.bdr-op-3.row-bdr,
hr.bdr-op-3,
.bdr-op-3.row-bdr > [class*="flex-col-"],
.bdr-op-3.row-sep > [class*="flex-col-"],
.bdr-op-3.form-control:hover,
.bdr-op-3.form-control:focus,
.hov-bdr-op-3:hover {
  border-color: rgba(0, 0, 0, 0.3);
}
.bdr-op-4,
.bdr-op-4.row-bdr,
hr.bdr-op-4,
.bdr-op-4.row-bdr > [class*="flex-col-"],
.bdr-op-4.row-sep > [class*="flex-col-"],
.bdr-op-4.form-control:hover,
.bdr-op-4.form-control:focus,
.hov-bdr-op-4:hover {
  border-color: rgba(0, 0, 0, 0.4);
}
.bdr-op-5,
.bdr-op-5.row-bdr,
hr.bdr-op-5,
.bdr-op-5.row-bdr > [class*="flex-col-"],
.bdr-op-5.row-sep > [class*="flex-col-"],
.bdr-op-5.form-control:hover,
.bdr-op-5.form-control:focus,
.hov-bdr-op-5:hover {
  border-color: rgba(0, 0, 0, 0.5);
}
.bdr-op-6,
.bdr-op-6.row-bdr,
hr.bdr-op-6,
.bdr-op-6.row-bdr > [class*="flex-col-"],
.bdr-op-6.row-sep > [class*="flex-col-"],
.bdr-op-6.form-control:hover,
.bdr-op-6.form-control:focus,
.hov-bdr-op-6:hover {
  border-color: rgba(0, 0, 0, 0.6);
}
.bdr-op-7,
.bdr-op-7.row-bdr,
hr.bdr-op-7,
.bdr-op-7.row-bdr > [class*="flex-col-"],
.bdr-op-7.row-sep > [class*="flex-col-"],
.bdr-op-7.form-control:hover,
.bdr-op-7.form-control:focus,
.hov-bdr-op-7:hover {
  border-color: rgba(0, 0, 0, 0.7);
}
.bdr-op-8,
.bdr-op-8.row-bdr,
hr.bdr-op-8,
.bdr-op-8.row-bdr > [class*="flex-col-"],
.bdr-op-8.row-sep > [class*="flex-col-"],
.bdr-op-8.form-control:hover,
.bdr-op-8.form-control:focus,
.hov-bdr-op-8:hover {
  border-color: rgba(0, 0, 0, 0.8);
}
.bdr-op-9,
.bdr-op-9.row-bdr,
hr.bdr-op-9,
.bdr-op-9.row-bdr > [class*="flex-col-"],
.bdr-op-9.row-sep > [class*="flex-col-"],
.bdr-op-9.form-control:hover,
.bdr-op-9.form-control:focus,
.hov-bdr-op-9:hover {
  border-color: rgba(0, 0, 0, 0.9);
}
.bdr-op-10,
.bdr-op-10.row-bdr,
hr.bdr-op-10,
.bdr-op-10.row-bdr > [class*="flex-col-"],
.bdr-op-10.row-sep > [class*="flex-col-"],
.bdr-op-10.form-control:hover,
.bdr-op-10.form-control:focus,
.hov-bdr-op-10:hover {
  border-color: #000000;
}
/* Border light with opacity
=========================*/
.bdr-op-light-1,
.bdr-op-light-1.row-bdr,
hr.bdr-op-light-1,
.bdr-op-light-1.row-bdr > [class*="flex-col-"],
.bdr-op-light-1.row-sep > [class*="flex-col-"],
.bdr-op-light-1.form-control:hover,
.bdr-op-light-1.form-control:focus,
.hov-bdr-op-light-1:hover {
  border-color: rgba(255, 255, 255, 0.1);
}
.bdr-op-light-2,
.bdr-op-light-2.row-bdr,
hr.bdr-op-light-2,
.bdr-op-light-2.row-bdr > [class*="flex-col-"],
.bdr-op-light-2.row-sep > [class*="flex-col-"],
.bdr-op-light-2.form-control:hover,
.bdr-op-light-2.form-control:focus,
.hov-bdr-op-light-2:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.bdr-op-light-3,
.bdr-op-light-3.row-bdr,
hr.bdr-op-light-3,
.bdr-op-light-3.row-bdr > [class*="flex-col-"],
.bdr-op-light-3.row-sep > [class*="flex-col-"],
.bdr-op-light-3.form-control:hover,
.bdr-op-light-3.form-control:focus,
.hov-bdr-op-light-3:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.bdr-op-light-4,
.bdr-op-light-4.row-bdr,
hr.bdr-op-light-4,
.bdr-op-light-4.row-bdr > [class*="flex-col-"],
.bdr-op-light-4.row-sep > [class*="flex-col-"],
.bdr-op-light-4.form-control:hover,
.bdr-op-light-4.form-control:focus,
.hov-bdr-op-light-4:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.bdr-op-light-5,
.bdr-op-light-5.row-bdr,
hr.bdr-op-light-5,
.bdr-op-light-5.row-bdr > [class*="flex-col-"],
.bdr-op-light-5.row-sep > [class*="flex-col-"],
.bdr-op-light-5.form-control:hover,
.bdr-op-light-5.form-control:focus,
.hov-bdr-op-light-5:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.bdr-op-light-6,
.bdr-op-light-6.row-bdr,
hr.bdr-op-light-6,
.bdr-op-light-6.row-bdr > [class*="flex-col-"],
.bdr-op-light-6.row-sep > [class*="flex-col-"],
.bdr-op-light-6.form-control:hover,
.bdr-op-light-6.form-control:focus,
.hov-bdr-op-light-6:hover {
  border-color: rgba(255, 255, 255, 0.6);
}
.bdr-op-light-7,
.bdr-op-light-7.row-bdr,
hr.bdr-op-light-7,
.bdr-op-light-7.row-bdr > [class*="flex-col-"],
.bdr-op-light-7.row-sep > [class*="flex-col-"],
.bdr-op-light-7.form-control:hover,
.bdr-op-light-7.form-control:focus,
.hov-bdr-op-light-7:hover {
  border-color: rgba(255, 255, 255, 0.7);
}
.bdr-op-light-8,
.bdr-op-light-8.row-bdr,
hr.bdr-op-light-8,
.bdr-op-light-8.row-bdr > [class*="flex-col-"],
.bdr-op-light-8.row-sep > [class*="flex-col-"],
.bdr-op-light-8.form-control:hover,
.bdr-op-light-8.form-control:focus,
.hov-bdr-op-light-8:hover {
  border-color: rgba(255, 255, 255, 0.8);
}
.bdr-op-light-9,
.bdr-op-light-9.row-bdr,
hr.bdr-op-light-9,
.bdr-op-light-9.row-bdr > [class*="flex-col-"],
.bdr-op-light-9.row-sep > [class*="flex-col-"],
.bdr-op-light-9.form-control:hover,
.bdr-op-light-9.form-control:focus,
.hov-bdr-op-light-9:hover {
  border-color: rgba(255, 255, 255, 0.9);
}
.bdr-op-light-10,
.bdr-op-light-10.row-bdr,
hr.bdr-op-light-10,
.bdr-op-light-10.row-bdr > [class*="flex-col-"],
.bdr-op-light-10.row-sep > [class*="flex-col-"],
.bdr-op-light-10.form-control:hover,
.bdr-op-light-10.form-control:focus,
.hov-bdr-op-light-10:hover {
  border-color: #ffffff;
}
/* Common typography
=========================*/
h1,
h2,
h3,
h4,
h5,
h6,
.hd-1,
.hd-2,
.hd-3,
.hd-4,
.hd-5,
.hd-6,
.title-sub {
  color: #1f2229;
}
.typo-light h1,
.typo-light h2,
.typo-light h3,
.typo-light h4,
.typo-light h5,
.typo-light h6,
.typo-light .title:not([class*="txt-"]),
.typo-light .title-sub:not([class*="txt-"]),
.typo-light .pg-path,
.typo-light .list-3:not([class*="txt-"]),
.typo-light .typo:not([class*="txt-"]),
.typo-light p:not([class*="txt-"]) {
  color: #ffffff;
}
/* List classes
=========================*/
.dark.list-2,
.dark.list-2 li > i {
  color: #1f2229;
}
/* Tag text
=========================*/
.tag-text {
  background-color: #1f2229;
  color: #ffffff;
}
.tag-text.bg-white:not([class*="txt-dark"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]) {
  color: #1f2229;
}
.bg-dark.tag-text:not([class*="txt-"]),
.bg-default.tag-text:not([class*="txt-"]),
.bg-primary.tag-text:not([class*="txt-"]),
.bg-secondary.tag-text:not([class*="txt-"]) {
  color: #ffffff;
}
/* Text colors
=========================*/
.txt-default,
.typo-light .txt-default,
.txt-default:hover {
  color: #830045;
}
.txt-primary,
.typo-light .txt-primary,
.txt-primary:hover {
  color: #830045;
}
.txt-secondary,
.typo-light .txt-secondary,
.txt-secondary:hover {
  color: #6cbc35;
}
.txt-dark,
.typo-light .txt-dark,
.txt-dark:hover {
  color: #1f2229;
}
.txt-light,
.typo-light .txt-light,
.txt-light:hover {
  color: #e1f2fb;
}
.txt-white,
.typo-light .txt-white,
.txt-white:hover {
  color: #ffffff;
}
.txt-inherit {
  color: inherit;
}
/* Text hover colors
=========================*/
.hov-txt-default:hover {
  color: #830045;
}
.hov-txt-primary:hover {
  color: #830045;
}
.hov-txt-secondary:hover {
  color: #6cbc35;
}
.hov-txt-dark:hover {
  color: #1f2229;
}
.hov-txt-light:hover {
  color: #e1f2fb;
}
.hov-txt-white:hover {
  color: #ffffff;
}
/* Link colors
=========================*/
.link-default,
a.link-default {
  color: #830045;
}
.link-primary,
a.link-primary {
  color: #830045;
}
.link-secondary,
a.link-secondary {
  color: #6cbc35;
}
.link-dark,
a.link-dark {
  color: #1f2229;
}
.link-light,
a.link-light {
  color: #e1f2fb;
}
.link-white,
a.link-white {
  color: #ffffff;
}
/* Background colors
=========================*/
.bg-default {
  background-color: #830045;
}
.bg-primary {
  background-color: #830045;
}
.bg-secondary {
  background-color: #6cbc35;
}
.bg-dark {
  background-color: #1f2229;
}
.bg-light {
  background-color: #e1f2fb;
}
.bg-gray {
  background-color: #f4f5f5;
}
.bg-white {
  background-color: #ffffff;
}
/* Background hover colors
=========================*/
.hov-bg-default:hover {
  background-color: #830045;
}
.hov-bg-primary:hover {
  background-color: #830045;
}
.hov-bg-secondary:hover {
  background-color: #6cbc35;
}
.hov-bg-dark:hover {
  background-color: #1f2229;
}
.hov-bg-light:hover {
  background-color: #e1f2fb;
}
.hov-bg-gray:hover {
  background-color: #f4f5f5;
}
.hov-bg-white:hover {
  background-color: #ffffff;
}
.bg-glass-dark-01 {
  background-color: rgba(0, 0, 0, 0.1);
}
.bg-glass-light-01 {
  background-color: rgba(255, 255, 255, 0.1);
}
.bg-glass-dark-02 {
  background-color: rgba(0, 0, 0, 0.2);
}
.bg-glass-light-02 {
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-glass-dark-03 {
  background-color: rgba(0, 0, 0, 0.3);
}
.bg-glass-light-03 {
  background-color: rgba(255, 255, 255, 0.3);
}
.bg-glass-dark-04 {
  background-color: rgba(0, 0, 0, 0.4);
}
.bg-glass-light-04 {
  background-color: rgba(255, 255, 255, 0.4);
}
.bg-glass-dark-05 {
  background-color: rgba(0, 0, 0, 0.5);
}
.bg-glass-light-05 {
  background-color: rgba(255, 255, 255, 0.5);
}
.bg-glass-dark-06 {
  background-color: rgba(0, 0, 0, 0.6);
}
.bg-glass-light-06 {
  background-color: rgba(255, 255, 255, 0.6);
}
.bg-glass-dark-07 {
  background-color: rgba(0, 0, 0, 0.7);
}
.bg-glass-light-07 {
  background-color: rgba(255, 255, 255, 0.7);
}
.bg-glass-dark-08 {
  background-color: rgba(0, 0, 0, 0.8);
}
.bg-glass-light-08 {
  background-color: rgba(255, 255, 255, 0.8);
}
.bg-glass-dark-09 {
  background-color: rgba(0, 0, 0, 0.9);
}
.bg-glass-light-09 {
  background-color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 992px) {
  .nav-sticky {
    background-color: #ffffff;
  }
  .dark.nav-sticky {
    background-color: #1f2229 !important;
  }
  /*.bg-glass, 
	.nav-wrp.bg-glass:not(.nav-sticky)*/
  .bg-glass {
    background-color: transparent;
  }
}
@media (min-width: 200px) and (max-width: 991px) {
  .nav-sticky,
  .nav-wrp.navbar-fixed-top {
    background-color: #ffffff;
  }
  .nav-wrp.dark.navbar-fixed-top,
  .dark.nav-sticky {
    background-color: #1f2229 !important;
  }
}
.tab-style1 .tb-list > li.active.default {
  background-color: #830045;
}
.tab-style1 .tb-list > li.active.default {
  color: #ffffff;
}
.tab-style1 .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]):not([class*="bdr-dark"]) {
  border-color: #830045;
}
.tab-style1 .tb-content.default {
  background-color: #830045;
}
/*.tab-style1 {
		.@{name}.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
			border-bottom-color: @color;
			> li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
				background-color: @color;
				.tb-fcolor-mixin(@name);
			}
		}
	}
	.tab-style1.side-tab:not(.tb-r) .@{name}.tb-list {
		border-right-color: @color;
	}
	.tab-style1.tb-r .@{name}.tb-list {
		border-left-color: @color;
	}*/
.tab-style2 .default.tb-list:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  border-color: #830045;
  color: #ffffff;
}
.tab-style2.side-tab .default.tb-list > li.active {
  border-color: #830045;
  color: #ffffff;
}
.tab-style3 .default.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #830045;
}
.tab-style3 .default.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #ffffff;
}
.tab-style4 .default.tb-list > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #830045;
  border-color: #830045;
  color: #ffffff;
}
.tab-style1 .tb-list > li.active.primary {
  background-color: #830045;
}
.tab-style1 .tb-list > li.active.primary {
  color: #ffffff;
}
.tab-style1 .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]):not([class*="bdr-dark"]) {
  border-color: #830045;
}
.tab-style1 .tb-content.primary {
  background-color: #830045;
}
/*.tab-style1 {
		.@{name}.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
			border-bottom-color: @color;
			> li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
				background-color: @color;
				.tb-fcolor-mixin(@name);
			}
		}
	}
	.tab-style1.side-tab:not(.tb-r) .@{name}.tb-list {
		border-right-color: @color;
	}
	.tab-style1.tb-r .@{name}.tb-list {
		border-left-color: @color;
	}*/
.tab-style2 .primary.tb-list:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  border-color: #830045;
  color: #ffffff;
}
.tab-style2.side-tab .primary.tb-list > li.active {
  border-color: #830045;
  color: #ffffff;
}
.tab-style3 .primary.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #830045;
}
.tab-style3 .primary.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #ffffff;
}
.tab-style4 .primary.tb-list > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #830045;
  border-color: #830045;
  color: #ffffff;
}
.tab-style1 .tb-list > li.active.secondary {
  background-color: #6cbc35;
}
.tab-style1 .tb-list > li.active.secondary {
  color: #ffffff;
}
.tab-style1 .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]):not([class*="bdr-dark"]) {
  border-color: #6cbc35;
}
.tab-style1 .tb-content.secondary {
  background-color: #6cbc35;
}
/*.tab-style1 {
		.@{name}.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
			border-bottom-color: @color;
			> li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
				background-color: @color;
				.tb-fcolor-mixin(@name);
			}
		}
	}
	.tab-style1.side-tab:not(.tb-r) .@{name}.tb-list {
		border-right-color: @color;
	}
	.tab-style1.tb-r .@{name}.tb-list {
		border-left-color: @color;
	}*/
.tab-style2 .secondary.tb-list:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  border-color: #6cbc35;
  color: #ffffff;
}
.tab-style2.side-tab .secondary.tb-list > li.active {
  border-color: #6cbc35;
  color: #ffffff;
}
.tab-style3 .secondary.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #6cbc35;
}
.tab-style3 .secondary.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #ffffff;
}
.tab-style4 .secondary.tb-list > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #6cbc35;
  border-color: #6cbc35;
  color: #ffffff;
}
.tab-style1 .tb-list > li.active.dark {
  background-color: #1f2229;
}
.tab-style1 .tb-list > li.active.dark {
  color: #ffffff;
}
.tab-style1 .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]):not([class*="bdr-dark"]) {
  border-color: #1f2229;
}
.tab-style1 .tb-content.dark {
  background-color: #1f2229;
}
/*.tab-style1 {
		.@{name}.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
			border-bottom-color: @color;
			> li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
				background-color: @color;
				.tb-fcolor-mixin(@name);
			}
		}
	}
	.tab-style1.side-tab:not(.tb-r) .@{name}.tb-list {
		border-right-color: @color;
	}
	.tab-style1.tb-r .@{name}.tb-list {
		border-left-color: @color;
	}*/
.tab-style2 .dark.tb-list:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  border-color: #1f2229;
  color: #ffffff;
}
.tab-style2.side-tab .dark.tb-list > li.active {
  border-color: #1f2229;
  color: #ffffff;
}
.tab-style3 .dark.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #1f2229;
}
.tab-style3 .dark.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #ffffff;
}
.tab-style4 .dark.tb-list > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #1f2229;
  border-color: #1f2229;
  color: #ffffff;
}
.tab-style1 .tb-list > li.active.light {
  background-color: #e1f2fb;
}
.tab-style1 .tb-list > li.active.light {
  color: #ffffff;
}
.tab-style1 .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]):not([class*="bdr-dark"]) {
  border-color: #e1f2fb;
}
.tab-style1 .tb-content.light {
  background-color: #e1f2fb;
}
/*.tab-style1 {
		.@{name}.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
			border-bottom-color: @color;
			> li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
				background-color: @color;
				.tb-fcolor-mixin(@name);
			}
		}
	}
	.tab-style1.side-tab:not(.tb-r) .@{name}.tb-list {
		border-right-color: @color;
	}
	.tab-style1.tb-r .@{name}.tb-list {
		border-left-color: @color;
	}*/
.tab-style2 .light.tb-list:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  border-color: #e1f2fb;
  color: #ffffff;
}
.tab-style2.side-tab .light.tb-list > li.active {
  border-color: #e1f2fb;
  color: #ffffff;
}
.tab-style3 .light.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #e1f2fb;
}
.tab-style3 .light.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #ffffff;
}
.tab-style4 .light.tb-list > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #e1f2fb;
  border-color: #e1f2fb;
  color: #ffffff;
}
.tab-style1 .tb-list > li.active.gray {
  background-color: #f4f5f5;
}
.tab-style1 .tb-list > li.active.gray {
  color: #1f2229;
}
.tab-style1 .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]):not([class*="bdr-dark"]) {
  border-color: #f4f5f5;
}
.tab-style1 .tb-content.gray {
  background-color: #f4f5f5;
}
/*.tab-style1 {
		.@{name}.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
			border-bottom-color: @color;
			> li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
				background-color: @color;
				.tb-fcolor-mixin(@name);
			}
		}
	}
	.tab-style1.side-tab:not(.tb-r) .@{name}.tb-list {
		border-right-color: @color;
	}
	.tab-style1.tb-r .@{name}.tb-list {
		border-left-color: @color;
	}*/
.tab-style2 .gray.tb-list:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  border-color: #f4f5f5;
  color: #1f2229;
}
.tab-style2.side-tab .gray.tb-list > li.active {
  border-color: #f4f5f5;
  color: #1f2229;
}
.tab-style3 .gray.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #f4f5f5;
}
.tab-style3 .gray.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #1f2229;
}
.tab-style4 .gray.tb-list > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #f4f5f5;
  border-color: #f4f5f5;
  color: #1f2229;
}
.tab-style1 .tb-list > li.active.white {
  background-color: #ffffff;
}
.tab-style1 .tb-list > li.active.white {
  color: #1f2229;
}
.tab-style1 .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]):not([class*="bdr-dark"]) {
  border-color: #ffffff;
}
.tab-style1 .tb-content.white {
  background-color: #ffffff;
}
/*.tab-style1 {
		.@{name}.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
			border-bottom-color: @color;
			> li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
				background-color: @color;
				.tb-fcolor-mixin(@name);
			}
		}
	}
	.tab-style1.side-tab:not(.tb-r) .@{name}.tb-list {
		border-right-color: @color;
	}
	.tab-style1.tb-r .@{name}.tb-list {
		border-left-color: @color;
	}*/
.tab-style2 .white.tb-list:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  border-color: #ffffff;
  color: #1f2229;
}
.tab-style2.side-tab .white.tb-list > li.active {
  border-color: #ffffff;
  color: #1f2229;
}
.tab-style3 .white.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #ffffff;
}
.tab-style3 .white.tb-list:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #1f2229;
}
.tab-style4 .white.tb-list > li.active:not([class*="bg-"]):not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1f2229;
}
/*===========================================*/
/*	DESKTOP LAYOUT 
/*===========================================*/


/*@media (min-width: 1200px) {
	

}
@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media (min-width: 992px) {
		
}*/

/*===========================================*/
/*	MOBILE & TABLET COMMON
/*===========================================*/
/*@media (min-width: 200px) and (max-width: 991px) {
	
}*/


/*===========================================*/
/*	TABLET
/*===========================================*/
/*@media (min-width: 768px) and (max-width: 991px) {

}*/


/*===========================================*/
/*	MOBILE
/*===========================================*/
/*@media (min-width: 200px) and (max-width: 767px) {
	
}
@media (min-width: 600px) and (max-width: 767px) {
}
@media (min-width: 480px) and (max-width: 599px) {

}
@media (min-width: 200px) and (max-width: 479px) {

}*/

[data-novi-id="16"]{
  font-weight: 700;
}
[data-novi-id="15"]{
  font-size: 20px;
}
[data-novi-id="14"]{
  font-weight: 400;
  font-size: 18px;
}
[data-novi-id="13"]{
  font-size: 18px;
  font-weight: 400;
}
[data-novi-id="12"]{
  font-size: 18px;
  font-weight: 400;
}
[data-novi-id="11"]{
  font-size: 18px;
  font-weight: 400;
}
[data-novi-id="10"]{
  font-size: 18px;
  font-weight: 400;
}
[data-novi-id="9"]{
  font-size: 18px;
  font-weight: 400;
}
[data-novi-id="8"]{
  font-size: 16px;
}
[data-novi-id="7"]{
  font-size: 16px;
}
[data-novi-id="6"]{
  font-size: 16px;
}
[data-novi-id="5"]{
  font-size: 16px;
}
[data-novi-id="4"]{
  font-size: 16px;
}
[data-novi-id="3"]{
  font-size: 16px;
}
[data-novi-id="2"]{
  font-size: 20px;
  line-height: 30px;
}
[data-novi-id="1"]{
  line-height: 30px;
  font-size: 20px;
  font-size: 22px;
  letter-spacing: 0px;
  font-weight: 400;
  
}
[data-novi-id="0"]{
  line-height: 30px;
  font-size: 20px;
}
