@charset "UTF-8";
/*------------------------------------------------------------------
[Master Stylesheet]

Project:  JOBBY
Version:	1.0
Last change:	07/2018 [Add Define a table of contents Link]
Assigned to:	HAU NGUYEN
Primary use:	AuCreative
-------------------------------------------------------------------*/
/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

/* ==========================================================================
   #NORMALIZE
   ========================================================================== */
img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
  margin-bottom: 0;
}

p {word-break:keep-all;}

/**
 * Remove default table spacing.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
fieldset {
  min-width: 0;
  /* [1] */
  border: 0;
}

button {
  outline: none;
}

/* ==========================================================================
   #SHARED
   ========================================================================== */
/**
 * Shared declarations for certain elements.
 */
/**
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
/* BLOCKQOUTE */
.blockqoute-blog {
  padding-left: 100px;
}

@media (max-width: 991px) {
  .blockqoute-blog {
    padding-left: 70px;
  }
}

@media (max-width: 991px) {
  .blockqoute-blog {
    padding-left: 40px;
  }
}

.blockqoute-blog__inner {
  position: relative;
  z-index: 99;
}

.blockqoute-blog__inner::before {
  position: absolute;
  content: '';
  z-index: -9;
  display: inline-block;
  width: 58px;
  height: 42px;
  background-image: url("../images/icon/qoute.png");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  left: -28px;
  top: -10px;
}

/* ==========================================================================
   #AU BREADCRUMB
   ========================================================================== */
.list-breadcrumb__item {
  text-transform: capitalize;
  display: inline;
}

.list-breadcrumb__item a {
  color: #555;
}

.list-breadcrumb__item a:hover {
  color: #ff97a4;
}

.list-breadcrumb__item:after {
  content: ' - ';
}

.list-breadcrumb .list-breadcrumb__item:last-child::after {
  content: '';
}

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
/**
 * This is an example component. Extend inuitcss by building your own components
 * that make up your UI. Component classes are prefixed with a `c-`.
 */
/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 */
/* Define Variables */
/* Style variants */
.au-btn {
  border: none;
  line-height: 55px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  padding: 0 20px;
  font-size: 15px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
}

.au-btn i {
  color: inherit;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  -o-transition: -o-transform .5s ease;
  -moz-transition: transform .5s ease, -moz-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease, -o-transform .5s ease;
}

.au-btn i:first-child {
  margin-left: 4px;
}

.au-btn--pink {
  background: url("../images/icon/link-hover.png") center center/contain no-repeat;
}

.au-btn--pink:hover {
  color: #fff;
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
}

.au-btn--pink:hover i {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}

.au-btn--blue {
  background: url("../images/icon/btn-01.png") center center/contain no-repeat;
  padding: 0 22px;
}

.au-btn--blue:hover {
  color: #fff;
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
}

.au-btn--blue:hover i {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}

.au-btn--white {
  color: #666;
  background: url("../images/icon/btn-02.png") center center/contain no-repeat;
}

.au-btn--white:hover {
  color: #666;
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
}

.au-btn--white:hover i {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}

.au-btn-2 {
  line-height: 60px;
  padding: 0 15px;
  text-align: center;
  display: inline-block;
  font-weight: 600;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}

.au-btn-2 i {
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  -o-transition: -o-transform .5s ease;
  -moz-transition: transform .5s ease, -moz-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease, -o-transform .5s ease;
}

.au-btn-2 i:first-child {
  margin-left: 5px;
}

.au-btn2--pink {
  background: #ff97a4;
}

.au-btn2--pink:hover {
  background: #f58d9a;
  color: #ffffff;
}

.au-btn2--pink:hover i {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}

.au-btn2--blue {
  background: #7dd0f8;
}

.au-btn2--blue:hover {
  background: #73c6ee;
  color: #ffffff;
}

.au-btn2--blue:hover i {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}

.au-btn-3 {
  line-height: 54px;
  padding: 0 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.au-btn-3 i {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.au-btn-3 i:first-child {
  margin-left: 5px;
}

.au-btn-3.lower {
  line-height: 48px;
}

/* Custom */
.hamburger {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  line-height: 1;
  vertical-align: top;
  background: #fff;
}

.hamburger:focus {
  outline: none;
}

.hamburger .hamburger-box {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  height: 15px;
  margin-top: 1px;
}

.hamburger .hamburger-box .hamburger-inner {
  width: 20px;
  height: 2px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: #555;
}

.hamburger .hamburger-box .hamburger-inner:before {
  width: 20px;
  height: 2px;
  top: 6px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: #555;
}

.hamburger .hamburger-box .hamburger-inner:after {
  top: 12px;
  width: 20px;
  height: 2px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: #555;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-box .hamburger-inner:after {
  -webkit-transform: translate3d(0, -12px, 0) rotate(-90deg);
  -moz-transform: translate3d(0, -12px, 0) rotate(-90deg);
  transform: translate3d(0, -12px, 0) rotate(-90deg);
}

.col-border {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .col-border {
    border-left: none;
  }
}

.au-countdown .au-countdown__item:last-child {
  margin-right: 0;
}

.au-countdown__item {
  display: inline-block;
  margin-right: 36px;
  height: 109px;
  width: 109px;
  background: #7dd0f8;
  padding-bottom: 7px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-right-radius: 5px;
  color: #fff;
  text-align: center;
}

.au-countdown__item .time {
  font-weight: 800;
  font-size: 55px;
  line-height: 1;
  display: block;
}

.au-countdown__item .name {
  line-height: 1;
  display: block;
  font-size: 21px;
  margin-top: 4px;
  text-transform: capitalize;
}

.au-countdown__item.white {
  background: #e5e5e5;
  color: #54b9e5;
}

.au-countdown__item.white .au-countdown__item-inner {
  background: #fff;
}

.au-countdown__item-inner {
  background: #9bdaf8;
  height: 100%;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-right-radius: 5px;
  padding-top: 10px;
}

@media (max-width: 767px) {
  .au-countdown__item {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .au-countdown .au-countdown__item:last-child {
    margin-right: auto;
  }
}

.filter-price .filter-bar {
  position: relative;
  width: 100%;
  height: 16px;
  margin-bottom: 20px;
  margin-top: 15px;
}

.filter-price .bar-not-fill {
  position: absolute;
  top: 50%;
  margin-top: -1.5px;
  left: 0;
  height: 5px;
  width: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #7dd0f8;
}

.filter-price .noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.filter-price .noUi-origin {
  position: absolute;
  height: 0;
  width: 0;
}

.filter-price .noUi-connect {
  position: absolute;
  top: 0;
  left: 0;
  background: #ff97a4;
  bottom: 0;
  right: 0;
}

.filter-price .noUi-origin {
  position: absolute;
  height: 0;
  width: 0;
}

.filter-price .noUi-handle {
  width: 13px;
  height: 13px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ff97a4;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  cursor: pointer;
  outline: none;
}

.filter-price .filter-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.filter-price .price-range {
  width: -webkit-calc(100% - 70px);
  width: -moz-calc(100% - 70px);
  width: calc(100% - 70px);
}

.filter-price .filter-link {
  color: #666;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  width: 70px;
}

.filter-price .filter-link > i:first-child {
  margin-left: 5px;
}

.filter-price .filter-link > i {
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  -o-transition: -o-transform .5s ease;
  -moz-transition: transform .5s ease, -moz-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease, -o-transform .5s ease;
}

.filter-price .filter-link:hover {
  color: #ff97a4;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.filter-price .filter-link:hover > i {
  -webkit-transform: translateX(3px);
  -moz-transform: translateX(3px);
  -ms-transform: translateX(3px);
  -o-transform: translateX(3px);
  transform: translateX(3px);
}

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333333;
  font-family: 'NotoMed', sans-serif;
  line-height: 1.2;
}

.h1 {
  font-size: 36px;
}

.h2 {
  font-size: 30px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 15px;
}

.h6 {
  font-size: 13px;
}

/* ==========================================================================
   #HR
   ========================================================================== */
hr {
  display: block;
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.line-white {
  margin: 25px 0;
  width: -webkit-calc(100% + 25px);
  width: -moz-calc(100% + 25px);
  width: calc(100% + 25px);
  margin-left: -25px;
}

@media (max-width: 991px) {
  .line-white {
    display: none;
  }
}

.hr-2 {
  border-color: #e5e5e5;
  margin: 18px 0;
}

/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 */
html, body {
  background: #fff;
  color: #666;
  font-family: 'NotoReg', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing:-0.05em;
  min-height: 100%;
  word-break:keep-all;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: unset;
  }
}

/* ==========================================================================
   #ICON
   ========================================================================== */
.au-icon {
  width: 50px;
  height: 50px;
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  color: #ff97a4;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.au-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.au-icon:hover {
  color: #ff97a4;
  background: whitesmoke;
}

.au-icon-2 {
  width: 34px;
  height: 34px;
  font-size: 15px;
  background: #7dd0f8;
  color: #fff;
}

.au-icon-2:hover {
  background: #ff97a4;
  color: #fff;
}

.au-icon-3 {
  position: relative;
  width: 130px;
  height: 130px;
  /*
  border: 2px dashed rgba(255, 255, 255, 0.5);
  */
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.au-icon-3 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.au-icon-4 {
  height: 125px;
  width: 125px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  color: #fff;
}

.au-icon-4 span {
  font-size: 55px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.au-icon-4.blue {
  background: #7dd0f8;
}

.au-icon-4.yellow {
  background: #fcdd64;
}

.au-icon-4.pink {
  background: #ff97a4;
}

.au-icon-4.green {
  background: #b6dd6b;
}

/* ==========================================================================
   #LINKS
   ========================================================================== */
a {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  outline: none;
  color: #000;
}

a:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

.inBoxBlack {
	background: rgba(0,0,0,0.8);
	padding: 30px 0;
	margin: 60px 0;
}

.btnCircle {
	background:#fff;
	width: 120px;
	height: 120px;
	line-height: 120px;
	border-radius: 120px;
}

.btnCircle i {
	font-size:60px;
	line-height: 120px;
	color: #000;
}

.mBgCard_02 {
	background: url("../images/mBg_card_02.jpg");
	padding:50px 0 !important;
}
.link-learn-more {
  color: #666;
  text-transform: uppercase;
  font-size: 12px;
}

.link-learn-more > i:first-child {
  margin-left: 5px;
}

.link-learn-more > i {
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  -o-transition: -o-transform .5s ease;
  -moz-transition: transform .5s ease, -moz-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease, -o-transform .5s ease;
}

.link-learn-more:hover {
  color: #ff97a4;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link-learn-more:hover > i {
  -webkit-transform: translateX(3px);
  -moz-transform: translateX(3px);
  -ms-transform: translateX(3px);
  -o-transform: translateX(3px);
  transform: translateX(3px);
}

.link-learn-more--white {
  color: #fff;
}

.link-learn-more--white:hover {
  color: #333;
}

.link-add-cart {
  font-size: 15px;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
}

.link-add-cart > i {
  margin-left: 2px;
}

.link-add-cart:hover {
  color: #ff97a4;
}

.link-lost-pass {
  color: #ff6666;
}

.link-lost-pass:hover {
  color: #f55c5c;
}

.link-lost-pass-2 {
  color: #999;
}

.link-lost-pass-2:hover {
  color: #ff97a4;
}

.link-reply {
  color: #333;
  font-size: 13px;
  text-transform: uppercase;
}

.link-reply:hover {
  color: #ff97a4;
}

.link-ship {
  text-decoration: none;
  color: #ff97a4;
}

.link-ship.collapsed {
  font-size: 15px;
  color: #666;
  text-decoration: underline;
}

.link-ship:hover {
  color: #ff97a4;
}

.list-bare__item {
  font-size: 15px;
  color: #666;
  padding: 4px 0;
}

.list-bare__item .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #ccc;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 4px;
}

.list-bare__link {
  color: #666;
}

.list-bare__link:hover {
  color: #ff97a4;
}

.list-cmts .list-cmts__item:last-child {
  border-bottom: none;
}

.list-cmts-2 {
  margin-bottom: 23px;
}

.list-cmts-2 .list-cmts__item:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.list-cmts-2 .list-cmts__item:first-child {
  padding-top: 0;
}

.list-cmts__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  padding-top: 40px;
  border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 575px) {
  .list-cmts__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.list-cmts__avatar {
  margin-right: 20px;
}

.list-cmts__avatar a {
  display: block;
  width: 81px;
  height: 81px;
}

@media (max-width: 575px) {
  .list-cmts__avatar {
    margin-right: 0;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

.list-cmts__content-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.list-cmts__content-head .title {
  margin-bottom: 4px;
}

.list-cmts__content-head .date {
  color: #999;
}

.list-cmts__content-head .right {
  margin-top: -4px;
}

.list-cmts__content-body {
  margin-top: 7px;
}

.list-contact__icon {
  margin-right: 15px;
  vertical-align: top;
}

.list-contact__item {
  font-size: 15px;
  color: #666;
  padding: 5px 0;
}

.list-nav-blog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .list-nav-blog {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.list-nav-blog__item {
  overflow: hidden;
}

.list-nav-blog__item img {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.list-nav-blog__item:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.list-nav-blog__item .image {
  display: block;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  margin-right: 14px;
}

.list-nav-blog__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list-nav-blog__item a:hover {
  color: #ff97a4;
}

.list-nav-blog__item a:hover .list-nav-blog__text {
  color: #ff97a4;
}

.list-nav-blog__item .list-nav-blog__text {
  text-transform: capitalize;
  font-weight: 700;
  color: #666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.list-nav-blog__item.next a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.list-nav-blog__item.next .image {
  margin-right: 0;
  margin-left: 14px;
}

.list-pricing__item {
  font-size: 18px;
  color: #666;
  text-align: center;
  padding: 4px 0;
}

.list-schedule__item {
  padding: 10px 20px;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f7f7f7;
  color: #333;
  font-size: 17px;
}

.list-schedule__item:nth-child(odd) {
  background: #95adfa;
  color: #fff;
}

/* ==========================================================================
   #LIST SOCIAL
   ========================================================================== */
.list-social li {
  padding: 0 9px;
}

.list-social li a {
  color: #ccc;
  font-size: 18px;
}

.list-social li:last-child {
  padding-right: 0;
}

.list-social li:last-child a {
  font-size: 18px;
}

.list-social .seprator {
  padding: 0 2px;
}

.list-social .seprator span {
  display: inline-block;
  width: 1px;
  height: 13px;
  background: #ccc;
}

.list-social-2 li a {
  color: #666;
}

.list-social-2 li:last-child a {
  font-size: 18px;
}

.list-social-3 li {
  padding: 0 8px;
}

.list-social-3 li a {
  color: #666;
  font-size: 17px;
}

.list-social-3 li:last-child a {
  font-size: 17px;
}

.ic-fb:hover {
  color: #3b5998;
}

.ic-twi:hover {
  color: #00aced;
}

.ic-insta:hover {
  color: #e1306c;
}

.ic-in:hover {
  color: #007bb6;
}

.list-star__item {
  display: inline-block;
  font-size: 15px;
  color: #ff97a4;
}

.list-star-2 .list-star__item {
  font-size: 13px;
}

.list-star-3 .list-star__item {
  font-size: 40px;
  color: #fcdd64;
  padding: 0 3px;
}

.list-tags .list-tags__item:last-child a:after {
  content: '';
}

.list-tags__icon {
  display: inline-block;
  font-size: 14px;
  color: #666;
  margin-right: 7px;
}

.list-tags__item {
  display: inline-block;
}

.list-tags__item a {
  color: #666;
}

.list-tags__item a:hover {
  color: #ff97a4;
}

.list-tags__item a:after {
  content: ',';
}

.list-teacher-info li {
  list-style-type: none;
  text-align: center;
}

.list-teacher-info li span {
  position: relative;
}

.list-teacher-info li span::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 4px;
  height: 4px;
  background: #7dd0f8;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  vertical-align: middle;
  margin-top: 10.5px;
  margin-left: -12px;
}

.list-teacher-info-2 li {
  text-align: center;
  padding: 2px 0;
}

.list-teacher-info-2 li span {
  margin-right: 12px;
}

.list-teacher-info-3 {
  padding-left: 35px;
}

.list-teacher-info-3 li {
  padding: 5px 0;
}

.list-teacher-info-3 li i {
  font-size: 15px;
  color: #7dd0f8;
  margin-right: 8px;
}

.au-progress {
  margin-bottom: 31px;
}

.au-progress__title {
  font-size: 18px;
  color: #666;
  text-transform: capitalize;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.au-progress__bar {
  position: relative;
  height: 8px;
  background-color: transparent;
  border: 1px solid #f6b851;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.au-progress__bar .au-progress__inner {
  position: absolute;
  width: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  top: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
  overflow: visible;
}

.au-progress__bar.orange {
  border-color: #f6b851;
}

.au-progress__bar.orange .au-progress__inner {
  background: #f6b851;
}

.au-progress__bar.violet {
  border-color: #95adfa;
}

.au-progress__bar.violet .au-progress__inner {
  background: #95adfa;
}

.au-progress__bar.green {
  border-color: #63e3d6;
}

.au-progress__bar.green .au-progress__inner {
  background: #63e3d6;
}

.au-progress__value {
  position: absolute;
  line-height: 1;
  bottom: 24px;
  right: 0px;
  font-size: 18px;
  color: #666;
  font-weight: 600;
}

.qty-box {
  position: relative;
}

.qty-box input {
  width: 89px;
  height: 54px;
  line-height: 1.65;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  padding-left: 20px;
  border: 1px solid #e5e5e5;
  font-size: 15px;
  color: #333;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.qty-box .qty-nav {
  float: left;
  position: relative;
  height: 54px;
}

.qty-box .qty-btn {
  cursor: pointer;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-collapse: collapse;
  width: 41px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 10;
  background: #fff;
  color: #333;
  font-size: 15px;
}

.qty-box .qty-btn:hover {
  background: #ff97a4;
  color: #fff;
}

.qty-box .qty-btn.qty-btn--up {
  position: absolute;
  height: 50%;
  top: 0;
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  border-top-right-radius: 10px;
}

.qty-box .qty-btn.qty-btn--down {
  position: absolute;
  bottom: 0px;
  height: 50%;
  border-bottom: 1px solid #e5e5e5;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  border-bottom-right-radius: 10px;
}

/* ==========================================================================
   #RATING STAR
   ========================================================================== */
.au-rating {
  float: left;
  margin-top: 3px;
  margin-bottom: 23px;
  position: relative;
  z-index: 3;
}

.au-rating:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.au-rating input {
  display: none;
}

.au-rating label {
  float: right;
  margin-right: 5px;
  margin-bottom: 0;
  cursor: pointer;
}

.au-rating label:before {
  content: '\f005';
  font-family: 'Font Awesome\ 5 Free';
  color: #ff97a4;
  font-weight: 400;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

.au-rating input:checked ~ label:before,
.au-rating input:hover ~ label:before {
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
  content: '\f005';
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

.au-rev-arrow-1,
.au-rev-arrow-2 {
  background: none;
}

.au-rev-arrow-1.tparrows,
.au-rev-arrow-2.tparrows {
  width: 44px;
  height: 20px;
}

.au-rev-arrow-1.tparrows:hover,
.au-rev-arrow-2.tparrows:hover {
  background: none;
}

.au-rev-arrow-1.tparrows:hover.tp-leftarrow:before,
.au-rev-arrow-2.tparrows:hover.tp-leftarrow:before {
  background-image: url("../images/icon/arrow-hover-left.png");
}

.au-rev-arrow-1.tparrows:hover.tp-rightarrow:before,
.au-rev-arrow-2.tparrows:hover.tp-rightarrow:before {
  background-image: url("../images/icon/arrow-hover.png");
}

.au-rev-arrow-1.tparrows.tp-leftarrow:before, .au-rev-arrow-1.tparrows.tp-rightarrow:before,
.au-rev-arrow-2.tparrows.tp-leftarrow:before,
.au-rev-arrow-2.tparrows.tp-rightarrow:before {
  content: '';
  display: inline-block;
  width: 44px;
  height: 20px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: background-image 0.5s;
  -o-transition: background-image 0.5s;
  -moz-transition: background-image 0.5s;
  transition: background-image 0.5s;
}

.au-rev-arrow-1.tparrows.tp-leftarrow,
.au-rev-arrow-2.tparrows.tp-leftarrow {
  margin-left: 40px;
}

.au-rev-arrow-1.tparrows.tp-rightarrow,
.au-rev-arrow-2.tparrows.tp-rightarrow {
  margin-right: 40px;
}

.au-rev-arrow-1.tparrows.tp-leftarrow:before,
.au-rev-arrow-2.tparrows.tp-leftarrow:before {
  background-image: url("../images/icon/arrow-prev.png");
}

.au-rev-arrow-1.tparrows.tp-rightarrow:before,
.au-rev-arrow-2.tparrows.tp-rightarrow:before {
  background-image: url("../images/icon/arrow-next.png");
}

.au-rev-arrow-2.tparrows:hover {
  background: none;
}

.au-rev-arrow-2.tparrows:hover.tp-leftarrow:before {
  background-image: url("../images/icon/arrow-prev-02-hover.png");
}

.au-rev-arrow-2.tparrows:hover.tp-rightarrow:before {
  background-image: url("../images/icon/arrow-next-02-hover.png");
}

.au-rev-arrow-2.tparrows.tp-leftarrow {
  margin-left: -60px;
}

.au-rev-arrow-2.tparrows.tp-rightarrow {
  margin-right: -60px;
}

.au-rev-arrow-2.tparrows.tp-leftarrow:before {
  background-image: url("../images/icon/arrow-prev-02.png");
}

.au-rev-arrow-2.tparrows.tp-rightarrow:before {
  background-image: url("../images/icon/arrow-next-02.png");
}

/* ==========================================================================
   #REV BLOCK
   ========================================================================== */
.rev-block-01 {
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

/* ==========================================================================
   #REV BUTTON
   ========================================================================== */
.rev-btn-1 {
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  line-height: 55px;
  padding: 0 20px;
  background: url("../images/icon/btn-01.png") center center/contain no-repeat;
  -webkit-transition: all .5s !important;
  -o-transition: all .5s !important;
  -moz-transition: all .5s !important;
  transition: all .5s !important;
}

.rev-btn-1:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.rev-btn-2 {
  text-transform: uppercase;
  color: #666;
  font-size: 15px;
  display: inline-block;
  font-weight: 600;
  line-height: 55px;
  padding: 0 20px;
  background: url("../images/icon/btn-02.png") center center/contain no-repeat;
  -webkit-transition: all .5s !important;
  -o-transition: all .5s !important;
  -moz-transition: all .5s !important;
  transition: all .5s !important;
}

.rev-btn-2:hover {
  color: #666;
  -webkit-transform: scale(1.05) !important;
  -moz-transform: scale(1.05) !important;
  -ms-transform: scale(1.05) !important;
  -o-transform: scale(1.05) !important;
  transform: scale(1.05) !important;
}

.rev-btn-3 {
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  font-weight: normal;
  line-height: 55px;
  padding: 0 20px;
  background: url("../images/icon/btn-03.png") center center/contain no-repeat;
  -webkit-transition: all .5s !important;
  -o-transition: all .5s !important;
  -moz-transition: all .5s !important;
  transition: all .5s !important;
}

.rev-btn-3:hover {
  color: #fff;
  -webkit-transform: scale(1.05) !important;
  -moz-transform: scale(1.05) !important;
  -ms-transform: scale(1.05) !important;
  -o-transform: scale(1.05) !important;
  transform: scale(1.05) !important;
}

/* ==========================================================================
   #REV IMAGE
   ========================================================================== */
/* ==========================================================================
   #REV TEXT
   ========================================================================== */
.rev-text-1 {
  font-family: "Chelsea Market", Arial, "Helvetica Neue", sans-serif;
  text-transform: uppercase;
}

.rev-text-2 {
  font-family: "Chelsea Market", Arial, "Helvetica Neue", sans-serif;
}

.rev-text-3 {
  font-family: "Chelsea Market", Arial, "Helvetica Neue", sans-serif;
}

.rev-text-4 {
  font-family: 'Yeon Sung', cursive;
}

.rev-text-5 {
  font-family: 'Yeon Sung', cursive;
  font-style: normal;
}

.rev-text-6,
.rev-text-7 {
  text-transform: uppercase;
  letter-spacing: .2em;
  background: #e6bbdb;
}

.rev-text-7 {
  background: #ff97a4;
}

.rev-text-8 {
  font-family: 'NotoBold', sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  word-break:keep-all;

}

.rev-text-9 {
  font-family: "Chelsea Market", Arial, "Helvetica Neue", sans-serif;
}

.rev-text-9 a {
  color: #333;
  -webkit-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  -moz-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.rev-text-9 a:hover {
  color: #ff97a4;
}

/* ==========================================================================
   #SECTION HEADING
   ========================================================================== */
.section-heading {
  font-family: "Chelsea Market", Arial, "Helvetica Neue", sans-serif;
}

.section-heading-1 {
  text-align: center;
  margin-bottom: 75px;
}

.section-heading-1 .section-heading__title {
  font-size: 45px;
  color: #ff97a4;
  margin-bottom: 2px;
  font-weight: 400;
}

.section-heading-1--small {
  margin-bottom: 40px;
}

.section-heading-1--small .section-heading__title {
  font-size: 35px;
}

.section-heading-1--tiny {
  margin-bottom: 8px;
}

.section-heading-1--tiny .section-heading__title {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: -5px;
}

.section-heading-1--tiny2 {
  margin-bottom: 10px;
}

.section-heading-1--tiny2 .section-heading__title {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: -4px;
}

.section-heading-2 {
  text-align: center;
  margin-bottom: 75px;
}

.section-heading-2 .section-heading__title {
  font-size: 45px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 400;
}

.select--none {
  visibility: hidden;
  height: 0;
  width: 100%;
  display: none;
}

.select2-container,
.selection {
  display: block;
}

.select2-container {
  max-width: 100%;
}

.select--no-search .select2-search {
  display: none !important;
}

.rs1-select2 {
  outline: none;
  min-width: 240px;
}

.rs1-select2 .select2-container {
  width: 100% !important;
  outline: none;
}

.rs1-select2 .select2-container .select2-selection--single {
  height: 50px;
}

.rs1-select2 .select2-container--default .select2-selection--single {
  border-color: #e5e5e5;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  outline: none;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 15px;
  color: #666;
  line-height: 48px;
  padding-right: 50px;
  padding-left: 20px;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
  width: 50px;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow:after {
  font-family: "Material-Design-Iconic-Font";
  content: '\f2f9';
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #666;
}

.rs1-select2 .select2-container--open .select2-dropdown {
  font-size: 15px;
  -webkit-box-shadow: 0px 2px 15px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 15px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 15px 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  margin-top: 5px;
  overflow: hidden;
}

.rs1-select2 .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.rs1-select2 .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  border-bottom-right-radius: 10px;
}

.rs1-select2 .select2-container--default .select2-results__option--highlighted {
  background: #ff97a4;
}

.rs1-select2 .select2-container--default .select2-results__option {
  padding: 10px 20px;
}

.rs1-select2.rs1-select2--lower {
  min-width: unset;
  width: 100%;
}

.rs1-select2.rs1-select2--lower .select2-container .select2-selection--single {
  height: 48px;
}

.rs1-select2.rs1-select2--lower .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 46px;
  font-size: 13px;
  color: #666;
}

.rs1-select2.rs1-select2--lower .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
}

.rs1-select2.rs1-select2--lower .select2-container--open .select2-dropdown {
  font-size: 13px;
  color: #666;
}

.au-tag__item {
  background: #f2f2f2;
  font-size: 15px;
  color: #666;
  line-height: 35px;
  padding: 0 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-right: 11px;
  margin-bottom: 15px;
}

.au-tag__item:hover {
  color: #fff;
  background: #ff97a4;
}

/* ==========================================================================
   #TITLE
   ========================================================================== */
.title--white {
  color: #fff;
}

.title--white a {
  color: #fff;
}

.title--white:hover a {
  color: #333;
}

.title--black a {
  color: #333;
}

.title--black:hover a {
  color: #ff97a4;
}

.title--xl {
  font-size: 40px;
}

.title--s35 {
  font-size: 35px;
}

.title--lg {
  font-size: 30px;
}

.title--md {
  font-size: 24px;
}

.title--sm {
  font-size: 22px;
}

.title--xs {
  font-size: 20px;
}

.title--s18 {
  font-size: 18px;
}

.title--sbold {
  font-weight: 600;
}

.title-1 {
  font-size: 30px;
  color: #333;
  font-family: "Great Vibes", Arial, "Helvetica Neue", sans-serif;
  font-weight: 400;
}

.title-2 {
  font-size: 45px;
  color: #ff97a4;
}

.title-3 {
  color: #ff97a4;
  font-size: 35px;
  font-weight: 700;
  line-height: 54px;
  padding: 0 15px;
  text-transform: uppercase;
  background: #fff;
  display: inline-block;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

@media (max-width: 575px) {
  .title-3 {
    font-size: 21px;
    line-height: 40px;
  }
}

.title-4 {
  font-family: "Chelsea Market", Arial, "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 48px;
  line-height: -webkit-calc(67/48);
  line-height: -moz-calc(67/48);
  line-height: calc(67/48);
  font-weight: 400;
  letter-spacing: 0.05em;
}

@media (max-width: 575px) {
  .title-4 {
    font-size: 40px;
  }
}

#to-top {
  position: fixed;
  z-index: 1000;
  right: 30px;
  bottom: 10px;
  display: none;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}

#to-top:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}

/*Loader*/
.loader {
  display: inline-block;
  width: 35px;
  height: 35px;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
  position: relative;
}

.loader:before,
.loader:after {
  content: '';
  width: inherit;
  height: inherit;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #ff97a4;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loader-08 2.0s infinite ease-in-out;
  -moz-animation: loader-08 2.0s infinite ease-in-out;
  -o-animation: loader-08 2.0s infinite ease-in-out;
  animation: loader-08 2.0s infinite ease-in-out;
}

.loader:after {
  -webkit-animation-delay: -1.0s;
  -moz-animation-delay: -1.0s;
  -o-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes loader-08 {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes loader-08 {
  0%,
  100% {
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes loader-08 {
  0%,
  100% {
    -o-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes loader-08 {
  0%,
  100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.no-radius {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}

.no-border {
  border: none !important;
}

/* ==========================================================================
   #BOX
   ========================================================================== */
.box {
  display: block;
  position: relative;
}

.box:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.box__head {
  position: relative;
}

.box__overlay,
.box__link-overlay,
.box__head__overlay {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.box .title--xs {
  font-size: 16px;
}

.box__title {
  margin-bottom: 8px;
}

.box__text {
  margin-bottom: 0;
}

.box__img {
  margin-bottom: 0;
}

.box__icon {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.box__icon.au-icon--md .au-icon__icon {
  font-size: 26px;
}

.box__icon.au-icon--lg {
  width: 82px;
  height: 82px;
}

.box__icon.au-icon--lg .au-icon__icon {
  font-size: 36px;
}

.box__icon.au-icon--lg.au-icon--border-black {
  border-color: #999;
}

.box__icon.au-icon--flat .au-icon__icon {
  position: static;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.box__icon.au-icon--flat:hover {
  background: none;
}

.box__icon:hover {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.box--center {
  text-align: center;
}

.box--center .box__icon,
.box--center .box__img,
.box--center .box__process-number {
  margin-left: auto;
  margin-right: auto;
}

.box--border {
  border: 1px solid #ebebeb;
}

.box--shadow {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.box--cover .box__overlay {
  background: rgba(0, 0, 0, 0.8);
}

.box--cover .box__title {
  color: #fff;
}

.box--cover .box__text {
  color: #cccccc;
}

.box--cover .box__content {
  position: relative;
  z-index: 1;
}

.box--outicon {
  padding-top: 25px;
}

.box--outicon .box__icon {
  position: absolute;
  top: -25px;
  left: 50%;
  margin-left: -25px;
}

.box--outicon .box__head {
  position: static;
}

.box--beside .box__head {
  float: left;
}

.box--beside .box__body {
  margin-left: 50px;
}

.box--beside-reverse .box__head {
  float: right;
}

.box--beside-reverse .box__body {
  margin-right: 50px;
}

.box--lg .box__title {
  margin-bottom: 13px;
}

.box--lg .au-icon--flat.au-icon--lg {
  width: 45px;
  height: 45px;
}

/* ==========================================================================
   #FOOTER
   ========================================================================== */
.footer {
  text-align: center;
}

.footer-wrap {
border-top: 3px solid #000;
  padding-top: 95px;
  padding-bottom: 60px;
}

.footer__logo {
  margin-bottom: 37px;
}

.footer__list li a {
  text-transform: uppercase;
  color: #333;
  font-size: 16px;
  padding: 0 20px;
}

.footer__list li a:hover {
  color: #ff97a4;
}

@media (max-width: 767px) {
  .footer__list li {
    display: block;
  }
}

.form__footer {
  max-width: 370px;
  margin: 0 auto;
  margin-top: 50px;
}

.copyright-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #e5e5e5;
}

@media (max-width: 575px) {
  .copyright-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/* ==========================================================================
   #FORM
   ========================================================================== */
input,
textarea {
  /* display: block; */
  border: 1px solid #ff97a4;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  line-height: 44px;
  padding: 0 20px;
  font-size: 15px;
  color: #ff97a4;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #ff97a4;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ff97a4;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ff97a4;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ff97a4;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ff97a4;
}

input:focus,
textarea:focus {
  outline: none;
}

input {
  /* width: 100%; */
}

textarea {
  width: 100%;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form--icon {
  position: relative;
}

.form--icon input {
  padding-right: 70px;
}

.form--icon .input-border-3 {
  padding-right: 40px;
}

.form--icon button[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
}

.form--icon button.btn-submit-2 {
  top: 1px;
  right: 1px;
}

.input-border-trans,
.textarea-border-trans {
  line-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  margin-bottom: 20px;
}

.input-border-trans::-webkit-input-placeholder,
.textarea-border-trans::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #fff;
}

.input-border-trans:-moz-placeholder,
.textarea-border-trans:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
  opacity: 1;
}

.input-border-trans::-moz-placeholder,
.textarea-border-trans::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
  opacity: 1;
}

.input-border-trans:-ms-input-placeholder,
.textarea-border-trans:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

.input-border-trans:-ms-input-placeholder,
.textarea-border-trans:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}

.input-border-trans:focus,
.textarea-border-trans:focus {
  border-color: #ff97a4;
}

.input-border,
.textarea-border {
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
  color: #999;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.input-border::-webkit-input-placeholder,
.textarea-border::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #999;
}

.input-border:-moz-placeholder,
.textarea-border:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  opacity: 1;
}

.input-border::-moz-placeholder,
.textarea-border::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  opacity: 1;
}

.input-border:-ms-input-placeholder,
.textarea-border:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999;
}

.input-border:-ms-input-placeholder,
.textarea-border:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #999;
}

.input-border:focus,
.textarea-border:focus {
  border-color: #ff97a4;
}

.textarea-border-trans,
.textarea-border {
  min-height: 219px;
  line-height: -webkit-calc(27/15);
  line-height: -moz-calc(27/15);
  line-height: calc(27/15);
  padding: 10px 18px;
}

.input-border-2 {
  line-height: 46px;
  border-color: #e5e5e5;
  color: #999;
  -webkit-transform: all .3s;
  -moz-transform: all .3s;
  -ms-transform: all .3s;
  -o-transform: all .3s;
  transform: all .3s;
}

.input-border-2:focus {
  border-color: #ff97a4;
}

.input-border-2::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #666;
}

.input-border-2:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #666;
  opacity: 1;
}

.input-border-2::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #666;
  opacity: 1;
}

.input-border-2:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #666;
}

.input-border-2:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #666;
}

.input-border-3,
.input-border-5 {
  line-height: 48px;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 15px;
  color: #666;
}

.input-border-3::-webkit-input-placeholder,
.input-border-5::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #666;
}

.input-border-3:-moz-placeholder,
.input-border-5:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #666;
  opacity: 1;
}

.input-border-3::-moz-placeholder,
.input-border-5::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #666;
  opacity: 1;
}

.input-border-3:-ms-input-placeholder,
.input-border-5:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #666;
}

.input-border-3:-ms-input-placeholder,
.input-border-5:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #666;
}

.input-border-4,
.textarea-border-4,
.input-border-6,
.textarea-border-6 {
  line-height: 46px;
  border-color: #e5e5e5;
  color: #999;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

.input-border-4::-webkit-input-placeholder,
.textarea-border-4::-webkit-input-placeholder,
.input-border-6::-webkit-input-placeholder,
.textarea-border-6::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #999;
}

.input-border-4:-moz-placeholder,
.textarea-border-4:-moz-placeholder,
.input-border-6:-moz-placeholder,
.textarea-border-6:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  opacity: 1;
}

.input-border-4::-moz-placeholder,
.textarea-border-4::-moz-placeholder,
.input-border-6::-moz-placeholder,
.textarea-border-6::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  opacity: 1;
}

.input-border-4:-ms-input-placeholder,
.textarea-border-4:-ms-input-placeholder,
.input-border-6:-ms-input-placeholder,
.textarea-border-6:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999;
}

.input-border-4:-ms-input-placeholder,
.textarea-border-4:-ms-input-placeholder,
.input-border-6:-ms-input-placeholder,
.textarea-border-6:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #999;
}

