/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Georgia", sans-serif;
  color: #452141;
  font-size: 13px;
}

a {
  color: #452141;transition: all 0.3s ease-in-out 0s;
}

a:hover {
  color: #ab3763;
  text-decoration: none;transition: all 0.3s ease-in-out 0s;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6  {
  font-family: "Glysa", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #452141;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #452141;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #3284f1;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #452141;
  height: 20px;
  font-size: 10px;
  transition: all 0.5s;
  color: #fff;
 font-family: 'Glysa';
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.6);
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 12px 0;
  top: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
  top: 0;
  padding: 15px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #452141;
}

#header .logo a span {
  color: #452141;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    padding: 15px;
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 12px;
}
.nav-menu > ul > li:last-child {
  padding: 8px 0 10px 20px;
}
.nav-menu > ul > li:last-child > a:before {
  display: none;
}
.nav-menu a {
  display: block;
  position: relative;
  color: #452141;
  transition: 0.3s;
  font-weight: bold;
  padding: 0 3px;
  font-family: "Georgia", sans-serif;
  font-size: 13px;
    text-transform: uppercase;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #452141;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #452141;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #062b5b;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #452141;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 55px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #452141;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #452141;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #452141;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-container {
  padding-top: 85px;
  padding-bottom: 0px;
}
.hero-slide {
  width: 100%;
  height: 60vh;
  background: url("../img/slide1.jpg") top left;
  background-size: cover;
  position: relative;
  background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

/* .hero-slide:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

.hero-slide .container {
  position: relative;
  /* padding-top: 82px; */
  padding-left: 80px;
}

@media (max-width: 992px) {
  .hero-slide .container {
    padding-top: 58px;
  }
}

.hero-slide h1 {
  margin-bottom: 50px;
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 1px;
  /* line-height: 40px; */
  color: #452141;
  font-family: "Glysa", sans-serif;
  padding-bottom: 33px;
}

.hero-slide h1 span {
  color: #452141;
}

.hero-slide h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

.hero-slide .btn-get-started {
  font-family: "Georgia", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  display: inline-block;
  padding: 13px 20px;
  
  border-radius: 8px;
  transition: 0.5s;
  color: #fff;
  background: #452141;
}




.hero-slide .btn-get-started:hover {
  opacity: 0.8;
}

.hero-slide .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 25px 8px 40px;
  transition: 0.5s;
  margin-left: 25px;
  color: #452141;
  position: relative;
  font-weight: 600;
}

.hero-slide .btn-watch-video i {
  color: #452141;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}

.hero-slide .btn-watch-video:hover {
  color: #452141;
}

.hero-slide .btn-watch-video:hover i {
  color: #ab3763;
}

@media (min-width: 1024px) {
  .hero-slide {
    /* background-attachment: fixed; */
  }
}

@media (max-width: 768px) {
  .hero-slide {
    height: 100vh;
  }
  .hero-slide h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .hero-slide h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .hero-slide .btn-get-started, .hero-slide .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  .hero-slide {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
  color: #452141;
}
.section-title h3 {
  font-size: 12px;
  font-family: 'Georgia';
  font-weight: bold;
  color: #cd0010;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 500;
  color: #452141;
}

.section-title p {
  margin: 2px auto 0 auto;
  font-family: 'Georgia';
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
  margin-top: 134px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .iconbox {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .iconbox::before {
  content: '';
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .iconbox:hover::before {
  background: #452141;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #452141;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .iconbox:hover .title a, .featured-services .iconbox:hover .description {
  color: #fff;
}

.featured-services .iconbox:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #452141;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #452141;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #452141;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #452141;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  border: 5px solid #fff;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .iconbox {
  text-align: left;
  /* padding: 80px 20px; */
  transition: all ease-in-out 0.3s;
  display: flex;
    align-items: flex-start;
        margin-bottom: 35px;
 
}

.services .iconbox .icon {
 
  padding: 3px;
  padding-top: 0px;
  margin-right: 23px;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  width: 200px;


}
.services .iconbox .icon img {
  max-height: 100%;

  max-width: 180px;
  width: 100%;
}

.services .iconbox .icon i {
  color: #ab3763;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .iconbox h4 {
 
  margin-bottom: 10px;
  font-size: 22px;
}

.services .iconbox h4 a {
  color: #452141;
  transition: ease-in-out 0.3s;
}

.services .iconbox p {
  line-height: 1.5;
 
  margin-bottom: 0;
}




/* .services .iconbox:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
} */
/* 
.services .iconbox:hover h4 a, .services .iconbox:hover .icon i {
  color: #452141;
} */

/* .services .iconbox:hover .icon {
  border-color: #452141;
} */

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 50px 0 30px 0px;
  /* background: url("../img/testimonials-bg.jpg") no-repeat; */
  background-position: center center;
  background-size: cover;
  position: relative;
  background-color: #fff;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #452141;
}

.testimonials .testimonial-item .testimonial-img {
  width: 170px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
  margin-bottom: 30px;
}

.testimonials .testimonial-item h3 {
  font-size: 12px;
  font-family: 'Georgia';
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #cd0010;
  text-transform: uppercase;
}
.testimonials .testimonial-item p {
  font-family: 'Glysa';
  margin: 0 auto 15px auto;
  color: #452141;
  font-size: 25px;
  line-height: 1.2;
}
.testimonials .testimonial-item h4 {
  font-size: 12px;
  font-family: 'Georgia';
  color: #452141;
  text-transform: uppercase;
  margin: 30px 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color:#452141;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}



.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4) !important;
}

.testimonials .owl-dot.active {
  background-color: #452141 !important;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #452141;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #452141;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #452141;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #452141;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #452141 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 20px 0;
}

.team 
.section-title {
  
  padding-bottom: 20px;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  /* border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15); */
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #452141;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #ab3763;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 15px 0px 0;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #452141;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #452141;
}

.team .member .member-info p {
  font-family: 'Georgia';
  font-size: 14px;
  line-height: 1.5;
  color: #452141;
  margin-bottom: 0;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 36px;
  color: #452141;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #452141;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #452141;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #452141;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #ab3763;
}

.pricing .featured h3 {
  color: #fff;
  background: #452141;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #452141;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #452141;
  font-size: 18px;
  font-weight: 500;
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}

.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapse {
  color: #452141;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #452141;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #452141;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #452141;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #452141;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #452141;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ab3763;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0 !important;
  font-size: 12px;
  background: #452141;
}

#footer .copyright {
  color: #fff;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #452141;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #452141;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #452141;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #452141;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #452141;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #452141;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ab3763;
  text-decoration: none;
}

#footer .copyright {
  text-align: left;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #452141;
}

@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}
.bg-1 {
background: #eaddd1;
}
.bg-2 {
  background: #d5bdd5;
  }
  .bg-3 {
    background: #efefef;
    }
    .btn-primary {
      font-family: "Georgia", sans-serif;
      text-transform: uppercase;
    
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
  padding: 13px 20px;
  
      border-radius: 8px;
      transition: 0.5s;
      color: #fff;
      background: #452141;
  }


  .bg-pink {
  background: #c89aad;
  }
  .img-about {
    padding-right: 160px;
  }

  .container, .container-lg{
    max-width: calc(100% - 280px);
}

  .about-section {
    max-width: calc(100% - 120px) ;
  }

  .knowyournumber  {
  padding: 80px 0;
  }
  .knowyournumber h3 {
    font-size: 12px;
    font-family: 'Georgia';
    font-weight: bold;
    color: #cd0010;
    text-transform: uppercase;
  }
.knowyournumber h2 {
  color: #452141;
  font-size: 32px;
}

@media (max-width: 1200px){
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 960px;
}
}
.news {
  padding: 80px 0;
}
.news .section-title {
  padding-bottom: 20px;
}


.owl-carousel .owl-nav{
  overflow: hidden;
  height: 0px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
    background: #2caae1;
}


.owl-carousel .item {
    text-align: center;
}
.owl-carousel .nav-btn{
    height: 47px;
    position: absolute;
    width: 26px;
    cursor: pointer;
    top: 100px !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled{
  pointer-events: none;
  opacity: 0.2;
}



/* ---- sick arrow style start ----*/
 .slick-arrow {
  top: 50%;
  right: 15px;
  width: 30px;
  height: 30px;
  text-align: center;
  z-index: 1;
  cursor: pointer;
  display: block;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 36px;
  }
 .slick-arrow.slick-prev {
    left: 20px; 
    outline: 0px;
  }
.slick-arrow.slick-next {
    right: 20px;
    outline: 0px;
    
   }


   .btn-primary:hover {
    color: #fff;
    background-color:#452141 !important;
    border-color:unset !important;
    opacity: 0.8;
}
.btn-light {
  color: #452141 !important;
background: #ffffff !important;
  }
  .btn-light:hover {
  color: #452141 !important;
background: #ffffff !important;
border-color: unset !important;
opacity: 0.8 !important;
  }

footer .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: currentColor;
}

footer .no-svg .icon {
  display: none;
}

svg.icon:not(.icon--full-color) circle,svg.icon:not(.icon--full-color) ellipse,svg.icon:not(.icon--full-color) g,svg.icon:not(.icon--full-color) line,svg.icon:not(.icon--full-color) path,svg.icon:not(.icon--full-color) polygon,svg.icon:not(.icon--full-color) polyline,svg.icon:not(.icon--full-color) rect,symbol.icon:not(.icon--full-color) circle,symbol.icon:not(.icon--full-color) ellipse,symbol.icon:not(.icon--full-color) g,symbol.icon:not(.icon--full-color) line,symbol.icon:not(.icon--full-color) path,symbol.icon:not(.icon--full-color) polygon,symbol.icon:not(.icon--full-color) polyline,symbol.icon:not(.icon--full-color) rect {
  fill: inherit;
  stroke: inherit;
}

.icon-cart {
  width: 10px;
}

@media (min-width: 768px) {
  .icon-cart {
    width: inherit;
  }
}

.icon-account {
  width: 10px;
}

@media (min-width: 768px) {
  .icon-account {
    width: inherit;
  }
}

.icon-instagram {
  max-width: 50px;
}

.icon-pinterest {
  max-width: 50px;
}

.icon-facebook {
  max-width: 50px;
}

.icon-twitter {
  max-width: 50px;
}

.footer-header p {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-header p {
    margin-bottom: 0.25rem;
  }
}

.footer-header.hidden {
  display: none;
}

