/*----------------------------------
Table of contents
----------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Pacifico");
/* ------------------------
*	General
------------------------*/
body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #57667E;
  font-weight: 400;
  line-height: 1.6;
  font-smoothing: antialiased;
  overflow-x: hidden; }

html {
  overflow-x: hidden; }

a {
  color: #03c; }
  a:hover {
    color: #0029a3;
    text-decoration: none; }

img {
  max-width: 100%; }

/* ----------------------
*	Font alternative
-------------------------*/
.font-alt {
  font-family: "Pacifico", sans-serif; }

/* ----------------------
*	Loading
---------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #03c;
  z-index: 99999; }

.load-circle {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px; }
  .load-circle span {
    display: inline-block;
    width: 64px;
    height: 64px; }
    .load-circle span:after {
      content: " ";
      display: block;
      width: 46px;
      height: 46px;
      margin: 1px;
      border-radius: 50%;
      border: 5px solid #ffffff;
      border-color: #ffffff transparent #ffffff transparent;
      animation: lds-dual-ring 1.2s linear infinite; }

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* ----------------------
*Heading fonts size
---------------------------*/
.h1,
h1 {
  font-size: 40px; }
  @media (max-width: 991px) {
    .h1,
    h1 {
      font-size: 30px; } }
  @media (max-width: 767px) {
    .h1,
    h1 {
      font-size: 25px; } }

.h2,
h2 {
  font-size: 30px; }
  @media (max-width: 991px) {
    .h2,
    h2 {
      font-size: 22px; } }
  @media (max-width: 767px) {
    .h2,
    h2 {
      font-size: 18px; } }

.h3,
h3 {
  font-size: 28px; }
  @media (max-width: 991px) {
    .h3,
    h3 {
      font-size: 24px; } }
  @media (max-width: 767px) {
    .h3,
    h3 {
      font-size: 20px; } }

.h4,
h4 {
  font-size: 24px; }
  @media (max-width: 767px) {
    .h4,
    h4 {
      font-size: 20px; } }

.h5,
h5 {
  font-size: 20px; }

.h6,
h6 {
  font-size: 15px; }

/*	Cookie Dialog
---------------------------*/
.herbyCookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.15);
  z-index: 9999; }
  .herbyCookieConsent p {
    display: inline;
    color: #011638; }
  .herbyCookieConsent a {
    text-decoration: underline;
    color: #011638;
    font-weight: 600; }
  .herbyCookieConsent .herbyBtn {
    display: inline-block;
    padding: 4px 10px;
    vertical-align: middle;
    margin-left: 15px;
    line-height: normal;
    background: #03c;
    font-size: 16px;
    font-weight: normal;
    color: #ffffff !important;
    border-radius: 15px;
    cursor: pointer; }

/* ----------------------
*	404
---------------------------*/
.page-404 .page-404-in {
  display: inline-block;
  vertical-align: top;
  padding: 10%;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 5px;
  margin: 80px 0;
  border: 10px solid #fff; }
.page-404 h3 {
  font-size: 20px; }
.page-404 h1 {
  font-size: 100px;
  font-weight: 700; }
  @media (max-width: 991px) {
    .page-404 h1 {
      font-size: 80px; } }
  @media (max-width: 767px) {
    .page-404 h1 {
      font-size: 50px; } }

/*	Toggle Menu
-------------------------*/
.navbar-toggler {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0;
  border-radius: 0;
  padding: 0;
  margin-left: 15px;
  background: #03c;
  border: none; }
  .header-transparent-white .navbar-toggler {
    background: #ffffff; }
  .navbar-toggler span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 2px;
    margin: auto;
    box-shadow: 0px -8px 0 0px currentColor, 0px 8px 0 0px currentColor;
    background: #ffffff;
    color: #ffffff; }
    .header-transparent-white .navbar-toggler span {
      background: #011638;
      color: #011638; }

/*	Search
-------------------------*/
.h-search-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.95);
  -moz-transition: ease-in-out all 0.55s;
  -o-transition: ease-in-out all 0.55s;
  -webkit-transition: ease-in-out all 0.55s;
  transition: ease-in-out all 0.55s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none; }
  .h-search-section .h_search {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: #ffffff; }
  .h-search-section .h-search-form form {
    position: relative; }
  .h-search-section .h-search-form .input-search {
    width: 100%;
    height: 59px;
    padding: 5px 70px 5px 0;
    border: none;
    font-size: 22px;
    background: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    outline: none;
    box-shadow: none;
    color: #ffffff; }
  .h-search-section .h-search-form .searc-btn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 19px;
    height: 50px;
    width: 50px;
    padding: 0;
    line-height: 46px;
    background: none;
    color: #ffffff;
    border: none; }
  .h-search-section.searh-form-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; }

/* Header top
-----------------------------*/
.top-header {
  -moz-transition: ease all 0.35s;
  -o-transition: ease all 0.35s;
  -webkit-transition: ease all 0.35s;
  transition: ease all 0.35s; }
  .top-header .ht-info .nav li {
    position: relative; }
    .header-white .top-header .ht-info .nav li {
      color: #ffffff; }
    .header-transparent-dark .top-header .ht-info .nav li {
      color: #011638; }
    .header-transparent-white .top-header .ht-info .nav li {
      color: #ffffff; }
    .top-header .ht-info .nav li + li {
      padding-left: 15px;
      margin-left: 15px; }
      .top-header .ht-info .nav li + li:after {
        content: "";
        position: absolute;
        top: 8px;
        bottom: 6px;
        width: 1px;
        background-color: currentColor;
        left: 0;
        opacity: 0.5; }
  .top-header .ht-info a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    position: relative;
    line-height: 35px; }
    .header-white .top-header .ht-info a {
      color: rgba(255, 255, 255, 0.8); }
      .header-white .top-header .ht-info a:hover {
        color: #ffffff; }
    .header-transparent-dark .top-header .ht-info a {
      color: rgba(1, 22, 56, 0.8); }
      .header-transparent-dark .top-header .ht-info a:hover {
        color: #011638; }
    .header-transparent-white .top-header .ht-info a {
      color: #ffffff; }
      .header-transparent-white .top-header .ht-info a:hover {
        color: rgba(255, 255, 255, 0.8); }
  .top-header .ht-social a {
    padding: 0 8px;
    display: block;
    font-size: 12px;
    line-height: 35px; }
    .header-white .top-header .ht-social a {
      color: rgba(255, 255, 255, 0.8); }
      .header-white .top-header .ht-social a:hover {
        color: #ffffff; }
    .header-transparent-dark .top-header .ht-social a {
      color: rgba(1, 22, 56, 0.8); }
      .header-transparent-dark .top-header .ht-social a:hover {
        color: #ffffff; }
    .header-transparent-white .top-header .ht-social a {
      color: #ffffff; }
      .header-transparent-white .top-header .ht-social a:hover {
        color: rgba(255, 255, 255, 0.8); }

/* Header Nav
-----------------------------*/
.fixed-header-bar {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  -moz-transition: ease all 0.35s;
  -o-transition: ease all 0.35s;
  -webkit-transition: ease all 0.35s;
  transition: ease all 0.35s; }
  .header-white .fixed-header-bar {
    background: #ffffff; }
  .header-transparent-dark.fixed-header .fixed-header-bar {
    background: #ffffff; }
  .header-transparent-white .fixed-header-bar {
    background: transparent; }
  .header-transparent-white.fixed-header .fixed-header-bar {
    background: #ffffff; }
  .header-transparent-white .fixed-header-bar .top-header-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .header-transparent-dark .fixed-header-bar .top-header-border {
    border-bottom: 1px solid rgba(1, 22, 56, 0.2); }
  .fixed-header .fixed-header-bar {
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1); }
    .fixed-header .fixed-header-bar .top-header {
      margin-top: -36px; }

.main-navbar {
  padding: 0; }
  .main-navbar .logo-dark {
    display: none; }
    .fixed-header .main-navbar .logo-dark {
      display: block; }
  .fixed-header .main-navbar .logo-light {
    display: none; }
  @media (min-width: 992px) {
    .main-navbar .navbar-nav > li {
      margin: 0 6px; }
      .main-navbar .navbar-nav > li.mm-in > a {
        position: relative;
        padding-right: 15px; }
        .main-navbar .navbar-nav > li.mm-in > a:after {
          content: "";
          position: absolute;
          width: 6px;
          height: 6px;
          border-bottom: 1px solid currentColor;
          border-right: 1px solid currentColor;
          -moz-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          right: 0;
          top: -5px;
          bottom: 0;
          margin: auto; } }
      @media (min-width: 992px) and (max-width: 991px) {
        .main-navbar .navbar-nav > li.mm-in > a:after {
          display: none; } }
  @media (min-width: 992px) {
      .main-navbar .navbar-nav > li > a {
        font-size: 15px;
        font-weight: 500;
        padding: 25px 0;
        display: block; }
        .header-white .main-navbar .navbar-nav > li > a {
          color: #011638; }
        .header-transparent-dark .main-navbar .navbar-nav > li > a {
          color: #011638; }
          .header-transparent-dark .main-navbar .navbar-nav > li > a.active {
            color: #03c; }
        .header-transparent-white .main-navbar .navbar-nav > li > a {
          color: #ffffff; }
        .header-transparent-white.fixed-header .main-navbar .navbar-nav > li > a {
          color: #57667E; }
          .header-transparent-white.fixed-header .main-navbar .navbar-nav > li > a.active {
            color: #03c; }
      .header-white .main-navbar .navbar-nav > li:hover > a {
        color: #03c; }
      .header-transparent-dark .main-navbar .navbar-nav > li:hover > a {
        color: #03c; }
      .header-transparent-white .main-navbar .navbar-nav > li:hover > a {
        color: #03c; }
      .header-transparent-white:not(.fixed-header) .main-navbar .navbar-nav > li:hover > a {
        color: #ffffff; } }
  .main-navbar .extra-menu .line {
    padding-left: 10px;
    margin-left: 10px;
    position: relative; }
    .main-navbar .extra-menu .line:after {
      content: "";
      position: absolute;
      bottom: 0;
      top: 0;
      margin: auto;
      left: 0;
      width: 1px;
      height: 20px; }
      .header-white .main-navbar .extra-menu .line:after {
        background: #011638;
        opacity: 0.2; }
      .header-transparent-dark .main-navbar .extra-menu .line:after {
        background: #011638;
        opacity: 0.2; }
      .header-transparent-white .main-navbar .extra-menu .line:after {
        background: #ffffff;
        opacity: 0.2; }
      .header-transparent-white.fixed-header .main-navbar .extra-menu .line:after {
        background: #011638; }
  .main-navbar .extra-menu .header-searchbar .search-toggle {
    margin: 0;
    padding: 0 5px;
    line-height: 35px;
    cursor: pointer; }
    .header-white .main-navbar .extra-menu .header-searchbar .search-toggle {
      color: #011638; }
    .header-transparent-dark .main-navbar .extra-menu .header-searchbar .search-toggle {
      color: #011638; }
    .header-transparent-white .main-navbar .extra-menu .header-searchbar .search-toggle {
      color: #ffffff; }
    .header-transparent-white.fixed-header .main-navbar .extra-menu .header-searchbar .search-toggle {
      color: #57667E; }

/* Responsive Menu
-----------------------------*/
@media (max-width: 991px) {
  .main-navbar {
    padding: 10px 15px; }
    .main-navbar > .container {
      padding-left: 0px;
      padding-right: 0px; }
    .main-navbar .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #ffffff;
      max-height: 80vh;
      overflow-y: auto; }
    .main-navbar .navbar-nav > li {
      margin: 0;
      border-top: 1px solid #e6e6e6; }
      .main-navbar .navbar-nav > li > a {
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 700;
        padding: 0 15px;
        line-height: 40px;
        display: block;
        color: #011638; } }
/* Desktop
--------------------*/
@media (min-width: 992px) {
  .simple-dropdown {
    position: relative; }
    .simple-dropdown .m-dropdown-toggle {
      display: none; }
    .simple-dropdown .m-dropdown-menu {
      position: absolute;
      top: 110%;
      left: 0;
      background: #ffffff;
      box-shadow: 0px 26px 21px 0px rgba(0, 0, 0, 0.1);
      width: 180px;
      margin: 0;
      padding: 10px 0;
      list-style: none;
      pointer-events: none;
      -moz-transition: ease all 0.55s;
      -o-transition: ease all 0.55s;
      -webkit-transition: ease all 0.55s;
      transition: ease all 0.55s;
      opacity: 0; }
      .simple-dropdown .m-dropdown-menu > li > a {
        color: #011638;
        padding: 8px 15px;
        display: block;
        font-size: 14px;
        font-weight: 600; }
        .simple-dropdown .m-dropdown-menu > li > a i {
          font-size: 14px;
          vertical-align: middle;
          width: 24px;
          display: inline-block; }
      .simple-dropdown .m-dropdown-menu > li:hover > a {
        color: #03c; }
    .simple-dropdown:hover .m-dropdown-menu {
      opacity: 1;
      top: 100%;
      pointer-events: auto; }

  .m-mega-menu {
    position: static !important; }
    .m-mega-menu .m-dropdown-mega-menu {
      width: 100%;
      padding: 10px 25px; }
    .m-mega-menu .mm-link {
      margin: 0;
      padding: 15px 0; }
      .m-mega-menu .mm-link li {
        list-style: none;
        position: relative;
        padding: 6px 0; }
        .m-mega-menu .mm-link li > a {
          color: #011638;
          padding: 8px 15px;
          display: block;
          font-size: 14px;
          font-weight: 600; }
          .m-mega-menu .mm-link li > a i {
            font-size: 14px;
            vertical-align: middle;
            width: 24px;
            display: inline-block; }
        .m-mega-menu .mm-link li:hover > a {
          color: #03c; } }
/* Mobile
--------------------*/
@media (max-width: 991px) {
  .m-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-left: 1px solid #e6e6e6;
    color: #011638; }

  .simple-dropdown {
    position: relative; }
    .simple-dropdown .m-dropdown-menu {
      margin: 0;
      padding: 0;
      list-style: none;
      display: none;
      padding: 0;
      background: #f5f5f5;
      border-top: 1px solid #e6e6e6; }
      .simple-dropdown .m-dropdown-menu > li {
        padding-left: 10px; }
        .simple-dropdown .m-dropdown-menu > li:not(:last-child) {
          border-bottom: 1px solid #e6e6e6; }
        .simple-dropdown .m-dropdown-menu > li > a {
          display: block;
          padding: 0 15px;
          font-size: 13px;
          font-weight: 600;
          line-height: 40px;
          color: #011638; }
          .simple-dropdown .m-dropdown-menu > li > a:hover {
            color: #03c; }
    .simple-dropdown .m-dropdown-menu .container {
      padding: 0; }
    .simple-dropdown .m-dropdown-menu .mm-link {
      margin: 0;
      padding: 0;
      list-style: none; }
      .simple-dropdown .m-dropdown-menu .mm-link > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
        .simple-dropdown .m-dropdown-menu .mm-link > li > a {
          display: block;
          padding: 10px 0 10px 25px;
          font-size: 15px;
          color: #9d9d9d;
          vertical-align: top;
          position: relative; }
          .simple-dropdown .m-dropdown-menu .mm-link > li > a i {
            position: absolute;
            top: 15px;
            left: 0;
            font-size: 13px;
            opacity: 0.6; }
          .simple-dropdown .m-dropdown-menu .mm-link > li > a.active {
            color: #ffffff; }
    .simple-dropdown.open-menu-parent .m-dropdown-menu {
      display: block; } }
/* Footer 1
---------------------------------*/
.footer-one {
  background: #000000; }
  .footer-one .footer-top {
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .footer-one .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px; }
    .footer-one .footer-bottom .nav li {
      margin-right: 15px; }
    .footer-one .footer-bottom p {
      margin: 0;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 300; }
  .footer-one .fot-title {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    margin: 0 0 20px; }
  .footer-one .footer-link .nav li + li {
    margin-top: 8px; }
  .footer-one .footer-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 10px; }
    .footer-one .footer-info p a {
      color: #15db95;
      border-bottom: 1px solid rgba(255, 255, 255, 0.6); }
      .footer-one .footer-info p a:hover {
        color: #ffffff; }
  .footer-one .fot-icon {
    margin: 0;
    padding: 0; }
    .footer-one .fot-icon li {
      display: inline-block;
      vertical-align: top;
      margin-right: 4px;
      list-style: none; }
    .footer-one .fot-icon a {
      background: #15db95;
      color: #ffffff;
      display: block;
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center; }
      .footer-one .fot-icon a:hover {
        background: #03c; }
  .footer-one .nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 300;
    display: inline-block; }
    .footer-one .nav a:hover {
      color: #ffffff; }

/* Footer 2
---------------------------------*/
.footer-2 {
  background: #f5f8fd; }
  .footer-2 .footer-top {
    padding: 50px 0;
    border-bottom: 1px solid rgba(1, 22, 56, 0.1); }
  .footer-2 .footer-about .fot-logo {
    margin-bottom: 20px; }
  .footer-2 .footer-about p {
    color: rgba(1, 22, 56, 0.6);
    font-size: 14px;
    margin: 0; }
  .footer-2 .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px; }
    .footer-2 .footer-bottom .nav li {
      margin-right: 15px; }
    .footer-2 .footer-bottom p {
      margin: 0;
      font-size: 14px;
      color: rgba(1, 22, 56, 0.6);
      font-weight: 500; }
  .footer-2 .fot-title {
    color: #011638;
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 20px; }
  .footer-2 .footer-link .nav li + li {
    margin-top: 8px; }
  .footer-2 .nav a {
    font-size: 14px;
    color: rgba(1, 22, 56, 0.6);
    font-weight: 500;
    display: inline-block; }
    .footer-2 .nav a:hover {
      color: #03c; }

/* Buttons
--------------------------------*/
.overlay-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 0; }

.m-btn-dual .m-btn {
  margin: 5px; }

.m-btn {
  display: inline-block;
  border: 2px solid transparent;
  color: inherit;
  line-height: inherit;
  border-radius: 0;
  width: auto;
  padding: 10px 25px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  -moz-transition: ease-in-out all 0.55s;
  -o-transition: ease-in-out all 0.55s;
  -webkit-transition: ease-in-out all 0.55s;
  transition: ease-in-out all 0.55s;
  text-align: center; }
  .m-btn.m-link {
    padding-right: 0;
    padding-left: 0; }
    .m-btn.m-link.white {
      color: #ffffff; }
    .m-btn.m-link.theme {
      color: #03c; }
    .m-btn.m-link.theme2nd {
      color: #15db95; }
  .m-btn i {
    vertical-align: middle; }
  .m-btn.m-btn-shadow {
    box-shadow: 0 21px 35px -5px rgba(0, 0, 0, 0.3); }
  .m-btn.m-btn-round {
    border-radius: 50px; }
  .m-btn.m-btn-radius {
    border-radius: 4px; }
  .m-btn.m-btn-xsm {
    font-size: 9px;
    padding: 1px 17px;
    line-height: 22px; }
  .m-btn.m-btn-sm {
    font-size: 11px;
    padding: 4px 24px; }
  .m-btn.m-btn-lg {
    font-size: 13px;
    padding: 12px 34px;
    line-height: 25px; }
  .m-btn.m-btn-xl {
    font-size: 15px;
    padding: 15px 40px;
    line-height: 25px; }
  .m-btn.m-btn-black {
    background: #000000;
    border-color: #000000;
    color: #ffffff; }
    .m-btn.m-btn-black:focus, .m-btn.m-btn-black:hover {
      background: transparent;
      color: #000000; }
  .m-btn.m-btn-t-black {
    background: transparent;
    border-color: #000000;
    color: #000000; }
    .m-btn.m-btn-t-black:focus, .m-btn.m-btn-t-black:hover {
      background: #000000;
      border-color: #000000;
      color: #ffffff; }
  .m-btn.m-btn-white {
    background: #ffffff;
    border-color: #ffffff;
    color: #011638; }
    .m-btn.m-btn-white:focus, .m-btn.m-btn-white:hover {
      background: transparent;
      color: #ffffff; }
  .m-btn.m-btn-t-white {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff; }
    .m-btn.m-btn-t-white:focus, .m-btn.m-btn-t-white:hover {
      background: #ffffff;
      border-color: #ffffff;
      color: #011638; }
  .m-btn.m-btn-theme-light {
    background: #668cff;
    border-color: #668cff;
    color: #ffffff;
    color: #03c; }
    .m-btn.m-btn-theme-light:hover {
      background: #03c;
      border-color: #03c;
      color: #ffffff; }
  .m-btn.m-btn-theme2nd-light {
    background: #ccfaea;
    border-color: #ccfaea;
    color: #ffffff;
    color: #15db95; }
    .m-btn.m-btn-theme2nd-light:hover {
      background: #15db95;
      border-color: #15db95;
      color: #ffffff; }
  .m-btn.m-btn-theme {
    background: #03c;
    border-color: #03c;
    color: #ffffff; }
    .m-btn.m-btn-theme:focus, .m-btn.m-btn-theme:hover {
      background: transparent;
      color: #03c; }
  .m-btn.m-btn-t-theme {
    background: transparent;
    border-color: #03c;
    color: #03c; }
    .m-btn.m-btn-t-theme:focus, .m-btn.m-btn-t-theme:hover {
      background: #03c;
      border-color: #03c;
      color: #ffffff; }
  .m-btn.m-btn-theme2nd {
    background: #15db95;
    border-color: #15db95;
    color: #ffffff; }
    .m-btn.m-btn-theme2nd:focus, .m-btn.m-btn-theme2nd:hover {
      background: transparent;
      color: #15db95; }
  .m-btn.m-btn-t-theme2nd {
    background: transparent;
    border-color: #15db95;
    color: #15db95; }
    .m-btn.m-btn-t-theme2nd:focus, .m-btn.m-btn-t-theme2nd:hover {
      background: #15db95;
      border-color: #15db95;
      color: #ffffff; }

.m-btn-icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  border: 2px solid transparent; }
  .m-btn-icon.lg {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 30px; }
  .m-btn-icon.md {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 22px; }
  .m-btn-icon.sm {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px; }
  .m-btn-icon.theme-light {
    background: #668cff;
    color: #03c;
    border-color: #668cff; }
    .m-btn-icon.theme-light:focus, .m-btn-icon.theme-light:hover {
      background: #03c;
      border-color: #03c;
      color: #ffffff; }
  .m-btn-icon.theme {
    background: #03c;
    color: #ffffff;
    border-color: #03c; }
    .m-btn-icon.theme:focus, .m-btn-icon.theme:hover {
      background: transparent;
      border-color: #03c;
      color: #03c; }
  .m-btn-icon.theme2nd {
    background: #15db95;
    border-color: #15db95;
    color: #ffffff; }
    .m-btn-icon.theme2nd:focus, .m-btn-icon.theme2nd:hover {
      background: transparent;
      color: #15db95; }
  .m-btn-icon.black {
    background: #000000;
    border-color: #000000;
    color: #ffffff; }
    .m-btn-icon.black:focus, .m-btn-icon.black:hover {
      background: transparent;
      color: #000000; }
  .m-btn-icon.white {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000; }
    .m-btn-icon.white:focus, .m-btn-icon.white:hover {
      background: transparent;
      color: #ffffff; }
  .m-btn-icon.yellow {
    background: #f5a416;
    border-color: #f5a416;
    color: #ffffff; }
    .m-btn-icon.yellow:focus, .m-btn-icon.yellow:hover {
      background: transparent;
      color: #f5a416; }
  .m-btn-icon.yellow-light {
    background: rgba(245, 164, 22, 0.3);
    border-color: #f5a416;
    color: #f5a416; }
    .m-btn-icon.yellow-light:focus, .m-btn-icon.yellow-light:hover {
      background: transparent;
      color: #f5a416; }
  .m-btn-icon.blue {
    background: #15b2ec;
    border-color: #15b2ec;
    color: #ffffff; }
    .m-btn-icon.blue:focus, .m-btn-icon.blue:hover {
      background: transparent;
      color: #15b2ec; }
  .m-btn-icon.blue-light {
    background: rgba(21, 178, 236, 0.3);
    border-color: #15b2ec;
    color: #15b2ec; }
    .m-btn-icon.blue-light:focus, .m-btn-icon.blue-light:hover {
      background: transparent;
      color: #15b2ec; }
  .m-btn-icon.pink {
    background: #f12699;
    border-color: #f12699;
    color: #ffffff; }
    .m-btn-icon.pink:focus, .m-btn-icon.pink:hover {
      background: transparent;
      color: #f12699; }
  .m-btn-icon.pink-light {
    background: rgba(241, 38, 153, 0.3);
    border-color: #f12699;
    color: #f12699; }
    .m-btn-icon.pink-light:focus, .m-btn-icon.pink-light:hover {
      background: transparent;
      color: #f12699; }
  .m-btn-icon.green {
    background: #11e279;
    border-color: #11e279;
    color: #ffffff; }
    .m-btn-icon.green:focus, .m-btn-icon.green:hover {
      background: transparent;
      color: #11e279; }
  .m-btn-icon.green-light {
    background: rgba(17, 226, 121, 0.3);
    border-color: #11e279;
    color: #11e279; }
    .m-btn-icon.green-light:focus, .m-btn-icon.green-light:hover {
      background: transparent;
      color: #11e279; }

/*------------------
*	More Button
-------------------*/
.more-btn {
  position: relative;
  max-width: 650px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }
  .more-btn:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 1%, black 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.2; }
  .more-btn.more-btn-bottom {
    margin-bottom: -24px; }
  .more-btn .m-btn {
    position: relative;
    z-index: 1; }
    .more-btn .m-btn.m-btn-theme:hover, .more-btn .m-btn.m-btn-theme:focus {
      background: #ffffff; }

.video-btn {
  position: relative;
  width: 80px;
  height: 80px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  -moz-transition: ease all 0.55s;
  -o-transition: ease all 0.55s;
  -webkit-transition: ease all 0.55s;
  transition: ease all 0.55s;
  z-index: 1; }
  .video-btn:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    pointer-events: none;
    z-index: -1; }
  .video-btn.white {
    background: #ffffff; }
    .video-btn.white:after {
      background: #ffffff; }
    .video-btn.white span {
      color: #03c; }
  .video-btn.theme {
    background: #03c; }
    .video-btn.theme:after {
      background: #03c; }
    .video-btn.theme span {
      color: #ffffff; }
  .video-btn span {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid currentcolor;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9px;
    right: 0;
    margin: auto;
    width: 0px;
    height: 0px; }

@keyframes pulse-border {
  0% {
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1; }
  100% {
    -moz-transform: scale(2);
    -o-transform: scale(2);
    -ms-transform: scale(2);
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0; } }
/*---------------------------
 Accordion 01
------------------------------*/
.accordion-01 .acco-group {
  background: #ffffff; }
  .accordion-01 .acco-group .acco-heading {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    color: #011638;
    font-weight: 600;
    position: relative; }
  .accordion-01 .acco-group .acco-des {
    padding: 15px 0; }

/*---------------------------
 Accordion 02
------------------------------*/
.accordion-02 .acco-group {
  border: 1px solid #eee;
  background: #ffffff; }
  .accordion-02 .acco-group + .acco-group {
    margin-top: -1px; }
  .accordion-02 .acco-group .acco-heading {
    padding: 12px 45px 12px 12px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    color: #011638;
    font-weight: 600;
    position: relative; }
    .accordion-02 .acco-group .acco-heading:after {
      content: "";
      width: 7px;
      height: 7px;
      border-top: 1px solid #000000;
      border-left: 1px solid #000000;
      -moz-transition: ease all 0.55s;
      -o-transition: ease all 0.55s;
      -webkit-transition: ease all 0.55s;
      transition: ease all 0.55s;
      -moz-transform: rotate(-135deg);
      -o-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
      -webkit-transform: rotate(-135deg);
      transform: rotate(-135deg);
      position: absolute;
      top: 20px;
      right: 20px; }
  .accordion-02 .acco-group .acco-des {
    border-top: 1px solid #eee;
    padding: 20px; }
  .accordion-02 .acco-group.acco-active .acco-heading:after {
    top: 25px;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }

/*---------------------------
 Accordion 03
------------------------------*/
.accordion-03 .acco-group {
  background: #ffffff;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1); }
  .accordion-03 .acco-group .acco-heading {
    padding: 12px 45px 12px 25px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    color: #011638;
    font-weight: 600;
    position: relative; }
    .accordion-03 .acco-group .acco-heading span {
      color: #03c;
      font-size: 18px;
      font-weight: 600;
      margin-right: 8px;
      vertical-align: middle; }
    .accordion-03 .acco-group .acco-heading:after {
      content: "";
      width: 7px;
      height: 7px;
      border-top: 1px solid #000000;
      border-left: 1px solid #000000;
      -moz-transition: ease all 0.55s;
      -o-transition: ease all 0.55s;
      -webkit-transition: ease all 0.55s;
      transition: ease all 0.55s;
      -moz-transform: rotate(-135deg);
      -o-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
      -webkit-transform: rotate(-135deg);
      transform: rotate(-135deg);
      position: absolute;
      top: 20px;
      right: 20px; }
  .accordion-03 .acco-group .acco-des {
    border-top: 1px solid #eee;
    padding: 20px; }
  .accordion-03 .acco-group.acco-active .acco-heading:after {
    top: 25px;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }

/*---------------------------
 Accordion 04
------------------------------*/
.accordion-04 .acco-group {
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2); }
  .accordion-04 .acco-group .acco-heading {
    padding: 12px 45px 12px 25px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    color: #ffffff;
    font-weight: 600;
    position: relative; }
    .accordion-04 .acco-group .acco-heading span {
      color: #03c;
      font-size: 18px;
      font-weight: 600;
      margin-right: 8px; }
    .accordion-04 .acco-group .acco-heading:after {
      content: "";
      width: 7px;
      height: 7px;
      border-top: 1px solid #ffffff;
      border-left: 1px solid #ffffff;
      -moz-transition: ease all 0.55s;
      -o-transition: ease all 0.55s;
      -webkit-transition: ease all 0.55s;
      transition: ease all 0.55s;
      -moz-transform: rotate(-135deg);
      -o-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
      -webkit-transform: rotate(-135deg);
      transform: rotate(-135deg);
      position: absolute;
      top: 20px;
      right: 20px; }
  .accordion-04 .acco-group .acco-des {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    color: rgba(255, 255, 255, 0.8); }
  .accordion-04 .acco-group.acco-active .acco-heading:after {
    top: 25px;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }

/*---------------------------
 Accordion 05
------------------------------*/
.accordion-05 {
  box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1); }
  .accordion-05 .acco-group {
    background: #ffffff; }
    .accordion-05 .acco-group:not(:last-child) {
      border-bottom: 1px solid #eee; }
    .accordion-05 .acco-group .acco-heading {
      padding: 20px 45px 20px 25px;
      display: inline-block;
      vertical-align: top;
      width: 100%;
      color: #011638;
      font-weight: 600;
      position: relative;
      font-size: 16px; }
      .accordion-05 .acco-group .acco-heading:after {
        content: "";
        width: 10px;
        height: 10px;
        border-top: 2px solid #000000;
        border-left: 2px solid #000000;
        -moz-transition: ease all 0.55s;
        -o-transition: ease all 0.55s;
        -webkit-transition: ease all 0.55s;
        transition: ease all 0.55s;
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        position: absolute;
        top: 28px;
        right: 25px; }
    .accordion-05 .acco-group .acco-des {
      border-left: 5px solid #03c;
      border-top: 1px solid #eee;
      padding: 20px; }
    .accordion-05 .acco-group.acco-active .acco-heading {
      color: #03c; }
      .accordion-05 .acco-group.acco-active .acco-heading:after {
        top: 32px;
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg); }

.blockquote-left {
  padding: 0 20px;
  border-left: 5px solid #ddd;
  position: relative; }
  .blockquote-left .icon {
    font-size: 30px;
    color: #03c;
    padding-bottom: 15px; }
  .blockquote-left p:last-child {
    margin-bottom: 0px; }

.blockquote-theme {
  padding: 20px;
  position: relative;
  background: #03c;
  color: #ffffff;
  border-radius: 5px; }
  .blockquote-theme .icon {
    font-size: 30px;
    color: #ffffff;
    padding-bottom: 15px; }
  .blockquote-theme p:last-child {
    margin-bottom: 0px; }

.blockquote-dark {
  padding: 20px;
  position: relative;
  background: #011638;
  color: #ffffff;
  border-radius: 5px; }
  .blockquote-dark .icon {
    font-size: 30px;
    color: #ffffff;
    padding-bottom: 15px; }
  .blockquote-dark p:last-child {
    margin-bottom: 0px; }

.blockquote-gray {
  padding: 20px;
  position: relative;
  background: #eee;
  color: #011638;
  border-radius: 5px; }
  .blockquote-gray .icon {
    font-size: 30px;
    color: #011638;
    padding-bottom: 15px; }
  .blockquote-gray p:last-child {
    margin-bottom: 0px; }

.blockquote-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px; }
  .blockquote-center i {
    font-size: 32px;
    margin-bottom: 20px;
    opacity: 0.2; }
  .blockquote-center p {
    font-size: 26px;
    line-height: 32px;
    padding: 0 70px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #011638; }
    @media (max-width: 767px) {
      .blockquote-center p {
        font-size: 22px;
        line-height: 28px;
        padding: 0 20px; } }

/*------------------
*	Blog
-------------------*/
.blog-grid-overlay {
  border: 1px solid #ddd;
  background-size: cover; }
  .blog-grid-overlay .blog-gird-info {
    position: relative;
    background: #ffffff;
    padding: 30px 20px;
    -moz-transition: ease-in-out all 0.25s;
    -o-transition: ease-in-out all 0.25s;
    -webkit-transition: ease-in-out all 0.25s;
    transition: ease-in-out all 0.25s; }
  .blog-grid-overlay h5 {
    margin: 0;
    padding: 10px 0 15px;
    font-size: 18px;
    color: #011638;
    font-weight: 600; }
  .blog-grid-overlay p {
    margin: 0; }
  .blog-grid-overlay .b-meta span {
    font-size: 12px;
    color: #57667E; }
  .blog-grid-overlay .b-meta .meta {
    background: #15db95;
    color: #ffffff;
    padding: 2px 9px;
    display: inline-block;
    vertical-align: top;
    font-size: 10px;
    border-radius: 30px; }
  .blog-grid-overlay:hover {
    box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }
    .blog-grid-overlay:hover .blog-gird-info {
      background: rgba(0, 0, 0, 0.5); }
    .blog-grid-overlay:hover h5 {
      color: #ffffff; }
    .blog-grid-overlay:hover p {
      margin: 0;
      color: rgba(255, 255, 255, 0.8); }
    .blog-grid-overlay:hover .b-meta span {
      color: #ffffff; }

/*------------------
*	Pagination
-------------------*/
.blog-grid .blog-grid-img {
  overflow: hidden; }
  .blog-grid .blog-grid-img img {
    -moz-transition: ease all 0.25s;
    -o-transition: ease all 0.25s;
    -webkit-transition: ease all 0.25s;
    transition: ease all 0.25s;
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
.blog-grid .blog-gird-info {
  padding-top: 15px; }
.blog-grid h5 {
  margin: 0;
  padding: 5px 0 10px;
  font-size: 18px;
  color: #011638;
  font-weight: 600; }
  .blog-grid h5 a {
    color: #011638; }
.blog-grid p {
  margin: 0; }
.blog-grid .b-meta span {
  font-size: 12px;
  color: #57667E; }
.blog-grid .b-meta .meta {
  background: #15db95;
  color: #ffffff;
  padding: 2px 9px;
  display: inline-block;
  vertical-align: top;
  font-size: 10px;
  border-radius: 30px; }
.blog-grid .btn-grid {
  margin-top: 15px; }
.blog-grid:hover .blog-grid-img img {
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1); }

/*------------------
*	Pagination
-------------------*/
@media (max-width: 991px) {
  .blog-pagination {
    margin-bottom: 40px; } }

.pagination {
  margin: 0px; }
  .pagination li > a,
  .pagination li > span {
    background: #f6f7f8;
    text-align: center;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.1) !important;
    border-width: 1px 1px 3px 1px;
    font-size: 13px;
    color: #03c; }
    .pagination li > a:hover, .pagination li > a:focus,
    .pagination li > span:hover,
    .pagination li > span:focus {
      background: #fff;
      color: #011638; }
  .pagination li:first-child > a,
  .pagination li:first-child > span {
    border-radius: 3px; }
  .pagination li:last-child > a,
  .pagination li:last-child > span {
    border-radius: 3px; }
  .pagination li.active > a,
  .pagination li.active > span,
  .pagination li.active .page-link {
    background: #03c;
    color: #ffffff; }
    .pagination li.active > a:focus, .pagination li.active > a:hover,
    .pagination li.active > span:focus,
    .pagination li.active > span:hover,
    .pagination li.active .page-link:focus,
    .pagination li.active .page-link:hover {
      background: #03c;
      color: #ffffff; }

/*------------------
*	Blog Heading
-------------------*/
.blog-entry-heading {
  background-size: cover;
  background-attachment: fixed;
  background-position: top; }
  .blog-entry-heading .meta {
    text-align: center; }
    .blog-entry-heading .meta a {
      color: rgba(255, 255, 255, 0.8); }
      .blog-entry-heading .meta a:hover {
        color: #ffffff;
        text-decoration: underline; }
  .blog-entry-heading .entry-title {
    text-align: center;
    margin: 25px 0 0; }
    .blog-entry-heading .entry-title h1 {
      font-size: 70px;
      margin: 0;
      color: #ffffff; }
      @media (max-width: 767px) {
        .blog-entry-heading .entry-title h1 {
          font-size: 40px; } }

/*------------------
*	Blog Content
-------------------*/
.blog-entry-content {
  padding-top: 50px; }
  @media (max-width: 767px) {
    .blog-entry-content {
      padding-top: 30px; } }
  .blog-entry-content .container > * {
    margin-bottom: 25px; }
  .blog-entry-content h1,
  .blog-entry-content h2,
  .blog-entry-content h3,
  .blog-entry-content h4,
  .blog-entry-content h5,
  .blog-entry-content h6 {
    font-weight: 600;
    color: #011638;
    margin-top: 40px; }

/*------------------
*	Blog tags
-------------------*/
.blog-entry-footer {
  padding: 20px 0 50px; }
  @media (max-width: 767px) {
    .blog-entry-footer {
      padding: 0 0 30px; } }

.tags li a {
  background: #f5f8fd;
  color: #011638;
  padding: 6px 15px;
  display: block;
  font-size: 15px; }
.tags li + li {
  margin-left: 10px; }

/*------------------
*	Blog Share
-------------------*/
.blog-share {
  padding: 0 0 50px; }
  @media (max-width: 767px) {
    .blog-share {
      padding: 0 0 30px; } }

.share-icon li {
  border-top: 1px solid #f5f8fd;
  border-bottom: 1px solid #f5f8fd; }
  .share-icon li + li {
    border-left: 1px solid #f5f8fd; }
  .share-icon li a {
    display: block;
    padding: 10px;
    color: #011638; }
    .share-icon li a i {
      font-size: 20px;
      vertical-align: middle;
      margin-right: 6px; }
    .share-icon li a:hover {
      color: #03c; }

/*------------------
*	Blog Author
-------------------*/
.blog-author {
  padding-bottom: 50px; }
  @media (max-width: 767px) {
    .blog-author {
      padding-bottom: 30px; } }

.blog-author-in {
  background: #f5f8fd;
  padding: 6%; }
  .blog-author-in .ba-img {
    overflow: hidden;
    border-radius: 50%;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    max-width: 120px;
    height: 120px; }
    @media (max-width: 767px) {
      .blog-author-in .ba-img {
        -ms-flex: 0 0 60px;
        flex: 0 0 60px;
        max-width: 60px;
        height: 60px; } }
  .blog-author-in .ba-info {
    padding: 0 0 0 30px; }
    @media (max-width: 767px) {
      .blog-author-in .ba-info {
        padding: 0 0 0 10px; } }
    .blog-author-in .ba-info h3 {
      font-size: 20px;
      color: #011638;
      margin: 0 0 10px; }
    .blog-author-in .ba-info p {
      margin: 0; }

/*------------------
*	Comments
-------------------*/
.comment-list {
  margin: 0;
  padding: 0;
  list-style: none; }
  .comment-list > li:first-child > .comment-body {
    margin-top: 0;
    padding-top: 0;
    border-top: none; }
  .comment-list .comment-body {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #ddd; }
  .comment-list .comment-meta .comment-author {
    overflow: hidden;
    border-radius: 50%;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    max-width: 50px;
    height: 50px; }
  .comment-list .comment-meta .comment-metadata {
    padding-left: 10px; }
    .comment-list .comment-meta .comment-metadata .c-name {
      color: #011638;
      line-height: normal;
      font-weight: 500; }
    .comment-list .comment-meta .comment-metadata .c-date {
      font-size: 14px;
      line-height: normal; }
  .comment-list .comment-content {
    padding: 10px 0 10px 60px; }
    .comment-list .comment-content p {
      margin: 0; }
  .comment-list .comment-reply {
    padding-left: 60px; }
  .comment-list .children {
    margin: 0;
    padding: 0 0 0 60px;
    list-style: none; }

/*------------------
*	Comments form
-------------------*/
.comment-respond-section {
  padding: 50px 0; }
  @media (max-width: 767px) {
    .comment-respond-section {
      padding-top: 30px; } }

.comment-respond-form {
  background: #f5f8fd;
  padding: 30px; }
  .comment-respond-form .form-group > label {
    font-weight: 500;
    color: #011638;
    font-size: 14px; }
  .comment-respond-form .form-control {
    border: 1px solid #ddd;
    box-shadow: none;
    border-radius: 0; }
    .comment-respond-form .form-control:focus {
      border: 1px solid #03c; }

/*------------------
*	Blog Side Bar
-------------------*/
.sidebar-wrapper .sidebar-widget {
  background: #f5f8fd;
  padding: 20px;
  margin-bottom: 25px; }
  .sidebar-wrapper .sidebar-widget:last-child {
    margin-bottom: 0px; }
  .sidebar-wrapper .sidebar-widget a {
    color: #57667E; }
    .sidebar-wrapper .sidebar-widget a:hover {
      color: #03c; }
  .sidebar-wrapper .sidebar-widget .widget-title {
    color: #011638;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    margin: 0 0 15px;
    font-weight: 600;
    padding: 0 0 15px; }
  .sidebar-wrapper .sidebar-widget .nav li {
    position: relative;
    padding-left: 20px; }
    .sidebar-wrapper .sidebar-widget .nav li + li {
      margin-top: 10px; }
    .sidebar-wrapper .sidebar-widget .nav li:after {
      content: "";
      position: absolute;
      top: 8px;
      left: 0;
      width: 8px;
      height: 8px;
      background: #011638;
      border-radius: 50%; }
  .sidebar-wrapper .sidebar-widget .tagcloud a {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 7px;
    margin-right: 2px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 6px 10px 4px 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: normal; }
    .sidebar-wrapper .sidebar-widget .tagcloud a:hover {
      background: #03c;
      border-color: #03c;
      color: #ffffff; }
  .sidebar-wrapper .sidebar-widget .latest-post .item:not(:last-child) {
    margin-bottom: 15px; }
  .sidebar-wrapper .sidebar-widget .latest-post .item .lp-img {
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    max-width: 50px;
    height: 50px; }
  .sidebar-wrapper .sidebar-widget .latest-post .item .lp-text {
    padding-left: 15px; }
    .sidebar-wrapper .sidebar-widget .latest-post .item .lp-text .date {
      font-size: 12px;
      color: #03c;
      font-weight: 500; }
      .sidebar-wrapper .sidebar-widget .latest-post .item .lp-text .date a {
        color: #03c; }
    .sidebar-wrapper .sidebar-widget .latest-post .item .lp-text h6 {
      margin: 5px 0 0;
      font-weight: 500;
      font-size: 14px;
      text-transform: capitalize; }
.sidebar-wrapper .widget-form .form-control {
  border-radius: 0;
  height: 45px;
  box-shadow: none;
  font-size: 14px; }
  .sidebar-wrapper .widget-form .form-control:focus {
    border: 1px solid #011638; }
.sidebar-wrapper .widget-form .m-btn {
  padding: 0;
  height: 45px;
  line-height: 41px;
  width: 45px; }

/* Brnad minus
-------------------*/
.brand-minus {
  background: #ffffff;
  padding: 20px;
  margin-top: -60px;
  position: relative;
  border-radius: 5px; }

/* Our Client 1
-------------------*/
.owl-item .brand-item img {
  width: auto;
  margin: 0 auto; }

.our-client-border {
  border: 1px solid #ddd;
  text-align: center;
  padding: 50px 20px;
  background: #ffffff; }

/* Client Grid
-------------------*/
.clients-grid {
  padding: 0;
  margin: 0;
  overflow: hidden; }
  .clients-grid li {
    list-style: none; }
    .clients-grid li .our-client {
      position: relative;
      padding: 15px; }
      .clients-grid li .our-client img {
        opacity: 0.9;
        -moz-transition: ease-in-out all 0.25s;
        -o-transition: ease-in-out all 0.25s;
        -webkit-transition: ease-in-out all 0.25s;
        transition: ease-in-out all 0.25s; }
      .clients-grid li .our-client:before, .clients-grid li .our-client:after {
        position: absolute;
        content: ""; }
      .clients-grid li .our-client:after {
        content: "";
        width: 100%;
        height: 0;
        top: auto;
        left: 0;
        bottom: -1px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
      .clients-grid li .our-client:before {
        content: "";
        height: 100%;
        top: 0;
        left: -1px;
        border-left: 1px solid rgba(0, 0, 0, 0.1); }
      .clients-grid li .our-client:hover img {
        opacity: 1; }

/*------------------
* Banner subscribe
-------------------*/
.banner-subscribe .form-control {
  background: #ffffff;
  height: 55px;
  border: none;
  box-shadow: none;
  border-radius: 0; }
.banner-subscribe .m-btn {
  padding: 0 25px;
  height: 55px;
  line-height: 51px;
  border-color: #ffffff; }
  .banner-subscribe .m-btn:hover {
    background: #03c;
    color: #ffffff; }
.banner-subscribe .help-text {
  color: #ffffff;
  opacity: 0.7;
  padding-top: 10px;
  display: inline-block;
  font-size: 13px; }

.banner-subscribe-large {
  padding-top: 25px; }
  .banner-subscribe-large .form-control {
    background: #ffffff;
    height: 55px;
    border: none;
    box-shadow: none;
    border-radius: 0; }
  .banner-subscribe-large .m-btn {
    padding: 0 25px;
    height: 55px;
    line-height: 51px;
    border-color: #ffffff; }
    .banner-subscribe-large .m-btn:hover {
      background: #03c;
      color: #ffffff; }
  .banner-subscribe-large .help-text {
    color: #ffffff;
    opacity: 0.7;
    padding-top: 10px;
    display: inline-block;
    font-size: 13px; }

/*------------------
* Contact Us
-------------------*/
.form-transparent .form-control {
  background: #fff;
  border: none;
  box-shadow: none;
  border-radius: 0;
  height: 50px;
  padding: 8px 20px;
  font-size: 15px; }
.form-transparent textarea.form-control {
  height: 150px;
  padding: 20px; }

/*------------------
* General Form
-------------------*/
.form-normal .form-control {
  height: 45px;
  border-radius: 0;
  border: 1px solid #ddd;
  box-shadow: none !important;
  font-size: 14px; }
  .form-normal .form-control:focus {
    border: 1px solid #03c; }
.form-normal textarea.form-control {
  height: 160px; }

.form-sm .form-control {
  height: 35px;
  border-radius: 0;
  border: 1px solid #ddd;
  box-shadow: none !important;
  font-size: 13px; }
  .form-sm .form-control:focus {
    border: 1px solid #011638; }
.form-sm textarea.form-control {
  height: 90px; }

.count-down-01 .count-down {
  padding: 10px 20px;
  border: 1px solid #ddd;
  margin: 10px;
  border-radius: 5px; }
  .count-down-01 .count-down span {
    font-size: 26px;
    font-weight: 600;
    color: #011638; }
  .count-down-01 .count-down p {
    margin: 0;
    text-transform: capitalize; }

.count-down-02 .count-down {
  padding: 10px 20px;
  margin: 10px;
  border-radius: 5px;
  border: 2px solid #03c; }
  .count-down-02 .count-down span {
    font-size: 26px;
    font-weight: 600;
    color: #03c; }
  .count-down-02 .count-down p {
    margin: 0;
    text-transform: capitalize; }

.counter-col-01 {
  text-align: center;
  position: relative;
  padding: 0 0 15px; }
  .counter-col-01:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50px;
    height: 2px;
    margin: auto; }
  .counter-col-01 .count {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 10px;
    font-weight: 600; }
  .counter-col-01 h6 {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase; }
.counter-col-02 .icon {
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  max-width: 60px;
  font-size: 34px;
  border-right: 1px solid #ddd;
  position: relative;
  z-index: 1; }
  .counter-col-02 .icon:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: #15db95;
    border-radius: 60%;
    z-index: -1;
    opacity: 0.4; }
.counter-col-02 .count-data {
  padding-left: 18px; }
.counter-col-02 .count {
  font-size: 25px;
  margin-bottom: 5px;
  font-weight: 600;
  line-height: normal; }
.counter-col-02 h6 {
  font-size: 12px;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase; }
.counter-col-03 {
  text-align: center;
  border: 1px solid #ddd;
  padding: 20px; }
  .counter-col-03 .icon {
    width: 50px;
    height: 60px;
    line-height: 50px;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    vertical-align: top;
    font-size: 40px;
    margin-bottom: 10px;
    padding-bottom: 10px; }
  .counter-col-03 .count {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: normal; }
  .counter-col-03 h6 {
    font-size: 12px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase; }

/*------------------
* Feature Box
--------------------*/
.feature-box {
  text-align: center;
  padding: 18% 10%;
  overflow: hidden;
  z-index: 1;
  -moz-transition: all ease-out 0.55s;
  -o-transition: all ease-out 0.55s;
  -webkit-transition: all ease-out 0.55s;
  transition: all ease-out 0.55s; }
  .feature-box * {
    -moz-transition: all ease-out 0.55s;
    -o-transition: all ease-out 0.55s;
    -webkit-transition: all ease-out 0.55s;
    transition: all ease-out 0.55s; }
  .feature-box:after {
    content: "";
    position: absolute;
    top: -13px;
    left: 30%;
    width: 37px;
    background: #ffffff;
    border-radius: 40px;
    height: 170px;
    transform: rotate(41deg);
    z-index: -1;
    opacity: 0.08;
    box-shadow: 66px -30px 0px 0 #ffffff; }
  .feature-box .icon {
    width: 80px;
    height: 80px;
    position: relative;
    text-align: center;
    line-height: 80px;
    font-size: 40px;
    background: #f5f8fd;
    color: #03c;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px; }
  .feature-box .feature-content h5 {
    color: #011638;
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 10px; }
  .feature-box .feature-content p {
    margin: 0; }
  .feature-box:hover {
    background: #03c; }
    .feature-box:hover .feature-content h5 {
      color: #ffffff; }
    .feature-box:hover .feature-content p {
      color: rgba(255, 255, 255, 0.8); }

/*------------------
* Feature Box 01
--------------------*/
.feature-box-01 .f-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 35px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 40px; }
  .feature-box-01 .f-icon:after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: 10%;
    right: 53%;
    background: rgba(251, 251, 251, 0.12);
    top: 40%;
    -moz-transform: rotate(-60deg);
    -o-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg); }
.feature-box-01 .feature-content {
  padding: 25px 35px 35px;
  border-bottom: 1px solid #eee; }
.feature-box-01 .feature-action {
  padding: 15px 10px; }
  .feature-box-01 .feature-action a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    font-weight: 600;
    color: #03c; }

/*------------------
* Feature Box 02
--------------------*/
.feature-box-02 {
  min-height: 100%;
  border: 1px solid #ffffff;
  padding: 20px 50px 20px 20px;
  position: relative; }
  .feature-box-02 h5 {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px; }
  .feature-box-02 .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    height: 12px;
    margin: auto;
    right: 30px;
    opacity: 0;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s; }
    .feature-box-02 .icon:before {
      width: 32px;
      height: 2px;
      background: #fff;
      content: "";
      top: 0;
      bottom: 0;
      right: 0;
      margin: auto;
      position: absolute; }
    .feature-box-02 .icon:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 12px;
      height: 12px;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff;
      margin: auto;
      right: 0;
      -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }
  .feature-box-02:hover .icon {
    right: 20px;
    opacity: 1; }

/*------------------
* Feature Box 06
--------------------*/
.feature-box-ef {
  text-align: center;
  padding: 60px 25px; }
  .feature-box-ef .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 35px;
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 30px; }
    .feature-box-ef .icon:after {
      content: "";
      position: absolute;
      margin: auto;
      border-radius: 50px;
      -moz-transition: ease all 0.55s;
      -o-transition: ease all 0.55s;
      -webkit-transition: ease all 0.55s;
      transition: ease all 0.55s;
      z-index: -1; }
    .feature-box-ef .icon.ef-1:after {
      border-top: 50px solid transparent;
      border-left: 50px solid currentColor;
      top: -10px;
      left: -10px;
      border-right: 50px solid transparent;
      border-bottom: 50px solid transparent; }
    .feature-box-ef .icon.ef-2:after {
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      border: 4px solid currentcolor;
      border-bottom: 4px solid transparent; }
    .feature-box-ef .icon.ef-3:after {
      top: -8px;
      left: -8px;
      right: -8px;
      bottom: -8px;
      border: 2px solid currentcolor;
      border-bottom: 2px solid transparent;
      border-top: 2px solid transparent; }
    .feature-box-ef .icon.ef-4:after {
      top: -8px;
      left: -8px;
      right: -8px;
      bottom: -8px;
      border: 2px solid currentcolor;
      border-left: 2px solid transparent;
      border-right: 2px solid transparent;
      border-top: 2px solid transparent; }
  .feature-box-ef h5 {
    margin: 0;
    padding: 0 0 10px;
    font-weight: 600;
    font-size: 16px; }
  .feature-box-ef p {
    margin: 0; }

/*------------------
*	Side Feature
-------------------*/
.sf-icon {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  line-height: 80px;
  font-size: 30px;
  text-align: center;
  border: 1px solid currentcolor;
  position: relative;
  display: inline-block; }
  .sf-icon .dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }

.f-icon-30px {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  vertical-align: top;
  position: relative; }
  .f-icon-30px .dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .f-icon-30px.gray {
    color: #03c;
    background: #f5f8fd; }
  .f-icon-30px.yellow {
    color: #f5a416;
    background: #fdf0da; }
  .f-icon-30px.blue {
    color: #15b2ec;
    background: #e0f5fc; }
  .f-icon-30px.green {
    color: #11e279;
    background: #d3fce7; }
  .f-icon-30px.pink {
    color: #f12699;
    background: #fde6f3; }
  .f-icon-30px.theme {
    color: #03c;
    background: #c2d1ff; }
  .f-icon-30px.purple {
    color: #630ef9;
    background: #e4d5fe; }
  .f-icon-30px.theme2nd {
    color: #15db95;
    background: #c3f9e6; }
  .flex-left-icon .f-icon-30px {
    max-width: 30px;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px; }

.f-icon-40px {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: top;
  position: relative; }
  .f-icon-40px .dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .f-icon-40px.gray {
    color: #03c;
    background: #f5f8fd; }
  .f-icon-40px.yellow {
    color: #f5a416;
    background: #fdf0da; }
  .f-icon-40px.blue {
    color: #15b2ec;
    background: #e0f5fc; }
  .f-icon-40px.green {
    color: #11e279;
    background: #d3fce7; }
  .f-icon-40px.pink {
    color: #f12699;
    background: #fde6f3; }
  .f-icon-40px.theme {
    color: #03c;
    background: #c2d1ff; }
  .f-icon-40px.purple {
    color: #630ef9;
    background: #e4d5fe; }
  .f-icon-40px.theme2nd {
    color: #15db95;
    background: #c3f9e6; }
  .flex-left-icon .f-icon-40px {
    max-width: 40px;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px; }

.f-icon-50px {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  vertical-align: top;
  position: relative; }
  .f-icon-50px .dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .f-icon-50px.gray {
    color: #03c;
    background: #f5f8fd; }
  .f-icon-50px.yellow {
    color: #f5a416;
    background: #fdf0da; }
  .f-icon-50px.blue {
    color: #15b2ec;
    background: #e0f5fc; }
  .f-icon-50px.green {
    color: #11e279;
    background: #d3fce7; }
  .f-icon-50px.pink {
    color: #f12699;
    background: #fde6f3; }
  .f-icon-50px.theme {
    color: #03c;
    background: #c2d1ff; }
  .f-icon-50px.purple {
    color: #630ef9;
    background: #e4d5fe; }
  .f-icon-50px.theme2nd {
    color: #15db95;
    background: #c3f9e6; }
  .flex-left-icon .f-icon-50px {
    max-width: 50px;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px; }

.f-icon-60px {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  vertical-align: top;
  position: relative; }
  .f-icon-60px .dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .f-icon-60px.gray {
    color: #03c;
    background: #f5f8fd; }
  .f-icon-60px.yellow {
    color: #f5a416;
    background: #fdf0da; }
  .f-icon-60px.blue {
    color: #15b2ec;
    background: #e0f5fc; }
  .f-icon-60px.green {
    color: #11e279;
    background: #d3fce7; }
  .f-icon-60px.pink {
    color: #f12699;
    background: #fde6f3; }
  .f-icon-60px.theme {
    color: #03c;
    background: #c2d1ff; }
  .f-icon-60px.purple {
    color: #630ef9;
    background: #e4d5fe; }
  .f-icon-60px.theme2nd {
    color: #15db95;
    background: #c3f9e6; }
  .flex-left-icon .f-icon-60px {
    max-width: 60px;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px; }

.f-icon-70px {
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  vertical-align: top;
  position: relative; }
  .f-icon-70px .dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .f-icon-70px.gray {
    color: #03c;
    background: #f5f8fd; }
  .f-icon-70px.yellow {
    color: #f5a416;
    background: #fdf0da; }
  .f-icon-70px.blue {
    color: #15b2ec;
    background: #e0f5fc; }
  .f-icon-70px.green {
    color: #11e279;
    background: #d3fce7; }
  .f-icon-70px.pink {
    color: #f12699;
    background: #fde6f3; }
  .f-icon-70px.theme {
    color: #03c;
    background: #c2d1ff; }
  .f-icon-70px.purple {
    color: #630ef9;
    background: #e4d5fe; }
  .f-icon-70px.theme2nd {
    color: #15db95;
    background: #c3f9e6; }
  .flex-left-icon .f-icon-70px {
    max-width: 70px;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px; }

.f-icon-80px {
  width: 80px;
  height: 80px;
  line-height: 80px;
  display: inline-block;
  vertical-align: top;
  position: relative; }
  .f-icon-80px .dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .f-icon-80px.gray {
    color: #03c;
    background: #f5f8fd; }
  .f-icon-80px.yellow {
    color: #f5a416;
    background: #fdf0da; }
  .f-icon-80px.blue {
    color: #15b2ec;
    background: #e0f5fc; }
  .f-icon-80px.green {
    color: #11e279;
    background: #d3fce7; }
  .f-icon-80px.pink {
    color: #f12699;
    background: #fde6f3; }
  .f-icon-80px.theme {
    color: #03c;
    background: #c2d1ff; }
  .f-icon-80px.purple {
    color: #630ef9;
    background: #e4d5fe; }
  .f-icon-80px.theme2nd {
    color: #15db95;
    background: #c3f9e6; }
  .flex-left-icon .f-icon-80px {
    max-width: 80px;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px; }

.f-icon-90px {
  width: 90px;
  height: 90px;
  line-height: 90px;
  display: inline-block;
  vertical-align: top;
  position: relative; }
  .f-icon-90px .dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .f-icon-90px.gray {
    color: #03c;
    background: #f5f8fd; }
  .f-icon-90px.yellow {
    color: #f5a416;
    background: #fdf0da; }
  .f-icon-90px.blue {
    color: #15b2ec;
    background: #e0f5fc; }
  .f-icon-90px.green {
    color: #11e279;
    background: #d3fce7; }
  .f-icon-90px.pink {
    color: #f12699;
    background: #fde6f3; }
  .f-icon-90px.theme {
    color: #03c;
    background: #c2d1ff; }
  .f-icon-90px.purple {
    color: #630ef9;
    background: #e4d5fe; }
  .f-icon-90px.theme2nd {
    color: #15db95;
    background: #c3f9e6; }
  .flex-left-icon .f-icon-90px {
    max-width: 90px;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px; }

.f-icon-100px {
  width: 100px;
  height: 100px;
  line-height: 100px;
  display: inline-block;
  vertical-align: top;
  position: relative; }
  .f-icon-100px .dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .f-icon-100px.gray {
    color: #03c;
    background: #f5f8fd; }
  .f-icon-100px.yellow {
    color: #f5a416;
    background: #fdf0da; }
  .f-icon-100px.blue {
    color: #15b2ec;
    background: #e0f5fc; }
  .f-icon-100px.green {
    color: #11e279;
    background: #d3fce7; }
  .f-icon-100px.pink {
    color: #f12699;
    background: #fde6f3; }
  .f-icon-100px.theme {
    color: #03c;
    background: #c2d1ff; }
  .f-icon-100px.purple {
    color: #630ef9;
    background: #e4d5fe; }
  .f-icon-100px.theme2nd {
    color: #15db95;
    background: #c3f9e6; }
  .flex-left-icon .f-icon-100px {
    max-width: 100px;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px; }

/* Breadcrumbs
--------------------------------*/
.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  background: none;
  border-radius: 0; }
  .breadcrumb li {
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
    font-weight: 400;
    position: relative;
    color: #011638; }
    .breadcrumb li + li {
      padding-left: 17px;
      margin-left: 17px; }
      .breadcrumb li + li:after {
        content: "";
        position: absolute;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: currentColor;
        opacity: 0.5;
        left: -2px;
        top: 0;
        bottom: 0;
        margin: auto; }
    .breadcrumb li a {
      color: #011638; }
  .breadcrumb.white li {
    color: #ffffff; }
    .breadcrumb.white li a {
      color: #ffffff; }

/* Page Title Small
--------------------------------*/
.page-title-sm {
  padding: 40px 0; }
  .page-title-sm h1 {
    font-size: 24px;
    line-height: 32px;
    margin: 0; }

/* Page Title large
--------------------------------*/
.page-title-lg {
  padding: 180px 0 80px 0; }
  @media (max-width: 991px) {
    .page-title-lg {
      padding: 140px 0 80px 0; } }
  .page-title-lg h1 {
    font-size: 60px;
    margin: 0; }
    @media (max-width: 991px) {
      .page-title-lg h1 {
        font-size: 40px; } }
    @media (max-width: 767px) {
      .page-title-lg h1 {
        font-size: 30px; } }
  .page-title-lg .breadcrumb {
    margin-top: 20px; }
    @media (max-width: 767px) {
      .page-title-lg .breadcrumb {
        margin-top: 10px; } }

.pie-chart .pie_chart_in {
  position: relative;
  display: inline-block;
  vertical-align: top; }
.pie-chart .middle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-weight: 600;
  font-size: 35px; }
.pie-chart h5 {
  margin: 0;
  padding: 15px 0 0;
  font-size: 22px; }

.portfolio-content.grid-col-2 .grid-item {
  width: 50%; }
  @media (max-width: 567px) {
    .portfolio-content.grid-col-2 .grid-item {
      width: 100%; } }
@media (min-width: 768px) {
  .portfolio-content.grid-col-3 .grid-item {
    width: 33.3333%; } }
@media (max-width: 767px) {
  .portfolio-content.grid-col-3 .grid-item {
    width: 50%; } }
@media (max-width: 567px) {
  .portfolio-content.grid-col-3 .grid-item {
    width: 100%; } }
@media (min-width: 768px) {
  .portfolio-content.grid-col-4 .grid-item {
    width: 33.3333%; } }
@media (min-width: 992px) {
  .portfolio-content.grid-col-4 .grid-item {
    width: 25%; } }
@media (max-width: 767px) {
  .portfolio-content.grid-col-4 .grid-item {
    width: 50%; } }
@media (max-width: 567px) {
  .portfolio-content.grid-col-4 .grid-item {
    width: 100%; } }
@media (min-width: 768px) {
  .portfolio-content.grid-col-5 .grid-item {
    width: 33.3333%; } }
@media (min-width: 992px) {
  .portfolio-content.grid-col-5 .grid-item {
    width: 20%; } }
@media (max-width: 767px) {
  .portfolio-content.grid-col-5 .grid-item {
    width: 50%; } }
@media (max-width: 567px) {
  .portfolio-content.grid-col-5 .grid-item {
    width: 100%; } }
.portfolio-content.grid-gutter-md {
  margin-left: -8px;
  margin-right: -8px; }
  .portfolio-content.grid-gutter-md .grid-item {
    padding: 8px; }
.portfolio-content.grid-gutter-lg {
  margin-left: -12px;
  margin-right: -12px; }
  .portfolio-content.grid-gutter-lg .grid-item {
    padding: 12px; }
.portfolio-content .grid-item {
  float: left; }

/*Galletry*/
.gallery-box {
  position: relative;
  overflow: hidden; }
  .gallery-box .gallery-info {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: #ffffff;
    box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
    opacity: 0;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s; }
    .gallery-box .gallery-info a {
      position: absolute;
      bottom: 13px;
      left: 16px;
      color: #011638; }
  .gallery-box:hover .gallery-info {
    opacity: 1; }

/*Portfolio Filter*/
.portfolio-filter-01 .filter li {
  cursor: pointer;
  margin: 0 15px;
  color: #011638;
  position: relative;
  padding: 5px 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  line-height: normal; }
  .portfolio-filter-01 .filter li:after {
    content: "";
    width: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 2px;
    background: #03c;
    position: absolute;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s; }
  .portfolio-filter-01 .filter li:last-child {
    margin-right: 0; }
  .portfolio-filter-01 .filter li:first-child {
    margin-left: 0; }
  .portfolio-filter-01 .filter li:hover {
    color: #03c; }
  .portfolio-filter-01 .filter li.active {
    color: #03c; }
    .portfolio-filter-01 .filter li.active:after {
      width: 100%; }

/*Portfolio Style 1*/
.portfolio-box-01 {
  position: relative;
  overflow: hidden; }
  .portfolio-box-01 .portfolio-img img {
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  .portfolio-box-01 .portfolio-info {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 51, 204, 0.8);
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    opacity: 0; }
  .portfolio-box-01 .gallery-link {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 52px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s; }
    .portfolio-box-01 .gallery-link i {
      display: inline-block; }
    .portfolio-box-01 .gallery-link:hover {
      background: #ffffff;
      color: #03c; }
  .portfolio-box-01 .portfolio-desc {
    position: absolute;
    left: 20px;
    bottom: 20px;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    -moz-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    opacity: 0; }
    .portfolio-box-01 .portfolio-desc h5 {
      font-size: 16px;
      margin: 0 0 15px;
      font-weight: 500; }
      .portfolio-box-01 .portfolio-desc h5 a {
        color: #ffffff;
        text-decoration: none; }
    .portfolio-box-01 .portfolio-desc .pb-tag a {
      display: inline-block;
      vertical-align: top;
      background: #ffffff;
      border: 1px solid #ffffff;
      padding: 4px 15px;
      color: #03c;
      border-radius: 3px;
      margin-right: 8px;
      margin-bottom: 3px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      line-height: normal;
      -moz-transition: ease all 0.55s;
      -o-transition: ease all 0.55s;
      -webkit-transition: ease all 0.55s;
      transition: ease all 0.55s; }
      .portfolio-box-01 .portfolio-desc .pb-tag a:hover {
        background: #03c;
        color: #ffffff; }
  .portfolio-box-01:hover .portfolio-img img {
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }
  .portfolio-box-01:hover .portfolio-desc {
    opacity: 1; }
  .portfolio-box-01:hover .portfolio-info {
    position: absolute;
    opacity: 1; }

/*------------------
*	Price Table
-------------------*/
.price-table {
  background: #ffffff;
  padding: 40px 20px;
  -moz-transition: ease-in-out all 0.25s;
  -o-transition: ease-in-out all 0.25s;
  -webkit-transition: ease-in-out all 0.25s;
  transition: ease-in-out all 0.25s;
  position: relative;
  top: 0; }
  .price-table .pt-head .msg {
    background: #15db95;
    margin: 0 0 30px;
    padding: 7px 20px;
    position: relative;
    left: -32px;
    text-transform: uppercase;
    font-size: 12px;
    color: #ffffff; }
  .price-table .pt-head h5 {
    color: #011638;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid #ddd; }
  .price-table .pt-body h4 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin: 0;
    padding: 0 0 10px; }
  .price-table .pt-footer {
    margin: 15px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid #ddd; }
  .price-table:hover {
    box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1);
    top: -10px; }
  .price-table.active {
    box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }

/*------------------
*	Price Table
-------------------*/
.price-table-01 {
  position: relative;
  top: 0;
  -moz-transition: ease-in-out all 0.25s;
  -o-transition: ease-in-out all 0.25s;
  -webkit-transition: ease-in-out all 0.25s;
  transition: ease-in-out all 0.25s;
  overflow: hidden;
  top: 0;
  box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1);
  background: #ffffff; }
  .price-table-01 .pt-head {
    padding: 30px 10px 20px 20px;
    position: relative;
    z-index: 1; }
    .price-table-01 .pt-head i {
      font-size: 60px;
      color: #ffffff;
      position: absolute;
      top: 30px;
      right: 20px;
      opacity: 0.5; }
    .price-table-01 .pt-head h4 {
      color: #ffffff;
      font-size: 17px; }
    .price-table-01 .pt-head h5 {
      color: #ffffff;
      font-size: 42px;
      font-weight: 600;
      margin: 0; }
    .price-table-01 .pt-head:after {
      content: "";
      position: absolute;
      top: -50px;
      left: -20px;
      right: -10px;
      bottom: 0;
      background: #03c;
      z-index: -1;
      transform: rotate(-7deg); }
    .price-table-01 .pt-head .msg {
      background: #15db95;
      margin: 0 0 30px;
      padding: 7px 20px;
      position: relative;
      left: -32px;
      text-transform: uppercase;
      font-size: 12px;
      color: #ffffff; }
  .price-table-01 .pt-body {
    padding: 25px 15px 10px 15px; }
  .price-table-01 .pt-footer {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 15px 0;
    margin: 15px 0 0;
    border-top: 1px solid #ddd; }
  .price-table-01:hover {
    box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
    top: -10px; }
  .price-table-01.active .pt-head:after {
    background: #15db95; }

/*------------------
*	Price Table
-------------------*/
.price-table-02 {
  background: #ffffff;
  padding: 12% 10%; }
  .price-table-02 .pt-head {
    padding: 0 0 20px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #ddd;
    margin: 0 0 20px; }
    .price-table-02 .pt-head label {
      margin: 0;
      font-size: 12px;
      vertical-align: top;
      font-weight: 500; }
    .price-table-02 .pt-head h4 {
      font-size: 20px;
      margin: 0;
      font-weight: 600; }
    .price-table-02 .pt-head h5 {
      font-size: 44px;
      font-weight: 700;
      margin: 0; }
      .price-table-02 .pt-head h5 span {
        font-size: 20px;
        vertical-align: super; }
  .price-table-02 .pt-footer {
    position: relative;
    z-index: 1;
    padding: 25px 0 0;
    border-top: 1px solid #ddd;
    margin: 25px 0 0; }

/*------------------
*	Price Table
-------------------*/
.price-table-03 {
  background-color: #ffffff;
  text-align: center;
  padding: 15% 10%; }
  .price-table-03 .pt-icon {
    margin: 10px 0 22px 0; }
    .price-table-03 .pt-icon img {
      max-width: 130px;
      max-height: 110px; }
  .price-table-03 .pt-head {
    border-bottom: 1px solid #ddd;
    padding: 0 0 20px;
    margin: 0 0 20px; }
    .price-table-03 .pt-head h3 {
      margin: 0;
      font-weight: 600;
      font-size: 22px;
      color: #011638; }
    .price-table-03 .pt-head p {
      margin: 6px 0 18px; }
    .price-table-03 .pt-head .price {
      font-size: 35px;
      font-weight: 600;
      color: #011638;
      line-height: normal; }
      .price-table-03 .pt-head .price span {
        font-size: 15px;
        opacity: 0.5;
        font-weight: 400; }
  .price-table-03 .pt-body ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .price-table-03 .pt-body ul li {
      padding: 4px 0; }
  .price-table-03 .pt-action {
    padding: 30px 0 0; }

.skill-lt:not(:last-child) {
  margin-bottom: 30px; }
.skill-lt h6 {
  font-size: 16px;
  margin: 0 0 10px; }
.skill-lt .skill-bar {
  position: relative;
  background: #eee; }
  .skill-lt .skill-bar .skill-bar-in {
    width: 0px;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    height: 5px;
    position: relative; }
    .skill-lt .skill-bar .skill-bar-in span {
      position: absolute;
      right: 0;
      top: -30px;
      font-size: 14px; }
.skill-lt.md .skill-bar .skill-bar-in {
  height: 8px; }
.skill-lt.lg .skill-bar .skill-bar-in {
  height: 10px; }
.skill-lt.light .skill-bar {
  background: rgba(0, 0, 0, 0.5); }

.newsletter-box .form-control {
  height: 50px;
  border-radius: 0;
  border: none; }
.newsletter-box .m-btn.m-btn-theme2nd:hover {
  background: #03c;
  border-color: #03c;
  color: #ffffff; }

/*------------------
*   Tab style 01
-------------------*/
.tab-style-1 .nav {
  border-bottom: 1px solid #ddd; }
  @media (max-width: 767px) {
    .tab-style-1 .nav {
      margin-bottom: 15px; } }
.tab-style-1 .nav-item {
  margin: 0 10px; }
  .tab-style-1 .nav-item a {
    color: #011638;
    position: relative;
    padding: 12px 15px;
    text-align: center;
    border-bottom: none;
    width: 100%;
    display: block;
    text-transform: uppercase; }
    .tab-style-1 .nav-item a:after {
      content: "";
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 0;
      height: 1px;
      background: #03c;
      -moz-transition: ease-in-out all 0.55s;
      -o-transition: ease-in-out all 0.55s;
      -webkit-transition: ease-in-out all 0.55s;
      transition: ease-in-out all 0.55s; }
    .tab-style-1 .nav-item a.active {
      color: #03c; }
      .tab-style-1 .nav-item a.active:after {
        width: 100%; }
  .tab-style-1 .nav-item .icon {
    font-size: 30px; }
  .tab-style-1 .nav-item span {
    font-weight: 600;
    font-size: 15px; }
    @media (max-width: 767px) {
      .tab-style-1 .nav-item span {
        display: none; } }
.tab-style-1 .tab-pane {
  padding-top: 20px; }

/*------------------
*   Tab style 02
-------------------*/
.tab-style-2 .nav {
  margin-bottom: 15px;
  border: none; }
  .tab-style-2 .nav .nav-item {
    margin-right: 18px; }
    .tab-style-2 .nav .nav-item a {
      padding: 8px 0;
      font-weight: 600;
      text-transform: uppercase;
      color: #011638;
      position: relative;
      display: block; }
      .tab-style-2 .nav .nav-item a:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0px;
        -moz-transition: ease-in-out all 0.55s;
        -o-transition: ease-in-out all 0.55s;
        -webkit-transition: ease-in-out all 0.55s;
        transition: ease-in-out all 0.55s;
        height: 2px;
        background: #15db95; }
      .tab-style-2 .nav .nav-item a.active {
        color: #03c; }
        .tab-style-2 .nav .nav-item a.active:after {
          width: 100%; }

/*------------------
*   Tab style 03
-------------------*/
.tab-style-3 .nav {
  background: #ffffff;
  border: none; }
  .tab-style-3 .nav a {
    display: block;
    padding: 15px 10px 18px;
    line-height: normal;
    position: relative;
    color: #57667E; }
    .tab-style-3 .nav a:after, .tab-style-3 .nav a:before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      -moz-transition: ease-in-out all 0.25s;
      -o-transition: ease-in-out all 0.25s;
      -webkit-transition: ease-in-out all 0.25s;
      transition: ease-in-out all 0.25s;
      margin: auto; }
    .tab-style-3 .nav a:after {
      width: 0px;
      height: 3px;
      background: #15db95; }
    .tab-style-3 .nav a:before {
      width: 20px;
      background: #ffffff;
      border-radius: 50%;
      z-index: 1;
      height: 20px;
      bottom: -8px;
      box-shadow: 0px 6px 10px 0px rgba(38, 59, 94, 0.1); }
    .tab-style-3 .nav a.active {
      color: #15db95; }
      .tab-style-3 .nav a.active:after {
        width: 100%; }
  .tab-style-3 .nav .icon {
    font-size: 20px;
    margin: 0 0 5px; }
    @media (max-width: 767px) {
      .tab-style-3 .nav .icon {
        margin: 0; } }
  .tab-style-3 .nav span {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600; }
    @media (max-width: 767px) {
      .tab-style-3 .nav span {
        display: none; } }
.tab-style-3 .tab-content {
  padding-top: 30px; }

/*------------------
*   Tab style 04
-------------------*/
.tab-style-4 .nav {
  margin-bottom: 15px;
  border-bottom: 2px solid #efefff; }
  .tab-style-4 .nav .nav-item .icon {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    color: #03c; }
  .tab-style-4 .nav .nav-item span {
    margin-left: 10px; }
    @media (max-width: 767px) {
      .tab-style-4 .nav .nav-item span {
        display: none; } }
  .tab-style-4 .nav .nav-item a {
    padding: 12px 0;
    font-weight: 600;
    text-transform: uppercase;
    color: #57667E;
    position: relative;
    display: block; }
    .tab-style-4 .nav .nav-item a:after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      margin: auto;
      width: 0px;
      -moz-transition: ease-in-out all 0.55s;
      -o-transition: ease-in-out all 0.55s;
      -webkit-transition: ease-in-out all 0.55s;
      transition: ease-in-out all 0.55s;
      height: 3px;
      background: #03c; }
    .tab-style-4 .nav .nav-item a.active:after {
      width: 100%; }

/* ----------------------
*	Sub Title
-------------------------*/
.our-team {
  position: relative; }
  .our-team .team-info {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    padding: 20px 15px;
    margin-top: -40px;
    background: #ffffff;
    box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1);
    top: 0;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s; }
    .our-team .team-info h6 {
      font-size: 16px;
      font-weight: 600;
      margin: 0 0 8px;
      color: #011638; }
    .our-team .team-info label {
      margin: 0 0 15px;
      font-weight: 500;
      line-height: normal; }
  .our-team:hover .team-info {
    top: -15px;
    box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }

/* ----------------------
*	Out Team 01
-------------------------*/
.our-team-01 {
  position: relative;
  text-align: center; }
  .our-team-01 .team-img {
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top; }
  .our-team-01 .team-info {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    padding: 15px;
    margin-top: -40px;
    top: 0;
    background: #ffffff;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s; }
    .our-team-01 .team-info h6 {
      font-size: 16px;
      font-weight: 600;
      margin: 0 0 8px;
      color: #011638; }
    .our-team-01 .team-info label {
      margin: 0 0 15px;
      font-weight: 500;
      line-height: normal; }
  .our-team-01:hover .team-info {
    top: -15px;
    box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }

/* ----------------------
*	Out Team 02
-------------------------*/
.our-team-02 {
  position: relative; }
  .our-team-02 .team-info {
    padding: 15px; }
    .our-team-02 .team-info h6 {
      font-size: 16px;
      font-weight: 600;
      margin: 0 0 8px;
      color: #011638; }
    .our-team-02 .team-info label {
      margin: 0 0 8px;
      font-weight: 500;
      line-height: normal; }

/* ----------------------
*	Out Team 03
-------------------------*/
.our-team-03 {
  position: relative;
  text-align: center; }
  .our-team-03 .team-img {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top; }
  .our-team-03 .team-info {
    text-align: center;
    position: relative;
    padding: 15px; }
    .our-team-03 .team-info h6 {
      font-size: 16px;
      font-weight: 600;
      margin: 0 0 8px;
      color: #011638; }
    .our-team-03 .team-info label {
      margin: 0 0 15px;
      font-weight: 500;
      line-height: normal; }

/* ----------------------
*	Out Team 04
-------------------------*/
.our-team-04 {
  position: relative;
  text-align: center; }
  .our-team-04 .team-img {
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 1;
    border: 10px solid #fff; }
  .our-team-04 .team-info {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    padding: 65px 15px 35px 15px;
    margin-top: -40px;
    top: 0;
    background: #ffffff;
    border-radius: 20px; }
    .our-team-04 .team-info h6 {
      font-size: 16px;
      font-weight: 600;
      margin: 0 0 8px;
      color: #011638; }
    .our-team-04 .team-info label {
      margin: 0 0 15px;
      font-weight: 500;
      line-height: normal; }

/* ----------------------
*	Out Team 05
-------------------------*/
.our-team-05 .team-img {
  position: relative;
  overflow: hidden; }
  .our-team-05 .team-img .social-icon {
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    position: absolute;
    bottom: -45px;
    left: 0;
    right: 0; }
.our-team-05:hover .team-img .social-icon {
  bottom: 15px; }

/*------------------
*	Testimonials
-------------------*/
.testimonial-col {
  box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1);
  margin: 10px;
  background: #fff;
  border-radius: 5px;
  overflow: hidden; }
  .testimonial-col .tc-img {
    background-size: cover;
    height: 150px;
    position: relative; }
    .testimonial-col .tc-img:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #03c;
      opacity: 0.5; }
  .testimonial-col .tc-info {
    position: relative;
    z-index: 1;
    color: #ffffff; }
    .testimonial-col .tc-info h5 {
      margin: 0;
      padding: 0 0 8px;
      font-size: 18px;
      font-weight: 600; }
    .testimonial-col .tc-info label {
      font-weight: normal;
      margin: 0; }
  .testimonial-col .tc-text {
    position: relative;
    padding: 30px 15px 20px;
    text-align: center; }
    .testimonial-col .tc-text i {
      width: 40px;
      height: 40px;
      position: absolute;
      top: -20px;
      left: 0;
      right: 0;
      margin: auto;
      background: #15db95;
      line-height: 40px;
      border-radius: 50%;
      color: #ffffff; }
    .testimonial-col .tc-text p {
      margin: 0;
      font-size: 16px; }

/*------------------
*	Testimonials 01
-------------------*/
.testimonial-col-01 {
  padding: 40px 20px 20px;
  border: 1px solid #ddd;
  margin: 40px 10px 20px 10px;
  position: relative;
  text-align: center;
  background: #ffffff; }
  .testimonial-col-01 .tc-info {
    margin: 20px 0 0; }
    .testimonial-col-01 .tc-info h5 {
      margin: 0;
      padding: 0 0 4px;
      font-size: 15px;
      font-weight: 600;
      color: #011638; }
    .testimonial-col-01 .tc-info label {
      font-weight: normal;
      margin: 0; }
  .testimonial-col-01 .tc-text i {
    position: absolute;
    left: 0;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 30px;
    border-radius: 50%;
    text-align: center;
    right: 0;
    top: -40px;
    margin: auto;
    background: #15db95;
    color: #ffffff; }
  .testimonial-col-01 .tc-text p {
    margin: 0;
    font-size: 16px; }

/*------------------
*   Testimonials 02
-------------------*/
.testimonial-col-02 {
  text-align: center;
  width: 100%;
  display: inline-block;
  vertical-align: top; }
  .testimonial-col-02 .tc-img {
    display: inline-block;
    vertical-align: top;
    width: 120px;
    overflow: hidden;
    height: 120px;
    border-radius: 50%; }
  .testimonial-col-02 .tc-text {
    position: relative;
    padding: 20px 0 0px;
    font-size: 17px; }
    .testimonial-col-02 .tc-text i {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      text-align: center;
      font-size: 18px;
      line-height: 45px;
      color: #fff;
      position: absolute;
      top: -40px;
      left: 80px;
      right: 0;
      margin: auto;
      background: #15db95; }
    .testimonial-col-02 .tc-text p {
      margin: 0; }
  .testimonial-col-02 .tc-info {
    padding-top: 15px; }

/*------------------
*   Testimonials 03
-------------------*/
/* ----------------------
*	Sub Title
---------------------------*/
.sub-title {
  overflow: hidden;
  text-align: center; }
  .sub-title span {
    font-size: 12px;
    line-height: 20px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600; }
    .sub-title span:before, .sub-title span:after {
      content: "";
      position: absolute;
      top: 50%;
      height: 1px;
      width: 99%;
      display: block;
      border-bottom: 1px solid;
      opacity: .15; }
    .sub-title span:after {
      right: 100%;
      margin-right: 25px; }
    .sub-title span:before {
      left: 100%;
      margin-left: 25px; }

/* ----------------------
*	Sub Title
---------------------------*/
.small-title h3 {
  font-size: 23px;
  margin: 0 0 25px;
  padding: 0 0 15px;
  border-bottom: 1px solid #ddd;
  font-weight: 500; }

.video-box {
  position: relative;
  border-radius: 5px;
  overflow: hidden; }
  .video-box .video-btn {
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    bottom: 0; }

.list-type-01 {
  margin: 0;
  padding: 0;
  list-style: none; }
  .list-type-01 li {
    position: relative;
    padding: 6px 25px 5px 0;
    font-weight: 500; }
    .list-type-01 li i {
      position: absolute;
      top: 13px;
      right: 0;
      color: #011638; }

.list-type-02 {
  margin: 0;
  padding: 0;
  list-style: none; }
  .list-type-02 li {
    position: relative;
    padding: 8px 0 8px 25px; }
    .list-type-02 li i {
      position: absolute;
      top: 13px;
      left: 0;
      color: #15db95; }

.list-type-03 {
  margin: 0;
  padding: 0;
  list-style: none; }
  .list-type-03 li {
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center; }
    .list-type-03 li i {
      max-width: 32px;
      flex: 0 0 32px;
      line-height: 32px;
      background: #15db95;
      text-align: center;
      border-radius: 50%;
      margin-right: 20px;
      color: #ffffff; }

/* ----------------------
*	Team Icon
-------------------------*/
.social-icon a {
  margin: 0 3px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  color: #ffffff;
  text-align: center; }
.social-icon.si-theme2nd a {
  background: #15db95; }
  .social-icon.si-theme2nd a:hover {
    background: #03c; }
.social-icon.si-theme a {
  background: #03c; }
  .social-icon.si-theme a:hover {
    background: #15db95; }
.social-icon.si-text a {
  color: #929daf; }
  .social-icon.si-text a:hover {
    color: #757575; }
.social-icon.si-inline a {
  width: auto;
  height: auto;
  line-height: normal;
  margin-right: 10px;
  font-size: 15px; }
.social-icon.si-round a {
  border-radius: 50%; }
.social-icon.si-radisu a {
  border-radius: 3px; }

/* particles-box
---------------------------*/
.particles-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 0.2;
  pointer-events: none; }

/* Hover Rotate
---------------------------*/
.hover-rotate .hr-rotate {
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
  -moz-animation: lds-dual-ring 1.2s linear infinite;
  animation: lds-dual-ring 1.2s linear infinite;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  animation-play-state: paused; }
.hover-rotate .hr-rotate-after:after {
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
  -moz-animation: lds-dual-ring 1.2s linear infinite;
  animation: lds-dual-ring 1.2s linear infinite;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  animation-play-state: paused; }
.hover-rotate:hover .hr-rotate {
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  animation-play-state: running; }
.hover-rotate:hover .hr-rotate-after:after {
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  animation-play-state: running; }

/* Hr line
---------------------------*/
.hr-line {
  height: 3px;
  font-size: 0px; }
  .hr-line span {
    width: 50px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    height: 3px;
    margin-right: 15px;
    border-radius: 3px; }
    .hr-line span:after {
      content: "";
      background: currentColor;
      width: 15px;
      height: 3px;
      margin-right: 10px;
      position: absolute;
      top: 0;
      right: -30px; }

/* Hover top
---------------------------*/
.hover-top {
  top: 0px;
  position: relative; }
  .hover-top:hover {
    top: -10px; }

/* ----------------------
* Grayscale Hover
---------------------------*/
.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%); }

.grayscale-hover img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: .2; }
.grayscale-hover:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1; }

/* Effect
---------------------------*/
.effect-section {
  position: relative;
  overflow: hidden; }
  .effect-section .effect {
    pointer-events: none; }
  .effect-section .effect-img {
    position: absolute;
    right: -2px;
    left: -2px; }
    .effect-section .effect-img img {
      width: 100%; }
    .effect-section .effect-img.bottom {
      bottom: -2px; }
    .effect-section .effect-img.top {
      top: -2px; }
  .effect-section .effect-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .effect-section .effect-65 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 35%; }
  .effect-section .effect-75 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 25%; }
  .effect-section .effect-round {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 0px 220px; }
  .effect-section .effect-skew {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50%;
    right: 31%;
    -moz-transform: skew(-35deg);
    -o-transform: skew(-35deg);
    -ms-transform: skew(-35deg);
    -webkit-transform: skew(-35deg);
    transform: skew(-35deg);
    border-radius: 0 0 180px 0; }
    @media (max-width: 767px) {
      .effect-section .effect-skew {
        right: -40%;
        left: -90%; } }
  .effect-section .effect-skew-01 {
    position: absolute;
    top: -10%;
    bottom: -30%;
    right: -50%;
    left: 40%;
    border-radius: 27% 73% 32% 68% / 52% 66% 34% 48%; }
    @media (max-width: 767px) {
      .effect-section .effect-skew-01 {
        right: -40%;
        left: -90%; } }
  .effect-section .effect-radius {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0% 100% 20% 80% / 73% 0% 100% 27%; }
    @media (max-width: 767px) {
      .effect-section .effect-radius {
        bottom: 30px;
        left: -50px;
        right: -40px; } }
  .effect-section .effect-middle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 20%;
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    -ms-transform: skew(30deg);
    -webkit-transform: skew(30deg);
    transform: skew(30deg);
    z-index: -1; }
  .effect-section .effect-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
    .effect-section .effect-shape:after {
      content: "";
      position: absolute;
      bottom: -40%;
      background: linear-gradient(to left, rgba(255, 255, 255, 0.08), rgba(2, 2, 2, 0.05));
      right: -25%;
      margin: auto;
      transform: skew(30deg);
      top: -40%;
      left: 45%;
      border-radius: 50%; }
  .effect-section .effect-radius-bg {
    position: absolute;
    top: 58%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1; }
    .effect-section .effect-radius-bg > div {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 23rem;
      height: 23rem;
      border-radius: 100%;
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(227, 221, 246, 0.1)), color-stop(65%, rgba(227, 221, 246, 0.2)), to(rgba(227, 221, 246, 0.1)));
      background-image: -webkit-linear-gradient(top, rgba(227, 221, 246, 0.1) 0%, rgba(227, 221, 246, 0.2) 65%, rgba(227, 221, 246, 0.1) 100%);
      background-image: -o-linear-gradient(top, rgba(227, 221, 246, 0.1) 0%, rgba(227, 221, 246, 0.2) 65%, rgba(227, 221, 246, 0.1) 100%);
      background-image: linear-gradient(-180deg, rgba(227, 221, 246, 0.1) 0%, rgba(227, 221, 246, 0.2) 65%, rgba(227, 221, 246, 0.1) 100%);
      z-index: -1; }
    .effect-section .effect-radius-bg .radius-1 {
      -webkit-transform: translate(-50%, -50%) scale(0.67);
      -ms-transform: translate(-50%, -50%) scale(0.67);
      transform: translate(-50%, -50%) scale(0.67); }
    .effect-section .effect-radius-bg .radius-2 {
      -webkit-transform: translate(-50%, -50%) scale(1.05);
      -ms-transform: translate(-50%, -50%) scale(1.05);
      transform: translate(-50%, -50%) scale(1.05); }
    .effect-section .effect-radius-bg .radius-3 {
      -webkit-transform: translate(-50%, -50%) scale(1.63);
      -ms-transform: translate(-50%, -50%) scale(1.63);
      transform: translate(-50%, -50%) scale(1.63); }
    .effect-section .effect-radius-bg .radius-4 {
      -webkit-transform: translate(-50%, -50%) scale(2.1);
      -ms-transform: translate(-50%, -50%) scale(2.1);
      transform: translate(-50%, -50%) scale(2.1); }
    .effect-section .effect-radius-bg .radius-x {
      will-change: transform;
      -webkit-animation: pulsate 3s infinite;
      animation: pulsate 3s infinite; }

@-webkit-keyframes pulsate {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    transform: translate(-50%, -50%) scale(0.5); }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(4);
    transform: translate(-50%, -50%) scale(4); } }
@keyframes pulsate {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    transform: translate(-50%, -50%) scale(0.5); }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(4);
    transform: translate(-50%, -50%) scale(4); } }
/* Dots
---------------------------*/
.dots {
  z-index: 0;
  animation: dots 6s infinite linear; }

.dots .dot {
  width: 5px;
  height: 5px;
  border-radius: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -3px;
  margin-top: -3px; }

.dots .dot1 {
  background-color: #8ad9fd;
  transform: translate(15px, 5px);
  animation: dot1 1.5s infinite alternate; }

.dots .dot2 {
  background-color: #b8a6f7;
  transform: translate(-8px, 8px);
  animation: dot2 1.5s infinite alternate;
  animation-delay: .5s; }

.dots .dot3 {
  background-color: #fac5a7;
  transform: translate(-5px, -12px);
  animation: dot3 1.5s infinite alternate;
  animation-delay: 1s; }

@keyframes dots {
  from {
    transform: rotate(-360deg); }
  to {
    transform: rotate(0); } }
@keyframes dot1 {
  from {
    transform: translate(15px, 5px);
    opacity: 1; }
  to {
    transform: translate(25px, 5px);
    opacity: 1; } }
@keyframes dot2 {
  from {
    transform: translate(-8px, 8px);
    opacity: 1; }
  to {
    transform: translate(-19px, 19px);
    opacity: 1; } }
@keyframes dot3 {
  from {
    transform: translate(-5px, -12px);
    opacity: 1; }
  to {
    transform: translate(-10px, -24px);
    opacity: 1; } }
.border-effect {
  text-decoration: underline; }

.after-50px {
  position: relative; }
  .after-50px:after {
    width: 50px;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0; }
    .text-center .after-50px:after {
      right: 0;
      margin: auto; }

/* ----------------------
*	Section
-------------------------*/
.container-extra-large {
  max-width: 1580px; }

.container-large {
  max-width: 1440px; }

.container-small {
  max-width: 750px; }

.section {
  padding: 100px 0; }
  @media (max-width: 991px) {
    .section {
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media (max-width: 767px) {
    .section {
      padding-top: 60px;
      padding-bottom: 60px; } }

.section-top-up .container {
  margin-top: -160px;
  position: relative;
  z-index: 1; }

.section-top-up-100 .container {
  margin-top: -100px;
  position: relative;
  z-index: 1; }

/* ----------------------
*	Background color
---------------------------*/
.theme-bg {
  background-color: #03c; }

.theme2nd-bg {
  background-color: #15db95; }

.theme-bg-light {
  background-color: rgba(0, 51, 204, 0.2); }

.theme2nd-bg-light {
  background-color: rgba(21, 219, 149, 0.2); }

.gray-bg {
  background-color: #f5f8fd; }

.gray-bg-g {
  background: linear-gradient(to bottom, #f7f8ff 80%, #ffffff 101%); }

.white-bg {
  background-color: #ffffff; }

.black-bg {
  background-color: #000000; }

.black-bg {
  background-color: #000000; }

.extra-dark-gray-bg {
  background-color: #1c1c1c; }

.extra-light-gray-bg {
  background-color: #f7f7f7; }

.bg-dark-gray-bg {
  background-color: #757575; }

.pink-bg {
  background-color: #f12699; }

.yellow-bg {
  background-color: #f5a416; }

.green-bg {
  background-color: #11e279; }

.blue-bg {
  background-color: #15b2ec; }

.theme-after:after {
  background-color: #03c; }

.theme-before:before {
  background-color: #03c; }

.theme2nd-after:after {
  background-color: #15db95; }

.theme2nd-before:before {
  background-color: #15db95; }

.white-after:after {
  background-color: #ffffff; }

.white-before:before {
  background-color: #ffffff; }

.dark-after:after {
  background-color: #011638; }

.dark-before:before {
  background-color: #011638; }

.g-bg-1 {
  background-color: #FFFFFF;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #6284FF 50%, #FF0000 100%); }

.g-bg-2 {
  background-color: #FEE140;
  background-image: linear-gradient(90deg, #FEE140 0%, #FA709A 100%); }

.g-bg-3 {
  background-color: #0093E9;
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%); }

.g-bg-4 {
  background-color: #74EBD5;
  background-image: linear-gradient(90deg, #74EBD5 0%, #9FACE6 100%); }

.g-bg-5 {
  background-color: #FAD961;
  background-image: linear-gradient(90deg, #FAD961 0%, #F76B1C 100%); }

.g-bg-6 {
  background-color: #4158D0;
  background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%); }

.g-bg-7 {
  background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%); }

.g-bg-8 {
  background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%); }

.g-bg-9 {
  background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%); }

.g-bg-9 {
  background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%); }

/* ----------------------
*	Property
---------------------------*/
.bg-cover {
  background-size: cover; }

.bg-no-repeat {
  background-repeat: no-repeat; }

.bg-fixed {
  background-attachment: fixed; }

.bg-center {
  background-position: center; }

/* ----------------------
*	Text Color
---------------------------*/
.theme-color {
  color: #03c; }

.theme2nd-color {
  color: #15db95; }

.dark-color {
  color: #011638; }

.white-color {
  color: #ffffff; }

.white-color-light {
  color: rgba(255, 255, 255, 0.65); }

a.white-color-light {
  color: rgba(255, 255, 255, 0.65) !important; }

.pink-color {
  color: #f12699; }

.yellow-color {
  color: #f5a416; }

.green-color {
  color: #11e279; }

.blue-color {
  color: #15b2ec; }

.light-color {
  color: #798598; }

/* ----------------------
*	owl 
---------------------------*/
.owl-dots {
  text-align: center; }
  .owl-dots .owl-dot {
    display: inline-block;
    vertical-align: top;
    width: 15px;
    height: 15px;
    background: #ffffff;
    border: 1px solid #03c;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    border-radius: 50%;
    margin: 0 5px; }
    .owl-dots .owl-dot.active {
      background: #03c; }

.white-dot .owl-dots .owl-dot {
  border: 2px solid #ffffff;
  background-color: transparent; }
  .white-dot .owl-dots .owl-dot.active {
    background: #ffffff; }

.owl-carousel .owl-item img {
  width: auto;
  max-width: 100%; }

/* ----------------------
*	Box shadow
---------------------------*/
.box-shadow-lg {
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }

.box-shadow {
  box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1); }

.box-shadow-hover {
  box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1); }
  .box-shadow-hover:hover {
    box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }

.box-shadow-only-hover:hover {
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1); }

/* ----------------------
*	transeition
---------------------------*/
.transition {
  -moz-transition: ease-in-out all 0.35s;
  -o-transition: ease-in-out all 0.35s;
  -webkit-transition: ease-in-out all 0.35s;
  transition: ease-in-out all 0.35s; }

/* ----------------------
*	Positions
---------------------------*/
.p-center {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto; }

/* ----------------------
*	Opacity
---------------------------*/
.opacity-1 {
  opacity: 0.1; }

.opacity-2 {
  opacity: 0.2; }

.opacity-3 {
  opacity: 0.3; }

.opacity-4 {
  opacity: 0.4; }

.opacity-5 {
  opacity: 0.5; }

.opacity-6 {
  opacity: 0.6; }

.opacity-7 {
  opacity: 0.7; }

.opacity-8 {
  opacity: 0.8; }

.opacity-9 {
  opacity: 0.9; }

/* ----------------------
*	Image Hover
---------------------------*/
.img-hover .img-hover-in {
  overflow: hidden; }
  .img-hover .img-hover-in img {
    -moz-transition: ease-in-out all 0.33s;
    -o-transition: ease-in-out all 0.33s;
    -webkit-transition: ease-in-out all 0.33s;
    transition: ease-in-out all 0.33s;
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
.img-hover:hover .img-hover-in img {
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1); }

/* ----------------------
*	Border Radius
---------------------------*/
.border-radius-1 {
  border-radius: 1px; }

.border-radius-2 {
  border-radius: 2px; }

.border-radius-3 {
  border-radius: 3px; }

.border-radius-4 {
  border-radius: 4px; }

.border-radius-5 {
  border-radius: 5px; }

.border-radius-6 {
  border-radius: 6px; }

.border-radius-7 {
  border-radius: 7px; }

.border-radius-8 {
  border-radius: 8px; }

.border-radius-9 {
  border-radius: 9px; }

.border-radius-10 {
  border-radius: 10px; }

.border-radius-50 {
  border-radius: 50%; }

.border-radius-effect {
  border-radius: 73% 27% 38% 62%/40% 43% 57% 60%; }

/* Border Weight
-------------------------------*/
.border-all-1 {
  border: 1px solid; }

.border-bottom-1 {
  border-bottom: 1px solid; }

.border-top-1 {
  border-top: 1px solid; }

.border-left-1 {
  border-left: 1px solid; }

.border-right-1 {
  border-right: 1px solid; }

.border-all-2 {
  border: 2px solid; }

.border-bottom-2 {
  border-bottom: 2px solid; }

.border-top-2 {
  border-top: 2px solid; }

.border-left-2 {
  border-left: 2px solid; }

.border-right-2 {
  border-right: 2px solid; }

.border-all-3 {
  border: 3px solid; }

.border-bottom-3 {
  border-bottom: 3px solid; }

.border-top-3 {
  border-top: 3px solid; }

.border-left-3 {
  border-left: 3px solid; }

.border-right-3 {
  border-right: 3px solid; }

.border-all-4 {
  border: 4px solid; }

.border-bottom-4 {
  border-bottom: 4px solid; }

.border-top-4 {
  border-top: 4px solid; }

.border-left-4 {
  border-left: 4px solid; }

.border-right-4 {
  border-right: 4px solid; }

.border-all-5 {
  border: 5px solid; }

.border-bottom-5 {
  border-bottom: 5px solid; }

.border-top-5 {
  border-top: 5px solid; }

.border-left-5 {
  border-left: 5px solid; }

.border-right-5 {
  border-right: 5px solid; }

.border-all-6 {
  border: 6px solid; }

.border-bottom-6 {
  border-bottom: 6px solid; }

.border-top-6 {
  border-top: 6px solid; }

.border-left-6 {
  border-left: 6px solid; }

.border-right-6 {
  border-right: 6px solid; }

.border-all-7 {
  border: 7px solid; }

.border-bottom-7 {
  border-bottom: 7px solid; }

.border-top-7 {
  border-top: 7px solid; }

.border-left-7 {
  border-left: 7px solid; }

.border-right-7 {
  border-right: 7px solid; }

.border-all-8 {
  border: 8px solid; }

.border-bottom-8 {
  border-bottom: 8px solid; }

.border-top-8 {
  border-top: 8px solid; }

.border-left-8 {
  border-left: 8px solid; }

.border-right-8 {
  border-right: 8px solid; }

.border-all-9 {
  border: 9px solid; }

.border-bottom-9 {
  border-bottom: 9px solid; }

.border-top-9 {
  border-top: 9px solid; }

.border-left-9 {
  border-left: 9px solid; }

.border-right-9 {
  border-right: 9px solid; }

.border-all-10 {
  border: 10px solid; }

.border-bottom-10 {
  border-bottom: 10px solid; }

.border-top-10 {
  border-top: 10px solid; }

.border-left-10 {
  border-left: 10px solid; }

.border-right-10 {
  border-right: 10px solid; }

.border-all-11 {
  border: 11px solid; }

.border-bottom-11 {
  border-bottom: 11px solid; }

.border-top-11 {
  border-top: 11px solid; }

.border-left-11 {
  border-left: 11px solid; }

.border-right-11 {
  border-right: 11px solid; }

.border-all-12 {
  border: 12px solid; }

.border-bottom-12 {
  border-bottom: 12px solid; }

.border-top-12 {
  border-top: 12px solid; }

.border-left-12 {
  border-left: 12px solid; }

.border-right-12 {
  border-right: 12px solid; }

.border-all-13 {
  border: 13px solid; }

.border-bottom-13 {
  border-bottom: 13px solid; }

.border-top-13 {
  border-top: 13px solid; }

.border-left-13 {
  border-left: 13px solid; }

.border-right-13 {
  border-right: 13px solid; }

.border-all-14 {
  border: 14px solid; }

.border-bottom-14 {
  border-bottom: 14px solid; }

.border-top-14 {
  border-top: 14px solid; }

.border-left-14 {
  border-left: 14px solid; }

.border-right-14 {
  border-right: 14px solid; }

.border-all-15 {
  border: 15px solid; }

.border-bottom-15 {
  border-bottom: 15px solid; }

.border-top-15 {
  border-top: 15px solid; }

.border-left-15 {
  border-left: 15px solid; }

.border-right-15 {
  border-right: 15px solid; }

/* Border color
-------------------------------*/
.border-color-theme {
  border-color: #03c; }

.border-color-theme2nd {
  border-color: #15db95; }

.border-color-dark {
  border-color: #011638; }

.border-color-gray {
  border-color: #eee; }

.border-color-dark-gray {
  border-color: #ddd; }

.border-color-white {
  border-color: #fff; }

.border-color-white-light {
  border-color: rgba(255, 255, 255, 0.3); }

/* Letter spacing
-------------------------------*/
.letter-spacing-1 {
  letter-spacing: 1px; }

.letter-spacing-2 {
  letter-spacing: 2px; }

.letter-spacing-3 {
  letter-spacing: 3px; }

.letter-spacing-4 {
  letter-spacing: 4px; }

.letter-spacing-5 {
  letter-spacing: 5px; }

.letter-spacing-6 {
  letter-spacing: 6px; }

.letter-spacing-7 {
  letter-spacing: 7px; }

.letter-spacing-8 {
  letter-spacing: 8px; }

.letter-spacing-9 {
  letter-spacing: 9px; }

.letter-spacing-10 {
  letter-spacing: 10px; }

/* Height Width
--------------------*/
.w-5px {
  width: 5px; }

.w-10px {
  width: 10px; }

.w-15px {
  width: 15px; }

.w-20px {
  width: 20px; }

.w-25px {
  width: 25px; }

.w-30px {
  width: 30px; }

.w-35px {
  width: 35px; }

.w-40px {
  width: 40px; }

.w-45px {
  width: 45px; }

.w-50px {
  width: 50px; }

.w-55px {
  width: 55px; }

.w-60px {
  width: 60px; }

.w-65px {
  width: 65px; }

.w-70px {
  width: 70px; }

.w-75px {
  width: 75px; }

.w-80px {
  width: 80px; }

.w-85px {
  width: 85px; }

.w-90px {
  width: 90px; }

.w-95px {
  width: 95px; }

.w-100px {
  width: 100px; }

.w-150px {
  width: 150px; }

.w-200px {
  width: 200px; }

.w-250px {
  width: 250px; }

.w-300px {
  width: 300px; }

.w-350px {
  width: 350px; }

.w-400px {
  width: 400px; }

.w-450px {
  width: 450px; }

.w-500px {
  width: 500px; }

.w-550px {
  width: 550px; }

.w-600px {
  width: 600px; }

.w-650px {
  width: 650px; }

.w-700px {
  width: 700px; }

.w-750px {
  width: 750px; }

.w-800px {
  width: 800px; }

.w-850px {
  width: 850px; }

.w-900px {
  width: 900px; }

.w-950px {
  width: 950px; }

.w-1000px {
  width: 1000px; }

.max-w-100 {
  max-width: 100%; }

.min-h-350px {
  min-height: 350px; }

.min-h-50vw {
  min-height: 65vh; }

.full-screen {
  min-height: 100vh; }

@media (max-width: 767px) {
  .sm-full-screen-auto {
    min-height: auto; } }
.max-width-auto {
  max-width: none; }
  @media (max-width: 991px) {
    .max-width-auto {
      max-width: 100%; } }

/* Font wight
--------------------*/
.font-w-100 {
  font-weight: 100; }

.font-w-200 {
  font-weight: 200; }

.font-w-300 {
  font-weight: 300; }

.font-w-400 {
  font-weight: 400; }

.font-w-500 {
  font-weight: 500; }

.font-w-600 {
  font-weight: 600; }

.font-w-700 {
  font-weight: 700; }

.font-w-800 {
  font-weight: 800; }

.font-w-900 {
  font-weight: 900; }

/* Font size
--------------------*/
.font-1px {
  font-size: 1px; }

.font-2px {
  font-size: 2px; }

.font-3px {
  font-size: 3px; }

.font-4px {
  font-size: 4px; }

.font-5px {
  font-size: 5px; }

.font-6px {
  font-size: 6px; }

.font-7px {
  font-size: 7px; }

.font-8px {
  font-size: 8px; }

.font-9px {
  font-size: 9px; }

.font-10px {
  font-size: 10px; }

.font-11px {
  font-size: 11px; }

.font-12px {
  font-size: 12px; }

.font-13px {
  font-size: 13px; }

.font-14px {
  font-size: 14px; }

.font-15px {
  font-size: 15px; }

.font-16px {
  font-size: 16px; }

.font-17px {
  font-size: 17px; }

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

.font-19px {
  font-size: 19px; }

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

.font-21px {
  font-size: 21px; }

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

.font-23px {
  font-size: 23px; }

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

.font-25px {
  font-size: 25px; }

.font-26px {
  font-size: 26px; }

.font-27px {
  font-size: 27px; }

.font-28px {
  font-size: 28px; }

.font-29px {
  font-size: 29px; }

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

.font-31px {
  font-size: 31px; }

.font-32px {
  font-size: 32px; }

.font-33px {
  font-size: 33px; }

.font-34px {
  font-size: 34px; }

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

.font-36px {
  font-size: 36px; }

.font-37px {
  font-size: 37px; }

.font-38px {
  font-size: 38px; }

.font-39px {
  font-size: 39px; }

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

.font-41px {
  font-size: 41px; }

.font-42px {
  font-size: 42px; }

.font-43px {
  font-size: 43px; }

.font-44px {
  font-size: 44px; }

.font-45px {
  font-size: 45px; }

.font-46px {
  font-size: 46px; }

.font-47px {
  font-size: 47px; }

.font-48px {
  font-size: 48px; }

.font-49px {
  font-size: 49px; }

.font-50px {
  font-size: 50px; }

.font-51px {
  font-size: 51px; }

.font-52px {
  font-size: 52px; }

.font-53px {
  font-size: 53px; }

.font-54px {
  font-size: 54px; }

.font-55px {
  font-size: 55px; }

.font-56px {
  font-size: 56px; }

.font-57px {
  font-size: 57px; }

.font-58px {
  font-size: 58px; }

.font-59px {
  font-size: 59px; }

.font-60px {
  font-size: 60px; }

.font-61px {
  font-size: 61px; }

.font-62px {
  font-size: 62px; }

.font-63px {
  font-size: 63px; }

.font-64px {
  font-size: 64px; }

.font-65px {
  font-size: 65px; }

.font-66px {
  font-size: 66px; }

.font-67px {
  font-size: 67px; }

.font-68px {
  font-size: 68px; }

.font-69px {
  font-size: 69px; }

.font-70px {
  font-size: 70px; }

.font-71px {
  font-size: 71px; }

.font-72px {
  font-size: 72px; }

.font-73px {
  font-size: 73px; }

.font-74px {
  font-size: 74px; }

.font-75px {
  font-size: 75px; }

.font-76px {
  font-size: 76px; }

.font-77px {
  font-size: 77px; }

.font-78px {
  font-size: 78px; }

.font-79px {
  font-size: 79px; }

.font-80px {
  font-size: 80px; }

.font-81px {
  font-size: 81px; }

.font-82px {
  font-size: 82px; }

.font-83px {
  font-size: 83px; }

.font-84px {
  font-size: 84px; }

.font-85px {
  font-size: 85px; }

.font-86px {
  font-size: 86px; }

.font-87px {
  font-size: 87px; }

.font-88px {
  font-size: 88px; }

.font-89px {
  font-size: 89px; }

.font-90px {
  font-size: 90px; }

.font-91px {
  font-size: 91px; }

.font-92px {
  font-size: 92px; }

.font-93px {
  font-size: 93px; }

.font-94px {
  font-size: 94px; }

.font-95px {
  font-size: 95px; }

.font-96px {
  font-size: 96px; }

.font-97px {
  font-size: 97px; }

.font-98px {
  font-size: 98px; }

.font-99px {
  font-size: 99px; }

.font-100px {
  font-size: 100px; }

.font-101px {
  font-size: 101px; }

.font-102px {
  font-size: 102px; }

.font-103px {
  font-size: 103px; }

.font-104px {
  font-size: 104px; }

.font-105px {
  font-size: 105px; }

.font-106px {
  font-size: 106px; }

.font-107px {
  font-size: 107px; }

.font-108px {
  font-size: 108px; }

.font-109px {
  font-size: 109px; }

.font-110px {
  font-size: 110px; }

.font-111px {
  font-size: 111px; }

.font-112px {
  font-size: 112px; }

.font-113px {
  font-size: 113px; }

.font-114px {
  font-size: 114px; }

.font-115px {
  font-size: 115px; }

.font-116px {
  font-size: 116px; }

.font-117px {
  font-size: 117px; }

.font-118px {
  font-size: 118px; }

.font-119px {
  font-size: 119px; }

.font-120px {
  font-size: 120px; }

.font-121px {
  font-size: 121px; }

.font-122px {
  font-size: 122px; }

.font-123px {
  font-size: 123px; }

.font-124px {
  font-size: 124px; }

.font-125px {
  font-size: 125px; }

.font-126px {
  font-size: 126px; }

.font-127px {
  font-size: 127px; }

.font-128px {
  font-size: 128px; }

.font-129px {
  font-size: 129px; }

.font-130px {
  font-size: 130px; }

/* Margin Padding
--------------------*/
.m-0px {
  margin: 0px; }

.m-0px-tb {
  margin-top: 0px;
  margin-bottom: 0px; }

.m-0px-lr {
  margin-left: 0px;
  margin-right: 0px; }

.m-0px-t {
  margin-top: 0px; }

.m-0px-l {
  margin-left: 0px; }

.m-0px-r {
  margin-right: 0px; }

.m-0px-b {
  margin-bottom: 0px; }

.p-0px {
  padding: 0px; }

.p-0px-tb {
  padding-top: 0px;
  padding-bottom: 0px; }

.p-0px-lr {
  padding-left: 0px;
  padding-right: 0px; }

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

.p-0px-l {
  padding-left: 0px; }

.p-0px-r {
  padding-right: 0px; }

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

.m-5px {
  margin: 5px; }

.m-5px-tb {
  margin-top: 5px;
  margin-bottom: 5px; }

.m-5px-lr {
  margin-left: 5px;
  margin-right: 5px; }

.m-5px-t {
  margin-top: 5px; }

.m-5px-l {
  margin-left: 5px; }

.m-5px-r {
  margin-right: 5px; }

.m-5px-b {
  margin-bottom: 5px; }

.p-5px {
  padding: 5px; }

.p-5px-tb {
  padding-top: 5px;
  padding-bottom: 5px; }

.p-5px-lr {
  padding-left: 5px;
  padding-right: 5px; }

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

.p-5px-l {
  padding-left: 5px; }

.p-5px-r {
  padding-right: 5px; }

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

.m-10px {
  margin: 10px; }

.m-10px-tb {
  margin-top: 10px;
  margin-bottom: 10px; }

.m-10px-lr {
  margin-left: 10px;
  margin-right: 10px; }

.m-10px-t {
  margin-top: 10px; }

.m-10px-l {
  margin-left: 10px; }

.m-10px-r {
  margin-right: 10px; }

.m-10px-b {
  margin-bottom: 10px; }

.p-10px {
  padding: 10px; }

.p-10px-tb {
  padding-top: 10px;
  padding-bottom: 10px; }

.p-10px-lr {
  padding-left: 10px;
  padding-right: 10px; }

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

.p-10px-l {
  padding-left: 10px; }

.p-10px-r {
  padding-right: 10px; }

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

.m-15px {
  margin: 15px; }

.m-15px-tb {
  margin-top: 15px;
  margin-bottom: 15px; }

.m-15px-lr {
  margin-left: 15px;
  margin-right: 15px; }

.m-15px-t {
  margin-top: 15px; }

.m-15px-l {
  margin-left: 15px; }

.m-15px-r {
  margin-right: 15px; }

.m-15px-b {
  margin-bottom: 15px; }

.p-15px {
  padding: 15px; }

.p-15px-tb {
  padding-top: 15px;
  padding-bottom: 15px; }

.p-15px-lr {
  padding-left: 15px;
  padding-right: 15px; }

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

.p-15px-l {
  padding-left: 15px; }

.p-15px-r {
  padding-right: 15px; }

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

.m-20px {
  margin: 20px; }

.m-20px-tb {
  margin-top: 20px;
  margin-bottom: 20px; }

.m-20px-lr {
  margin-left: 20px;
  margin-right: 20px; }

.m-20px-t {
  margin-top: 20px; }

.m-20px-l {
  margin-left: 20px; }

.m-20px-r {
  margin-right: 20px; }

.m-20px-b {
  margin-bottom: 20px; }

.p-20px {
  padding: 20px; }

.p-20px-tb {
  padding-top: 20px;
  padding-bottom: 20px; }

.p-20px-lr {
  padding-left: 20px;
  padding-right: 20px; }

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

.p-20px-l {
  padding-left: 20px; }

.p-20px-r {
  padding-right: 20px; }

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

.m-25px {
  margin: 25px; }

.m-25px-tb {
  margin-top: 25px;
  margin-bottom: 25px; }

.m-25px-lr {
  margin-left: 25px;
  margin-right: 25px; }

.m-25px-t {
  margin-top: 25px; }

.m-25px-l {
  margin-left: 25px; }

.m-25px-r {
  margin-right: 25px; }

.m-25px-b {
  margin-bottom: 25px; }

.p-25px {
  padding: 25px; }

.p-25px-tb {
  padding-top: 25px;
  padding-bottom: 25px; }

.p-25px-lr {
  padding-left: 25px;
  padding-right: 25px; }

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

.p-25px-l {
  padding-left: 25px; }

.p-25px-r {
  padding-right: 25px; }

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

.m-30px {
  margin: 30px; }

.m-30px-tb {
  margin-top: 30px;
  margin-bottom: 30px; }

.m-30px-lr {
  margin-left: 30px;
  margin-right: 30px; }

.m-30px-t {
  margin-top: 30px; }

.m-30px-l {
  margin-left: 30px; }

.m-30px-r {
  margin-right: 30px; }

.m-30px-b {
  margin-bottom: 30px; }

.p-30px {
  padding: 30px; }

.p-30px-tb {
  padding-top: 30px;
  padding-bottom: 30px; }

.p-30px-lr {
  padding-left: 30px;
  padding-right: 30px; }

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

.p-30px-l {
  padding-left: 30px; }

.p-30px-r {
  padding-right: 30px; }

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

.m-35px {
  margin: 35px; }

.m-35px-tb {
  margin-top: 35px;
  margin-bottom: 35px; }

.m-35px-lr {
  margin-left: 35px;
  margin-right: 35px; }

.m-35px-t {
  margin-top: 35px; }

.m-35px-l {
  margin-left: 35px; }

.m-35px-r {
  margin-right: 35px; }

.m-35px-b {
  margin-bottom: 35px; }

.p-35px {
  padding: 35px; }

.p-35px-tb {
  padding-top: 35px;
  padding-bottom: 35px; }

.p-35px-lr {
  padding-left: 35px;
  padding-right: 35px; }

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

.p-35px-l {
  padding-left: 35px; }

.p-35px-r {
  padding-right: 35px; }

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

.m-40px {
  margin: 40px; }

.m-40px-tb {
  margin-top: 40px;
  margin-bottom: 40px; }

.m-40px-lr {
  margin-left: 40px;
  margin-right: 40px; }

.m-40px-t {
  margin-top: 40px; }

.m-40px-l {
  margin-left: 40px; }

.m-40px-r {
  margin-right: 40px; }

.m-40px-b {
  margin-bottom: 40px; }

.p-40px {
  padding: 40px; }

.p-40px-tb {
  padding-top: 40px;
  padding-bottom: 40px; }

.p-40px-lr {
  padding-left: 40px;
  padding-right: 40px; }

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

.p-40px-l {
  padding-left: 40px; }

.p-40px-r {
  padding-right: 40px; }

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

.m-45px {
  margin: 45px; }

.m-45px-tb {
  margin-top: 45px;
  margin-bottom: 45px; }

.m-45px-lr {
  margin-left: 45px;
  margin-right: 45px; }

.m-45px-t {
  margin-top: 45px; }

.m-45px-l {
  margin-left: 45px; }

.m-45px-r {
  margin-right: 45px; }

.m-45px-b {
  margin-bottom: 45px; }

.p-45px {
  padding: 45px; }

.p-45px-tb {
  padding-top: 45px;
  padding-bottom: 45px; }

.p-45px-lr {
  padding-left: 45px;
  padding-right: 45px; }

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

.p-45px-l {
  padding-left: 45px; }

.p-45px-r {
  padding-right: 45px; }

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

.m-50px {
  margin: 50px; }

.m-50px-tb {
  margin-top: 50px;
  margin-bottom: 50px; }

.m-50px-lr {
  margin-left: 50px;
  margin-right: 50px; }

.m-50px-t {
  margin-top: 50px; }

.m-50px-l {
  margin-left: 50px; }

.m-50px-r {
  margin-right: 50px; }

.m-50px-b {
  margin-bottom: 50px; }

.p-50px {
  padding: 50px; }

.p-50px-tb {
  padding-top: 50px;
  padding-bottom: 50px; }

.p-50px-lr {
  padding-left: 50px;
  padding-right: 50px; }

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

.p-50px-l {
  padding-left: 50px; }

.p-50px-r {
  padding-right: 50px; }

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

.m-55px {
  margin: 55px; }

.m-55px-tb {
  margin-top: 55px;
  margin-bottom: 55px; }

.m-55px-lr {
  margin-left: 55px;
  margin-right: 55px; }

.m-55px-t {
  margin-top: 55px; }

.m-55px-l {
  margin-left: 55px; }

.m-55px-r {
  margin-right: 55px; }

.m-55px-b {
  margin-bottom: 55px; }

.p-55px {
  padding: 55px; }

.p-55px-tb {
  padding-top: 55px;
  padding-bottom: 55px; }

.p-55px-lr {
  padding-left: 55px;
  padding-right: 55px; }

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

.p-55px-l {
  padding-left: 55px; }

.p-55px-r {
  padding-right: 55px; }

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

.m-60px {
  margin: 60px; }

.m-60px-tb {
  margin-top: 60px;
  margin-bottom: 60px; }

.m-60px-lr {
  margin-left: 60px;
  margin-right: 60px; }

.m-60px-t {
  margin-top: 60px; }

.m-60px-l {
  margin-left: 60px; }

.m-60px-r {
  margin-right: 60px; }

.m-60px-b {
  margin-bottom: 60px; }

.p-60px {
  padding: 60px; }

.p-60px-tb {
  padding-top: 60px;
  padding-bottom: 60px; }

.p-60px-lr {
  padding-left: 60px;
  padding-right: 60px; }

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

.p-60px-l {
  padding-left: 60px; }

.p-60px-r {
  padding-right: 60px; }

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

.m-65px {
  margin: 65px; }

.m-65px-tb {
  margin-top: 65px;
  margin-bottom: 65px; }

.m-65px-lr {
  margin-left: 65px;
  margin-right: 65px; }

.m-65px-t {
  margin-top: 65px; }

.m-65px-l {
  margin-left: 65px; }

.m-65px-r {
  margin-right: 65px; }

.m-65px-b {
  margin-bottom: 65px; }

.p-65px {
  padding: 65px; }

.p-65px-tb {
  padding-top: 65px;
  padding-bottom: 65px; }

.p-65px-lr {
  padding-left: 65px;
  padding-right: 65px; }

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

.p-65px-l {
  padding-left: 65px; }

.p-65px-r {
  padding-right: 65px; }

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

.m-70px {
  margin: 70px; }

.m-70px-tb {
  margin-top: 70px;
  margin-bottom: 70px; }

.m-70px-lr {
  margin-left: 70px;
  margin-right: 70px; }

.m-70px-t {
  margin-top: 70px; }

.m-70px-l {
  margin-left: 70px; }

.m-70px-r {
  margin-right: 70px; }

.m-70px-b {
  margin-bottom: 70px; }

.p-70px {
  padding: 70px; }

.p-70px-tb {
  padding-top: 70px;
  padding-bottom: 70px; }

.p-70px-lr {
  padding-left: 70px;
  padding-right: 70px; }

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

.p-70px-l {
  padding-left: 70px; }

.p-70px-r {
  padding-right: 70px; }

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

.m-75px {
  margin: 75px; }

.m-75px-tb {
  margin-top: 75px;
  margin-bottom: 75px; }

.m-75px-lr {
  margin-left: 75px;
  margin-right: 75px; }

.m-75px-t {
  margin-top: 75px; }

.m-75px-l {
  margin-left: 75px; }

.m-75px-r {
  margin-right: 75px; }

.m-75px-b {
  margin-bottom: 75px; }

.p-75px {
  padding: 75px; }

.p-75px-tb {
  padding-top: 75px;
  padding-bottom: 75px; }

.p-75px-lr {
  padding-left: 75px;
  padding-right: 75px; }

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

.p-75px-l {
  padding-left: 75px; }

.p-75px-r {
  padding-right: 75px; }

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

.m-80px {
  margin: 80px; }

.m-80px-tb {
  margin-top: 80px;
  margin-bottom: 80px; }

.m-80px-lr {
  margin-left: 80px;
  margin-right: 80px; }

.m-80px-t {
  margin-top: 80px; }

.m-80px-l {
  margin-left: 80px; }

.m-80px-r {
  margin-right: 80px; }

.m-80px-b {
  margin-bottom: 80px; }

.p-80px {
  padding: 80px; }

.p-80px-tb {
  padding-top: 80px;
  padding-bottom: 80px; }

.p-80px-lr {
  padding-left: 80px;
  padding-right: 80px; }

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

.p-80px-l {
  padding-left: 80px; }

.p-80px-r {
  padding-right: 80px; }

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

.m-85px {
  margin: 85px; }

.m-85px-tb {
  margin-top: 85px;
  margin-bottom: 85px; }

.m-85px-lr {
  margin-left: 85px;
  margin-right: 85px; }

.m-85px-t {
  margin-top: 85px; }

.m-85px-l {
  margin-left: 85px; }

.m-85px-r {
  margin-right: 85px; }

.m-85px-b {
  margin-bottom: 85px; }

.p-85px {
  padding: 85px; }

.p-85px-tb {
  padding-top: 85px;
  padding-bottom: 85px; }

.p-85px-lr {
  padding-left: 85px;
  padding-right: 85px; }

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

.p-85px-l {
  padding-left: 85px; }

.p-85px-r {
  padding-right: 85px; }

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

.m-90px {
  margin: 90px; }

.m-90px-tb {
  margin-top: 90px;
  margin-bottom: 90px; }

.m-90px-lr {
  margin-left: 90px;
  margin-right: 90px; }

.m-90px-t {
  margin-top: 90px; }

.m-90px-l {
  margin-left: 90px; }

.m-90px-r {
  margin-right: 90px; }

.m-90px-b {
  margin-bottom: 90px; }

.p-90px {
  padding: 90px; }

.p-90px-tb {
  padding-top: 90px;
  padding-bottom: 90px; }

.p-90px-lr {
  padding-left: 90px;
  padding-right: 90px; }

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

.p-90px-l {
  padding-left: 90px; }

.p-90px-r {
  padding-right: 90px; }

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

.m-95px {
  margin: 95px; }

.m-95px-tb {
  margin-top: 95px;
  margin-bottom: 95px; }

.m-95px-lr {
  margin-left: 95px;
  margin-right: 95px; }

.m-95px-t {
  margin-top: 95px; }

.m-95px-l {
  margin-left: 95px; }

.m-95px-r {
  margin-right: 95px; }

.m-95px-b {
  margin-bottom: 95px; }

.p-95px {
  padding: 95px; }

.p-95px-tb {
  padding-top: 95px;
  padding-bottom: 95px; }

.p-95px-lr {
  padding-left: 95px;
  padding-right: 95px; }

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

.p-95px-l {
  padding-left: 95px; }

.p-95px-r {
  padding-right: 95px; }

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

.m-100px {
  margin: 100px; }

.m-100px-tb {
  margin-top: 100px;
  margin-bottom: 100px; }

.m-100px-lr {
  margin-left: 100px;
  margin-right: 100px; }

.m-100px-t {
  margin-top: 100px; }

.m-100px-l {
  margin-left: 100px; }

.m-100px-r {
  margin-right: 100px; }

.m-100px-b {
  margin-bottom: 100px; }

.p-100px {
  padding: 100px; }

.p-100px-tb {
  padding-top: 100px;
  padding-bottom: 100px; }

.p-100px-lr {
  padding-left: 100px;
  padding-right: 100px; }

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

.p-100px-l {
  padding-left: 100px; }

.p-100px-r {
  padding-right: 100px; }

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

@media (max-width: 1200px) {
  /* Font size
  --------------------*/
  .lg-font-1px {
    font-size: 1px; }

  .lg-font-2px {
    font-size: 2px; }

  .lg-font-3px {
    font-size: 3px; }

  .lg-font-4px {
    font-size: 4px; }

  .lg-font-5px {
    font-size: 5px; }

  .lg-font-6px {
    font-size: 6px; }

  .lg-font-7px {
    font-size: 7px; }

  .lg-font-8px {
    font-size: 8px; }

  .lg-font-9px {
    font-size: 9px; }

  .lg-font-10px {
    font-size: 10px; }

  .lg-font-11px {
    font-size: 11px; }

  .lg-font-12px {
    font-size: 12px; }

  .lg-font-13px {
    font-size: 13px; }

  .lg-font-14px {
    font-size: 14px; }

  .lg-font-15px {
    font-size: 15px; }

  .lg-font-16px {
    font-size: 16px; }

  .lg-font-17px {
    font-size: 17px; }

  .lg-font-18px {
    font-size: 18px; }

  .lg-font-19px {
    font-size: 19px; }

  .lg-font-20px {
    font-size: 20px; }

  .lg-font-21px {
    font-size: 21px; }

  .lg-font-22px {
    font-size: 22px; }

  .lg-font-23px {
    font-size: 23px; }

  .lg-font-24px {
    font-size: 24px; }

  .lg-font-25px {
    font-size: 25px; }

  .lg-font-26px {
    font-size: 26px; }

  .lg-font-27px {
    font-size: 27px; }

  .lg-font-28px {
    font-size: 28px; }

  .lg-font-29px {
    font-size: 29px; }

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

  .lg-font-31px {
    font-size: 31px; }

  .lg-font-32px {
    font-size: 32px; }

  .lg-font-33px {
    font-size: 33px; }

  .lg-font-34px {
    font-size: 34px; }

  .lg-font-35px {
    font-size: 35px; }

  .lg-font-36px {
    font-size: 36px; }

  .lg-font-37px {
    font-size: 37px; }

  .lg-font-38px {
    font-size: 38px; }

  .lg-font-39px {
    font-size: 39px; }

  .lg-font-40px {
    font-size: 40px; }

  .lg-font-41px {
    font-size: 41px; }

  .lg-font-42px {
    font-size: 42px; }

  .lg-font-43px {
    font-size: 43px; }

  .lg-font-44px {
    font-size: 44px; }

  .lg-font-45px {
    font-size: 45px; }

  .lg-font-46px {
    font-size: 46px; }

  .lg-font-47px {
    font-size: 47px; }

  .lg-font-48px {
    font-size: 48px; }

  .lg-font-49px {
    font-size: 49px; }

  .lg-font-50px {
    font-size: 50px; }

  .lg-font-51px {
    font-size: 51px; }

  .lg-font-52px {
    font-size: 52px; }

  .lg-font-53px {
    font-size: 53px; }

  .lg-font-54px {
    font-size: 54px; }

  .lg-font-55px {
    font-size: 55px; }

  .lg-font-56px {
    font-size: 56px; }

  .lg-font-57px {
    font-size: 57px; }

  .lg-font-58px {
    font-size: 58px; }

  .lg-font-59px {
    font-size: 59px; }

  .lg-font-60px {
    font-size: 60px; }

  .lg-font-61px {
    font-size: 61px; }

  .lg-font-62px {
    font-size: 62px; }

  .lg-font-63px {
    font-size: 63px; }

  .lg-font-64px {
    font-size: 64px; }

  .lg-font-65px {
    font-size: 65px; }

  .lg-font-66px {
    font-size: 66px; }

  .lg-font-67px {
    font-size: 67px; }

  .lg-font-68px {
    font-size: 68px; }

  .lg-font-69px {
    font-size: 69px; }

  .lg-font-70px {
    font-size: 70px; }

  .lg-font-71px {
    font-size: 71px; }

  .lg-font-72px {
    font-size: 72px; }

  .lg-font-73px {
    font-size: 73px; }

  .lg-font-74px {
    font-size: 74px; }

  .lg-font-75px {
    font-size: 75px; }

  .lg-font-76px {
    font-size: 76px; }

  .lg-font-77px {
    font-size: 77px; }

  .lg-font-78px {
    font-size: 78px; }

  .lg-font-79px {
    font-size: 79px; }

  .lg-font-80px {
    font-size: 80px; }

  .lg-font-81px {
    font-size: 81px; }

  .lg-font-82px {
    font-size: 82px; }

  .lg-font-83px {
    font-size: 83px; }

  .lg-font-84px {
    font-size: 84px; }

  .lg-font-85px {
    font-size: 85px; }

  .lg-font-86px {
    font-size: 86px; }

  .lg-font-87px {
    font-size: 87px; }

  .lg-font-88px {
    font-size: 88px; }

  .lg-font-89px {
    font-size: 89px; }

  .lg-font-90px {
    font-size: 90px; }

  .lg-font-91px {
    font-size: 91px; }

  .lg-font-92px {
    font-size: 92px; }

  .lg-font-93px {
    font-size: 93px; }

  .lg-font-94px {
    font-size: 94px; }

  .lg-font-95px {
    font-size: 95px; }

  .lg-font-96px {
    font-size: 96px; }

  .lg-font-97px {
    font-size: 97px; }

  .lg-font-98px {
    font-size: 98px; }

  .lg-font-99px {
    font-size: 99px; }

  .lg-font-100px {
    font-size: 100px; }

  .lg-font-101px {
    font-size: 101px; }

  .lg-font-102px {
    font-size: 102px; }

  .lg-font-103px {
    font-size: 103px; }

  .lg-font-104px {
    font-size: 104px; }

  .lg-font-105px {
    font-size: 105px; }

  .lg-font-106px {
    font-size: 106px; }

  .lg-font-107px {
    font-size: 107px; }

  .lg-font-108px {
    font-size: 108px; }

  .lg-font-109px {
    font-size: 109px; }

  .lg-font-110px {
    font-size: 110px; }

  .lg-font-111px {
    font-size: 111px; }

  .lg-font-112px {
    font-size: 112px; }

  .lg-font-113px {
    font-size: 113px; }

  .lg-font-114px {
    font-size: 114px; }

  .lg-font-115px {
    font-size: 115px; }

  .lg-font-116px {
    font-size: 116px; }

  .lg-font-117px {
    font-size: 117px; }

  .lg-font-118px {
    font-size: 118px; }

  .lg-font-119px {
    font-size: 119px; }

  .lg-font-120px {
    font-size: 120px; }

  .lg-font-121px {
    font-size: 121px; }

  .lg-font-122px {
    font-size: 122px; }

  .lg-font-123px {
    font-size: 123px; }

  .lg-font-124px {
    font-size: 124px; }

  .lg-font-125px {
    font-size: 125px; }

  .lg-font-126px {
    font-size: 126px; }

  .lg-font-127px {
    font-size: 127px; }

  .lg-font-128px {
    font-size: 128px; }

  .lg-font-129px {
    font-size: 129px; }

  .lg-font-130px {
    font-size: 130px; }

  /* Margin Padding
  --------------------*/
  .lg-m-0px {
    margin: 0px; }

  .lg-m-0px-tb {
    margin-top: 0px;
    margin-bottom: 0px; }

  .lg-m-0px-lr {
    margin-left: 0px;
    margin-right: 0px; }

  .lg-m-0px-t {
    margin-top: 0px; }

  .lg-m-0px-l {
    margin-left: 0px; }

  .lg-m-0px-r {
    margin-right: 0px; }

  .lg-m-0px-b {
    margin-bottom: 0px; }

  .lg-p-0px {
    padding: 0px; }

  .lg-p-0px-tb {
    padding-top: 0px;
    padding-bottom: 0px; }

  .lg-p-0px-lr {
    padding-left: 0px;
    padding-right: 0px; }

  .lg-p-0px-t {
    padding-top: 0px; }

  .lg-p-0px-l {
    padding-left: 0px; }

  .lg-p-0px-r {
    padding-right: 0px; }

  .lg-p-0px-b {
    padding-bottom: 0px; }

  .lg-m-5px {
    margin: 5px; }

  .lg-m-5px-tb {
    margin-top: 5px;
    margin-bottom: 5px; }

  .lg-m-5px-lr {
    margin-left: 5px;
    margin-right: 5px; }

  .lg-m-5px-t {
    margin-top: 5px; }

  .lg-m-5px-l {
    margin-left: 5px; }

  .lg-m-5px-r {
    margin-right: 5px; }

  .lg-m-5px-b {
    margin-bottom: 5px; }

  .lg-p-5px {
    padding: 5px; }

  .lg-p-5px-tb {
    padding-top: 5px;
    padding-bottom: 5px; }

  .lg-p-5px-lr {
    padding-left: 5px;
    padding-right: 5px; }

  .lg-p-5px-t {
    padding-top: 5px; }

  .lg-p-5px-l {
    padding-left: 5px; }

  .lg-p-5px-r {
    padding-right: 5px; }

  .lg-p-5px-b {
    padding-bottom: 5px; }

  .lg-m-10px {
    margin: 10px; }

  .lg-m-10px-tb {
    margin-top: 10px;
    margin-bottom: 10px; }

  .lg-m-10px-lr {
    margin-left: 10px;
    margin-right: 10px; }

  .lg-m-10px-t {
    margin-top: 10px; }

  .lg-m-10px-l {
    margin-left: 10px; }

  .lg-m-10px-r {
    margin-right: 10px; }

  .lg-m-10px-b {
    margin-bottom: 10px; }

  .lg-p-10px {
    padding: 10px; }

  .lg-p-10px-tb {
    padding-top: 10px;
    padding-bottom: 10px; }

  .lg-p-10px-lr {
    padding-left: 10px;
    padding-right: 10px; }

  .lg-p-10px-t {
    padding-top: 10px; }

  .lg-p-10px-l {
    padding-left: 10px; }

  .lg-p-10px-r {
    padding-right: 10px; }

  .lg-p-10px-b {
    padding-bottom: 10px; }

  .lg-m-15px {
    margin: 15px; }

  .lg-m-15px-tb {
    margin-top: 15px;
    margin-bottom: 15px; }

  .lg-m-15px-lr {
    margin-left: 15px;
    margin-right: 15px; }

  .lg-m-15px-t {
    margin-top: 15px; }

  .lg-m-15px-l {
    margin-left: 15px; }

  .lg-m-15px-r {
    margin-right: 15px; }

  .lg-m-15px-b {
    margin-bottom: 15px; }

  .lg-p-15px {
    padding: 15px; }

  .lg-p-15px-tb {
    padding-top: 15px;
    padding-bottom: 15px; }

  .lg-p-15px-lr {
    padding-left: 15px;
    padding-right: 15px; }

  .lg-p-15px-t {
    padding-top: 15px; }

  .lg-p-15px-l {
    padding-left: 15px; }

  .lg-p-15px-r {
    padding-right: 15px; }

  .lg-p-15px-b {
    padding-bottom: 15px; }

  .lg-m-20px {
    margin: 20px; }

  .lg-m-20px-tb {
    margin-top: 20px;
    margin-bottom: 20px; }

  .lg-m-20px-lr {
    margin-left: 20px;
    margin-right: 20px; }

  .lg-m-20px-t {
    margin-top: 20px; }

  .lg-m-20px-l {
    margin-left: 20px; }

  .lg-m-20px-r {
    margin-right: 20px; }

  .lg-m-20px-b {
    margin-bottom: 20px; }

  .lg-p-20px {
    padding: 20px; }

  .lg-p-20px-tb {
    padding-top: 20px;
    padding-bottom: 20px; }

  .lg-p-20px-lr {
    padding-left: 20px;
    padding-right: 20px; }

  .lg-p-20px-t {
    padding-top: 20px; }

  .lg-p-20px-l {
    padding-left: 20px; }

  .lg-p-20px-r {
    padding-right: 20px; }

  .lg-p-20px-b {
    padding-bottom: 20px; }

  .lg-m-25px {
    margin: 25px; }

  .lg-m-25px-tb {
    margin-top: 25px;
    margin-bottom: 25px; }

  .lg-m-25px-lr {
    margin-left: 25px;
    margin-right: 25px; }

  .lg-m-25px-t {
    margin-top: 25px; }

  .lg-m-25px-l {
    margin-left: 25px; }

  .lg-m-25px-r {
    margin-right: 25px; }

  .lg-m-25px-b {
    margin-bottom: 25px; }

  .lg-p-25px {
    padding: 25px; }

  .lg-p-25px-tb {
    padding-top: 25px;
    padding-bottom: 25px; }

  .lg-p-25px-lr {
    padding-left: 25px;
    padding-right: 25px; }

  .lg-p-25px-t {
    padding-top: 25px; }

  .lg-p-25px-l {
    padding-left: 25px; }

  .lg-p-25px-r {
    padding-right: 25px; }

  .lg-p-25px-b {
    padding-bottom: 25px; }

  .lg-m-30px {
    margin: 30px; }

  .lg-m-30px-tb {
    margin-top: 30px;
    margin-bottom: 30px; }

  .lg-m-30px-lr {
    margin-left: 30px;
    margin-right: 30px; }

  .lg-m-30px-t {
    margin-top: 30px; }

  .lg-m-30px-l {
    margin-left: 30px; }

  .lg-m-30px-r {
    margin-right: 30px; }

  .lg-m-30px-b {
    margin-bottom: 30px; }

  .lg-p-30px {
    padding: 30px; }

  .lg-p-30px-tb {
    padding-top: 30px;
    padding-bottom: 30px; }

  .lg-p-30px-lr {
    padding-left: 30px;
    padding-right: 30px; }

  .lg-p-30px-t {
    padding-top: 30px; }

  .lg-p-30px-l {
    padding-left: 30px; }

  .lg-p-30px-r {
    padding-right: 30px; }

  .lg-p-30px-b {
    padding-bottom: 30px; }

  .lg-m-35px {
    margin: 35px; }

  .lg-m-35px-tb {
    margin-top: 35px;
    margin-bottom: 35px; }

  .lg-m-35px-lr {
    margin-left: 35px;
    margin-right: 35px; }

  .lg-m-35px-t {
    margin-top: 35px; }

  .lg-m-35px-l {
    margin-left: 35px; }

  .lg-m-35px-r {
    margin-right: 35px; }

  .lg-m-35px-b {
    margin-bottom: 35px; }

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

  .lg-p-35px-tb {
    padding-top: 35px;
    padding-bottom: 35px; }

  .lg-p-35px-lr {
    padding-left: 35px;
    padding-right: 35px; }

  .lg-p-35px-t {
    padding-top: 35px; }

  .lg-p-35px-l {
    padding-left: 35px; }

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

  .lg-p-35px-b {
    padding-bottom: 35px; }

  .lg-m-40px {
    margin: 40px; }

  .lg-m-40px-tb {
    margin-top: 40px;
    margin-bottom: 40px; }

  .lg-m-40px-lr {
    margin-left: 40px;
    margin-right: 40px; }

  .lg-m-40px-t {
    margin-top: 40px; }

  .lg-m-40px-l {
    margin-left: 40px; }

  .lg-m-40px-r {
    margin-right: 40px; }

  .lg-m-40px-b {
    margin-bottom: 40px; }

  .lg-p-40px {
    padding: 40px; }

  .lg-p-40px-tb {
    padding-top: 40px;
    padding-bottom: 40px; }

  .lg-p-40px-lr {
    padding-left: 40px;
    padding-right: 40px; }

  .lg-p-40px-t {
    padding-top: 40px; }

  .lg-p-40px-l {
    padding-left: 40px; }

  .lg-p-40px-r {
    padding-right: 40px; }

  .lg-p-40px-b {
    padding-bottom: 40px; }

  .lg-m-45px {
    margin: 45px; }

  .lg-m-45px-tb {
    margin-top: 45px;
    margin-bottom: 45px; }

  .lg-m-45px-lr {
    margin-left: 45px;
    margin-right: 45px; }

  .lg-m-45px-t {
    margin-top: 45px; }

  .lg-m-45px-l {
    margin-left: 45px; }

  .lg-m-45px-r {
    margin-right: 45px; }

  .lg-m-45px-b {
    margin-bottom: 45px; }

  .lg-p-45px {
    padding: 45px; }

  .lg-p-45px-tb {
    padding-top: 45px;
    padding-bottom: 45px; }

  .lg-p-45px-lr {
    padding-left: 45px;
    padding-right: 45px; }

  .lg-p-45px-t {
    padding-top: 45px; }

  .lg-p-45px-l {
    padding-left: 45px; }

  .lg-p-45px-r {
    padding-right: 45px; }

  .lg-p-45px-b {
    padding-bottom: 45px; }

  .lg-m-50px {
    margin: 50px; }

  .lg-m-50px-tb {
    margin-top: 50px;
    margin-bottom: 50px; }

  .lg-m-50px-lr {
    margin-left: 50px;
    margin-right: 50px; }

  .lg-m-50px-t {
    margin-top: 50px; }

  .lg-m-50px-l {
    margin-left: 50px; }

  .lg-m-50px-r {
    margin-right: 50px; }

  .lg-m-50px-b {
    margin-bottom: 50px; }

  .lg-p-50px {
    padding: 50px; }

  .lg-p-50px-tb {
    padding-top: 50px;
    padding-bottom: 50px; }

  .lg-p-50px-lr {
    padding-left: 50px;
    padding-right: 50px; }

  .lg-p-50px-t {
    padding-top: 50px; }

  .lg-p-50px-l {
    padding-left: 50px; }

  .lg-p-50px-r {
    padding-right: 50px; }

  .lg-p-50px-b {
    padding-bottom: 50px; }

  .lg-m-55px {
    margin: 55px; }

  .lg-m-55px-tb {
    margin-top: 55px;
    margin-bottom: 55px; }

  .lg-m-55px-lr {
    margin-left: 55px;
    margin-right: 55px; }

  .lg-m-55px-t {
    margin-top: 55px; }

  .lg-m-55px-l {
    margin-left: 55px; }

  .lg-m-55px-r {
    margin-right: 55px; }

  .lg-m-55px-b {
    margin-bottom: 55px; }

  .lg-p-55px {
    padding: 55px; }

  .lg-p-55px-tb {
    padding-top: 55px;
    padding-bottom: 55px; }

  .lg-p-55px-lr {
    padding-left: 55px;
    padding-right: 55px; }

  .lg-p-55px-t {
    padding-top: 55px; }

  .lg-p-55px-l {
    padding-left: 55px; }

  .lg-p-55px-r {
    padding-right: 55px; }

  .lg-p-55px-b {
    padding-bottom: 55px; }

  .lg-m-60px {
    margin: 60px; }

  .lg-m-60px-tb {
    margin-top: 60px;
    margin-bottom: 60px; }

  .lg-m-60px-lr {
    margin-left: 60px;
    margin-right: 60px; }

  .lg-m-60px-t {
    margin-top: 60px; }

  .lg-m-60px-l {
    margin-left: 60px; }

  .lg-m-60px-r {
    margin-right: 60px; }

  .lg-m-60px-b {
    margin-bottom: 60px; }

  .lg-p-60px {
    padding: 60px; }

  .lg-p-60px-tb {
    padding-top: 60px;
    padding-bottom: 60px; }

  .lg-p-60px-lr {
    padding-left: 60px;
    padding-right: 60px; }

  .lg-p-60px-t {
    padding-top: 60px; }

  .lg-p-60px-l {
    padding-left: 60px; }

  .lg-p-60px-r {
    padding-right: 60px; }

  .lg-p-60px-b {
    padding-bottom: 60px; }

  .lg-m-65px {
    margin: 65px; }

  .lg-m-65px-tb {
    margin-top: 65px;
    margin-bottom: 65px; }

  .lg-m-65px-lr {
    margin-left: 65px;
    margin-right: 65px; }

  .lg-m-65px-t {
    margin-top: 65px; }

  .lg-m-65px-l {
    margin-left: 65px; }

  .lg-m-65px-r {
    margin-right: 65px; }

  .lg-m-65px-b {
    margin-bottom: 65px; }

  .lg-p-65px {
    padding: 65px; }

  .lg-p-65px-tb {
    padding-top: 65px;
    padding-bottom: 65px; }

  .lg-p-65px-lr {
    padding-left: 65px;
    padding-right: 65px; }

  .lg-p-65px-t {
    padding-top: 65px; }

  .lg-p-65px-l {
    padding-left: 65px; }

  .lg-p-65px-r {
    padding-right: 65px; }

  .lg-p-65px-b {
    padding-bottom: 65px; }

  .lg-m-70px {
    margin: 70px; }

  .lg-m-70px-tb {
    margin-top: 70px;
    margin-bottom: 70px; }

  .lg-m-70px-lr {
    margin-left: 70px;
    margin-right: 70px; }

  .lg-m-70px-t {
    margin-top: 70px; }

  .lg-m-70px-l {
    margin-left: 70px; }

  .lg-m-70px-r {
    margin-right: 70px; }

  .lg-m-70px-b {
    margin-bottom: 70px; }

  .lg-p-70px {
    padding: 70px; }

  .lg-p-70px-tb {
    padding-top: 70px;
    padding-bottom: 70px; }

  .lg-p-70px-lr {
    padding-left: 70px;
    padding-right: 70px; }

  .lg-p-70px-t {
    padding-top: 70px; }

  .lg-p-70px-l {
    padding-left: 70px; }

  .lg-p-70px-r {
    padding-right: 70px; }

  .lg-p-70px-b {
    padding-bottom: 70px; }

  .lg-m-75px {
    margin: 75px; }

  .lg-m-75px-tb {
    margin-top: 75px;
    margin-bottom: 75px; }

  .lg-m-75px-lr {
    margin-left: 75px;
    margin-right: 75px; }

  .lg-m-75px-t {
    margin-top: 75px; }

  .lg-m-75px-l {
    margin-left: 75px; }

  .lg-m-75px-r {
    margin-right: 75px; }

  .lg-m-75px-b {
    margin-bottom: 75px; }

  .lg-p-75px {
    padding: 75px; }

  .lg-p-75px-tb {
    padding-top: 75px;
    padding-bottom: 75px; }

  .lg-p-75px-lr {
    padding-left: 75px;
    padding-right: 75px; }

  .lg-p-75px-t {
    padding-top: 75px; }

  .lg-p-75px-l {
    padding-left: 75px; }

  .lg-p-75px-r {
    padding-right: 75px; }

  .lg-p-75px-b {
    padding-bottom: 75px; }

  .lg-m-80px {
    margin: 80px; }

  .lg-m-80px-tb {
    margin-top: 80px;
    margin-bottom: 80px; }

  .lg-m-80px-lr {
    margin-left: 80px;
    margin-right: 80px; }

  .lg-m-80px-t {
    margin-top: 80px; }

  .lg-m-80px-l {
    margin-left: 80px; }

  .lg-m-80px-r {
    margin-right: 80px; }

  .lg-m-80px-b {
    margin-bottom: 80px; }

  .lg-p-80px {
    padding: 80px; }

  .lg-p-80px-tb {
    padding-top: 80px;
    padding-bottom: 80px; }

  .lg-p-80px-lr {
    padding-left: 80px;
    padding-right: 80px; }

  .lg-p-80px-t {
    padding-top: 80px; }

  .lg-p-80px-l {
    padding-left: 80px; }

  .lg-p-80px-r {
    padding-right: 80px; }

  .lg-p-80px-b {
    padding-bottom: 80px; }

  .lg-m-85px {
    margin: 85px; }

  .lg-m-85px-tb {
    margin-top: 85px;
    margin-bottom: 85px; }

  .lg-m-85px-lr {
    margin-left: 85px;
    margin-right: 85px; }

  .lg-m-85px-t {
    margin-top: 85px; }

  .lg-m-85px-l {
    margin-left: 85px; }

  .lg-m-85px-r {
    margin-right: 85px; }

  .lg-m-85px-b {
    margin-bottom: 85px; }

  .lg-p-85px {
    padding: 85px; }

  .lg-p-85px-tb {
    padding-top: 85px;
    padding-bottom: 85px; }

  .lg-p-85px-lr {
    padding-left: 85px;
    padding-right: 85px; }

  .lg-p-85px-t {
    padding-top: 85px; }

  .lg-p-85px-l {
    padding-left: 85px; }

  .lg-p-85px-r {
    padding-right: 85px; }

  .lg-p-85px-b {
    padding-bottom: 85px; }

  .lg-m-90px {
    margin: 90px; }

  .lg-m-90px-tb {
    margin-top: 90px;
    margin-bottom: 90px; }

  .lg-m-90px-lr {
    margin-left: 90px;
    margin-right: 90px; }

  .lg-m-90px-t {
    margin-top: 90px; }

  .lg-m-90px-l {
    margin-left: 90px; }

  .lg-m-90px-r {
    margin-right: 90px; }

  .lg-m-90px-b {
    margin-bottom: 90px; }

  .lg-p-90px {
    padding: 90px; }

  .lg-p-90px-tb {
    padding-top: 90px;
    padding-bottom: 90px; }

  .lg-p-90px-lr {
    padding-left: 90px;
    padding-right: 90px; }

  .lg-p-90px-t {
    padding-top: 90px; }

  .lg-p-90px-l {
    padding-left: 90px; }

  .lg-p-90px-r {
    padding-right: 90px; }

  .lg-p-90px-b {
    padding-bottom: 90px; }

  .lg-m-95px {
    margin: 95px; }

  .lg-m-95px-tb {
    margin-top: 95px;
    margin-bottom: 95px; }

  .lg-m-95px-lr {
    margin-left: 95px;
    margin-right: 95px; }

  .lg-m-95px-t {
    margin-top: 95px; }

  .lg-m-95px-l {
    margin-left: 95px; }

  .lg-m-95px-r {
    margin-right: 95px; }

  .lg-m-95px-b {
    margin-bottom: 95px; }

  .lg-p-95px {
    padding: 95px; }

  .lg-p-95px-tb {
    padding-top: 95px;
    padding-bottom: 95px; }

  .lg-p-95px-lr {
    padding-left: 95px;
    padding-right: 95px; }

  .lg-p-95px-t {
    padding-top: 95px; }

  .lg-p-95px-l {
    padding-left: 95px; }

  .lg-p-95px-r {
    padding-right: 95px; }

  .lg-p-95px-b {
    padding-bottom: 95px; }

  .lg-m-100px {
    margin: 100px; }

  .lg-m-100px-tb {
    margin-top: 100px;
    margin-bottom: 100px; }

  .lg-m-100px-lr {
    margin-left: 100px;
    margin-right: 100px; }

  .lg-m-100px-t {
    margin-top: 100px; }

  .lg-m-100px-l {
    margin-left: 100px; }

  .lg-m-100px-r {
    margin-right: 100px; }

  .lg-m-100px-b {
    margin-bottom: 100px; }

  .lg-p-100px {
    padding: 100px; }

  .lg-p-100px-tb {
    padding-top: 100px;
    padding-bottom: 100px; }

  .lg-p-100px-lr {
    padding-left: 100px;
    padding-right: 100px; }

  .lg-p-100px-t {
    padding-top: 100px; }

  .lg-p-100px-l {
    padding-left: 100px; }

  .lg-p-100px-r {
    padding-right: 100px; }

  .lg-p-100px-b {
    padding-bottom: 100px; } }
@media (max-width: 991px) {
  /* Font size
  --------------------*/
  .md-font-1px {
    font-size: 1px; }

  .md-font-2px {
    font-size: 2px; }

  .md-font-3px {
    font-size: 3px; }

  .md-font-4px {
    font-size: 4px; }

  .md-font-5px {
    font-size: 5px; }

  .md-font-6px {
    font-size: 6px; }

  .md-font-7px {
    font-size: 7px; }

  .md-font-8px {
    font-size: 8px; }

  .md-font-9px {
    font-size: 9px; }

  .md-font-10px {
    font-size: 10px; }

  .md-font-11px {
    font-size: 11px; }

  .md-font-12px {
    font-size: 12px; }

  .md-font-13px {
    font-size: 13px; }

  .md-font-14px {
    font-size: 14px; }

  .md-font-15px {
    font-size: 15px; }

  .md-font-16px {
    font-size: 16px; }

  .md-font-17px {
    font-size: 17px; }

  .md-font-18px {
    font-size: 18px; }

  .md-font-19px {
    font-size: 19px; }

  .md-font-20px {
    font-size: 20px; }

  .md-font-21px {
    font-size: 21px; }

  .md-font-22px {
    font-size: 22px; }

  .md-font-23px {
    font-size: 23px; }

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

  .md-font-25px {
    font-size: 25px; }

  .md-font-26px {
    font-size: 26px; }

  .md-font-27px {
    font-size: 27px; }

  .md-font-28px {
    font-size: 28px; }

  .md-font-29px {
    font-size: 29px; }

  .md-font-30px {
    font-size: 30px; }

  .md-font-31px {
    font-size: 31px; }

  .md-font-32px {
    font-size: 32px; }

  .md-font-33px {
    font-size: 33px; }

  .md-font-34px {
    font-size: 34px; }

  .md-font-35px {
    font-size: 35px; }

  .md-font-36px {
    font-size: 36px; }

  .md-font-37px {
    font-size: 37px; }

  .md-font-38px {
    font-size: 38px; }

  .md-font-39px {
    font-size: 39px; }

  .md-font-40px {
    font-size: 40px; }

  .md-font-41px {
    font-size: 41px; }

  .md-font-42px {
    font-size: 42px; }

  .md-font-43px {
    font-size: 43px; }

  .md-font-44px {
    font-size: 44px; }

  .md-font-45px {
    font-size: 45px; }

  .md-font-46px {
    font-size: 46px; }

  .md-font-47px {
    font-size: 47px; }

  .md-font-48px {
    font-size: 48px; }

  .md-font-49px {
    font-size: 49px; }

  .md-font-50px {
    font-size: 50px; }

  .md-font-51px {
    font-size: 51px; }

  .md-font-52px {
    font-size: 52px; }

  .md-font-53px {
    font-size: 53px; }

  .md-font-54px {
    font-size: 54px; }

  .md-font-55px {
    font-size: 55px; }

  .md-font-56px {
    font-size: 56px; }

  .md-font-57px {
    font-size: 57px; }

  .md-font-58px {
    font-size: 58px; }

  .md-font-59px {
    font-size: 59px; }

  .md-font-60px {
    font-size: 60px; }

  .md-font-61px {
    font-size: 61px; }

  .md-font-62px {
    font-size: 62px; }

  .md-font-63px {
    font-size: 63px; }

  .md-font-64px {
    font-size: 64px; }

  .md-font-65px {
    font-size: 65px; }

  .md-font-66px {
    font-size: 66px; }

  .md-font-67px {
    font-size: 67px; }

  .md-font-68px {
    font-size: 68px; }

  .md-font-69px {
    font-size: 69px; }

  .md-font-70px {
    font-size: 70px; }

  .md-font-71px {
    font-size: 71px; }

  .md-font-72px {
    font-size: 72px; }

  .md-font-73px {
    font-size: 73px; }

  .md-font-74px {
    font-size: 74px; }

  .md-font-75px {
    font-size: 75px; }

  .md-font-76px {
    font-size: 76px; }

  .md-font-77px {
    font-size: 77px; }

  .md-font-78px {
    font-size: 78px; }

  .md-font-79px {
    font-size: 79px; }

  .md-font-80px {
    font-size: 80px; }

  .md-font-81px {
    font-size: 81px; }

  .md-font-82px {
    font-size: 82px; }

  .md-font-83px {
    font-size: 83px; }

  .md-font-84px {
    font-size: 84px; }

  .md-font-85px {
    font-size: 85px; }

  .md-font-86px {
    font-size: 86px; }

  .md-font-87px {
    font-size: 87px; }

  .md-font-88px {
    font-size: 88px; }

  .md-font-89px {
    font-size: 89px; }

  .md-font-90px {
    font-size: 90px; }

  .md-font-91px {
    font-size: 91px; }

  .md-font-92px {
    font-size: 92px; }

  .md-font-93px {
    font-size: 93px; }

  .md-font-94px {
    font-size: 94px; }

  .md-font-95px {
    font-size: 95px; }

  .md-font-96px {
    font-size: 96px; }

  .md-font-97px {
    font-size: 97px; }

  .md-font-98px {
    font-size: 98px; }

  .md-font-99px {
    font-size: 99px; }

  .md-font-100px {
    font-size: 100px; }

  .md-font-101px {
    font-size: 101px; }

  .md-font-102px {
    font-size: 102px; }

  .md-font-103px {
    font-size: 103px; }

  .md-font-104px {
    font-size: 104px; }

  .md-font-105px {
    font-size: 105px; }

  .md-font-106px {
    font-size: 106px; }

  .md-font-107px {
    font-size: 107px; }

  .md-font-108px {
    font-size: 108px; }

  .md-font-109px {
    font-size: 109px; }

  .md-font-110px {
    font-size: 110px; }

  .md-font-111px {
    font-size: 111px; }

  .md-font-112px {
    font-size: 112px; }

  .md-font-113px {
    font-size: 113px; }

  .md-font-114px {
    font-size: 114px; }

  .md-font-115px {
    font-size: 115px; }

  .md-font-116px {
    font-size: 116px; }

  .md-font-117px {
    font-size: 117px; }

  .md-font-118px {
    font-size: 118px; }

  .md-font-119px {
    font-size: 119px; }

  .md-font-120px {
    font-size: 120px; }

  .md-font-121px {
    font-size: 121px; }

  .md-font-122px {
    font-size: 122px; }

  .md-font-123px {
    font-size: 123px; }

  .md-font-124px {
    font-size: 124px; }

  .md-font-125px {
    font-size: 125px; }

  .md-font-126px {
    font-size: 126px; }

  .md-font-127px {
    font-size: 127px; }

  .md-font-128px {
    font-size: 128px; }

  .md-font-129px {
    font-size: 129px; }

  .md-font-130px {
    font-size: 130px; }

  /* Margin Padding
  --------------------*/
  .md-m-0px {
    margin: 0px; }

  .md-m-0px-tb {
    margin-top: 0px;
    margin-bottom: 0px; }

  .md-m-0px-lr {
    margin-left: 0px;
    margin-right: 0px; }

  .md-m-0px-t {
    margin-top: 0px; }

  .md-m-0px-l {
    margin-left: 0px; }

  .md-m-0px-r {
    margin-right: 0px; }

  .md-m-0px-b {
    margin-bottom: 0px; }

  .md-p-0px {
    padding: 0px; }

  .md-p-0px-tb {
    padding-top: 0px;
    padding-bottom: 0px; }

  .md-p-0px-lr {
    padding-left: 0px;
    padding-right: 0px; }

  .md-p-0px-t {
    padding-top: 0px; }

  .md-p-0px-l {
    padding-left: 0px; }

  .md-p-0px-r {
    padding-right: 0px; }

  .md-p-0px-b {
    padding-bottom: 0px; }

  .md-m-5px {
    margin: 5px; }

  .md-m-5px-tb {
    margin-top: 5px;
    margin-bottom: 5px; }

  .md-m-5px-lr {
    margin-left: 5px;
    margin-right: 5px; }

  .md-m-5px-t {
    margin-top: 5px; }

  .md-m-5px-l {
    margin-left: 5px; }

  .md-m-5px-r {
    margin-right: 5px; }

  .md-m-5px-b {
    margin-bottom: 5px; }

  .md-p-5px {
    padding: 5px; }

  .md-p-5px-tb {
    padding-top: 5px;
    padding-bottom: 5px; }

  .md-p-5px-lr {
    padding-left: 5px;
    padding-right: 5px; }

  .md-p-5px-t {
    padding-top: 5px; }

  .md-p-5px-l {
    padding-left: 5px; }

  .md-p-5px-r {
    padding-right: 5px; }

  .md-p-5px-b {
    padding-bottom: 5px; }

  .md-m-10px {
    margin: 10px; }

  .md-m-10px-tb {
    margin-top: 10px;
    margin-bottom: 10px; }

  .md-m-10px-lr {
    margin-left: 10px;
    margin-right: 10px; }

  .md-m-10px-t {
    margin-top: 10px; }

  .md-m-10px-l {
    margin-left: 10px; }

  .md-m-10px-r {
    margin-right: 10px; }

  .md-m-10px-b {
    margin-bottom: 10px; }

  .md-p-10px {
    padding: 10px; }

  .md-p-10px-tb {
    padding-top: 10px;
    padding-bottom: 10px; }

  .md-p-10px-lr {
    padding-left: 10px;
    padding-right: 10px; }

  .md-p-10px-t {
    padding-top: 10px; }

  .md-p-10px-l {
    padding-left: 10px; }

  .md-p-10px-r {
    padding-right: 10px; }

  .md-p-10px-b {
    padding-bottom: 10px; }

  .md-m-15px {
    margin: 15px; }

  .md-m-15px-tb {
    margin-top: 15px;
    margin-bottom: 15px; }

  .md-m-15px-lr {
    margin-left: 15px;
    margin-right: 15px; }

  .md-m-15px-t {
    margin-top: 15px; }

  .md-m-15px-l {
    margin-left: 15px; }

  .md-m-15px-r {
    margin-right: 15px; }

  .md-m-15px-b {
    margin-bottom: 15px; }

  .md-p-15px {
    padding: 15px; }

  .md-p-15px-tb {
    padding-top: 15px;
    padding-bottom: 15px; }

  .md-p-15px-lr {
    padding-left: 15px;
    padding-right: 15px; }

  .md-p-15px-t {
    padding-top: 15px; }

  .md-p-15px-l {
    padding-left: 15px; }

  .md-p-15px-r {
    padding-right: 15px; }

  .md-p-15px-b {
    padding-bottom: 15px; }

  .md-m-20px {
    margin: 20px; }

  .md-m-20px-tb {
    margin-top: 20px;
    margin-bottom: 20px; }

  .md-m-20px-lr {
    margin-left: 20px;
    margin-right: 20px; }

  .md-m-20px-t {
    margin-top: 20px; }

  .md-m-20px-l {
    margin-left: 20px; }

  .md-m-20px-r {
    margin-right: 20px; }

  .md-m-20px-b {
    margin-bottom: 20px; }

  .md-p-20px {
    padding: 20px; }

  .md-p-20px-tb {
    padding-top: 20px;
    padding-bottom: 20px; }

  .md-p-20px-lr {
    padding-left: 20px;
    padding-right: 20px; }

  .md-p-20px-t {
    padding-top: 20px; }

  .md-p-20px-l {
    padding-left: 20px; }

  .md-p-20px-r {
    padding-right: 20px; }

  .md-p-20px-b {
    padding-bottom: 20px; }

  .md-m-25px {
    margin: 25px; }

  .md-m-25px-tb {
    margin-top: 25px;
    margin-bottom: 25px; }

  .md-m-25px-lr {
    margin-left: 25px;
    margin-right: 25px; }

  .md-m-25px-t {
    margin-top: 25px; }

  .md-m-25px-l {
    margin-left: 25px; }

  .md-m-25px-r {
    margin-right: 25px; }

  .md-m-25px-b {
    margin-bottom: 25px; }

  .md-p-25px {
    padding: 25px; }

  .md-p-25px-tb {
    padding-top: 25px;
    padding-bottom: 25px; }

  .md-p-25px-lr {
    padding-left: 25px;
    padding-right: 25px; }

  .md-p-25px-t {
    padding-top: 25px; }

  .md-p-25px-l {
    padding-left: 25px; }

  .md-p-25px-r {
    padding-right: 25px; }

  .md-p-25px-b {
    padding-bottom: 25px; }

  .md-m-30px {
    margin: 30px; }

  .md-m-30px-tb {
    margin-top: 30px;
    margin-bottom: 30px; }

  .md-m-30px-lr {
    margin-left: 30px;
    margin-right: 30px; }

  .md-m-30px-t {
    margin-top: 30px; }

  .md-m-30px-l {
    margin-left: 30px; }

  .md-m-30px-r {
    margin-right: 30px; }

  .md-m-30px-b {
    margin-bottom: 30px; }

  .md-p-30px {
    padding: 30px; }

  .md-p-30px-tb {
    padding-top: 30px;
    padding-bottom: 30px; }

  .md-p-30px-lr {
    padding-left: 30px;
    padding-right: 30px; }

  .md-p-30px-t {
    padding-top: 30px; }

  .md-p-30px-l {
    padding-left: 30px; }

  .md-p-30px-r {
    padding-right: 30px; }

  .md-p-30px-b {
    padding-bottom: 30px; }

  .md-m-35px {
    margin: 35px; }

  .md-m-35px-tb {
    margin-top: 35px;
    margin-bottom: 35px; }

  .md-m-35px-lr {
    margin-left: 35px;
    margin-right: 35px; }

  .md-m-35px-t {
    margin-top: 35px; }

  .md-m-35px-l {
    margin-left: 35px; }

  .md-m-35px-r {
    margin-right: 35px; }

  .md-m-35px-b {
    margin-bottom: 35px; }

  .md-p-35px {
    padding: 35px; }

  .md-p-35px-tb {
    padding-top: 35px;
    padding-bottom: 35px; }

  .md-p-35px-lr {
    padding-left: 35px;
    padding-right: 35px; }

  .md-p-35px-t {
    padding-top: 35px; }

  .md-p-35px-l {
    padding-left: 35px; }

  .md-p-35px-r {
    padding-right: 35px; }

  .md-p-35px-b {
    padding-bottom: 35px; }

  .md-m-40px {
    margin: 40px; }

  .md-m-40px-tb {
    margin-top: 40px;
    margin-bottom: 40px; }

  .md-m-40px-lr {
    margin-left: 40px;
    margin-right: 40px; }

  .md-m-40px-t {
    margin-top: 40px; }

  .md-m-40px-l {
    margin-left: 40px; }

  .md-m-40px-r {
    margin-right: 40px; }

  .md-m-40px-b {
    margin-bottom: 40px; }

  .md-p-40px {
    padding: 40px; }

  .md-p-40px-tb {
    padding-top: 40px;
    padding-bottom: 40px; }

  .md-p-40px-lr {
    padding-left: 40px;
    padding-right: 40px; }

  .md-p-40px-t {
    padding-top: 40px; }

  .md-p-40px-l {
    padding-left: 40px; }

  .md-p-40px-r {
    padding-right: 40px; }

  .md-p-40px-b {
    padding-bottom: 40px; }

  .md-m-45px {
    margin: 45px; }

  .md-m-45px-tb {
    margin-top: 45px;
    margin-bottom: 45px; }

  .md-m-45px-lr {
    margin-left: 45px;
    margin-right: 45px; }

  .md-m-45px-t {
    margin-top: 45px; }

  .md-m-45px-l {
    margin-left: 45px; }

  .md-m-45px-r {
    margin-right: 45px; }

  .md-m-45px-b {
    margin-bottom: 45px; }

  .md-p-45px {
    padding: 45px; }

  .md-p-45px-tb {
    padding-top: 45px;
    padding-bottom: 45px; }

  .md-p-45px-lr {
    padding-left: 45px;
    padding-right: 45px; }

  .md-p-45px-t {
    padding-top: 45px; }

  .md-p-45px-l {
    padding-left: 45px; }

  .md-p-45px-r {
    padding-right: 45px; }

  .md-p-45px-b {
    padding-bottom: 45px; }

  .md-m-50px {
    margin: 50px; }

  .md-m-50px-tb {
    margin-top: 50px;
    margin-bottom: 50px; }

  .md-m-50px-lr {
    margin-left: 50px;
    margin-right: 50px; }

  .md-m-50px-t {
    margin-top: 50px; }

  .md-m-50px-l {
    margin-left: 50px; }

  .md-m-50px-r {
    margin-right: 50px; }

  .md-m-50px-b {
    margin-bottom: 50px; }

  .md-p-50px {
    padding: 50px; }

  .md-p-50px-tb {
    padding-top: 50px;
    padding-bottom: 50px; }

  .md-p-50px-lr {
    padding-left: 50px;
    padding-right: 50px; }

  .md-p-50px-t {
    padding-top: 50px; }

  .md-p-50px-l {
    padding-left: 50px; }

  .md-p-50px-r {
    padding-right: 50px; }

  .md-p-50px-b {
    padding-bottom: 50px; }

  .md-m-55px {
    margin: 55px; }

  .md-m-55px-tb {
    margin-top: 55px;
    margin-bottom: 55px; }

  .md-m-55px-lr {
    margin-left: 55px;
    margin-right: 55px; }

  .md-m-55px-t {
    margin-top: 55px; }

  .md-m-55px-l {
    margin-left: 55px; }

  .md-m-55px-r {
    margin-right: 55px; }

  .md-m-55px-b {
    margin-bottom: 55px; }

  .md-p-55px {
    padding: 55px; }

  .md-p-55px-tb {
    padding-top: 55px;
    padding-bottom: 55px; }

  .md-p-55px-lr {
    padding-left: 55px;
    padding-right: 55px; }

  .md-p-55px-t {
    padding-top: 55px; }

  .md-p-55px-l {
    padding-left: 55px; }

  .md-p-55px-r {
    padding-right: 55px; }

  .md-p-55px-b {
    padding-bottom: 55px; }

  .md-m-60px {
    margin: 60px; }

  .md-m-60px-tb {
    margin-top: 60px;
    margin-bottom: 60px; }

  .md-m-60px-lr {
    margin-left: 60px;
    margin-right: 60px; }

  .md-m-60px-t {
    margin-top: 60px; }

  .md-m-60px-l {
    margin-left: 60px; }

  .md-m-60px-r {
    margin-right: 60px; }

  .md-m-60px-b {
    margin-bottom: 60px; }

  .md-p-60px {
    padding: 60px; }

  .md-p-60px-tb {
    padding-top: 60px;
    padding-bottom: 60px; }

  .md-p-60px-lr {
    padding-left: 60px;
    padding-right: 60px; }

  .md-p-60px-t {
    padding-top: 60px; }

  .md-p-60px-l {
    padding-left: 60px; }

  .md-p-60px-r {
    padding-right: 60px; }

  .md-p-60px-b {
    padding-bottom: 60px; }

  .md-m-65px {
    margin: 65px; }

  .md-m-65px-tb {
    margin-top: 65px;
    margin-bottom: 65px; }

  .md-m-65px-lr {
    margin-left: 65px;
    margin-right: 65px; }

  .md-m-65px-t {
    margin-top: 65px; }

  .md-m-65px-l {
    margin-left: 65px; }

  .md-m-65px-r {
    margin-right: 65px; }

  .md-m-65px-b {
    margin-bottom: 65px; }

  .md-p-65px {
    padding: 65px; }

  .md-p-65px-tb {
    padding-top: 65px;
    padding-bottom: 65px; }

  .md-p-65px-lr {
    padding-left: 65px;
    padding-right: 65px; }

  .md-p-65px-t {
    padding-top: 65px; }

  .md-p-65px-l {
    padding-left: 65px; }

  .md-p-65px-r {
    padding-right: 65px; }

  .md-p-65px-b {
    padding-bottom: 65px; }

  .md-m-70px {
    margin: 70px; }

  .md-m-70px-tb {
    margin-top: 70px;
    margin-bottom: 70px; }

  .md-m-70px-lr {
    margin-left: 70px;
    margin-right: 70px; }

  .md-m-70px-t {
    margin-top: 70px; }

  .md-m-70px-l {
    margin-left: 70px; }

  .md-m-70px-r {
    margin-right: 70px; }

  .md-m-70px-b {
    margin-bottom: 70px; }

  .md-p-70px {
    padding: 70px; }

  .md-p-70px-tb {
    padding-top: 70px;
    padding-bottom: 70px; }

  .md-p-70px-lr {
    padding-left: 70px;
    padding-right: 70px; }

  .md-p-70px-t {
    padding-top: 70px; }

  .md-p-70px-l {
    padding-left: 70px; }

  .md-p-70px-r {
    padding-right: 70px; }

  .md-p-70px-b {
    padding-bottom: 70px; }

  .md-m-75px {
    margin: 75px; }

  .md-m-75px-tb {
    margin-top: 75px;
    margin-bottom: 75px; }

  .md-m-75px-lr {
    margin-left: 75px;
    margin-right: 75px; }

  .md-m-75px-t {
    margin-top: 75px; }

  .md-m-75px-l {
    margin-left: 75px; }

  .md-m-75px-r {
    margin-right: 75px; }

  .md-m-75px-b {
    margin-bottom: 75px; }

  .md-p-75px {
    padding: 75px; }

  .md-p-75px-tb {
    padding-top: 75px;
    padding-bottom: 75px; }

  .md-p-75px-lr {
    padding-left: 75px;
    padding-right: 75px; }

  .md-p-75px-t {
    padding-top: 75px; }

  .md-p-75px-l {
    padding-left: 75px; }

  .md-p-75px-r {
    padding-right: 75px; }

  .md-p-75px-b {
    padding-bottom: 75px; }

  .md-m-80px {
    margin: 80px; }

  .md-m-80px-tb {
    margin-top: 80px;
    margin-bottom: 80px; }

  .md-m-80px-lr {
    margin-left: 80px;
    margin-right: 80px; }

  .md-m-80px-t {
    margin-top: 80px; }

  .md-m-80px-l {
    margin-left: 80px; }

  .md-m-80px-r {
    margin-right: 80px; }

  .md-m-80px-b {
    margin-bottom: 80px; }

  .md-p-80px {
    padding: 80px; }

  .md-p-80px-tb {
    padding-top: 80px;
    padding-bottom: 80px; }

  .md-p-80px-lr {
    padding-left: 80px;
    padding-right: 80px; }

  .md-p-80px-t {
    padding-top: 80px; }

  .md-p-80px-l {
    padding-left: 80px; }

  .md-p-80px-r {
    padding-right: 80px; }

  .md-p-80px-b {
    padding-bottom: 80px; }

  .md-m-85px {
    margin: 85px; }

  .md-m-85px-tb {
    margin-top: 85px;
    margin-bottom: 85px; }

  .md-m-85px-lr {
    margin-left: 85px;
    margin-right: 85px; }

  .md-m-85px-t {
    margin-top: 85px; }

  .md-m-85px-l {
    margin-left: 85px; }

  .md-m-85px-r {
    margin-right: 85px; }

  .md-m-85px-b {
    margin-bottom: 85px; }

  .md-p-85px {
    padding: 85px; }

  .md-p-85px-tb {
    padding-top: 85px;
    padding-bottom: 85px; }

  .md-p-85px-lr {
    padding-left: 85px;
    padding-right: 85px; }

  .md-p-85px-t {
    padding-top: 85px; }

  .md-p-85px-l {
    padding-left: 85px; }

  .md-p-85px-r {
    padding-right: 85px; }

  .md-p-85px-b {
    padding-bottom: 85px; }

  .md-m-90px {
    margin: 90px; }

  .md-m-90px-tb {
    margin-top: 90px;
    margin-bottom: 90px; }

  .md-m-90px-lr {
    margin-left: 90px;
    margin-right: 90px; }

  .md-m-90px-t {
    margin-top: 90px; }

  .md-m-90px-l {
    margin-left: 90px; }

  .md-m-90px-r {
    margin-right: 90px; }

  .md-m-90px-b {
    margin-bottom: 90px; }

  .md-p-90px {
    padding: 90px; }

  .md-p-90px-tb {
    padding-top: 90px;
    padding-bottom: 90px; }

  .md-p-90px-lr {
    padding-left: 90px;
    padding-right: 90px; }

  .md-p-90px-t {
    padding-top: 90px; }

  .md-p-90px-l {
    padding-left: 90px; }

  .md-p-90px-r {
    padding-right: 90px; }

  .md-p-90px-b {
    padding-bottom: 90px; }

  .md-m-95px {
    margin: 95px; }

  .md-m-95px-tb {
    margin-top: 95px;
    margin-bottom: 95px; }

  .md-m-95px-lr {
    margin-left: 95px;
    margin-right: 95px; }

  .md-m-95px-t {
    margin-top: 95px; }

  .md-m-95px-l {
    margin-left: 95px; }

  .md-m-95px-r {
    margin-right: 95px; }

  .md-m-95px-b {
    margin-bottom: 95px; }

  .md-p-95px {
    padding: 95px; }

  .md-p-95px-tb {
    padding-top: 95px;
    padding-bottom: 95px; }

  .md-p-95px-lr {
    padding-left: 95px;
    padding-right: 95px; }

  .md-p-95px-t {
    padding-top: 95px; }

  .md-p-95px-l {
    padding-left: 95px; }

  .md-p-95px-r {
    padding-right: 95px; }

  .md-p-95px-b {
    padding-bottom: 95px; }

  .md-m-100px {
    margin: 100px; }

  .md-m-100px-tb {
    margin-top: 100px;
    margin-bottom: 100px; }

  .md-m-100px-lr {
    margin-left: 100px;
    margin-right: 100px; }

  .md-m-100px-t {
    margin-top: 100px; }

  .md-m-100px-l {
    margin-left: 100px; }

  .md-m-100px-r {
    margin-right: 100px; }

  .md-m-100px-b {
    margin-bottom: 100px; }

  .md-p-100px {
    padding: 100px; }

  .md-p-100px-tb {
    padding-top: 100px;
    padding-bottom: 100px; }

  .md-p-100px-lr {
    padding-left: 100px;
    padding-right: 100px; }

  .md-p-100px-t {
    padding-top: 100px; }

  .md-p-100px-l {
    padding-left: 100px; }

  .md-p-100px-r {
    padding-right: 100px; }

  .md-p-100px-b {
    padding-bottom: 100px; } }
@media (max-width: 767px) {
  /* Font size
  --------------------*/
  .sm-font-1px {
    font-size: 1px; }

  .sm-font-2px {
    font-size: 2px; }

  .sm-font-3px {
    font-size: 3px; }

  .sm-font-4px {
    font-size: 4px; }

  .sm-font-5px {
    font-size: 5px; }

  .sm-font-6px {
    font-size: 6px; }

  .sm-font-7px {
    font-size: 7px; }

  .sm-font-8px {
    font-size: 8px; }

  .sm-font-9px {
    font-size: 9px; }

  .sm-font-10px {
    font-size: 10px; }

  .sm-font-11px {
    font-size: 11px; }

  .sm-font-12px {
    font-size: 12px; }

  .sm-font-13px {
    font-size: 13px; }

  .sm-font-14px {
    font-size: 14px; }

  .sm-font-15px {
    font-size: 15px; }

  .sm-font-16px {
    font-size: 16px; }

  .sm-font-17px {
    font-size: 17px; }

  .sm-font-18px {
    font-size: 18px; }

  .sm-font-19px {
    font-size: 19px; }

  .sm-font-20px {
    font-size: 20px; }

  .sm-font-21px {
    font-size: 21px; }

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

  .sm-font-23px {
    font-size: 23px; }

  .sm-font-24px {
    font-size: 24px; }

  .sm-font-25px {
    font-size: 25px; }

  .sm-font-26px {
    font-size: 26px; }

  .sm-font-27px {
    font-size: 27px; }

  .sm-font-28px {
    font-size: 28px; }

  .sm-font-29px {
    font-size: 29px; }

  .sm-font-30px {
    font-size: 30px; }

  .sm-font-31px {
    font-size: 31px; }

  .sm-font-32px {
    font-size: 32px; }

  .sm-font-33px {
    font-size: 33px; }

  .sm-font-34px {
    font-size: 34px; }

  .sm-font-35px {
    font-size: 35px; }

  .sm-font-36px {
    font-size: 36px; }

  .sm-font-37px {
    font-size: 37px; }

  .sm-font-38px {
    font-size: 38px; }

  .sm-font-39px {
    font-size: 39px; }

  .sm-font-40px {
    font-size: 40px; }

  .sm-font-41px {
    font-size: 41px; }

  .sm-font-42px {
    font-size: 42px; }

  .sm-font-43px {
    font-size: 43px; }

  .sm-font-44px {
    font-size: 44px; }

  .sm-font-45px {
    font-size: 45px; }

  .sm-font-46px {
    font-size: 46px; }

  .sm-font-47px {
    font-size: 47px; }

  .sm-font-48px {
    font-size: 48px; }

  .sm-font-49px {
    font-size: 49px; }

  .sm-font-50px {
    font-size: 50px; }

  .sm-font-51px {
    font-size: 51px; }

  .sm-font-52px {
    font-size: 52px; }

  .sm-font-53px {
    font-size: 53px; }

  .sm-font-54px {
    font-size: 54px; }

  .sm-font-55px {
    font-size: 55px; }

  .sm-font-56px {
    font-size: 56px; }

  .sm-font-57px {
    font-size: 57px; }

  .sm-font-58px {
    font-size: 58px; }

  .sm-font-59px {
    font-size: 59px; }

  .sm-font-60px {
    font-size: 60px; }

  .sm-font-61px {
    font-size: 61px; }

  .sm-font-62px {
    font-size: 62px; }

  .sm-font-63px {
    font-size: 63px; }

  .sm-font-64px {
    font-size: 64px; }

  .sm-font-65px {
    font-size: 65px; }

  .sm-font-66px {
    font-size: 66px; }

  .sm-font-67px {
    font-size: 67px; }

  .sm-font-68px {
    font-size: 68px; }

  .sm-font-69px {
    font-size: 69px; }

  .sm-font-70px {
    font-size: 70px; }

  .sm-font-71px {
    font-size: 71px; }

  .sm-font-72px {
    font-size: 72px; }

  .sm-font-73px {
    font-size: 73px; }

  .sm-font-74px {
    font-size: 74px; }

  .sm-font-75px {
    font-size: 75px; }

  .sm-font-76px {
    font-size: 76px; }

  .sm-font-77px {
    font-size: 77px; }

  .sm-font-78px {
    font-size: 78px; }

  .sm-font-79px {
    font-size: 79px; }

  .sm-font-80px {
    font-size: 80px; }

  .sm-font-81px {
    font-size: 81px; }

  .sm-font-82px {
    font-size: 82px; }

  .sm-font-83px {
    font-size: 83px; }

  .sm-font-84px {
    font-size: 84px; }

  .sm-font-85px {
    font-size: 85px; }

  .sm-font-86px {
    font-size: 86px; }

  .sm-font-87px {
    font-size: 87px; }

  .sm-font-88px {
    font-size: 88px; }

  .sm-font-89px {
    font-size: 89px; }

  .sm-font-90px {
    font-size: 90px; }

  .sm-font-91px {
    font-size: 91px; }

  .sm-font-92px {
    font-size: 92px; }

  .sm-font-93px {
    font-size: 93px; }

  .sm-font-94px {
    font-size: 94px; }

  .sm-font-95px {
    font-size: 95px; }

  .sm-font-96px {
    font-size: 96px; }

  .sm-font-97px {
    font-size: 97px; }

  .sm-font-98px {
    font-size: 98px; }

  .sm-font-99px {
    font-size: 99px; }

  .sm-font-100px {
    font-size: 100px; }

  .sm-font-101px {
    font-size: 101px; }

  .sm-font-102px {
    font-size: 102px; }

  .sm-font-103px {
    font-size: 103px; }

  .sm-font-104px {
    font-size: 104px; }

  .sm-font-105px {
    font-size: 105px; }

  .sm-font-106px {
    font-size: 106px; }

  .sm-font-107px {
    font-size: 107px; }

  .sm-font-108px {
    font-size: 108px; }

  .sm-font-109px {
    font-size: 109px; }

  .sm-font-110px {
    font-size: 110px; }

  .sm-font-111px {
    font-size: 111px; }

  .sm-font-112px {
    font-size: 112px; }

  .sm-font-113px {
    font-size: 113px; }

  .sm-font-114px {
    font-size: 114px; }

  .sm-font-115px {
    font-size: 115px; }

  .sm-font-116px {
    font-size: 116px; }

  .sm-font-117px {
    font-size: 117px; }

  .sm-font-118px {
    font-size: 118px; }

  .sm-font-119px {
    font-size: 119px; }

  .sm-font-120px {
    font-size: 120px; }

  .sm-font-121px {
    font-size: 121px; }

  .sm-font-122px {
    font-size: 122px; }

  .sm-font-123px {
    font-size: 123px; }

  .sm-font-124px {
    font-size: 124px; }

  .sm-font-125px {
    font-size: 125px; }

  .sm-font-126px {
    font-size: 126px; }

  .sm-font-127px {
    font-size: 127px; }

  .sm-font-128px {
    font-size: 128px; }

  .sm-font-129px {
    font-size: 129px; }

  .sm-font-130px {
    font-size: 130px; }

  /* Margin Padding
  --------------------*/
  .sm-m-0px {
    margin: 0px; }

  .sm-m-0px-tb {
    margin-top: 0px;
    margin-bottom: 0px; }

  .sm-m-0px-lr {
    margin-left: 0px;
    margin-right: 0px; }

  .sm-m-0px-t {
    margin-top: 0px; }

  .sm-m-0px-l {
    margin-left: 0px; }

  .sm-m-0px-r {
    margin-right: 0px; }

  .sm-m-0px-b {
    margin-bottom: 0px; }

  .sm-p-0px {
    padding: 0px; }

  .sm-p-0px-tb {
    padding-top: 0px;
    padding-bottom: 0px; }

  .sm-p-0px-lr {
    padding-left: 0px;
    padding-right: 0px; }

  .sm-p-0px-t {
    padding-top: 0px; }

  .sm-p-0px-l {
    padding-left: 0px; }

  .sm-p-0px-r {
    padding-right: 0px; }

  .sm-p-0px-b {
    padding-bottom: 0px; }

  .sm-m-5px {
    margin: 5px; }

  .sm-m-5px-tb {
    margin-top: 5px;
    margin-bottom: 5px; }

  .sm-m-5px-lr {
    margin-left: 5px;
    margin-right: 5px; }

  .sm-m-5px-t {
    margin-top: 5px; }

  .sm-m-5px-l {
    margin-left: 5px; }

  .sm-m-5px-r {
    margin-right: 5px; }

  .sm-m-5px-b {
    margin-bottom: 5px; }

  .sm-p-5px {
    padding: 5px; }

  .sm-p-5px-tb {
    padding-top: 5px;
    padding-bottom: 5px; }

  .sm-p-5px-lr {
    padding-left: 5px;
    padding-right: 5px; }

  .sm-p-5px-t {
    padding-top: 5px; }

  .sm-p-5px-l {
    padding-left: 5px; }

  .sm-p-5px-r {
    padding-right: 5px; }

  .sm-p-5px-b {
    padding-bottom: 5px; }

  .sm-m-10px {
    margin: 10px; }

  .sm-m-10px-tb {
    margin-top: 10px;
    margin-bottom: 10px; }

  .sm-m-10px-lr {
    margin-left: 10px;
    margin-right: 10px; }

  .sm-m-10px-t {
    margin-top: 10px; }

  .sm-m-10px-l {
    margin-left: 10px; }

  .sm-m-10px-r {
    margin-right: 10px; }

  .sm-m-10px-b {
    margin-bottom: 10px; }

  .sm-p-10px {
    padding: 10px; }

  .sm-p-10px-tb {
    padding-top: 10px;
    padding-bottom: 10px; }

  .sm-p-10px-lr {
    padding-left: 10px;
    padding-right: 10px; }

  .sm-p-10px-t {
    padding-top: 10px; }

  .sm-p-10px-l {
    padding-left: 10px; }

  .sm-p-10px-r {
    padding-right: 10px; }

  .sm-p-10px-b {
    padding-bottom: 10px; }

  .sm-m-15px {
    margin: 15px; }

  .sm-m-15px-tb {
    margin-top: 15px;
    margin-bottom: 15px; }

  .sm-m-15px-lr {
    margin-left: 15px;
    margin-right: 15px; }

  .sm-m-15px-t {
    margin-top: 15px; }

  .sm-m-15px-l {
    margin-left: 15px; }

  .sm-m-15px-r {
    margin-right: 15px; }

  .sm-m-15px-b {
    margin-bottom: 15px; }

  .sm-p-15px {
    padding: 15px; }

  .sm-p-15px-tb {
    padding-top: 15px;
    padding-bottom: 15px; }

  .sm-p-15px-lr {
    padding-left: 15px;
    padding-right: 15px; }

  .sm-p-15px-t {
    padding-top: 15px; }

  .sm-p-15px-l {
    padding-left: 15px; }

  .sm-p-15px-r {
    padding-right: 15px; }

  .sm-p-15px-b {
    padding-bottom: 15px; }

  .sm-m-20px {
    margin: 20px; }

  .sm-m-20px-tb {
    margin-top: 20px;
    margin-bottom: 20px; }

  .sm-m-20px-lr {
    margin-left: 20px;
    margin-right: 20px; }

  .sm-m-20px-t {
    margin-top: 20px; }

  .sm-m-20px-l {
    margin-left: 20px; }

  .sm-m-20px-r {
    margin-right: 20px; }

  .sm-m-20px-b {
    margin-bottom: 20px; }

  .sm-p-20px {
    padding: 20px; }

  .sm-p-20px-tb {
    padding-top: 20px;
    padding-bottom: 20px; }

  .sm-p-20px-lr {
    padding-left: 20px;
    padding-right: 20px; }

  .sm-p-20px-t {
    padding-top: 20px; }

  .sm-p-20px-l {
    padding-left: 20px; }

  .sm-p-20px-r {
    padding-right: 20px; }

  .sm-p-20px-b {
    padding-bottom: 20px; }

  .sm-m-25px {
    margin: 25px; }

  .sm-m-25px-tb {
    margin-top: 25px;
    margin-bottom: 25px; }

  .sm-m-25px-lr {
    margin-left: 25px;
    margin-right: 25px; }

  .sm-m-25px-t {
    margin-top: 25px; }

  .sm-m-25px-l {
    margin-left: 25px; }

  .sm-m-25px-r {
    margin-right: 25px; }

  .sm-m-25px-b {
    margin-bottom: 25px; }

  .sm-p-25px {
    padding: 25px; }

  .sm-p-25px-tb {
    padding-top: 25px;
    padding-bottom: 25px; }

  .sm-p-25px-lr {
    padding-left: 25px;
    padding-right: 25px; }

  .sm-p-25px-t {
    padding-top: 25px; }

  .sm-p-25px-l {
    padding-left: 25px; }

  .sm-p-25px-r {
    padding-right: 25px; }

  .sm-p-25px-b {
    padding-bottom: 25px; }

  .sm-m-30px {
    margin: 30px; }

  .sm-m-30px-tb {
    margin-top: 30px;
    margin-bottom: 30px; }

  .sm-m-30px-lr {
    margin-left: 30px;
    margin-right: 30px; }

  .sm-m-30px-t {
    margin-top: 30px; }

  .sm-m-30px-l {
    margin-left: 30px; }

  .sm-m-30px-r {
    margin-right: 30px; }

  .sm-m-30px-b {
    margin-bottom: 30px; }

  .sm-p-30px {
    padding: 30px; }

  .sm-p-30px-tb {
    padding-top: 30px;
    padding-bottom: 30px; }

  .sm-p-30px-lr {
    padding-left: 30px;
    padding-right: 30px; }

  .sm-p-30px-t {
    padding-top: 30px; }

  .sm-p-30px-l {
    padding-left: 30px; }

  .sm-p-30px-r {
    padding-right: 30px; }

  .sm-p-30px-b {
    padding-bottom: 30px; }

  .sm-m-35px {
    margin: 35px; }

  .sm-m-35px-tb {
    margin-top: 35px;
    margin-bottom: 35px; }

  .sm-m-35px-lr {
    margin-left: 35px;
    margin-right: 35px; }

  .sm-m-35px-t {
    margin-top: 35px; }

  .sm-m-35px-l {
    margin-left: 35px; }

  .sm-m-35px-r {
    margin-right: 35px; }

  .sm-m-35px-b {
    margin-bottom: 35px; }

  .sm-p-35px {
    padding: 35px; }

  .sm-p-35px-tb {
    padding-top: 35px;
    padding-bottom: 35px; }

  .sm-p-35px-lr {
    padding-left: 35px;
    padding-right: 35px; }

  .sm-p-35px-t {
    padding-top: 35px; }

  .sm-p-35px-l {
    padding-left: 35px; }

  .sm-p-35px-r {
    padding-right: 35px; }

  .sm-p-35px-b {
    padding-bottom: 35px; }

  .sm-m-40px {
    margin: 40px; }

  .sm-m-40px-tb {
    margin-top: 40px;
    margin-bottom: 40px; }

  .sm-m-40px-lr {
    margin-left: 40px;
    margin-right: 40px; }

  .sm-m-40px-t {
    margin-top: 40px; }

  .sm-m-40px-l {
    margin-left: 40px; }

  .sm-m-40px-r {
    margin-right: 40px; }

  .sm-m-40px-b {
    margin-bottom: 40px; }

  .sm-p-40px {
    padding: 40px; }

  .sm-p-40px-tb {
    padding-top: 40px;
    padding-bottom: 40px; }

  .sm-p-40px-lr {
    padding-left: 40px;
    padding-right: 40px; }

  .sm-p-40px-t {
    padding-top: 40px; }

  .sm-p-40px-l {
    padding-left: 40px; }

  .sm-p-40px-r {
    padding-right: 40px; }

  .sm-p-40px-b {
    padding-bottom: 40px; }

  .sm-m-45px {
    margin: 45px; }

  .sm-m-45px-tb {
    margin-top: 45px;
    margin-bottom: 45px; }

  .sm-m-45px-lr {
    margin-left: 45px;
    margin-right: 45px; }

  .sm-m-45px-t {
    margin-top: 45px; }

  .sm-m-45px-l {
    margin-left: 45px; }

  .sm-m-45px-r {
    margin-right: 45px; }

  .sm-m-45px-b {
    margin-bottom: 45px; }

  .sm-p-45px {
    padding: 45px; }

  .sm-p-45px-tb {
    padding-top: 45px;
    padding-bottom: 45px; }

  .sm-p-45px-lr {
    padding-left: 45px;
    padding-right: 45px; }

  .sm-p-45px-t {
    padding-top: 45px; }

  .sm-p-45px-l {
    padding-left: 45px; }

  .sm-p-45px-r {
    padding-right: 45px; }

  .sm-p-45px-b {
    padding-bottom: 45px; }

  .sm-m-50px {
    margin: 50px; }

  .sm-m-50px-tb {
    margin-top: 50px;
    margin-bottom: 50px; }

  .sm-m-50px-lr {
    margin-left: 50px;
    margin-right: 50px; }

  .sm-m-50px-t {
    margin-top: 50px; }

  .sm-m-50px-l {
    margin-left: 50px; }

  .sm-m-50px-r {
    margin-right: 50px; }

  .sm-m-50px-b {
    margin-bottom: 50px; }

  .sm-p-50px {
    padding: 50px; }

  .sm-p-50px-tb {
    padding-top: 50px;
    padding-bottom: 50px; }

  .sm-p-50px-lr {
    padding-left: 50px;
    padding-right: 50px; }

  .sm-p-50px-t {
    padding-top: 50px; }

  .sm-p-50px-l {
    padding-left: 50px; }

  .sm-p-50px-r {
    padding-right: 50px; }

  .sm-p-50px-b {
    padding-bottom: 50px; }

  .sm-m-55px {
    margin: 55px; }

  .sm-m-55px-tb {
    margin-top: 55px;
    margin-bottom: 55px; }

  .sm-m-55px-lr {
    margin-left: 55px;
    margin-right: 55px; }

  .sm-m-55px-t {
    margin-top: 55px; }

  .sm-m-55px-l {
    margin-left: 55px; }

  .sm-m-55px-r {
    margin-right: 55px; }

  .sm-m-55px-b {
    margin-bottom: 55px; }

  .sm-p-55px {
    padding: 55px; }

  .sm-p-55px-tb {
    padding-top: 55px;
    padding-bottom: 55px; }

  .sm-p-55px-lr {
    padding-left: 55px;
    padding-right: 55px; }

  .sm-p-55px-t {
    padding-top: 55px; }

  .sm-p-55px-l {
    padding-left: 55px; }

  .sm-p-55px-r {
    padding-right: 55px; }

  .sm-p-55px-b {
    padding-bottom: 55px; }

  .sm-m-60px {
    margin: 60px; }

  .sm-m-60px-tb {
    margin-top: 60px;
    margin-bottom: 60px; }

  .sm-m-60px-lr {
    margin-left: 60px;
    margin-right: 60px; }

  .sm-m-60px-t {
    margin-top: 60px; }

  .sm-m-60px-l {
    margin-left: 60px; }

  .sm-m-60px-r {
    margin-right: 60px; }

  .sm-m-60px-b {
    margin-bottom: 60px; }

  .sm-p-60px {
    padding: 60px; }

  .sm-p-60px-tb {
    padding-top: 60px;
    padding-bottom: 60px; }

  .sm-p-60px-lr {
    padding-left: 60px;
    padding-right: 60px; }

  .sm-p-60px-t {
    padding-top: 60px; }

  .sm-p-60px-l {
    padding-left: 60px; }

  .sm-p-60px-r {
    padding-right: 60px; }

  .sm-p-60px-b {
    padding-bottom: 60px; }

  .sm-m-65px {
    margin: 65px; }

  .sm-m-65px-tb {
    margin-top: 65px;
    margin-bottom: 65px; }

  .sm-m-65px-lr {
    margin-left: 65px;
    margin-right: 65px; }

  .sm-m-65px-t {
    margin-top: 65px; }

  .sm-m-65px-l {
    margin-left: 65px; }

  .sm-m-65px-r {
    margin-right: 65px; }

  .sm-m-65px-b {
    margin-bottom: 65px; }

  .sm-p-65px {
    padding: 65px; }

  .sm-p-65px-tb {
    padding-top: 65px;
    padding-bottom: 65px; }

  .sm-p-65px-lr {
    padding-left: 65px;
    padding-right: 65px; }

  .sm-p-65px-t {
    padding-top: 65px; }

  .sm-p-65px-l {
    padding-left: 65px; }

  .sm-p-65px-r {
    padding-right: 65px; }

  .sm-p-65px-b {
    padding-bottom: 65px; }

  .sm-m-70px {
    margin: 70px; }

  .sm-m-70px-tb {
    margin-top: 70px;
    margin-bottom: 70px; }

  .sm-m-70px-lr {
    margin-left: 70px;
    margin-right: 70px; }

  .sm-m-70px-t {
    margin-top: 70px; }

  .sm-m-70px-l {
    margin-left: 70px; }

  .sm-m-70px-r {
    margin-right: 70px; }

  .sm-m-70px-b {
    margin-bottom: 70px; }

  .sm-p-70px {
    padding: 70px; }

  .sm-p-70px-tb {
    padding-top: 70px;
    padding-bottom: 70px; }

  .sm-p-70px-lr {
    padding-left: 70px;
    padding-right: 70px; }

  .sm-p-70px-t {
    padding-top: 70px; }

  .sm-p-70px-l {
    padding-left: 70px; }

  .sm-p-70px-r {
    padding-right: 70px; }

  .sm-p-70px-b {
    padding-bottom: 70px; }

  .sm-m-75px {
    margin: 75px; }

  .sm-m-75px-tb {
    margin-top: 75px;
    margin-bottom: 75px; }

  .sm-m-75px-lr {
    margin-left: 75px;
    margin-right: 75px; }

  .sm-m-75px-t {
    margin-top: 75px; }

  .sm-m-75px-l {
    margin-left: 75px; }

  .sm-m-75px-r {
    margin-right: 75px; }

  .sm-m-75px-b {
    margin-bottom: 75px; }

  .sm-p-75px {
    padding: 75px; }

  .sm-p-75px-tb {
    padding-top: 75px;
    padding-bottom: 75px; }

  .sm-p-75px-lr {
    padding-left: 75px;
    padding-right: 75px; }

  .sm-p-75px-t {
    padding-top: 75px; }

  .sm-p-75px-l {
    padding-left: 75px; }

  .sm-p-75px-r {
    padding-right: 75px; }

  .sm-p-75px-b {
    padding-bottom: 75px; }

  .sm-m-80px {
    margin: 80px; }

  .sm-m-80px-tb {
    margin-top: 80px;
    margin-bottom: 80px; }

  .sm-m-80px-lr {
    margin-left: 80px;
    margin-right: 80px; }

  .sm-m-80px-t {
    margin-top: 80px; }

  .sm-m-80px-l {
    margin-left: 80px; }

  .sm-m-80px-r {
    margin-right: 80px; }

  .sm-m-80px-b {
    margin-bottom: 80px; }

  .sm-p-80px {
    padding: 80px; }

  .sm-p-80px-tb {
    padding-top: 80px;
    padding-bottom: 80px; }

  .sm-p-80px-lr {
    padding-left: 80px;
    padding-right: 80px; }

  .sm-p-80px-t {
    padding-top: 80px; }

  .sm-p-80px-l {
    padding-left: 80px; }

  .sm-p-80px-r {
    padding-right: 80px; }

  .sm-p-80px-b {
    padding-bottom: 80px; }

  .sm-m-85px {
    margin: 85px; }

  .sm-m-85px-tb {
    margin-top: 85px;
    margin-bottom: 85px; }

  .sm-m-85px-lr {
    margin-left: 85px;
    margin-right: 85px; }

  .sm-m-85px-t {
    margin-top: 85px; }

  .sm-m-85px-l {
    margin-left: 85px; }

  .sm-m-85px-r {
    margin-right: 85px; }

  .sm-m-85px-b {
    margin-bottom: 85px; }

  .sm-p-85px {
    padding: 85px; }

  .sm-p-85px-tb {
    padding-top: 85px;
    padding-bottom: 85px; }

  .sm-p-85px-lr {
    padding-left: 85px;
    padding-right: 85px; }

  .sm-p-85px-t {
    padding-top: 85px; }

  .sm-p-85px-l {
    padding-left: 85px; }

  .sm-p-85px-r {
    padding-right: 85px; }

  .sm-p-85px-b {
    padding-bottom: 85px; }

  .sm-m-90px {
    margin: 90px; }

  .sm-m-90px-tb {
    margin-top: 90px;
    margin-bottom: 90px; }

  .sm-m-90px-lr {
    margin-left: 90px;
    margin-right: 90px; }

  .sm-m-90px-t {
    margin-top: 90px; }

  .sm-m-90px-l {
    margin-left: 90px; }

  .sm-m-90px-r {
    margin-right: 90px; }

  .sm-m-90px-b {
    margin-bottom: 90px; }

  .sm-p-90px {
    padding: 90px; }

  .sm-p-90px-tb {
    padding-top: 90px;
    padding-bottom: 90px; }

  .sm-p-90px-lr {
    padding-left: 90px;
    padding-right: 90px; }

  .sm-p-90px-t {
    padding-top: 90px; }

  .sm-p-90px-l {
    padding-left: 90px; }

  .sm-p-90px-r {
    padding-right: 90px; }

  .sm-p-90px-b {
    padding-bottom: 90px; }

  .sm-m-95px {
    margin: 95px; }

  .sm-m-95px-tb {
    margin-top: 95px;
    margin-bottom: 95px; }

  .sm-m-95px-lr {
    margin-left: 95px;
    margin-right: 95px; }

  .sm-m-95px-t {
    margin-top: 95px; }

  .sm-m-95px-l {
    margin-left: 95px; }

  .sm-m-95px-r {
    margin-right: 95px; }

  .sm-m-95px-b {
    margin-bottom: 95px; }

  .sm-p-95px {
    padding: 95px; }

  .sm-p-95px-tb {
    padding-top: 95px;
    padding-bottom: 95px; }

  .sm-p-95px-lr {
    padding-left: 95px;
    padding-right: 95px; }

  .sm-p-95px-t {
    padding-top: 95px; }

  .sm-p-95px-l {
    padding-left: 95px; }

  .sm-p-95px-r {
    padding-right: 95px; }

  .sm-p-95px-b {
    padding-bottom: 95px; }

  .sm-m-100px {
    margin: 100px; }

  .sm-m-100px-tb {
    margin-top: 100px;
    margin-bottom: 100px; }

  .sm-m-100px-lr {
    margin-left: 100px;
    margin-right: 100px; }

  .sm-m-100px-t {
    margin-top: 100px; }

  .sm-m-100px-l {
    margin-left: 100px; }

  .sm-m-100px-r {
    margin-right: 100px; }

  .sm-m-100px-b {
    margin-bottom: 100px; }

  .sm-p-100px {
    padding: 100px; }

  .sm-p-100px-tb {
    padding-top: 100px;
    padding-bottom: 100px; }

  .sm-p-100px-lr {
    padding-left: 100px;
    padding-right: 100px; }

  .sm-p-100px-t {
    padding-top: 100px; }

  .sm-p-100px-l {
    padding-left: 100px; }

  .sm-p-100px-r {
    padding-right: 100px; }

  .sm-p-100px-b {
    padding-bottom: 100px; } }

/*# sourceMappingURL=master.css.map */