.input-border-4:focus,
.textarea-border-4:focus,
.input-border-6:focus,
.textarea-border-6:focus {
  border-color: #ff97a4;
}

.input-border-4 + label, .textarea-border-4 + label {
  color: #999;
  position: absolute;
  margin-bottom: 0;
  left: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.textarea-border-4 + label {
  top: 26px;
}

.input-border-4 + label:after, .textarea-border-4 + label::after {
  content: ' *';
  color: red;
}

.input-border-4:invalid + label, .textarea-border-4:invalid + label {
  display: inline-block;
}

.input-border-4:valid + label, .textarea-border-4:valid + label {
  display: none;
}

.textarea-border-4 {
  min-height: 150px;
  padding: 12px 20px;
  line-height: -webkit-calc(27/15);
  line-height: -moz-calc(27/15);
  line-height: calc(27/15);
}

.input-border-5 {
  line-height: 52px;
  max-width: 213px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.input-border-6 {
  font-size: 13px;
  color: #666;
}

.input-border-6::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #666;
}

.input-border-6:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #666;
  opacity: 1;
}

.input-border-6::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #666;
  opacity: 1;
}

.input-border-6:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #666;
}

.input-border-6:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #666;
}

.textarea-border-6 {
  min-height: 203px;
  padding: 9px 20px;
  line-height: -webkit-calc(27/15);
  line-height: -moz-calc(27/15);
  line-height: calc(27/15);
  font-size: 13px;
}

.textarea-border-6::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #666;
}

.textarea-border-6:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #666;
  opacity: 1;
}

.textarea-border-6::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #666;
  opacity: 1;
}

.textarea-border-6:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #666;
}

.textarea-border-6:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #666;
}

.btn-submit-1 {
  line-height: 46px;
  background: #ff97a4;
  padding: 0 15px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  border-bottom-right-radius: 10px;
}

.btn-submit-1:hover {
  background: #f58d9a;
}

.btn-submit-2 {
  line-height: 48px;
  width: 48px;
  text-align: center;
  font-size: 15px;
  color: #666;
  background: transparent;
}

.au-input-group {
  margin-bottom: 23px;
  position: relative;
}

.au-input-group input[type="checkbox"] {
  vertical-align: middle;
}

.au-label,
.au-label-2 {
  color: #999;
  margin-bottom: 6px;
}

.au-label .required,
.au-label-2 .required {
  color: #ff6666;
}

.au-label-2 {
  color: #666;
}

.p-t-7 {
  padding-top: 7px;
}

.submit-remember {
  padding-top: 7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.submit-remember .au-input-group {
  margin-bottom: 0;
  margin-left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.submit-remember .au-input-group input[type="checkbox"] {
  width: 11px;
  height: 11px;
  margin-right: 6px;
}

.submit-remember .au-input-group label {
  margin-bottom: 0;
}

.au-checkbox-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 17px;
  margin-bottom: 10px;
}

.au-checkbox-group input[type="checkbox"] {
  width: 14px;
  height: 13px;
  margin-right: 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #ccc;
}

.au-checkbox-group label {
  margin: 0;
}

.au-checkbox-group.m-b-47 {
  margin-bottom: 47px;
}

.au-radio-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.au-radio-group input[type='radio'] {
  width: 14px;
  height: 13px;
  margin-right: 9px;
}

.au-radio-group label {
  margin: 0;
  font-size: 15px;
  color: #666;
}

.p-b-67 {
  padding-bottom: 67px;
}

/* ==========================================================================
   #HEADER
   ========================================================================== */

.mLogo {max-height:33px;}
.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  z-index: 9999;
}

.header--fixed .header-navbar__item > a {
  padding: 17px 11px;
}

.header-landing {
  margin-top: 64px;
  position: absolute;
  left: 0;
  right: 0;
}