.footer-navigation {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (min-width: 768px) {
  .footer-navigation {
    grid-gap: 1.25rem;
  }
}

.footer-navigation.footer-navigation--small {
  grid-template-columns: 1fr 1fr;
  max-width: 24rem;
}

.footer-navigation a {
  font-size: 14px;
}

.footer-navigation a:hover, .footer-navigation a.active {
  text-decoration: underline;
}

.klaviyo_messages {
  width: 100%;
}

.klaviyo_messages .success_message_blog {
  color: #fff;
  text-align: center;
}

.klaviyo_messages .success_message_blog .btn-primary,.klaviyo_messages .success_message_blog .shopify-challenge__button {
  background-color: #fff;
  color: #452041;
}

.klaviyo-footer-newsletter p {
  color: #452041;
  line-height: 40px;
}

.klaviyo-footer-newsletter ::-webkit-input-placeholder {
  color: #c89aad;
}

.klaviyo-footer-newsletter ::-moz-placeholder {
  color: #c89aad;
}

.klaviyo-footer-newsletter :-ms-input-placeholder {
  color: #c89aad;
}

.klaviyo-footer-newsletter :-moz-placeholder {
  color: #c89aad;
}

select:invalid {
  color:#c89aad !important;
  }
  select:invalid > option[value=""][disabled] {
  display: none;
  }
  option {
  color: black;
  }

.klaviyo-footer-newsletter input, .klaviyo-footer-newsletter select {
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #452041;
  box-shadow: none;
  color: #452041;
  font-size: 12px;
  line-height: 22px;
  padding: 0;
  height: 28px;
  margin: 10px 0 10px;
  background: transparent;
}
.klaviyo-footer-newsletter input:focus, .klaviyo-footer-newsletter select:focus {
  outline: none;
}

.klaviyo-footer-newsletter input:visited {
  background: transparent;
}

.klaviyo-footer-newsletter .klaviyo_form_actions {
  position: absolute;
  right: 4px;
  bottom: 10px;

}

.klaviyo-footer-newsletter .klaviyo_form_actions button {
  border: none;
  background: transparent;
  text-transform: uppercase;
  color: #452041;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.75px !important;
  padding: 5px 10px;
}

.klaviyo-footer-newsletter .klaviyo_form_actions button:hover {
  color: #88477b;
}

.klaviyo-footer-newsletter input:-webkit-autofill,.klaviyo-footer-newsletter input:-webkit-autofill:hover,.klaviyo-footer-newsletter input:-webkit-autofill:focus,.klaviyo-footer-newsletter textarea:-webkit-autofill,.klaviyo-footer-newsletter textarea:-webkit-autofill:hover,.klaviyo-footer-newsletter textarea:-webkit-autofill:focus,.klaviyo-footer-newsletter select:-webkit-autofill,.klaviyo-footer-newsletter select:-webkit-autofill:hover,.klaviyo-footer-newsletter select:-webkit-autofill:focus {
  border: none;
  border-bottom: 1px solid #452041;
  -webkit-text-fill-color: #452041;
  -webkit-box-shadow: none;
  outline:0;
  transition: background-color 5000s ease-in-out 0s;
}

.klaviyo-footer-newsletter input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}
input::active, input:focus {
  outline: none;
}
input[type="text"]:focus, input[type="date"]:focus {
  outline: none;
}
.artical-carousel .slick-arrow.slick-prev {
  left: -40px;
  outline: 0px;
}
.artical-carousel  .slick-arrow.slick-next {
  right: -40px;
  outline: 0px;
}

.menu-icon {
  width: 17px;
}
.bg-primary {
  background-color: #452041 !important;
}
.btn-secondary {
  color: #452041;
  background-color: #fff;
  border-color: #fff;
}
.btn-secondary:hover {
  color: #452041;
  background-color: #ddc3dc !important;
  border-color: #ddc3dc !important;
}

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

.text-red {
  color: #df4244 !important;
}