.header-landing .header__bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 575px) {
  .header-landing {
    margin-top: 35px;
  }
  .header-landing .logo {
    margin-bottom: 20px;
  }
  .header-landing .header__bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.header__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-navbar__item {
  display: inline-block;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing:-0.05em;
}

.header-navbar__item:hover > a {
  color: #fff;
}

.header-navbar__item:hover > a .bg-link::after {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

.header-navbar__item > a {
  display: inline-block;
  color: #333;
  padding: 10px 11px;
}

.header-navbar__item > a.p-r-0 {
  padding-right: 0;
}

.header-navbar__item .bg-link {
  position: relative;
  padding: 0 15px;
  display: inline-block;
  z-index: 9;
}

.header-navbar__item .bg-link::after {
  content: '';
  display: inline-block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #ff97a4;
  position: absolute;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  z-index: -1;
  background: #ff97a4;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  -moz-transition: transform 0.4s ease, -moz-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease, -moz-transform 0.4s ease, -o-transform 0.4s ease;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
}

.has-sub {
  position: relative;
}

.has-sub:hover > .header-navbar-child {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

.has-sub:hover > .header-navbar-child.second {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.header-navbar-child {
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  position: absolute;
  z-index: 999;
  min-width: 200px;
  background: #fff;
  border-top: 4px solid #ff97a4;
  padding: 19px 0;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  border-bottom-right-radius: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-navbar-child li {
  text-transform: capitalize;
  font-size: 15px;
}

.header-navbar-child li a {
  color: #666;
  display: block;
  padding: 4px 30px;
}

.header-navbar-child li a:hover {
  color: #ff97a4;
}

.header-navbar-child.first {
  top: 100%;
  left: 0;
}

.header-navbar-child.first.is-left {
  right: 0;
  left: auto;
}

.header-navbar-child.second {
  left: 100%;
  top: -21px;
}

.header-navbar-child.second.is-left {
  right: 100%;
  left: auto;
}

.header-navbar-child .has-sub > a {
  position: relative;
}

.header-navbar-child .has-sub > a::after {
  content: '\f2fb';
  font-family: "Material-Design-Iconic-Font";
  display: inline-block;
  line-height: 36px;
  width: 36px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 13px;
}

.header-2 {
	background: #eee;
	border-top: 3px solid #ff97a4;
}

.header-2 .header__content {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  
}

.header-2 .header-navbar__item > a {
  padding-bottom: 10px;
}

.header-2 .header--fixed .header-navbar__item > a {
  padding: 17px 11px;
}

.header-mobile {
  position: relative;
}

.header-mobile .header-mobile__bar {
  padding: 15px 0;
}

.header-mobile .hamburger {
  width: 36px;
  height: 36px;
  padding: 0;
  line-height: 1;
  vertical-align: top;
  background: #fff;
}

.header-mobile .hamburger .hamburger-box {
  width: 20px;
  height: 15px;
}

.header-mobile .hamburger .hamburger-box .hamburger-inner {
  width: 20px;
  height: 2px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.header-mobile .hamburger .hamburger-box .hamburger-inner:before {
  width: 20px;
  height: 2px;
  top: 6px;
}

.header-mobile .hamburger .hamburger-box .hamburger-inner:after {
  top: 12px;
  width: 20px;
  height: 2px;
}

.header-mobile .navbar-mobile {
  display: none;
}

.header-mobile .navbar-mobile .navbar-mobile__list {
  background: #fff;
  border-top: 4px solid #ff97a4;
}

.header-mobile .navbar-mobile .navbar-mobile__list > li > a {
  padding-left: 15px !important;
}

.header-mobile .navbar-mobile .navbar-mobile__list li a {
  color: #333;
  display: block;
  padding: 10px 15px;
  padding-right: 25px;
  padding-left: 0;
  border-bottom: 1px solid #e6e6e6;
  text-transform: capitalize;
  line-height: inherit;
}

.header-mobile .navbar-mobile .navbar-mobile__list li a:hover {
  color: #ff97a4;
}

.header-mobile .navbar-mobile .navbar-mobile__list li.has-sub > a:after {
  content: '\f2fb';
  font-family: "Material-Design-Iconic-Font";
  float: right;
  font-size: 16px;
  line-height: 28px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-mobile .navbar-mobile .navbar-mobile__list li.has-sub > a.active::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.header-mobile .navbar-mobile .navbar-mobile__child {
  padding-left: 35px;
  display: none;
}

/* ==========================================================================
   #MEDIA
   ========================================================================== */
/**
 * Place any image- and text-like content side-by-side, as per:
 * http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 */
.media {
  display: block;
  position: relative;
}

.media:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.media__img {
  display: block;
}

.media__img > img {
  display: block;
}

.media__img--slide {
  position: relative;
}

.media__img--slide .slick__wrap-content {
  position: relative;
}

.media__img--slide .slick__dots {
  position: absolute;
  left: 50%;
  bottom: 25px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.media__img--slide .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -20px;
}

.media__img--slide .slick-next {
  right: 20px;
}

.media__img--slide .slick-prev {
  left: 20px;
}

.media__img--zoom {
  overflow: hidden;
}

.media__img--zoom > img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.media__img--zoom > img:hover {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.media__body {
  display: block;
  overflow: hidden;
}

.media__title {
  margin-bottom: 0;
}

.media__text {
  margin-bottom: 0;
}

.media__link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.media__overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.media__video {
  position: relative;
}

.media__video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.media__quote-info {
  font-size: 15px;
  color: #808080;
  display: block;
}

.media__quote-text {
  margin-bottom: 15px;
}

/* Media Beside */
.media--beside > .media__img {
  float: left;
}

.media--beside-reverse > .media__img {
  float: right;
}

/* Color text white on black background*/
.media--reverse .media__avatar,
.media--reverse .media__title,
.media--reverse .media__label,
.media--reverse .media__tag {
  color: #fff;
}

.media--reverse .media__avatar a,
.media--reverse .media__title a,
.media--reverse .media__label a,
.media--reverse .media__tag a {
  color: #fff;
}

.section-row {
  position: relative;
}

.row--no-padding {
  margin: 0 -7.5px;
}

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

.col-30,
.col-50,
.col-60,
.col-100 {
  padding: 0 10px;
}

.col-30 {
  width: -webkit-calc(100% / 3);
  width: -moz-calc(100% / 3);
  width: calc(100% / 3);
}

.col-50 {
  width: 50%;
}

.col-60 {
  width: -webkit-calc(200% / 3);
  width: -moz-calc(200% / 3);
  width: calc(200% / 3);
}

.col-100 {
  width: 100%;
}

@media (max-width: 575px) {
  .row-special {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .col-30,
  .col-50,
  .col-60,
  .col-100 {
    width: 100%;
  }
}

/* ==========================================================================
   #SECTIONS
   ========================================================================== */
.section {
  position: relative;
}

.overflow-h {
  overflow: hidden;
}

.section--h100 {
  height: -webkit-calc(100vh - 164px);
  height: -moz-calc(100vh - 164px);
  height: calc(100vh - 164px);
}

@media (max-width: 991px) {
  .section--h100 {
    height: -webkit-calc(100vh - 161px);
    height: -moz-calc(100vh - 161px);
    height: calc(100vh - 161px);
  }
}

@media (max-width: 767px) {
  .section--h100-nmobi {
    height: auto;
    padding: 80px 0;
  }
  .section--h100-nmobi .section__content2 {
    position: static;
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

.section--h850 {
  min-height: 850px;
}

.section--h850 .container,
.section--h850 .row,
.section--h850 .col-md-12,
.section--h850 .position-relative {
  min-height: 850px;
}

@media (max-width: 1199px) {
  .section--h850 {
    min-height: 700px;
  }
  .section--h850 .container,
  .section--h850 .row,
  .section--h850 .col-md-12,
  .section--h850 .position-relative {
    min-height: 700px;
  }
}

@media (max-width: 991px) {
  .section--h850 {
    min-height: 620px;
  }
  .section--h850 .container,
  .section--h850 .row,
  .section--h850 .col-md-12,
  .section--h850 .position-relative {
    min-height: 620px;
  }
}

@media (max-width: 767px) {
  .section--h850 {
    min-height: 500px;
  }
  .section--h850 .container,
  .section--h850 .row,
  .section--h850 .col-md-12,
  .section--h850 .position-relative {
    min-height: 500px;
  }
}

@media (max-width: 575px) {
  .section--h850 {
    min-height: 400px;
  }
  .section--h850 .container,
  .section--h850 .row,
  .section--h850 .col-md-12,
  .section--h850 .position-relative {
    min-height: 400px;
  }
}

.section--h760 {
  min-height: 760px;
}

.section__content {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 14%;
}

.section__content2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* ==========================================================================
   #LIST-GRID
   ========================================================================== */
/**
 * The list-GRID object simply displays a list of items grid has border.
 */
.table-grid {
  table-layout: fixed;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .table-grid {
    display: block;
  }
  .table-grid td {
    width: 100%;
  }
  .table-grid tbody, .table-grid tr, .table-grid td {
    display: block;
  }
  .table-grid td {
    margin-bottom: 30px;
  }
}

.table-grid__item {
  padding: 0;
  border: 2px solid #e6e6e6;
}

/* ==========================================================================
   #TABLE
   ========================================================================== */
/**
 * A simple object for manipulating the structure of HTML `table`s.
 */
.table {
  width: 100%;
}

.table th,
.table td {
  border: none;
  vertical-align: middle;
}

.table thead th {
  border: none;
  vertical-align: middle;
}

.table--fixed {
  table-layout: fixed;
}

.table__title {
  display: block;
  color: #333;
}

.table-schedule {
  border-spacing: 2px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.table-schedule td {
  border: 1px solid #eee;
}

.table-schedule .table-schedule-th-1 {
  background: #ff97a4;
  position: relative;
  padding: 20px 25px;
  width: 100%;
}

.table-schedule .table-schedule-th-1__inner {
  text-align: center;
}

.table-schedule .table-schedule-th-1__inner .arrow {
  position: absolute;
  font-size: 26px;
  color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
}

.table-schedule .table-schedule-th-1__inner .arrow:hover {
  color: #7dd0f8;
}

.table-schedule .table-schedule-th-1__inner .prev {
  left: 24px;
}

.table-schedule .table-schedule-th-1__inner .next {
  right: 24px;
}

.table-schedule .table-schedule-th-2 th {
  background: #ff97a4;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid #e47b88;
  padding: 12px 15px;
  width: 14.28%;
}

@media (max-width: 991px) {
  .table-schedule .table-schedule-th-2 th {
    font-size: 18px;
  }
}

.table-schedule tbody tr td {
  padding: 14px 10px;
  width: 14.28%;
  text-align: center;
}

.table-schedule tbody tr td:first-child {
  background: #f9f9f9;
  text-align: center;
  font-size: 18px;
  color: #333;
  padding-left: 6px;
  padding-right: 6px;
}

@media (max-width: 991px) {
  .table-schedule tbody tr td:first-child {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .table-schedule {
    display: none;
  }
}

/* 테이블 추가 */

.table-schedule2 {
  border-spacing: 2px;
  /*
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  */
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.table-schedule2 td {
  border: 1px solid #333;
}

.table-schedule2 .table-schedule-th-1 {
  background: #ff97a4;
  position: relative;
  padding: 20px 25px;
  width: 100%;
}

.table-schedule2 .table-schedule-th-1__inner {
  text-align: center;
}

.table-schedule2 .table-schedule-th-1__inner .arrow {
  position: absolute;
  font-size: 26px;
  color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
}

.table-schedule2 .table-schedule-th-1__inner .arrow:hover {
  color: #7dd0f8;
}

.table-schedule2 .table-schedule-th-1__inner .prev {
  left: 24px;
}

.table-schedule2 .table-schedule-th-1__inner .next {
  right: 24px;
}

.table-schedule2 .table-schedule-th-2 th {
  background: #ff97a4;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #e47b88;
  padding: 12px 15px;
  width: 14.28%;
}

@media (max-width: 991px) {
  .table-schedule2 .table-schedule-th-2 th {
    font-size: 18px;
  }
}

.table-schedule2 tbody tr td {
  padding: 10px 10px;
  width: 25%;
  text-align: center;
  color: #fff;
}

.table-schedule2 tbody tr td:first-child {
  
}

@media (max-width: 991px) {
  .table-schedule2 tbody tr td:first-child {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .table-schedule2 {
    display: none;
  }
}

.table-schedule-item-wrap.violet {
  background: #8fa6f3;
}

.table-schedule-item-wrap.blue {
  background: #4fd3c6;
}

.table-schedule-item-wrap.yellow {
  background: #f6b851;
}

.table-schedule-item-wrap.pink {
  background: #e88ddf;
}

.table-schedule-item-wrap.blue2 {
  background: #76c6ed;
}

.table-schedule-item-wrap.green {
  background: #b0d667;
}

.table-schedule-item {
  text-align: center;
  max-width: 145px;
  color: #fff;
  margin: 0 auto;
}

.table-schedule-item .title {
  font-size: 18px;
  margin-top: 2px;
  margin-bottom: 12px;
}

.table-schedule-item .text {
  font-size: 13px;
  line-height: -webkit-calc(20/13);
  line-height: -moz-calc(20/13);
  line-height: calc(20/13);
}

@media (max-width: 991px) {
  .table-schedule-item .time {
    font-size: 14px;
  }
  .table-schedule-item .title {
    font-size: 17px;
  }
}

.table-schedule--small {
  display: none;
}

.table-schedule--small .title {
  margin-bottom: 20px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .table-schedule--small {
    display: block;
  }
}

.table-cart {
  margin-bottom: 0;
}

.table-cart .product-thumbnail__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.table-cart .product-thumbnail__inner .img-cart {
  margin-right: 19px;
}

.table-cart .product-thumbnail__inner .product-name {
  width: -webkit-calc(100% - 119px);
  width: -moz-calc(100% - 119px);
  width: calc(100% - 119px);
}

.table-cart .product-name {
  font-size: 18px;
  color: #333;
  font-weight: 700;
}

.table-cart .product-name:hover {
  color: #ff97a4;
}

.table-cart .remove {
  font-size: 17px;
  color: #999;
}

.table-cart .remove:hover {
  color: #ff97a4;
}

.table-cart .product-remove {
  width: 7%;
}

.table-cart .product-thumbnail {
  width: 33%;
}

.table-cart .product-price {
  width: 20%;
}

.table-cart .product-quantity {
  width: 20%;
}

.table-cart .product-subtotal {
  width: 20%;
}

.table-cart tbody tr {
  border-bottom: 1px solid #e5e5e5;
}

.table-cart tbody td {
  vertical-align: middle;
  padding: 30px 5px;
}

.table-cart tbody td::before {
  content: attr(data-title) ": ";
  font-weight: 700;
  float: left;
  display: none;
}

.table-cart tbody td.product-remove::before {
  content: '';
}

.table-cart tbody td.product-thumbnail {
  padding-left: 0;
}

.table-cart tbody td.product-remove {
  padding-left: 12px;
}

.table-cart .table-cart__title {
  border-bottom: 1px solid #e5e5e5;
}

.table-cart .table-cart__title th {
  padding: 7px 5px;
  font-size: 20px;
  color: #333;
  font-weight: 600;
}

.table-cart .table-cart__title th.product-remove {
  padding-left: 12px;
}

.table-cart .table-cart__title th.product-thumbnail {
  padding-left: 45px;
  width: 400px;
}

.table-cart .table-cart__footer td {
  padding: 40px 0;
}

.table-cart .table-cart__footer .table-cart__footer-inner:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.table-cart .table-cart__footer .coupon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
}

.table-cart .table-cart__footer .coupon button {
  width: -webkit-calc(100% - 233px);
  width: -moz-calc(100% - 233px);
  width: calc(100% - 233px);
}

@media (max-width: 991px) {
  .table-cart .product-thumbnail__inner {
    display: block;
  }
  .table-cart thead {
    display: none;
  }
  .table-cart tbody .img-cart {
    display: none;
  }
  .table-cart tbody tr {
    display: block;
    border-color: #e5e5e5;
  }
  .table-cart tbody tr td {
    width: 100%;
    display: block;
    text-align: right;
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
  }
  .table-cart tbody tr td::before {
    display: block;
  }
  .table-cart tbody tr td.product-thumbnail {
    padding: 0 15px;
  }
  .table-cart tbody tr td.product-quantity {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 60px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .table-cart tbody tr td:nth-child(odd) {
    background: #f7f7f7;
  }
  .table-cart .product-remove,
  .table-cart .product-thumbnail,
  .table-cart .product-price,
  .table-cart .product-quantity,
  .table-cart .product-subtotal {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .table-cart .table-cart__footer .coupon {
    display: block;
    float: none;
  }
  .table-cart .table-cart__footer .coupon .input-border-5 {
    max-width: unset;
    width: 100%;
    margin-bottom: 20px;
  }
  .table-cart .table-cart__footer .table-cart__footer-inner {
    display: block;
  }
  .table-cart .table-cart__footer .table-cart__footer-inner .au-btn-3 {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

.cart-subtotal .cart-subtotal__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
}

.cart-subtotal .title {
  width: 155px;
  font-weight: 600;
}

.cart-subtotal .value {
  width: -webkit-calc(100% - 155px);
  width: -moz-calc(100% - 155px);
  width: calc(100% - 155px);
}

.cart-subtotal .cart-subtotal__ship {
  padding: 20px 0;
}

@media (max-width: 767px) {
  .cart-subtotal .cart-subtotal__item {
    display: block;
  }
  .cart-subtotal .value {
    width: 100%;
  }
  .cart-subtotal .link-ship {
    display: none;
  }
  .cart-subtotal .cart-subtotal__ship {
    display: block;
  }
}

.table-checkout {
  margin-bottom: 0;
}

.table-checkout tbody tr {
  border-bottom: 1px solid #e5e5e5;
}

.table-checkout tbody td {
  padding: 0;
  padding: 30px 0;
}

.table-checkout tbody tr:last-child {
  border: none;
}

.table-checkout .product-thumbnail .product-thumbnail__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.table-checkout .product-thumbnail .product-thumbnail__inner .img-cart {
  margin-right: 20px;
}

.table-checkout .product-thumbnail .product-thumbnail__inner .right {
  width: -webkit-calc(100% - 120px);
  width: -moz-calc(100% - 120px);
  width: calc(100% - 120px);
}

.table-checkout .product-thumbnail .product-thumbnail__inner .product-name {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 5px;
}

.table-checkout .product-thumbnail .product-thumbnail__inner .product-name:hover {
  color: #ff97a4;
}

.table-checkout .product-thumbnail .product-thumbnail__inner .product-quantity {
  font-size: 18px;
  line-height: 1;
}

.table-checkout .product-total {
  text-align: right;
  font-size: 18px;
}

.table-checkout tfoot {
  padding: 30px 0;
  border-bottom: 1px solid #e5e5e5;
}

.table-checkout tfoot tr:last-child td {
  padding-bottom: 30px;
}

.table-checkout tfoot td {
  padding: 2px 0;
  padding-bottom: 12px;
  line-height: -webkit-calc(24/13);
  line-height: -moz-calc(24/13);
  line-height: calc(24/13);
}

.table-checkout tfoot td span:first-child {
  color: #333;
  font-weight: 600;
}

.table-checkout tfoot td .woocommerce-Price-amount {
  color: #333;
}

.table-checkout tfoot td .title {
  margin-right: 14px;
}

.table-checkout tfoot td .text {
  font-size: 13px;
}

/* ==========================================================================
   #TOP CONTACT
   ========================================================================== */
.top-contact {
  background: #333;
  padding: 7.5px 0;
}

.top-contact-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-contact__item {
  color: #ccc;
  font-size: 12px;
  margin-right: 20px;
  display: inline-block;
}

.top-contact__item > span {
  margin-right: 11px;
}

@media (max-width: 767px) {
  .top-contact-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .top-contact__item {
    display: block;
    margin-right: 0;
    text-align: center;
  }
  .top-contact .list-social {
    text-align: center;
  }
}

.top-contact-2 {
  padding-top: 40px;
  padding-bottom: 7px;
}

.top-contact-2 .top-contact__item {
  color: #666;
}

.top-contact-2 .list-social li a {
  color: #666;
}

.top-contact-2 .list-social .seprator span {
  color: #666;
}

.top-contact-2 .ic-fb:hover {
  color: #3b5998;
}

.top-contact-2 .ic-twi:hover {
  color: #00aced;
}

.top-contact-2 .ic-insta:hover {
  color: #e1306c;
}

.top-contact-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-contact-col {
  width: -webkit-calc(100%/3);
  width: -moz-calc(100%/3);
  width: calc(100%/3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-contact-col--alig-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top-contact-col--alig-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991px) {
  .top-contact-col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .top-contact-2 {
    background: #f8f8f8;
  }
  .top-contact-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .top-contact-col {
    width: 100%;
    display: block;
  }
  .top-contact-col--alig-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.video {
  width: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  position: relative;
}

.video .video__icon {
  width: 50px;
  height: 50px;
  background: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.video .video__icon:before {
  font-size: 60px;
  color: #7dd0f8;
}

.video .video__cover {
  height: 0;
  opacity: 0;
  position: absolute;
  display: block;
}

.video .video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.video .video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.video .video__overlay:hover .video__icon--raw {
  background: none;
}

.video .video__content {
  height: 100%;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 4s;
  -o-transition: all 4s;
  -moz-transition: all 4s;
  transition: all 4s;
}

.video .video__content iframe {
  display: block;
}

.video .video__icon--raw {
  width: auto;
  height: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: none;
  border: none;
}

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
/**
 * Page-level constraining and wrapping elements.
 */
.page-wrapper {
  overflow: hidden;
}

.wrap {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 99;
}

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

.wrap--left-auto {
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 991px) {
  .wrap--left-auto {
    margin-right: auto;
  }
}

.wrap--right-auto {
  margin-right: auto;
  margin-left: 0;
}

.wrap--w420 {
  max-width: 530px;
}

.wrap--w530 {
  max-width: 530px;
}

.wrap--w540 {
  max-width: 540px;
}

.wrap--w570 {
  max-width: 570px;
}

.wrap--w587 {
  max-width: 587px;
}

.wrap--w600 {
  max-width: 600px;
}

.wrap--w625 {
  max-width: 625px;
}

.wrap--w630 {
  max-width: 630px;
}

.wrap--w680 {
  max-width: 680px;
}

.wrap--w700 {
  max-width: 700px;
}

.wrap--w720 {
  max-width: 720px;
}

.wrap--w740 {
  max-width: 740px;
}

.wrap--w768 {
  max-width: 768px;
}

.wrap--w770 {
  max-width: 770px;
}

.wrap--w800 {
  max-width: 800px;
}

.wrap--w820 {
  max-width: 820px;
}

.wrap--w830 {
  max-width: 830px;
}

.wrap--w850 {
  max-width: 850px;
}

.wrap--w860 {
  max-width: 850px;
}

.wrap--w870 {
  max-width: 870px;
}

.wrap--w880 {
  max-width: 880px;
}

.wrap--w900 {
  max-width: 900px;
}

.wrap--w940 {
  max-width: 940px;
}

.wrap--w970 {
  max-width: 970px;
}

.wrap--w990 {
  max-width: 990px;
}

.wrap--w1100 {
  max-width: 1100px;
}

.wrap--w1170 {
  max-width: 1170px;
}

.wrap--w1330 {
  max-width: 1330px;
}

.wrap--w1375 {
  max-width: 1375px;
}

.wrap--w1390 {
  max-width: 1390px;
}

.wrap--w1400 {
  max-width: 1400px;
}

.wrap--w1425 {
  max-width: 1425px;
}

.wrap--w1530 {
  max-width: 1530px;
}

.wrap--w1575 {
  max-width: 1575px;
}

.wrap--w1570 {
  max-width: 1570px;
}

.wrap--w1590 {
  max-width: 1590px;
}

.wrap--w1620 {
  max-width: 1620px;
}

.wrap--w1630 {
  max-width: 1630px;
}

.wrap--w1680 {
  max-width: 1680px;
}

.wrap--w1760 {
  max-width: 1760px;
}

.wrap--w1774 {
  max-width: 1774px;
}

.wrap--w1790 {
  max-width: 1790px;
}

.wrap--w1810 {
  max-width: 1810px;
}

.wrap--w1820 {
  max-width: 1820px;
}

.wrap--w1850 {
  max-width: 1850px;
}

.banner {
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  height: 505px;
  margin-bottom: 30px;
}

.banner .banner__img {
  position: absolute;
}

.banner-1 {
  background: #f6b851;
}

.banner-1 .banner__img {
  bottom: -100px;
  left: -10px;
}

.banner-1 .banner__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 50px;
  text-align: center;
}

.banner-1 .banner__content .banner__title {
  font-family: "Lobster Two", Arial, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 38px;
  margin-top: 11px;
  margin-bottom: 35px;
}

.banner-1 .banner__content .banner__title-sub {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .3em;
  margin-bottom: -4px;
}

@media (max-width: 767px) {
  .banner-1 .banner__content {
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.banner-2 {
  background: #ff97a4;
}

.banner-2 .banner__img {
  bottom: -25px;
  left: -42px;
}

.banner-2 .banner__content {
  text-align: center;
  padding-top: 65px;
}

.banner-2 .banner__title-sub {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2em;
  margin-bottom: 13px;
}

.banner-2 .banner__title {
  font-size: 27px;
  text-transform: uppercase;
  font-family: "Chelsea Market", Arial, "Helvetica Neue", sans-serif;
  font-weight: 400;
}

.block-images-item {
  margin-bottom: 20px;
}

.blog-single {
  padding-right: 10px;
}

@media (max-width: 991px) {
  .blog-single {
    padding-right: 0;
  }
}

.blog-single__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.box-info {
  margin-bottom: 50px;
}

.box-info .box__icon {
  margin: 0 auto;
  margin-bottom: 35px;
}

.box-info .box__body {
  text-align: center;
}

.box-info .box__body span {
  display: block;
}

.box-info .box__body .title {
  margin-bottom: 10px;
}

.box-info-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 17px;
}

.box-info-2 .box__head {
  width: 45px;
}

.box-info-2 .box-icon {
  font-size: 20px;
  color: #666;
  margin-top: -2px;
}

.box-info-2 .box__body {
  width: -webkit-calc(100% - 45px);
  width: -moz-calc(100% - 45px);
  width: calc(100% - 45px);
}

.box-info-2 .box__body .title {
  text-transform: capitalize;
  font-size: 18px;
}

.box-intro-wrap {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.box-intro {
  padding: 50px 55px;
  min-height:520px;
  margin-right: 10px;
}

.box-intro.black {
  background: #000;
}

.box-intro.blue {
  background: #7dd0f8;
}

.box-intro.orange {
  background: #f5b380;
}

.box-intro.violet {
  background: #95adfa;
}

.box-intro.pink {
  background: #ff97a4;
}

.box-intro .box__icon {
  margin: 0 auto;
  margin-bottom: 35px;
}

.box-intro .box__body {
  text-align: center;
  color: #fff;
}

.box-intro ul {
  padding-left:20px;
}

.box-intro .box__body .title {
  margin-bottom: 22px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .box-intro {
    padding: 50px 35px;
  }
}

@media (max-width: 767px) {
  .box-intro {
    padding: 50px 35px;
  }
}

.box-pricing {
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.box-pricing .box__head {
  text-align: center;
  padding: 37px 30px;
  padding-bottom: 30px;
  color: #fff;
  overflow: hidden;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  border-top-right-radius: 10px;
}

.box-pricing .box-pricing__title {
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.box-pricing .box-pricing__price {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

.box-pricing .box-pricing__price::before {
  content: '$';
}

.box-pricing .box-pricing__unit {
  max-width: 170px;
  margin: 0 auto;
  text-align: right;
  line-height: 1;
  margin-top: 3px;
}

.box-pricing .box-pricing__unit::before {
  content: '/ Per ';
}

.box-pricing .box__body {
  border: 2px solid transparent;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  border-bottom-right-radius: 10px;
  padding: 35px 30px;
  padding-bottom: 38px;
  text-align: center;
}

.box-pricing .box__body .au-btn {
  margin-top: 24px;
}

.box-pricing.blue .box__head {
  background: #63e3d6;
}

.box-pricing.blue .box__body {
  border-color: #63e3d6;
}

.box-pricing.yellow .box__head {
  background: #f6b851;
}

.box-pricing.yellow .box__body {
  border-color: #f6b851;
}

.box-pricing.violet .box__head {
  background: #95adfa;
}

.box-pricing.violet .box__body {
  border-color: #95adfa;
}

.box-program {
  margin-bottom: 55px;
}

.box-program .box__head {
  padding: 0 45px;
}

.box-program .box__head-bg {
  position: relative;
}

.box-program .box__head-bg > img {
  width: 100%;
}

.box-program .box__head-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.box-program .box__body {
  text-align: center;
}

.box-program .box__title {
  margin-top: 25px;
}

.box-program-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}

.box-program-2 .box__title {
  margin-bottom: 10px;
}

.box-program-2 .box__head-bg {
  position: relative;
}

.box-program-2 .box__head-bg > img {
  width: 100%;
}

.box-program-2 .box__head-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.box-program-2 .box__head {
  margin-right: 20px;
}

.box-program-2.icon-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.box-program-2.icon-right .box__body {
  text-align: right;
}

.box-program-2.icon-right .box__head {
  margin-left: 20px;
  margin-right: 0;
}

/* ==========================================================================
   #BOX WELCOME
   ========================================================================== */
.box-welcome {
  margin-bottom: 50px;
}

.box-welcome .box__head {
  padding: 0 50px;
  margin-bottom: 25px;
}

.box-welcome .box__body {
  text-align: center;
  padding: 0 15px;
}

.box-welcome .box__title {
  text-transform: capitalize;
  margin-bottom: 12px;
  font-size: 22px;
}

.box-welcome .box__title a {
  color: #333;
}

.box-welcome .box__title a:hover {
  color: #ff97a4;
}

.au-card__head {
  text-align: center;
  padding: 15px;
}

.au-card__body {
  padding: 0 25px;
  padding-top: 23px;
  padding-bottom: 3px;
}

.au-card {
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 2px solid transparent;
  margin-bottom: 30px;
}

.au-card.blue {
  border-color: #63e3d6;
}

.au-card.blue .au-card__head {
  background: #63e3d6;
}

.au-card.yellow {
  border-color: #f6b851;
}

.au-card.yellow .au-card__head {
  background: #f6b851;
}

.au-card-2 {
  padding: 30px;
  margin: 30px 0;
}

.au-card--border-dash {
  border: 1px dashed #e5e5e5;
}

.contact-info-content {
  padding-left: 70px;
}

@media (max-width: 767px) {
  .contact-info-content {
    padding-left: 30px;
  }
}

.contact-info-wrap:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.contact-info-col {
  width: 50%;
  float: left;
}

@media (max-width: 767px) {
  .contact-info-col {
    width: 100%;
    float: none;
  }
}

/* ==========================================================================
   #CTA FORM
   ========================================================================== */
.cta-form {
  border: 10px solid #f2f2f2;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.cta-form .cta-form__title {
  font-family: "Chelsea Market", Arial, "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  font-size: 25px;
  line-height: -webkit-calc(42/25);
  line-height: -moz-calc(42/25);
  line-height: calc(42/25);
  text-align: center;
}

.cta-form-inner {
  padding: 85px 30px;
  padding-bottom: 55px;
}

.cta-form__top-bg {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 160px;
  background: url("../images/icon/flag.png") center center/cover no-repeat;
}

@media (min-width: 576px) and (max-width: 991px) {
  .cta-form__top-bg {
    display: none;
  }
}

.cta-form__bot-bg {
  padding: 0 13px;
  padding-bottom: 10px;
  text-align: center;
}

.cta-wrap {
  position: relative;
}

.cta-1 {
  overflow: hidden;
}

.cta-1 .cta__body {
  text-align: center;
  color: #fff;
}

.cta-1 .cta__title {
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  font-family: "Chelsea Market", Arial, "Helvetica Neue", sans-serif;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cta-1 .cta__text {
  margin-bottom: 40px;
}

.cta-1 .cta__img {
  position: absolute;
  top: -50px;
}

@media (max-width: 767px) {
  .cta-1 .cta__img {
    position: static;
    text-align: center;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .cta-1 .wrap--w625 {
    width: 100%;
    max-width: 100%;
  }
}

.cta-2 {
  position: relative;
}

.cta-2 .cta__img {
  position: absolute;
  left: 8%;
  bottom: -121px;
}

.cta-2 .cta__title {
  font-size: 45px;
  color: #fff;
  font-family: "Chelsea Market", Arial, "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}

.cta-2 .cta-wrap {
  text-align: center;
}

.cta-2 .cta__text {
  color: #fff;
  margin-bottom: 65px;
}

.cta-2 .au-countdown {
  text-align: center;
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .cta-2 {
    left: 0;
  }
}

@media (max-width: 767px) {
  #map {
    height: 545px;
  }
}

#map2 {
  height: 560px;
}

.blog-intro {
  padding-right: 25px;
}

.blog-intro .section-heading {
  margin-bottom: 55px;
}

.blog-intro .blog-intro__text {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .blog-intro {
    padding-right: 0;
  }
}

.media-blog,
.media-blog-2,
.media-blog-4,
.media-blog-6 {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.media-blog .media__img,
.media-blog-2 .media__img,
.media-blog-4 .media__img,
.media-blog-6 .media__img {
  overflow: hidden;
  position: relative;
}

.media-blog .media__img img,
.media-blog-2 .media__img img,
.media-blog-4 .media__img img,
.media-blog-6 .media__img img {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.media-blog .media__img:hover img,
.media-blog-2 .media__img:hover img,
.media-blog-4 .media__img:hover img,
.media-blog-6 .media__img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.media-blog .media__img a,
.media-blog-2 .media__img a,
.media-blog-4 .media__img a,
.media-blog-6 .media__img a {
  display: block;
}

.media-blog .media__body,
.media-blog-2 .media__body,
.media-blog-4 .media__body,
.media-blog-6 .media__body {
  text-align: center;
  padding: 25px 45px;
}

.media-blog .media__title,
.media-blog-2 .media__title,
.media-blog-4 .media__title,
.media-blog-6 .media__title {
  margin-bottom: 4px;
}

.media-blog .media__info,
.media-blog-2 .media__info,
.media-blog-4 .media__info,
.media-blog-6 .media__info {
  margin-bottom: 15px;
}

.media-blog .media__info .author::before,
.media-blog-2 .media__info .author::before,
.media-blog-4 .media__info .author::before,
.media-blog-6 .media__info .author::before {
  content: "By ";
}

.media-blog .media__info .author::after,
.media-blog-2 .media__info .author::after,
.media-blog-4 .media__info .author::after,
.media-blog-6 .media__info .author::after {
  content: "/";
  display: inline-block;
  margin: 0 8px;
}

.media-blog .media__info .author a,
.media-blog-2 .media__info .author a,
.media-blog-4 .media__info .author a,
.media-blog-6 .media__info .author a {
  color: #666;
}

.media-blog .media__info .author a:hover,
.media-blog-2 .media__info .author a:hover,
.media-blog-4 .media__info .author a:hover,
.media-blog-6 .media__info .author a:hover {
  color: #ff97a4;
}

.media-blog .media__info .cmt,
.media-blog-2 .media__info .cmt,
.media-blog-4 .media__info .cmt,
.media-blog-6 .media__info .cmt {
  color: #666;
}

.media-blog .media__info .cmt::after,
.media-blog-2 .media__info .cmt::after,
.media-blog-4 .media__info .cmt::after,
.media-blog-6 .media__info .cmt::after {
  content: " Comment";
}

.media-blog .media__info .cmt:hover,
.media-blog-2 .media__info .cmt:hover,
.media-blog-4 .media__info .cmt:hover,
.media-blog-6 .media__info .cmt:hover {
  color: #ff97a4;
}

.media__date {
  height: 79px;
  width: 79px;
  background: #7dd0f8;
  padding-bottom: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-right-radius: 5px;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  left: 20px;
}

.media__date .day {
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  display: block;
}

.media__date .month {
  line-height: 1;
  display: block;
  margin-top: 2px;
}

.media__date-inner {
  background: #9bdaf8;
  height: 100%;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-right-radius: 5px;
  padding-top: 10px;
}

.media-blog-2 {
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.media-blog-3 {
  margin-bottom: 50px;
}

.media-blog-3 .media__img a {
  display: block;
  overflow: hidden;
}

.media-blog-3 .media__img a img {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.media-blog-3 .media__img a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.media-blog-3 .media__title {
  margin-top: 33px;
  margin-bottom: 18px;
}

.media-blog-3 .link-learn-more {
  margin-top: 25px;
}

.media-blog-4,
.media-blog-6 {
  margin-bottom: 40px;
}

.media-blog-4 .media__body,
.media-blog-6 .media__body {
  text-align: left;
  padding: 0;
  padding-top: 28px;
  padding-bottom: 25px;
}

.media-blog-4 .media__date,
.media-blog-6 .media__date {
  left: 30px;
}

.media-blog-4 .media__title,
.media-blog-6 .media__title {
  margin-bottom: 7px;
}

.media-blog-4 .media__info,
.media-blog-6 .media__info {
  margin-bottom: 20px;
}

.media-blog-4 .media__footer,
.media-blog-6 .media__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.media-blog-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.media-blog-5 .media__img {
  width: 100px;
  margin-right: 15px;
}

.media-blog-5 .media__img a {
  display: block;
}

.media-blog-5 .img-radius {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.media-blog-5 .img-radius img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.media-blog-5 .media__body {
  width: -webkit-calc(100% - 115px);
  width: -moz-calc(100% - 115px);
  width: calc(100% - 115px);
}

.media-blog-5 .media__time {
  font-size: 13px;
  margin-bottom: 7px;
}

.media-blog-5 .media__title {
  font-size: 17px;
  font-weight: 600;
}

.media-blog-6 {
  margin-bottom: 50px;
}

.media-blog-6 .media__body {
  padding-bottom: 20px;
}

.media-author {
  background: #f7f7f7;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  padding: 35px;
  padding-top: 40px;
}

.media-author .img-circle-border {
  margin: 0 auto;
}

.media-author .title {
  margin-bottom: 3px;
}

.media-author .media__img {
  margin-bottom: 15px;
}

.media-author .media__body {
  text-align: center;
}

.media-author .sign {
  margin-top: 13px;
}

.media-author-2 {
  background: #f7f7f7;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  padding: 40px;
  z-index: 9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.media-author-2 .media__circle {
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  height: 560px;
  width: 560px;
  background: #7dd0f8;
  position: absolute;
  z-index: -9;
  left: -310px;
  top: -100px;
}

.media-author-2 .media__img {
  margin-right: 90px;
}

.media-author-2 .title {
  margin-bottom: 2px;
}

.media-author-2 .list-social {
  margin-left: -6px;
}

@media (max-width: 991px) {
  .media-author-2 .media__img {
    margin-right: 40px;
  }
  .media-author-2 .media__circle {
    left: -334px;
    top: -91px;
  }
}

@media (max-width: 575px) {
  .media-author-2 {
    padding: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .media-author-2 .media__img {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .media-author-2 .media__circle {
    left: -6%;
    top: -335px;
  }
}

.media-event-1 {
  padding: 25px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 40px;
}

.media-event-1 .media__body {
  background: #fff;
  padding: 0 65px;
  padding-top: 105px;
  padding-bottom: 36px;
  text-align: center;
  position: relative;
}

.media-event-1 .media__body .title {
  margin-bottom: 12px;
}

.media-event-1 .media__body .media__text {
  margin-top: 25px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .media-event-1 .media__body {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 991px) {
  .media-event-1 .time-map {
    display: block;
  }
}

.media-event-1 .time-map i {
  margin-right: 2px;
}

.media-event-1 .media__date {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.media-gradu,
.media-gradu-2,
.media-gradu-3 {
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin: 0 7.5px;
  margin-bottom: 15px;
}

.media-gradu .media__overlay,
.media-gradu-2 .media__overlay,
.media-gradu-3 .media__overlay {
  background: #ff97a4;
  padding: 20px;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  -moz-transition: opacity 0.35s, transform 0.35s, -moz-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s;
}

.media-gradu .media__body,
.media-gradu-2 .media__body,
.media-gradu-3 .media__body {
  z-index: 3;
  text-align: center;
  position: absolute;
  top: 50%;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  left: 0;
  right: 0;
}

.media-gradu .media__body .media__title,
.media-gradu-2 .media__body .media__title,
.media-gradu-3 .media__body .media__title {
  margin-bottom: 10px;
}

.media-gradu .media__tool,
.media-gradu-2 .media__tool,
.media-gradu-3 .media__tool {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 32px;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  -moz-transition: opacity 0.35s, transform 0.35s, -moz-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
}

.media-gradu .media__tool .au-icon,
.media-gradu-2 .media__tool .au-icon,
.media-gradu-3 .media__tool .au-icon {
  margin: 0 12px;
}

.media-gradu .date-time,
.media-gradu-2 .date-time,
.media-gradu-3 .date-time {
  font-size: 15px;
  color: #fff;
}

.media-gradu:hover .media__overlay,
.media-gradu-2:hover .media__overlay,
.media-gradu-3:hover .media__overlay {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  -moz-transition: opacity 0.35s, transform 0.35s, -moz-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s;
}

.media-gradu:hover .media__body,
.media-gradu-2:hover .media__body,
.media-gradu-3:hover .media__body {
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  -moz-transition: opacity 0.35s, transform 0.35s, -moz-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s;
}

.media-gradu:hover .media__tool,
.media-gradu-2:hover .media__tool,
.media-gradu-3:hover .media__tool {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  -moz-transition: opacity 0.35s, transform 0.35s, -moz-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s;
}

@media (max-width: 1190px) and (min-width: 991px) {
  .media-gradu .media__tool,
  .media-gradu-2 .media__tool,
  .media-gradu-3 .media__tool {
    margin-bottom: 10px;
  }
  .media-gradu .media__body .media__title,
  .media-gradu-2 .media__body .media__title,
  .media-gradu-3 .media__body .media__title {
    font-size: 20px;
    margin-bottom: 0px;
  }
}

.media__overlay-inner {
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.media-gradu-2 {
  margin: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.media-gradu-2 .au-icon {
  width: 40px;
  height: 40px;
  font-size: 17px;
}

.media-gradu-2 .media__tool {
  margin-bottom: 24px;
}

.media-gradu-2 .media__body .media__title {
  margin-bottom: 4px;
}

.media-gradu-3 {
  margin: 0;
  margin-bottom: 30px;
}

.media-gradu-3 .title {
  font-size: 22px;
}

.media-gradu-3 .media__tool {
  margin-bottom: 28px;
}

.media-our-class,
.media-our-class-2,
.media-our-class-3,
.media-our-class-4,
.media-our-class-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.media-our-class .media__img,
.media-our-class-2 .media__img,
.media-our-class-3 .media__img,
.media-our-class-4 .media__img,
.media-our-class-5 .media__img {
  width: 50%;
  overflow: hidden;
  position: relative;
}

.media-our-class .media__img img,
.media-our-class-2 .media__img img,
.media-our-class-3 .media__img img,
.media-our-class-4 .media__img img,
.media-our-class-5 .media__img img {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.media-our-class .media__img:hover img,
.media-our-class-2 .media__img:hover img,
.media-our-class-3 .media__img:hover img,
.media-our-class-4 .media__img:hover img,
.media-our-class-5 .media__img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.media-our-class .media__img a,
.media-our-class-2 .media__img a,
.media-our-class-3 .media__img a,
.media-our-class-4 .media__img a,
.media-our-class-5 .media__img a {
  display: block;
}

.media-our-class .media__body,
.media-our-class-2 .media__body,
.media-our-class-3 .media__body,
.media-our-class-4 .media__body,
.media-our-class-5 .media__body {
  width: 50%;
  padding: 45px 30px 20px 20px;
  text-align: right;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .media-our-class .media__body,
  .media-our-class-2 .media__body,
  .media-our-class-3 .media__body,
  .media-our-class-4 .media__body,
  .media-our-class-5 .media__body {
    padding: 15px 20px 10px 10px;
  }
}

@media (max-width: 991px) {
  .media-our-class .media__body,
  .media-our-class-2 .media__body,
  .media-our-class-3 .media__body,
  .media-our-class-4 .media__body,
  .media-our-class-5 .media__body {
    padding: 45px 30px 30px 30px;
  }
}

.media-our-class .media__title,
.media-our-class-2 .media__title,
.media-our-class-3 .media__title,
.media-our-class-4 .media__title,
.media-our-class-5 .media__title {
  font-size: 25px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.media-our-class .media__title a,
.media-our-class-2 .media__title a,
.media-our-class-3 .media__title a,
.media-our-class-4 .media__title a,
.media-our-class-5 .media__title a {
  color: #333;
}

.media-our-class .media__title a:hover,
.media-our-class-2 .media__title a:hover,
.media-our-class-3 .media__title a:hover,
.media-our-class-4 .media__title a:hover,
.media-our-class-5 .media__title a:hover {
  color: #ff97a4;
}

.media-our-class .media-our-class__info,
.media-our-class-2 .media-our-class__info,
.media-our-class-3 .media-our-class__info,
.media-our-class-4 .media-our-class__info,
.media-our-class-5 .media-our-class__info {
  margin-top: 20px;
}

.media-our-class .media-our-class__info .item.has-seprator,
.media-our-class-2 .media-our-class__info .item.has-seprator,
.media-our-class-3 .media-our-class__info .item.has-seprator,
.media-our-class-4 .media-our-class__info .item.has-seprator,
.media-our-class-5 .media-our-class__info .item.has-seprator {
  position: relative;
}

.media-our-class .media-our-class__info .item.has-seprator::after,
.media-our-class-2 .media-our-class__info .item.has-seprator::after,
.media-our-class-3 .media-our-class__info .item.has-seprator::after,
.media-our-class-4 .media-our-class__info .item.has-seprator::after,
.media-our-class-5 .media-our-class__info .item.has-seprator::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 23px;
  background: #ccc;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -25%;
}

@media (max-width: 991px) {
  .media-our-class .media-our-class__info .item.has-seprator::after,
  .media-our-class-2 .media-our-class__info .item.has-seprator::after,
  .media-our-class-3 .media-our-class__info .item.has-seprator::after,
  .media-our-class-4 .media-our-class__info .item.has-seprator::after,
  .media-our-class-5 .media-our-class__info .item.has-seprator::after {
    right: -41%;
  }
}

@media (max-width: 767px) {
  .media-our-class .media-our-class__info .item.has-seprator::after,
  .media-our-class-2 .media-our-class__info .item.has-seprator::after,
  .media-our-class-3 .media-our-class__info .item.has-seprator::after,
  .media-our-class-4 .media-our-class__info .item.has-seprator::after,
  .media-our-class-5 .media-our-class__info .item.has-seprator::after {
    right: -30%;
  }
}

.media-our-class .media-our-class__info .item .name,
.media-our-class-2 .media-our-class__info .item .name,
.media-our-class-3 .media-our-class__info .item .name,
.media-our-class-4 .media-our-class__info .item .name,
.media-our-class-5 .media-our-class__info .item .name {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
}

.media-our-class .media-our-class__info .item .value,
.media-our-class-2 .media-our-class__info .item .value,
.media-our-class-3 .media-our-class__info .item .value,
.media-our-class-4 .media-our-class__info .item .value,
.media-our-class-5 .media-our-class__info .item .value {
  font-size: 18px;
  display: block;
}

@media (max-width: 991px) {
  .media-our-class,
  .media-our-class-2,
  .media-our-class-3,
  .media-our-class-4,
  .media-our-class-5 {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .media-our-class,
  .media-our-class-2,
  .media-our-class-3,
  .media-our-class-4,
  .media-our-class-5 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .media-our-class .media__img,
  .media-our-class-2 .media__img,
  .media-our-class-3 .media__img,
  .media-our-class-4 .media__img,
  .media-our-class-5 .media__img {
    text-align: center;
    width: 100%;
  }
  .media-our-class .media__body,
  .media-our-class-2 .media__body,
  .media-our-class-3 .media__body,
  .media-our-class-4 .media__body,
  .media-our-class-5 .media__body {
    width: 100%;
  }
}

.date-time {
  display: block;
}

.media-our-class__price {
  position: absolute;
  top: 0;
  left: 20px;
  display: inline-block;
  height: 55px;
  background: #fcdd64;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}

.media-our-class__price .inner {
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 54px;
  height: 51px;
  display: inline-block;
  padding: 0 14px;
  background: #b6dd6b;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}

.media-our-class--right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.media-our-class--right .media__body {
  padding: 45px 20px 20px 30px;
  text-align: left;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .media-our-class--right .media__body {
    padding: 15px 10px 10px 20px;
  }
}

@media (max-width: 991px) {
  .media-our-class--right .media__body {
    padding: 45px 30px 30px 30px;
  }
}

.media-our-class--right .media-our-class__info .item.has-seprator::after {
  right: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .media-our-class--right .media-our-class__info .item.p-l-30 {
    padding: 0;
  }
}

.media-our-class--right .media-our-class__price {
  left: auto;
  right: 20px;
}

@media (max-width: 991px) {
  .media-our-class--right .media-our-class__info .item.has-seprator::after {
    right: 30%;
  }
}

@media (max-width: 767px) {
  .media-our-class--right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .media-our-class--right .media-our-class__info .item.has-seprator::after {
    right: 15%;
  }
}

.media-our-class-2 {
  margin-bottom: 0;
}

.media-our-class-2 .media__img {
  width: 42%;
}

.media-our-class-2 .media__body {
  width: 78%;
  text-align: left;
  padding: 20px 25px;
  padding-bottom: 15px;
}

@media (min-width: 992px) and (max-width: 1519px) {
  .media-our-class-2 .media__body {
    padding: 5px 15px;
    padding-bottom: 0;
  }
}

.media-our-class-2 .media__title {
  font-size: 20px;
}

@media (max-width: 767px) {
  .media-our-class-2 .media__img {
    width: 100%;
  }
  .media-our-class-2 .media__body {
    width: 100%;
  }
}

.media-our-class-3,
.media-our-class-4,
.media-our-class-5 {
  display: block;
  margin-bottom: 30px;
}

.media-our-class-3 .media__img,
.media-our-class-4 .media__img,
.media-our-class-5 .media__img {
  width: 100%;
}

.media-our-class-3 .date-time,
.media-our-class-4 .date-time,
.media-our-class-5 .date-time {
  display: inline-block;
}

.media-our-class-3 .media__body,
.media-our-class-4 .media__body,
.media-our-class-5 .media__body {
  width: 100%;
  text-align: center;
  padding: 30px 50px;
  padding-top: 25px;
}

.media-our-class-3 .media__title,
.media-our-class-4 .media__title,
.media-our-class-5 .media__title {
  margin-bottom: 6px;
}

.media-our-class-3 .media-our-class__price,
.media-our-class-4 .media-our-class__price,
.media-our-class-5 .media-our-class__price {
  left: auto;
  right: 20px;
}

.media-our-class-3 .media-our-class__info,
.media-our-class-4 .media-our-class__info,
.media-our-class-5 .media-our-class__info {
  margin-top: 15px;
}

.media-our-class-3 .media-our-class__info .item.has-seprator::after,
.media-our-class-4 .media-our-class__info .item.has-seprator::after,
.media-our-class-5 .media-our-class__info .item.has-seprator::after {
  right: 0;
}

.media-our-class-4 .media__body,
.media-our-class-5 .media__body {
  padding: 20px 30px;
}

.media-our-class-4 .media-our-class__info,
.media-our-class-5 .media-our-class__info {
  margin-top: 5px;
}

.media-our-class-5 .media__img {
  padding-top: 40px;
  padding-bottom: 15px;
}

.media-our-class-5 .media__img:hover img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.media-our-class-5 .img-circle {
  display: block;
  margin: 0 auto;
  width: 251px;
  height: 251px;
  overflow: hidden;
}

.media-our-class-5 .img-circle img {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.media-our-class-5 .img-circle:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.media-our-class-5 .img-circle img {
  width: 100%;
  height: 100%;
}

.media-our-class-5 .media-our-class__info {
  margin-top: 15px;
}

.media-our-class-5 .media__body {
  padding-bottom: 28px;
}

.media-our-class__price--big {
  left: auto;
  right: 30px;
  height: 80px;
}

.media-our-class__price--big .inner {
  height: 74px;
  font-size: 35px;
  line-height: 79px;
}

.media-product,
.media-product-2 {
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.media-product .media__img,
.media-product-2 .media__img {
  position: relative;
  height: 240px;
}

.media-product .media__img a,
.media-product-2 .media__img a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.media-product .media__img a img,
.media-product-2 .media__img a img {
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.media-product .media__body,
.media-product-2 .media__body {
  text-align: center;
  position: relative;
  padding: 0 15px;
  padding-bottom: 20px;
}

.media-product .media__body .title,
.media-product-2 .media__body .title {
  margin-bottom: 5px;
  text-transform: capitalize;
}

.media-product .media__price,
.media-product-2 .media__price {
  color: #999;
  font-size: 18px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.media-product .link-add-cart,
.media-product-2 .link-add-cart {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
}

.media-product:hover .link-add-cart,
.media-product-2:hover .link-add-cart {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.media-product:hover .media__price,
.media-product-2:hover .media__price {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.media-product:hover .media__img a img,
.media-product-2:hover .media__img a img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.media-product-2 .media__body .title {
  margin-bottom: 7px;
}

.media-product-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.media-product-3 .media__img {
  width: 100px;
  height: 91px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  margin-right: 20px;
}

.media-product-3 .media__img a {
  display: block;
  width: 100%;
  height: 100%;
}

.media-product-3 .media__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.media-product-3 .media__body {
  width: -webkit-calc(100% - 120px);
  width: -moz-calc(100% - 120px);
  width: calc(100% - 120px);
}

.media-product-3 .media__body .title {
  margin-bottom: 7px;
}

.media-product-3 .media__price {
  color: #999;
}

.media-teacher .media__tool {
  position: absolute;
  top: 15px;
  right: 15px;
}

.media-teacher .media__tool .au-icon {
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.35s, background-color 0.4s, -webkit-transform 0.65s;
  transition: opacity 0.35s, background-color 0.4s, -webkit-transform 0.65s;
  -o-transition: opacity 0.35s, background-color 0.4s, -o-transform 0.65s;
  -moz-transition: opacity 0.35s, transform 0.65s, background-color 0.4s, -moz-transform 0.65s;
  transition: opacity 0.35s, transform 0.65s, background-color 0.4s;
  transition: opacity 0.35s, transform 0.65s, background-color 0.4s, -webkit-transform 0.65s, -moz-transform 0.65s, -o-transform 0.65s;
  margin-bottom: 10px;
}

.media-teacher .media__img {
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: relative;
}

.media-teacher .media__img img {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.media-teacher .media__img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.media-teacher .media__img:hover .media__tool .au-icon {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.35s, background-color 0.4s, -webkit-transform 0.65s;
  transition: opacity 0.35s, background-color 0.4s, -webkit-transform 0.65s;
  -o-transition: opacity 0.35s, background-color 0.4s, -o-transform 0.65s;
  -moz-transition: opacity 0.35s, transform 0.65s, background-color 0.4s, -moz-transform 0.65s;
  transition: opacity 0.35s, transform 0.65s, background-color 0.4s;
  transition: opacity 0.35s, transform 0.65s, background-color 0.4s, -webkit-transform 0.65s, -moz-transform 0.65s, -o-transform 0.65s;
}

.media-teacher .media__body {
  text-align: center;
  padding-top: 20px;
}

.media-teacher .media__title {
  font-size: 20px;
  margin-bottom: 2px;
}

.media-teacher .media__title a {
  color: #333;
}

.media-teacher .media__title a:hover {
  color: #ff97a4;
}

.media-teacher-2,
.media-teacher-3 {
  background: #fff;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.media-teacher-2 .media__img,
.media-teacher-3 .media__img {
  width: 47%;
}

.media-teacher-2 .media__img a,
.media-teacher-3 .media__img a {
  display: block;
  overflow: hidden;
}

.media-teacher-2 .media__img a img,
.media-teacher-3 .media__img a img {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.media-teacher-2 .media__img a:hover img,
.media-teacher-3 .media__img a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.media-teacher-2 .media__body,
.media-teacher-3 .media__body {
  width: 53%;
  padding: 45px 40px;
  padding-bottom: 25px;
}

@media (max-width: 1200px) and (min-width: 992px) {
  .media-teacher-2 .media__body,
  .media-teacher-3 .media__body {
    padding: 10px 20px 15px;
  }
}

.media-teacher-2 .media__title,
.media-teacher-3 .media__title {
  margin-bottom: 3px;
}

@media (max-width: 1200px) and (min-width: 992px) {
  .media-teacher-2 .media__title,
  .media-teacher-3 .media__title {
    margin-bottom: 0;
  }
}

.media-teacher-2 .media__text,
.media-teacher-3 .media__text {
  margin-top: 18px;
}

@media (max-width: 1200px) and (min-width: 992px) {
  .media-teacher-2 .media__text,
  .media-teacher-3 .media__text {
    margin-top: 5px;
  }
}

.media-teacher-2 .media__tool,
.media-teacher-3 .media__tool {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}

.media-teacher-2 .media__tool .au-icon,
.media-teacher-3 .media__tool .au-icon {
  margin-right: 15px;
}

@media (max-width: 1200px) and (min-width: 992px) {
  .media-teacher-2 .media__tool,
  .media-teacher-3 .media__tool {
    margin-top: 7px;
  }
}

@media (max-width: 767px) {
  .media-teacher-2,
  .media-teacher-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .media-teacher-2 .media__img,
  .media-teacher-3 .media__img {
    width: 100%;
  }
  .media-teacher-2 .media__body,
  .media-teacher-3 .media__body {
    width: 100%;
  }
}

.media-teacher-3 {
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.media-teacher-4 {
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.media-teacher-4 .media__body {
  text-align: center;
  padding: 30px;
}

.media-teacher-4 .media__body .title {
  margin-bottom: 5px;
}

.media-teacher-4 .list-teacher-info-2 {
  margin-top: 12px;
}

.media-teacher-4 .media__tool {
  margin-top: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.media-teacher-4 .media__tool .au-icon {
  margin-right: 20px;
}

.media-teacher-4 .media__tool .au-icon:last-child {
  margin-right: 0;
}

.media-testi-1 .media__body {
  border: 8px solid #fcdd64;
  background: #fff;
  -webkit-border-top-left-radius: 30px;
  -moz-border-radius-topleft: 30px;
  border-top-left-radius: 30px;
  -webkit-border-bottom-left-radius: 70px;
  -moz-border-radius-bottomleft: 70px;
  border-bottom-left-radius: 70px;
  -webkit-border-top-right-radius: 70px;
  -moz-border-radius-topright: 70px;
  border-top-right-radius: 70px;
  -webkit-border-bottom-right-radius: 30px;
  -moz-border-radius-bottomright: 30px;
  border-bottom-right-radius: 30px;
  overflow: visible;
  position: relative;
}

.media-testi-1 .media__body-inner {
  padding: 48px 50px;
  padding-bottom: 33px;
  position: relative;
  z-index: 99;
}

.media-testi-1 .qoute-before {
  position: absolute;
  bottom: 0px;
  left: 86px;
  display: block;
  width: 82px;
  height: 39px;
  background: #fff;
  z-index: 99;
}

.media-testi-1 .qoute-after {
  width: 58px;
  height: 58px;
  border: 8px solid #fcdd64;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom: -28px;
  left: 98px;
  z-index: 9;
  background: #fff;
}

.media-testi-1 .media__img {
  width: 105px;
  height: 105px;
  margin-right: 22px;
}

@media (max-width: 767px) {
  .media-testi-1 .media__img {
    margin-right: 0;
    margin-bottom: 25px;
  }
}

.media-testi-1 .media__quote {
  position: relative;
  z-index: 99;
}

.media-testi-1 .media__quote::before {
  position: absolute;
  z-index: -9;
  content: '';
  display: inline-block;
  width: 58px;
  height: 42px;
  background-image: url("../images/icon/qoute.png");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  left: -28px;
  top: -10px;
}

.media-testi-1 .media__info-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 80px;
  padding-top: 60px;
}

@media (max-width: 767px) {
  .media-testi-1 .media__info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
  }
}

.media-testi-1 .media__info {
  text-align: center;
}

.media-testi-1 .media__info .title {
  font-weight: 600;
  color: #fff;
  font-size: 22px;
  margin-bottom: 2px;
}

.media-testi-1 .media__info .job {
  color: #fff;
}

@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    opacity: 0;
  }
}

@-moz-keyframes hvr-ripple-out {
  100% {
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    opacity: 0;
  }
}

@-o-keyframes hvr-ripple-out {
  100% {
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    opacity: 0;
  }
}

@keyframes hvr-ripple-out {
  100% {
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    opacity: 0;
  }
}

.media__video-wrap {
  position: relative;
}

.media__video-icon {
  width: 49px;
  height: 49px;
  cursor: pointer;
}

.media__video-icon::before {
  content: '';
  position: absolute;
  border: #fff solid 1px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
}

.media__video-icon:hover::before {
  -webkit-animation-name: hvr-ripple-out;
  -moz-animation-name: hvr-ripple-out;
  -o-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
}

#modal-search .close {
  text-shadow: none;
  opacity: 1;
  position: absolute;
  right: 80px;
  top: 80px;
}

#modal-search .close i {
  font-size: 48px;
  color: #fff;
}

#modal-search.modal {
  background: rgba(0, 0, 0, 0.9);
  height: 100vh;
  position: fixed;
}

#modal-search .modal-dialog {
  background: none;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 500px;
}

@media (max-width: 767px) {
  #modal-search .modal-dialog {
    min-width: 250px;
  }
}

#modal-search .modal-content {
  background: none;
  border: none;
}

#modal-search .modal-body {
  padding: 0;
}

#modal-search .btn-submit-1 i {
  color: #fff;
}

#modal-main .close {
  text-shadow: none;
  opacity: 1;
  position: absolute;
  right: 80px;
  top: 80px;
}

#modal-main .close i {
  font-size: 48px;
  color: #fff;
}

#modal-main.modal {
  background: rgba(0, 0, 0, 0.9);
  height: 100vh;
  position: fixed;
}

#modal-main .modal-dialog {
  background: none;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 800px;
}

@media (max-width: 767px) {
  #modal-main .modal-dialog {
    min-width: 250px;
  }
}

#modal-main .modal-content {
  background: none;
  border: none;
}

#modal-main .modal-body {
  padding: 0;
}

#modal-main .btn-submit-1 i {
  color: #fff;
}

.modal-backdrop {
  background-color: transparent;
}

[data-toggle="modal"] {
  cursor: pointer;
}

.media__video-wrap {
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.modal-video {
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
}

.modal-video.fade .modal-dialog {
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
}

.media__video-icon .video__icon {
  width: 50px;
  height: 50px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.media__video-icon .video__icon:before {
  font-size: 60px;
  color: #7dd0f8;
}

.modal-video__dialog {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  pointer-events: auto;
}

.modal-video__close {
  font-size: 50px;
  color: white;
  opacity: 0.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  z-index: 10000;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.modal-video__close:hover {
  opacity: 1;
  cursor: pointer;
}

.modal-video__wrapper {
  width: 854px;
  height: auto;
  position: relative;
  margin: 15px;
}

.modal-video__holder {
  width: 100%;
}

.modal-video__video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.modal-video__video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.page-heading {
  padding-top: 248px;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-heading-inner {
  max-width: 345px;
  background: #fff;
  overflow: hidden;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  border-top-right-radius: 10px;
  padding: 20px 30px;
  padding-bottom: 0;
  margin-bottom: -7px;
}

/* ==========================================================================
   #PAGINATION
   ========================================================================== */
.au-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list-pagination__item {
  display: inline-block;
  width: 28px;
  height: 28px;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ccc;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  margin-right: 10px;
}

.list-pagination__item i, .list-pagination__item .number {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.list-pagination__item.active {
  background: #ff97a4;
}

.list-pagination__item.arrow {
  font-size: 20px;
}

.list-pagination__item:hover {
  background: #ff97a4;
}

.product-list__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 575px) {
  .product-list__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .product-list__head .info {
    margin-bottom: 15px;
  }
}

.product-list__body {
  padding-top: 30px;
}

.summary {
  padding-left: 25px;
}

@media (max-width: 991px) {
  .summary {
    padding-left: 0;
  }
}

.summary .product-title {
  margin-bottom: 11px;
  margin-top: -5px;
}

.summary .woocommerce-product-rating {
  margin-bottom: 20px;
}

.summary .price {
  font-size: 25px;
  margin-bottom: 20px;
}

.summary .woocommerce-product-details__short-description {
  margin-bottom: 30px;
}

.summary .list-social li {
  padding: 0 4px;
}

.shared .list-social {
  display: inline-block;
}

.posted_in__item,
.tagged-as__item {
  font-size: 15px;
  color: #666;
}

.posted_in__item:hover,
.tagged-as__item:hover {
  color: #ff97a4;
}

.tagged-as__item::after {
  content: ', ';
}

.tagged-as .tagged-as__item:last-child::after {
  content: '';
}

.product-meta {
  color: #333;
  padding-top: 55px;
}

.sku_wrapper,
.posted_in,
.tagged-as,
.shared {
  margin-bottom: 5px;
}

.product-add__item .title {
  margin-right: 18px;
}

.program-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.program-col {
  max-width: 328px;
}

.program__img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -32px;
  width: 38%;
}

.program__img > img {
  width: 100%;
}

@media (max-width: 1199px) {
  .program__img {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .program__img {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .program__img {
    display: none;
  }
}

@media (max-width: 767px) {
  .program-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .program-col {
    max-width: 100%;
  }
}

.slick__wrap-content {
  position: relative;
}

.slick__content {
  margin: 0 -15px;
}

.slick__item {
  outline: none;
}

.slick__item a {
  outline: none;
}

.slick-arrow {
  position: absolute;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slick-class .slick__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 15px;
}

.slick-class-2 .slick__item {
  padding: 0 15px;
}

.slick-class-3 .slick__item {
  padding: 0 15px;
}

.slick-blog .slick__item {
  padding: 0 15px;
}

.slick-testi-1 .slick__item {
  margin: 0 25px;
}

.slick-testi-1 .slick__content {
  margin: 0 -25px;
}

.slick-testi-2 .slick__item {
  opacity: 0.3;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.slick-testi-2 .slick__item.slick-center {
  opacity: 1;
}

.slick-testi-2 .slick__item .media {
  max-width: 570px;
  margin: 0 90px;
}

@media (max-width: 1519px) {
  .slick-testi-2 .slick__item .media {
    min-width: auto;
  }
}

@media (max-width: 1199px) {
  .slick-testi-2 .slick__item .media {
    margin: 0 50px;
  }
}

@media (max-width: 992px) {
  .slick-testi-2 .slick__item .media {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .slick-testi-2 .slick__item .media {
    margin: 0 30px;
  }
}

@media (max-width: 767px) {
  .slick-testi-2 .slick__item .media {
    margin: unset;
  }
}

.slick-partner .slick__item {
  text-align: center;
}

.slick-product .slick__content {
  margin: 0;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.arrows-1 .slick-arrow {
  font-size: 20px;
  color: #ccc;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.arrows-1 .slick-arrow:hover {
  color: #ff97a4;
}

.arrows-1 .slick-prev {
  left: -35px;
}

.arrows-1 .slick-next {
  right: -35px;
}

.arrows-2 .slick-arrow {
  display: inline-block;
  width: 44px;
  height: 20px;
  background-repeat: no-repeat;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.arrows-2 .slick-prev {
  background-image: url("../images/icon/arrow-prev.png");
  left: -110px;
}

.arrows-2 .slick-prev:hover {
  background-image: url("../images/icon/arrow-hover-left.png");
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.arrows-2 .slick-next {
  background-image: url("../images/icon/arrow-next.png");
  right: -110px;
}

.arrows-2 .slick-next:hover {
  background-image: url("../images/icon/arrow-hover.png");
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.arrows-3 .slick-arrow {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #ccc;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 20px;
  color: #fff;
  top: -94px;
}

.arrows-3 .slick-arrow:hover {
  background: #ff97a4;
}

@media (max-width: 350px) {
  .arrows-3 .slick-arrow {
    top: -45px;
  }
}

.arrows-3 .slick-prev {
  right: 38px;
}

.arrows-3 .slick-next {
  right: 0;
}

.slick-dots {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slick-dots button {
  display: none;
}

.slick-dots li {
  list-style: none;
}

.dots-style1 li,
.dots-style2 li {
  cursor: pointer;
  margin: 0 3.5px;
  display: block;
  vertical-align: top;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #7dd0f8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.dots-style1 li.slick-active,
.dots-style2 li.slick-active {
  width: 24px;
  height: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.dots-style1 .slick-dots,
.dots-style2 .slick-dots {
  margin-top: 50px;
}

.dots-style2 li {
  background: #fff;
}

.dots-style3 {
  margin-top: 20px;
}

.dots-style3 .slick-dots {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.dots-style3 .slick-dots li {
  width: -webkit-calc((100% - 60px) / 4);
  width: -moz-calc((100% - 60px) / 4);
  width: calc((100% - 60px) / 4);
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.statistic__item {
  height: 300px;
  color: #fff;
  position: relative;
}

.statistic__item .icon {
  position: absolute;
  top: 0;
  right: 0;
}

.statistic__item span {
  display: block;
  line-height: 1;
  text-align: center;
}

.statistic__item .number {
  font-weight: 700;
  font-size: 70px;
  margin-bottom: 16px;
}

.statistic__item .desc {
  font-size: 25px;
  text-transform: capitalize;
  line-height: 1.2;
}

.statistic__item.blue {
  background: #7dd0f8;
}

.statistic__item.yellow {
  background: #fcdd64;
}

.statistic__item.pink {
  background: #ff97a4;
}

.statistic__item.green {
  background: #b6dd6b;
}

.statistic__item-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.au-tab-list .au-tab-list__item:first-child {
  margin-left: 0;
}

@media (max-width: 991px) {
  .au-tab-list {
    border: 6px solid #4cc4c5;
    -webkit-border-top-left-radius: 35px;
    -moz-border-radius-topleft: 35px;
    border-top-left-radius: 35px;
    -webkit-border-top-right-radius: 35px;
    -moz-border-radius-topright: 35px;
    border-top-right-radius: 35px;
    overflow: hidden;
    background: #fff;
  }
}

.au-tab-list__item {
  display: inline-block;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: -6px;
  -webkit-border-top-left-radius: 35px;
  -moz-border-radius-topleft: 35px;
  border-top-left-radius: 35px;
  -webkit-border-top-right-radius: 35px;
  -moz-border-radius-topright: 35px;
  border-top-right-radius: 35px;
  border: 6px solid #4cc4c5;
  border-bottom: none;
}

.tabColor_01 {
	border-bottom: 6px solid #e60012;
}
.tabColor_02 {
	border-bottom: 6px solid #ed6d00;
}
.tabColor_03 {
	border-bottom: 6px solid #f8b72e;
}
.tabColor_04 {
	border-bottom: 6px solid #099339;
}
.tabColor_05 {
	border-bottom: 6px solid #004ea2;
}
.tabColor_06 {
	border-bottom: 6px solid #601986;
}

.au-tab-list__item a {
  display: inline-block;
  line-height: 66px;
  text-align: center;
  font-size: 24px;
  color: #4cc4c5;
  min-width: 188px;
  text-transform: capitalize;
  /* border-bottom: 6px solid #4cc4c5; */
  -webkit-border-top-left-radius: 35px;
  -moz-border-radius-topleft: 35px;
  border-top-left-radius: 35px;
  -webkit-border-top-right-radius: 35px;
  -moz-border-radius-topright: 35px;
  border-top-right-radius: 35px;
}


.au-tab-list__item a.active {
  border-bottom: 6px solid #fff;
}

@media (max-width: 1199px) {
  .au-tab-list__item a {
    min-width: 148px;
  }
}

@media (max-width: 991px) {
  .au-tab-list__item {
    display: block;
    width: 100%;
    margin: 0;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .au-tab-list__item a {
    width: 100%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .au-tab-list__item a.active {
    background: #e5e5e5;
    border-bottom-color: #4cc4c5;
  }
}

.au-tab-content {
  padding: 45px;
  background: #fff;
  -webkit-border-bottom-left-radius: 35px;
  -moz-border-radius-bottomleft: 35px;
  border-bottom-left-radius: 35px;
  -webkit-border-bottom-right-radius: 35px;
  -moz-border-radius-bottomright: 35px;
  border-bottom-right-radius: 35px;
  border: 6px solid #4cc4c5;
  margin-top: -6px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .au-tab-content {
    margin-top: -12px;
  }
}

.au-tab-content .fade:not(.show) {
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -o-transform-origin: bottom;
  transform-origin: bottom;
}

.au-tab-content .fade.show {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -o-transform-origin: bottom;
  transform-origin: bottom;
}

@media (max-width: 991px) {
  .nav {
    display: block;
  }
}

.au-tab-1 .au-tab-pane-inner,
.au-tab-4 .au-tab-pane-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.au-tab-1 .au-tab-pane__text,
.au-tab-4 .au-tab-pane__text {
  max-width: 580px;
}

.au-tab-1 .au-tab-pane__text,
.au-tab-4 .au-tab-pane__text p{
  font-size:16px;
}

.au-tab-1 .au-tab-pane__text .title,
.au-tab-4 .au-tab-pane__text .title {
  margin-bottom: 23px;
  color: #4cc4c5;
}

.au-tab-1 .au-tab-pane__text .link-learn-more,
.au-tab-4 .au-tab-pane__text .link-learn-more {
  margin-top: 40px;
}

.au-tab-1 .au-tab-pane__img,
.au-tab-4 .au-tab-pane__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .au-tab-1 .au-tab-pane-inner,
  .au-tab-4 .au-tab-pane-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .au-tab-1 .au-tab-pane__text,
  .au-tab-4 .au-tab-pane__text {
    margin-bottom: 40px;
  }
  .au-tab-1 .au-tab-pane__img,
  .au-tab-4 .au-tab-pane__img {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .au-tab-1 .au-tab-content,
  .au-tab-4 .au-tab-content {
    padding: 30px;
  }
}

.au-tab__nav-item-inner {
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 575px) {
  .au-tab__nav-item-inner {
    border: none;
    display: block;
    padding: 12.5px 25px;
  }
}

.au-tab-2,
.au-tab-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.au-tab-2 .au-tab__nav,
.au-tab-3 .au-tab__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  overflow: hidden;
  background: #7dd0f8;
}

.au-tab-2 .au-tab__nav .au-tab__nav-item:first-child,
.au-tab-3 .au-tab__nav .au-tab__nav-item:first-child {
  -webkit-border-top-left-radius: 26px;
  -moz-border-radius-topleft: 26px;
  border-top-left-radius: 26px;
  -webkit-border-bottom-left-radius: 26px;
  -moz-border-radius-bottomleft: 26px;
  border-bottom-left-radius: 26px;
}

.au-tab-2 .au-tab__nav .au-tab__nav-item:first-child .au-tab__nav-item-inner,
.au-tab-3 .au-tab__nav .au-tab__nav-item:first-child .au-tab__nav-item-inner {
  padding-left: 40px;
}

.au-tab-2 .au-tab__nav .au-tab__nav-item:last-child,
.au-tab-3 .au-tab__nav .au-tab__nav-item:last-child {
  -webkit-border-top-right-radius: 26px;
  -moz-border-radius-topright: 26px;
  border-top-right-radius: 26px;
  -webkit-border-bottom-right-radius: 26px;
  -moz-border-radius-bottomright: 26px;
  border-bottom-right-radius: 26px;
  border-right: none;
}

.au-tab-2 .au-tab__nav .au-tab__nav-item:last-child .au-tab__nav-item-inner,
.au-tab-3 .au-tab__nav .au-tab__nav-item:last-child .au-tab__nav-item-inner {
  padding-right: 40px;
}

.au-tab-2 .au-tab__nav.au-tab__nav--sspace .au-tab__nav-item:first-child .au-tab__nav-item-inner,
.au-tab-3 .au-tab__nav.au-tab__nav--sspace .au-tab__nav-item:first-child .au-tab__nav-item-inner {
  padding-left: 25px;
}

.au-tab-2 .au-tab__nav.au-tab__nav--sspace .au-tab__nav-item:last-child .au-tab__nav-item-inner,
.au-tab-3 .au-tab__nav.au-tab__nav--sspace .au-tab__nav-item:last-child .au-tab__nav-item-inner {
  padding-right: 25px;
}

@media (max-width: 575px) {
  .au-tab-2 .au-tab__nav,
  .au-tab-3 .au-tab__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .au-tab-2 .au-tab__nav .au-tab__nav-item:first-child,
  .au-tab-3 .au-tab__nav .au-tab__nav-item:first-child {
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topleft: 0;
    border-top-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-left-radius: 0;
  }
  .au-tab-2 .au-tab__nav .au-tab__nav-item:first-child .au-tab__nav-item-inner,
  .au-tab-3 .au-tab__nav .au-tab__nav-item:first-child .au-tab__nav-item-inner {
    padding-left: 20px;
  }
  .au-tab-2 .au-tab__nav .au-tab__nav-item:last-child,
  .au-tab-3 .au-tab__nav .au-tab__nav-item:last-child {
    -webkit-border-top-right-radius: 0;
    -moz-border-radius-topright: 0;
    border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-bottomright: 0;
    border-bottom-right-radius: 0;
  }
  .au-tab-2 .au-tab__nav .au-tab__nav-item:last-child .au-tab__nav-item-inner,
  .au-tab-3 .au-tab__nav .au-tab__nav-item:last-child .au-tab__nav-item-inner {
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .au-tab-2,
  .au-tab-3 {
    display: block;
  }
}

.au-tab__nav-item {
  padding: 12.5px 0;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.au-tab__nav-item.active {
  background: #ff97a4;
}

.au-tab__nav-item.active .au-tab__nav-item-inner {
  border-right-color: transparent;
}

@media (max-width: 575px) {
  .au-tab__nav-item {
    text-align: center;
    padding: 0;
  }
}

.au-tab-3 .au-tab__nav-item {
  padding: 0;
}

.au-tab-3 .au-tab__nav-item a {
  display: block;
  padding-top: 11px;
  padding-bottom: 11px;
}

.au-tab-3 .au-tab__nav-item a.active {
  background: #ff97a4;
}

.au-tab-3 .au-tab__nav-item a.active .au-tab__nav-item-inner {
  border-color: transparent;
}

@media (max-width: 767px) {
  .au-tab-3 .au-tab__nav-item a {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }
}

.au-tab-3 .au-tab__nav-item-inner {
  line-height: 20px;
}

@media (max-width: 767px) {
  .au-tab-3 .au-tab__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .au-tab-3 .au-tab__nav .au-tab__nav-item:first-child {
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topleft: 0;
    border-top-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-left-radius: 0;
  }
  .au-tab-3 .au-tab__nav .au-tab__nav-item:first-child .au-tab__nav-item-inner {
    padding-left: 20px;
  }
  .au-tab-3 .au-tab__nav .au-tab__nav-item:last-child {
    -webkit-border-top-right-radius: 0;
    -moz-border-radius-topright: 0;
    border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-bottomright: 0;
    border-bottom-right-radius: 0;
  }
  .au-tab-3 .au-tab__nav .au-tab__nav-item:last-child .au-tab__nav-item-inner {
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .au-tab-3 .au-tab__nav-item-inner {
    border: none;
    display: block;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .au-tab-3 {
    display: block;
  }
}

.au-tab-4 .au-tab-pane-inner {
  display: block;
}

.au-tab-4 .au-tab-list__item {
  -webkit-border-top-left-radius: 25px;
  -moz-border-radius-topleft: 25px;
  border-top-left-radius: 25px;
  -webkit-border-top-right-radius: 25px;
  -moz-border-radius-topright: 25px;
  border-top-right-radius: 25px;
  border: 4px solid #7dd0f8;
  border-bottom: none;
  margin-left: -4px;
}

.au-tab-4 .au-tab-list__item a {
  border-bottom: 4px solid #7dd0f8;
  -webkit-border-top-left-radius: 25px;
  -moz-border-radius-topleft: 25px;
  border-top-left-radius: 25px;
  -webkit-border-top-right-radius: 25px;
  -moz-border-radius-topright: 25px;
  border-top-right-radius: 25px;
  font-size: 18px;
  color: #000;
  min-width: unset;
  padding: 0 32px;
  line-height: 48px;
}

.au-tab-4 .au-tab-list__item a.active {
  border-bottom-color: transparent;
}

@media (max-width: 991px) {
  .au-tab-4 .au-tab-list__item a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .au-tab-4 .au-tab-list__item a.active {
    border-bottom-color: #7dd0f8;
  }
}

@media (max-width: 991px) {
  .au-tab-4 .au-tab-list__item {
    display: block;
    width: 100%;
    margin: 0;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
}

.au-tab-4 .au-tab-content {
  border: 4px solid #7dd0f8;
  margin-top: -4px;
  -webkit-border-bottom-left-radius: 25px;
  -moz-border-radius-bottomleft: 25px;
  border-bottom-left-radius: 25px;
  -webkit-border-bottom-right-radius: 25px;
  -moz-border-radius-bottomright: 25px;
  border-bottom-right-radius: 25px;
  -webkit-border-top-right-radius: 25px;
  -moz-border-radius-topright: 25px;
  border-top-right-radius: 25px;
  padding: 35px 40px;
}

@media (max-width: 991px) {
  .au-tab-4 .au-tab-content {
    -webkit-border-top-right-radius: 0;
    -moz-border-radius-topright: 0;
    border-top-right-radius: 0;
    padding: 35px 25px;
  }
}

@media (max-width: 575px) {
  .au-tab-4 .au-tab-content .list-cmts__content-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .au-tab-4 .au-tab-list {
    border: 4px solid #7dd0f8;
    -webkit-border-top-left-radius: 25px;
    -moz-border-radius-topleft: 25px;
    border-top-left-radius: 25px;
    -webkit-border-top-right-radius: 25px;
    -moz-border-radius-topright: 25px;
    border-top-right-radius: 25px;
    overflow: hidden;
    background: #fff;
    border-bottom: none;
  }
}

.welcome-wrap {
  position: relative;
}

.welcome-sign {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.welcome-sign__content {
  text-align: center;
  margin-left: 45px;
}

.welcome-sign__content .name {
  font-weight: 600;
  font-size: 18px;
  color: #333;
}

.welcome__video {
  position: relative;
  padding-left: 25px;
  padding-right: 10px;
}

@media (max-width: 991px) {
  .welcome__video {
    padding: 0;
  }
}

.welcome-wrap-2 {
  padding-top: 10px;
}

@media (max-width: 991px) {
  .welcome-wrap-2 {
    padding-top: 10px;
  }
}

.welcome-wrap-3 {
  max-width: 661px;
  background: #fff;
  overflow: hidden;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  border-top-right-radius: 10px;
  padding: 0 80px;
  padding-top: 75px;
}

@media (max-width: 767px) {
  .welcome-wrap-3 {
    padding: 0 40px;
    padding-top: 35px;
  }
}

.widget-insta {
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}

.widget-insta__title {
  background: #fff;
  line-height: 40px;
  color: #666;
  font-size: 15px;
  padding: 0 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.widget-insta__item {
  position: relative;
}

.widget-insta__item .bg-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #ff97a4;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  transition: all 350ms ease;
}

.widget-insta__item .bg-overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #fff;
}

.widget-insta__item:hover .bg-overlay {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  transition: all 350ms ease;
}

.woocommerce-info-wrap {
  margin-bottom: 30px;
}

.woocommerce-info {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #f7f7f7;
  padding: 22px 30px;
  line-height: 1.2;
  padding-bottom: 18px;
}

.woocommerce-info::before {
  content: '';
  height: 5px;
  background: #ff97a4;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.woocommerce-info i {
  font-size: 20px;
  color: #ff97a4;
  vertical-align: middle;
  margin-right: 13px;
}

.woocommerce-info a {
  color: #666;
}

.woocommerce-info a:hover {
  color: #ff97a4;
}

.woocommerce-form-login {
  color: #999;
}

.woocommerce-form-login .au-label {
  color: #666;
}

.woocommerce-form-coupon:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.woocommerce-form-coupon .input-border-2 {
  width: -webkit-calc(100% - 228px);
  width: -moz-calc(100% - 228px);
  width: calc(100% - 228px);
  float: left;
}

.woocommerce-form-coupon button {
  float: right;
}

@media (max-width: 575px) {
  .woocommerce-form-coupon .input-border-2 {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .woocommerce-form-coupon button {
    float: none;
    display: block;
    width: 100%;
  }
}

.woocommerce-checkout-payment-content {
  background: #f2f2f2;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 9px 22px;
  position: relative;
  margin: 12px 0;
  display: none;
}

.woocommerce-checkout-payment-content::before {
  content: '';
  display: block;
  border-bottom: 9px solid #f2f2f2;
  border-top: 9px solid transparent;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  position: absolute;
  top: -17px;
  left: 40px;
}

.woocommerce-checkout-payment-item {
  padding: 3px 0;
}

.woocommerce-checkout-payment {
  padding-top: 30px;
  padding-bottom: 75px;
  border-bottom: 1px solid #e5e5e5;
}

.woocommerce-checkout-payment .woocommerce-checkout-payment-item:first-child .woocommerce-checkout-payment-content {
  display: block;
}

.place-order {
  padding: 40px 0;
  text-align: center;
}

/* ==========================================================================
   #ALIGN
   ========================================================================== */
.float-left {
  float: left;
}

.float-right {
  float: right;
}

.vertical-align-top {
  vertical-align: top;
}

.vertical-align-baseline {
  vertical-align: baseline;
}

.vertical-align-bottom {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.five-sec-ease-in-out {
  -webkit-transition: width 6s ease-in-out;
  -o-transition: width 6s ease-in-out;
  -moz-transition: width 6s ease-in-out;
  transition: width 6s ease-in-out;
}

.bg-blue {
  background: #7dd0f8;
}

.bg-blue-2 {
  background: #d8f3ff;
}

.bg-f7 {
  background: #f7f7f7;
}

.bg-pink {
  background: #ff97a4;
}

.bg-pink-2 {
  background: #ffadad;
}

.bg-blue-green {
  background: #6fd8e1;
}

.bg-cloud {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/icon/bg-cloud-01.jpg") center center/cover no-repeat;
  height: 168px;
}

.bg-cloud-2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.bg-cloud-3 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.bg-cloud-4 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.bg-cloud-5 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -140px;
  z-index: 0;
}

@media (max-width: 1519px) {
  .bg-cloud-5 {
    bottom: -20px;
  }
}

@media (max-width: 575px) {
  .bg-cloud-5 {
    bottom: 0;
  }
}

.bg-cloud-6 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 70px;
  background: url("../images/icon/bg-cloud-08.png") center center/cover no-repeat;
}

.bg-class {
  background: url("../images/bg-class-01.jpg") center center/cover no-repeat;
}

.bg-welcome {
  background-image: url("../images/bg-welcome.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  background-attachment: fixed;
}

.bg-pattern {
  background-repeat: repeat;
}

.bg-pattern-1 {
  background-image: url("../images/icon/bg-pattern-01.png");
}

.bg-pattern-2 {
  background-image: url("../images/icon/bg-pattern-02.png");
}

.bg-pattern-3 {
  background-image: url("../images/icon/bg-pattern-03.png");
}

.cloud-1,
.cloud-2 {
  position: absolute;
  z-index: 9;
}

.cloud-1 {
  bottom: 135px;
  left: 14%;
}

@media (max-width: 991px) {
  .cloud-1 {
    bottom: 80px;
    left: 5%;
  }
}

@media (max-width: 767px) {
  .cloud-1 {
    display: none;
  }
}

.cloud-2 {
  right: 100px;
  top: 124px;
}

@media (max-width: 1199px) {
  .cloud-2 {
    right: 40px;
    top: 80px;
  }
}

@media (max-width: 991px) {
  .cloud-2 {
    z-index: -1;
  }
}

.no-radius {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}

.no-border {
  border: none !important;
}

.show {
  display: block;
}

.hidden {
  display: none;
}

/* ==========================================================================
   #IMAGES
   ========================================================================== */
.img-circle {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
}

.img-circle img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
}

.img-radius {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.img-radius img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.img-hover--zoom {
  overflow: hidden;
}

.img-hover--zoom img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}

.img-hover--zoom:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}

.img-box {
  background: #fff;
  padding: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  z-index: 99;
}

@media (max-width: 991px) {
  .img-box {
    position: static;
  }
}

.img-border {
  position: relative;
}

.img-border .img-border-inner {
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  z-index: 9;
}

.img-border img {
  width: 100%;
}

.img-border:after {
  content: '';
  width: 100%;
  position: absolute;
  border: 4px solid #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.img-border--blue::after,
.img-border--yellow::after {
  top: 33px;
  left: -33px;
  bottom: -33px;
}

@media (max-width: 991px) {
  .img-border--blue::after,
  .img-border--yellow::after {
    top: 15px;
    left: -15px;
    bottom: -15px;
  }
}

.img-border--yellow::after {
  border-color: #fcdd64;
}

.img-border--pink::after {
  top: 33px;
  right: -33px;
  bottom: -33px;
  border-color: #ff97a4;
}

@media (max-width: 991px) {
  .img-border--pink::after {
    top: 15px;
    right: -15px;
    bottom: -15px;
  }
}

.img-circle-border,
.img-circle-border-2 {
  display: block;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 144px;
  height: 144px;
  border: 2px solid #ff97a4;
}

.img-circle-border-2 {
  width: 155px;
  height: 155px;
  border: 4px solid #fff;
}

.img--w160 {
  max-width: 160px;
}

.img--w220 {
  max-width: 220px;
}

.img-box-1 {
  width: 32%;
  top: -10px;
  left: -10px;
}

.img-box-2 {
  width: 32%;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 60px;
}

@media (max-width: 1199px) {
  .img-box-1 {
    width: 39%;
  }
  .img-box-2 {
    width: 27%;
  }
}

@media (max-width: 991px) {
  .img-box-1, .img-box-2 {
    width: 100%;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    margin-bottom: 20px;
  }
  .img-box-2 {
    margin-top: 0;
  }
}

.img-cart {
  display: block;
  width: 100px;
  height: 91px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.img-intro {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;
}

.img-intro img {
  width: 100%;
}

@media (max-width: 767px) {
  .img-intro {
    bottom: -30px;
  }
}

.img-intro-2 {
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-transition: 5s ease;
  -o-transition: 5s ease;
  -moz-transition: 5s ease;
  transition: 5s ease;
}

.img-intro-2:hover {
  background-position: bottom center;
  -webkit-transition: 5s ease;
  -o-transition: 5s ease;
  -moz-transition: 5s ease;
  transition: 5s ease;
}

.img-intro-2 a {
  display: block;
  height: 835px;
}

@media (max-width: 991px) {
  .img-intro-2 a {
    height: 400px;
  }
}

.img-outtro-1 {
  bottom: 0;
  left: -110px;
  z-index: 99;
}

@media (max-width: 767px) {
  .img-outtro-1 {
    left: 0;
  }
}

.img-outtro-2 {
  bottom: 30px;
  left: 38%;
  z-index: 9;
}

@media (max-width: 767px) {
  .img-outtro-2 {
    display: none;
  }
}

.img-outtro-3 {
  top: -55px;
  right: -20px;
  z-index: 9;
}

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
.col-xl-w20 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 1200px) {
  .col-xl-w20 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.col--no-p-r {
  padding-right: 0;
}

@media (max-width: 991px) {
  .col--no-p-r {
    padding-right: 15px;
  }
}

.col--no-p-l {
  padding-left: 0;
}

@media (max-width: 991px) {
  .col--no-p-l {
    padding-left: 15px;
  }
}

@media (min-width: 1200px) {
  .col-xl-6--wide {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 53%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 53%;
    flex: 0 0 53%;
    max-width: 53%;
    padding-right: 0;
  }
}

/*Gutter helper class for boostrap*/
/*Gutter = 10px*/
.gutter-sm {
  margin-left: -5px;
  margin-right: -5px;
}

.gutter-sm > * {
  padding-left: 5px;
  padding-right: 5px;
}

/*Gutter 1px*/
.gutter-line {
  margin-left: -.5px;
  margin-right: -.5px;
}

.gutter-line > * {
  padding-left: .5px;
  padding-right: .5px;
  margin-bottom: 1px;
}

/*Gutter = 40px*/
.gutter-lg {
  margin-left: -20px;
  margin-right: -20px;
}

.gutter-lg > * {
  padding-left: 20px;
  padding-right: 20px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* ==========================================================================
   #OVERRIDE    
   ========================================================================== */
.list-inline-item:not(:last-child) {
  margin: 0;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

/* ==========================================================================
   #POSITION
   ========================================================================== */
.position-static {
  position: static;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

/* ==========================================================================
   #SPACING
   @todo generate more generic classes and sizes
   ========================================================================== */
/*Padding, margin*/
.p-b-0 {
  padding-bottom: 0px;
}

.p-t-0 {
  padding-top: 0px;
}

.p-r-0 {
  padding-right: 0px;
}

.p-l-0 {
  padding-left: 0px;
}

.m-b-0 {
  margin-bottom: 0px;
}

.m-t-0 {
  margin-top: 0px;
}

.m-r-0 {
  margin-right: 0px;
}

.m-l-0 {
  margin-left: 0px;
}

.p-b-5 {
  padding-bottom: 5px;
}

.p-t-5 {
  padding-top: 5px;
}

.p-r-5 {
  padding-right: 5px;
}

.p-l-5 {
  padding-left: 5px;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-t-5 {
  margin-top: 5px;
}

.m-r-5 {
  margin-right: 5px;
}

.m-l-5 {
  margin-left: 5px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-t-10 {
  padding-top: 10px;
}

.p-r-10 {
  padding-right: 10px;
}

.p-l-10 {
  padding-left: 10px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-l-10 {
  margin-left: 10px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-t-15 {
  padding-top: 15px;
}

.p-r-15 {
  padding-right: 15px;
}

.p-l-15 {
  padding-left: 15px;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-l-15 {
  margin-left: 15px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-r-20 {
  padding-right: 20px;
}

.p-l-20 {
  padding-left: 20px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-r-20 {
  margin-right: 20px;
}

.m-l-20 {
  margin-left: 20px;
}

.p-b-25 {
  padding-bottom: 25px;
}

.p-t-25 {
  padding-top: 25px;
}

.p-r-25 {
  padding-right: 25px;
}

.p-l-25 {
  padding-left: 25px;
}

.m-b-25 {
  margin-bottom: 25px;
}

.m-t-25 {
  margin-top: 25px;
}

.m-r-25 {
  margin-right: 25px;
}

.m-l-25 {
  margin-left: 25px;
}

.p-b-30 {
  padding-bottom: 30px;
}

.p-t-30 {
  padding-top: 30px;
}

.p-r-30 {
  padding-right: 30px;
}

.p-l-30 {
  padding-left: 30px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-l-30 {
  margin-left: 30px;
}

.p-b-35 {
  padding-bottom: 35px;
}

.p-t-35 {
  padding-top: 35px;
}

.p-r-35 {
  padding-right: 35px;
}

.p-l-35 {
  padding-left: 35px;
}

.m-b-35 {
  margin-bottom: 35px;
}

.m-t-35 {
  margin-top: 35px;
}

.m-r-35 {
  margin-right: 35px;
}

.m-l-35 {
  margin-left: 35px;
}

.p-b-40 {
  padding-bottom: 40px;
}

.p-t-40 {
  padding-top: 40px;
}

.p-r-40 {
  padding-right: 40px;
}

.p-l-40 {
  padding-left: 40px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-r-40 {
  margin-right: 40px;
}

.m-l-40 {
  margin-left: 40px;
}

.p-b-45 {
  padding-bottom: 45px;
}

.p-t-45 {
  padding-top: 45px;
}

.p-r-45 {
  padding-right: 45px;
}

.p-l-45 {
  padding-left: 45px;
}

.m-b-45 {
  margin-bottom: 45px;
}

.m-t-45 {
  margin-top: 45px;
}

.m-r-45 {
  margin-right: 45px;
}

.m-l-45 {
  margin-left: 45px;
}

.p-b-50 {
  padding-bottom: 50px;
}

.p-t-50 {
  padding-top: 50px;
}

.p-r-50 {
  padding-right: 50px;
}

.p-l-50 {
  padding-left: 50px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-r-50 {
  margin-right: 50px;
}

.m-l-50 {
  margin-left: 50px;
}

.p-b-55 {
  padding-bottom: 55px;
}

.p-t-55 {
  padding-top: 55px;
}

.p-r-55 {
  padding-right: 55px;
}

.p-l-55 {
  padding-left: 55px;
}

.m-b-55 {
  margin-bottom: 55px;
}

.m-t-55 {
  margin-top: 55px;
}

.m-r-55 {
  margin-right: 55px;
}

.m-l-55 {
  margin-left: 55px;
}

.p-b-60 {
  padding-bottom: 60px;
}

.p-t-60 {
  padding-top: 60px;
}

.p-r-60 {
  padding-right: 60px;
}

.p-l-60 {
  padding-left: 60px;
}

.m-b-60 {
  margin-bottom: 60px;
}

.m-t-60 {
  margin-top: 60px;
}

.m-r-60 {
  margin-right: 60px;
}

.m-l-60 {
  margin-left: 60px;
}

.p-b-65 {
  padding-bottom: 65px;
}

.p-t-65 {
  padding-top: 65px;
}

.p-r-65 {
  padding-right: 65px;
}

.p-l-65 {
  padding-left: 65px;
}

.m-b-65 {
  margin-bottom: 65px;
}

.m-t-65 {
  margin-top: 65px;
}

.m-r-65 {
  margin-right: 65px;
}

.m-l-65 {
  margin-left: 65px;
}

.p-b-70 {
  padding-bottom: 70px;
}

.p-t-70 {
  padding-top: 70px;
}

.p-r-70 {
  padding-right: 70px;
}

.p-l-70 {
  padding-left: 70px;
}

.m-b-70 {
  margin-bottom: 70px;
}

.m-t-70 {
  margin-top: 70px;
}

.m-r-70 {
  margin-right: 70px;
}

.m-l-70 {
  margin-left: 70px;
}

.p-b-75 {
  padding-bottom: 75px;
}

.p-t-75 {
  padding-top: 75px;
}

.p-r-75 {
  padding-right: 75px;
}

.p-l-75 {
  padding-left: 75px;
}

.m-b-75 {
  margin-bottom: 75px;
}

.m-t-75 {
  margin-top: 75px;
}

.m-r-75 {
  margin-right: 75px;
}

.m-l-75 {
  margin-left: 75px;
}

.p-b-80 {
  padding-bottom: 80px;
}

.p-t-80 {
  padding-top: 80px;
}

.p-r-80 {
  padding-right: 80px;
}

.p-l-80 {
  padding-left: 80px;
}

.m-b-80 {
  margin-bottom: 80px;
}

.m-t-80 {
  margin-top: 80px;
}

.m-r-80 {
  margin-right: 80px;
}

.m-l-80 {
  margin-left: 80px;
}

.p-b-85 {
  padding-bottom: 85px;
}

.p-t-85 {
  padding-top: 85px;
}

.p-r-85 {
  padding-right: 85px;
}

.p-l-85 {
  padding-left: 85px;
}

.m-b-85 {
  margin-bottom: 85px;
}

.m-t-85 {
  margin-top: 85px;
}

.m-r-85 {
  margin-right: 85px;
}

.m-l-85 {
  margin-left: 85px;
}

.p-b-90 {
  padding-bottom: 90px;
}

.p-t-90 {
  padding-top: 90px;
}

.p-r-90 {
  padding-right: 90px;
}

.p-l-90 {
  padding-left: 90px;
}

.m-b-90 {
  margin-bottom: 90px;
}

.m-t-90 {
  margin-top: 90px;
}

.m-r-90 {
  margin-right: 90px;
}

.m-l-90 {
  margin-left: 90px;
}

.p-b-95 {
  padding-bottom: 95px;
}

.p-t-95 {
  padding-top: 95px;
}

.p-r-95 {
  padding-right: 95px;
}

.p-l-95 {
  padding-left: 95px;
}

.m-b-95 {
  margin-bottom: 95px;
}

.m-t-95 {
  margin-top: 95px;
}

.m-r-95 {
  margin-right: 95px;
}

.m-l-95 {
  margin-left: 95px;
}

.p-b-100 {
  padding-bottom: 100px;
}

.p-t-100 {
  padding-top: 100px;
}

.p-r-100 {
  padding-right: 100px;
}

.p-l-100 {
  padding-left: 100px;
}

.m-b-100 {
  margin-bottom: 100px;
}

.m-t-100 {
  margin-top: 100px;
}

.m-r-100 {
  margin-right: 100px;
}

.m-l-100 {
  margin-left: 100px;
}

.p-b-105 {
  padding-bottom: 105px;
}

.p-t-105 {
  padding-top: 105px;
}

.p-r-105 {
  padding-right: 105px;
}

.p-l-105 {
  padding-left: 105px;
}

.m-b-105 {
  margin-bottom: 105px;
}

.m-t-105 {
  margin-top: 105px;
}

.m-r-105 {
  margin-right: 105px;
}

.m-l-105 {
  margin-left: 105px;
}

.p-b-110 {
  padding-bottom: 110px;
}

.p-t-110 {
  padding-top: 110px;
}

.p-r-110 {
  padding-right: 110px;
}

.p-l-110 {
  padding-left: 110px;
}

.m-b-110 {
  margin-bottom: 110px;
}

.m-t-110 {
  margin-top: 110px;
}

.m-r-110 {
  margin-right: 110px;
}

.m-l-110 {
  margin-left: 110px;
}

.p-b-115 {
  padding-bottom: 115px;
}

.p-t-115 {
  padding-top: 115px;
}

.p-r-115 {
  padding-right: 115px;
}

.p-l-115 {
  padding-left: 115px;
}

.m-b-115 {
  margin-bottom: 115px;
}

.m-t-115 {
  margin-top: 115px;
}

.m-r-115 {
  margin-right: 115px;
}

.m-l-115 {
  margin-left: 115px;
}

.p-b-120 {
  padding-bottom: 120px;
}

.p-t-120 {
  padding-top: 120px;
}

.p-r-120 {
  padding-right: 120px;
}

.p-l-120 {
  padding-left: 120px;
}

.m-b-120 {
  margin-bottom: 120px;
}

.m-t-120 {
  margin-top: 120px;
}

.m-r-120 {
  margin-right: 120px;
}

.m-l-120 {
  margin-left: 120px;
}

.p-b-125 {
  padding-bottom: 125px;
}

.p-t-125 {
  padding-top: 125px;
}

.p-r-125 {
  padding-right: 125px;
}

.p-l-125 {
  padding-left: 125px;
}

.m-b-125 {
  margin-bottom: 125px;
}

.m-t-125 {
  margin-top: 125px;
}

.m-r-125 {
  margin-right: 125px;
}

.m-l-125 {
  margin-left: 125px;
}

.p-b-130 {
  padding-bottom: 130px;
}

.p-t-130 {
  padding-top: 130px;
}

.p-r-130 {
  padding-right: 130px;
}

.p-l-130 {
  padding-left: 130px;
}

.m-b-130 {
  margin-bottom: 130px;
}

.m-t-130 {
  margin-top: 130px;
}

.m-r-130 {
  margin-right: 130px;
}

.m-l-130 {
  margin-left: 130px;
}

.p-b-135 {
  padding-bottom: 135px;
}

.p-t-135 {
  padding-top: 135px;
}

.p-r-135 {
  padding-right: 135px;
}

.p-l-135 {
  padding-left: 135px;
}

.m-b-135 {
  margin-bottom: 135px;
}

.m-t-135 {
  margin-top: 135px;
}

.m-r-135 {
  margin-right: 135px;
}

.m-l-135 {
  margin-left: 135px;
}

.p-b-140 {
  padding-bottom: 140px;
}

.p-t-140 {
  padding-top: 140px;
}

.p-r-140 {
  padding-right: 140px;
}

.p-l-140 {
  padding-left: 140px;
}

.m-b-140 {
  margin-bottom: 140px;
}

.m-t-140 {
  margin-top: 140px;
}

.m-r-140 {
  margin-right: 140px;
}

.m-l-140 {
  margin-left: 140px;
}

.p-b-145 {
  padding-bottom: 145px;
}

.p-t-145 {
  padding-top: 145px;
}

.p-r-145 {
  padding-right: 145px;
}

.p-l-145 {
  padding-left: 145px;
}

.m-b-145 {
  margin-bottom: 145px;
}

.m-t-145 {
  margin-top: 145px;
}

.m-r-145 {
  margin-right: 145px;
}

.m-l-145 {
  margin-left: 145px;
}

.p-b-150 {
  padding-bottom: 150px;
}

.p-t-150 {
  padding-top: 150px;
}

.p-r-150 {
  padding-right: 150px;
}

.p-l-150 {
  padding-left: 150px;
}

.m-b-150 {
  margin-bottom: 150px;
}

.m-t-150 {
  margin-top: 150px;
}

.m-r-150 {
  margin-right: 150px;
}

.m-l-150 {
  margin-left: 150px;
}

.p-b-155 {
  padding-bottom: 155px;
}

.p-t-155 {
  padding-top: 155px;
}

.p-r-155 {
  padding-right: 155px;
}

.p-l-155 {
  padding-left: 155px;
}

.m-b-155 {
  margin-bottom: 155px;
}

.m-t-155 {
  margin-top: 155px;
}

.m-r-155 {
  margin-right: 155px;
}

.m-l-155 {
  margin-left: 155px;
}

.p-b-160 {
  padding-bottom: 160px;
}

.p-t-160 {
  padding-top: 160px;
}

.p-r-160 {
  padding-right: 160px;
}

.p-l-160 {
  padding-left: 160px;
}

.m-b-160 {
  margin-bottom: 160px;
}

.m-t-160 {
  margin-top: 160px;
}

.m-r-160 {
  margin-right: 160px;
}

.m-l-160 {
  margin-left: 160px;
}

.p-b-165 {
  padding-bottom: 165px;
}

.p-t-165 {
  padding-top: 165px;
}

.p-r-165 {
  padding-right: 165px;
}

.p-l-165 {
  padding-left: 165px;
}

.m-b-165 {
  margin-bottom: 165px;
}

.m-t-165 {
  margin-top: 165px;
}

.m-r-165 {
  margin-right: 165px;
}

.m-l-165 {
  margin-left: 165px;
}

.p-b-170 {
  padding-bottom: 170px;
}

.p-t-170 {
  padding-top: 170px;
}

.p-r-170 {
  padding-right: 170px;
}

.p-l-170 {
  padding-left: 170px;
}

.m-b-170 {
  margin-bottom: 170px;
}

.m-t-170 {
  margin-top: 170px;
}

.m-r-170 {
  margin-right: 170px;
}

.m-l-170 {
  margin-left: 170px;
}

.p-b-175 {
  padding-bottom: 175px;
}

.p-t-175 {
  padding-top: 175px;
}

.p-r-175 {
  padding-right: 175px;
}

.p-l-175 {
  padding-left: 175px;
}

.m-b-175 {
  margin-bottom: 175px;
}

.m-t-175 {
  margin-top: 175px;
}

.m-r-175 {
  margin-right: 175px;
}

.m-l-175 {
  margin-left: 175px;
}

.p-b-180 {
  padding-bottom: 180px;
}

.p-t-180 {
  padding-top: 180px;
}

.p-r-180 {
  padding-right: 180px;
}

.p-l-180 {
  padding-left: 180px;
}

.m-b-180 {
  margin-bottom: 180px;
}

.m-t-180 {
  margin-top: 180px;
}

.m-r-180 {
  margin-right: 180px;
}

.m-l-180 {
  margin-left: 180px;
}

.p-b-185 {
  padding-bottom: 185px;
}

.p-t-185 {
  padding-top: 185px;
}

.p-r-185 {
  padding-right: 185px;
}

.p-l-185 {
  padding-left: 185px;
}

.m-b-185 {
  margin-bottom: 185px;
}

.m-t-185 {
  margin-top: 185px;
}

.m-r-185 {
  margin-right: 185px;
}

.m-l-185 {
  margin-left: 185px;
}

.p-b-190 {
  padding-bottom: 190px;
}

.p-t-190 {
  padding-top: 190px;
}

.p-r-190 {
  padding-right: 190px;
}

.p-l-190 {
  padding-left: 190px;
}

.m-b-190 {
  margin-bottom: 190px;
}

.m-t-190 {
  margin-top: 190px;
}

.m-r-190 {
  margin-right: 190px;
}

.m-l-190 {
  margin-left: 190px;
}

.p-b-195 {
  padding-bottom: 195px;
}

.p-t-195 {
  padding-top: 195px;
}

.p-r-195 {
  padding-right: 195px;
}

.p-l-195 {
  padding-left: 195px;
}

.m-b-195 {
  margin-bottom: 195px;
}

.m-t-195 {
  margin-top: 195px;
}

.m-r-195 {
  margin-right: 195px;
}

.m-l-195 {
  margin-left: 195px;
}

.p-b-200 {
  padding-bottom: 200px;
}

.p-t-200 {
  padding-top: 200px;
}

.p-r-200 {
  padding-right: 200px;
}

.p-l-200 {
  padding-left: 200px;
}

.m-b-200 {
  margin-bottom: 200px;
}

.m-t-200 {
  margin-top: 200px;
}

.m-r-200 {
  margin-right: 200px;
}

.m-l-200 {
  margin-left: 200px;
}

.p-b-205 {
  padding-bottom: 205px;
}

.p-t-205 {
  padding-top: 205px;
}

.p-r-205 {
  padding-right: 205px;
}

.p-l-205 {
  padding-left: 205px;
}

.m-b-205 {
  margin-bottom: 205px;
}

.m-t-205 {
  margin-top: 205px;
}

.m-r-205 {
  margin-right: 205px;
}

.m-l-205 {
  margin-left: 205px;
}

.p-b-210 {
  padding-bottom: 210px;
}

.p-t-210 {
  padding-top: 210px;
}

.p-r-210 {
  padding-right: 210px;
}

.p-l-210 {
  padding-left: 210px;
}

.m-b-210 {
  margin-bottom: 210px;
}

.m-t-210 {
  margin-top: 210px;
}

.m-r-210 {
  margin-right: 210px;
}

.m-l-210 {
  margin-left: 210px;
}

.p-b-215 {
  padding-bottom: 215px;
}

.p-t-215 {
  padding-top: 215px;
}

.p-r-215 {
  padding-right: 215px;
}

.p-l-215 {
  padding-left: 215px;
}

.m-b-215 {
  margin-bottom: 215px;
}

.m-t-215 {
  margin-top: 215px;
}

.m-r-215 {
  margin-right: 215px;
}

.m-l-215 {
  margin-left: 215px;
}

.p-b-220 {
  padding-bottom: 220px;
}

.p-t-220 {
  padding-top: 220px;
}

.p-r-220 {
  padding-right: 220px;
}

.p-l-220 {
  padding-left: 220px;
}

.m-b-220 {
  margin-bottom: 220px;
}

.m-t-220 {
  margin-top: 220px;
}

.m-r-220 {
  margin-right: 220px;
}

.m-l-220 {
  margin-left: 220px;
}

.p-b-225 {
  padding-bottom: 225px;
}

.p-t-225 {
  padding-top: 225px;
}

.p-r-225 {
  padding-right: 225px;
}

.p-l-225 {
  padding-left: 225px;
}

.m-b-225 {
  margin-bottom: 225px;
}

.m-t-225 {
  margin-top: 225px;
}

.m-r-225 {
  margin-right: 225px;
}

.m-l-225 {
  margin-left: 225px;
}

.p-b-230 {
  padding-bottom: 230px;
}

.p-t-230 {
  padding-top: 230px;
}

.p-r-230 {
  padding-right: 230px;
}

.p-l-230 {
  padding-left: 230px;
}

.m-b-230 {
  margin-bottom: 230px;
}

.m-t-230 {
  margin-top: 230px;
}

.m-r-230 {
  margin-right: 230px;
}

.m-l-230 {
  margin-left: 230px;
}

.p-b-235 {
  padding-bottom: 235px;
}

.p-t-235 {
  padding-top: 235px;
}

.p-r-235 {
  padding-right: 235px;
}

.p-l-235 {
  padding-left: 235px;
}

.m-b-235 {
  margin-bottom: 235px;
}

.m-t-235 {
  margin-top: 235px;
}

.m-r-235 {
  margin-right: 235px;
}

.m-l-235 {
  margin-left: 235px;
}

.p-b-240 {
  padding-bottom: 240px;
}

.p-t-240 {
  padding-top: 240px;
}

.p-r-240 {
  padding-right: 240px;
}

.p-l-240 {
  padding-left: 240px;
}

.m-b-240 {
  margin-bottom: 240px;
}

.m-t-240 {
  margin-top: 240px;
}

.m-r-240 {
  margin-right: 240px;
}

.m-l-240 {
  margin-left: 240px;
}

.p-b-245 {
  padding-bottom: 245px;
}

.p-t-245 {
  padding-top: 245px;
}

.p-r-245 {
  padding-right: 245px;
}

.p-l-245 {
  padding-left: 245px;
}

.m-b-245 {
  margin-bottom: 245px;
}

.m-t-245 {
  margin-top: 245px;
}

.m-r-245 {
  margin-right: 245px;
}

.m-l-245 {
  margin-left: 245px;
}

.p-b-250 {
  padding-bottom: 250px;
}

.p-t-250 {
  padding-top: 250px;
}

.p-r-250 {
  padding-right: 250px;
}

.p-l-250 {
  padding-left: 250px;
}

.m-b-250 {
  margin-bottom: 250px;
}

.m-t-250 {
  margin-top: 250px;
}

.m-r-250 {
  margin-right: 250px;
}

.m-l-250 {
  margin-left: 250px;
}

.p-b-255 {
  padding-bottom: 255px;
}

.p-t-255 {
  padding-top: 255px;
}

.p-r-255 {
  padding-right: 255px;
}

.p-l-255 {
  padding-left: 255px;
}

.m-b-255 {
  margin-bottom: 255px;
}

.m-t-255 {
  margin-top: 255px;
}

.m-r-255 {
  margin-right: 255px;
}

.m-l-255 {
  margin-left: 255px;
}

.p-b-260 {
  padding-bottom: 260px;
}

.p-t-260 {
  padding-top: 260px;
}

.p-r-260 {
  padding-right: 260px;
}

.p-l-260 {
  padding-left: 260px;
}

.m-b-260 {
  margin-bottom: 260px;
}

.m-t-260 {
  margin-top: 260px;
}

.m-r-260 {
  margin-right: 260px;
}

.m-l-260 {
  margin-left: 260px;
}

.p-b-265 {
  padding-bottom: 265px;
}

.p-t-265 {
  padding-top: 265px;
}

.p-r-265 {
  padding-right: 265px;
}

.p-l-265 {
  padding-left: 265px;
}

.m-b-265 {
  margin-bottom: 265px;
}

.m-t-265 {
  margin-top: 265px;
}

.m-r-265 {
  margin-right: 265px;
}

.m-l-265 {
  margin-left: 265px;
}

.p-b-270 {
  padding-bottom: 270px;
}

.p-t-270 {
  padding-top: 270px;
}

.p-r-270 {
  padding-right: 270px;
}

.p-l-270 {
  padding-left: 270px;
}

.m-b-270 {
  margin-bottom: 270px;
}

.m-t-270 {
  margin-top: 270px;
}

.m-r-270 {
  margin-right: 270px;
}

.m-l-270 {
  margin-left: 270px;
}

.p-b-275 {
  padding-bottom: 275px;
}

.p-t-275 {
  padding-top: 275px;
}

.p-r-275 {
  padding-right: 275px;
}

.p-l-275 {
  padding-left: 275px;
}

.m-b-275 {
  margin-bottom: 275px;
}

.m-t-275 {
  margin-top: 275px;
}

.m-r-275 {
  margin-right: 275px;
}

.m-l-275 {
  margin-left: 275px;
}

.p-b-280 {
  padding-bottom: 280px;
}

.p-t-280 {
  padding-top: 280px;
}

.p-r-280 {
  padding-right: 280px;
}

.p-l-280 {
  padding-left: 280px;
}

.m-b-280 {
  margin-bottom: 280px;
}

.m-t-280 {
  margin-top: 280px;
}

.m-r-280 {
  margin-right: 280px;
}

.m-l-280 {
  margin-left: 280px;
}

.p-b-285 {
  padding-bottom: 285px;
}

.p-t-285 {
  padding-top: 285px;
}

.p-r-285 {
  padding-right: 285px;
}

.p-l-285 {
  padding-left: 285px;
}

.m-b-285 {
  margin-bottom: 285px;
}

.m-t-285 {
  margin-top: 285px;
}

.m-r-285 {
  margin-right: 285px;
}

.m-l-285 {
  margin-left: 285px;
}

.p-b-290 {
  padding-bottom: 290px;
}

.p-t-290 {
  padding-top: 290px;
}

.p-r-290 {
  padding-right: 290px;
}

.p-l-290 {
  padding-left: 290px;
}

.m-b-290 {
  margin-bottom: 290px;
}

.m-t-290 {
  margin-top: 290px;
}

.m-r-290 {
  margin-right: 290px;
}

.m-l-290 {
  margin-left: 290px;
}

.p-b-295 {
  padding-bottom: 295px;
}

.p-t-295 {
  padding-top: 295px;
}

.p-r-295 {
  padding-right: 295px;
}

.p-l-295 {
  padding-left: 295px;
}

.m-b-295 {
  margin-bottom: 295px;
}

.m-t-295 {
  margin-top: 295px;
}

.m-r-295 {
  margin-right: 295px;
}

.m-l-295 {
  margin-left: 295px;
}

.p-b-300 {
  padding-bottom: 300px;
}

.p-t-300 {
  padding-top: 300px;
}

.p-r-300 {
  padding-right: 300px;
}

.p-l-300 {
  padding-left: 300px;
}

.m-b-300 {
  margin-bottom: 300px;
}

.m-t-300 {
  margin-top: 300px;
}

.m-r-300 {
  margin-right: 300px;
}

.m-l-300 {
  margin-left: 300px;
}

@media (max-width: 1199px) {
  .p-lg-b-0 {
    padding-bottom: 0px;
  }
  .p-lg-t-0 {
    padding-top: 0px;
  }
  .p-lg-r-0 {
    padding-right: 0px;
  }
  .p-lg-l-0 {
    padding-left: 0px;
  }
  .m-lg-b-0 {
    margin-bottom: 0px;
  }
  .m-lg-t-0 {
    margin-top: 0px;
  }
  .m-lg-r-0 {
    margin-right: 0px;
  }
  .m-lg-l-0 {
    margin-left: 0px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-5 {
    padding-bottom: 5px;
  }
  .p-lg-t-5 {
    padding-top: 5px;
  }
  .p-lg-r-5 {
    padding-right: 5px;
  }
  .p-lg-l-5 {
    padding-left: 5px;
  }
  .m-lg-b-5 {
    margin-bottom: 5px;
  }
  .m-lg-t-5 {
    margin-top: 5px;
  }
  .m-lg-r-5 {
    margin-right: 5px;
  }
  .m-lg-l-5 {
    margin-left: 5px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-10 {
    padding-bottom: 10px;
  }
  .p-lg-t-10 {
    padding-top: 10px;
  }
  .p-lg-r-10 {
    padding-right: 10px;
  }
  .p-lg-l-10 {
    padding-left: 10px;
  }
  .m-lg-b-10 {
    margin-bottom: 10px;
  }
  .m-lg-t-10 {
    margin-top: 10px;
  }
  .m-lg-r-10 {
    margin-right: 10px;
  }
  .m-lg-l-10 {
    margin-left: 10px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-15 {
    padding-bottom: 15px;
  }
  .p-lg-t-15 {
    padding-top: 15px;
  }
  .p-lg-r-15 {
    padding-right: 15px;
  }
  .p-lg-l-15 {
    padding-left: 15px;
  }
  .m-lg-b-15 {
    margin-bottom: 15px;
  }
  .m-lg-t-15 {
    margin-top: 15px;
  }
  .m-lg-r-15 {
    margin-right: 15px;
  }
  .m-lg-l-15 {
    margin-left: 15px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-20 {
    padding-bottom: 20px;
  }
  .p-lg-t-20 {
    padding-top: 20px;
  }
  .p-lg-r-20 {
    padding-right: 20px;
  }
  .p-lg-l-20 {
    padding-left: 20px;
  }
  .m-lg-b-20 {
    margin-bottom: 20px;
  }
  .m-lg-t-20 {
    margin-top: 20px;
  }
  .m-lg-r-20 {
    margin-right: 20px;
  }
  .m-lg-l-20 {
    margin-left: 20px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-25 {
    padding-bottom: 25px;
  }
  .p-lg-t-25 {
    padding-top: 25px;
  }
  .p-lg-r-25 {
    padding-right: 25px;
  }
  .p-lg-l-25 {
    padding-left: 25px;
  }
  .m-lg-b-25 {
    margin-bottom: 25px;
  }
  .m-lg-t-25 {
    margin-top: 25px;
  }
  .m-lg-r-25 {
    margin-right: 25px;
  }
  .m-lg-l-25 {
    margin-left: 25px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-30 {
    padding-bottom: 30px;
  }
  .p-lg-t-30 {
    padding-top: 30px;
  }
  .p-lg-r-30 {
    padding-right: 30px;
  }
  .p-lg-l-30 {
    padding-left: 30px;
  }
  .m-lg-b-30 {
    margin-bottom: 30px;
  }
  .m-lg-t-30 {
    margin-top: 30px;
  }
  .m-lg-r-30 {
    margin-right: 30px;
  }
  .m-lg-l-30 {
    margin-left: 30px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-35 {
    padding-bottom: 35px;
  }
  .p-lg-t-35 {
    padding-top: 35px;
  }
  .p-lg-r-35 {
    padding-right: 35px;
  }
  .p-lg-l-35 {
    padding-left: 35px;
  }
  .m-lg-b-35 {
    margin-bottom: 35px;
  }
  .m-lg-t-35 {
    margin-top: 35px;
  }
  .m-lg-r-35 {
    margin-right: 35px;
  }
  .m-lg-l-35 {
    margin-left: 35px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-40 {
    padding-bottom: 40px;
  }
  .p-lg-t-40 {
    padding-top: 40px;
  }
  .p-lg-r-40 {
    padding-right: 40px;
  }
  .p-lg-l-40 {
    padding-left: 40px;
  }
  .m-lg-b-40 {
    margin-bottom: 40px;
  }
  .m-lg-t-40 {
    margin-top: 40px;
  }
  .m-lg-r-40 {
    margin-right: 40px;
  }
  .m-lg-l-40 {
    margin-left: 40px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-45 {
    padding-bottom: 45px;
  }
  .p-lg-t-45 {
    padding-top: 45px;
  }
  .p-lg-r-45 {
    padding-right: 45px;
  }
  .p-lg-l-45 {
    padding-left: 45px;
  }
  .m-lg-b-45 {
    margin-bottom: 45px;
  }
  .m-lg-t-45 {
    margin-top: 45px;
  }
  .m-lg-r-45 {
    margin-right: 45px;
  }
  .m-lg-l-45 {
    margin-left: 45px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-50 {
    padding-bottom: 50px;
  }
  .p-lg-t-50 {
    padding-top: 50px;
  }
  .p-lg-r-50 {
    padding-right: 50px;
  }
  .p-lg-l-50 {
    padding-left: 50px;
  }
  .m-lg-b-50 {
    margin-bottom: 50px;
  }
  .m-lg-t-50 {
    margin-top: 50px;
  }
  .m-lg-r-50 {
    margin-right: 50px;
  }
  .m-lg-l-50 {
    margin-left: 50px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-55 {
    padding-bottom: 55px;
  }
  .p-lg-t-55 {
    padding-top: 55px;
  }
  .p-lg-r-55 {
    padding-right: 55px;
  }
  .p-lg-l-55 {
    padding-left: 55px;
  }
  .m-lg-b-55 {
    margin-bottom: 55px;
  }
  .m-lg-t-55 {
    margin-top: 55px;
  }
  .m-lg-r-55 {
    margin-right: 55px;
  }
  .m-lg-l-55 {
    margin-left: 55px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-60 {
    padding-bottom: 60px;
  }
  .p-lg-t-60 {
    padding-top: 60px;
  }
  .p-lg-r-60 {
    padding-right: 60px;
  }
  .p-lg-l-60 {
    padding-left: 60px;
  }
  .m-lg-b-60 {
    margin-bottom: 60px;
  }
  .m-lg-t-60 {
    margin-top: 60px;
  }
  .m-lg-r-60 {
    margin-right: 60px;
  }
  .m-lg-l-60 {
    margin-left: 60px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-65 {
    padding-bottom: 65px;
  }
  .p-lg-t-65 {
    padding-top: 65px;
  }
  .p-lg-r-65 {
    padding-right: 65px;
  }
  .p-lg-l-65 {
    padding-left: 65px;
  }
  .m-lg-b-65 {
    margin-bottom: 65px;
  }
  .m-lg-t-65 {
    margin-top: 65px;
  }
  .m-lg-r-65 {
    margin-right: 65px;
  }
  .m-lg-l-65 {
    margin-left: 65px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-70 {
    padding-bottom: 70px;
  }
  .p-lg-t-70 {
    padding-top: 70px;
  }
  .p-lg-r-70 {
    padding-right: 70px;
  }
  .p-lg-l-70 {
    padding-left: 70px;
  }
  .m-lg-b-70 {
    margin-bottom: 70px;
  }
  .m-lg-t-70 {
    margin-top: 70px;
  }
  .m-lg-r-70 {
    margin-right: 70px;
  }
  .m-lg-l-70 {
    margin-left: 70px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-75 {
    padding-bottom: 75px;
  }
  .p-lg-t-75 {
    padding-top: 75px;
  }
  .p-lg-r-75 {
    padding-right: 75px;
  }
  .p-lg-l-75 {
    padding-left: 75px;
  }
  .m-lg-b-75 {
    margin-bottom: 75px;
  }
  .m-lg-t-75 {
    margin-top: 75px;
  }
  .m-lg-r-75 {
    margin-right: 75px;
  }
  .m-lg-l-75 {
    margin-left: 75px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-80 {
    padding-bottom: 80px;
  }
  .p-lg-t-80 {
    padding-top: 80px;
  }
  .p-lg-r-80 {
    padding-right: 80px;
  }
  .p-lg-l-80 {
    padding-left: 80px;
  }
  .m-lg-b-80 {
    margin-bottom: 80px;
  }
  .m-lg-t-80 {
    margin-top: 80px;
  }
  .m-lg-r-80 {
    margin-right: 80px;
  }
  .m-lg-l-80 {
    margin-left: 80px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-85 {
    padding-bottom: 85px;
  }
  .p-lg-t-85 {
    padding-top: 85px;
  }
  .p-lg-r-85 {
    padding-right: 85px;
  }
  .p-lg-l-85 {
    padding-left: 85px;
  }
  .m-lg-b-85 {
    margin-bottom: 85px;
  }
  .m-lg-t-85 {
    margin-top: 85px;
  }
  .m-lg-r-85 {
    margin-right: 85px;
  }
  .m-lg-l-85 {
    margin-left: 85px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-90 {
    padding-bottom: 90px;
  }
  .p-lg-t-90 {
    padding-top: 90px;
  }
  .p-lg-r-90 {
    padding-right: 90px;
  }
  .p-lg-l-90 {
    padding-left: 90px;
  }
  .m-lg-b-90 {
    margin-bottom: 90px;
  }
  .m-lg-t-90 {
    margin-top: 90px;
  }
  .m-lg-r-90 {
    margin-right: 90px;
  }
  .m-lg-l-90 {
    margin-left: 90px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-95 {
    padding-bottom: 95px;
  }
  .p-lg-t-95 {
    padding-top: 95px;
  }
  .p-lg-r-95 {
    padding-right: 95px;
  }
  .p-lg-l-95 {
    padding-left: 95px;
  }
  .m-lg-b-95 {
    margin-bottom: 95px;
  }
  .m-lg-t-95 {
    margin-top: 95px;
  }
  .m-lg-r-95 {
    margin-right: 95px;
  }
  .m-lg-l-95 {
    margin-left: 95px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-100 {
    padding-bottom: 100px;
  }
  .p-lg-t-100 {
    padding-top: 100px;
  }
  .p-lg-r-100 {
    padding-right: 100px;
  }
  .p-lg-l-100 {
    padding-left: 100px;
  }
  .m-lg-b-100 {
    margin-bottom: 100px;
  }
  .m-lg-t-100 {
    margin-top: 100px;
  }
  .m-lg-r-100 {
    margin-right: 100px;
  }
  .m-lg-l-100 {
    margin-left: 100px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-105 {
    padding-bottom: 105px;
  }
  .p-lg-t-105 {
    padding-top: 105px;
  }
  .p-lg-r-105 {
    padding-right: 105px;
  }
  .p-lg-l-105 {
    padding-left: 105px;
  }
  .m-lg-b-105 {
    margin-bottom: 105px;
  }
  .m-lg-t-105 {
    margin-top: 105px;
  }
  .m-lg-r-105 {
    margin-right: 105px;
  }
  .m-lg-l-105 {
    margin-left: 105px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-110 {
    padding-bottom: 110px;
  }
  .p-lg-t-110 {
    padding-top: 110px;
  }
  .p-lg-r-110 {
    padding-right: 110px;
  }
  .p-lg-l-110 {
    padding-left: 110px;
  }
  .m-lg-b-110 {
    margin-bottom: 110px;
  }
  .m-lg-t-110 {
    margin-top: 110px;
  }
  .m-lg-r-110 {
    margin-right: 110px;
  }
  .m-lg-l-110 {
    margin-left: 110px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-115 {
    padding-bottom: 115px;
  }
  .p-lg-t-115 {
    padding-top: 115px;
  }
  .p-lg-r-115 {
    padding-right: 115px;
  }
  .p-lg-l-115 {
    padding-left: 115px;
  }
  .m-lg-b-115 {
    margin-bottom: 115px;
  }
  .m-lg-t-115 {
    margin-top: 115px;
  }
  .m-lg-r-115 {
    margin-right: 115px;
  }
  .m-lg-l-115 {
    margin-left: 115px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-120 {
    padding-bottom: 120px;
  }
  .p-lg-t-120 {
    padding-top: 120px;
  }
  .p-lg-r-120 {
    padding-right: 120px;
  }
  .p-lg-l-120 {
    padding-left: 120px;
  }
  .m-lg-b-120 {
    margin-bottom: 120px;
  }
  .m-lg-t-120 {
    margin-top: 120px;
  }
  .m-lg-r-120 {
    margin-right: 120px;
  }
  .m-lg-l-120 {
    margin-left: 120px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-125 {
    padding-bottom: 125px;
  }
  .p-lg-t-125 {
    padding-top: 125px;
  }
  .p-lg-r-125 {
    padding-right: 125px;
  }
  .p-lg-l-125 {
    padding-left: 125px;
  }
  .m-lg-b-125 {
    margin-bottom: 125px;
  }
  .m-lg-t-125 {
    margin-top: 125px;
  }
  .m-lg-r-125 {
    margin-right: 125px;
  }
  .m-lg-l-125 {
    margin-left: 125px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-130 {
    padding-bottom: 130px;
  }
  .p-lg-t-130 {
    padding-top: 130px;
  }
  .p-lg-r-130 {
    padding-right: 130px;
  }
  .p-lg-l-130 {
    padding-left: 130px;
  }
  .m-lg-b-130 {
    margin-bottom: 130px;
  }
  .m-lg-t-130 {
    margin-top: 130px;
  }
  .m-lg-r-130 {
    margin-right: 130px;
  }
  .m-lg-l-130 {
    margin-left: 130px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-135 {
    padding-bottom: 135px;
  }
  .p-lg-t-135 {
    padding-top: 135px;
  }
  .p-lg-r-135 {
    padding-right: 135px;
  }
  .p-lg-l-135 {
    padding-left: 135px;
  }
  .m-lg-b-135 {
    margin-bottom: 135px;
  }
  .m-lg-t-135 {
    margin-top: 135px;
  }
  .m-lg-r-135 {
    margin-right: 135px;
  }
  .m-lg-l-135 {
    margin-left: 135px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-140 {
    padding-bottom: 140px;
  }
  .p-lg-t-140 {
    padding-top: 140px;
  }
  .p-lg-r-140 {
    padding-right: 140px;
  }
  .p-lg-l-140 {
    padding-left: 140px;
  }
  .m-lg-b-140 {
    margin-bottom: 140px;
  }
  .m-lg-t-140 {
    margin-top: 140px;
  }
  .m-lg-r-140 {
    margin-right: 140px;
  }
  .m-lg-l-140 {
    margin-left: 140px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-145 {
    padding-bottom: 145px;
  }
  .p-lg-t-145 {
    padding-top: 145px;
  }
  .p-lg-r-145 {
    padding-right: 145px;
  }
  .p-lg-l-145 {
    padding-left: 145px;
  }
  .m-lg-b-145 {
    margin-bottom: 145px;
  }
  .m-lg-t-145 {
    margin-top: 145px;
  }
  .m-lg-r-145 {
    margin-right: 145px;
  }
  .m-lg-l-145 {
    margin-left: 145px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-150 {
    padding-bottom: 150px;
  }
  .p-lg-t-150 {
    padding-top: 150px;
  }
  .p-lg-r-150 {
    padding-right: 150px;
  }
  .p-lg-l-150 {
    padding-left: 150px;
  }
  .m-lg-b-150 {
    margin-bottom: 150px;
  }
  .m-lg-t-150 {
    margin-top: 150px;
  }
  .m-lg-r-150 {
    margin-right: 150px;
  }
  .m-lg-l-150 {
    margin-left: 150px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-155 {
    padding-bottom: 155px;
  }
  .p-lg-t-155 {
    padding-top: 155px;
  }
  .p-lg-r-155 {
    padding-right: 155px;
  }
  .p-lg-l-155 {
    padding-left: 155px;
  }
  .m-lg-b-155 {
    margin-bottom: 155px;
  }
  .m-lg-t-155 {
    margin-top: 155px;
  }
  .m-lg-r-155 {
    margin-right: 155px;
  }
  .m-lg-l-155 {
    margin-left: 155px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-160 {
    padding-bottom: 160px;
  }
  .p-lg-t-160 {
    padding-top: 160px;
  }
  .p-lg-r-160 {
    padding-right: 160px;
  }
  .p-lg-l-160 {
    padding-left: 160px;
  }
  .m-lg-b-160 {
    margin-bottom: 160px;
  }
  .m-lg-t-160 {
    margin-top: 160px;
  }
  .m-lg-r-160 {
    margin-right: 160px;
  }
  .m-lg-l-160 {
    margin-left: 160px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-165 {
    padding-bottom: 165px;
  }
  .p-lg-t-165 {
    padding-top: 165px;
  }
  .p-lg-r-165 {
    padding-right: 165px;
  }
  .p-lg-l-165 {
    padding-left: 165px;
  }
  .m-lg-b-165 {
    margin-bottom: 165px;
  }
  .m-lg-t-165 {
    margin-top: 165px;
  }
  .m-lg-r-165 {
    margin-right: 165px;
  }
  .m-lg-l-165 {
    margin-left: 165px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-170 {
    padding-bottom: 170px;
  }
  .p-lg-t-170 {
    padding-top: 170px;
  }
  .p-lg-r-170 {
    padding-right: 170px;
  }
  .p-lg-l-170 {
    padding-left: 170px;
  }
  .m-lg-b-170 {
    margin-bottom: 170px;
  }
  .m-lg-t-170 {
    margin-top: 170px;
  }
  .m-lg-r-170 {
    margin-right: 170px;
  }
  .m-lg-l-170 {
    margin-left: 170px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-175 {
    padding-bottom: 175px;
  }
  .p-lg-t-175 {
    padding-top: 175px;
  }
  .p-lg-r-175 {
    padding-right: 175px;
  }
  .p-lg-l-175 {
    padding-left: 175px;
  }
  .m-lg-b-175 {
    margin-bottom: 175px;
  }
  .m-lg-t-175 {
    margin-top: 175px;
  }
  .m-lg-r-175 {
    margin-right: 175px;
  }
  .m-lg-l-175 {
    margin-left: 175px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-180 {
    padding-bottom: 180px;
  }
  .p-lg-t-180 {
    padding-top: 180px;
  }
  .p-lg-r-180 {
    padding-right: 180px;
  }
  .p-lg-l-180 {
    padding-left: 180px;
  }
  .m-lg-b-180 {
    margin-bottom: 180px;
  }
  .m-lg-t-180 {
    margin-top: 180px;
  }
  .m-lg-r-180 {
    margin-right: 180px;
  }
  .m-lg-l-180 {
    margin-left: 180px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-185 {
    padding-bottom: 185px;
  }
  .p-lg-t-185 {
    padding-top: 185px;
  }
  .p-lg-r-185 {
    padding-right: 185px;
  }
  .p-lg-l-185 {
    padding-left: 185px;
  }
  .m-lg-b-185 {
    margin-bottom: 185px;
  }
  .m-lg-t-185 {
    margin-top: 185px;
  }
  .m-lg-r-185 {
    margin-right: 185px;
  }
  .m-lg-l-185 {
    margin-left: 185px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-190 {
    padding-bottom: 190px;
  }
  .p-lg-t-190 {
    padding-top: 190px;
  }
  .p-lg-r-190 {
    padding-right: 190px;
  }
  .p-lg-l-190 {
    padding-left: 190px;
  }
  .m-lg-b-190 {
    margin-bottom: 190px;
  }
  .m-lg-t-190 {
    margin-top: 190px;
  }
  .m-lg-r-190 {
    margin-right: 190px;
  }
  .m-lg-l-190 {
    margin-left: 190px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-195 {
    padding-bottom: 195px;
  }
  .p-lg-t-195 {
    padding-top: 195px;
  }
  .p-lg-r-195 {
    padding-right: 195px;
  }
  .p-lg-l-195 {
    padding-left: 195px;
  }
  .m-lg-b-195 {
    margin-bottom: 195px;
  }
  .m-lg-t-195 {
    margin-top: 195px;
  }
  .m-lg-r-195 {
    margin-right: 195px;
  }
  .m-lg-l-195 {
    margin-left: 195px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-200 {
    padding-bottom: 200px;
  }
  .p-lg-t-200 {
    padding-top: 200px;
  }
  .p-lg-r-200 {
    padding-right: 200px;
  }
  .p-lg-l-200 {
    padding-left: 200px;
  }
  .m-lg-b-200 {
    margin-bottom: 200px;
  }
  .m-lg-t-200 {
    margin-top: 200px;
  }
  .m-lg-r-200 {
    margin-right: 200px;
  }
  .m-lg-l-200 {
    margin-left: 200px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-205 {
    padding-bottom: 205px;
  }
  .p-lg-t-205 {
    padding-top: 205px;
  }
  .p-lg-r-205 {
    padding-right: 205px;
  }
  .p-lg-l-205 {
    padding-left: 205px;
  }
  .m-lg-b-205 {
    margin-bottom: 205px;
  }
  .m-lg-t-205 {
    margin-top: 205px;
  }
  .m-lg-r-205 {
    margin-right: 205px;
  }
  .m-lg-l-205 {
    margin-left: 205px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-210 {
    padding-bottom: 210px;
  }
  .p-lg-t-210 {
    padding-top: 210px;
  }
  .p-lg-r-210 {
    padding-right: 210px;
  }
  .p-lg-l-210 {
    padding-left: 210px;
  }
  .m-lg-b-210 {
    margin-bottom: 210px;
  }
  .m-lg-t-210 {
    margin-top: 210px;
  }
  .m-lg-r-210 {
    margin-right: 210px;
  }
  .m-lg-l-210 {
    margin-left: 210px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-215 {
    padding-bottom: 215px;
  }
  .p-lg-t-215 {
    padding-top: 215px;
  }
  .p-lg-r-215 {
    padding-right: 215px;
  }
  .p-lg-l-215 {
    padding-left: 215px;
  }
  .m-lg-b-215 {
    margin-bottom: 215px;
  }
  .m-lg-t-215 {
    margin-top: 215px;
  }
  .m-lg-r-215 {
    margin-right: 215px;
  }
  .m-lg-l-215 {
    margin-left: 215px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-220 {
    padding-bottom: 220px;
  }
  .p-lg-t-220 {
    padding-top: 220px;
  }
  .p-lg-r-220 {
    padding-right: 220px;
  }
  .p-lg-l-220 {
    padding-left: 220px;
  }
  .m-lg-b-220 {
    margin-bottom: 220px;
  }
  .m-lg-t-220 {
    margin-top: 220px;
  }
  .m-lg-r-220 {
    margin-right: 220px;
  }
  .m-lg-l-220 {
    margin-left: 220px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-225 {
    padding-bottom: 225px;
  }
  .p-lg-t-225 {
    padding-top: 225px;
  }
  .p-lg-r-225 {
    padding-right: 225px;
  }
  .p-lg-l-225 {
    padding-left: 225px;
  }
  .m-lg-b-225 {
    margin-bottom: 225px;
  }
  .m-lg-t-225 {
    margin-top: 225px;
  }
  .m-lg-r-225 {
    margin-right: 225px;
  }
  .m-lg-l-225 {
    margin-left: 225px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-230 {
    padding-bottom: 230px;
  }
  .p-lg-t-230 {
    padding-top: 230px;
  }
  .p-lg-r-230 {
    padding-right: 230px;
  }
  .p-lg-l-230 {
    padding-left: 230px;
  }
  .m-lg-b-230 {
    margin-bottom: 230px;
  }
  .m-lg-t-230 {
    margin-top: 230px;
  }
  .m-lg-r-230 {
    margin-right: 230px;
  }
  .m-lg-l-230 {
    margin-left: 230px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-235 {
    padding-bottom: 235px;
  }
  .p-lg-t-235 {
    padding-top: 235px;
  }
  .p-lg-r-235 {
    padding-right: 235px;
  }
  .p-lg-l-235 {
    padding-left: 235px;
  }
  .m-lg-b-235 {
    margin-bottom: 235px;
  }
  .m-lg-t-235 {
    margin-top: 235px;
  }
  .m-lg-r-235 {
    margin-right: 235px;
  }
  .m-lg-l-235 {
    margin-left: 235px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-240 {
    padding-bottom: 240px;
  }
  .p-lg-t-240 {
    padding-top: 240px;
  }
  .p-lg-r-240 {
    padding-right: 240px;
  }
  .p-lg-l-240 {
    padding-left: 240px;
  }
  .m-lg-b-240 {
    margin-bottom: 240px;
  }
  .m-lg-t-240 {
    margin-top: 240px;
  }
  .m-lg-r-240 {
    margin-right: 240px;
  }
  .m-lg-l-240 {
    margin-left: 240px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-245 {
    padding-bottom: 245px;
  }
  .p-lg-t-245 {
    padding-top: 245px;
  }
  .p-lg-r-245 {
    padding-right: 245px;
  }
  .p-lg-l-245 {
    padding-left: 245px;
  }
  .m-lg-b-245 {
    margin-bottom: 245px;
  }
  .m-lg-t-245 {
    margin-top: 245px;
  }
  .m-lg-r-245 {
    margin-right: 245px;
  }
  .m-lg-l-245 {
    margin-left: 245px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-250 {
    padding-bottom: 250px;
  }
  .p-lg-t-250 {
    padding-top: 250px;
  }
  .p-lg-r-250 {
    padding-right: 250px;
  }
  .p-lg-l-250 {
    padding-left: 250px;
  }
  .m-lg-b-250 {
    margin-bottom: 250px;
  }
  .m-lg-t-250 {
    margin-top: 250px;
  }
  .m-lg-r-250 {
    margin-right: 250px;
  }
  .m-lg-l-250 {
    margin-left: 250px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-255 {
    padding-bottom: 255px;
  }
  .p-lg-t-255 {
    padding-top: 255px;
  }
  .p-lg-r-255 {
    padding-right: 255px;
  }
  .p-lg-l-255 {
    padding-left: 255px;
  }
  .m-lg-b-255 {
    margin-bottom: 255px;
  }
  .m-lg-t-255 {
    margin-top: 255px;
  }
  .m-lg-r-255 {
    margin-right: 255px;
  }
  .m-lg-l-255 {
    margin-left: 255px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-260 {
    padding-bottom: 260px;
  }
  .p-lg-t-260 {
    padding-top: 260px;
  }
  .p-lg-r-260 {
    padding-right: 260px;
  }
  .p-lg-l-260 {
    padding-left: 260px;
  }
  .m-lg-b-260 {
    margin-bottom: 260px;
  }
  .m-lg-t-260 {
    margin-top: 260px;
  }
  .m-lg-r-260 {
    margin-right: 260px;
  }
  .m-lg-l-260 {
    margin-left: 260px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-265 {
    padding-bottom: 265px;
  }
  .p-lg-t-265 {
    padding-top: 265px;
  }
  .p-lg-r-265 {
    padding-right: 265px;
  }
  .p-lg-l-265 {
    padding-left: 265px;
  }
  .m-lg-b-265 {
    margin-bottom: 265px;
  }
  .m-lg-t-265 {
    margin-top: 265px;
  }
  .m-lg-r-265 {
    margin-right: 265px;
  }
  .m-lg-l-265 {
    margin-left: 265px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-270 {
    padding-bottom: 270px;
  }
  .p-lg-t-270 {
    padding-top: 270px;
  }
  .p-lg-r-270 {
    padding-right: 270px;
  }
  .p-lg-l-270 {
    padding-left: 270px;
  }
  .m-lg-b-270 {
    margin-bottom: 270px;
  }
  .m-lg-t-270 {
    margin-top: 270px;
  }
  .m-lg-r-270 {
    margin-right: 270px;
  }
  .m-lg-l-270 {
    margin-left: 270px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-275 {
    padding-bottom: 275px;
  }
  .p-lg-t-275 {
    padding-top: 275px;
  }
  .p-lg-r-275 {
    padding-right: 275px;
  }
  .p-lg-l-275 {
    padding-left: 275px;
  }
  .m-lg-b-275 {
    margin-bottom: 275px;
  }
  .m-lg-t-275 {
    margin-top: 275px;
  }
  .m-lg-r-275 {
    margin-right: 275px;
  }
  .m-lg-l-275 {
    margin-left: 275px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-280 {
    padding-bottom: 280px;
  }
  .p-lg-t-280 {
    padding-top: 280px;
  }
  .p-lg-r-280 {
    padding-right: 280px;
  }
  .p-lg-l-280 {
    padding-left: 280px;
  }
  .m-lg-b-280 {
    margin-bottom: 280px;
  }
  .m-lg-t-280 {
    margin-top: 280px;
  }
  .m-lg-r-280 {
    margin-right: 280px;
  }
  .m-lg-l-280 {
    margin-left: 280px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-285 {
    padding-bottom: 285px;
  }
  .p-lg-t-285 {
    padding-top: 285px;
  }
  .p-lg-r-285 {
    padding-right: 285px;
  }
  .p-lg-l-285 {
    padding-left: 285px;
  }
  .m-lg-b-285 {
    margin-bottom: 285px;
  }
  .m-lg-t-285 {
    margin-top: 285px;
  }
  .m-lg-r-285 {
    margin-right: 285px;
  }
  .m-lg-l-285 {
    margin-left: 285px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-290 {
    padding-bottom: 290px;
  }
  .p-lg-t-290 {
    padding-top: 290px;
  }
  .p-lg-r-290 {
    padding-right: 290px;
  }
  .p-lg-l-290 {
    padding-left: 290px;
  }
  .m-lg-b-290 {
    margin-bottom: 290px;
  }
  .m-lg-t-290 {
    margin-top: 290px;
  }
  .m-lg-r-290 {
    margin-right: 290px;
  }
  .m-lg-l-290 {
    margin-left: 290px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-295 {
    padding-bottom: 295px;
  }
  .p-lg-t-295 {
    padding-top: 295px;
  }
  .p-lg-r-295 {
    padding-right: 295px;
  }
  .p-lg-l-295 {
    padding-left: 295px;
  }
  .m-lg-b-295 {
    margin-bottom: 295px;
  }
  .m-lg-t-295 {
    margin-top: 295px;
  }
  .m-lg-r-295 {
    margin-right: 295px;
  }
  .m-lg-l-295 {
    margin-left: 295px;
  }
}

@media (max-width: 1199px) {
  .p-lg-b-300 {
    padding-bottom: 300px;
  }
  .p-lg-t-300 {
    padding-top: 300px;
  }
  .p-lg-r-300 {
    padding-right: 300px;
  }
  .p-lg-l-300 {
    padding-left: 300px;
  }
  .m-lg-b-300 {
    margin-bottom: 300px;
  }
  .m-lg-t-300 {
    margin-top: 300px;
  }
  .m-lg-r-300 {
    margin-right: 300px;
  }
  .m-lg-l-300 {
    margin-left: 300px;
  }
}

@media (max-width: 991px) {
  .p-md-b-0 {
    padding-bottom: 0px;
  }
  .p-md-t-0 {
    padding-top: 0px;
  }
  .p-md-r-0 {
    padding-right: 0px;
  }
  .p-md-l-0 {
    padding-left: 0px;
  }
  .m-md-b-0 {
    margin-bottom: 0px;
  }
  .m-md-t-0 {
    margin-top: 0px;
  }
  .m-md-r-0 {
    margin-right: 0px;
  }
  .m-md-l-0 {
    margin-left: 0px;
  }
}

@media (max-width: 991px) {
  .p-md-b-5 {
    padding-bottom: 5px;
  }
  .p-md-t-5 {
    padding-top: 5px;
  }
  .p-md-r-5 {
    padding-right: 5px;
  }
  .p-md-l-5 {
    padding-left: 5px;
  }
  .m-md-b-5 {
    margin-bottom: 5px;
  }
  .m-md-t-5 {
    margin-top: 5px;
  }
  .m-md-r-5 {
    margin-right: 5px;
  }
  .m-md-l-5 {
    margin-left: 5px;
  }
}

@media (max-width: 991px) {
  .p-md-b-10 {
    padding-bottom: 10px;
  }
  .p-md-t-10 {
    padding-top: 10px;
  }
  .p-md-r-10 {
    padding-right: 10px;
  }
  .p-md-l-10 {
    padding-left: 10px;
  }
  .m-md-b-10 {
    margin-bottom: 10px;
  }
  .m-md-t-10 {
    margin-top: 10px;
  }
  .m-md-r-10 {
    margin-right: 10px;
  }
  .m-md-l-10 {
    margin-left: 10px;
  }
}

@media (max-width: 991px) {
  .p-md-b-15 {
    padding-bottom: 15px;
  }
  .p-md-t-15 {
    padding-top: 15px;
  }
  .p-md-r-15 {
    padding-right: 15px;
  }
  .p-md-l-15 {
    padding-left: 15px;
  }
  .m-md-b-15 {
    margin-bottom: 15px;
  }
  .m-md-t-15 {
    margin-top: 15px;
  }
  .m-md-r-15 {
    margin-right: 15px;
  }
  .m-md-l-15 {
    margin-left: 15px;
  }
}

@media (max-width: 991px) {
  .p-md-b-20 {
    padding-bottom: 20px;
  }
  .p-md-t-20 {
    padding-top: 20px;
  }
  .p-md-r-20 {
    padding-right: 20px;
  }
  .p-md-l-20 {
    padding-left: 20px;
  }
  .m-md-b-20 {
    margin-bottom: 20px;
  }
  .m-md-t-20 {
    margin-top: 20px;
  }
  .m-md-r-20 {
    margin-right: 20px;
  }
  .m-md-l-20 {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .p-md-b-25 {
    padding-bottom: 25px;
  }
  .p-md-t-25 {
    padding-top: 25px;
  }
  .p-md-r-25 {
    padding-right: 25px;
  }
  .p-md-l-25 {
    padding-left: 25px;
  }
  .m-md-b-25 {
    margin-bottom: 25px;
  }
  .m-md-t-25 {
    margin-top: 25px;
  }
  .m-md-r-25 {
    margin-right: 25px;
  }
  .m-md-l-25 {
    margin-left: 25px;
  }
}

@media (max-width: 991px) {
  .p-md-b-30 {
    padding-bottom: 30px;
  }
  .p-md-t-30 {
    padding-top: 30px;
  }
  .p-md-r-30 {
    padding-right: 30px;
  }
  .p-md-l-30 {
    padding-left: 30px;
  }
  .m-md-b-30 {
    margin-bottom: 30px;
  }
  .m-md-t-30 {
    margin-top: 30px;
  }
  .m-md-r-30 {
    margin-right: 30px;
  }
  .m-md-l-30 {
    margin-left: 30px;
  }
}

@media (max-width: 991px) {
  .p-md-b-35 {
    padding-bottom: 35px;
  }
  .p-md-t-35 {
    padding-top: 35px;
  }
  .p-md-r-35 {
    padding-right: 35px;
  }
  .p-md-l-35 {
    padding-left: 35px;
  }
  .m-md-b-35 {
    margin-bottom: 35px;
  }
  .m-md-t-35 {
    margin-top: 35px;
  }
  .m-md-r-35 {
    margin-right: 35px;
  }
  .m-md-l-35 {
    margin-left: 35px;
  }
}

@media (max-width: 991px) {
  .p-md-b-40 {
    padding-bottom: 40px;
  }
  .p-md-t-40 {
    padding-top: 40px;
  }
  .p-md-r-40 {
    padding-right: 40px;
  }
  .p-md-l-40 {
    padding-left: 40px;
  }
  .m-md-b-40 {
    margin-bottom: 40px;
  }
  .m-md-t-40 {
    margin-top: 40px;
  }
  .m-md-r-40 {
    margin-right: 40px;
  }
  .m-md-l-40 {
    margin-left: 40px;
  }
}

@media (max-width: 991px) {
  .p-md-b-45 {
    padding-bottom: 45px;
  }
  .p-md-t-45 {
    padding-top: 45px;
  }
  .p-md-r-45 {
    padding-right: 45px;
  }
  .p-md-l-45 {
    padding-left: 45px;
  }
  .m-md-b-45 {
    margin-bottom: 45px;
  }
  .m-md-t-45 {
    margin-top: 45px;
  }
  .m-md-r-45 {
    margin-right: 45px;
  }
  .m-md-l-45 {
    margin-left: 45px;
  }
}

@media (max-width: 991px) {
  .p-md-b-50 {
    padding-bottom: 50px;
  }
  .p-md-t-50 {
    padding-top: 50px;
  }
  .p-md-r-50 {
    padding-right: 50px;
  }
  .p-md-l-50 {
    padding-left: 50px;
  }
  .m-md-b-50 {
    margin-bottom: 50px;
  }
  .m-md-t-50 {
    margin-top: 50px;
  }
  .m-md-r-50 {
    margin-right: 50px;
  }
  .m-md-l-50 {
    margin-left: 50px;
  }
}

@media (max-width: 991px) {
  .p-md-b-55 {
    padding-bottom: 55px;
  }
  .p-md-t-55 {
    padding-top: 55px;
  }
  .p-md-r-55 {
    padding-right: 55px;
  }
  .p-md-l-55 {
    padding-left: 55px;
  }
  .m-md-b-55 {
    margin-bottom: 55px;
  }
  .m-md-t-55 {
    margin-top: 55px;
  }
  .m-md-r-55 {
    margin-right: 55px;
  }
  .m-md-l-55 {
    margin-left: 55px;
  }
}

@media (max-width: 991px) {
  .p-md-b-60 {
    padding-bottom: 60px;
  }
  .p-md-t-60 {
    padding-top: 60px;
  }
  .p-md-r-60 {
    padding-right: 60px;
  }
  .p-md-l-60 {
    padding-left: 60px;
  }
  .m-md-b-60 {
    margin-bottom: 60px;
  }
  .m-md-t-60 {
    margin-top: 60px;
  }
  .m-md-r-60 {
    margin-right: 60px;
  }
  .m-md-l-60 {
    margin-left: 60px;
  }
}

@media (max-width: 991px) {
  .p-md-b-65 {
    padding-bottom: 65px;
  }
  .p-md-t-65 {
    padding-top: 65px;
  }
  .p-md-r-65 {
    padding-right: 65px;
  }
  .p-md-l-65 {
    padding-left: 65px;
  }
  .m-md-b-65 {
    margin-bottom: 65px;
  }
  .m-md-t-65 {
    margin-top: 65px;
  }
  .m-md-r-65 {
    margin-right: 65px;
  }
  .m-md-l-65 {
    margin-left: 65px;
  }
}

@media (max-width: 991px) {
  .p-md-b-70 {
    padding-bottom: 70px;
  }
  .p-md-t-70 {
    padding-top: 70px;
  }
  .p-md-r-70 {
    padding-right: 70px;
  }
  .p-md-l-70 {
    padding-left: 70px;
  }
  .m-md-b-70 {
    margin-bottom: 70px;
  }
  .m-md-t-70 {
    margin-top: 70px;
  }
  .m-md-r-70 {
    margin-right: 70px;
  }
  .m-md-l-70 {
    margin-left: 70px;
  }
}

@media (max-width: 991px) {
  .p-md-b-75 {
    padding-bottom: 75px;
  }
  .p-md-t-75 {
    padding-top: 75px;
  }
  .p-md-r-75 {
    padding-right: 75px;
  }
  .p-md-l-75 {
    padding-left: 75px;
  }
  .m-md-b-75 {
    margin-bottom: 75px;
  }
  .m-md-t-75 {
    margin-top: 75px;
  }
  .m-md-r-75 {
    margin-right: 75px;
  }
  .m-md-l-75 {
    margin-left: 75px;
  }
}

@media (max-width: 991px) {
  .p-md-b-80 {
    padding-bottom: 80px;
  }
  .p-md-t-80 {
    padding-top: 80px;
  }
  .p-md-r-80 {
    padding-right: 80px;
  }
  .p-md-l-80 {
    padding-left: 80px;
  }
  .m-md-b-80 {
    margin-bottom: 80px;
  }
  .m-md-t-80 {
    margin-top: 80px;
  }
  .m-md-r-80 {
    margin-right: 80px;
  }
  .m-md-l-80 {
    margin-left: 80px;
  }
}

@media (max-width: 991px) {
  .p-md-b-85 {
    padding-bottom: 85px;
  }
  .p-md-t-85 {
    padding-top: 85px;
  }
  .p-md-r-85 {
    padding-right: 85px;
  }
  .p-md-l-85 {
    padding-left: 85px;
  }
  .m-md-b-85 {
    margin-bottom: 85px;
  }
  .m-md-t-85 {
    margin-top: 85px;
  }
  .m-md-r-85 {
    margin-right: 85px;
  }
  .m-md-l-85 {
    margin-left: 85px;
  }
}

@media (max-width: 991px) {
  .p-md-b-90 {
    padding-bottom: 90px;
  }
  .p-md-t-90 {
    padding-top: 90px;
  }
  .p-md-r-90 {
    padding-right: 90px;
  }
  .p-md-l-90 {
    padding-left: 90px;
  }
  .m-md-b-90 {
    margin-bottom: 90px;
  }
  .m-md-t-90 {
    margin-top: 90px;
  }
  .m-md-r-90 {
    margin-right: 90px;
  }
  .m-md-l-90 {
    margin-left: 90px;
  }
}

@media (max-width: 991px) {
  .p-md-b-95 {
    padding-bottom: 95px;
  }
  .p-md-t-95 {
    padding-top: 95px;
  }
  .p-md-r-95 {
    padding-right: 95px;
  }
  .p-md-l-95 {
    padding-left: 95px;
  }
  .m-md-b-95 {
    margin-bottom: 95px;
  }
  .m-md-t-95 {
    margin-top: 95px;
  }
  .m-md-r-95 {
    margin-right: 95px;
  }
  .m-md-l-95 {
    margin-left: 95px;
  }
}

@media (max-width: 991px) {
  .p-md-b-100 {
    padding-bottom: 100px;
  }
  .p-md-t-100 {
    padding-top: 100px;
  }
  .p-md-r-100 {
    padding-right: 100px;
  }
  .p-md-l-100 {
    padding-left: 100px;
  }
  .m-md-b-100 {
    margin-bottom: 100px;
  }
  .m-md-t-100 {
    margin-top: 100px;
  }
  .m-md-r-100 {
    margin-right: 100px;
  }
  .m-md-l-100 {
    margin-left: 100px;
  }
}

@media (max-width: 991px) {
  .p-md-b-105 {
    padding-bottom: 105px;
  }
  .p-md-t-105 {
    padding-top: 105px;
  }
  .p-md-r-105 {
    padding-right: 105px;
  }
  .p-md-l-105 {
    padding-left: 105px;
  }
  .m-md-b-105 {
    margin-bottom: 105px;
  }
  .m-md-t-105 {
    margin-top: 105px;
  }
  .m-md-r-105 {
    margin-right: 105px;
  }
  .m-md-l-105 {
    margin-left: 105px;
  }
}

@media (max-width: 991px) {
  .p-md-b-110 {
    padding-bottom: 110px;
  }
  .p-md-t-110 {
    padding-top: 110px;
  }
  .p-md-r-110 {
    padding-right: 110px;
  }
  .p-md-l-110 {
    padding-left: 110px;
  }
  .m-md-b-110 {
    margin-bottom: 110px;
  }
  .m-md-t-110 {
    margin-top: 110px;
  }
  .m-md-r-110 {
    margin-right: 110px;
  }
  .m-md-l-110 {
    margin-left: 110px;
  }
}

@media (max-width: 991px) {
  .p-md-b-115 {
    padding-bottom: 115px;
  }
  .p-md-t-115 {
    padding-top: 115px;
  }
  .p-md-r-115 {
    padding-right: 115px;
  }
  .p-md-l-115 {
    padding-left: 115px;
  }
  .m-md-b-115 {
    margin-bottom: 115px;
  }
  .m-md-t-115 {
    margin-top: 115px;
  }
  .m-md-r-115 {
    margin-right: 115px;
  }
  .m-md-l-115 {
    margin-left: 115px;
  }
}

@media (max-width: 991px) {
  .p-md-b-120 {
    padding-bottom: 120px;
  }
  .p-md-t-120 {
    padding-top: 120px;
  }
  .p-md-r-120 {
    padding-right: 120px;
  }
  .p-md-l-120 {
    padding-left: 120px;
  }
  .m-md-b-120 {
    margin-bottom: 120px;
  }
  .m-md-t-120 {
    margin-top: 120px;
  }
  .m-md-r-120 {
    margin-right: 120px;
  }
  .m-md-l-120 {
    margin-left: 120px;
  }
}

@media (max-width: 991px) {
  .p-md-b-125 {
    padding-bottom: 125px;
  }
  .p-md-t-125 {
    padding-top: 125px;
  }
  .p-md-r-125 {
    padding-right: 125px;
  }
  .p-md-l-125 {
    padding-left: 125px;
  }
  .m-md-b-125 {
    margin-bottom: 125px;
  }
  .m-md-t-125 {
    margin-top: 125px;
  }
  .m-md-r-125 {
    margin-right: 125px;
  }
  .m-md-l-125 {
    margin-left: 125px;
  }
}

@media (max-width: 991px) {
  .p-md-b-130 {
    padding-bottom: 130px;
  }
  .p-md-t-130 {
    padding-top: 130px;
  }
  .p-md-r-130 {
    padding-right: 130px;
  }
  .p-md-l-130 {
    padding-left: 130px;
  }
  .m-md-b-130 {
    margin-bottom: 130px;
  }
  .m-md-t-130 {
    margin-top: 130px;
  }
  .m-md-r-130 {
    margin-right: 130px;
  }
  .m-md-l-130 {
    margin-left: 130px;
  }
}

@media (max-width: 991px) {
  .p-md-b-135 {
    padding-bottom: 135px;
  }
  .p-md-t-135 {
    padding-top: 135px;
  }
  .p-md-r-135 {
    padding-right: 135px;
  }
  .p-md-l-135 {
    padding-left: 135px;
  }
  .m-md-b-135 {
    margin-bottom: 135px;
  }
  .m-md-t-135 {
    margin-top: 135px;
  }
  .m-md-r-135 {
    margin-right: 135px;
  }
  .m-md-l-135 {
    margin-left: 135px;
  }
}

@media (max-width: 991px) {
  .p-md-b-140 {
    padding-bottom: 140px;
  }
  .p-md-t-140 {
    padding-top: 140px;
  }
  .p-md-r-140 {
    padding-right: 140px;
  }
  .p-md-l-140 {
    padding-left: 140px;
  }
  .m-md-b-140 {
    margin-bottom: 140px;
  }
  .m-md-t-140 {
    margin-top: 140px;
  }
  .m-md-r-140 {
    margin-right: 140px;
  }
  .m-md-l-140 {
    margin-left: 140px;
  }
}

@media (max-width: 991px) {
  .p-md-b-145 {
    padding-bottom: 145px;
  }
  .p-md-t-145 {
    padding-top: 145px;
  }
  .p-md-r-145 {
    padding-right: 145px;
  }
  .p-md-l-145 {
    padding-left: 145px;
  }
  .m-md-b-145 {
    margin-bottom: 145px;
  }
  .m-md-t-145 {
    margin-top: 145px;
  }
  .m-md-r-145 {
    margin-right: 145px;
  }
  .m-md-l-145 {
    margin-left: 145px;
  }
}

@media (max-width: 991px) {
  .p-md-b-150 {
    padding-bottom: 150px;
  }
  .p-md-t-150 {
    padding-top: 150px;
  }
  .p-md-r-150 {
    padding-right: 150px;
  }
  .p-md-l-150 {
    padding-left: 150px;
  }
  .m-md-b-150 {
    margin-bottom: 150px;
  }
  .m-md-t-150 {
    margin-top: 150px;
  }
  .m-md-r-150 {
    margin-right: 150px;
  }
  .m-md-l-150 {
    margin-left: 150px;
  }
}

@media (max-width: 991px) {
  .p-md-b-155 {
    padding-bottom: 155px;
  }
  .p-md-t-155 {
    padding-top: 155px;
  }
  .p-md-r-155 {
    padding-right: 155px;
  }
  .p-md-l-155 {
    padding-left: 155px;
  }
  .m-md-b-155 {
    margin-bottom: 155px;
  }
  .m-md-t-155 {
    margin-top: 155px;
  }
  .m-md-r-155 {
    margin-right: 155px;
  }
  .m-md-l-155 {
    margin-left: 155px;
  }
}

@media (max-width: 991px) {
  .p-md-b-160 {
    padding-bottom: 160px;
  }
  .p-md-t-160 {
    padding-top: 160px;
  }
  .p-md-r-160 {
    padding-right: 160px;
  }
  .p-md-l-160 {
    padding-left: 160px;
  }
  .m-md-b-160 {
    margin-bottom: 160px;
  }
  .m-md-t-160 {
    margin-top: 160px;
  }
  .m-md-r-160 {
    margin-right: 160px;
  }
  .m-md-l-160 {
    margin-left: 160px;
  }
}

@media (max-width: 991px) {
  .p-md-b-165 {
    padding-bottom: 165px;
  }
  .p-md-t-165 {
    padding-top: 165px;
  }
  .p-md-r-165 {
    padding-right: 165px;
  }
  .p-md-l-165 {
    padding-left: 165px;
  }
  .m-md-b-165 {
    margin-bottom: 165px;
  }
  .m-md-t-165 {
    margin-top: 165px;
  }
  .m-md-r-165 {
    margin-right: 165px;
  }
  .m-md-l-165 {
    margin-left: 165px;
  }
}

@media (max-width: 991px) {
  .p-md-b-170 {
    padding-bottom: 170px;
  }
  .p-md-t-170 {
    padding-top: 170px;
  }
  .p-md-r-170 {
    padding-right: 170px;
  }
  .p-md-l-170 {
    padding-left: 170px;
  }
  .m-md-b-170 {
    margin-bottom: 170px;
  }
  .m-md-t-170 {
    margin-top: 170px;
  }
  .m-md-r-170 {
    margin-right: 170px;
  }
  .m-md-l-170 {
    margin-left: 170px;
  }
}

@media (max-width: 991px) {
  .p-md-b-175 {
    padding-bottom: 175px;
  }
  .p-md-t-175 {
    padding-top: 175px;
  }
  .p-md-r-175 {
    padding-right: 175px;
  }
  .p-md-l-175 {
    padding-left: 175px;
  }
  .m-md-b-175 {
    margin-bottom: 175px;
  }
  .m-md-t-175 {
    margin-top: 175px;
  }
  .m-md-r-175 {
    margin-right: 175px;
  }
  .m-md-l-175 {
    margin-left: 175px;
  }
}

@media (max-width: 991px) {
  .p-md-b-180 {
    padding-bottom: 180px;
  }
  .p-md-t-180 {
    padding-top: 180px;
  }
  .p-md-r-180 {
    padding-right: 180px;
  }
  .p-md-l-180 {
    padding-left: 180px;
  }
  .m-md-b-180 {
    margin-bottom: 180px;
  }
  .m-md-t-180 {
    margin-top: 180px;
  }
  .m-md-r-180 {
    margin-right: 180px;
  }
  .m-md-l-180 {
    margin-left: 180px;
  }
}

@media (max-width: 991px) {
  .p-md-b-185 {
    padding-bottom: 185px;
  }
  .p-md-t-185 {
    padding-top: 185px;
  }
  .p-md-r-185 {
    padding-right: 185px;
  }
  .p-md-l-185 {
    padding-left: 185px;
  }
  .m-md-b-185 {
    margin-bottom: 185px;
  }
  .m-md-t-185 {
    margin-top: 185px;
  }
  .m-md-r-185 {
    margin-right: 185px;
  }
  .m-md-l-185 {
    margin-left: 185px;
  }
}

@media (max-width: 991px) {
  .p-md-b-190 {
    padding-bottom: 190px;
  }
  .p-md-t-190 {
    padding-top: 190px;
  }
  .p-md-r-190 {
    padding-right: 190px;
  }
  .p-md-l-190 {
    padding-left: 190px;
  }
  .m-md-b-190 {
    margin-bottom: 190px;
  }
  .m-md-t-190 {
    margin-top: 190px;
  }
  .m-md-r-190 {
    margin-right: 190px;
  }
  .m-md-l-190 {
    margin-left: 190px;
  }
}

@media (max-width: 991px) {
  .p-md-b-195 {
    padding-bottom: 195px;
  }
  .p-md-t-195 {
    padding-top: 195px;
  }
  .p-md-r-195 {
    padding-right: 195px;
  }
  .p-md-l-195 {
    padding-left: 195px;
  }
  .m-md-b-195 {
    margin-bottom: 195px;
  }
  .m-md-t-195 {
    margin-top: 195px;
  }
  .m-md-r-195 {
    margin-right: 195px;
  }
  .m-md-l-195 {
    margin-left: 195px;
  }
}

@media (max-width: 991px) {
  .p-md-b-200 {
    padding-bottom: 200px;
  }
  .p-md-t-200 {
    padding-top: 200px;
  }
  .p-md-r-200 {
    padding-right: 200px;
  }
  .p-md-l-200 {
    padding-left: 200px;
  }
  .m-md-b-200 {
    margin-bottom: 200px;
  }
  .m-md-t-200 {
    margin-top: 200px;
  }
  .m-md-r-200 {
    margin-right: 200px;
  }
  .m-md-l-200 {
    margin-left: 200px;
  }
}

@media (max-width: 991px) {
  .p-md-b-205 {
    padding-bottom: 205px;
  }
  .p-md-t-205 {
    padding-top: 205px;
  }
  .p-md-r-205 {
    padding-right: 205px;
  }
  .p-md-l-205 {
    padding-left: 205px;
  }
  .m-md-b-205 {
    margin-bottom: 205px;
  }
  .m-md-t-205 {
    margin-top: 205px;
  }
  .m-md-r-205 {
    margin-right: 205px;
  }
  .m-md-l-205 {
    margin-left: 205px;
  }
}

@media (max-width: 991px) {
  .p-md-b-210 {
    padding-bottom: 210px;
  }
  .p-md-t-210 {
    padding-top: 210px;
  }
  .p-md-r-210 {
    padding-right: 210px;
  }
  .p-md-l-210 {
    padding-left: 210px;
  }
  .m-md-b-210 {
    margin-bottom: 210px;
  }
  .m-md-t-210 {
    margin-top: 210px;
  }
  .m-md-r-210 {
    margin-right: 210px;
  }
  .m-md-l-210 {
    margin-left: 210px;
  }
}

@media (max-width: 991px) {
  .p-md-b-215 {
    padding-bottom: 215px;
  }
  .p-md-t-215 {
    padding-top: 215px;
  }
  .p-md-r-215 {
    padding-right: 215px;
  }
  .p-md-l-215 {
    padding-left: 215px;
  }
  .m-md-b-215 {
    margin-bottom: 215px;
  }
  .m-md-t-215 {
    margin-top: 215px;
  }
  .m-md-r-215 {
    margin-right: 215px;
  }
  .m-md-l-215 {
    margin-left: 215px;
  }
}

@media (max-width: 991px) {
  .p-md-b-220 {
    padding-bottom: 220px;
  }
  .p-md-t-220 {
    padding-top: 220px;
  }
  .p-md-r-220 {
    padding-right: 220px;
  }
  .p-md-l-220 {
    padding-left: 220px;
  }
  .m-md-b-220 {
    margin-bottom: 220px;
  }
  .m-md-t-220 {
    margin-top: 220px;
  }
  .m-md-r-220 {
    margin-right: 220px;
  }
  .m-md-l-220 {
    margin-left: 220px;
  }
}

@media (max-width: 991px) {
  .p-md-b-225 {
    padding-bottom: 225px;
  }
  .p-md-t-225 {
    padding-top: 225px;
  }
  .p-md-r-225 {
    padding-right: 225px;
  }
  .p-md-l-225 {
    padding-left: 225px;
  }
  .m-md-b-225 {
    margin-bottom: 225px;
  }
  .m-md-t-225 {
    margin-top: 225px;
  }
  .m-md-r-225 {
    margin-right: 225px;
  }
  .m-md-l-225 {
    margin-left: 225px;
  }
}

@media (max-width: 991px) {
  .p-md-b-230 {
    padding-bottom: 230px;
  }
  .p-md-t-230 {
    padding-top: 230px;
  }
  .p-md-r-230 {
    padding-right: 230px;
  }
  .p-md-l-230 {
    padding-left: 230px;
  }
  .m-md-b-230 {
    margin-bottom: 230px;
  }
  .m-md-t-230 {
    margin-top: 230px;
  }
  .m-md-r-230 {
    margin-right: 230px;
  }
  .m-md-l-230 {
    margin-left: 230px;
  }
}

@media (max-width: 991px) {
  .p-md-b-235 {
    padding-bottom: 235px;
  }
  .p-md-t-235 {
    padding-top: 235px;
  }
  .p-md-r-235 {
    padding-right: 235px;
  }
  .p-md-l-235 {
    padding-left: 235px;
  }
  .m-md-b-235 {
    margin-bottom: 235px;
  }
  .m-md-t-235 {
    margin-top: 235px;
  }
  .m-md-r-235 {
    margin-right: 235px;
  }
  .m-md-l-235 {
    margin-left: 235px;
  }
}

@media (max-width: 991px) {
  .p-md-b-240 {
    padding-bottom: 240px;
  }
  .p-md-t-240 {
    padding-top: 240px;
  }
  .p-md-r-240 {
    padding-right: 240px;
  }
  .p-md-l-240 {
    padding-left: 240px;
  }
  .m-md-b-240 {
    margin-bottom: 240px;
  }
  .m-md-t-240 {
    margin-top: 240px;
  }
  .m-md-r-240 {
    margin-right: 240px;
  }
  .m-md-l-240 {
    margin-left: 240px;
  }
}

@media (max-width: 991px) {
  .p-md-b-245 {
    padding-bottom: 245px;
  }
  .p-md-t-245 {
    padding-top: 245px;
  }
  .p-md-r-245 {
    padding-right: 245px;
  }
  .p-md-l-245 {
    padding-left: 245px;
  }
  .m-md-b-245 {
    margin-bottom: 245px;
  }
  .m-md-t-245 {
    margin-top: 245px;
  }
  .m-md-r-245 {
    margin-right: 245px;
  }
  .m-md-l-245 {
    margin-left: 245px;
  }
}

@media (max-width: 991px) {
  .p-md-b-250 {
    padding-bottom: 250px;
  }
  .p-md-t-250 {
    padding-top: 250px;
  }
  .p-md-r-250 {
    padding-right: 250px;
  }
  .p-md-l-250 {
    padding-left: 250px;
  }
  .m-md-b-250 {
    margin-bottom: 250px;
  }
  .m-md-t-250 {
    margin-top: 250px;
  }
  .m-md-r-250 {
    margin-right: 250px;
  }
  .m-md-l-250 {
    margin-left: 250px;
  }
}

@media (max-width: 991px) {
  .p-md-b-255 {
    padding-bottom: 255px;
  }
  .p-md-t-255 {
    padding-top: 255px;
  }
  .p-md-r-255 {
    padding-right: 255px;
  }
  .p-md-l-255 {
    padding-left: 255px;
  }
  .m-md-b-255 {
    margin-bottom: 255px;
  }
  .m-md-t-255 {
    margin-top: 255px;
  }
  .m-md-r-255 {
    margin-right: 255px;
  }
  .m-md-l-255 {
    margin-left: 255px;
  }
}

@media (max-width: 991px) {
  .p-md-b-260 {
    padding-bottom: 260px;
  }
  .p-md-t-260 {
    padding-top: 260px;
  }
  .p-md-r-260 {
    padding-right: 260px;
  }
  .p-md-l-260 {
    padding-left: 260px;
  }
  .m-md-b-260 {
    margin-bottom: 260px;
  }
  .m-md-t-260 {
    margin-top: 260px;
  }
  .m-md-r-260 {
    margin-right: 260px;
  }
  .m-md-l-260 {
    margin-left: 260px;
  }
}

@media (max-width: 991px) {
  .p-md-b-265 {
    padding-bottom: 265px;
  }
  .p-md-t-265 {
    padding-top: 265px;
  }
  .p-md-r-265 {
    padding-right: 265px;
  }
  .p-md-l-265 {
    padding-left: 265px;
  }
  .m-md-b-265 {
    margin-bottom: 265px;
  }
  .m-md-t-265 {
    margin-top: 265px;
  }
  .m-md-r-265 {
    margin-right: 265px;
  }
  .m-md-l-265 {
    margin-left: 265px;
  }
}

@media (max-width: 991px) {
  .p-md-b-270 {
    padding-bottom: 270px;
  }
  .p-md-t-270 {
    padding-top: 270px;
  }
  .p-md-r-270 {
    padding-right: 270px;
  }
  .p-md-l-270 {
    padding-left: 270px;
  }
  .m-md-b-270 {
    margin-bottom: 270px;
  }
  .m-md-t-270 {
    margin-top: 270px;
  }
  .m-md-r-270 {
    margin-right: 270px;
  }
  .m-md-l-270 {
    margin-left: 270px;
  }
}

@media (max-width: 991px) {
  .p-md-b-275 {
    padding-bottom: 275px;
  }
  .p-md-t-275 {
    padding-top: 275px;
  }
  .p-md-r-275 {
    padding-right: 275px;
  }
  .p-md-l-275 {
    padding-left: 275px;
  }
  .m-md-b-275 {
    margin-bottom: 275px;
  }
  .m-md-t-275 {
    margin-top: 275px;
  }
  .m-md-r-275 {
    margin-right: 275px;
  }
  .m-md-l-275 {
    margin-left: 275px;
  }
}

@media (max-width: 991px) {
  .p-md-b-280 {
    padding-bottom: 280px;
  }
  .p-md-t-280 {
    padding-top: 280px;
  }
  .p-md-r-280 {
    padding-right: 280px;
  }
  .p-md-l-280 {
    padding-left: 280px;
  }
  .m-md-b-280 {
    margin-bottom: 280px;
  }
  .m-md-t-280 {
    margin-top: 280px;
  }
  .m-md-r-280 {
    margin-right: 280px;
  }
  .m-md-l-280 {
    margin-left: 280px;
  }
}

@media (max-width: 991px) {
  .p-md-b-285 {
    padding-bottom: 285px;
  }
  .p-md-t-285 {
    padding-top: 285px;
  }
  .p-md-r-285 {
    padding-right: 285px;
  }
  .p-md-l-285 {
    padding-left: 285px;
  }
  .m-md-b-285 {
    margin-bottom: 285px;
  }
  .m-md-t-285 {
    margin-top: 285px;
  }
  .m-md-r-285 {
    margin-right: 285px;
  }
  .m-md-l-285 {
    margin-left: 285px;
  }
}

@media (max-width: 991px) {
  .p-md-b-290 {
    padding-bottom: 290px;
  }
  .p-md-t-290 {
    padding-top: 290px;
  }
  .p-md-r-290 {
    padding-right: 290px;
  }
  .p-md-l-290 {
    padding-left: 290px;
  }
  .m-md-b-290 {
    margin-bottom: 290px;
  }
  .m-md-t-290 {
    margin-top: 290px;
  }
  .m-md-r-290 {
    margin-right: 290px;
  }
  .m-md-l-290 {
    margin-left: 290px;
  }
}

@media (max-width: 991px) {
  .p-md-b-295 {
    padding-bottom: 295px;
  }
  .p-md-t-295 {
    padding-top: 295px;
  }
  .p-md-r-295 {
    padding-right: 295px;
  }
  .p-md-l-295 {
    padding-left: 295px;
  }
  .m-md-b-295 {
    margin-bottom: 295px;
  }
  .m-md-t-295 {
    margin-top: 295px;
  }
  .m-md-r-295 {
    margin-right: 295px;
  }
  .m-md-l-295 {
    margin-left: 295px;
  }
}

@media (max-width: 991px) {
  .p-md-b-300 {
    padding-bottom: 300px;
  }
  .p-md-t-300 {
    padding-top: 300px;
  }
  .p-md-r-300 {
    padding-right: 300px;
  }
  .p-md-l-300 {
    padding-left: 300px;
  }
  .m-md-b-300 {
    margin-bottom: 300px;
  }
  .m-md-t-300 {
    margin-top: 300px;
  }
  .m-md-r-300 {
    margin-right: 300px;
  }
  .m-md-l-300 {
    margin-left: 300px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-0 {
    padding-bottom: 0px;
  }
  .p-sm-t-0 {
    padding-top: 0px;
  }
  .p-sm-r-0 {
    padding-right: 0px;
  }
  .p-sm-l-0 {
    padding-left: 0px;
  }
  .m-sm-b-0 {
    margin-bottom: 0px;
  }
  .m-sm-t-0 {
    margin-top: 0px;
  }
  .m-sm-r-0 {
    margin-right: 0px;
  }
  .m-sm-l-0 {
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-5 {
    padding-bottom: 5px;
  }
  .p-sm-t-5 {
    padding-top: 5px;
  }
  .p-sm-r-5 {
    padding-right: 5px;
  }
  .p-sm-l-5 {
    padding-left: 5px;
  }
  .m-sm-b-5 {
    margin-bottom: 5px;
  }
  .m-sm-t-5 {
    margin-top: 5px;
  }
  .m-sm-r-5 {
    margin-right: 5px;
  }
  .m-sm-l-5 {
    margin-left: 5px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-10 {
    padding-bottom: 10px;
  }
  .p-sm-t-10 {
    padding-top: 10px;
  }
  .p-sm-r-10 {
    padding-right: 10px;
  }
  .p-sm-l-10 {
    padding-left: 10px;
  }
  .m-sm-b-10 {
    margin-bottom: 10px;
  }
  .m-sm-t-10 {
    margin-top: 10px;
  }
  .m-sm-r-10 {
    margin-right: 10px;
  }
  .m-sm-l-10 {
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-15 {
    padding-bottom: 15px;
  }
  .p-sm-t-15 {
    padding-top: 15px;
  }
  .p-sm-r-15 {
    padding-right: 15px;
  }
  .p-sm-l-15 {
    padding-left: 15px;
  }
  .m-sm-b-15 {
    margin-bottom: 15px;
  }
  .m-sm-t-15 {
    margin-top: 15px;
  }
  .m-sm-r-15 {
    margin-right: 15px;
  }
  .m-sm-l-15 {
    margin-left: 15px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-20 {
    padding-bottom: 20px;
  }
  .p-sm-t-20 {
    padding-top: 20px;
  }
  .p-sm-r-20 {
    padding-right: 20px;
  }
  .p-sm-l-20 {
    padding-left: 20px;
  }
  .m-sm-b-20 {
    margin-bottom: 20px;
  }
  .m-sm-t-20 {
    margin-top: 20px;
  }
  .m-sm-r-20 {
    margin-right: 20px;
  }
  .m-sm-l-20 {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-25 {
    padding-bottom: 25px;
  }
  .p-sm-t-25 {
    padding-top: 25px;
  }
  .p-sm-r-25 {
    padding-right: 25px;
  }
  .p-sm-l-25 {
    padding-left: 25px;
  }
  .m-sm-b-25 {
    margin-bottom: 25px;
  }
  .m-sm-t-25 {
    margin-top: 25px;
  }
  .m-sm-r-25 {
    margin-right: 25px;
  }
  .m-sm-l-25 {
    margin-left: 25px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-30 {
    padding-bottom: 30px;
  }
  .p-sm-t-30 {
    padding-top: 30px;
  }
  .p-sm-r-30 {
    padding-right: 30px;
  }
  .p-sm-l-30 {
    padding-left: 30px;
  }
  .m-sm-b-30 {
    margin-bottom: 30px;
  }
  .m-sm-t-30 {
    margin-top: 30px;
  }
  .m-sm-r-30 {
    margin-right: 30px;
  }
  .m-sm-l-30 {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-35 {
    padding-bottom: 35px;
  }
  .p-sm-t-35 {
    padding-top: 35px;
  }
  .p-sm-r-35 {
    padding-right: 35px;
  }
  .p-sm-l-35 {
    padding-left: 35px;
  }
  .m-sm-b-35 {
    margin-bottom: 35px;
  }
  .m-sm-t-35 {
    margin-top: 35px;
  }
  .m-sm-r-35 {
    margin-right: 35px;
  }
  .m-sm-l-35 {
    margin-left: 35px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-40 {
    padding-bottom: 40px;
  }
  .p-sm-t-40 {
    padding-top: 40px;
  }
  .p-sm-r-40 {
    padding-right: 40px;
  }
  .p-sm-l-40 {
    padding-left: 40px;
  }
  .m-sm-b-40 {
    margin-bottom: 40px;
  }
  .m-sm-t-40 {
    margin-top: 40px;
  }
  .m-sm-r-40 {
    margin-right: 40px;
  }
  .m-sm-l-40 {
    margin-left: 40px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-45 {
    padding-bottom: 45px;
  }
  .p-sm-t-45 {
    padding-top: 45px;
  }
  .p-sm-r-45 {
    padding-right: 45px;
  }
  .p-sm-l-45 {
    padding-left: 45px;
  }
  .m-sm-b-45 {
    margin-bottom: 45px;
  }
  .m-sm-t-45 {
    margin-top: 45px;
  }
  .m-sm-r-45 {
    margin-right: 45px;
  }
  .m-sm-l-45 {
    margin-left: 45px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-50 {
    padding-bottom: 50px;
  }
  .p-sm-t-50 {
    padding-top: 50px;
  }
  .p-sm-r-50 {
    padding-right: 50px;
  }
  .p-sm-l-50 {
    padding-left: 50px;
  }
  .m-sm-b-50 {
    margin-bottom: 50px;
  }
  .m-sm-t-50 {
    margin-top: 50px;
  }
  .m-sm-r-50 {
    margin-right: 50px;
  }
  .m-sm-l-50 {
    margin-left: 50px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-55 {
    padding-bottom: 55px;
  }
  .p-sm-t-55 {
    padding-top: 55px;
  }
  .p-sm-r-55 {
    padding-right: 55px;
  }
  .p-sm-l-55 {
    padding-left: 55px;
  }
  .m-sm-b-55 {
    margin-bottom: 55px;
  }
  .m-sm-t-55 {
    margin-top: 55px;
  }
  .m-sm-r-55 {
    margin-right: 55px;
  }
  .m-sm-l-55 {
    margin-left: 55px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-60 {
    padding-bottom: 60px;
  }
  .p-sm-t-60 {
    padding-top: 60px;
  }
  .p-sm-r-60 {
    padding-right: 60px;
  }
  .p-sm-l-60 {
    padding-left: 60px;
  }
  .m-sm-b-60 {
    margin-bottom: 60px;
  }
  .m-sm-t-60 {
    margin-top: 60px;
  }
  .m-sm-r-60 {
    margin-right: 60px;
  }
  .m-sm-l-60 {
    margin-left: 60px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-65 {
    padding-bottom: 65px;
  }
  .p-sm-t-65 {
    padding-top: 65px;
  }
  .p-sm-r-65 {
    padding-right: 65px;
  }
  .p-sm-l-65 {
    padding-left: 65px;
  }
  .m-sm-b-65 {
    margin-bottom: 65px;
  }
  .m-sm-t-65 {
    margin-top: 65px;
  }
  .m-sm-r-65 {
    margin-right: 65px;
  }
  .m-sm-l-65 {
    margin-left: 65px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-70 {
    padding-bottom: 70px;
  }
  .p-sm-t-70 {
    padding-top: 70px;
  }
  .p-sm-r-70 {
    padding-right: 70px;
  }
  .p-sm-l-70 {
    padding-left: 70px;
  }
  .m-sm-b-70 {
    margin-bottom: 70px;
  }
  .m-sm-t-70 {
    margin-top: 70px;
  }
  .m-sm-r-70 {
    margin-right: 70px;
  }
  .m-sm-l-70 {
    margin-left: 70px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-75 {
    padding-bottom: 75px;
  }
  .p-sm-t-75 {
    padding-top: 75px;
  }
  .p-sm-r-75 {
    padding-right: 75px;
  }
  .p-sm-l-75 {
    padding-left: 75px;
  }
  .m-sm-b-75 {
    margin-bottom: 75px;
  }
  .m-sm-t-75 {
    margin-top: 75px;
  }
  .m-sm-r-75 {
    margin-right: 75px;
  }
  .m-sm-l-75 {
    margin-left: 75px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-80 {
    padding-bottom: 80px;
  }
  .p-sm-t-80 {
    padding-top: 80px;
  }
  .p-sm-r-80 {
    padding-right: 80px;
  }
  .p-sm-l-80 {
    padding-left: 80px;
  }
  .m-sm-b-80 {
    margin-bottom: 80px;
  }
  .m-sm-t-80 {
    margin-top: 80px;
  }
  .m-sm-r-80 {
    margin-right: 80px;
  }
  .m-sm-l-80 {
    margin-left: 80px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-85 {
    padding-bottom: 85px;
  }
  .p-sm-t-85 {
    padding-top: 85px;
  }
  .p-sm-r-85 {
    padding-right: 85px;
  }
  .p-sm-l-85 {
    padding-left: 85px;
  }
  .m-sm-b-85 {
    margin-bottom: 85px;
  }
  .m-sm-t-85 {
    margin-top: 85px;
  }
  .m-sm-r-85 {
    margin-right: 85px;
  }
  .m-sm-l-85 {
    margin-left: 85px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-90 {
    padding-bottom: 90px;
  }
  .p-sm-t-90 {
    padding-top: 90px;
  }
  .p-sm-r-90 {
    padding-right: 90px;
  }
  .p-sm-l-90 {
    padding-left: 90px;
  }
  .m-sm-b-90 {
    margin-bottom: 90px;
  }
  .m-sm-t-90 {
    margin-top: 90px;
  }
  .m-sm-r-90 {
    margin-right: 90px;
  }
  .m-sm-l-90 {
    margin-left: 90px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-95 {
    padding-bottom: 95px;
  }
  .p-sm-t-95 {
    padding-top: 95px;
  }
  .p-sm-r-95 {
    padding-right: 95px;
  }
  .p-sm-l-95 {
    padding-left: 95px;
  }
  .m-sm-b-95 {
    margin-bottom: 95px;
  }
  .m-sm-t-95 {
    margin-top: 95px;
  }
  .m-sm-r-95 {
    margin-right: 95px;
  }
  .m-sm-l-95 {
    margin-left: 95px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-100 {
    padding-bottom: 100px;
  }
  .p-sm-t-100 {
    padding-top: 100px;
  }
  .p-sm-r-100 {
    padding-right: 100px;
  }
  .p-sm-l-100 {
    padding-left: 100px;
  }
  .m-sm-b-100 {
    margin-bottom: 100px;
  }
  .m-sm-t-100 {
    margin-top: 100px;
  }
  .m-sm-r-100 {
    margin-right: 100px;
  }
  .m-sm-l-100 {
    margin-left: 100px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-105 {
    padding-bottom: 105px;
  }
  .p-sm-t-105 {
    padding-top: 105px;
  }
  .p-sm-r-105 {
    padding-right: 105px;
  }
  .p-sm-l-105 {
    padding-left: 105px;
  }
  .m-sm-b-105 {
    margin-bottom: 105px;
  }
  .m-sm-t-105 {
    margin-top: 105px;
  }
  .m-sm-r-105 {
    margin-right: 105px;
  }
  .m-sm-l-105 {
    margin-left: 105px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-110 {
    padding-bottom: 110px;
  }
  .p-sm-t-110 {
    padding-top: 110px;
  }
  .p-sm-r-110 {
    padding-right: 110px;
  }
  .p-sm-l-110 {
    padding-left: 110px;
  }
  .m-sm-b-110 {
    margin-bottom: 110px;
  }
  .m-sm-t-110 {
    margin-top: 110px;
  }
  .m-sm-r-110 {
    margin-right: 110px;
  }
  .m-sm-l-110 {
    margin-left: 110px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-115 {
    padding-bottom: 115px;
  }
  .p-sm-t-115 {
    padding-top: 115px;
  }
  .p-sm-r-115 {
    padding-right: 115px;
  }
  .p-sm-l-115 {
    padding-left: 115px;
  }
  .m-sm-b-115 {
    margin-bottom: 115px;
  }
  .m-sm-t-115 {
    margin-top: 115px;
  }
  .m-sm-r-115 {
    margin-right: 115px;
  }
  .m-sm-l-115 {
    margin-left: 115px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-120 {
    padding-bottom: 120px;
  }
  .p-sm-t-120 {
    padding-top: 120px;
  }
  .p-sm-r-120 {
    padding-right: 120px;
  }
  .p-sm-l-120 {
    padding-left: 120px;
  }
  .m-sm-b-120 {
    margin-bottom: 120px;
  }
  .m-sm-t-120 {
    margin-top: 120px;
  }
  .m-sm-r-120 {
    margin-right: 120px;
  }
  .m-sm-l-120 {
    margin-left: 120px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-125 {
    padding-bottom: 125px;
  }
  .p-sm-t-125 {
    padding-top: 125px;
  }
  .p-sm-r-125 {
    padding-right: 125px;
  }
  .p-sm-l-125 {
    padding-left: 125px;
  }
  .m-sm-b-125 {
    margin-bottom: 125px;
  }
  .m-sm-t-125 {
    margin-top: 125px;
  }
  .m-sm-r-125 {
    margin-right: 125px;
  }
  .m-sm-l-125 {
    margin-left: 125px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-130 {
    padding-bottom: 130px;
  }
  .p-sm-t-130 {
    padding-top: 130px;
  }
  .p-sm-r-130 {
    padding-right: 130px;
  }
  .p-sm-l-130 {
    padding-left: 130px;
  }
  .m-sm-b-130 {
    margin-bottom: 130px;
  }
  .m-sm-t-130 {
    margin-top: 130px;
  }
  .m-sm-r-130 {
    margin-right: 130px;
  }
  .m-sm-l-130 {
    margin-left: 130px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-135 {
    padding-bottom: 135px;
  }
  .p-sm-t-135 {
    padding-top: 135px;
  }
  .p-sm-r-135 {
    padding-right: 135px;
  }
  .p-sm-l-135 {
    padding-left: 135px;
  }
  .m-sm-b-135 {
    margin-bottom: 135px;
  }
  .m-sm-t-135 {
    margin-top: 135px;
  }
  .m-sm-r-135 {
    margin-right: 135px;
  }
  .m-sm-l-135 {
    margin-left: 135px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-140 {
    padding-bottom: 140px;
  }
  .p-sm-t-140 {
    padding-top: 140px;
  }
  .p-sm-r-140 {
    padding-right: 140px;
  }
  .p-sm-l-140 {
    padding-left: 140px;
  }
  .m-sm-b-140 {
    margin-bottom: 140px;
  }
  .m-sm-t-140 {
    margin-top: 140px;
  }
  .m-sm-r-140 {
    margin-right: 140px;
  }
  .m-sm-l-140 {
    margin-left: 140px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-145 {
    padding-bottom: 145px;
  }
  .p-sm-t-145 {
    padding-top: 145px;
  }
  .p-sm-r-145 {
    padding-right: 145px;
  }
  .p-sm-l-145 {
    padding-left: 145px;
  }
  .m-sm-b-145 {
    margin-bottom: 145px;
  }
  .m-sm-t-145 {
    margin-top: 145px;
  }
  .m-sm-r-145 {
    margin-right: 145px;
  }
  .m-sm-l-145 {
    margin-left: 145px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-150 {
    padding-bottom: 150px;
  }
  .p-sm-t-150 {
    padding-top: 150px;
  }
  .p-sm-r-150 {
    padding-right: 150px;
  }
  .p-sm-l-150 {
    padding-left: 150px;
  }
  .m-sm-b-150 {
    margin-bottom: 150px;
  }
  .m-sm-t-150 {
    margin-top: 150px;
  }
  .m-sm-r-150 {
    margin-right: 150px;
  }
  .m-sm-l-150 {
    margin-left: 150px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-155 {
    padding-bottom: 155px;
  }
  .p-sm-t-155 {
    padding-top: 155px;
  }
  .p-sm-r-155 {
    padding-right: 155px;
  }
  .p-sm-l-155 {
    padding-left: 155px;
  }
  .m-sm-b-155 {
    margin-bottom: 155px;
  }
  .m-sm-t-155 {
    margin-top: 155px;
  }
  .m-sm-r-155 {
    margin-right: 155px;
  }
  .m-sm-l-155 {
    margin-left: 155px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-160 {
    padding-bottom: 160px;
  }
  .p-sm-t-160 {
    padding-top: 160px;
  }
  .p-sm-r-160 {
    padding-right: 160px;
  }
  .p-sm-l-160 {
    padding-left: 160px;
  }
  .m-sm-b-160 {
    margin-bottom: 160px;
  }
  .m-sm-t-160 {
    margin-top: 160px;
  }
  .m-sm-r-160 {
    margin-right: 160px;
  }
  .m-sm-l-160 {
    margin-left: 160px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-165 {
    padding-bottom: 165px;
  }
  .p-sm-t-165 {
    padding-top: 165px;
  }
  .p-sm-r-165 {
    padding-right: 165px;
  }
  .p-sm-l-165 {
    padding-left: 165px;
  }
  .m-sm-b-165 {
    margin-bottom: 165px;
  }
  .m-sm-t-165 {
    margin-top: 165px;
  }
  .m-sm-r-165 {
    margin-right: 165px;
  }
  .m-sm-l-165 {
    margin-left: 165px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-170 {
    padding-bottom: 170px;
  }
  .p-sm-t-170 {
    padding-top: 170px;
  }
  .p-sm-r-170 {
    padding-right: 170px;
  }
  .p-sm-l-170 {
    padding-left: 170px;
  }
  .m-sm-b-170 {
    margin-bottom: 170px;
  }
  .m-sm-t-170 {
    margin-top: 170px;
  }
  .m-sm-r-170 {
    margin-right: 170px;
  }
  .m-sm-l-170 {
    margin-left: 170px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-175 {
    padding-bottom: 175px;
  }
  .p-sm-t-175 {
    padding-top: 175px;
  }
  .p-sm-r-175 {
    padding-right: 175px;
  }
  .p-sm-l-175 {
    padding-left: 175px;
  }
  .m-sm-b-175 {
    margin-bottom: 175px;
  }
  .m-sm-t-175 {
    margin-top: 175px;
  }
  .m-sm-r-175 {
    margin-right: 175px;
  }
  .m-sm-l-175 {
    margin-left: 175px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-180 {
    padding-bottom: 180px;
  }
  .p-sm-t-180 {
    padding-top: 180px;
  }
  .p-sm-r-180 {
    padding-right: 180px;
  }
  .p-sm-l-180 {
    padding-left: 180px;
  }
  .m-sm-b-180 {
    margin-bottom: 180px;
  }
  .m-sm-t-180 {
    margin-top: 180px;
  }
  .m-sm-r-180 {
    margin-right: 180px;
  }
  .m-sm-l-180 {
    margin-left: 180px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-185 {
    padding-bottom: 185px;
  }
  .p-sm-t-185 {
    padding-top: 185px;
  }
  .p-sm-r-185 {
    padding-right: 185px;
  }
  .p-sm-l-185 {
    padding-left: 185px;
  }
  .m-sm-b-185 {
    margin-bottom: 185px;
  }
  .m-sm-t-185 {
    margin-top: 185px;
  }
  .m-sm-r-185 {
    margin-right: 185px;
  }
  .m-sm-l-185 {
    margin-left: 185px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-190 {
    padding-bottom: 190px;
  }
  .p-sm-t-190 {
    padding-top: 190px;
  }
  .p-sm-r-190 {
    padding-right: 190px;
  }
  .p-sm-l-190 {
    padding-left: 190px;
  }
  .m-sm-b-190 {
    margin-bottom: 190px;
  }
  .m-sm-t-190 {
    margin-top: 190px;
  }
  .m-sm-r-190 {
    margin-right: 190px;
  }
  .m-sm-l-190 {
    margin-left: 190px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-195 {
    padding-bottom: 195px;
  }
  .p-sm-t-195 {
    padding-top: 195px;
  }
  .p-sm-r-195 {
    padding-right: 195px;
  }
  .p-sm-l-195 {
    padding-left: 195px;
  }
  .m-sm-b-195 {
    margin-bottom: 195px;
  }
  .m-sm-t-195 {
    margin-top: 195px;
  }
  .m-sm-r-195 {
    margin-right: 195px;
  }
  .m-sm-l-195 {
    margin-left: 195px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-200 {
    padding-bottom: 200px;
  }
  .p-sm-t-200 {
    padding-top: 200px;
  }
  .p-sm-r-200 {
    padding-right: 200px;
  }
  .p-sm-l-200 {
    padding-left: 200px;
  }
  .m-sm-b-200 {
    margin-bottom: 200px;
  }
  .m-sm-t-200 {
    margin-top: 200px;
  }
  .m-sm-r-200 {
    margin-right: 200px;
  }
  .m-sm-l-200 {
    margin-left: 200px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-205 {
    padding-bottom: 205px;
  }
  .p-sm-t-205 {
    padding-top: 205px;
  }
  .p-sm-r-205 {
    padding-right: 205px;
  }
  .p-sm-l-205 {
    padding-left: 205px;
  }
  .m-sm-b-205 {
    margin-bottom: 205px;
  }
  .m-sm-t-205 {
    margin-top: 205px;
  }
  .m-sm-r-205 {
    margin-right: 205px;
  }
  .m-sm-l-205 {
    margin-left: 205px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-210 {
    padding-bottom: 210px;
  }
  .p-sm-t-210 {
    padding-top: 210px;
  }
  .p-sm-r-210 {
    padding-right: 210px;
  }
  .p-sm-l-210 {
    padding-left: 210px;
  }
  .m-sm-b-210 {
    margin-bottom: 210px;
  }
  .m-sm-t-210 {
    margin-top: 210px;
  }
  .m-sm-r-210 {
    margin-right: 210px;
  }
  .m-sm-l-210 {
    margin-left: 210px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-215 {
    padding-bottom: 215px;
  }
  .p-sm-t-215 {
    padding-top: 215px;
  }
  .p-sm-r-215 {
    padding-right: 215px;
  }
  .p-sm-l-215 {
    padding-left: 215px;
  }
  .m-sm-b-215 {
    margin-bottom: 215px;
  }
  .m-sm-t-215 {
    margin-top: 215px;
  }
  .m-sm-r-215 {
    margin-right: 215px;
  }
  .m-sm-l-215 {
    margin-left: 215px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-220 {
    padding-bottom: 220px;
  }
  .p-sm-t-220 {
    padding-top: 220px;
  }
  .p-sm-r-220 {
    padding-right: 220px;
  }
  .p-sm-l-220 {
    padding-left: 220px;
  }
  .m-sm-b-220 {
    margin-bottom: 220px;
  }
  .m-sm-t-220 {
    margin-top: 220px;
  }
  .m-sm-r-220 {
    margin-right: 220px;
  }
  .m-sm-l-220 {
    margin-left: 220px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-225 {
    padding-bottom: 225px;
  }
  .p-sm-t-225 {
    padding-top: 225px;
  }
  .p-sm-r-225 {
    padding-right: 225px;
  }
  .p-sm-l-225 {
    padding-left: 225px;
  }
  .m-sm-b-225 {
    margin-bottom: 225px;
  }
  .m-sm-t-225 {
    margin-top: 225px;
  }
  .m-sm-r-225 {
    margin-right: 225px;
  }
  .m-sm-l-225 {
    margin-left: 225px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-230 {
    padding-bottom: 230px;
  }
  .p-sm-t-230 {
    padding-top: 230px;
  }
  .p-sm-r-230 {
    padding-right: 230px;
  }
  .p-sm-l-230 {
    padding-left: 230px;
  }
  .m-sm-b-230 {
    margin-bottom: 230px;
  }
  .m-sm-t-230 {
    margin-top: 230px;
  }
  .m-sm-r-230 {
    margin-right: 230px;
  }
  .m-sm-l-230 {
    margin-left: 230px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-235 {
    padding-bottom: 235px;
  }
  .p-sm-t-235 {
    padding-top: 235px;
  }
  .p-sm-r-235 {
    padding-right: 235px;
  }
  .p-sm-l-235 {
    padding-left: 235px;
  }
  .m-sm-b-235 {
    margin-bottom: 235px;
  }
  .m-sm-t-235 {
    margin-top: 235px;
  }
  .m-sm-r-235 {
    margin-right: 235px;
  }
  .m-sm-l-235 {
    margin-left: 235px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-240 {
    padding-bottom: 240px;
  }
  .p-sm-t-240 {
    padding-top: 240px;
  }
  .p-sm-r-240 {
    padding-right: 240px;
  }
  .p-sm-l-240 {
    padding-left: 240px;
  }
  .m-sm-b-240 {
    margin-bottom: 240px;
  }
  .m-sm-t-240 {
    margin-top: 240px;
  }
  .m-sm-r-240 {
    margin-right: 240px;
  }
  .m-sm-l-240 {
    margin-left: 240px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-245 {
    padding-bottom: 245px;
  }
  .p-sm-t-245 {
    padding-top: 245px;
  }
  .p-sm-r-245 {
    padding-right: 245px;
  }
  .p-sm-l-245 {
    padding-left: 245px;
  }
  .m-sm-b-245 {
    margin-bottom: 245px;
  }
  .m-sm-t-245 {
    margin-top: 245px;
  }
  .m-sm-r-245 {
    margin-right: 245px;
  }
  .m-sm-l-245 {
    margin-left: 245px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-250 {
    padding-bottom: 250px;
  }
  .p-sm-t-250 {
    padding-top: 250px;
  }
  .p-sm-r-250 {
    padding-right: 250px;
  }
  .p-sm-l-250 {
    padding-left: 250px;
  }
  .m-sm-b-250 {
    margin-bottom: 250px;
  }
  .m-sm-t-250 {
    margin-top: 250px;
  }
  .m-sm-r-250 {
    margin-right: 250px;
  }
  .m-sm-l-250 {
    margin-left: 250px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-255 {
    padding-bottom: 255px;
  }
  .p-sm-t-255 {
    padding-top: 255px;
  }
  .p-sm-r-255 {
    padding-right: 255px;
  }
  .p-sm-l-255 {
    padding-left: 255px;
  }
  .m-sm-b-255 {
    margin-bottom: 255px;
  }
  .m-sm-t-255 {
    margin-top: 255px;
  }
  .m-sm-r-255 {
    margin-right: 255px;
  }
  .m-sm-l-255 {
    margin-left: 255px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-260 {
    padding-bottom: 260px;
  }
  .p-sm-t-260 {
    padding-top: 260px;
  }
  .p-sm-r-260 {
    padding-right: 260px;
  }
  .p-sm-l-260 {
    padding-left: 260px;
  }
  .m-sm-b-260 {
    margin-bottom: 260px;
  }
  .m-sm-t-260 {
    margin-top: 260px;
  }
  .m-sm-r-260 {
    margin-right: 260px;
  }
  .m-sm-l-260 {
    margin-left: 260px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-265 {
    padding-bottom: 265px;
  }
  .p-sm-t-265 {
    padding-top: 265px;
  }
  .p-sm-r-265 {
    padding-right: 265px;
  }
  .p-sm-l-265 {
    padding-left: 265px;
  }
  .m-sm-b-265 {
    margin-bottom: 265px;
  }
  .m-sm-t-265 {
    margin-top: 265px;
  }
  .m-sm-r-265 {
    margin-right: 265px;
  }
  .m-sm-l-265 {
    margin-left: 265px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-270 {
    padding-bottom: 270px;
  }
  .p-sm-t-270 {
    padding-top: 270px;
  }
  .p-sm-r-270 {
    padding-right: 270px;
  }
  .p-sm-l-270 {
    padding-left: 270px;
  }
  .m-sm-b-270 {
    margin-bottom: 270px;
  }
  .m-sm-t-270 {
    margin-top: 270px;
  }
  .m-sm-r-270 {
    margin-right: 270px;
  }
  .m-sm-l-270 {
    margin-left: 270px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-275 {
    padding-bottom: 275px;
  }
  .p-sm-t-275 {
    padding-top: 275px;
  }
  .p-sm-r-275 {
    padding-right: 275px;
  }
  .p-sm-l-275 {
    padding-left: 275px;
  }
  .m-sm-b-275 {
    margin-bottom: 275px;
  }
  .m-sm-t-275 {
    margin-top: 275px;
  }
  .m-sm-r-275 {
    margin-right: 275px;
  }
  .m-sm-l-275 {
    margin-left: 275px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-280 {
    padding-bottom: 280px;
  }
  .p-sm-t-280 {
    padding-top: 280px;
  }
  .p-sm-r-280 {
    padding-right: 280px;
  }
  .p-sm-l-280 {
    padding-left: 280px;
  }
  .m-sm-b-280 {
    margin-bottom: 280px;
  }
  .m-sm-t-280 {
    margin-top: 280px;
  }
  .m-sm-r-280 {
    margin-right: 280px;
  }
  .m-sm-l-280 {
    margin-left: 280px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-285 {
    padding-bottom: 285px;
  }
  .p-sm-t-285 {
    padding-top: 285px;
  }
  .p-sm-r-285 {
    padding-right: 285px;
  }
  .p-sm-l-285 {
    padding-left: 285px;
  }
  .m-sm-b-285 {
    margin-bottom: 285px;
  }
  .m-sm-t-285 {
    margin-top: 285px;
  }
  .m-sm-r-285 {
    margin-right: 285px;
  }
  .m-sm-l-285 {
    margin-left: 285px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-290 {
    padding-bottom: 290px;
  }
  .p-sm-t-290 {
    padding-top: 290px;
  }
  .p-sm-r-290 {
    padding-right: 290px;
  }
  .p-sm-l-290 {
    padding-left: 290px;
  }
  .m-sm-b-290 {
    margin-bottom: 290px;
  }
  .m-sm-t-290 {
    margin-top: 290px;
  }
  .m-sm-r-290 {
    margin-right: 290px;
  }
  .m-sm-l-290 {
    margin-left: 290px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-295 {
    padding-bottom: 295px;
  }
  .p-sm-t-295 {
    padding-top: 295px;
  }
  .p-sm-r-295 {
    padding-right: 295px;
  }
  .p-sm-l-295 {
    padding-left: 295px;
  }
  .m-sm-b-295 {
    margin-bottom: 295px;
  }
  .m-sm-t-295 {
    margin-top: 295px;
  }
  .m-sm-r-295 {
    margin-right: 295px;
  }
  .m-sm-l-295 {
    margin-left: 295px;
  }
}

@media (max-width: 767px) {
  .p-sm-b-300 {
    padding-bottom: 300px;
  }
  .p-sm-t-300 {
    padding-top: 300px;
  }
  .p-sm-r-300 {
    padding-right: 300px;
  }
  .p-sm-l-300 {
    padding-left: 300px;
  }
  .m-sm-b-300 {
    margin-bottom: 300px;
  }
  .m-sm-t-300 {
    margin-top: 300px;
  }
  .m-sm-r-300 {
    margin-right: 300px;
  }
  .m-sm-l-300 {
    margin-left: 300px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-0 {
    padding-bottom: 0px;
  }
  .p-xs-t-0 {
    padding-top: 0px;
  }
  .p-xs-r-0 {
    padding-right: 0px;
  }
  .p-xs-l-0 {
    padding-left: 0px;
  }
  .m-xs-b-0 {
    margin-bottom: 0px;
  }
  .m-xs-t-0 {
    margin-top: 0px;
  }
  .m-xs-r-0 {
    margin-right: 0px;
  }
  .m-xs-l-0 {
    margin-left: 0px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-5 {
    padding-bottom: 5px;
  }
  .p-xs-t-5 {
    padding-top: 5px;
  }
  .p-xs-r-5 {
    padding-right: 5px;
  }
  .p-xs-l-5 {
    padding-left: 5px;
  }
  .m-xs-b-5 {
    margin-bottom: 5px;
  }
  .m-xs-t-5 {
    margin-top: 5px;
  }
  .m-xs-r-5 {
    margin-right: 5px;
  }
  .m-xs-l-5 {
    margin-left: 5px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-10 {
    padding-bottom: 10px;
  }
  .p-xs-t-10 {
    padding-top: 10px;
  }
  .p-xs-r-10 {
    padding-right: 10px;
  }
  .p-xs-l-10 {
    padding-left: 10px;
  }
  .m-xs-b-10 {
    margin-bottom: 10px;
  }
  .m-xs-t-10 {
    margin-top: 10px;
  }
  .m-xs-r-10 {
    margin-right: 10px;
  }
  .m-xs-l-10 {
    margin-left: 10px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-15 {
    padding-bottom: 15px;
  }
  .p-xs-t-15 {
    padding-top: 15px;
  }
  .p-xs-r-15 {
    padding-right: 15px;
  }
  .p-xs-l-15 {
    padding-left: 15px;
  }
  .m-xs-b-15 {
    margin-bottom: 15px;
  }
  .m-xs-t-15 {
    margin-top: 15px;
  }
  .m-xs-r-15 {
    margin-right: 15px;
  }
  .m-xs-l-15 {
    margin-left: 15px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-20 {
    padding-bottom: 20px;
  }
  .p-xs-t-20 {
    padding-top: 20px;
  }
  .p-xs-r-20 {
    padding-right: 20px;
  }
  .p-xs-l-20 {
    padding-left: 20px;
  }
  .m-xs-b-20 {
    margin-bottom: 20px;
  }
  .m-xs-t-20 {
    margin-top: 20px;
  }
  .m-xs-r-20 {
    margin-right: 20px;
  }
  .m-xs-l-20 {
    margin-left: 20px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-25 {
    padding-bottom: 25px;
  }
  .p-xs-t-25 {
    padding-top: 25px;
  }
  .p-xs-r-25 {
    padding-right: 25px;
  }
  .p-xs-l-25 {
    padding-left: 25px;
  }
  .m-xs-b-25 {
    margin-bottom: 25px;
  }
  .m-xs-t-25 {
    margin-top: 25px;
  }
  .m-xs-r-25 {
    margin-right: 25px;
  }
  .m-xs-l-25 {
    margin-left: 25px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-30 {
    padding-bottom: 30px;
  }
  .p-xs-t-30 {
    padding-top: 30px;
  }
  .p-xs-r-30 {
    padding-right: 30px;
  }
  .p-xs-l-30 {
    padding-left: 30px;
  }
  .m-xs-b-30 {
    margin-bottom: 30px;
  }
  .m-xs-t-30 {
    margin-top: 30px;
  }
  .m-xs-r-30 {
    margin-right: 30px;
  }
  .m-xs-l-30 {
    margin-left: 30px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-35 {
    padding-bottom: 35px;
  }
  .p-xs-t-35 {
    padding-top: 35px;
  }
  .p-xs-r-35 {
    padding-right: 35px;
  }
  .p-xs-l-35 {
    padding-left: 35px;
  }
  .m-xs-b-35 {
    margin-bottom: 35px;
  }
  .m-xs-t-35 {
    margin-top: 35px;
  }
  .m-xs-r-35 {
    margin-right: 35px;
  }
  .m-xs-l-35 {
    margin-left: 35px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-40 {
    padding-bottom: 40px;
  }
  .p-xs-t-40 {
    padding-top: 40px;
  }
  .p-xs-r-40 {
    padding-right: 40px;
  }
  .p-xs-l-40 {
    padding-left: 40px;
  }
  .m-xs-b-40 {
    margin-bottom: 40px;
  }
  .m-xs-t-40 {
    margin-top: 40px;
  }
  .m-xs-r-40 {
    margin-right: 40px;
  }
  .m-xs-l-40 {
    margin-left: 40px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-45 {
    padding-bottom: 45px;
  }
  .p-xs-t-45 {
    padding-top: 45px;
  }
  .p-xs-r-45 {
    padding-right: 45px;
  }
  .p-xs-l-45 {
    padding-left: 45px;
  }
  .m-xs-b-45 {
    margin-bottom: 45px;
  }
  .m-xs-t-45 {
    margin-top: 45px;
  }
  .m-xs-r-45 {
    margin-right: 45px;
  }
  .m-xs-l-45 {
    margin-left: 45px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-50 {
    padding-bottom: 50px;
  }
  .p-xs-t-50 {
    padding-top: 50px;
  }
  .p-xs-r-50 {
    padding-right: 50px;
  }
  .p-xs-l-50 {
    padding-left: 50px;
  }
  .m-xs-b-50 {
    margin-bottom: 50px;
  }
  .m-xs-t-50 {
    margin-top: 50px;
  }
  .m-xs-r-50 {
    margin-right: 50px;
  }
  .m-xs-l-50 {
    margin-left: 50px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-55 {
    padding-bottom: 55px;
  }
  .p-xs-t-55 {
    padding-top: 55px;
  }
  .p-xs-r-55 {
    padding-right: 55px;
  }
  .p-xs-l-55 {
    padding-left: 55px;
  }
  .m-xs-b-55 {
    margin-bottom: 55px;
  }
  .m-xs-t-55 {
    margin-top: 55px;
  }
  .m-xs-r-55 {
    margin-right: 55px;
  }
  .m-xs-l-55 {
    margin-left: 55px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-60 {
    padding-bottom: 60px;
  }
  .p-xs-t-60 {
    padding-top: 60px;
  }
  .p-xs-r-60 {
    padding-right: 60px;
  }
  .p-xs-l-60 {
    padding-left: 60px;
  }
  .m-xs-b-60 {
    margin-bottom: 60px;
  }
  .m-xs-t-60 {
    margin-top: 60px;
  }
  .m-xs-r-60 {
    margin-right: 60px;
  }
  .m-xs-l-60 {
    margin-left: 60px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-65 {
    padding-bottom: 65px;
  }
  .p-xs-t-65 {
    padding-top: 65px;
  }
  .p-xs-r-65 {
    padding-right: 65px;
  }
  .p-xs-l-65 {
    padding-left: 65px;
  }
  .m-xs-b-65 {
    margin-bottom: 65px;
  }
  .m-xs-t-65 {
    margin-top: 65px;
  }
  .m-xs-r-65 {
    margin-right: 65px;
  }
  .m-xs-l-65 {
    margin-left: 65px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-70 {
    padding-bottom: 70px;
  }
  .p-xs-t-70 {
    padding-top: 70px;
  }
  .p-xs-r-70 {
    padding-right: 70px;
  }
  .p-xs-l-70 {
    padding-left: 70px;
  }
  .m-xs-b-70 {
    margin-bottom: 70px;
  }
  .m-xs-t-70 {
    margin-top: 70px;
  }
  .m-xs-r-70 {
    margin-right: 70px;
  }
  .m-xs-l-70 {
    margin-left: 70px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-75 {
    padding-bottom: 75px;
  }
  .p-xs-t-75 {
    padding-top: 75px;
  }
  .p-xs-r-75 {
    padding-right: 75px;
  }
  .p-xs-l-75 {
    padding-left: 75px;
  }
  .m-xs-b-75 {
    margin-bottom: 75px;
  }
  .m-xs-t-75 {
    margin-top: 75px;
  }
  .m-xs-r-75 {
    margin-right: 75px;
  }
  .m-xs-l-75 {
    margin-left: 75px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-80 {
    padding-bottom: 80px;
  }
  .p-xs-t-80 {
    padding-top: 80px;
  }
  .p-xs-r-80 {
    padding-right: 80px;
  }
  .p-xs-l-80 {
    padding-left: 80px;
  }
  .m-xs-b-80 {
    margin-bottom: 80px;
  }
  .m-xs-t-80 {
    margin-top: 80px;
  }
  .m-xs-r-80 {
    margin-right: 80px;
  }
  .m-xs-l-80 {
    margin-left: 80px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-85 {
    padding-bottom: 85px;
  }
  .p-xs-t-85 {
    padding-top: 85px;
  }
  .p-xs-r-85 {
    padding-right: 85px;
  }
  .p-xs-l-85 {
    padding-left: 85px;
  }
  .m-xs-b-85 {
    margin-bottom: 85px;
  }
  .m-xs-t-85 {
    margin-top: 85px;
  }
  .m-xs-r-85 {
    margin-right: 85px;
  }
  .m-xs-l-85 {
    margin-left: 85px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-90 {
    padding-bottom: 90px;
  }
  .p-xs-t-90 {
    padding-top: 90px;
  }
  .p-xs-r-90 {
    padding-right: 90px;
  }
  .p-xs-l-90 {
    padding-left: 90px;
  }
  .m-xs-b-90 {
    margin-bottom: 90px;
  }
  .m-xs-t-90 {
    margin-top: 90px;
  }
  .m-xs-r-90 {
    margin-right: 90px;
  }
  .m-xs-l-90 {
    margin-left: 90px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-95 {
    padding-bottom: 95px;
  }
  .p-xs-t-95 {
    padding-top: 95px;
  }
  .p-xs-r-95 {
    padding-right: 95px;
  }
  .p-xs-l-95 {
    padding-left: 95px;
  }
  .m-xs-b-95 {
    margin-bottom: 95px;
  }
  .m-xs-t-95 {
    margin-top: 95px;
  }
  .m-xs-r-95 {
    margin-right: 95px;
  }
  .m-xs-l-95 {
    margin-left: 95px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-100 {
    padding-bottom: 100px;
  }
  .p-xs-t-100 {
    padding-top: 100px;
  }
  .p-xs-r-100 {
    padding-right: 100px;
  }
  .p-xs-l-100 {
    padding-left: 100px;
  }
  .m-xs-b-100 {
    margin-bottom: 100px;
  }
  .m-xs-t-100 {
    margin-top: 100px;
  }
  .m-xs-r-100 {
    margin-right: 100px;
  }
  .m-xs-l-100 {
    margin-left: 100px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-105 {
    padding-bottom: 105px;
  }
  .p-xs-t-105 {
    padding-top: 105px;
  }
  .p-xs-r-105 {
    padding-right: 105px;
  }
  .p-xs-l-105 {
    padding-left: 105px;
  }
  .m-xs-b-105 {
    margin-bottom: 105px;
  }
  .m-xs-t-105 {
    margin-top: 105px;
  }
  .m-xs-r-105 {
    margin-right: 105px;
  }
  .m-xs-l-105 {
    margin-left: 105px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-110 {
    padding-bottom: 110px;
  }
  .p-xs-t-110 {
    padding-top: 110px;
  }
  .p-xs-r-110 {
    padding-right: 110px;
  }
  .p-xs-l-110 {
    padding-left: 110px;
  }
  .m-xs-b-110 {
    margin-bottom: 110px;
  }
  .m-xs-t-110 {
    margin-top: 110px;
  }
  .m-xs-r-110 {
    margin-right: 110px;
  }
  .m-xs-l-110 {
    margin-left: 110px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-115 {
    padding-bottom: 115px;
  }
  .p-xs-t-115 {
    padding-top: 115px;
  }
  .p-xs-r-115 {
    padding-right: 115px;
  }
  .p-xs-l-115 {
    padding-left: 115px;
  }
  .m-xs-b-115 {
    margin-bottom: 115px;
  }
  .m-xs-t-115 {
    margin-top: 115px;
  }
  .m-xs-r-115 {
    margin-right: 115px;
  }
  .m-xs-l-115 {
    margin-left: 115px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-120 {
    padding-bottom: 120px;
  }
  .p-xs-t-120 {
    padding-top: 120px;
  }
  .p-xs-r-120 {
    padding-right: 120px;
  }
  .p-xs-l-120 {
    padding-left: 120px;
  }
  .m-xs-b-120 {
    margin-bottom: 120px;
  }
  .m-xs-t-120 {
    margin-top: 120px;
  }
  .m-xs-r-120 {
    margin-right: 120px;
  }
  .m-xs-l-120 {
    margin-left: 120px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-125 {
    padding-bottom: 125px;
  }
  .p-xs-t-125 {
    padding-top: 125px;
  }
  .p-xs-r-125 {
    padding-right: 125px;
  }
  .p-xs-l-125 {
    padding-left: 125px;
  }
  .m-xs-b-125 {
    margin-bottom: 125px;
  }
  .m-xs-t-125 {
    margin-top: 125px;
  }
  .m-xs-r-125 {
    margin-right: 125px;
  }
  .m-xs-l-125 {
    margin-left: 125px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-130 {
    padding-bottom: 130px;
  }
  .p-xs-t-130 {
    padding-top: 130px;
  }
  .p-xs-r-130 {
    padding-right: 130px;
  }
  .p-xs-l-130 {
    padding-left: 130px;
  }
  .m-xs-b-130 {
    margin-bottom: 130px;
  }
  .m-xs-t-130 {
    margin-top: 130px;
  }
  .m-xs-r-130 {
    margin-right: 130px;
  }
  .m-xs-l-130 {
    margin-left: 130px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-135 {
    padding-bottom: 135px;
  }
  .p-xs-t-135 {
    padding-top: 135px;
  }
  .p-xs-r-135 {
    padding-right: 135px;
  }
  .p-xs-l-135 {
    padding-left: 135px;
  }
  .m-xs-b-135 {
    margin-bottom: 135px;
  }
  .m-xs-t-135 {
    margin-top: 135px;
  }
  .m-xs-r-135 {
    margin-right: 135px;
  }
  .m-xs-l-135 {
    margin-left: 135px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-140 {
    padding-bottom: 140px;
  }
  .p-xs-t-140 {
    padding-top: 140px;
  }
  .p-xs-r-140 {
    padding-right: 140px;
  }
  .p-xs-l-140 {
    padding-left: 140px;
  }
  .m-xs-b-140 {
    margin-bottom: 140px;
  }
  .m-xs-t-140 {
    margin-top: 140px;
  }
  .m-xs-r-140 {
    margin-right: 140px;
  }
  .m-xs-l-140 {
    margin-left: 140px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-145 {
    padding-bottom: 145px;
  }
  .p-xs-t-145 {
    padding-top: 145px;
  }
  .p-xs-r-145 {
    padding-right: 145px;
  }
  .p-xs-l-145 {
    padding-left: 145px;
  }
  .m-xs-b-145 {
    margin-bottom: 145px;
  }
  .m-xs-t-145 {
    margin-top: 145px;
  }
  .m-xs-r-145 {
    margin-right: 145px;
  }
  .m-xs-l-145 {
    margin-left: 145px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-150 {
    padding-bottom: 150px;
  }
  .p-xs-t-150 {
    padding-top: 150px;
  }
  .p-xs-r-150 {
    padding-right: 150px;
  }
  .p-xs-l-150 {
    padding-left: 150px;
  }
  .m-xs-b-150 {
    margin-bottom: 150px;
  }
  .m-xs-t-150 {
    margin-top: 150px;
  }
  .m-xs-r-150 {
    margin-right: 150px;
  }
  .m-xs-l-150 {
    margin-left: 150px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-155 {
    padding-bottom: 155px;
  }
  .p-xs-t-155 {
    padding-top: 155px;
  }
  .p-xs-r-155 {
    padding-right: 155px;
  }
  .p-xs-l-155 {
    padding-left: 155px;
  }
  .m-xs-b-155 {
    margin-bottom: 155px;
  }
  .m-xs-t-155 {
    margin-top: 155px;
  }
  .m-xs-r-155 {
    margin-right: 155px;
  }
  .m-xs-l-155 {
    margin-left: 155px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-160 {
    padding-bottom: 160px;
  }
  .p-xs-t-160 {
    padding-top: 160px;
  }
  .p-xs-r-160 {
    padding-right: 160px;
  }
  .p-xs-l-160 {
    padding-left: 160px;
  }
  .m-xs-b-160 {
    margin-bottom: 160px;
  }
  .m-xs-t-160 {
    margin-top: 160px;
  }
  .m-xs-r-160 {
    margin-right: 160px;
  }
  .m-xs-l-160 {
    margin-left: 160px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-165 {
    padding-bottom: 165px;
  }
  .p-xs-t-165 {
    padding-top: 165px;
  }
  .p-xs-r-165 {
    padding-right: 165px;
  }
  .p-xs-l-165 {
    padding-left: 165px;
  }
  .m-xs-b-165 {
    margin-bottom: 165px;
  }
  .m-xs-t-165 {
    margin-top: 165px;
  }
  .m-xs-r-165 {
    margin-right: 165px;
  }
  .m-xs-l-165 {
    margin-left: 165px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-170 {
    padding-bottom: 170px;
  }
  .p-xs-t-170 {
    padding-top: 170px;
  }
  .p-xs-r-170 {
    padding-right: 170px;
  }
  .p-xs-l-170 {
    padding-left: 170px;
  }
  .m-xs-b-170 {
    margin-bottom: 170px;
  }
  .m-xs-t-170 {
    margin-top: 170px;
  }
  .m-xs-r-170 {
    margin-right: 170px;
  }
  .m-xs-l-170 {
    margin-left: 170px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-175 {
    padding-bottom: 175px;
  }
  .p-xs-t-175 {
    padding-top: 175px;
  }
  .p-xs-r-175 {
    padding-right: 175px;
  }
  .p-xs-l-175 {
    padding-left: 175px;
  }
  .m-xs-b-175 {
    margin-bottom: 175px;
  }
  .m-xs-t-175 {
    margin-top: 175px;
  }
  .m-xs-r-175 {
    margin-right: 175px;
  }
  .m-xs-l-175 {
    margin-left: 175px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-180 {
    padding-bottom: 180px;
  }
  .p-xs-t-180 {
    padding-top: 180px;
  }
  .p-xs-r-180 {
    padding-right: 180px;
  }
  .p-xs-l-180 {
    padding-left: 180px;
  }
  .m-xs-b-180 {
    margin-bottom: 180px;
  }
  .m-xs-t-180 {
    margin-top: 180px;
  }
  .m-xs-r-180 {
    margin-right: 180px;
  }
  .m-xs-l-180 {
    margin-left: 180px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-185 {
    padding-bottom: 185px;
  }
  .p-xs-t-185 {
    padding-top: 185px;
  }
  .p-xs-r-185 {
    padding-right: 185px;
  }
  .p-xs-l-185 {
    padding-left: 185px;
  }
  .m-xs-b-185 {
    margin-bottom: 185px;
  }
  .m-xs-t-185 {
    margin-top: 185px;
  }
  .m-xs-r-185 {
    margin-right: 185px;
  }
  .m-xs-l-185 {
    margin-left: 185px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-190 {
    padding-bottom: 190px;
  }
  .p-xs-t-190 {
    padding-top: 190px;
  }
  .p-xs-r-190 {
    padding-right: 190px;
  }
  .p-xs-l-190 {
    padding-left: 190px;
  }
  .m-xs-b-190 {
    margin-bottom: 190px;
  }
  .m-xs-t-190 {
    margin-top: 190px;
  }
  .m-xs-r-190 {
    margin-right: 190px;
  }
  .m-xs-l-190 {
    margin-left: 190px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-195 {
    padding-bottom: 195px;
  }
  .p-xs-t-195 {
    padding-top: 195px;
  }
  .p-xs-r-195 {
    padding-right: 195px;
  }
  .p-xs-l-195 {
    padding-left: 195px;
  }
  .m-xs-b-195 {
    margin-bottom: 195px;
  }
  .m-xs-t-195 {
    margin-top: 195px;
  }
  .m-xs-r-195 {
    margin-right: 195px;
  }
  .m-xs-l-195 {
    margin-left: 195px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-200 {
    padding-bottom: 200px;
  }
  .p-xs-t-200 {
    padding-top: 200px;
  }
  .p-xs-r-200 {
    padding-right: 200px;
  }
  .p-xs-l-200 {
    padding-left: 200px;
  }
  .m-xs-b-200 {
    margin-bottom: 200px;
  }
  .m-xs-t-200 {
    margin-top: 200px;
  }
  .m-xs-r-200 {
    margin-right: 200px;
  }
  .m-xs-l-200 {
    margin-left: 200px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-205 {
    padding-bottom: 205px;
  }
  .p-xs-t-205 {
    padding-top: 205px;
  }
  .p-xs-r-205 {
    padding-right: 205px;
  }
  .p-xs-l-205 {
    padding-left: 205px;
  }
  .m-xs-b-205 {
    margin-bottom: 205px;
  }
  .m-xs-t-205 {
    margin-top: 205px;
  }
  .m-xs-r-205 {
    margin-right: 205px;
  }
  .m-xs-l-205 {
    margin-left: 205px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-210 {
    padding-bottom: 210px;
  }
  .p-xs-t-210 {
    padding-top: 210px;
  }
  .p-xs-r-210 {
    padding-right: 210px;
  }
  .p-xs-l-210 {
    padding-left: 210px;
  }
  .m-xs-b-210 {
    margin-bottom: 210px;
  }
  .m-xs-t-210 {
    margin-top: 210px;
  }
  .m-xs-r-210 {
    margin-right: 210px;
  }
  .m-xs-l-210 {
    margin-left: 210px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-215 {
    padding-bottom: 215px;
  }
  .p-xs-t-215 {
    padding-top: 215px;
  }
  .p-xs-r-215 {
    padding-right: 215px;
  }
  .p-xs-l-215 {
    padding-left: 215px;
  }
  .m-xs-b-215 {
    margin-bottom: 215px;
  }
  .m-xs-t-215 {
    margin-top: 215px;
  }
  .m-xs-r-215 {
    margin-right: 215px;
  }
  .m-xs-l-215 {
    margin-left: 215px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-220 {
    padding-bottom: 220px;
  }
  .p-xs-t-220 {
    padding-top: 220px;
  }
  .p-xs-r-220 {
    padding-right: 220px;
  }
  .p-xs-l-220 {
    padding-left: 220px;
  }
  .m-xs-b-220 {
    margin-bottom: 220px;
  }
  .m-xs-t-220 {
    margin-top: 220px;
  }
  .m-xs-r-220 {
    margin-right: 220px;
  }
  .m-xs-l-220 {
    margin-left: 220px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-225 {
    padding-bottom: 225px;
  }
  .p-xs-t-225 {
    padding-top: 225px;
  }
  .p-xs-r-225 {
    padding-right: 225px;
  }
  .p-xs-l-225 {
    padding-left: 225px;
  }
  .m-xs-b-225 {
    margin-bottom: 225px;
  }
  .m-xs-t-225 {
    margin-top: 225px;
  }
  .m-xs-r-225 {
    margin-right: 225px;
  }
  .m-xs-l-225 {
    margin-left: 225px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-230 {
    padding-bottom: 230px;
  }
  .p-xs-t-230 {
    padding-top: 230px;
  }
  .p-xs-r-230 {
    padding-right: 230px;
  }
  .p-xs-l-230 {
    padding-left: 230px;
  }
  .m-xs-b-230 {
    margin-bottom: 230px;
  }
  .m-xs-t-230 {
    margin-top: 230px;
  }
  .m-xs-r-230 {
    margin-right: 230px;
  }
  .m-xs-l-230 {
    margin-left: 230px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-235 {
    padding-bottom: 235px;
  }
  .p-xs-t-235 {
    padding-top: 235px;
  }
  .p-xs-r-235 {
    padding-right: 235px;
  }
  .p-xs-l-235 {
    padding-left: 235px;
  }
  .m-xs-b-235 {
    margin-bottom: 235px;
  }
  .m-xs-t-235 {
    margin-top: 235px;
  }
  .m-xs-r-235 {
    margin-right: 235px;
  }
  .m-xs-l-235 {
    margin-left: 235px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-240 {
    padding-bottom: 240px;
  }
  .p-xs-t-240 {
    padding-top: 240px;
  }
  .p-xs-r-240 {
    padding-right: 240px;
  }
  .p-xs-l-240 {
    padding-left: 240px;
  }
  .m-xs-b-240 {
    margin-bottom: 240px;
  }
  .m-xs-t-240 {
    margin-top: 240px;
  }
  .m-xs-r-240 {
    margin-right: 240px;
  }
  .m-xs-l-240 {
    margin-left: 240px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-245 {
    padding-bottom: 245px;
  }
  .p-xs-t-245 {
    padding-top: 245px;
  }
  .p-xs-r-245 {
    padding-right: 245px;
  }
  .p-xs-l-245 {
    padding-left: 245px;
  }
  .m-xs-b-245 {
    margin-bottom: 245px;
  }
  .m-xs-t-245 {
    margin-top: 245px;
  }
  .m-xs-r-245 {
    margin-right: 245px;
  }
  .m-xs-l-245 {
    margin-left: 245px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-250 {
    padding-bottom: 250px;
  }
  .p-xs-t-250 {
    padding-top: 250px;
  }
  .p-xs-r-250 {
    padding-right: 250px;
  }
  .p-xs-l-250 {
    padding-left: 250px;
  }
  .m-xs-b-250 {
    margin-bottom: 250px;
  }
  .m-xs-t-250 {
    margin-top: 250px;
  }
  .m-xs-r-250 {
    margin-right: 250px;
  }
  .m-xs-l-250 {
    margin-left: 250px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-255 {
    padding-bottom: 255px;
  }
  .p-xs-t-255 {
    padding-top: 255px;
  }
  .p-xs-r-255 {
    padding-right: 255px;
  }
  .p-xs-l-255 {
    padding-left: 255px;
  }
  .m-xs-b-255 {
    margin-bottom: 255px;
  }
  .m-xs-t-255 {
    margin-top: 255px;
  }
  .m-xs-r-255 {
    margin-right: 255px;
  }
  .m-xs-l-255 {
    margin-left: 255px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-260 {
    padding-bottom: 260px;
  }
  .p-xs-t-260 {
    padding-top: 260px;
  }
  .p-xs-r-260 {
    padding-right: 260px;
  }
  .p-xs-l-260 {
    padding-left: 260px;
  }
  .m-xs-b-260 {
    margin-bottom: 260px;
  }
  .m-xs-t-260 {
    margin-top: 260px;
  }
  .m-xs-r-260 {
    margin-right: 260px;
  }
  .m-xs-l-260 {
    margin-left: 260px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-265 {
    padding-bottom: 265px;
  }
  .p-xs-t-265 {
    padding-top: 265px;
  }
  .p-xs-r-265 {
    padding-right: 265px;
  }
  .p-xs-l-265 {
    padding-left: 265px;
  }
  .m-xs-b-265 {
    margin-bottom: 265px;
  }
  .m-xs-t-265 {
    margin-top: 265px;
  }
  .m-xs-r-265 {
    margin-right: 265px;
  }
  .m-xs-l-265 {
    margin-left: 265px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-270 {
    padding-bottom: 270px;
  }
  .p-xs-t-270 {
    padding-top: 270px;
  }
  .p-xs-r-270 {
    padding-right: 270px;
  }
  .p-xs-l-270 {
    padding-left: 270px;
  }
  .m-xs-b-270 {
    margin-bottom: 270px;
  }
  .m-xs-t-270 {
    margin-top: 270px;
  }
  .m-xs-r-270 {
    margin-right: 270px;
  }
  .m-xs-l-270 {
    margin-left: 270px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-275 {
    padding-bottom: 275px;
  }
  .p-xs-t-275 {
    padding-top: 275px;
  }
  .p-xs-r-275 {
    padding-right: 275px;
  }
  .p-xs-l-275 {
    padding-left: 275px;
  }
  .m-xs-b-275 {
    margin-bottom: 275px;
  }
  .m-xs-t-275 {
    margin-top: 275px;
  }
  .m-xs-r-275 {
    margin-right: 275px;
  }
  .m-xs-l-275 {
    margin-left: 275px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-280 {
    padding-bottom: 280px;
  }
  .p-xs-t-280 {
    padding-top: 280px;
  }
  .p-xs-r-280 {
    padding-right: 280px;
  }
  .p-xs-l-280 {
    padding-left: 280px;
  }
  .m-xs-b-280 {
    margin-bottom: 280px;
  }
  .m-xs-t-280 {
    margin-top: 280px;
  }
  .m-xs-r-280 {
    margin-right: 280px;
  }
  .m-xs-l-280 {
    margin-left: 280px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-285 {
    padding-bottom: 285px;
  }
  .p-xs-t-285 {
    padding-top: 285px;
  }
  .p-xs-r-285 {
    padding-right: 285px;
  }
  .p-xs-l-285 {
    padding-left: 285px;
  }
  .m-xs-b-285 {
    margin-bottom: 285px;
  }
  .m-xs-t-285 {
    margin-top: 285px;
  }
  .m-xs-r-285 {
    margin-right: 285px;
  }
  .m-xs-l-285 {
    margin-left: 285px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-290 {
    padding-bottom: 290px;
  }
  .p-xs-t-290 {
    padding-top: 290px;
  }
  .p-xs-r-290 {
    padding-right: 290px;
  }
  .p-xs-l-290 {
    padding-left: 290px;
  }
  .m-xs-b-290 {
    margin-bottom: 290px;
  }
  .m-xs-t-290 {
    margin-top: 290px;
  }
  .m-xs-r-290 {
    margin-right: 290px;
  }
  .m-xs-l-290 {
    margin-left: 290px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-295 {
    padding-bottom: 295px;
  }
  .p-xs-t-295 {
    padding-top: 295px;
  }
  .p-xs-r-295 {
    padding-right: 295px;
  }
  .p-xs-l-295 {
    padding-left: 295px;
  }
  .m-xs-b-295 {
    margin-bottom: 295px;
  }
  .m-xs-t-295 {
    margin-top: 295px;
  }
  .m-xs-r-295 {
    margin-right: 295px;
  }
  .m-xs-l-295 {
    margin-left: 295px;
  }
}

@media (max-width: 575px) {
  .p-xs-b-300 {
    padding-bottom: 300px;
  }
  .p-xs-t-300 {
    padding-top: 300px;
  }
  .p-xs-r-300 {
    padding-right: 300px;
  }
  .p-xs-l-300 {
    padding-left: 300px;
  }
  .m-xs-b-300 {
    margin-bottom: 300px;
  }
  .m-xs-t-300 {
    margin-top: 300px;
  }
  .m-xs-r-300 {
    margin-right: 300px;
  }
  .m-xs-l-300 {
    margin-left: 300px;
  }
}