.eyebrow {
  display: block;
  font-size: 12px;
  font-family: 'Georgia';
    font-weight: 700;

  letter-spacing: 0.15625rem;
  line-height: 1.125rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.p-t-60 {
  padding-top: 60px !important;
}
.p-b-60 {
  padding-bottom: 60px !important
}
.bg-size-contain {
  background-size: contain !important;
}
.embed-responsive {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.bg-repeat-none {
  background-repeat: no-repeat;
}
.embed-responsive:before {
  content: "";
  display: block;
  mix-blend-mode: multiply;
  transition: 200ms ease-in-out background-color;
}
.embed-responsive-lg-10by11:before {
  padding-top: 110%;
}

.bg-gray-100 {
  background-color: #f6f6f6 !important;
}

.display-1 {
  font-size: 2.5rem !important;
  font-weight: 300;
  letter-spacing: -0.125rem;
  line-height: 1.4;
}
.display-1-1 {
  font-size: 4.25rem;
}

.underline {
  text-decoration: underline;
}
.underline:hover {
  text-decoration: underline;
}
.circle-icon{
  width: 30%;
  padding: 0 2.5% !important;
  margin: 0 1.2% !important;
  float: left;
}
.display-3 {
  font-size: 1.525rem;
  font-weight: 300;
  line-height: 1.4;
}
.grid-item-mosaic {
  columns: 17rem;
  column-gap: 1rem;
}
.image-mosaic {
  break-inside: avoid-column;
  margin-bottom: 1rem;
}
.embed-responsive {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.embed-responsive-9by16:before {
  padding-top: 177.78%;
}
.embed-responsive:before {
  content: "";
  display: block;
  mix-blend-mode: multiply;
  transition: 200ms ease-in-out background-color;
}
.embed-responsive-3by4:before {
  padding-top: 133.33%;
}


.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-33 {
  width: 33.333% !important;
}

.w-40 {
  width: 40% !important;
}

.w-45 {
  width: 45% !important;
}

.w-50 {
  width: 50% !important;
}

.w-60 {
  width: 60% !important;
}

.w-70 {
  width: 70% !important;
}

.w-75 {
  width: 75% !important;
}

.w-80 {
  width: 80% !important;
}

.w-90 {
  width: 90% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

@media (min-width: 576px) {
  .w-sm-10 {
    width: 10% !important;
  }

  .w-sm-15 {
    width: 15% !important;
  }

  .w-sm-20 {
    width: 20% !important;
  }

  .w-sm-25 {
    width: 25% !important;
  }

  .w-sm-30 {
    width: 30% !important;
  }

  .w-sm-33 {
    width: 33.333% !important;
  }

  .w-sm-40 {
    width: 40% !important;
  }

  .w-sm-45 {
    width: 45% !important;
  }

  .w-sm-50 {
    width: 50% !important;
  }

  .w-sm-60 {
    width: 60% !important;
  }

  .w-sm-70 {
    width: 70% !important;
  }

  .w-sm-75 {
    width: 75% !important;
  }

  .w-sm-80 {
    width: 80% !important;
  }

  .w-sm-90 {
    width: 90% !important;
  }

  .w-sm-100 {
    width: 100% !important;
  }

  .w-sm-auto {
    width: auto !important;
  }

  .h-sm-25 {
    height: 25% !important;
  }

  .h-sm-50 {
    height: 50% !important;
  }

  .h-sm-75 {
    height: 75% !important;
  }

  .h-sm-100 {
    height: 100% !important;
  }

  .mw-sm-100 {
    max-width: 100% !important;
  }

  .mh-sm-100 {
    max-height: 100% !important;
  }
}

@media (min-width: 768px) {
  .w-md-10 {
    width: 10% !important;
  }

  .w-md-15 {
    width: 15% !important;
  }

  .w-md-20 {
    width: 20% !important;
  }

  .w-md-25 {
    width: 25% !important;
  }

  .w-md-30 {
    width: 30% !important;
  }

  .w-md-33 {
    width: 33.333% !important;
  }

  .w-md-40 {
    width: 40% !important;
  }

  .w-md-45 {
    width: 45% !important;
  }

  .w-md-50 {
    width: 50% !important;
  }

  .w-md-60 {
    width: 60% !important;
  }

  .w-md-70 {
    width: 70% !important;
  }

  .w-md-75 {
    width: 75% !important;
  }

  .w-md-80 {
    width: 80% !important;
  }

  .w-md-90 {
    width: 90% !important;
  }

  .w-md-100 {
    width: 100% !important;
  }

  .w-md-auto {
    width: auto !important;
  }

  .h-md-25 {
    height: 25% !important;
  }

  .h-md-50 {
    height: 50% !important;
  }

  .h-md-75 {
    height: 75% !important;
  }

  .h-md-100 {
    height: 100% !important;
  }

  .mw-md-100 {
    max-width: 100% !important;
  }

  .mh-md-100 {
    max-height: 100% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-10 {
    width: 10% !important;
  }

  .w-lg-15 {
    width: 15% !important;
  }

  .w-lg-20 {
    width: 20% !important;
  }

  .w-lg-25 {
    width: 25% !important;
  }

  .w-lg-30 {
    width: 30% !important;
  }

  .w-lg-33 {
    width: 33.333% !important;
  }

  .w-lg-40 {
    width: 40% !important;
  }

  .w-lg-45 {
    width: 45% !important;
  }

  .w-lg-50 {
    width: 50% !important;
  }

  .w-lg-60 {
    width: 60% !important;
  }

  .w-lg-70 {
    width: 70% !important;
  }

  .w-lg-75 {
    width: 75% !important;
  }

  .w-lg-80 {
    width: 80% !important;
  }

  .w-lg-90 {
    width: 90% !important;
  }

  .w-lg-100 {
    width: 100% !important;
  }

  .w-lg-auto {
    width: auto !important;
  }

  .h-lg-25 {
    height: 25% !important;
  }

  .h-lg-50 {
    height: 50% !important;
  }

  .h-lg-75 {
    height: 75% !important;
  }

  .h-lg-100 {
    height: 100% !important;
  }

  .mw-lg-100 {
    max-width: 100% !important;
  }

  .mh-lg-100 {
    max-height: 100% !important;
  }
}

.m-neg-10 {
  margin: -16rem !important;
}

.mt-neg-10,.my-neg-10 {
  margin-top: -16rem !important;
}

.mr-neg-10,.mx-neg-10 {
  margin-right: -16rem !important;
}

.mb-neg-10,.my-neg-10 {
  margin-bottom: -16rem !important;
}

.ml-neg-10,.mx-neg-10 {
  margin-left: -16rem !important;
}

.m-neg-9 {
  margin: -13rem !important;
}

.mt-neg-9,.my-neg-9 {
  margin-top: -13rem !important;
}

.mr-neg-9,.mx-neg-9 {
  margin-right: -13rem !important;
}

.mb-neg-9,.my-neg-9 {
  margin-bottom: -13rem !important;
}

.ml-neg-9,.mx-9 {
  margin-left: -13rem !important;
}

.m-neg-8 {
  margin: -10rem !important;
}

.mt-neg-8,.my-neg-8 {
  margin-top: -10rem !important;
}

.mr-neg-8,.mx-neg-8 {
  margin-right: -10rem !important;
}

.mb-neg-8,.my-neg-8 {
  margin-bottom: -10rem !important;
}

.ml-neg-8,.mx-neg-8 {
  margin-left: -10rem !important;
}

.m-neg-7 {
  margin: -7rem !important;
}

.mt-neg-7,.my-neg-7 {
  margin-top: -7rem !important;
}

.mr-neg-7,.mx-neg-7 {
  margin-right: -7rem !important;
}

.mb-neg-7,.my-neg-7 {
  margin-bottom: -7rem !important;
}

.ml-neg-7,.mx-neg-7 {
  margin-left: -7rem !important;
}

.m-neg-6 {
  margin: -5rem !important;
}

.mt-neg-6,.my-neg-6 {
  margin-top: -5rem !important;
}

.mr-neg-6,.mx-neg-6 {
  margin-right: -5rem !important;
}

.mb-neg-6,.my-neg-6 {
  margin-bottom: -5rem !important;
}

.ml-neg-6,.mx-neg-6 {
  margin-left: -5rem !important;
}

.m-neg-5 {
  margin: -3rem !important;
}

.mt-neg-5,.my-neg-5 {
  margin-top: -3rem !important;
}

.mr-neg-5,.mx-neg-5 {
  margin-right: -3rem !important;
}

.mb-neg-5,.my-neg-5 {
  margin-bottom: -3rem !important;
}

.ml-neg-5,.mx-neg-5 {
  margin-left: -3rem !important;
}

.m-neg-4 {
  margin: -1.5rem !important;
}

.mt-neg-4,.my-neg-4 {
  margin-top: -1.5rem !important;
}

.mr-neg-4,.mx-neg-4 {
  margin-right: -1.5rem !important;
}

.mb-neg-4,.my-neg-4 {
  margin-bottom: -1.5rem !important;
}

.ml-neg-4,.mx-4 {
  margin-left: -1.5rem !important;
}

.m-neg-3 {
  margin: -1rem !important;
}

.mt-neg-3,.my-neg-3 {
  margin-top: -1rem !important;
}

.mr-neg-3,.mx-neg-3 {
  margin-right: -1rem !important;
}

.mb-neg-3,.my-neg-3 {
  margin-bottom: -1rem !important;
}

.ml-neg-3,.mx-neg-3 {
  margin-left: -1rem !important;
}

.m-neg-2 {
  margin: -0.5rem !important;
}

.mt-neg-2,.my-neg-2 {
  margin-top: -0.5rem !important;
}

.mr-neg-2,.mx-neg-2 {
  margin-right: -0.5rem !important;
}

.mb-neg-2,.my-neg-2 {
  margin-bottom: -0.5rem !important;
}

.ml-neg-2,.mx-neg-2 {
  margin-left: -0.5rem !important;
}

.m-neg-1 {
  margin: -0.25rem !important;
}

.mt-neg-1,.my-neg-1 {
  margin-top: -0.25rem !important;
}

.mr-neg-1,.mx-neg-1 {
  margin-right: -0.25rem !important;
}

.mb-neg-1,.my-neg-1 {
  margin-bottom: -0.25rem !important;
}

.ml-neg-1,.mx-neg-1 {
  margin-left: -0.25rem !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,.my-0 {
  margin-top: 0 !important;
}

.mr-0,.mx-0 {
  margin-right: 0 !important;
}

.mb-0,.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,.my-3 {
  margin-top: 1rem !important;
}

.mr-3,.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,.my-5 {
  margin-top: 3rem !important;
}

.mr-5,.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,.mx-5 {
  margin-left: 3rem !important;
}

.m-6 {
  margin: 5rem !important;
}

.mt-6,.my-6 {
  margin-top: 5rem !important;
}

.mr-6,.mx-6 {
  margin-right: 5rem !important;
}

.mb-6,.my-6 {
  margin-bottom: 5rem !important;
}

.ml-6,.mx-6 {
  margin-left: 5rem !important;
}

.m-7 {
  margin: 7rem !important;
}

.mt-7,.my-7 {
  margin-top: 7rem !important;
}

.mr-7,.mx-7 {
  margin-right: 7rem !important;
}

.mb-7,.my-7 {
  margin-bottom: 7rem !important;
}

.ml-7,.mx-7 {
  margin-left: 7rem !important;
}

.m-8 {
  margin: 10rem !important;
}

.mt-8,.my-8 {
  margin-top: 10rem !important;
}

.mr-8,.mx-8 {
  margin-right: 10rem !important;
}

.mb-8,.my-8 {
  margin-bottom: 10rem !important;
}

.ml-8,.mx-8 {
  margin-left: 10rem !important;
}

.m-9 {
  margin: 13rem !important;
}

.mt-9,.my-9 {
  margin-top: 13rem !important;
}

.mr-9,.mx-9 {
  margin-right: 13rem !important;
}

.mb-9,.my-9 {
  margin-bottom: 13rem !important;
}

.ml-9,.mx-9 {
  margin-left: 13rem !important;
}

.m-10 {
  margin: 16rem !important;
}

.mt-10,.my-10 {
  margin-top: 16rem !important;
}

.mr-10,.mx-10 {
  margin-right: 16rem !important;
}

.mb-10,.my-10 {
  margin-bottom: 16rem !important;
}

.ml-10,.mx-10 {
  margin-left: 16rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,.py-0 {
  padding-top: 0 !important;
}

.pr-0,.px-0 {
  padding-right: 0 !important;
}

.pb-0,.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,.py-3 {
  padding-top: 1rem !important;
}

.pr-3,.px-3 {
  padding-right: 1rem !important;
}

.pb-3,.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,.article-tags li:not(:first-child),.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,.py-5 {
  padding-top: 3rem !important;
}

.pr-5,.px-5 {
  padding-right: 3rem !important;
}

.pb-5,.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,.px-5 {
  padding-left: 3rem !important;
}

.p-6 {
  padding: 5rem !important;
}

.pt-6,.py-6 {
  padding-top: 5rem !important;
}

.pr-6,.px-6 {
  padding-right: 5rem !important;
}

.pb-6,.py-6 {
  padding-bottom: 5rem !important;
}

.pl-6,.px-6 {
  padding-left: 5rem !important;
}

.p-7 {
  padding: 7rem !important;
}

.pt-7,.py-7 {
  padding-top: 7rem !important;
}

.pr-7,.px-7 {
  padding-right: 7rem !important;
}

.pb-7,.py-7 {
  padding-bottom: 7rem !important;
}

.pl-7,.px-7 {
  padding-left: 7rem !important;
}

.p-8 {
  padding: 10rem !important;
}

.pt-8,.py-8 {
  padding-top: 10rem !important;
}

.pr-8,.px-8 {
  padding-right: 10rem !important;
}

.pb-8,.py-8 {
  padding-bottom: 10rem !important;
}

.pl-8,.px-8 {
  padding-left: 10rem !important;
}

.p-9 {
  padding: 13rem !important;
}

.pt-9,.py-9 {
  padding-top: 13rem !important;
}

.pr-9,.px-9 {
  padding-right: 13rem !important;
}

.pb-9,.py-9 {
  padding-bottom: 13rem !important;
}

.pl-9,.px-9 {
  padding-left: 13rem !important;
}

.p-10 {
  padding: 16rem !important;
}

.pt-10,.py-10 {
  padding-top: 16rem !important;
}

.pr-10,.px-10 {
  padding-right: 16rem !important;
}

.pb-10,.py-10 {
  padding-bottom: 16rem !important;
}

.pl-10,.px-10 {
  padding-left: 16rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,.my-auto {
  margin-top: auto !important;
}

.mr-auto,.mx-auto {
  margin-right: auto !important;
}

.mb-auto,.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,.mx-auto {
  margin-left: auto !important;
}


@media (min-width: 276px) {
  .m-xs-neg-10 {
    margin: -16rem !important;
  }

  .mt-xs-neg-10,.my-xs-neg-10 {
    margin-top: -16rem !important;
  }

  .mr-xs-neg-10,.mx-xs-neg-10 {
    margin-right: -16rem !important;
  }

  .mb-xs-neg-10,.my-xs-neg-10 {
    margin-bottom: -16rem !important;
  }

  .ml-xs-neg-10,.mx-xs-neg-10 {
    margin-left: -16rem !important;
  }

  .m-xs-neg-9 {
    margin: -13rem !important;
  }

  .mt-xs-neg-9,.my-xs-neg-9 {
    margin-top: -13rem !important;
  }

  .mr-xs-neg-9,.mx-xs-neg-9 {
    margin-right: -13rem !important;
  }

  .mb-xs-neg-9,.my-xs-neg-9 {
    margin-bottom: -13rem !important;
  }

  .ml-xs-neg-9,.mx-xs-9 {
    margin-left: -13rem !important;
  }

  .m-xs-neg-8 {
    margin: -10rem !important;
  }

  .mt-xs-neg-8,.my-xs-neg-8 {
    margin-top: -10rem !important;
  }

  .mr-xs-neg-8,.mx-xs-neg-8 {
    margin-right: -10rem !important;
  }

  .mb-xs-neg-8,.my-xs-neg-8 {
    margin-bottom: -10rem !important;
  }

  .ml-xs-neg-8,.mx-xs-neg-8 {
    margin-left: -10rem !important;
  }

  .m-xs-neg-7 {
    margin: -7rem !important;
  }

  .mt-xs-neg-7,.my-xs-neg-7 {
    margin-top: -7rem !important;
  }

  .mr-xs-neg-7,.mx-xs-neg-7 {
    margin-right: -7rem !important;
  }

  .mb-xs-neg-7,.my-xs-neg-7 {
    margin-bottom: -7rem !important;
  }

  .ml-xs-neg-7,.mx-xs-neg-7 {
    margin-left: -7rem !important;
  }

  .m-xs-neg-6 {
    margin: -5rem !important;
  }

  .mt-xs-neg-6,.my-xs-neg-6 {
    margin-top: -5rem !important;
  }

  .mr-xs-neg-6,.mx-xs-neg-6 {
    margin-right: -5rem !important;
  }

  .mb-xs-neg-6,.my-xs-neg-6 {
    margin-bottom: -5rem !important;
  }

  .ml-xs-neg-6,.mx-xs-neg-6 {
    margin-left: -5rem !important;
  }

  .m-xs-neg-5 {
    margin: -3rem !important;
  }

  .mt-xs-neg-5,.my-xs-neg-5 {
    margin-top: -3rem !important;
  }

  .mr-xs-neg-5,.mx-xs-neg-5 {
    margin-right: -3rem !important;
  }

  .mb-xs-neg-5,.my-xs-neg-5 {
    margin-bottom: -3rem !important;
  }

  .ml-xs-neg-5,.mx-xs-neg-5 {
    margin-left: -3rem !important;
  }

  .m-xs-neg-4 {
    margin: -1.5rem !important;
  }

  .mt-xs-neg-4,.my-xs-neg-4 {
    margin-top: -1.5rem !important;
  }

  .mr-xs-neg-4,.mx-xs-neg-4 {
    margin-right: -1.5rem !important;
  }

  .mb-xs-neg-4,.my-xs-neg-4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xs-neg-4,.mx-xs-4 {
    margin-left: -1.5rem !important;
  }

  .m-xs-neg-3 {
    margin: -1rem !important;
  }

  .mt-xs-neg-3,.my-xs-neg-3 {
    margin-top: -1rem !important;
  }

  .mr-xs-neg-3,.mx-xs-neg-3 {
    margin-right: -1rem !important;
  }

  .mb-xs-neg-3,.my-xs-neg-3 {
    margin-bottom: -1rem !important;
  }

  .ml-xs-neg-3,.mx-xs-neg-3 {
    margin-left: -1rem !important;
  }

  .mv-xs-neg-2 {
    margin: -0.5rem !important;
  }

  .mt-xs-neg-2,.my-xs-neg-2 {
    margin-top: -0.5rem !important;
  }

  .mr-xs-neg-2,.mx-xs-neg-2 {
    margin-right: -0.5rem !important;
  }

  .mb-xs-neg-2,.my-xs-neg-2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xs-neg-2,.mx-xs-neg-2 {
    margin-left: -0.5rem !important;
  }

  .m-xs-neg-1 {
    margin: -0.25rem !important;
  }

  .mt-xs-neg-1,.my-xs-neg-1 {
    margin-top: -0.25rem !important;
  }

  .mr-xs-neg-1,.mx-xs-neg-1 {
    margin-right: -0.25rem !important;
  }

  .mb-xs-neg-1,.my-xs-neg-1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xs-neg-1,.mx-xs-neg-1 {
    margin-left: -0.25rem !important;
  }

  .m-xs-0 {
    margin: 0 !important;
  }

  .mt-xs-0,.my-xs-0 {
    margin-top: 0 !important;
  }

  .mr-xs-0,.mx-xs-0 {
    margin-right: 0 !important;
  }

  .mb-xs-0,.my-xs-0 {
    margin-bottom: 0 !important;
  }

  .ml-xs-0,.mx-xs-0 {
    margin-left: 0 !important;
  }

  .m-xs-1 {
    margin: 0.25rem !important;
  }

  .mt-xs-1,.my-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xs-1,.mx-xs-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xs-1,.my-xs-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xs-1,.mx-xs-1 {
    margin-left: 0.25rem !important;
  }

  .m-xs-2 {
    margin: 0.5rem !important;
  }

  .mt-xs-2,.my-xs-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xs-2,.mx-xs-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xs-2,.my-xs-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xs-2,.mx-xs-2 {
    margin-left: 0.5rem !important;
  }

  .m-xs-3 {
    margin: 1rem !important;
  }

  .mt-xs-3,.my-xs-3 {
    margin-top: 1rem !important;
  }

  .mr-xs-3,.mx-xs-3 {
    margin-right: 1rem !important;
  }

  .mb-xs-3,.my-xs-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xs-3,.mx-xs-3 {
    margin-left: 1rem !important;
  }

  .m-xs-4 {
    margin: 1.5rem !important;
  }

  .mt-xs-4,.my-xs-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xs-4,.mx-xs-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xs-4,.my-xs-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xs-4,.mx-xs-4 {
    margin-left: 1.5rem !important;
  }

  .m-xs-5 {
    margin: 3rem !important;
  }

  .mt-xs-5,.my-xs-5 {
    margin-top: 3rem !important;
  }

  .mr-xs-5,.mx-xs-5 {
    margin-right: 3rem !important;
  }

  .mb-xs-5,.my-xs-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xs-5,.mx-xs-5 {
    margin-left: 3rem !important;
  }

  .m-xs-6 {
    margin: 5rem !important;
  }

  .mt-xs-6,.my-xs-6 {
    margin-top: 5rem !important;
  }

  .mr-xs-6,.mx-xs-6 {
    margin-right: 5rem !important;
  }

  .mb-xs-6,.my-xs-6 {
    margin-bottom: 5rem !important;
  }

  .ml-xs-6,.mx-xs-6 {
    margin-left: 5rem !important;
  }

  .m-xs-7 {
    margin: 7rem !important;
  }

  .mt-xs-7,.my-xs-7 {
    margin-top: 7rem !important;
  }

  .mr-xs-7,.mx-xs-7 {
    margin-right: 7rem !important;
  }

  .mb-xs-7,.my-xs-7 {
    margin-bottom: 7rem !important;
  }

  .ml-xs-7,.mx-xs-7 {
    margin-left: 7rem !important;
  }

  .m-xs-8 {
    margin: 10rem !important;
  }

  .mt-xs-8,.my-xs-8 {
    margin-top: 10rem !important;
  }

  .mr-xs-8,.mx-xs-8 {
    margin-right: 10rem !important;
  }

  .mb-xs-8,.my-xs-8 {
    margin-bottom: 10rem !important;
  }

  .ml-xs-8,.mx-xs-8 {
    margin-left: 10rem !important;
  }

  .m-xs-9 {
    margin: 13rem !important;
  }

  .mt-xs-9,.my-xs-9 {
    margin-top: 13rem !important;
  }

  .mr-xs-9,.mx-xs-9 {
    margin-right: 13rem !important;
  }

  .mb-xs-9,.my-xs-9 {
    margin-bottom: 13rem !important;
  }

  .ml-xs-9,.mx-xs-9 {
    margin-left: 13rem !important;
  }

  .m-xs-10 {
    margin: 16rem !important;
  }

  .mt-xs-10,.my-xs-10 {
    margin-top: 16rem !important;
  }

  .mr-xs-10,.mx-xs-10 {
    margin-right: 16rem !important;
  }

  .mb-xs-10,.my-xs-10 {
    margin-bottom: 16rem !important;
  }

  .ml-xs-10,.mx-xs-10 {
    margin-left: 16rem !important;
  }

  .p-xs-0 {
    padding: 0 !important;
  }

  .pt-xs-0,.py-xs-0 {
    padding-top: 0 !important;
  }

  .pr-xs-0,.px-xs-0 {
    padding-right: 0 !important;
  }

  .pb-xs-0,.py-xs-0 {
    padding-bottom: 0 !important;
  }

  .pl-xs-0,.px-xs-0 {
    padding-left: 0 !important;
  }

  .p-xs-1 {
    padding: 0.25rem !important;
  }

  .pt-xs-1,.py-xs-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xs-1,.px-xs-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xs-1,.py-xs-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xs-1,.px-xs-1 {
    padding-left: 0.25rem !important;
  }

  .p-xs-2 {
    padding: 0.5rem !important;
  }

  .pt-xs-2,.py-xs-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xs-2,.px-xs-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xs-2,.py-xs-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xs-2,.px-xs-2 {
    padding-left: 0.5rem !important;
  }

  .p-xs-3 {
    padding: 1rem !important;
  }

  .pt-xs-3,.py-xs-3 {
    padding-top: 1rem !important;
  }

  .pr-xs-3,.px-xs-3 {
    padding-right: 1rem !important;
  }

  .pb-xs-3,.py-xs-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xs-3,.px-xs-3 {
    padding-left: 1rem !important;
  }

  .p-xs-4 {
    padding: 1.5rem !important;
  }

  .pt-xs-4,.py-xs-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xs-4,.px-xs-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xs-4,.py-xs-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xs-4,.px-xs-4 {
    padding-left: 1.5rem !important;
  }

  .p-xs-5 {
    padding: 3rem !important;
  }

  .pt-xs-5,.py-xs-5 {
    padding-top: 3rem !important;
  }

  .pr-xs-5,.px-xs-5 {
    padding-right: 3rem !important;
  }

  .pb-xs-5,.py-xs-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xs-5,.px-xs-5 {
    padding-left: 3rem !important;
  }

  .p-xs-6 {
    padding: 5rem !important;
  }

  .pt-xs-6,.py-xs-6 {
    padding-top: 5rem !important;
  }

  .pr-xs-6,.px-xs-6 {
    padding-right: 5rem !important;
  }

  .pb-xs-6,.py-xs-6 {
    padding-bottom: 5rem !important;
  }

  .pl-xs-6,.px-xs-6 {
    padding-left: 5rem !important;
  }

  .p-xs-7 {
    padding: 7rem !important;
  }

  .pt-xs-7,.py-xs-7 {
    padding-top: 7rem !important;
  }

  .pr-xs-7,.px-xs-7 {
    padding-right: 7rem !important;
  }

  .pb-xs-7,.py-xs-7 {
    padding-bottom: 7rem !important;
  }

  .pl-xs-7,.px-xs-7 {
    padding-left: 7rem !important;
  }

  .p-xs-8 {
    padding: 10rem !important;
  }

  .pt-xs-8,.py-xs-8 {
    padding-top: 10rem !important;
  }

  .pr-xs-8,.px-xs-8 {
    padding-right: 10rem !important;
  }

  .pb-xs-8,.py-xs-8 {
    padding-bottom: 10rem !important;
  }

  .pl-xs-8,.px-xs-8 {
    padding-left: 10rem !important;
  }

  .p-xs-9 {
    padding: 13rem !important;
  }

  .pt-xs-9,.py-xs-9 {
    padding-top: 13rem !important;
  }

  .pr-xs-9,.px-xs-9 {
    padding-right: 13rem !important;
  }

  .pb-xs-9,.py-xs-9 {
    padding-bottom: 13rem !important;
  }

  .pl-xs-9,.px-xs-9 {
    padding-left: 13rem !important;
  }

  .p-xs-10 {
    padding: 16rem !important;
  }

  .pt-xs-10,.py-xs-10 {
    padding-top: 16rem !important;
  }

  .pr-xs-10,.px-xs-10 {
    padding-right: 16rem !important;
  }

  .pb-xs-10,.py-xs-10 {
    padding-bottom: 16rem !important;
  }

  .pl-xs-10,.px-xs-10 {
    padding-left: 16rem !important;
  }
}

@media (min-width: 576px) {
  .m-sm-neg-10 {
    margin: -16rem !important;
  }

  .mt-sm-neg-10,.my-sm-neg-10 {
    margin-top: -16rem !important;
  }

  .mr-sm-neg-10,.mx-sm-neg-10 {
    margin-right: -16rem !important;
  }

  .mb-sm-neg-10,.my-sm-neg-10 {
    margin-bottom: -16rem !important;
  }

  .ml-sm-neg-10,.mx-sm-neg-10 {
    margin-left: -16rem !important;
  }

  .m-sm-neg-9 {
    margin: -13rem !important;
  }

  .mt-sm-neg-9,.my-sm-neg-9 {
    margin-top: -13rem !important;
  }

  .mr-sm-neg-9,.mx-sm-neg-9 {
    margin-right: -13rem !important;
  }

  .mb-sm-neg-9,.my-sm-neg-9 {
    margin-bottom: -13rem !important;
  }

  .ml-sm-neg-9,.mx-sm-9 {
    margin-left: -13rem !important;
  }

  .m-sm-neg-8 {
    margin: -10rem !important;
  }

  .mt-sm-neg-8,.my-sm-neg-8 {
    margin-top: -10rem !important;
  }

  .mr-sm-neg-8,.mx-sm-neg-8 {
    margin-right: -10rem !important;
  }

  .mb-sm-neg-8,.my-sm-neg-8 {
    margin-bottom: -10rem !important;
  }

  .ml-sm-neg-8,.mx-sm-neg-8 {
    margin-left: -10rem !important;
  }

  .m-sm-neg-7 {
    margin: -7rem !important;
  }

  .mt-sm-neg-7,.my-sm-neg-7 {
    margin-top: -7rem !important;
  }

  .mr-sm-neg-7,.mx-sm-neg-7 {
    margin-right: -7rem !important;
  }

  .mb-sm-neg-7,.my-sm-neg-7 {
    margin-bottom: -7rem !important;
  }

  .ml-sm-neg-7,.mx-sm-neg-7 {
    margin-left: -7rem !important;
  }

  .m-sm-neg-6 {
    margin: -5rem !important;
  }

  .mt-sm-neg-6,.my-sm-neg-6 {
    margin-top: -5rem !important;
  }

  .mr-sm-neg-6,.mx-sm-neg-6 {
    margin-right: -5rem !important;
  }

  .mb-sm-neg-6,.my-sm-neg-6 {
    margin-bottom: -5rem !important;
  }

  .ml-sm-neg-6,.mx-sm-neg-6 {
    margin-left: -5rem !important;
  }

  .m-sm-neg-5 {
    margin: -3rem !important;
  }

  .mt-sm-neg-5,.my-sm-neg-5 {
    margin-top: -3rem !important;
  }

  .mr-sm-neg-5,.mx-sm-neg-5 {
    margin-right: -3rem !important;
  }

  .mb-sm-neg-5,.my-sm-neg-5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-neg-5,.mx-sm-neg-5 {
    margin-left: -3rem !important;
  }

  .m-sm-neg-4 {
    margin: -1.5rem !important;
  }

  .mt-sm-neg-4,.my-sm-neg-4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-neg-4,.mx-sm-neg-4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-neg-4,.my-sm-neg-4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-neg-4,.mx-sm-4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-neg-3 {
    margin: -1rem !important;
  }

  .mt-sm-neg-3,.my-sm-neg-3 {
    margin-top: -1rem !important;
  }

  .mr-sm-neg-3,.mx-sm-neg-3 {
    margin-right: -1rem !important;
  }

  .mb-sm-neg-3,.my-sm-neg-3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-neg-3,.mx-sm-neg-3 {
    margin-left: -1rem !important;
  }

  .mv-sm-neg-2 {
    margin: -0.5rem !important;
  }

  .mt-sm-neg-2,.my-sm-neg-2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-neg-2,.mx-sm-neg-2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-neg-2,.my-sm-neg-2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-neg-2,.mx-sm-neg-2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-neg-1 {
    margin: -0.25rem !important;
  }

  .mt-sm-neg-1,.my-sm-neg-1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-neg-1,.mx-sm-neg-1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-neg-1,.my-sm-neg-1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-neg-1,.mx-sm-neg-1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,.my-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .m-sm-6 {
    margin: 5rem !important;
  }

  .mt-sm-6,.my-sm-6 {
    margin-top: 5rem !important;
  }

  .mr-sm-6,.mx-sm-6 {
    margin-right: 5rem !important;
  }

  .mb-sm-6,.my-sm-6 {
    margin-bottom: 5rem !important;
  }

  .ml-sm-6,.mx-sm-6 {
    margin-left: 5rem !important;
  }

  .m-sm-7 {
    margin: 7rem !important;
  }

  .mt-sm-7,.my-sm-7 {
    margin-top: 7rem !important;
  }

  .mr-sm-7,.mx-sm-7 {
    margin-right: 7rem !important;
  }

  .mb-sm-7,.my-sm-7 {
    margin-bottom: 7rem !important;
  }

  .ml-sm-7,.mx-sm-7 {
    margin-left: 7rem !important;
  }

  .m-sm-8 {
    margin: 10rem !important;
  }

  .mt-sm-8,.my-sm-8 {
    margin-top: 10rem !important;
  }

  .mr-sm-8,.mx-sm-8 {
    margin-right: 10rem !important;
  }

  .mb-sm-8,.my-sm-8 {
    margin-bottom: 10rem !important;
  }

  .ml-sm-8,.mx-sm-8 {
    margin-left: 10rem !important;
  }

  .m-sm-9 {
    margin: 13rem !important;
  }

  .mt-sm-9,.my-sm-9 {
    margin-top: 13rem !important;
  }

  .mr-sm-9,.mx-sm-9 {
    margin-right: 13rem !important;
  }

  .mb-sm-9,.my-sm-9 {
    margin-bottom: 13rem !important;
  }

  .ml-sm-9,.mx-sm-9 {
    margin-left: 13rem !important;
  }

  .m-sm-10 {
    margin: 16rem !important;
  }

  .mt-sm-10,.my-sm-10 {
    margin-top: 16rem !important;
  }

  .mr-sm-10,.mx-sm-10 {
    margin-right: 16rem !important;
  }

  .mb-sm-10,.my-sm-10 {
    margin-bottom: 16rem !important;
  }

  .ml-sm-10,.mx-sm-10 {
    margin-left: 16rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,.px-sm-5 {
    padding-left: 3rem !important;
  }

  .p-sm-6 {
    padding: 5rem !important;
  }

  .pt-sm-6,.py-sm-6 {
    padding-top: 5rem !important;
  }

  .pr-sm-6,.px-sm-6 {
    padding-right: 5rem !important;
  }

  .pb-sm-6,.py-sm-6 {
    padding-bottom: 5rem !important;
  }

  .pl-sm-6,.px-sm-6 {
    padding-left: 5rem !important;
  }

  .p-sm-7 {
    padding: 7rem !important;
  }

  .pt-sm-7,.py-sm-7 {
    padding-top: 7rem !important;
  }

  .pr-sm-7,.px-sm-7 {
    padding-right: 7rem !important;
  }

  .pb-sm-7,.py-sm-7 {
    padding-bottom: 7rem !important;
  }

  .pl-sm-7,.px-sm-7 {
    padding-left: 7rem !important;
  }

  .p-sm-8 {
    padding: 10rem !important;
  }

  .pt-sm-8,.py-sm-8 {
    padding-top: 10rem !important;
  }

  .pr-sm-8,.px-sm-8 {
    padding-right: 10rem !important;
  }

  .pb-sm-8,.py-sm-8 {
    padding-bottom: 10rem !important;
  }

  .pl-sm-8,.px-sm-8 {
    padding-left: 10rem !important;
  }

  .p-sm-9 {
    padding: 13rem !important;
  }

  .pt-sm-9,.py-sm-9 {
    padding-top: 13rem !important;
  }

  .pr-sm-9,.px-sm-9 {
    padding-right: 13rem !important;
  }

  .pb-sm-9,.py-sm-9 {
    padding-bottom: 13rem !important;
  }

  .pl-sm-9,.px-sm-9 {
    padding-left: 13rem !important;
  }

  .p-sm-10 {
    padding: 16rem !important;
  }

  .pt-sm-10,.py-sm-10 {
    padding-top: 16rem !important;
  }

  .pr-sm-10,.px-sm-10 {
    padding-right: 16rem !important;
  }

  .pb-sm-10,.py-sm-10 {
    padding-bottom: 16rem !important;
  }

  .pl-sm-10,.px-sm-10 {
    padding-left: 16rem !important;
  }
}

@media (min-width: 768px) {
  .m-md-neg-10 {
    margin: -16rem !important;
  }

  .mt-md-neg-10,.my-md-neg-10 {
    margin-top: -16rem !important;
  }

  .mr-md-neg-10,.mx-md-neg-10 {
    margin-right: -16rem !important;
  }

  .mb-md-neg-10,.my-md-neg-10 {
    margin-bottom: -16rem !important;
  }

  .ml-md-neg-10,.mx-md-neg-10 {
    margin-left: -16rem !important;
  }

  .m-md-neg-9 {
    margin: -13rem !important;
  }

  .mt-md-neg-9,.my-md-neg-9 {
    margin-top: -13rem !important;
  }

  .mr-md-neg-9,.mx-md-neg-9 {
    margin-right: -13rem !important;
  }

  .mb-md-neg-9,.my-md-neg-9 {
    margin-bottom: -13rem !important;
  }

  .ml-md-neg-9,.mx-md-9 {
    margin-left: -13rem !important;
  }

  .m-md-neg-8 {
    margin: -10rem !important;
  }

  .mt-md-neg-8,.my-md-neg-8 {
    margin-top: -10rem !important;
  }

  .mr-md-neg-8,.mx-md-neg-8 {
    margin-right: -10rem !important;
  }

  .mb-md-neg-8,.my-md-neg-8 {
    margin-bottom: -10rem !important;
  }

  .ml-md-neg-8,.mx-md-neg-8 {
    margin-left: -10rem !important;
  }

  .m-md-neg-7 {
    margin: -7rem !important;
  }

  .mt-md-neg-7,.my-md-neg-7 {
    margin-top: -7rem !important;
  }

  .mr-md-neg-7,.mx-md-neg-7 {
    margin-right: -7rem !important;
  }

  .mb-md-neg-7,.my-md-neg-7 {
    margin-bottom: -7rem !important;
  }

  .ml-md-neg-7,.mx-md-neg-7 {
    margin-left: -7rem !important;
  }

  .m-md-neg-6 {
    margin: -5rem !important;
  }

  .mt-md-neg-6,.my-md-neg-6 {
    margin-top: -5rem !important;
  }

  .mr-md-neg-6,.mx-md-neg-6 {
    margin-right: -5rem !important;
  }

  .mb-md-neg-6,.my-md-neg-6 {
    margin-bottom: -5rem !important;
  }

  .ml-md-neg-6,.mx-md-neg-6 {
    margin-left: -5rem !important;
  }

  .m-md-neg-5 {
    margin: -3rem !important;
  }

  .mt-md-neg-5,.my-md-neg-5 {
    margin-top: -3rem !important;
  }

  .m-md-neg-5 {
    margin: -3rem !important;
  }

  .mt-md-neg-5,.my-md-neg-5 {
    margin-top: -3rem !important;
  }

  .mr-md-neg-5,.mx-md-neg-5 {
    margin-right: -3rem !important;
  }

  .mb-md-neg-5,.my-md-neg-5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-neg-5,.mx-md-neg-5 {
    margin-left: -3rem !important;
  }

  .m-md-neg-4 {
    margin: -1.5rem !important;
  }

  .mt-md-neg-4,.my-md-neg-4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-neg-4,.mx-md-neg-4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-neg-4,.my-md-neg-4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-neg-4,.mx-md-4 {
    margin-left: -1.5rem !important;
  }

  .m-md-neg-3 {
    margin: -1rem !important;
  }

  .mt-md-neg-3,.my-md-neg-3 {
    margin-top: -1rem !important;
  }

  .mr-md-neg-3,.mx-md-neg-3 {
    margin-right: -1rem !important;
  }

  .mb-md-neg-3,.my-md-neg-3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-neg-3,.mx-md-neg-3 {
    margin-left: -1rem !important;
  }

  .mv-md-neg-2 {
    margin: -0.5rem !important;
  }

  .mt-md-neg-2,.my-md-neg-2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-neg-2,.mx-md-neg-2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-neg-2,.my-md-neg-2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-neg-2,.mx-md-neg-2 {
    margin-left: -0.5rem !important;
  }

  .m-md-neg-1 {
    margin: -0.25rem !important;
  }

  .mt-md-neg-1,.my-md-neg-1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-neg-1,.mx-md-neg-1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-neg-1,.my-md-neg-1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-neg-1,.mx-md-neg-1 {
    margin-left: -0.25rem !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,.my-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,.mx-md-5 {
    margin-left: 3rem !important;
  }

  .m-md-6 {
    margin: 5rem !important;
  }

  .mt-md-6,.my-md-6 {
    margin-top: 5rem !important;
  }

  .mr-md-6,.mx-md-6 {
    margin-right: 5rem !important;
  }

  .mb-md-6,.my-md-6 {
    margin-bottom: 5rem !important;
  }

  .ml-md-6,.mx-md-6 {
    margin-left: 5rem !important;
  }

  .m-md-7 {
    margin: 7rem !important;
  }

  .mt-md-7,.my-md-7 {
    margin-top: 7rem !important;
  }

  .mr-md-7,.mx-md-7 {
    margin-right: 7rem !important;
  }

  .mb-md-7,.my-md-7 {
    margin-bottom: 7rem !important;
  }

  .ml-md-7,.mx-md-7 {
    margin-left: 7rem !important;
  }

  .m-md-8 {
    margin: 10rem !important;
  }

  .mt-md-8,.my-md-8 {
    margin-top: 10rem !important;
  }

  .mr-md-8,.mx-md-8 {
    margin-right: 10rem !important;
  }

  .mb-md-8,.my-md-8 {
    margin-bottom: 10rem !important;
  }

  .ml-md-8,.mx-md-8 {
    margin-left: 10rem !important;
  }

  .m-md-9 {
    margin: 13rem !important;
  }

  .mt-md-9,.my-md-9 {
    margin-top: 13rem !important;
  }

  .mr-md-9,.mx-md-9 {
    margin-right: 13rem !important;
  }

  .mb-md-9,.my-md-9 {
    margin-bottom: 13rem !important;
  }

  .ml-md-9,.mx-md-9 {
    margin-left: 13rem !important;
  }

  .m-md-10 {
    margin: 16rem !important;
  }

  .mt-md-10,.my-md-10 {
    margin-top: 16rem !important;
  }

  .mr-md-10,.mx-md-10 {
    margin-right: 16rem !important;
  }

  .mb-md-10,.my-md-10 {
    margin-bottom: 16rem !important;
  }

  .ml-md-10,.mx-md-10 {
    margin-left: 16rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,.px-md-5 {
    padding-left: 3rem !important;
  }

  .p-md-6 {
    padding: 5rem !important;
  }

  .pt-md-6,.py-md-6 {
    padding-top: 5rem !important;
  }

  .pr-md-6,.px-md-6 {
    padding-right: 5rem !important;
  }

  .pb-md-6,.py-md-6 {
    padding-bottom: 5rem !important;
  }

  .pl-md-6,.px-md-6 {
    padding-left: 5rem !important;
  }

  .p-md-7 {
    padding: 7rem !important;
  }

  .pt-md-7,.py-md-7 {
    padding-top: 7rem !important;
  }

  .pr-md-7,.px-md-7 {
    padding-right: 7rem !important;
  }

  .pb-md-7,.py-md-7 {
    padding-bottom: 7rem !important;
  }

  .pl-md-7,.px-md-7 {
    padding-left: 7rem !important;
  }

  .p-md-8 {
    padding: 10rem !important;
  }

  .pt-md-8,.py-md-8 {
    padding-top: 10rem !important;
  }

  .pr-md-8,.px-md-8 {
    padding-right: 10rem !important;
  }

  .pb-md-8,.py-md-8 {
    padding-bottom: 10rem !important;
  }

  .pl-md-8,.px-md-8 {
    padding-left: 10rem !important;
  }

  .p-md-9 {
    padding: 13rem !important;
  }

  .pt-md-9,.py-md-9 {
    padding-top: 13rem !important;
  }

  .pr-md-9,.px-md-9 {
    padding-right: 13rem !important;
  }

  .pb-md-9,.py-md-9 {
    padding-bottom: 13rem !important;
  }

  .pl-md-9,.px-md-9 {
    padding-left: 13rem !important;
  }

  .p-md-10 {
    padding: 16rem !important;
  }

  .pt-md-10,.py-md-10 {
    padding-top: 16rem !important;
  }

  .pr-md-10,.px-md-10 {
    padding-right: 16rem !important;
  }

  .pb-md-10,.py-md-10 {
    padding-bottom: 16rem !important;
  }

  .pl-md-10,.px-md-10 {
    padding-left: 16rem !important;
  }
}

@media (min-width: 992px) {
  .m-lg-neg-10 {
    margin: -16rem !important;
  }

  .mt-lg-neg-10,.my-lg-neg-10 {
    margin-top: -16rem !important;
  }

  .mr-lg-neg-10,.mx-lg-neg-10 {
    margin-right: -16rem !important;
  }

  .mb-lg-neg-10,.my-lg-neg-10 {
    margin-bottom: -16rem !important;
  }

  .ml-lg-neg-10,.mx-lg-neg-10 {
    margin-left: -16rem !important;
  }

  .m-lg-neg-9 {
    margin: -13rem !important;
  }

  .mt-lg-neg-9,.my-lg-neg-9 {
    margin-top: -13rem !important;
  }

  .mr-lg-neg-9,.mx-lg-neg-9 {
    margin-right: -13rem !important;
  }

  .mb-lg-neg-9,.my-lg-neg-9 {
    margin-bottom: -13rem !important;
  }

  .ml-lg-neg-9,.mx-lg-9 {
    margin-left: -13rem !important;
  }

  .m-lg-neg-8 {
    margin: -10rem !important;
  }

  .mt-lg-neg-8,.my-lg-neg-8 {
    margin-top: -10rem !important;
  }

  .mr-lg-neg-8,.mx-lg-neg-8 {
    margin-right: -10rem !important;
  }

  .mb-lg-neg-8,.my-lg-neg-8 {
    margin-bottom: -10rem !important;
  }

  .ml-lg-neg-8,.mx-lg-neg-8 {
    margin-left: -10rem !important;
  }

  .m-lg-neg-7 {
    margin: -7rem !important;
  }

  .mt-lg-neg-7,.my-lg-neg-7 {
    margin-top: -7rem !important;
  }

  .mr-lg-neg-7,.mx-lg-neg-7 {
    margin-right: -7rem !important;
  }

  .mb-lg-neg-7,.my-lg-neg-7 {
    margin-bottom: -7rem !important;
  }

  .ml-lg-neg-7,.mx-lg-neg-7 {
    margin-left: -7rem !important;
  }

  .m-lg-neg-6 {
    margin: -5rem !important;
  }

  .mt-lg-neg-6,.my-lg-neg-6 {
    margin-top: -5rem !important;
  }

  .mr-lg-neg-6,.mx-lg-neg-6 {
    margin-right: -5rem !important;
  }

  .mb-lg-neg-6,.my-lg-neg-6 {
    margin-bottom: -5rem !important;
  }

  .ml-lg-neg-6,.mx-lg-neg-6 {
    margin-left: -5rem !important;
  }

  .m-lg-neg-5 {
    margin: -3rem !important;
  }

  .mt-lg-neg-5,.my-lg-neg-5 {
    margin-top: -3rem !important;
  }

  .mr-lg-neg-5,.mx-lg-neg-5 {
    margin-right: -3rem !important;
  }

  .mb-lg-neg-5,.my-lg-neg-5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-neg-5,.mx-lg-neg-5 {
    margin-left: -3rem !important;
  }

  .m-lg-neg-4 {
    margin: -1.5rem !important;
  }

  .mt-lg-neg-4,.my-lg-neg-4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-neg-4,.mx-lg-neg-4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-neg-4,.my-lg-neg-4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-neg-4,.mx-lg-4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-neg-3 {
    margin: -1rem !important;
  }

  .mt-lg-neg-3,.my-lg-neg-3 {
    margin-top: -1rem !important;
  }

  .mr-lg-neg-3,.mx-lg-neg-3 {
    margin-right: -1rem !important;
  }

  .mb-lg-neg-3,.my-lg-neg-3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-neg-3,.mx-lg-neg-3 {
    margin-left: -1rem !important;
  }

  .mv-lg-neg-2 {
    margin: -0.5rem !important;
  }

  .mt-lg-neg-2,.my-lg-neg-2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-neg-2,.mx-lg-neg-2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-neg-2,.my-lg-neg-2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-neg-2,.mx-lg-neg-2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-neg-1 {
    margin: -0.25rem !important;
  }

  .mt-lg-neg-1,.my-lg-neg-1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-neg-1,.mx-lg-neg-1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-neg-1,.my-lg-neg-1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-neg-1,.mx-sm-neg-1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,.my-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .m-lg-6 {
    margin: 5rem !important;
  }

  .mt-lg-6,.my-lg-6 {
    margin-top: 5rem !important;
  }

  .mr-lg-6,.mx-lg-6 {
    margin-right: 5rem !important;
  }

  .mb-lg-6,.my-lg-6 {
    margin-bottom: 5rem !important;
  }

  .ml-lg-6,.mx-lg-6 {
    margin-left: 5rem !important;
  }

  .m-lg-7 {
    margin: 7rem !important;
  }

  .mt-lg-7,.my-lg-7 {
    margin-top: 7rem !important;
  }

  .mr-lg-7,.mx-lg-7 {
    margin-right: 7rem !important;
  }

  .mb-lg-7,.my-lg-7 {
    margin-bottom: 7rem !important;
  }

  .ml-lg-7,.mx-lg-7 {
    margin-left: 7rem !important;
  }

  .m-lg-8 {
    margin: 10rem !important;
  }

  .mt-lg-8,.my-lg-8 {
    margin-top: 10rem !important;
  }

  .mr-lg-8,.mx-lg-8 {
    margin-right: 10rem !important;
  }

  .mb-lg-8,.my-lg-8 {
    margin-bottom: 10rem !important;
  }

  .ml-lg-8,.mx-lg-8 {
    margin-left: 10rem !important;
  }

  .m-lg-9 {
    margin: 13rem !important;
  }

  .mt-lg-9,.my-lg-9 {
    margin-top: 13rem !important;
  }

  .mr-lg-9,.mx-lg-9 {
    margin-right: 13rem !important;
  }

  .mb-lg-9,.my-lg-9 {
    margin-bottom: 13rem !important;
  }

  .ml-lg-9,.mx-lg-9 {
    margin-left: 13rem !important;
  }

  .m-lg-10 {
    margin: 16rem !important;
  }

  .mt-lg-10,.my-lg-10 {
    margin-top: 16rem !important;
  }

  .mr-lg-10,.mx-lg-10 {
    margin-right: 16rem !important;
  }

  .mb-lg-10,.my-lg-10 {
    margin-bottom: 16rem !important;
  }

  .ml-lg-10,.mx-lg-10 {
    margin-left: 16rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,.px-lg-5 {
    padding-left: 3rem !important;
  }

  .p-lg-6 {
    padding: 5rem !important;
  }

  .pt-lg-6,.py-lg-6 {
    padding-top: 5rem !important;
  }

  .pr-lg-6,.px-lg-6 {
    padding-right: 5rem !important;
  }

  .pb-lg-6,.py-lg-6 {
    padding-bottom: 5rem !important;
  }

  .pl-lg-6,.px-lg-6 {
    padding-left: 5rem !important;
  }

  .p-lg-7 {
    padding: 7rem !important;
  }

  .pt-lg-7,.py-lg-7 {
    padding-top: 7rem !important;
  }

  .pr-lg-7,.px-lg-7 {
    padding-right: 7rem !important;
  }

  .pb-lg-7,.py-lg-7 {
    padding-bottom: 7rem !important;
  }

  .pl-lg-7,.px-lg-7 {
    padding-left: 7rem !important;
  }

  .p-lg-8 {
    padding: 10rem !important;
  }

  .pt-lg-8,.py-lg-8 {
    padding-top: 10rem !important;
  }

  .pr-lg-8,.px-lg-8 {
    padding-right: 10rem !important;
  }

  .pb-lg-8,.py-lg-8 {
    padding-bottom: 10rem !important;
  }

  .pl-lg-8,.px-lg-8 {
    padding-left: 10rem !important;
  }

  .p-lg-9 {
    padding: 13rem !important;
  }

  .pt-lg-9,.py-lg-9 {
    padding-top: 13rem !important;
  }

  .pr-lg-9,.px-lg-9 {
    padding-right: 13rem !important;
  }

  .pb-lg-9,.py-lg-9 {
    padding-bottom: 13rem !important;
  }

  .pl-lg-9,.px-lg-9 {
    padding-left: 13rem !important;
  }

  .p-lg-10 {
    padding: 16rem !important;
  }

  .pt-lg-10,.py-lg-10 {
    padding-top: 16rem !important;
  }

  .pr-lg-10,.px-lg-10 {
    padding-right: 16rem !important;
  }

  .pb-lg-10,.py-lg-10 {
    padding-bottom: 16rem !important;
  }

  .pl-lg-10,.px-lg-10 {
    padding-left: 16rem !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-neg-10 {
    margin: -16rem !important;
  }

  .mt-xl-neg-10,.my-xl-neg-10 {
    margin-top: -16rem !important;
  }

  .mr-xl-neg-10,.mx-xl-neg-10 {
    margin-right: -16rem !important;
  }

  .mb-xl-neg-10,.my-xl-neg-10 {
    margin-bottom: -16rem !important;
  }

  .ml-xl-neg-10,.mx-xl-neg-10 {
    margin-left: -16rem !important;
  }

  .m-xl-neg-9 {
    margin: -13rem !important;
  }

  .mt-xl-neg-9,.my-xl-neg-9 {
    margin-top: -13rem !important;
  }

  .mr-xl-neg-9,.mx-xl-neg-9 {
    margin-right: -13rem !important;
  }

  .mb-xl-neg-9,.my-xl-neg-9 {
    margin-bottom: -13rem !important;
  }

  .ml-xl-neg-9,.mx-xl-9 {
    margin-left: -13rem !important;
  }

  .m-xl-neg-8 {
    margin: -10rem !important;
  }

  .mt-xl-neg-8,.my-xl-neg-8 {
    margin-top: -10rem !important;
  }

  .mr-xl-neg-8,.mx-xl-neg-8 {
    margin-right: -10rem !important;
  }

  .mb-xl-neg-8,.my-xl-neg-8 {
    margin-bottom: -10rem !important;
  }

  .ml-xl-neg-8,.mx-xl-neg-8 {
    margin-left: -10rem !important;
  }

  .m-xl-neg-7 {
    margin: -7rem !important;
  }

  .mt-xl-neg-7,.my-xl-neg-7 {
    margin-top: -7rem !important;
  }

  .mr-xl-neg-7,.mx-xl-neg-7 {
    margin-right: -7rem !important;
  }

  .mb-xl-neg-7,.my-xl-neg-7 {
    margin-bottom: -7rem !important;
  }

  .ml-xl-neg-7,.mx-xl-neg-7 {
    margin-left: -7rem !important;
  }

  .m-xl-neg-6 {
    margin: -5rem !important;
  }

  .mt-xl-neg-6,.my-xl-neg-6 {
    margin-top: -5rem !important;
  }

  .mr-xl-neg-6,.mx-xl-neg-6 {
    margin-right: -5rem !important;
  }

  .mb-xl-neg-6,.my-xl-neg-6 {
    margin-bottom: -5rem !important;
  }

  .ml-xl-neg-6,.mx-xl-neg-6 {
    margin-left: -5rem !important;
  }

  .m-xl-neg-5 {
    margin: -3rem !important;
  }

  .mt-xl-neg-5,.my-xl-neg-5 {
    margin-top: -3rem !important;
  }

  .mr-xl-neg-5,.mx-xl-neg-5 {
    margin-right: -3rem !important;
  }

  .mb-xl-neg-5,.my-xl-neg-5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-neg-5,.mx-xl-neg-5 {
    margin-left: -3rem !important;
  }

  .m-xl-neg-4 {
    margin: -1.5rem !important;
  }

  .mt-xl-neg-4,.my-xl-neg-4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-neg-4,.mx-xl-neg-4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-neg-4,.my-xl-neg-4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-neg-4,.mx-xl-4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-neg-3 {
    margin: -1rem !important;
  }

  .mt-xl-neg-3,.my-xl-neg-3 {
    margin-top: -1rem !important;
  }

  .mr-xl-neg-3,.mx-xl-neg-3 {
    margin-right: -1rem !important;
  }

  .mb-xl-neg-3,.my-xl-neg-3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-neg-3,.mx-xl-neg-3 {
    margin-left: -1rem !important;
  }

  .mv-xl-neg-2 {
    margin: -0.5rem !important;
  }

  .mt-xl-neg-2,.my-xl-neg-2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-neg-2,.mx-xl-neg-2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-neg-2,.my-xl-neg-2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-neg-2,.mx-xl-neg-2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-neg-1 {
    margin: -0.25rem !important;
  }

  .mt-xl-neg-1,.my-xl-neg-1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-neg-1,.mx-xl-neg-1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-neg-1,.my-xl-neg-1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-neg-1,.mx-xl-neg-1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,.my-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .m-xl-6 {
    margin: 5rem !important;
  }

  .mt-xl-6,.my-xl-6 {
    margin-top: 5rem !important;
  }

  .mr-xl-6,.mx-xl-6 {
    margin-right: 5rem !important;
  }

  .mb-xl-6,.my-xl-6 {
    margin-bottom: 5rem !important;
  }

  .ml-xl-6,.mx-xl-6 {
    margin-left: 5rem !important;
  }

  .m-xl-7 {
    margin: 7rem !important;
  }

  .mt-xl-7,.my-xl-7 {
    margin-top: 7rem !important;
  }

  .mr-xl-7,.mx-xl-7 {
    margin-right: 7rem !important;
  }

  .mb-xl-7,.my-xl-7 {
    margin-bottom: 7rem !important;
  }

  .ml-xl-7,.mx-xl-7 {
    margin-left: 7rem !important;
  }

  .m-xl-8 {
    margin: 10rem !important;
  }

  .mt-xl-8,.my-xl-8 {
    margin-top: 10rem !important;
  }

  .mr-xl-8,.mx-xl-8 {
    margin-right: 10rem !important;
  }

  .mb-xl-8,.my-xl-8 {
    margin-bottom: 10rem !important;
  }

  .ml-xl-8,.mx-xl-8 {
    margin-left: 10rem !important;
  }

  .m-xl-9 {
    margin: 13rem !important;
  }

  .mt-xl-9,.my-xl-9 {
    margin-top: 13rem !important;
  }

  .mr-xl-9,.mx-xl-9 {
    margin-right: 13rem !important;
  }

  .mb-xl-9,.my-xl-9 {
    margin-bottom: 13rem !important;
  }

  .ml-xl-9,.mx-xl-9 {
    margin-left: 13rem !important;
  }

  .m-xl-10 {
    margin: 16rem !important;
  }

  .mt-xl-10,.my-xl-10 {
    margin-top: 16rem !important;
  }

  .mr-xl-10,.mx-xl-10 {
    margin-right: 16rem !important;
  }

  .mb-xl-10,.my-xl-10 {
    margin-bottom: 16rem !important;
  }

  .ml-xl-10,.mx-xl-10 {
    margin-left: 16rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,.px-xl-5 {
    padding-left: 3rem !important;
  }

  .p-xl-6 {
    padding: 5rem !important;
  }

  .pt-xl-6,.py-xl-6 {
    padding-top: 5rem !important;
  }

  .pr-xl-6,.px-xl-6 {
    padding-right: 5rem !important;
  }

  .pb-xl-6,.py-xl-6 {
    padding-bottom: 5rem !important;
  }

  .pl-xl-6,.px-xl-6 {
    padding-left: 5rem !important;
  }

  .p-xl-7 {
    padding: 7rem !important;
  }

  .pt-xl-7,.py-xl-7 {
    padding-top: 7rem !important;
  }

  .pr-xl-7,.px-xl-7 {
    padding-right: 7rem !important;
  }

  .pb-xl-7,.py-xl-7 {
    padding-bottom: 7rem !important;
  }

  .pl-xl-7,.px-xl-7 {
    padding-left: 7rem !important;
  }

  .p-xl-8 {
    padding: 10rem !important;
  }

  .pt-xl-8,.py-xl-8 {
    padding-top: 10rem !important;
  }

  .pr-xl-8,.px-xl-8 {
    padding-right: 10rem !important;
  }

  .pb-xl-8,.py-xl-8 {
    padding-bottom: 10rem !important;
  }

  .pl-xl-8,.px-xl-8 {
    padding-left: 10rem !important;
  }

  .p-xl-9 {
    padding: 13rem !important;
  }

  .pt-xl-9,.py-xl-9 {
    padding-top: 13rem !important;
  }

  .pr-xl-9,.px-xl-9 {
    padding-right: 13rem !important;
  }

  .pb-xl-9,.py-xl-9 {
    padding-bottom: 13rem !important;
  }

  .pl-xl-9,.px-xl-9 {
    padding-left: 13rem !important;
  }

  .p-xl-10 {
    padding: 16rem !important;
  }

  .pt-xl-10,.py-xl-10 {
    padding-top: 16rem !important;
  }

  .pr-xl-10,.px-xl-10 {
    padding-right: 16rem !important;
  }

  .pb-xl-10,.py-xl-10 {
    padding-bottom: 16rem !important;
  }

  .pl-xl-10,.px-xl-10 {
    padding-left: 16rem !important;
  }
}

.my-30 {
  margin-top: 1.875rem !important;
  margin-bottom: 1.875rem !important;
}

.carousel-review-date, .carousel-review-title, .carousel-review-body, .carousel-review-author, .carousel-read-more  {
  color: #452041 !important;
  font-style: normal !important;
  text-rendering: geometricPrecision;
 }
 .carousel-top-panel {
  border-color: #452041 !important;
  border-bottom: 2px solid;
  padding-bottom: 8px;
  margin-bottom: 25px;
  padding-top: 5px;

  float: left !important;
  width: 100%;
}
.carousel-top-panel .headline {
  font-size: 24px;
  font-weight: 700;
  font-family: "Glysa","Book Antiqua","Palatino Linotype",Palatino,Bookman,Georgia,"Times New Roman",Times,serif;
}
.stars-container {
  margin-bottom: 9px;
}
 .carousel-stars {
  font-size: 24px;
 
 }

.carousel-review-date {
  line-height: 33px;
  padding-left: 12px;
    font-size: 12px;
}
.carousel-review-title {
    font-size: 1.8rem !important;
    font-weight: 700;
    line-height: 24px;
    margin-top: 1px;
    margin-bottom: 13px;
    font-family: "Glysa","Book Antiqua","Palatino Linotype",Palatino,Bookman,Georgia,"Times New Roman",Times,serif;
}
.carousel-num-of-reviews  {
  padding-left: 10px;
}

.carousel-review-body {
  text-align: left;
  width: 76%;
}
.carousel-review-author {
  text-align: left;
  margin-top: 9px;
  float: left;

}
.carousel-read-more {
  font-weight: bold !important;
  margin-top: 0.4rem;
  white-space: nowrap;
  vertical-align: top;
}
.carousel-review {
  padding-right: 20px;
}
.embed-responsive-lg-16by9:before {
  padding-top: 56.25%;
}
@media (min-width: 768px) {
.embed-responsive-md-16by9:before {
    padding-top: 56.25%;
}
}
.embed-responsive-1by1:before {
  padding-top: 100%;
}
.image-overlay-content {
  position: relative;
  z-index: 975;
}
.bg-blue {
  background-color: #1d2858 !important;
}

.blog-tags-list {
  overflow-x: scroll;
  white-space: nowrap;
  max-width: 80vw;
}

@media (min-width: 768px) {
  .blog-tags-list {
    max-width: initial;
  }
}

.blog-tags-list a {
  transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .blog-tags-list a {
    transition: none;
  }
}

.blog-tags-list a:hover {
  text-decoration: none;
  color: #fff !important;
}

.blog-tags-list-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1.25rem;
  height: 100%;
  background: linear-gradient(90deg, rgba(29,40,88,0) 0%, #1d2858 50%);
  margin-right: 5vw;
}
.border-secondary {
  border-color: #fff !important;
}
.text-secondary {
  color: #fff !important;
}

.blog-tags-list {
  overflow-x: scroll;
  white-space: nowrap;
  max-width: 80vw;
  font-size: 16px;
}

@media (min-width: 768px) {
  .blog-tags-list {
    max-width: initial;
  }
}

.blog-tags-list a {
  transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .blog-tags-list a {
    transition: none;
  }
}

.blog-tags-list a:hover {
  text-decoration: none;
  color: #fff !important;
}

.blog-tags-list-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1.25rem;
  height: 100%;
  background: linear-gradient(90deg, rgba(29,40,88,0) 0%, #1d2858 50%);
  margin-right: 5vw;
}

.text-lt-blue {
  color: #618ac7 !important;
}

@media (min-width: 576px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-static {
    display: inline-block;
  }

  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }

  .form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control {
    width: auto;
  }

  .form-inline .input-group>.form-control {
    width: 100%;
  }

  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .radio,.form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .radio label,.form-inline .checkbox label {
    padding-left: 0;
  }

  .form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }

  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline {
  padding-top: 2rem;
  margin-top: 0;
  margin-bottom: 0;
}

.form-horizontal .radio,.form-horizontal .checkbox {
  min-height: 3.5rem;
}

@media (min-width: 576px) {
  .form-horizontal .control-label {
    padding-top: 2rem;
    margin-bottom: 0;
    text-align: right;
  }
}

.form-horizontal .has-feedback .form-control-feedback {
  right: 10px;
}

@media (min-width: 576px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 1.5rem;
    font-size: 1.25rem;
  }
}

@media (min-width: 576px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.form-inline-submit {
  position: relative;
}

.form-inline-submit input[type="search"],.form-inline-submit input::placeholder {
  width: 100%;
  background: transparent;
  border-bottom-color: #618ac7 !important;
  color: #618ac7 !important;
  height: 2rem;
  line-height: 1.57 !important;
  font-size: 0.875rem !important;
  padding-right: 60px !important;
  border: none;
  border-bottom: 1px solid;
  border-radius: 0;
  padding-left: 0px;
}
.form-inline-submit input[type="search"]:focus {
  outline: none !important;
  box-shadow: none !important;
}

.form-inline-submit input:-webkit-autofill,.form-inline-submit input:-webkit-autofill:hover,.form-inline-submit input:-webkit-autofill:focus,.form-inline-submit textarea:-webkit-autofill,.form-inline-submit textarea:-webkit-autofill:hover,.form-inline-submit textarea:-webkit-autofill:focus,.form-inline-submit select:-webkit-autofill,.form-inline-submit select:-webkit-autofill:hover,.form-inline-submit select:-webkit-autofill:focus {
  background: transparent;
}

.form-inline-submit button[type="submit"] {
  position: absolute;
  bottom: 5px;
  right: 0;
  background: transparent;
  border: none;
  color: white !important;
  font-size: 0.625rem;
  text-transform: uppercase;
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: 2.5px;
  padding-right: 0;
  padding-bottom: .1rem;
}

@media (min-width: 768px) {
  .form-inline-submit button[type="submit"] {
    padding-bottom: .15rem;
  }
}


.article-tags li:not(:first-child):before {
  content: '~';
  position: absolute;
  top: 0;
  left: 0;
  color: #618ac7;
  line-height: .7;
}
.article-tags li:not(:first-child):before {
  line-height: 1;
}
.pl-4, .article-tags li:not(:first-child), .px-4 {
  padding-left: 1.5rem !important;
}
.article-tags li {
  position: relative;
}
.link-display-1 {
  color: #452041;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.125rem;
  letter-spacing: 0.0625rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 950;
}
.link-display-1 {
  font-size: 0.875rem;
  line-height: 1.375rem;
  letter-spacing: 0.25rem;
}
.link-display-1-secondary, .rte-dark, .rte-dark a {
  color: #fff;
}
.link-display-1:after {
  content: "";
  background-color: #fff;
  bottom: -5px;
  height: 2px;
  left: 0;
  position: absolute;
  transition: 200ms ease-in-out all;
  width: 98%;
  z-index: 949;
}
.link-display-1:hover:after {
  background-color: #452041;
  bottom: -1px;
  transition: 200ms ease-in-out all;
}
.link-display-1.link-display-1-secondary:hover {
 color: #fff;
 text-decoration: none;
}
.link-display-1.link-display-1-secondary:after {
  content: "";
  background-color: #fff !important;
}

.link-display-1.link-display-1-secondary:hover:after {
  background-color: #fff !important;
}
.rte {
  margin: 20px 0;
}
.rte-dark {
  color: #ccdbe3 !important;
}
.text-gray-400 {
  color: #ccdbe3 !important;
}
.pagination-lt-blue span, .pagination-lt-blue a{
  font-family: "DIA",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.20rem;
  color: #fff;
  font-size: 15px;
}

.embed-responsive-50by58:before {
  padding-top: 117%;
}
.border-bottom-2 {
  border-bottom: 2px solid #777 !important;
}
.border-secondary {
  border-color: #fff !important;
}
.blog-article-list a:hover {
text-decoration: underline;
}
/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
* Get free snippets on bootpen.com
*******************************/
.modal.left .modal-dialog,
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 320px;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
     -o-transform: translate3d(0%, 0, 0);
      transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.modal.left .modal-body,
.modal.right .modal-body {
  padding: 15px 15px 80px;
}

/*Left*/
.modal.left.fade .modal-dialog{
  left: -320px;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
     -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
     -o-transition: opacity 0.3s linear, left 0.3s ease-out;
      transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog{
  left: 0;
}
  
/*Right*/
.modal.right.fade .modal-dialog {
  right: -320px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
     -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
     -o-transition: opacity 0.3s linear, right 0.3s ease-out;
      transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
  right: 0;
}

/* ----- MODAL STYLE ----- */
.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  border-bottom-color: #EEEEEE;
  background-color: #FAFAFA;
}
.offcanvas-wrapper .modal-body{
padding: 0px !important;
}
.offcanvas-menu  {
  padding: 0px;
}

.offcanvas-menu li {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    height: 60px;
    font-size: 13px;
    font-family: "Georgia", sans-serif;
    line-height: 1.43;
    letter-spacing: 0px;
  font-weight: bold;
    text-transform: uppercase;
    padding: 8px 24px;
    color: #452141;
    border-bottom: 1px solid rgb(222, 222, 222);
}
.offcanvas-menu li a {
    color: #333333;
  position: relative;

}
.offcanvas-menu li a::after {
    display: block;
    content: " ";
    position: absolute;
    left: 0px;
    width: 0%;
    bottom: -3px;
    height: 2px;
    background:#452141;
    transition: width 0.25s ease-in-out 0s;
}
.offcanvas-menu li a:hover::after {
    width: 100%;
}

.bg-tan {
    background-color: #f1e4d7 !important;
}
.bg-secondary {
    background-color: #fff !important;
}
.faqs  .link-display-1-active, .faqs  .link-display-1.active {
  color: #452041;
  font-size: 11px;
    text-decoration: none !important;
}
.faqs .link-display-1-active:after, .faqs  .link-display-1.active:after {
    background-color: #452041;
    bottom: -1px;
    transition: 200ms ease-in-out all;
}
.panel-link [aria-expanded="true"] {
    margin-top: -27px;
    transition: all 200ms ease-out;
}
.panel-link {
    overflow: hidden;
}
.img-responsive {
    max-width: 100%;
    height: auto;
}
.contact-form input{
background-color: transparent;
}

.video .video-wraper {
    margin-bottom: 30px;
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
    overflow: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    box-shadow: 0px 1px 3px rgba(0,0,0,.08)!important;
}
.video .video-wraper .video-img {
    position: relative;
    overflow: hidden;
}
.video .video-wraper .video-info {
    padding: 15px;
}
.video .video-wraper .video-info p {
    font-family: 'Georgia';
    font-size: 14px;
    line-height: 1.5;
    color: #452141;
    margin-bottom: 0;
}

.video-thumbnail {
  position: relative;
  display: inline-block;
  cursor: pointer;
  }
  .video-thumbnail::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  /* content: "\f01d"; */
  content: "\ea15";
  
  font-family: 'icomoon' !important;
  font-size: 80px;
  color: #fff;
  opacity: .8;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
  }
  .video-thumbnail::before {
  position: absolute;
  content: " ";
  top: 0;
  left:0;
  right: 0;
  bottom: 0;
  
  background-color:#000;

  opacity: .2 ;
  }
  .video-thumbnail:hover::after {
  color: #eeeeee;

  }
  .member:hover,.video-wraper:hover  {
    text-decoration: underline;
    cursor: pointer;
  }
  

  .animate-opecity {
  -webkit-animation: aniopacity 3s  ease-in-out infinite;
  -moz-animation:    aniopacity 3s  ease-in-out infinite;
  -o-animation:      aniopacity 3s  ease-in-out infinite;
  animation:         aniopacity 3s  ease-in-out infinite;
  
  }
  
  @-webkit-keyframes aniopacity {
  0%   { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
  }
  @-moz-keyframes aniopacity {
  0%   { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
  }
  @-o-keyframes aniopacity {
  0%   { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
  }
  @keyframes aniopacity {
  0%   { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
  }
.modal-backdrop {
    cursor: url(../img/cancel.png), auto;
}
.social-menu {
    padding: 20px 24px;
  color: #333333;
  font-size: 13px;
    font-family: "Georgia", sans-serif;
    line-height: 1.43;
    letter-spacing: 0px;
   
}
.off-canvas-social-widget {
  margin-top: 20px;
}

.social-menu .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    fill: currentColor;
}


@media screen and (max-width: 1280px) {
  
  .klaviyo-footer-newsletter .klaviyo_form_actions{
    
    bottom: 16px !important;
  }
}

.display-1-big {
    font-size: 3.25rem !important;
}

.form-numbrology td{
border: 1px solid #000000;
}

.form-numbrology input{
  border: unset;  
  padding: 50px 20px;
  width: 100%;
  background-color: transparent;
}
.form-numbrology input:focus, .form-numbrology input:hover{
  border: unset;  
  outline: none;
}
.form-numbrology span.label{  
  padding: 50px 20px;
  text-transform: uppercase;
  display: block;
}

.form-permissions, .termsAndConditions {
  font-size: 11px;
    color: inherit;
    line-height: 1.2rem;
}

.hidden {
  display: none;
}
@media (max-width: 460px) {
  .footer-navigation {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials .testimonial-item p {
    font-size: 16px;

  }
  .text-xs-center {
    text-align: center !important;
  }
  .img-about {
    padding-right: 0px;
  }
  .br-xs-disable br {
    display: none;
  }
  .testimonials-carousel .slick-arrow.slick-prev {
    left: -45px;
    outline: 0px;
  }
  .testimonials-carousel .slick-arrow.slick-next {
    right: -45px;
    outline: 0px;
  }
  .hero-carousel .slick-arrow.slick-prev {
    left: 0px;
  }
  .hero-carousel .slick-arrow.slick-next {
    right: 0px;
  }

  .hero-container {
    padding-top: 68px;

  }
  .hero-slide {
    height: calc(60vh - 64px);
  }
  #topbar {
    height: auto;
    display: block !important;
  }
  #header {
    padding: 15px;
    top: 16px;
  }
  .hero-slide h1 {
    font-size: 22px !important;
    line-height: 23px;
  }
  .hero-slide h2 {  
    line-height: 1.2;
  }
  .display-1 {
    line-height: 1.2;
  }
  .numerology-section.embed-responsive-lg-16by9:before {
    padding-top: 100vh;
  }
  .w-xs-100 {
    width: 100%;
  }
  .f-xs-none {
    float: none !important;
  }
  .f-xs-left {
    float: left !important;
  }
  .f-xs-right {
    float: right !important;
  }
  .text-xs-center {
    text-align: center !important;
  }
}

.mobile-nav-icon {
  font-size: 25px;
}

.error {
  color: red;
  font-size: 10px;
}

.form-numbrology label.error {
padding: 0px 20px;
}

.klaviyo-footer-newsletter input.error, .klaviyo-footer-newsletter select.error {
   
  border-bottom: 1px solid #ff0000;
}



.bg-primary .carousel-review-date, .bg-primary .carousel-review-title, 
.bg-primary .carousel-review-body, .bg-primary .carousel-review-author, 
.bg-primary .carousel-read-more, .bg-primary .carousel-stars,
.bg-primary .carousel-top-panel .headline {
    color: #ffffff !important;
    
}


.bg-primary .carousel-top-panel {
  border-color: #ffffff !important;
  margin-bottom: 15px;
}
.bg-primary .carousel-review-title {
    font-size: 16px !important;
    line-height: 1.2;
}

  .cources-offerd-carousel .slick-arrow.slick-prev  {
    left: 0px;

  }
  .cources-offerd-carousel .slick-arrow.slick-next {
    right: 0px;
  }
  .bg-primary .carousel-read-more a{
    color: #ffffff !important;
  }
  .bg-primary .carousel-read-more a:hover{
    opacity: 0.6;
  }
  .flot-none {
    float: none !important;
  }
  .carousel-review {
    padding-right: 32px;
    padding-left: 32px;
  }
.owl-carousel.news-slider .owl-nav.disabled, .owl-carousel.newsCarousel .owl-nav.disabled{display:block;}.news-slider .slick-arrow.slick-prev, .newsCarousel .slick-arrow.slick-prev {left: -40px;outline: 0px;}.news-slider .slick-arrow.slick-next, .newsCarousel .slick-arrow.slick-next{right: -40px;outline: 0px;}
.view-morebtn {padding-top: 5%;}.view-morebtn a{display:inline-block; background-color:#442141; color:#fff;padding: 5px 23px;border-radius: 20px;font-size: 18px;}
.view-morebtn a:hover{background-color:#fff; color:#442141;}.bg-news {background: #efefef;}.inthenews .nav-tabs{border-bottom:none;margin: 0;}.inthenews .nav-link{padding:5px 5px 1rem 5px;}
.inthenews .nav-tabs .nav-link.active{background-color: #dbdbdb; border:none;}.inthenews .nav-tabs .nav-link{border:none;}
.inthenews .tab-content{background-color: #dbdbdb; padding:5% 3%;border-radius: 30px;}.newspage{padding:0; margin:0;}.inthenews .tab-content .container{max-width:100%;}
.newspage li{display:inline-block; background-color:#efefef; border-radius:20px; padding:15px;width: 29.9%;margin: 0 15px 30px; text-align:center;}
.newspage li p{font-size:1rem;}.newspage li a{font-size:1rem; font-weight:bold;}
.whatsapp-btn{position:fixed; bottom:10px; right:10px; z-index:99999999;}