/*
** RTL Mixins including margin, pading, position, border and border radius
** See documentation https://www.npmjs.com/package/rtl-sass
*/
/*
** Variables, Functions and Mixins
*/
/* Margin left and right */
/* Padding left and right */
/* Position left and right */
/* Float */
/* Text align */
/* Border */
/* Text color palette */
/* Divider color palette */
/* Background color palette */
/* 
** Custom property dark and ligth mode
*/
/* Custom shadows */
/** spacing funcation
** Sample 1: margin-left: spacing(5);
** Sample 2: @include margin-left(spacing(5));
**/
/* See full documentation at:
** https://glennmccomb.com/articles/useful-sass-scss-media-query-mixins-for-bootstrap/
*/

.adjustbg{
  background: linear-gradient(135deg, #f8f9fc 0%, #e6f0ff 100%) !important;
}

select {
  display: block !important;
}
        .job-2-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .job-2-container {
            --job-2-primary: #1a3a5f;
            --job-2-secondary: #2c5282;
            --job-2-accent: #4299e1;
            --job-2-light: #f8fafd;
            --job-2-dark: #2c3e50;
            --job-2-text: #4a5568;
            --job-2-border: #e2e8f0;
            --job-2-card-bg: #ffffff;
            --job-2-shadow: rgba(0, 0, 0, 0.08);
            --job-2-success: #48bb78;
            
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8f9fc 0%, #e6f0ff 100%);
            color: var(--job-2-dark);
            min-height: 100vh;
            padding: 30px 20px;
            line-height: 1.6;
        }
        
        .job-2-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .job-2-header {
            background: linear-gradient(120deg, var(--job-2-primary) 0%, var(--job-2-secondary) 100%);
            color: white;
            padding: 40px 30px;
            text-align: center;
            border-radius: 15px 15px 0 0;
            margin-bottom: 2px;
        }
        
        .job-2-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .job-2-header p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .job-2-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        
        .job-2-details {
            flex: 3;
            min-width: 300px;
            background: var(--job-2-card-bg);
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 10px 20px var(--job-2-shadow);
        }
        
        .job-2-form-section {
            flex: 2;
            min-width: 300px;
            background: var(--job-2-card-bg);
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 10px 20px var(--job-2-shadow);
            align-self: flex-start;
        }
        
        .job-2-section-title {
            color: var(--job-2-secondary);
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--job-2-border);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .job-2-section-title i {
            background: #ebf4ff;
            padding: 10px;
            border-radius: 50%;
        }
        
        .job-2-desc {
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--job-2-text);
        }
        
        .job-2-subsection {
            margin-bottom: 35px;
        }
        
        .job-2-subtitle {
            color: var(--job-2-primary);
            font-size: 1.4rem;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .job-2-list {
            padding-left: 25px;
        }
        
        .job-2-list li {
            margin-bottom: 12px;
            position: relative;
            color: var(--job-2-text);
        }
        
        .job-2-list li:before {
            content: "•";
            color: var(--job-2-accent);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .job-2-highlight {
            background: #ebf8ff;
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--job-2-accent);
            margin: 25px 0;
        }
        
        .job-2-highlight p {
            font-weight: 600;
            color: #2b6cb0;
        }
        
        .job-2-form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .job-2-form-header h2 {
            color: var(--job-2-secondary);
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .job-2-form-header p {
            color: var(--job-2-text);
            font-size: 1.1rem;
        }
        
        .job-2-form-group {
            margin-bottom: 25px;
        }
        
        .job-2-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--job-2-text);
        }
        
        .job-2-form-group input, 
        .job-2-form-group select {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--job-2-border);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .job-2-form-group input:focus, 
        .job-2-form-group select:focus {
            outline: none;
            border-color: var(--job-2-accent);
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
        }
        
        .job-2-file-upload {
            position: relative;
            display: inline-block;
            width: 100%;
            cursor: pointer;
        }
        
        .job-2-file-upload input[type="file"] {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            cursor: pointer;
            width: 100%;
            height: 100%;
        }
        
        .job-2-file-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px;
            background: #f8fafc;
            border: 1px dashed #cbd5e0;
            border-radius: 8px;
            color: #718096;
        }
        
        .job-2-file-custom:hover {
            background: #edf2f7;
        }
        
        .job-2-btn-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(to right, var(--job-2-primary), var(--job-2-secondary));
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
            margin-top: 10px;
        }
        
        .job-2-btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
            background: linear-gradient(to right, var(--job-2-secondary), #3b6ba5);
        }
        
        .job-2-footer {
            text-align: center;
            padding: 25px;
            color: var(--job-2-text);
            font-size: 0.9rem;
            margin-top: 40px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .job-2-header {
                padding: 30px 20px;
            }
            
            .job-2-header h1 {
                font-size: 2rem;
            }
            
            .job-2-header p {
                font-size: 1.1rem;
            }
            
            .job-2-details, 
            .job-2-form-section {
                padding: 25px;
            }
            
            .job-2-section-title {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .job-2-header h1 {
                font-size: 1.8rem;
            }
            
            .job-2-section-title {
                font-size: 1.4rem;
            }
            
            .job-2-subtitle {
                font-size: 1.2rem;
            }
        }
        
        /* Animation for form submission */
        @keyframes job-2-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        
        .job-2-btn-submit:active {
            animation: job-2-pulse 0.3s ease;
        }
        
        /* Success message */
        .job-2-success {
            background-color: rgba(72, 187, 120, 0.1);
            border: 1px solid var(--job-2-success);
            color: var(--job-2-success);
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            text-align: center;
            display: none;
        }






  body p.job-description {
            color: #666;
            line-height: 1.3;
            margin-bottom: 20px;
        }



  .space-top {
            padding-top: 80px;
            padding-bottom: 80px;
        }

   .job-container {
            width: 100%;
            padding: 0 20px;
        }
        
        .title-main {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .deco-title {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: -1;
        }
        
        .deco-title svg {
            fill: url(#titleLinearGradient-1);
        }
        
        .title-main h4 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .title-main h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2c3e50);
            border-radius: 2px;
        }
        
        .title-main p {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .job-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .job-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .job-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .job-header {
            padding: 25px 25px 15px;
            /* background: linear-gradient(135deg, #2c3e50, #4a6491); */
            color: white;
        }
        
        .job-title {
            font-size: 1.5rem;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .job-type {
            display: inline-block;
            padding: 5px 12px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .job-content {
            padding-left: 25px;
            padding-right: 25px;
            flex-grow: 1;
        }
        
        .job-description {
            color: #555;
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .job-details {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-bottom: 25px;
        }
        
        .detail-item {
            display: flex;
            align-items: center;
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        
        .detail-item i {
            margin-right: 8px;
            color: #3498db;
        }
        
        .job-footer {
            padding: 0 25px 25px;
            margin-top: auto;
        }
        
        .see-more-btn {
            display: block;
            width: 100%;
            padding: 14px 20px;
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .see-more-btn:hover {
            background: linear-gradient(to right, #2980b9, #2573a7);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }
        
        .see-more-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .see-more-btn:hover i {
            transform: translateX(5px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .job-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .job-grid {
                grid-template-columns: 1fr;
            }
            
            .title-main h4 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .space-top {
                padding-top: 50px;
                padding-bottom: 50px;
            }
            
            .title-main h4 {
                font-size: 1.8rem;
            }
        }











    .profile-container {
            max-width: 1000px;
            margin: 40px auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
        }

        .portrait-column {
            flex: 1;
            min-width: 300px;
        }

        .portrait-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .portrait-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .profile-column {
            flex: 2;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .back-button {
            display: inline-block;
            margin-bottom: 30px;
          margin-left: 300px;
            text-decoration: none;
            color: #007bff;
            font-weight: bold;
            transition: color 0.3s;
        }

        .back-button:hover {
            color: #0056b3;
        }

        .back-button::before {
            content: "←";
            margin-right: 5px;
        }

        .profile-name {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #222;
        }

        .profile-position {
            font-size: 1.2rem;
            color: #007bff;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .profile-bio {
            margin-bottom: 30px;
            color: #555;
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .profile-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .portrait-column, .profile-column {
                min-width: 100%;
            }
            
            .profile-name {
                font-size: 2rem;
            }

            .portrait-card {
                max-height: 500px;
            }
        }

   .navbar2 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--v-primarydark-base);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            z-index: 1000;
            padding-top: 30px;
        padding-bottom: 20px;
        }
/* .sizing{
  width: 30px;
  height: 100%;
} */
   .job-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .job-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 25px;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }

        .job-card:hover {
            transform: translateY(-3px);
        }

        /* .job-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            flex-wrap: wrap;
        } */

        .job-title {
            font-size: 22px;
            font-weight: 700;
            color: #333;
        }

        .job-type {
            background-color: #e1f5fe;
            color: #0288d1;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

     

        .job-footer {
            display: flex;
            justify-content: flex-end;
        }

        .apply-btn {
            background-color: var(--v-primarydark-base);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: background-color 0.3s;
        }

        .apply-btn:hover {
            color: rgb(var(--v-theme-secondary));
            background-color: var(--v-primary-base);
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .job-header {
                flex-direction: column;
                gap: 10px;
            }
            
            .job-title {
                font-size: 20px;
            }
            
            .job-description {
                font-size: 14px;
            }
            
            .apply-btn {
                width: 100%;
                padding: 12px;
            }
        }

html, body {
  overflow-x: hidden;
  width: 100%;
}
/* Mobile-specific fixes (≤599px) */
@media (max-width: 599px) {

  .testimonial-card .testimonial figure {
    display: block !important;
    width: 230px !important; 
    height: auto !important;
    margin: 20px auto 0 !important; 
    border-radius: 0; 
    overflow: hidden;
    background: linear-gradient(148deg, rgb(var(--v-theme-secondarylight)) 0%, rgb(var(--v-theme-primarylight)) 50%, rgb(var(--v-theme-accentlight)) 100%);
  }


  .testimonial-card .testimonial figure img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; 
    position: static !important; 
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    right: auto !important;
    bottom: auto !important;
  }

  .testimonial-card .testimonial .text {
    padding: 20px !important; 
    margin-top: auto; 
    text-align: left; 
    width: 100% !important;
  }


  .testimonial-card .testimonial .hexagon-1-item,
  .testimonial-card .testimonial .hexagon-2-item,
  .testimonial-card .testimonial .ellipse-bg {
    display: none !important;
  }
}

/* Desktop (≥600px) - NO CHANGES (original styles preserved) */

p.overwrite{
  margin-top: 10px;
  line-height: 1.3rem !important; 
}
.contact-item {
  display: flex;
  align-items: flex-start; /* Align to top */
  gap: 12px; /* Reduced space between icon and text */
  margin-bottom: 16px; /* Space between contact items */
}

.contact-icon {
  font-size: 1.1rem; /* Slightly smaller icon */
  margin-top: 2px; /* Fine-tuned vertical alignment */
}

.contact-text {
  flex: 1;
}

.contact-label {
  margin: 0;
  font-weight: 600;
  line-height: 1.2; /* Tighter line height */
  margin-bottom: 2px; /* Reduced space between label and detail */
}

.contact-detail {
  margin: 0;
  line-height: 1.3; /* Slightly tighter line height */
}

.logo2{
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-icon {
    margin-bottom: 8px;
  }
}
.contact-icon:hover {
  color: #0056b3; /* Darker blue on hover */
}


/* Base Styles */
.footer-contact {
  font-family: Arial, sans-serif;
  color: #333;
}

.contact-item {
  display: flex;
  align-items: center; /* Vertically align icon and text */
  margin-bottom: 16px; /* Space between items */
}

.contact-icon {
  font-size: 20px; /* Icon size */
  margin-right: 12px; /* Space between icon and text */
  color: #ffffff; /* Icon color (blue) */
}

.body-2 {
  margin: 4px 0; /* Spacing between text lines */
  font-size: 14px;
}

.category {
  font-weight: bold;
  font-size: 18px;
  display: block;
  margin-bottom: 16px; /* Space below "Contact Us" */
}

.itcenter{
  text-align: center;
  font-size: 20px;
  max-width: 1000px;
  margin-top: 20px;
  margin-bottom: 40px;
  display: block; 
}
.itcenter2{
margin: 0;
text-align: center;
}
.mini{

  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  
}
.limit{
  height: auto;
  max-width: 650px;
}
/* Testimonial Card */
.testi-rating-card {
  position: relative;
}

.testi-rating-card:before {
  content: "";
  position: absolute;
  top: 10;
  left: 0;
  border-radius: 50px;
  border: 1px solid rgb(var(--v-theme-primary));
  width: 240px;
  height: 240px;
  transform: rotate(-5deg);
  transform-origin: bottom left;
}

.testi-rating-card .paper {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgb(var(--v-theme-secondary));
  padding: 24px;
  width: 240px;
  height: 240px;
  border-radius: 50px;
  position: relative;
}

.theme--light .testi-rating-card .paper {
  background: rgba(255, 255, 255, 0.5);
}

.theme--dark .testi-rating-card .paper {
  background: rgba(10, 10, 10, 0.5);
}

.testi-rating-card .paper p {
  height: 130px;
  overflow: hidden;
}

.testi-rating-card .rating {
  margin-top: 32px;
}

.testi-rating-card .star-icon {
  color: #FFC107;
}

.theme--light .testi-rating-card .star-icon-disable {
  color: rgba(0, 0, 0, 0.24);
}

.theme--dark .testi-rating-card .star-icon-disable {
  color: rgba(255, 255, 255, 0.24);
}

.testi-rating-card .avatar-profile {
  padding: 4px;
  background: linear-gradient(148deg, rgb(var(--v-theme-secondarylight)) 0%, rgb(var(--v-theme-primarylight)) 50%, rgb(var(--v-theme-accentlight)) 100%);
}

.testi-rating-card .avatar-profile img {
  border-radius: 50%;
  width: 100%;
}

.testi-rating-card .person {
  display: flex;
  margin-top: 24px;
}

.testi-rating-card .person .avatar {
  width: 55px;
  height: 55px;
}

.testi-rating-card .person .caption {
  font-style: italic;
  font-weight: 300;
}

[dir=ltr] .testi-rating-card .name {
  margin-left: 16px;
}

[dir=rtl] .testi-rating-card .name {
  margin-right: 16px;
}

.quote-card {
  position: relative;
}

@media (min-width: 600px) {
  .quote-card {
    padding: 0px 40px 0px 40px;
  }
}
.quote-card:before {
  content: "";
  width: 250px;
  height: 210px;
  border-radius: 40px;
  border: 1px solid rgb(var(--v-theme-primary));
  transform: rotate(-6deg);
  top: -15px;
  position: absolute;
}

[dir=ltr] .quote-card:before {
  left: 12px;
}

[dir=rtl] .quote-card:before {
  right: 12px;
}

.quote-card .card {
  overflow: visible;
  border-radius: 40px;
}

.quote-card .paper {
  border-radius: 40px;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid rgb(var(--v-theme-secondary));
  padding: 16px;
}

@media (max-width: 599px) {
  .quote-card .paper {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.quote-card .paper i {
  position: absolute;
  font-size: 70px;
  transform: scale(-1, -1);
}

.quote-card .primary {
  top: -50px;
  color: transparent;
  background: linear-gradient(to bottom, rgb(var(--v-theme-primarydark)) 20%, rgb(var(--v-theme-primary)) 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[dir=ltr] .quote-card .primary {
  left: -10px;
}

[dir=rtl] .quote-card .primary {
  right: -10px;
}

.quote-card .secondary {
  bottom: -40px;
  color: transparent;
  background: linear-gradient(to bottom, rgb(var(--v-theme-secondary)) 20%, rgb(var(--v-theme-secondarydark)) 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[dir=ltr] .quote-card .secondary {
  right: -10px;
}

[dir=rtl] .quote-card .secondary {
  left: -10px;
}

.quote-card .avatar {
  width: 180px;
  height: 180px;
  padding: 4px;
  background: linear-gradient(148deg, rgb(var(--v-theme-secondarylight)) 0%, rgb(var(--v-theme-primarylight)) 50%, rgb(var(--v-theme-accentlight)) 100%);
}

@media (max-width: 599px) {
  .quote-card .avatar {
    width: 100px;
    height: 100px;
  }
}
.quote-card .avatar img {
  border-radius: 50%;
}

.quote-card .content-quote {
  flex: 1;
}

@media (min-width: 600px) {
  [dir=ltr] .quote-card .content-quote {
    margin-left: 24px;
  }

  [dir=rtl] .quote-card .content-quote {
    margin-right: 24px;
  }
}
@media (max-width: 599px) {
  .quote-card .content-quote {
    margin-top: 24px;
  }
}
.quote-card .content-quote p {
  font-size: 18px;
  margin-bottom: 24px;
}

.quote-card .content-quote h6 {
  font-weight: var(--font-medium);
}

.quote-card .caption-title {
  font-style: italic;

}

.profile-card {
  position: relative;
  border-radius: 20px;
  box-shadow: none;
  overflow: hidden;
}

.profile-card a {
  position: absolute;
  text-decoration: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.profile-card h2 {
  position: absolute;
  opacity: 0.36;
  bottom: 8px;
  background: linear-gradient(to bottom, rgb(var(--v-theme-secondarylight)) -10%, transparent 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 72px;
  font-weight: var(--font-bold);
}

[dir=ltr] .profile-card h2 {
  padding-right: 16px;
}

[dir=rtl] .profile-card h2 {
  padding-left: 16px;
}

[dir=ltr] .profile-card h2 {
  right: 0;
}

[dir=rtl] .profile-card h2 {
  left: 0;
}

.profile-card .inner {
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 16px;
  background: rgb(var(--v-theme-primarydark));
  background-color: rgb(var(--v-theme-primarydark));
  position: relative;
  overflow: hidden;
}

.profile-card .inner:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.25;
  border-radius: 12px;
}

.profile-card .avatar {
  margin: 0;
  background: linear-gradient(148deg, rgb(var(--v-theme-secondarylight)) 0%, rgb(var(--v-theme-primarylight)) 50%, rgb(var(--v-theme-accentlight)) 100%);
  padding: 2px;
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 1;
}

.profile-card .avatar img {
  border-radius: 50%;
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.profile-card .properties {
  padding: 8px 8px 0px 8px;
  font-size: 12px;
  flex: 1;
  z-index: 1;
  position: relative;
}

@media (min-width: 1280px) {
  .profile-card .properties {
    padding: 8px 16px 0px 16px;
  }
}
.profile-card .title-profile {
  white-space: nowrap;
  font-weight: var(--font-medium);
  font-size: 18px;
  margin-bottom: 8px;
}

.profile-card .verified {
  color: rgb(var(--v-theme-secondary));
  font-size: 16px;
}

.profile-card .action {
  padding: 0;
  padding-top: 4px;
  display: flex;
}

.profile-card .action strong {
  font-weight: var(--font-medium);
}

.profile-card .action p, .profile-card .action span {
  margin-bottom: 4px;
  font-size: 12px;
}

[dir=ltr] .profile-card .action > div {
  margin-right: 16px;
}

[dir=rtl] .profile-card .action > div {
  margin-left: 16px;
}

.profile-card .action i {
  font-size: 12px;
  position: relative;
}

[dir=ltr] .profile-card .action i {
  margin-right: 4px;
}

[dir=rtl] .profile-card .action i {
  margin-left: 4px;
}

@media (max-width: 959px) {
  .profile-card .stats {
    display: none;
  }
}
.profile-card .icon-primary {
  fill: rgb(var(--v-theme-primary));
}

.profile-card .icon-secondary {
  fill: rgb(var(--v-theme-secondary));
}

.profile-card.first.card {
  background: linear-gradient(148deg, rgb(var(--v-theme-primary)) 0%, rgb(var(--v-theme-secondary)) 100%);
  padding: 2px;
  border-radius: 12px;
}

.profile-card.first.card .avatar {
  width: 94px;
  height: 94px;
}

.profile-card.first.card .title-profile {
  font-size: 36px;
  position: relative;
  z-index: 1;
}

@media (max-width: 599px) {
  .profile-card.first.card .title-profile {
    font-size: 22px;
  }
}
.profile-card.first.card .action > div {
  position: relative;
  z-index: 1;
}

[dir=ltr] .profile-card.first.card .action > div {
  padding-right: 16px;
}

[dir=rtl] .profile-card.first.card .action > div {
  padding-left: 16px;
}

.profile-card.first.card h2 {
  opacity: 1;
  background: linear-gradient(to bottom, rgb(var(--v-theme-secondarylight)) 30%, rgb(var(--v-theme-primary)) 60%, rgb(var(--v-theme-primarydark)) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 120px;
  top: -16px;
}

@media (min-width: 600px) {
  [dir=ltr] .profile-card.first.card h2 {
    right: 32px;
  }

  [dir=rtl] .profile-card.first.card h2 {
    left: 32px;
  }
}
@media (max-width: 599px) {
  .profile-card.first.card h2 {
    opacity: 0.5;
  }
}
.profile-card.first.card i {
  width: 18px;
  height: 18px;
}




#wallet-testimonials .root {
  position: relative;
}

@media (min-width: 1280px) {
  #wallet-testimonials .root {
    padding-bottom: 80px;
  }
}
@media (max-width: 599px) {
  #wallet-testimonials .slider-wrap {
    margin: 0px;
  }
}
#wallet-testimonials .carousel-testi {
  position: relative;
}

@media (min-width: 600px) {
  #wallet-testimonials .carousel-testi {
    padding: 0px 250px 0px 250px;
  }
}
@media (max-width: 599px) {
  #wallet-testimonials .carousel-testi {
    margin-top: 40px;
  }
  #wallet-testimonials .carousel-testi .slick-dots {
    bottom: -40px;
  }
}
#wallet-testimonials .carousel-testi .slick-dots li {
  border-radius: 15px;
  overflow: hidden;
  margin: 0 4px;
  height: 15px;
  width: 15px;
  transition: all 0.5s ease-in;
}

.theme--light #wallet-testimonials .carousel-testi .slick-dots li {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.38);
}

.theme--dark #wallet-testimonials .carousel-testi .slick-dots li {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

#wallet-testimonials .carousel-testi .slick-dots li.slick-active {
  width: 40px;
}

#wallet-testimonials .carousel-testi .slick-dots li.slick-active button {
  box-shadow: none;
  transform: none;
  opacity: 1;
}

#wallet-testimonials .carousel-testi .slick-dots li button {
  border-radius: 15px;
  border: none;
  margin: 0;
  width: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  background: none;
  transition: all 0.5s ease-in;
  background: linear-gradient(148deg, rgb(var(--v-theme-secondarylight)) 0%, rgb(var(--v-theme-primarylight)) 50%, rgb(var(--v-theme-accentlight)) 100%);
  opacity: 0;
}

#wallet-testimonials .carousel-testi .slick-dots li button:before {
  display: none;
}

#wallet-testimonials .item {
  padding: 8px;
}

@media (min-width: 600px) {
  #wallet-testimonials .item {
    padding: 56px 8px 0px 8px;
  }
}
#wallet-testimonials .item:focus {
  outline: none;
}

#wallet-testimonials .nav.btn {
  /* position: absolute;
  top: 48%;
  width: 60px;
  height: 100px;
  padding: 0px;
  min-width: 0px;
  background: black; */


  position: absolute;
  border: none;
  z-index: 12;
  top: 48%;
  width: 64px;
  height: 64px;
  line-height: 74px;
  padding: 0px;
  min-width: 0px;
  background: url(../images/crypto/hexa-nav.png) no-repeat center;
  background-size: 80%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

[dir=rtl] .m-application #wallet-testimonials .nav.btn {
  transform: scaleX(-1);
}

@media (max-width: 599px) {
  #wallet-testimonials .nav.btn {
    display: none;
  }
}
#wallet-testimonials .nav.btn i {

  font-size: 30px;
  color: #cecece;
}

#wallet-testimonials .prev {
  border-radius: 50%;
}

[dir=ltr] #wallet-testimonials .prev {
  left: 150px;
}

[dir=rtl] #wallet-testimonials .prev {
  right: 0;
}

#wallet-testimonials .next {
  border-radius: 50%;
}

[dir=ltr] #wallet-testimonials .next {
  right: 150px;
}

[dir=rtl] #wallet-testimonials .next {
  left: 0;
}








.testimonial-card .testimonial figure {
  width: 60%;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(148deg, rgb(var(--v-theme-secondarylight)) 0%, rgb(var(--v-theme-primarylight)) 50%, rgb(var(--v-theme-accentlight)) 100%);
}

@media (max-width: 599px) {
  .testimonial-card .testimonial figure {
    display: none;

 

  }

  .testimonial img.hexagon-1-item,
  .testimonial img.hexagon-2-item,
  .testimonial img.ellipse-bg {
    display: none !important; /* Use sparingly */
  }
}
.testimonial-card .testimonial figure img {
  z-index: 1;
  position: relative;
  filter: drop-shadow(10px 5px 10px rgba(0, 0, 0, 0.2));
}


/* card figure */
@media (min-width: 1280px) {
  .testimonial-card .testimonial figure img {
    /* min-height: 100%;
    width: 100%;
    height: auto;
    width: 100%;
    right: 0;
    bottom: 0; */

    width: 255px;
    
    height: auto;
    position: absolute;
    bottom: -30px;
    right: -2rem;
    object-fit: contain;
  }
}
@media (max-width: 1279px) {
  .testimonial-card .testimonial figure img {
    height: auto;
    width: 275px;
  }
}
.testimonial-card .testimonial figure:before {
  content: "";
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgb(var(--v-theme-primary));
  position: absolute;
  top: -60px;
}

[dir=ltr] .testimonial-card .testimonial figure:before {
  left: -105px;
}

[dir=rtl] .testimonial-card .testimonial figure:before {
  right: -105px;
}

.testimonial-card .testimonial .content {
  position: relative;
  margin-top: 40px;
  margin-bottom: 24px;
}

/* .testimonial-card .testimonial .content span {
  height: 75px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
} */

.testimonial-card .testimonial .content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-card .testimonial .content:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.testimonial-card .testimonial h6 {
  font-weight: var(--font-bold);
}

.testimonial-card .deco {
  position: absolute;
  background: red;
  height: 428px;
  width: 100%;
  top: -60px;
}

@media (min-width: 600px) {
  .testimonial-card .deco {
    width: 428px;
    border-radius: 50%;
  }

  [dir=ltr] .testimonial-card .deco {
    /* left: -120px; */
  }

  [dir=rtl] .testimonial-card .deco {
    /* right: -120px; */
  }
}
.testimonial-card .deco:after {
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  top: 80px;
  right: 25px;
  border-radius: 50%;
  background-image: linear-gradient(148deg, rgb(var(--v-theme-accent)) 0%, rgb(var(--v-theme-accentlight)) 100%);
  transform: scale(-1);
}

@media (max-width: 599px) {
  .testimonial-card .deco:after {
    display: none;
  }
}
.testimonial-card .deco:before {
  content: "";
  width: 82px;
  height: 82px;
  position: absolute;
  bottom: 30px;
  left: 90px;
  border-radius: 50%;
  background: yellow;
}

@media (max-width: 599px) {
  .testimonial-card .deco:before {
    display: none;
  }
}
.testimonial-card .text {
  flex: 1;
  color: white;
  z-index: 2;
  position: relative;
  padding: 24px;
}

@media (min-width: 300px) {
  .testimonial-card .text {
    padding: 115px 0px 10px 24px;
    width: 45%;
  }
  
}



[dir=rtl] .testimonial-card .text {
  padding: 2px 24px 32px 0px;
}

/* Testimonial Card */
.testi-rating-card {
  position: relative;
}

.testi-rating-card:before {
  content: "";
  position: absolute;
  top: 10;
  left: 0;
  border-radius: 50px;
  border: 1px solid rgb(var(--v-theme-primary));
  width: 240px;
  height: 240px;
  transform: rotate(-5deg);
  transform-origin: bottom left;
}

.testi-rating-card .paper {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgb(var(--v-theme-secondary));
  padding: 24px;
  width: 240px;
  height: 240px;
  border-radius: 50px;
  position: relative;
}

.theme--light .testi-rating-card .paper {
  background: rgba(255, 255, 255, 0.5);
}

.theme--dark .testi-rating-card .paper {
  background: rgba(10, 10, 10, 0.5);
}

.testi-rating-card .paper p {
  height: 130px;
  overflow: hidden;
}

.testi-rating-card .rating {
  margin-top: 32px;
}

.testi-rating-card .star-icon {
  color: #FFC107;
}

.theme--light .testi-rating-card .star-icon-disable {
  color: rgba(0, 0, 0, 0.24);
}

.theme--dark .testi-rating-card .star-icon-disable {
  color: rgba(255, 255, 255, 0.24);
}

.testi-rating-card .avatar-profile {
  padding: 4px;
  background: linear-gradient(148deg, rgb(var(--v-theme-secondarylight)) 0%, rgb(var(--v-theme-primarylight)) 50%, rgb(var(--v-theme-accentlight)) 100%);
}

.testi-rating-card .avatar-profile img {
  border-radius: 50%;
  width: 100%;
}

.testi-rating-card .person {
  display: flex;
  margin-top: 24px;
}

.testi-rating-card .person .avatar {
  width: 55px;
  height: 55px;
}

.testi-rating-card .person .caption {
  font-style: italic;
  font-weight: 300;
}

[dir=ltr] .testi-rating-card .name {
  margin-left: 16px;
}

[dir=rtl] .testi-rating-card .name {
  margin-right: 16px;
}

.quote-card {
  position: relative;
}







.testimonial-card .testimonial {
  max-width: 540px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  height: 240px;
  background: linear-gradient(90deg, rgba(7,55,124,1) 0%, rgba(104,191,245,1) 52%, rgba(194,223,255,1) 100%);
}

@media (min-width: 600px) {
  .testimonial-card .testimonial {
    height: 246px;
  }
}


/* bg card */
.testimonial-card .testimonial figure {
  width: 60%;
  margin: 0;
  overflow: hidden;
  /* background: linear-gradient(90deg, rgba(7,55,124,1) 0%, rgba(104,191,245,1) 52%, rgba(194,223,255,1) 100%); */
}

@media (max-width: 599px) {
  .testimonial-card .testimonial figure {
    display: none;
  }
}
/* .testimonial-card .testimonial figure img {
  z-index: 1;
  position: relative;
  filter: drop-shadow(10px 5px 10px rgba(0, 0, 0, 0.2));
}

@media (min-width: 1280px) {
  .testimonial-card .testimonial figure img {
    min-height: 100%;
    width: 100%;
  }
}
@media (max-width: 1279px) {
  .testimonial-card .testimonial figure img {
    height: 100%;
  }
} */
.testimonial-card .testimonial figure:before {
  content: "";
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgb(var(--v-theme-primary));
  position: absolute;
  top: -60px;
}

[dir=ltr] .testimonial-card .testimonial figure:before {
  left: -105px;
}

[dir=rtl] .testimonial-card .testimonial figure:before {
  right: -105px;
}

.testimonial-card .testimonial .content {
  position: relative;
  margin-top: 40px;
  margin-bottom: 24px;
}

.testimonial-card .testimonial .content span {
  height: 75px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-card .testimonial .content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-card .testimonial .content:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.testimonial-card .testimonial h6 {
  font-weight: var(--font-bold);
}










































.shadows{
  filter: drop-shadow(5px 5px 5px #0000002c);

  
}

.quote{
  display: flex;
  justify-content: center; 
  align-items: center;
  font-size: 20px;
  font-style: italic;
  margin-top: 20px;
  margin-bottom: 40px;
}

/* start adrian */
.teams {
  position: relative;
  padding: 40px 0;
  overflow: hidden; /* Hide overflowing cards */
  width: 100%; /* Adjusted to take up most but not all page width */
  max-width: 1280px; /* Set a maximum width */
  margin: 0 auto; /* Center the carousel */
  box-sizing: border-box;
}

.teams-column {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content; /* Allow the container to expand based on content */
}

.prev-button, .next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 12px 16px;
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.prev-button:hover, .next-button:hover {
  background: rgba(0,0,0,0.9);
}

/* Card styling */
.member-card {
  /* Width will be set dynamically by JS to ensure exactly 3 cards are visible */
  background: linear-gradient(90deg, rgba(7,55,124,1) 0%, rgba(104,191,245,1) 52%, rgba(194,223,255,1) 100%);
  margin: 0;
  width: 450px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  height: 325px;
  flex-shrink: 0; /* Prevent cards from shrinking */
}

#prev_testi {
  left: 10px;
}

#next_testi {
  right: 10px;
}

/* Keep your other existing styles */
.member-name {
  font-weight: 600;
  font-size: 24px;
  color: white;
}

.member-role {
  font-size: 20px;
  font-weight: 400;
  color: white;
  line-height: 1.2;
}

.card-text {
  position: absolute;
  bottom: 6rem;
  left: 2rem;
  z-index: 1;
  width: 140px;
}

.img-card {
  width: 300px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: -2rem;
  object-fit: contain;
}

.hexagon-1-item {
  position: absolute;
  z-index: 1;
  right: 9rem;
  top: 2rem;
}

.hexagon-2-item {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
}

.ellipse-bg {
  position: absolute;
  left: 0;
  transform: translateY(0);
}

/* end adrian */




.use-text-title {
  font-weight: var(--font-bold);
  font-size: 48px;
  line-height: 72px;
}

@media (max-width: 1279px) {
  .use-text-title {
    font-size: 38px;
    line-height: 56px;
  }
}
@media (max-width: 599px) {
  .use-text-title {
    font-size: 28px;
    line-height: 42px;
  }
}
.use-text-title2 {
  font-size: 48px;
  line-height: 45px;
  font-weight: var(--font-bold);
}

@media (max-width: 1279px) {
  .use-text-title2 {
    font-size: 32px;
    line-height: 48px;
  }
}
@media (max-width: 599px) {
  .use-text-title2 {
    font-size: 24px;
    line-height: 36px;
  }
}
.use-text-subtitle {
  font-weight: var(--font-medium);
  font-size: 28px;
  line-height: 42px;
}

@media (max-width: 1279px) {
  .use-text-subtitle {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (max-width: 599px) {
  .use-text-subtitle {
    font-size: 18px;
    line-height: 26px;
  }
}
.use-text-subtitle2 {
  font-weight: var(--font-regular);
  font-size: 16px;
  line-height: 25px;
  max-width: 650px;
}

@media (max-width: 1279px) {
  .use-text-subtitle2 {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 599px) {
  .use-text-subtitle2 {
    font-size: 16px;
    line-height: 24px;
  }
}
.use-text-paragraph {
  font-weight: var(--font-regular);
  font-size: 16px;
  line-height: 24px;
}

.use-text-caption {
  font-weight: var(--font-regular);
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 599px) {
  .use-text-caption {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 1919px) {
  .hidden-lg-down {
    display: none !important;
  }
}
@media (max-width: 1279px) {
  .hidden-md-down {
    display: none !important;
  }
}
@media (max-width: 959px) {
  .hidden-sm-down {
    display: none !important;
  }
}
@media (max-width: 599px) {
  .hidden-xs-down {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .hidden-lg-up {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media (min-width: 600px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media (min-width: 1920px) {
  .show-lg-down {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .show-md-down {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .show-sm-down {
    display: none !important;
  }
}
@media (min-width: 600px) {
  .show-xs-down {
    display: none !important;
  }
}
@media (max-width: 1919px) {
  .show-xl-up {
    display: none !important;
  }
}
@media (max-width: 1279px) {
  .show-lg-up {
    display: none !important;
  }
}
@media (max-width: 959px) {
  .show-md-up {
    display: none !important;
  }
}
@media (max-width: 599px) {
  .show-sm-up {
    display: none !important;
  }
}
.page-fadeUp-transition-enter {
  opacity: 0;
}

.page-fadeUp-transition-enter-active {
  opacity: 1;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
}

.page-fadeUp-transition-exit {
  opacity: 1;
}

/*
** theme color var
*/
.fresh-var {
  --v-anchor-base: #03ACF2;
  --v-primarylight-base: #B3E5FC;
  --v-primary-base: #03ACF2;
  --v-primarydark-base: #01579B;
  --v-secondarylight-base: #C8E6C9;
  --v-secondary-base: #4CAF50;
  --v-secondarydark-base: #357A38;
}

.passion-var {
  --v-anchor-base: #E91E63;
  --v-primarylight-base: #F8BBD0;
  --v-primary-base: #E91E63;
  --v-primarydark-base: #880E4F;
  --v-secondarylight-base: #C5CAE9;
  --v-secondary-base: #304FFE;
  --v-secondarydark-base: #1A237E;
}

.smart-var {
  --v-anchor-base: #00BCD4;
  --v-primarylight-base: #B2EBF2;
  --v-primary-base: #00BCD4;
  --v-primarydark-base: #00838F;
  --v-secondarylight-base: #FFECB3;
  --v-secondary-base: #FFA000;
  --v-secondarydark-base: #FF6F00;
}

.burgundy-var {
  --v-anchor-base: #e91e63;
  --v-primarylight-base: #f8bbd0;
  --v-primary-base: #e91e63;
  --v-primarydark-base: #ad1457;
  --v-secondarylight-base: #bbdefb;
  --v-secondary-base: #2196f3;
  --v-secondarydark-base: #1565c0;
}

.ocean-blue-var {
  --v-anchor-base: #2196f3;
  --v-primarylight-base: #bbdefb;
  --v-primary-base: #2196f3;
  --v-primarydark-base: #0d47a1;
  --v-secondarylight-base: #b2ebf2;
  --v-secondary-base: #00bcd4;
  --v-secondarydark-base: #006064;
}

.green-leaf-var {
  --v-anchor-base: #009688;
  --v-primarylight-base: #E0F7FA;
  --v-primary-base: #009688;
  --v-primarydark-base: #00695C;
  --v-secondarylight-base: #CFD8DC;
  --v-secondary-base: #607D8B;
  --v-secondarydark-base: #37474F;
}

.money-var {
  --v-anchor-base: #07377C;
  --v-primarylight-base: #C8E6C9;
  --v-primary-base: #07377C;
  --v-primarydark-base: #022352;
  --v-secondarylight-base: #FFECB3;
  --v-secondary-base: #FFC918;
  --v-secondarydark-base: #FF6F00;
 
}

.grayscale-var {
  --v-anchor-base: #546E7A;
  --v-primarylight-base: #CFD8DC;
  --v-primary-base: #546E7A;
  --v-primarydark-base: #263238;
  --v-secondarylight-base: #D7CCC8;
  --v-secondary-base: #6D4C41;
  --v-secondarydark-base: #3E2723;
}

.cloud-var {
  --v-anchor-base: #03A9F4;
  --v-primarylight-base: #B3E5FC;
  --v-primary-base: #03A9F4;
  --v-primarydark-base: #01579B;
  --v-secondarylight-base: #FFE0B2;
  --v-secondary-base: #FF9800;
  --v-secondarydark-base: #E65100;
}

.joker-var {
  --v-anchor-base: #673AB7;
  --v-primarylight-base: #D1C4E9;
  --v-primary-base: #673AB7;
  --v-primarydark-base: #311B92;
  --v-secondarylight-base: #B2EBF2;
  --v-secondary-base: #00BCD4;
  --v-secondarydark-base: #006064;
  --v-primarylight-lighten1: #ede0ff;
}

.violet-var {
  --v-anchor-base: #EC407A;
  --v-primarylight-base: #FCE4EC;
  --v-primary-base: #EC407A;
  --v-primarydark-base: #D81B60;
  --v-secondarylight-base: #D1C4E9;
  --v-secondary-base: #673AB7;
  --v-secondarydark-base: #311B92;
}

.violeta-var {
  --v-anchor-base: #9C27B0;
  --v-primarylight-base: #E1BEE7;
  --v-primary-base: #9C27B0;
  --v-primarydark-base: #6A1B9A;
  --v-secondarylight-base: #DCEDC8;
  --v-secondary-base: #8BC34A;
  --v-secondarydark-base: #558B2F;
}

.roseGold-var {
  --v-anchor-base: #EC407A;
  --v-primarylight-base: #FFF8E1;
  --v-primary-base: #FFA000;
  --v-primarydark-base: #FFA000;
  --v-secondarylight-base: #FCE4EC;
  --v-secondary-base: #EC407A;
  --v-secondarydark-base: #D81B60;
}

.deepBlue-var {
  --v-anchor-base: #3F51B5;
  --v-primarylight-base: #E8EAF6;
  --v-primary-base: #3F51B5;
  --v-primarydark-base: #283593;
  --v-secondarylight-base: #E1F5FE;
  --v-secondary-base: #03A9F4;
  --v-secondarydark-base: #0277BD;
}

.ubuntu-var {
  --v-anchor-base: #EF6C00;
  --v-primarylight-base: #FFF3E0;
  --v-primary-base: #EF6C00;
  --v-primarydark-base: #E65100;
  --v-secondarylight-base: #F3E5F5;
  --v-secondary-base: #9C27B0;
  --v-secondarydark-base: #7B1FA2;
}

.greenNature-var {
  --v-anchor-base: #009688;
  --v-primarylight-base: #E0F7FA;
  --v-primary-base: #009688;
  --v-primarydark-base: #00695C;
  --v-secondarylight-base: #F1F8E9;
  --v-secondary-base: #689F38;
  --v-secondarydark-base: #33691E;
}

.vampire-var {
  --v-anchor-base: #f44336;
  --v-primarylight-base: #FFEBEE;
  --v-primary-base: #f44336;
  --v-primarydark-base: #E53935;
  --v-secondarylight-base: #ECEFF1;
  --v-secondary-base: #607D8B;
  --v-secondarydark-base: #455A64;
}

.mint-var {
  --v-anchor-base: #2196f3;
  --v-primarylight-base: #bbdefb;
  --v-primary-base: #2196f3;
  --v-primarydark-base: #0d47a1;
  --v-secondarylight-base: #b3e5fc;
  --v-secondary-base: #03a9f4;
  --v-secondarydark-base: #01579b;
}

.gold-var {
  --v-anchor-base: #FF9100;
  --v-primarylight-base: #FFF9C4;
  --v-primary-base: #FF9100;
  --v-primarydark-base: #FF6D00;
  --v-secondarylight-base: #EFEBE9;
  --v-secondary-base: #8D6E63;
  --v-secondarydark-base: #4E342E;
}

.botani-var {
  --v-anchor-base: #689F38;
  --v-primarylight-base: #DCEDC8;
  --v-primary-base: #689F38;
  --v-primarydark-base: #33691E;
  --v-secondarylight-base: #FCE4EC;
  --v-secondary-base: #F06292;
  --v-secondarydark-base: #AD1457;
}

.littleQueen-var {
  --v-anchor-base: #00BCD4;
  --v-primarylight-base: #E0F7FA;
  --v-primary-base: #00BCD4;
  --v-primarydark-base: #006064;
  --v-secondarylight-base: #FCE4EC;
  --v-secondary-base: #F06292;
  --v-secondarydark-base: #AD1457;
}

.purple-var {
  --v-anchor-base: #9c27b0;
  --v-primarylight-base: #f3e5f5;
  --v-primary-base: #9c27b0;
  --v-primarydark-base: #6a1b9a;
  --v-secondarylight-base: #ea80fc;
  --v-secondary-base: #aa00ff;
  --v-secondarydark-base: #4a148c;
}

.black-var {
  --v-anchor-base: #212121;
  --v-primarylight-base: #9e9e9e;
  --v-primary-base: #212121;
  --v-primarydark-base: #000;
  --v-secondarylight-base: #E0E0E0;
  --v-secondary-base: #757575;
  --v-secondarydark-base: #424242;
}

.brown-var {
  --v-anchor-base: #795548;
  --v-primarylight-base: #d7ccc8;
  --v-primary-base: #795548;
  --v-primarydark-base: #4e342e;
  --v-secondarylight-base: #ccb0b0;
  --v-secondary-base: #794848;
  --v-secondarydark-base: #3e2723;
}

* {
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
}

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

@media only screen and (min-width: 992px) {
  html {
    font-size: 16px;
  }
}
@media only screen and (min-width: 0) {
  html {
    font-size: 16px;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.5;
}

strong {
  font-weight: var(--font-bold);
}

button {
  text-align: center;
}

.m-application {
  overflow: hidden;
  line-height: 1.5;
}

.m-application .form-control {
  background: none;
}

.m-application .input-field .help-block {
  position: absolute;
  font-size: 13px;
}

.m-application .input-field .help-block.form-error {
  color: #dd493c;
}

.m-application input:not([type]):focus.valid ~ label, .m-application input[type=text]:not(.browser-default):focus.valid ~ label, .m-application input[type=password]:not(.browser-default):focus.valid ~ label, .m-application input[type=email]:not(.browser-default):focus.valid ~ label, .m-application input[type=url]:not(.browser-default):focus.valid ~ label, .m-application input[type=time]:not(.browser-default):focus.valid ~ label, .m-application input[type=date]:not(.browser-default):focus.valid ~ label, .m-application input[type=datetime]:not(.browser-default):focus.valid ~ label, .m-application input[type=datetime-local]:not(.browser-default):focus.valid ~ label, .m-application input[type=tel]:not(.browser-default):focus.valid ~ label, .m-application input[type=number]:not(.browser-default):focus.valid ~ label, .m-application input[type=search]:not(.browser-default):focus.valid ~ label, .m-application textarea.materialize-textarea:focus.valid ~ label {
  color: inherit;
}

.m-application [type=checkbox] + span:not(.lever) {
  padding-left: 30px;
}

.m-application .modal-content {
  border: none;
}

.m-application .modal-content h4 {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  margin-bottom: 16px;
}

.m-application .modal-content .modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
}

.m-application .carousel {
  height: auto;
}

.m-application .carousel .carousel-item {
  visibility: visible;
  position: relative;
  height: auto;
  width: 100%;
}

.m-application a:hover {
  text-decoration: none;
}

.m-application figure {
  margin: 0;
}

.m-application .btn:not(.btn-flat):not(.btn-icon):hover {
  color: #FFF;
}

.m-application .btn:not(.btn-flat):not(.btn-icon):focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.theme--dark .m-application .btn-floating {
  -webkit-box-shadow: 0px 2px 4px -1px rgba(50, 50, 50, 0.2), 0px 4px 5px 0px rgba(50, 50, 50, 0.14), 0px 1px 10px 0px rgba(50, 50, 50, 0.12);
  box-shadow: 0px 2px 4px -1px rgba(50, 50, 50, 0.2), 0px 4px 5px 0px rgba(50, 50, 50, 0.14), 0px 1px 10px 0px rgba(50, 50, 50, 0.12);
}

.theme--light .m-application .btn-floating {
  -webkit-box-shadow: 0px 2px 4px -1px rgba(128, 128, 128, 0.2), 0px 4px 5px 0px rgba(128, 128, 128, 0.14), 0px 1px 10px 0px rgba(128, 128, 128, 0.12);
  box-shadow: 0px 2px 4px -1px rgba(128, 128, 128, 0.2), 0px 4px 5px 0px rgba(128, 128, 128, 0.14), 0px 1px 10px 0px rgba(128, 128, 128, 0.12);
}

.m-application textarea.materialize-textarea {
  height: auto;
}

.m-application nav {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
  width: auto;
  color: inherit;
}

.m-application nav i {
  height: auto;
  line-height: normal;
}

.m-application nav ul a:hover {
  background: none;
}

.m-application--is-rtl {
  text-align: right;
}

.m-application .m-content {
  font-family: "Montserrat", sans-serif;
  padding: 0 !important;
}

.m-application .overlay {
  z-index: 90 !important;
}

.m-application .m-application--wrap a {
  color: var(--v-primary-base);
}

.m-application .btn.btn-large {
  font-size: 0.9375rem;
}

.m-application .btn {
  font-weight: var(--font-bold);
}

.m-application .slick-slide:focus {
  outline: none;
}

.m-application label {
  font-size: 1rem;
  color: var(--con-2);
}

.m-application .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 0;
}

.m-application .row:after {
  display: none;
}

.m-application .row.spacing2 {
  margin-left: -8px;
  margin-right: -8px;
}

.m-application .row.spacing4 {
  margin-left: -16px;
  margin-right: -16px;
}

.m-application .row.spacing6 {
  margin-left: -24px;
  margin-right: -24px;
}

.m-application .row.spacing8 {
  margin-left: -32px;
  margin-right: -32px;
}

.m-application .row.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.m-application .row.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.m-application .row.column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.m-application :focus {
  outline: none;
}

.m-application .card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
 
}

.m-application .specific-container .card {
  padding: 50px;
}


.m-application .card-content {
  font-size: 0.875rem;
}

.m-application .accordion-content.active .collapsible-header > .arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.m-application .collapsible-header > p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.m-application .collapsible-header > i {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  height: 28px;
  width: 28px;
}

.m-application .collapsible-header h6 {
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.m-application .collapsible-body {
  padding: 0 1rem;
}

.m-application.theme--dark .card {
  -webkit-box-shadow: 0px 1px 3px 0px rgb(64, 64, 64), 0px 1px 1px 0px rgb(42, 42, 42), 0px 2px 1px -1px rgb(20, 20, 20);
  box-shadow: 0px 1px 3px 0px rgb(64, 64, 64), 0px 1px 1px 0px rgb(42, 42, 42), 0px 2px 1px -1px rgb(20, 20, 20);
}

.m-application.theme--light .card {
  -webkit-box-shadow: 0 1.5px 12px 2px rgba(0, 0, 0, 0.06);
  box-shadow: 0 1.5px 12px 2px rgba(0, 0, 0, 0.06);
}

.m-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  max-width: 100%;
  position: relative;
}

.theme--light .m-content .modal-content, .theme--light .m-content .modal {
  background-color: #fff;
}

.theme--dark .m-content .modal-content, .theme--dark .m-content .modal {
  background-color: #424242;
}

/* Content Overider */
#main-wrap .container {
  padding: 0 16px;
  max-width: 1280px;
  width: 100%;
}

@media (min-width: 600px) {
  #main-wrap .container {
    padding: 0 24px;
  }
}
@media (min-width: 960px) {
  #main-wrap .container {
    padding: 0 32px;
  }
}
@media (min-width: 600px) {
  #main-wrap .container.fixed-width {
    max-width: 600px;
  }
}
@media (min-width: 960px) {
  #main-wrap .container.fixed-width {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  #main-wrap .container.fixed-width {
    max-width: 1280px;
  }
}
@media (min-width: 960px) {
  #main-wrap .container.fixed-width-md-up {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  #main-wrap .container.fixed-width-md-up {
    max-width: 1280px;
  }
}
@media (min-width: 1280px) {
  #main-wrap .container.fixed-width-lg-up {
    max-width: 1280px;
  }
}
#main-wrap .container.max-lg {
  max-width: 1280px;
}

#main-wrap .container.max-md {
  max-width: 960px;
}

#main-wrap .container.max-sm {
  max-width: 600px;
}

#main-wrap .container.max-xs {
  max-width: 444px;
}

.card .card-action a:not(.btn):not(.btn-small):not(.btn-large):not(.btn-large):not(.btn-floating) {
  color: var(--v-primary-base) !important;
  padding: 0;
}

select.select {
  /* display: none; */
}

.theme--light .dropdown-content li > a, .theme--light .dropdown-content li > span {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark .dropdown-content li > a, .theme--dark .dropdown-content li > span {
  color: #fff;
}

/* Theme overider */
.money {
  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 600;
}

.money .btn {
  border-radius: 25px;
  color: var(--v-primarydark-base);
}

.money .btn.primary {
  -webkit-box-shadow: 0 0 4px -1px var(--v-primary-base);
  box-shadow: 0 0 4px -1px var(--v-primary-base);
}

.money .btn.secondary {
  -webkit-box-shadow: 0 0 4px -1px var(--v-secondary-base);
  box-shadow: 0 0 4px -1px var(--v-secondary-base);
}

.money .modal {
  border-radius: 12px;
}

.money .accordion .collapsible {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

.money .accordion .collapsible-header {
  border: none;
}

.money .input-field.filled > label {
  top: 6px;
}

[dir=ltr] .money .input-field.filled > label {
  left: 8px;
}

[dir=rtl] .money .input-field.filled > label {
  right: 8px;
}

.money .input-field.filled > label:not(.label-icon).active {
  -webkit-transform: translateY(1px) scale(0.8) !important;
  -ms-transform: translateY(1px) scale(0.8) !important;
  transform: translateY(1px) scale(0.8) !important;
}

.money .input-field.filled input, .money .input-field.filled textarea {
  border-radius: 6px 6px 0 0;
  padding: 25px 8px 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme--light .money .input-field.filled input, .theme--light .money .input-field.filled textarea {
  background-color: rgba(0, 0, 0, 0.06);
}

.theme--dark .money .input-field.filled input, .theme--dark .money .input-field.filled textarea {
  background-color: rgba(255, 255, 255, 0.08);
}

.theme--light .money .input-field.filled input:hover, .theme--light .money .input-field.filled textarea:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.theme--dark .money .input-field.filled input:hover, .theme--dark .money .input-field.filled textarea:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.theme--light .money .input-field.filled input:focus, .theme--light .money .input-field.filled input:active, .theme--light .money .input-field.filled textarea:focus, .theme--light .money .input-field.filled textarea:active {
  background-color: rgba(0, 0, 0, 0.06);
}

.theme--dark .money .input-field.filled input:focus, .theme--dark .money .input-field.filled input:active, .theme--dark .money .input-field.filled textarea:focus, .theme--dark .money .input-field.filled textarea:active {
  background-color: rgba(255, 255, 255, 0.08);
}

.money .input-field.filled input {
  height: 3.5rem;
}

html {
  height: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100%;
}

.btn {
  border-radius: 4px;
  background: none;
  position: relative;
  font-weight: var(--font-bold);
}

.btn.block {
  width: 100%;
}

.theme--light .btn-default {
  background-color: #f5f5f5;
}

.theme--dark .btn-default {
  background-color: #212121;
}

.btn.primary {
  background-color: var(--v-primary-base);
}

.btn.secondary {
  background-color: var(--v-secondary-base);
}

.btn-flat {
  font-weight: var(--font-medium);
}

.btn-flat:hover {
  background: none;
}

.theme--light .btn-flat:hover {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark .btn-flat:hover {
  color: #fff;
}

.btn-icon {
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  cursor: pointer;
  font-size: 14px;
  outline: 0;
  border: none;
  font-weight: var(--font-bold);
  border-radius: 50%;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  text-transform: uppercase;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0;
  width: 36px;
  overflow: hidden;
}

.btn-icon:before {
  border-radius: 4px;
  bottom: 0;
  color: inherit;
  content: "";
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background-color: currentColor;
  -webkit-transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.btn-icon:hover:before {
  opacity: 0.06;
}

.theme--light .btn-icon {
  color: rgba(0, 0, 0, 0.54);
}

.theme--dark .btn-icon {
  color: rgba(255, 255, 255, 0.7);
}

.btn-icon:focus {
  background-color: transparent;
}

.btn-icon i {
  line-height: 36px !important;
}

.btn-icon:before {
  border-radius: 50%;
}

.btn-outlined {
  position: relative;
  background-color: transparent !important;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  cursor: pointer;
  font-size: 14px;
  outline: 0;
  border: 1px solid;
  font-weight: var(--font-bold);
  border-radius: 4px;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  text-transform: uppercase;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn-outlined:before {
  border-radius: 4px;
  bottom: 0;
  color: inherit;
  content: "";
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background-color: currentColor;
  -webkit-transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.btn-outlined:hover:before {
  opacity: 0.06;
}

.theme--light .btn-outlined {
  border-color: rgba(0, 0, 0, 0.87);
}

.theme--dark .btn-outlined {
  border-color: #fff;
}

.btn-outlined.primary {
  color: var(--v-primary-base) !important;
  border-color: var(--v-primary-base);
}

.btn-outlined.primary .waves-ripple {
  background: var(--v-primarylight-base);
}

.btn-outlined.secondary {
  color: var(--v-secondary-base) !important;
  border-color: var(--v-secondary-base);
}

.btn-outlined.secondary .waves-ripple {
  background: var(--v-secondarylight-base);
}

.btn-outlined.white {
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.54);
}

.btn-floating.primary {
  background: var(--v-primary-base) !important;
}

.btn-floating.secondary {
  background: var(--v-secondary-base) !important;
}

.btn:before {
  border-radius: 4px;
  bottom: 0;
  color: inherit;
  content: "";
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background-color: currentColor;
  -webkit-transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.btn:hover:before {
  opacity: 0.06;
}

.icon.primary {
  color: var(--v-primary-base);
}

.icon.secondary {
  color: var(--v-secondary-base);
}

.collection-item.no-hover:hover {
  background: none;
}

.m-application .display-4 {
  font-size: 6rem !important;
  font-weight: var(--font-regular);
  line-height: 6rem;
  letter-spacing: -0.015625em !important;
}

.m-application .display-3 {
  font-size: 3.75rem !important;
  font-weight: var(--font-regular);
  line-height: 3.75rem;
  letter-spacing: -0.0083333333em !important;
}

.m-application .display-2 {
  font-size: 3rem !important;
  font-weight: var(--font-regular);
  line-height: 3.125rem;
  letter-spacing: normal !important;
}

.m-application .display-1 {
  font-size: 2.125rem !important;
  font-weight: var(--font-medium);
  line-height: 2.5rem;
  letter-spacing: 0.0073529412em !important;
}

.m-application .headline {
  font-size: 1.5rem !important;
  font-weight: var(--font-medium);
  line-height: 2rem;
  letter-spacing: normal !important;
}

.m-application .title {
  font-size: 18px !important;
  font-weight: var(--font-bold);
  line-height: 1.4rem;
  letter-spacing: 0.0125em !important;
}

.m-application .subtitle-1 {
  font-size: 1rem !important;
  font-weight: var(--font-medium);
  letter-spacing: 0.009375em !important;
  line-height: 1.75rem;
}

.m-application .subtitle-2 {
  font-size: 0.875rem !important;
  font-weight: var(--font-bold);
  letter-spacing: 0.0071428571em !important;
  line-height: 1.375rem;
}

.m-application .body-2 {
  font-size: 0.875rem !important;
  font-weight: var(--font-medium);
  letter-spacing: 0.0178571429em !important;
  line-height: 1.25rem;
}

.m-application .body-1 {
  font-size: 1rem !important;
  font-weight: var(--font-medium);
  letter-spacing: 0.03125em !important;
  line-height: 1.5rem;
}

.m-application .caption {
  font-size: 0.75rem !important;
  font-weight: var(--font-medium);
  letter-spacing: 0.0333333333em !important;
  line-height: 1.25rem;
}

.m-application .overline {
  font-size: 0.625rem !important;
  font-weight: var(--font-medium);
  letter-spacing: 0.1666666667em !important;
  line-height: 1rem;
  text-transform: uppercase;
}

.m-application p {
  margin-top: 5px;
  line-height: 2rem;
  margin-bottom: 16px;
}

.avatar-img {
  width: 42px;
  height: 42px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
}

.avatar-img img {
  width: 100%;
}

.theme--light .avatar-img.icon {
  background-color: #bdbdbd;
}

.theme--dark .avatar-img.icon {
  background-color: #757575;
}

.theme--light .avatar-img.icon {
  color: #fff;
}

.theme--dark .avatar-img.icon {
  color: #121212;
}

.avatar-img.small {
  width: 24px;
  height: 24px;
}

.avatar-img.big {
  width: 56px;
  height: 56px;
}

.select-outlined .select-wrapper input.select-dropdown {
  border: 1px solid var(--div-2);
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

[dir=ltr] .select-outlined .select-wrapper input.select-dropdown {
  padding-left: 8px;
}

[dir=rtl] .select-outlined .select-wrapper input.select-dropdown {
  padding-right: 8px;
}

.input-field input:-internal-autofill-selected {
  background-color: transparent !important;
}

.input-field.primary input:not([type]):focus:not([readonly]), .input-field.primary input[type=text]:not(.browser-default):focus:not([readonly]), .input-field.primary input[type=password]:not(.browser-default):focus:not([readonly]), .input-field.primary input[type=email]:not(.browser-default):focus:not([readonly]), .input-field.primary input[type=url]:not(.browser-default):focus:not([readonly]), .input-field.primary input[type=time]:not(.browser-default):focus:not([readonly]), .input-field.primary input[type=date]:not(.browser-default):focus:not([readonly]), .input-field.primary input[type=datetime]:not(.browser-default):focus:not([readonly]), .input-field.primary input[type=datetime-local]:not(.browser-default):focus:not([readonly]), .input-field.primary input[type=tel]:not(.browser-default):focus:not([readonly]), .input-field.primary input[type=number]:not(.browser-default):focus:not([readonly]), .input-field.primary input[type=search]:not(.browser-default):focus:not([readonly]), .input-field.primary textarea.materialize-textarea:focus:not([readonly]) {
  border-bottom-color: var(--v-primary-base);
  -webkit-box-shadow: 0 1px 0 0 var(--v-primary-base);
  box-shadow: 0 1px 0 0 var(--v-primary-base);
}

.input-field.primary input:not([type]):focus:not([readonly]) + label, .input-field.primary input[type=text]:not(.browser-default):focus:not([readonly]) + label, .input-field.primary input[type=password]:not(.browser-default):focus:not([readonly]) + label, .input-field.primary input[type=email]:not(.browser-default):focus:not([readonly]) + label, .input-field.primary input[type=url]:not(.browser-default):focus:not([readonly]) + label, .input-field.primary input[type=time]:not(.browser-default):focus:not([readonly]) + label, .input-field.primary input[type=date]:not(.browser-default):focus:not([readonly]) + label, .input-field.primary input[type=datetime]:not(.browser-default):focus:not([readonly]) + label, .input-field.primary input[type=datetime-local]:not(.browser-default):focus:not([readonly]) + label, .input-field.primary input[type=tel]:not(.browser-default):focus:not([readonly]) + label, .input-field.primary input[type=number]:not(.browser-default):focus:not([readonly]) + label, .input-field.primary input[type=search]:not(.browser-default):focus:not([readonly]) + label, .input-field.primary textarea.materialize-textarea:focus:not([readonly]) + label {
  color: var(--v-primary-base);
}

.input-field.secondary input:not([type]):focus:not([readonly]), .input-field.secondary input[type=text]:not(.browser-default):focus:not([readonly]), .input-field.secondary input[type=password]:not(.browser-default):focus:not([readonly]), .input-field.secondary input[type=email]:not(.browser-default):focus:not([readonly]), .input-field.secondary input[type=url]:not(.browser-default):focus:not([readonly]), .input-field.secondary input[type=time]:not(.browser-default):focus:not([readonly]), .input-field.secondary input[type=date]:not(.browser-default):focus:not([readonly]), .input-field.secondary input[type=datetime]:not(.browser-default):focus:not([readonly]), .input-field.secondary input[type=datetime-local]:not(.browser-default):focus:not([readonly]), .input-field.secondary input[type=tel]:not(.browser-default):focus:not([readonly]), .input-field.secondary input[type=number]:not(.browser-default):focus:not([readonly]), .input-field.secondary input[type=search]:not(.browser-default):focus:not([readonly]), .input-field.secondary textarea.materialize-textarea:focus:not([readonly]) {
  border-bottom-color: var(--v-secondary-base);
  -webkit-box-shadow: 0 1px 0 0 var(--v-secondary-base);
  box-shadow: 0 1px 0 0 var(--v-secondary-base);
}

.input-field.secondary input:not([type]):focus:not([readonly]) + label, .input-field.secondary input[type=text]:not(.browser-default):focus:not([readonly]) + label, .input-field.secondary input[type=password]:not(.browser-default):focus:not([readonly]) + label, .input-field.secondary input[type=email]:not(.browser-default):focus:not([readonly]) + label, .input-field.secondary input[type=url]:not(.browser-default):focus:not([readonly]) + label, .input-field.secondary input[type=time]:not(.browser-default):focus:not([readonly]) + label, .input-field.secondary input[type=date]:not(.browser-default):focus:not([readonly]) + label, .input-field.secondary input[type=datetime]:not(.browser-default):focus:not([readonly]) + label, .input-field.secondary input[type=datetime-local]:not(.browser-default):focus:not([readonly]) + label, .input-field.secondary input[type=tel]:not(.browser-default):focus:not([readonly]) + label, .input-field.secondary input[type=number]:not(.browser-default):focus:not([readonly]) + label, .input-field.secondary input[type=search]:not(.browser-default):focus:not([readonly]) + label, .input-field.secondary textarea.materialize-textarea:focus:not([readonly]) + label {
  color: var(--v-secondary-base);
}

[type=checkbox].filled-in.primary:checked + span:not(.lever):after {
  border: 2px solid var(--v-primary-base);
  background-color: var(--v-primary-base);
}

[type=checkbox].filled-in.secondary:checked + span:not(.lever):after {
  border: 2px solid var(--v-secondary-base);
  background-color: var(--v-secondary-base);
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #FFFFFF;
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}

.theme--light .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.12);
}

.theme--dark .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.12);
}

@media (min-width: 576px) {
  [class*=row-cols-sm-] {
    -ms-flex: inherit;
    -webkit-box-flex: inherit;
    flex: inherit;
    max-width: inherit;
  }
  [class*=col-sm-] {
    -ms-flex: inherit;
    -webkit-box-flex: inherit;
    flex: inherit;
    max-width: inherit;
  }
  [class*=order-sm-] {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  [class*=offset-sm-] {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  [class*=row-cols-md-] {
    -ms-flex: inherit;
    -webkit-box-flex: inherit;
    flex: inherit;
    max-width: inherit;
  }
  [class*=col-md-] {
    -ms-flex: inherit;
    -webkit-box-flex: inherit;
    flex: inherit;
    max-width: inherit;
  }
  [class*=order-md-] {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  [class*=offset-md-] {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  [class*=row-cols-lg-] {
    -ms-flex: inherit;
    -webkit-box-flex: inherit;
    flex: inherit;
    max-width: inherit;
  }
  [class*=col-lg-] {
    -ms-flex: inherit;
    -webkit-box-flex: inherit;
    flex: inherit;
    max-width: inherit;
  }
  [class*=order-lg-] {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  [class*=offset-lg-] {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  [class*=row-cols-xl-] {
    -ms-flex: inherit;
    -webkit-box-flex: inherit;
    flex: inherit;
    max-width: inherit;
  }
  [class*=col-xl-] {
    -ms-flex: inherit;
    -webkit-box-flex: inherit;
    flex: inherit;
    max-width: inherit;
  }
  [class*=order-xl-] {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  [class*=offset-xl-] {
    margin-left: 0;
  }
}
@media (min-width: 600px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 960px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1264px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1904px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.m-application .ma-0 {
  margin: 0px !important;
}

.m-application .ma-1 {
  margin: 4px !important;
}

.m-application .ma-2 {
  margin: 8px !important;
}

.m-application .ma-3 {
  margin: 12px !important;
}

.m-application .ma-4 {
  margin: 16px !important;
}

.m-application .ma-5 {
  margin: 20px !important;
}

.m-application .ma-6 {
  margin: 24px !important;
}

.m-application .ma-7 {
  margin: 28px !important;
}

.m-application .ma-8 {
  margin: 32px !important;
}

.m-application .ma-9 {
  margin: 36px !important;
}

.m-application .ma-10 {
  margin: 40px !important;
}

.m-application .ma-11 {
  margin: 44px !important;
}

.m-application .ma-12 {
  margin: 48px !important;
}

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

.m-application .mx-0 {
  margin-right: 0px !important;
  margin-left: 0px !important;
}

.m-application .mx-1 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

.m-application .mx-2 {
  margin-right: 8px !important;
  margin-left: 8px !important;
}

.m-application .mx-3 {
  margin-right: 12px !important;
  margin-left: 12px !important;
}

.m-application .mx-4 {
  margin-right: 16px !important;
  margin-left: 16px !important;
}

.m-application .mx-5 {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.m-application .mx-6 {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

.m-application .mx-7 {
  margin-right: 28px !important;
  margin-left: 28px !important;
}

.m-application .mx-8 {
  margin-right: 32px !important;
  margin-left: 32px !important;
}

.m-application .mx-9 {
  margin-right: 36px !important;
  margin-left: 36px !important;
}

.m-application .mx-10 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.m-application .mx-11 {
  margin-right: 44px !important;
  margin-left: 44px !important;
}

.m-application .mx-12 {
  margin-right: 48px !important;
  margin-left: 48px !important;
}

.m-application .mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.m-application .my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.m-application .my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.m-application .my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.m-application .my-3 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.m-application .my-4 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.m-application .my-5 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.m-application .my-6 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.m-application .my-7 {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}

.m-application .my-8 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.m-application .my-9 {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}

.m-application .my-10 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.m-application .my-11 {
  margin-top: 44px !important;
  margin-bottom: 44px !important;
}

.m-application .my-12 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.m-application .my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.m-application .mt-0 {
  margin-top: 0px !important;
}

.m-application .mt-1 {
  margin-top: 4px !important;
}

.m-application .mt-2 {
  margin-top: 8px !important;
}

.m-application .mt-3 {
  margin-top: 12px !important;
}

.m-application .mt-4 {
  margin-top: 16px !important;
}

.m-application .mt-5 {
  margin-top: 20px !important;
}

.m-application .mt-6 {
  margin-top: 24px !important;
}

.m-application .mt-7 {
  margin-top: 28px !important;
}

.m-application .mt-8 {
  margin-top: 32px !important;
}

.m-application .mt-9 {
  margin-top: 36px !important;
}

.m-application .mt-10 {
  margin-top: 40px !important;
}

.m-application .mt-11 {
  margin-top: 44px !important;
}

.m-application .mt-12 {
  margin-top: 48px !important;
}

.m-application .mt-auto {
  margin-top: auto !important;
}

.m-application .mr-0 {
  margin-right: 0px !important;
}

.m-application .mr-1 {
  margin-right: 4px !important;
}

.m-application .mr-2 {
  margin-right: 8px !important;
}

.m-application .mr-3 {
  margin-right: 12px !important;
}

.m-application .mr-4 {
  margin-right: 16px !important;
}

.m-application .mr-5 {
  margin-right: 20px !important;
}

.m-application .mr-6 {
  margin-right: 24px !important;
}

.m-application .mr-7 {
  margin-right: 28px !important;
}

.m-application .mr-8 {
  margin-right: 32px !important;
}

.m-application .mr-9 {
  margin-right: 36px !important;
}

.m-application .mr-10 {
  margin-right: 40px !important;
}

.m-application .mr-11 {
  margin-right: 44px !important;
}

.m-application .mr-12 {
  margin-right: 48px !important;
}

.m-application .mr-auto {
  margin-right: auto !important;
}

.m-application .mb-0 {
  margin-bottom: 0px !important;
}

.m-application .mb-1 {
  margin-bottom: 4px !important;
}

.m-application .mb-2 {
  margin-bottom: 8px !important;
}

.m-application .mb-3 {
  margin-bottom: 12px !important;
}

.m-application .mb-4 {
  margin-bottom: 16px !important;
}

.m-application .mb-5 {
  margin-bottom: 20px !important;
}

.m-application .mb-6 {
  margin-bottom: 24px !important;
}

.m-application .mb-7 {
  margin-bottom: 28px !important;
}

.m-application .mb-8 {
  margin-bottom: 32px !important;
}

.m-application .mb-9 {
  margin-bottom: 36px !important;
}

.m-application .mb-10 {
  margin-bottom: 40px !important;
}

.m-application .mb-11 {
  margin-bottom: 44px !important;
}

.m-application .mb-12 {
  margin-bottom: 48px !important;
}

.m-application .mb-auto {
  margin-bottom: auto !important;
}

.m-application .ml-0 {
  margin-left: 0px !important;
}

.m-application .ml-1 {
  margin-left: 4px !important;
}

.m-application .ml-2 {
  margin-left: 8px !important;
}

.m-application .ml-3 {
  margin-left: 12px !important;
}

.m-application .ml-4 {
  margin-left: 16px !important;
}

.m-application .ml-5 {
  margin-left: 20px !important;
}

.m-application .ml-6 {
  margin-left: 24px !important;
}

.m-application .ml-7 {
  margin-left: 28px !important;
}

.m-application .ml-8 {
  margin-left: 32px !important;
}

.m-application .ml-9 {
  margin-left: 36px !important;
}

.m-application .ml-10 {
  margin-left: 40px !important;
}

.m-application .ml-11 {
  margin-left: 44px !important;
}

.m-application .ml-12 {
  margin-left: 48px !important;
}

.m-application .ml-auto {
  margin-left: auto !important;
}

[dir=ltr] .m-application .ms-0 {
  margin-left: 0px !important;
}

[dir=rtl] .m-application .ms-0 {
  margin-right: 0px !important;
}

[dir=ltr] .m-application .ms-1 {
  margin-left: 4px !important;
}

[dir=rtl] .m-application .ms-1 {
  margin-right: 4px !important;
}

[dir=ltr] .m-application .ms-2 {
  margin-left: 8px !important;
}

[dir=rtl] .m-application .ms-2 {
  margin-right: 8px !important;
}

[dir=ltr] .m-application .ms-3 {
  margin-left: 12px !important;
}

[dir=rtl] .m-application .ms-3 {
  margin-right: 12px !important;
}

[dir=ltr] .m-application .ms-4 {
  margin-left: 16px !important;
}

[dir=rtl] .m-application .ms-4 {
  margin-right: 16px !important;
}

[dir=ltr] .m-application .ms-5 {
  margin-left: 20px !important;
}

[dir=rtl] .m-application .ms-5 {
  margin-right: 20px !important;
}

[dir=ltr] .m-application .ms-6 {
  margin-left: 24px !important;
}

[dir=rtl] .m-application .ms-6 {
  margin-right: 24px !important;
}

[dir=ltr] .m-application .ms-7 {
  margin-left: 28px !important;
}

[dir=rtl] .m-application .ms-7 {
  margin-right: 28px !important;
}

[dir=ltr] .m-application .ms-8 {
  margin-left: 32px !important;
}

[dir=rtl] .m-application .ms-8 {
  margin-right: 32px !important;
}

[dir=ltr] .m-application .ms-9 {
  margin-left: 36px !important;
}

[dir=rtl] .m-application .ms-9 {
  margin-right: 36px !important;
}

[dir=ltr] .m-application .ms-10 {
  margin-left: 40px !important;
}

[dir=rtl] .m-application .ms-10 {
  margin-right: 40px !important;
}

[dir=ltr] .m-application .ms-11 {
  margin-left: 44px !important;
}

[dir=rtl] .m-application .ms-11 {
  margin-right: 44px !important;
}

[dir=ltr] .m-application .ms-12 {
  margin-left: 48px !important;
}

[dir=rtl] .m-application .ms-12 {
  margin-right: 48px !important;
}

[dir=ltr] .m-application .ms-auto {
  margin-left: auto !important;
}

[dir=rtl] .m-application .ms-auto {
  margin-right: auto !important;
}

[dir=ltr] .m-application .me-0 {
  margin-right: 0px !important;
}

[dir=rtl] .m-application .me-0 {
  margin-left: 0px !important;
}

[dir=ltr] .m-application .me-1 {
  margin-right: 4px !important;
}

[dir=rtl] .m-application .me-1 {
  margin-left: 4px !important;
}

[dir=ltr] .m-application .me-2 {
  margin-right: 8px !important;
}

[dir=rtl] .m-application .me-2 {
  margin-left: 8px !important;
}

[dir=ltr] .m-application .me-3 {
  margin-right: 12px !important;
}

[dir=rtl] .m-application .me-3 {
  margin-left: 12px !important;
}

[dir=ltr] .m-application .me-4 {
  margin-right: 16px !important;
}

[dir=rtl] .m-application .me-4 {
  margin-left: 16px !important;
}

[dir=ltr] .m-application .me-5 {
  margin-right: 20px !important;
}

[dir=rtl] .m-application .me-5 {
  margin-left: 20px !important;
}

[dir=ltr] .m-application .me-6 {
  margin-right: 24px !important;
}

[dir=rtl] .m-application .me-6 {
  margin-left: 24px !important;
}

[dir=ltr] .m-application .me-7 {
  margin-right: 28px !important;
}

[dir=rtl] .m-application .me-7 {
  margin-left: 28px !important;
}

[dir=ltr] .m-application .me-8 {
  margin-right: 32px !important;
}

[dir=rtl] .m-application .me-8 {
  margin-left: 32px !important;
}

[dir=ltr] .m-application .me-9 {
  margin-right: 36px !important;
}

[dir=rtl] .m-application .me-9 {
  margin-left: 36px !important;
}

[dir=ltr] .m-application .me-10 {
  margin-right: 40px !important;
}

[dir=rtl] .m-application .me-10 {
  margin-left: 40px !important;
}

[dir=ltr] .m-application .me-11 {
  margin-right: 44px !important;
}

[dir=rtl] .m-application .me-11 {
  margin-left: 44px !important;
}

[dir=ltr] .m-application .me-12 {
  margin-right: 48px !important;
}

[dir=rtl] .m-application .me-12 {
  margin-left: 48px !important;
}

[dir=ltr] .m-application .me-auto {
  margin-right: auto !important;
}

[dir=rtl] .m-application .me-auto {
  margin-left: auto !important;
}

.m-application .ma-n1 {
  margin: -4px !important;
}

.m-application .ma-n2 {
  margin: -8px !important;
}

.m-application .ma-n3 {
  margin: -12px !important;
}

.m-application .ma-n4 {
  margin: -16px !important;
}

.m-application .ma-n5 {
  margin: -20px !important;
}

.m-application .ma-n6 {
  margin: -24px !important;
}

.m-application .ma-n7 {
  margin: -28px !important;
}

.m-application .ma-n8 {
  margin: -32px !important;
}

.m-application .ma-n9 {
  margin: -36px !important;
}

.m-application .ma-n10 {
  margin: -40px !important;
}

.m-application .ma-n11 {
  margin: -44px !important;
}

.m-application .ma-n12 {
  margin: -48px !important;
}

.m-application .mx-n1 {
  margin-right: -4px !important;
  margin-left: -4px !important;
}

.m-application .mx-n2 {
  margin-right: -8px !important;
  margin-left: -8px !important;
}

.m-application .mx-n3 {
  margin-right: -12px !important;
  margin-left: -12px !important;
}

.m-application .mx-n4 {
  margin-right: -16px !important;
  margin-left: -16px !important;
}

.m-application .mx-n5 {
  margin-right: -20px !important;
  margin-left: -20px !important;
}

.m-application .mx-n6 {
  margin-right: -24px !important;
  margin-left: -24px !important;
}

.m-application .mx-n7 {
  margin-right: -28px !important;
  margin-left: -28px !important;
}

.m-application .mx-n8 {
  margin-right: -32px !important;
  margin-left: -32px !important;
}

.m-application .mx-n9 {
  margin-right: -36px !important;
  margin-left: -36px !important;
}

.m-application .mx-n10 {
  margin-right: -40px !important;
  margin-left: -40px !important;
}

.m-application .mx-n11 {
  margin-right: -44px !important;
  margin-left: -44px !important;
}

.m-application .mx-n12 {
  margin-right: -48px !important;
  margin-left: -48px !important;
}

.m-application .my-n1 {
  margin-top: -4px !important;
  margin-bottom: -4px !important;
}

.m-application .my-n2 {
  margin-top: -8px !important;
  margin-bottom: -8px !important;
}

.m-application .my-n3 {
  margin-top: -12px !important;
  margin-bottom: -12px !important;
}

.m-application .my-n4 {
  margin-top: -16px !important;
  margin-bottom: -16px !important;
}

.m-application .my-n5 {
  margin-top: -20px !important;
  margin-bottom: -20px !important;
}

.m-application .my-n6 {
  margin-top: -24px !important;
  margin-bottom: -24px !important;
}

.m-application .my-n7 {
  margin-top: -28px !important;
  margin-bottom: -28px !important;
}

.m-application .my-n8 {
  margin-top: -32px !important;
  margin-bottom: -32px !important;
}

.m-application .my-n9 {
  margin-top: -36px !important;
  margin-bottom: -36px !important;
}

.m-application .my-n10 {
  margin-top: -40px !important;
  margin-bottom: -40px !important;
}

.m-application .my-n11 {
  margin-top: -44px !important;
  margin-bottom: -44px !important;
}

.m-application .my-n12 {
  margin-top: -48px !important;
  margin-bottom: -48px !important;
}

.m-application .mt-n1 {
  margin-top: -4px !important;
}

.m-application .mt-n2 {
  margin-top: -8px !important;
}

.m-application .mt-n3 {
  margin-top: -12px !important;
}

.m-application .mt-n4 {
  margin-top: -16px !important;
}

.m-application .mt-n5 {
  margin-top: -20px !important;
}

.m-application .mt-n6 {
  margin-top: -24px !important;
}

.m-application .mt-n7 {
  margin-top: -28px !important;
}

.m-application .mt-n8 {
  margin-top: -32px !important;
}

.m-application .mt-n9 {
  margin-top: -36px !important;
}

.m-application .mt-n10 {
  margin-top: -40px !important;
}

.m-application .mt-n11 {
  margin-top: -44px !important;
}

.m-application .mt-n12 {
  margin-top: -48px !important;
}

.m-application .mr-n1 {
  margin-right: -4px !important;
}

.m-application .mr-n2 {
  margin-right: -8px !important;
}

.m-application .mr-n3 {
  margin-right: -12px !important;
}

.m-application .mr-n4 {
  margin-right: -16px !important;
}

.m-application .mr-n5 {
  margin-right: -20px !important;
}

.m-application .mr-n6 {
  margin-right: -24px !important;
}

.m-application .mr-n7 {
  margin-right: -28px !important;
}

.m-application .mr-n8 {
  margin-right: -32px !important;
}

.m-application .mr-n9 {
  margin-right: -36px !important;
}

.m-application .mr-n10 {
  margin-right: -40px !important;
}

.m-application .mr-n11 {
  margin-right: -44px !important;
}

.m-application .mr-n12 {
  margin-right: -48px !important;
}

.m-application .mb-n1 {
  margin-bottom: -4px !important;
}

.m-application .mb-n2 {
  margin-bottom: -8px !important;
}

.m-application .mb-n3 {
  margin-bottom: -12px !important;
}

.m-application .mb-n4 {
  margin-bottom: -16px !important;
}

.m-application .mb-n5 {
  margin-bottom: -20px !important;
}

.m-application .mb-n6 {
  margin-bottom: -24px !important;
}

.m-application .mb-n7 {
  margin-bottom: -28px !important;
}

.m-application .mb-n8 {
  margin-bottom: -32px !important;
}

.m-application .mb-n9 {
  margin-bottom: -36px !important;
}

.m-application .mb-n10 {
  margin-bottom: -40px !important;
}

.m-application .mb-n11 {
  margin-bottom: -44px !important;
}

.m-application .mb-n12 {
  margin-bottom: -48px !important;
}

.m-application .ml-n1 {
  margin-left: -4px !important;
}

.m-application .ml-n2 {
  margin-left: -8px !important;
}

.m-application .ml-n3 {
  margin-left: -12px !important;
}

.m-application .ml-n4 {
  margin-left: -16px !important;
}

.m-application .ml-n5 {
  margin-left: -20px !important;
}

.m-application .ml-n6 {
  margin-left: -24px !important;
}

.m-application .ml-n7 {
  margin-left: -28px !important;
}

.m-application .ml-n8 {
  margin-left: -32px !important;
}

.m-application .ml-n9 {
  margin-left: -36px !important;
}

.m-application .ml-n10 {
  margin-left: -40px !important;
}

.m-application .ml-n11 {
  margin-left: -44px !important;
}

.m-application .ml-n12 {
  margin-left: -48px !important;
}

[dir=ltr] .m-application .ms-n1 {
  margin-left: -4px !important;
}

[dir=rtl] .m-application .ms-n1 {
  margin-right: -4px !important;
}

[dir=ltr] .m-application .ms-n2 {
  margin-left: -8px !important;
}

[dir=rtl] .m-application .ms-n2 {
  margin-right: -8px !important;
}

[dir=ltr] .m-application .ms-n3 {
  margin-left: -12px !important;
}

[dir=rtl] .m-application .ms-n3 {
  margin-right: -12px !important;
}

[dir=ltr] .m-application .ms-n4 {
  margin-left: -16px !important;
}

[dir=rtl] .m-application .ms-n4 {
  margin-right: -16px !important;
}

[dir=ltr] .m-application .ms-n5 {
  margin-left: -20px !important;
}

[dir=rtl] .m-application .ms-n5 {
  margin-right: -20px !important;
}

[dir=ltr] .m-application .ms-n6 {
  margin-left: -24px !important;
}

[dir=rtl] .m-application .ms-n6 {
  margin-right: -24px !important;
}

[dir=ltr] .m-application .ms-n7 {
  margin-left: -28px !important;
}

[dir=rtl] .m-application .ms-n7 {
  margin-right: -28px !important;
}

[dir=ltr] .m-application .ms-n8 {
  margin-left: -32px !important;
}

[dir=rtl] .m-application .ms-n8 {
  margin-right: -32px !important;
}

[dir=ltr] .m-application .ms-n9 {
  margin-left: -36px !important;
}

[dir=rtl] .m-application .ms-n9 {
  margin-right: -36px !important;
}

[dir=ltr] .m-application .ms-n10 {
  margin-left: -40px !important;
}

[dir=rtl] .m-application .ms-n10 {
  margin-right: -40px !important;
}

[dir=ltr] .m-application .ms-n11 {
  margin-left: -44px !important;
}

[dir=rtl] .m-application .ms-n11 {
  margin-right: -44px !important;
}

[dir=ltr] .m-application .ms-n12 {
  margin-left: -48px !important;
}

[dir=rtl] .m-application .ms-n12 {
  margin-right: -48px !important;
}

[dir=ltr] .m-application .me-n1 {
  margin-right: -4px !important;
}

[dir=rtl] .m-application .me-n1 {
  margin-left: -4px !important;
}

[dir=ltr] .m-application .me-n2 {
  margin-right: -8px !important;
}

[dir=rtl] .m-application .me-n2 {
  margin-left: -8px !important;
}

[dir=ltr] .m-application .me-n3 {
  margin-right: -12px !important;
}

[dir=rtl] .m-application .me-n3 {
  margin-left: -12px !important;
}

[dir=ltr] .m-application .me-n4 {
  margin-right: -16px !important;
}

[dir=rtl] .m-application .me-n4 {
  margin-left: -16px !important;
}

[dir=ltr] .m-application .me-n5 {
  margin-right: -20px !important;
}

[dir=rtl] .m-application .me-n5 {
  margin-left: -20px !important;
}

[dir=ltr] .m-application .me-n6 {
  margin-right: -24px !important;
}

[dir=rtl] .m-application .me-n6 {
  margin-left: -24px !important;
}

[dir=ltr] .m-application .me-n7 {
  margin-right: -28px !important;
}

[dir=rtl] .m-application .me-n7 {
  margin-left: -28px !important;
}

[dir=ltr] .m-application .me-n8 {
  margin-right: -32px !important;
}

[dir=rtl] .m-application .me-n8 {
  margin-left: -32px !important;
}

[dir=ltr] .m-application .me-n9 {
  margin-right: -36px !important;
}

[dir=rtl] .m-application .me-n9 {
  margin-left: -36px !important;
}

[dir=ltr] .m-application .me-n10 {
  margin-right: -40px !important;
}

[dir=rtl] .m-application .me-n10 {
  margin-left: -40px !important;
}

[dir=ltr] .m-application .me-n11 {
  margin-right: -44px !important;
}

[dir=rtl] .m-application .me-n11 {
  margin-left: -44px !important;
}

[dir=ltr] .m-application .me-n12 {
  margin-right: -48px !important;
}

[dir=rtl] .m-application .me-n12 {
  margin-left: -48px !important;
}

.m-application .pa-0 {
  padding: 0px !important;
}

.m-application .pa-1 {
  padding: 4px !important;
}

.m-application .pa-2 {
  padding: 8px !important;
}

.m-application .pa-3 {
  padding: 12px !important;
}

.m-application .pa-4 {
  padding: 16px !important;
}

.m-application .pa-5 {
  padding: 20px !important;
}

.m-application .pa-6 {
  padding: 24px !important;
}

.m-application .pa-7 {
  padding: 28px !important;
}

.m-application .pa-8 {
  padding: 32px !important;
}

.m-application .pa-9 {
  padding: 36px !important;
}

.m-application .pa-10 {
  padding: 40px !important;
}

.m-application .pa-11 {
  padding: 44px !important;
}

.m-application .pa-12 {
  padding: 48px !important;
}

.m-application .px-0 {
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.m-application .px-1 {
  padding-right: 4px !important;
  padding-left: 4px !important;
}

.m-application .px-2 {
  padding-right: 8px !important;
  padding-left: 8px !important;
}

.m-application .px-3 {
  padding-right: 12px !important;
  padding-left: 12px !important;
}

.m-application .px-4 {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

.m-application .px-5 {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.m-application .px-6 {
  /* padding-right: 24px !important;
  padding-left: 24px !important; */
}

.m-application .px-7 {
  padding-right: 28px !important;
  padding-left: 28px !important;
}

.m-application .px-8 {
  padding-right: 32px !important;
  padding-left: 32px !important;
}

.m-application .px-9 {
  padding-right: 36px !important;
  padding-left: 36px !important;
}

.m-application .px-10 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.m-application .px-11 {
  padding-right: 44px !important;
  padding-left: 44px !important;
}

.m-application .px-12 {
  padding-right: 48px !important;
  padding-left: 48px !important;
}

.m-application .py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.m-application .py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.m-application .py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.m-application .py-3 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.m-application .py-4 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.m-application .py-5 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.m-application .py-6 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.m-application .py-7 {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.m-application .py-8 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.m-application .py-9 {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

.m-application .py-10 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.m-application .py-11 {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}

.m-application .py-12 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.m-application .pt-0 {
  padding-top: 0px !important;
}

.m-application .pt-1 {
  padding-top: 4px !important;
}

.m-application .pt-2 {
  padding-top: 8px !important;
}

.m-application .pt-3 {
  padding-top: 12px !important;
}

.m-application .pt-4 {
  padding-top: 16px !important;
}

.m-application .pt-5 {
  padding-top: 20px !important;
}

.m-application .pt-6 {
  padding-top: 24px !important;
}

.m-application .pt-7 {
  padding-top: 28px !important;
}

.m-application .pt-8 {
  padding-top: 32px !important;
}

.m-application .pt-9 {
  padding-top: 36px !important;
}

.m-application .pt-10 {
  padding-top: 40px !important;
}

.m-application .pt-11 {
  padding-top: 44px !important;
}

.m-application .pt-12 {
  padding-top: 48px !important;
}

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

.m-application .pr-1 {
  padding-right: 4px !important;
}

.m-application .pr-2 {
  padding-right: 8px !important;
}

.m-application .pr-3 {
  padding-right: 12px !important;
}

.m-application .pr-4 {
  padding-right: 16px !important;
}

.m-application .pr-5 {
  padding-right: 20px !important;
}

.m-application .pr-6 {
  padding-right: 24px !important;
}

.m-application .pr-7 {
  padding-right: 28px !important;
}

.m-application .pr-8 {
  padding-right: 32px !important;
}

.m-application .pr-9 {
  padding-right: 36px !important;
}

.m-application .pr-10 {
  padding-right: 40px !important;
}

.m-application .pr-11 {
  padding-right: 44px !important;
}

.m-application .pr-12 {
  padding-right: 48px !important;
}

.m-application .pb-0 {
  padding-bottom: 0px !important;
}

.m-application .pb-1 {
  padding-bottom: 4px !important;
}

.m-application .pb-2 {
  padding-bottom: 8px !important;
}

.m-application .pb-3 {
  padding-bottom: 12px !important;
}

.m-application .pb-4 {
  padding-bottom: 16px !important;
}

.m-application .pb-5 {
  padding-bottom: 20px !important;
}

.m-application .pb-6 {
  padding-bottom: 24px !important;
}

.m-application .pb-7 {
  padding-bottom: 28px !important;
}

.m-application .pb-8 {
  padding-bottom: 32px !important;
}

.m-application .pb-9 {
  padding-bottom: 36px !important;
}

.m-application .pb-10 {
  padding-bottom: 40px !important;
}

.m-application .pb-11 {
  padding-bottom: 44px !important;
}

.m-application .pb-12 {
  padding-bottom: 48px !important;
}

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

.m-application .pl-1 {
  padding-left: 4px !important;
}

.m-application .pl-2 {
  padding-left: 8px !important;
}

.m-application .pl-3 {
  padding-left: 12px !important;
}

.m-application .pl-4 {
  padding-left: 16px !important;
}

.m-application .pl-5 {
  padding-left: 20px !important;
}

.m-application .pl-6 {
  padding-left: 24px !important;
}

.m-application .pl-7 {
  padding-left: 28px !important;
}

.m-application .pl-8 {
  padding-left: 32px !important;
}

.m-application .pl-9 {
  padding-left: 36px !important;
}

.m-application .pl-10 {
  padding-left: 40px !important;
}

.m-application .pl-11 {
  padding-left: 44px !important;
}

.m-application .pl-12 {
  padding-left: 48px !important;
}

[dir=ltr] .m-application .ps-0 {
  padding-left: 0px !important;
}

[dir=rtl] .m-application .ps-0 {
  padding-right: 0px !important;
}

[dir=ltr] .m-application .ps-1 {
  padding-left: 4px !important;
}

[dir=rtl] .m-application .ps-1 {
  padding-right: 4px !important;
}

[dir=ltr] .m-application .ps-2 {
  padding-left: 8px !important;
}

[dir=rtl] .m-application .ps-2 {
  padding-right: 8px !important;
}

[dir=ltr] .m-application .ps-3 {
  padding-left: 12px !important;
}

[dir=rtl] .m-application .ps-3 {
  padding-right: 12px !important;
}

[dir=ltr] .m-application .ps-4 {
  padding-left: 16px !important;
}

[dir=rtl] .m-application .ps-4 {
  padding-right: 16px !important;
}

[dir=ltr] .m-application .ps-5 {
  padding-left: 20px !important;
}

[dir=rtl] .m-application .ps-5 {
  padding-right: 20px !important;
}

[dir=ltr] .m-application .ps-6 {
  padding-left: 24px !important;
}

[dir=rtl] .m-application .ps-6 {
  padding-right: 24px !important;
}

[dir=ltr] .m-application .ps-7 {
  padding-left: 28px !important;
}

[dir=rtl] .m-application .ps-7 {
  padding-right: 28px !important;
}

[dir=ltr] .m-application .ps-8 {
  padding-left: 32px !important;
}

[dir=rtl] .m-application .ps-8 {
  padding-right: 32px !important;
}

[dir=ltr] .m-application .ps-9 {
  padding-left: 36px !important;
}

[dir=rtl] .m-application .ps-9 {
  padding-right: 36px !important;
}

[dir=ltr] .m-application .ps-10 {
  padding-left: 40px !important;
}

[dir=rtl] .m-application .ps-10 {
  padding-right: 40px !important;
}

[dir=ltr] .m-application .ps-11 {
  padding-left: 44px !important;
}

[dir=rtl] .m-application .ps-11 {
  padding-right: 44px !important;
}

[dir=ltr] .m-application .ps-12 {
  padding-left: 48px !important;
}

[dir=rtl] .m-application .ps-12 {
  padding-right: 48px !important;
}

[dir=ltr] .m-application .pe-0 {
  padding-right: 0px !important;
}

[dir=rtl] .m-application .pe-0 {
  padding-left: 0px !important;
}

[dir=ltr] .m-application .pe-1 {
  padding-right: 4px !important;
}

[dir=rtl] .m-application .pe-1 {
  padding-left: 4px !important;
}

[dir=ltr] .m-application .pe-2 {
  padding-right: 8px !important;
}

[dir=rtl] .m-application .pe-2 {
  padding-left: 8px !important;
}

[dir=ltr] .m-application .pe-3 {
  padding-right: 12px !important;
}

[dir=rtl] .m-application .pe-3 {
  padding-left: 12px !important;
}

[dir=ltr] .m-application .pe-4 {
  padding-right: 16px !important;
}

[dir=rtl] .m-application .pe-4 {
  padding-left: 16px !important;
}

[dir=ltr] .m-application .pe-5 {
  padding-right: 20px !important;
}

[dir=rtl] .m-application .pe-5 {
  padding-left: 20px !important;
}

[dir=ltr] .m-application .pe-6 {
  padding-right: 24px !important;
}

[dir=rtl] .m-application .pe-6 {
  padding-left: 24px !important;
}

[dir=ltr] .m-application .pe-7 {
  padding-right: 28px !important;
}

[dir=rtl] .m-application .pe-7 {
  padding-left: 28px !important;
}

[dir=ltr] .m-application .pe-8 {
  padding-right: 32px !important;
}

[dir=rtl] .m-application .pe-8 {
  padding-left: 32px !important;
}

[dir=ltr] .m-application .pe-9 {
  padding-right: 36px !important;
}

[dir=rtl] .m-application .pe-9 {
  padding-left: 36px !important;
}

[dir=ltr] .m-application .pe-10 {
  padding-right: 40px !important;
}

[dir=rtl] .m-application .pe-10 {
  padding-left: 40px !important;
}

[dir=ltr] .m-application .pe-11 {
  padding-right: 44px !important;
}

[dir=rtl] .m-application .pe-11 {
  padding-left: 44px !important;
}

[dir=ltr] .m-application .pe-12 {
  padding-right: 48px !important;
}

[dir=rtl] .m-application .pe-12 {
  padding-left: 48px !important;
}

@media only screen and (min-width: 600px) {
  .m-application .ma-sm-0 {
    margin: 0px !important;
  }
  .m-application .ma-sm-1 {
    margin: 4px !important;
  }
  .m-application .ma-sm-2 {
    margin: 8px !important;
  }
  .m-application .ma-sm-3 {
    margin: 12px !important;
  }
  .m-application .ma-sm-4 {
    margin: 16px !important;
  }
  .m-application .ma-sm-5 {
    margin: 20px !important;
  }
  .m-application .ma-sm-6 {
    margin: 24px !important;
  }
  .m-application .ma-sm-7 {
    margin: 28px !important;
  }
  .m-application .ma-sm-8 {
    margin: 32px !important;
  }
  .m-application .ma-sm-9 {
    margin: 36px !important;
  }
  .m-application .ma-sm-10 {
    margin: 40px !important;
  }
  .m-application .ma-sm-11 {
    margin: 44px !important;
  }
  .m-application .ma-sm-12 {
    margin: 48px !important;
  }
  .m-application .ma-sm-auto {
    margin: auto !important;
  }
  .m-application .mx-sm-0 {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .m-application .mx-sm-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  .m-application .mx-sm-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  .m-application .mx-sm-3 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
  .m-application .mx-sm-4 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  .m-application .mx-sm-5 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .m-application .mx-sm-6 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  .m-application .mx-sm-7 {
    margin-right: 28px !important;
    margin-left: 28px !important;
  }
  .m-application .mx-sm-8 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }
  .m-application .mx-sm-9 {
    margin-right: 36px !important;
    margin-left: 36px !important;
  }
  .m-application .mx-sm-10 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .m-application .mx-sm-11 {
    margin-right: 44px !important;
    margin-left: 44px !important;
  }
  .m-application .mx-sm-12 {
    margin-right: 48px !important;
    margin-left: 48px !important;
  }
  .m-application .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .m-application .my-sm-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .m-application .my-sm-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-application .my-sm-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-application .my-sm-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-application .my-sm-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-application .my-sm-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-application .my-sm-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-application .my-sm-7 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-application .my-sm-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-application .my-sm-9 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-application .my-sm-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-application .my-sm-11 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-application .my-sm-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-application .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .m-application .mt-sm-0 {
    margin-top: 0px !important;
  }
  .m-application .mt-sm-1 {
    margin-top: 4px !important;
  }
  .m-application .mt-sm-2 {
    margin-top: 8px !important;
  }
  .m-application .mt-sm-3 {
    margin-top: 12px !important;
  }
  .m-application .mt-sm-4 {
    margin-top: 16px !important;
  }
  .m-application .mt-sm-5 {
    margin-top: 20px !important;
  }
  .m-application .mt-sm-6 {
    margin-top: 24px !important;
  }
  .m-application .mt-sm-7 {
    margin-top: 28px !important;
  }
  .m-application .mt-sm-8 {
    margin-top: 32px !important;
  }
  .m-application .mt-sm-9 {
    margin-top: 36px !important;
  }
  .m-application .mt-sm-10 {
    margin-top: 40px !important;
  }
  .m-application .mt-sm-11 {
    margin-top: 44px !important;
  }
  .m-application .mt-sm-12 {
    margin-top: 48px !important;
  }
  .m-application .mt-sm-auto {
    margin-top: auto !important;
  }
  .m-application .mr-sm-0 {
    margin-right: 0px !important;
  }
  .m-application .mr-sm-1 {
    margin-right: 4px !important;
  }
  .m-application .mr-sm-2 {
    margin-right: 8px !important;
  }
  .m-application .mr-sm-3 {
    margin-right: 12px !important;
  }
  .m-application .mr-sm-4 {
    margin-right: 16px !important;
  }
  .m-application .mr-sm-5 {
    margin-right: 20px !important;
  }
  .m-application .mr-sm-6 {
    margin-right: 24px !important;
  }
  .m-application .mr-sm-7 {
    margin-right: 28px !important;
  }
  .m-application .mr-sm-8 {
    margin-right: 32px !important;
  }
  .m-application .mr-sm-9 {
    margin-right: 36px !important;
  }
  .m-application .mr-sm-10 {
    margin-right: 40px !important;
  }
  .m-application .mr-sm-11 {
    margin-right: 44px !important;
  }
  .m-application .mr-sm-12 {
    margin-right: 48px !important;
  }
  .m-application .mr-sm-auto {
    margin-right: auto !important;
  }
  .m-application .mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .m-application .mb-sm-1 {
    margin-bottom: 4px !important;
  }
  .m-application .mb-sm-2 {
    margin-bottom: 8px !important;
  }
  .m-application .mb-sm-3 {
    margin-bottom: 12px !important;
  }
  .m-application .mb-sm-4 {
    margin-bottom: 16px !important;
  }
  .m-application .mb-sm-5 {
    margin-bottom: 20px !important;
  }
  .m-application .mb-sm-6 {
    margin-bottom: 24px !important;
  }
  .m-application .mb-sm-7 {
    margin-bottom: 28px !important;
  }
  .m-application .mb-sm-8 {
    margin-bottom: 32px !important;
  }
  .m-application .mb-sm-9 {
    margin-bottom: 36px !important;
  }
  .m-application .mb-sm-10 {
    margin-bottom: 40px !important;
  }
  .m-application .mb-sm-11 {
    margin-bottom: 44px !important;
  }
  .m-application .mb-sm-12 {
    margin-bottom: 48px !important;
  }
  .m-application .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .m-application .ml-sm-0 {
    margin-left: 0px !important;
  }
  .m-application .ml-sm-1 {
    margin-left: 4px !important;
  }
  .m-application .ml-sm-2 {
    margin-left: 8px !important;
  }
  .m-application .ml-sm-3 {
    margin-left: 12px !important;
  }
  .m-application .ml-sm-4 {
    margin-left: 16px !important;
  }
  .m-application .ml-sm-5 {
    margin-left: 20px !important;
  }
  .m-application .ml-sm-6 {
    margin-left: 24px !important;
  }
  .m-application .ml-sm-7 {
    margin-left: 28px !important;
  }
  .m-application .ml-sm-8 {
    margin-left: 32px !important;
  }
  .m-application .ml-sm-9 {
    margin-left: 36px !important;
  }
  .m-application .ml-sm-10 {
    margin-left: 40px !important;
  }
  .m-application .ml-sm-11 {
    margin-left: 44px !important;
  }
  .m-application .ml-sm-12 {
    margin-left: 48px !important;
  }
  .m-application .ml-sm-auto {
    margin-left: auto !important;
  }
  [dir=ltr] .m-application .ms-sm-0 {
    margin-left: 0px !important;
  }
  [dir=rtl] .m-application .ms-sm-0 {
    margin-right: 0px !important;
  }
  [dir=ltr] .m-application .ms-sm-1 {
    margin-left: 4px !important;
  }
  [dir=rtl] .m-application .ms-sm-1 {
    margin-right: 4px !important;
  }
  [dir=ltr] .m-application .ms-sm-2 {
    margin-left: 8px !important;
  }
  [dir=rtl] .m-application .ms-sm-2 {
    margin-right: 8px !important;
  }
  [dir=ltr] .m-application .ms-sm-3 {
    margin-left: 12px !important;
  }
  [dir=rtl] .m-application .ms-sm-3 {
    margin-right: 12px !important;
  }
  [dir=ltr] .m-application .ms-sm-4 {
    margin-left: 16px !important;
  }
  [dir=rtl] .m-application .ms-sm-4 {
    margin-right: 16px !important;
  }
  [dir=ltr] .m-application .ms-sm-5 {
    margin-left: 20px !important;
  }
  [dir=rtl] .m-application .ms-sm-5 {
    margin-right: 20px !important;
  }
  [dir=ltr] .m-application .ms-sm-6 {
    margin-left: 24px !important;
  }
  [dir=rtl] .m-application .ms-sm-6 {
    margin-right: 24px !important;
  }
  [dir=ltr] .m-application .ms-sm-7 {
    margin-left: 28px !important;
  }
  [dir=rtl] .m-application .ms-sm-7 {
    margin-right: 28px !important;
  }
  [dir=ltr] .m-application .ms-sm-8 {
    margin-left: 32px !important;
  }
  [dir=rtl] .m-application .ms-sm-8 {
    margin-right: 32px !important;
  }
  [dir=ltr] .m-application .ms-sm-9 {
    margin-left: 36px !important;
  }
  [dir=rtl] .m-application .ms-sm-9 {
    margin-right: 36px !important;
  }
  [dir=ltr] .m-application .ms-sm-10 {
    margin-left: 40px !important;
  }
  [dir=rtl] .m-application .ms-sm-10 {
    margin-right: 40px !important;
  }
  [dir=ltr] .m-application .ms-sm-11 {
    margin-left: 44px !important;
  }
  [dir=rtl] .m-application .ms-sm-11 {
    margin-right: 44px !important;
  }
  [dir=ltr] .m-application .ms-sm-12 {
    margin-left: 48px !important;
  }
  [dir=rtl] .m-application .ms-sm-12 {
    margin-right: 48px !important;
  }
  [dir=ltr] .m-application .ms-sm-auto {
    margin-left: auto !important;
  }
  [dir=rtl] .m-application .ms-sm-auto {
    margin-right: auto !important;
  }
  [dir=ltr] .m-application .me-sm-0 {
    margin-right: 0px !important;
  }
  [dir=rtl] .m-application .me-sm-0 {
    margin-left: 0px !important;
  }
  [dir=ltr] .m-application .me-sm-1 {
    margin-right: 4px !important;
  }
  [dir=rtl] .m-application .me-sm-1 {
    margin-left: 4px !important;
  }
  [dir=ltr] .m-application .me-sm-2 {
    margin-right: 8px !important;
  }
  [dir=rtl] .m-application .me-sm-2 {
    margin-left: 8px !important;
  }
  [dir=ltr] .m-application .me-sm-3 {
    margin-right: 12px !important;
  }
  [dir=rtl] .m-application .me-sm-3 {
    margin-left: 12px !important;
  }
  [dir=ltr] .m-application .me-sm-4 {
    margin-right: 16px !important;
  }
  [dir=rtl] .m-application .me-sm-4 {
    margin-left: 16px !important;
  }
  [dir=ltr] .m-application .me-sm-5 {
    margin-right: 20px !important;
  }
  [dir=rtl] .m-application .me-sm-5 {
    margin-left: 20px !important;
  }
  [dir=ltr] .m-application .me-sm-6 {
    margin-right: 24px !important;
  }
  [dir=rtl] .m-application .me-sm-6 {
    margin-left: 24px !important;
  }
  [dir=ltr] .m-application .me-sm-7 {
    margin-right: 28px !important;
  }
  [dir=rtl] .m-application .me-sm-7 {
    margin-left: 28px !important;
  }
  [dir=ltr] .m-application .me-sm-8 {
    margin-right: 32px !important;
  }
  [dir=rtl] .m-application .me-sm-8 {
    margin-left: 32px !important;
  }
  [dir=ltr] .m-application .me-sm-9 {
    margin-right: 36px !important;
  }
  [dir=rtl] .m-application .me-sm-9 {
    margin-left: 36px !important;
  }
  [dir=ltr] .m-application .me-sm-10 {
    margin-right: 40px !important;
  }
  [dir=rtl] .m-application .me-sm-10 {
    margin-left: 40px !important;
  }
  [dir=ltr] .m-application .me-sm-11 {
    margin-right: 44px !important;
  }
  [dir=rtl] .m-application .me-sm-11 {
    margin-left: 44px !important;
  }
  [dir=ltr] .m-application .me-sm-12 {
    margin-right: 48px !important;
  }
  [dir=rtl] .m-application .me-sm-12 {
    margin-left: 48px !important;
  }
  [dir=ltr] .m-application .me-sm-auto {
    margin-right: auto !important;
  }
  [dir=rtl] .m-application .me-sm-auto {
    margin-left: auto !important;
  }
  .m-application .ma-sm-n1 {
    margin: -4px !important;
  }
  .m-application .ma-sm-n2 {
    margin: -8px !important;
  }
  .m-application .ma-sm-n3 {
    margin: -12px !important;
  }
  .m-application .ma-sm-n4 {
    margin: -16px !important;
  }
  .m-application .ma-sm-n5 {
    margin: -20px !important;
  }
  .m-application .ma-sm-n6 {
    margin: -24px !important;
  }
  .m-application .ma-sm-n7 {
    margin: -28px !important;
  }
  .m-application .ma-sm-n8 {
    margin: -32px !important;
  }
  .m-application .ma-sm-n9 {
    margin: -36px !important;
  }
  .m-application .ma-sm-n10 {
    margin: -40px !important;
  }
  .m-application .ma-sm-n11 {
    margin: -44px !important;
  }
  .m-application .ma-sm-n12 {
    margin: -48px !important;
  }
  .m-application .mx-sm-n1 {
    margin-right: -4px !important;
    margin-left: -4px !important;
  }
  .m-application .mx-sm-n2 {
    margin-right: -8px !important;
    margin-left: -8px !important;
  }
  .m-application .mx-sm-n3 {
    margin-right: -12px !important;
    margin-left: -12px !important;
  }
  .m-application .mx-sm-n4 {
    margin-right: -16px !important;
    margin-left: -16px !important;
  }
  .m-application .mx-sm-n5 {
    margin-right: -20px !important;
    margin-left: -20px !important;
  }
  .m-application .mx-sm-n6 {
    margin-right: -24px !important;
    margin-left: -24px !important;
  }
  .m-application .mx-sm-n7 {
    margin-right: -28px !important;
    margin-left: -28px !important;
  }
  .m-application .mx-sm-n8 {
    margin-right: -32px !important;
    margin-left: -32px !important;
  }
  .m-application .mx-sm-n9 {
    margin-right: -36px !important;
    margin-left: -36px !important;
  }
  .m-application .mx-sm-n10 {
    margin-right: -40px !important;
    margin-left: -40px !important;
  }
  .m-application .mx-sm-n11 {
    margin-right: -44px !important;
    margin-left: -44px !important;
  }
  .m-application .mx-sm-n12 {
    margin-right: -48px !important;
    margin-left: -48px !important;
  }
  .m-application .my-sm-n1 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }
  .m-application .my-sm-n2 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }
  .m-application .my-sm-n3 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }
  .m-application .my-sm-n4 {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }
  .m-application .my-sm-n5 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }
  .m-application .my-sm-n6 {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }
  .m-application .my-sm-n7 {
    margin-top: -28px !important;
    margin-bottom: -28px !important;
  }
  .m-application .my-sm-n8 {
    margin-top: -32px !important;
    margin-bottom: -32px !important;
  }
  .m-application .my-sm-n9 {
    margin-top: -36px !important;
    margin-bottom: -36px !important;
  }
  .m-application .my-sm-n10 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }
  .m-application .my-sm-n11 {
    margin-top: -44px !important;
    margin-bottom: -44px !important;
  }
  .m-application .my-sm-n12 {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }
  .m-application .mt-sm-n1 {
    margin-top: -4px !important;
  }
  .m-application .mt-sm-n2 {
    margin-top: -8px !important;
  }
  .m-application .mt-sm-n3 {
    margin-top: -12px !important;
  }
  .m-application .mt-sm-n4 {
    margin-top: -16px !important;
  }
  .m-application .mt-sm-n5 {
    margin-top: -20px !important;
  }
  .m-application .mt-sm-n6 {
    margin-top: -24px !important;
  }
  .m-application .mt-sm-n7 {
    margin-top: -28px !important;
  }
  .m-application .mt-sm-n8 {
    margin-top: -32px !important;
  }
  .m-application .mt-sm-n9 {
    margin-top: -36px !important;
  }
  .m-application .mt-sm-n10 {
    margin-top: -40px !important;
  }
  .m-application .mt-sm-n11 {
    margin-top: -44px !important;
  }
  .m-application .mt-sm-n12 {
    margin-top: -48px !important;
  }
  .m-application .mr-sm-n1 {
    margin-right: -4px !important;
  }
  .m-application .mr-sm-n2 {
    margin-right: -8px !important;
  }
  .m-application .mr-sm-n3 {
    margin-right: -12px !important;
  }
  .m-application .mr-sm-n4 {
    margin-right: -16px !important;
  }
  .m-application .mr-sm-n5 {
    margin-right: -20px !important;
  }
  .m-application .mr-sm-n6 {
    margin-right: -24px !important;
  }
  .m-application .mr-sm-n7 {
    margin-right: -28px !important;
  }
  .m-application .mr-sm-n8 {
    margin-right: -32px !important;
  }
  .m-application .mr-sm-n9 {
    margin-right: -36px !important;
  }
  .m-application .mr-sm-n10 {
    margin-right: -40px !important;
  }
  .m-application .mr-sm-n11 {
    margin-right: -44px !important;
  }
  .m-application .mr-sm-n12 {
    margin-right: -48px !important;
  }
  .m-application .mb-sm-n1 {
    margin-bottom: -4px !important;
  }
  .m-application .mb-sm-n2 {
    margin-bottom: -8px !important;
  }
  .m-application .mb-sm-n3 {
    margin-bottom: -12px !important;
  }
  .m-application .mb-sm-n4 {
    margin-bottom: -16px !important;
  }
  .m-application .mb-sm-n5 {
    margin-bottom: -20px !important;
  }
  .m-application .mb-sm-n6 {
    margin-bottom: -24px !important;
  }
  .m-application .mb-sm-n7 {
    margin-bottom: -28px !important;
  }
  .m-application .mb-sm-n8 {
    margin-bottom: -32px !important;
  }
  .m-application .mb-sm-n9 {
    margin-bottom: -36px !important;
  }
  .m-application .mb-sm-n10 {
    margin-bottom: -40px !important;
  }
  .m-application .mb-sm-n11 {
    margin-bottom: -44px !important;
  }
  .m-application .mb-sm-n12 {
    margin-bottom: -48px !important;
  }
  .m-application .ml-sm-n1 {
    margin-left: -4px !important;
  }
  .m-application .ml-sm-n2 {
    margin-left: -8px !important;
  }
  .m-application .ml-sm-n3 {
    margin-left: -12px !important;
  }
  .m-application .ml-sm-n4 {
    margin-left: -16px !important;
  }
  .m-application .ml-sm-n5 {
    margin-left: -20px !important;
  }
  .m-application .ml-sm-n6 {
    margin-left: -24px !important;
  }
  .m-application .ml-sm-n7 {
    margin-left: -28px !important;
  }
  .m-application .ml-sm-n8 {
    margin-left: -32px !important;
  }
  .m-application .ml-sm-n9 {
    margin-left: -36px !important;
  }
  .m-application .ml-sm-n10 {
    margin-left: -40px !important;
  }
  .m-application .ml-sm-n11 {
    margin-left: -44px !important;
  }
  .m-application .ml-sm-n12 {
    margin-left: -48px !important;
  }
  [dir=ltr] .m-application .ms-sm-n1 {
    margin-left: -4px !important;
  }
  [dir=rtl] .m-application .ms-sm-n1 {
    margin-right: -4px !important;
  }
  [dir=ltr] .m-application .ms-sm-n2 {
    margin-left: -8px !important;
  }
  [dir=rtl] .m-application .ms-sm-n2 {
    margin-right: -8px !important;
  }
  [dir=ltr] .m-application .ms-sm-n3 {
    margin-left: -12px !important;
  }
  [dir=rtl] .m-application .ms-sm-n3 {
    margin-right: -12px !important;
  }
  [dir=ltr] .m-application .ms-sm-n4 {
    margin-left: -16px !important;
  }
  [dir=rtl] .m-application .ms-sm-n4 {
    margin-right: -16px !important;
  }
  [dir=ltr] .m-application .ms-sm-n5 {
    margin-left: -20px !important;
  }
  [dir=rtl] .m-application .ms-sm-n5 {
    margin-right: -20px !important;
  }
  [dir=ltr] .m-application .ms-sm-n6 {
    margin-left: -24px !important;
  }
  [dir=rtl] .m-application .ms-sm-n6 {
    margin-right: -24px !important;
  }
  [dir=ltr] .m-application .ms-sm-n7 {
    margin-left: -28px !important;
  }
  [dir=rtl] .m-application .ms-sm-n7 {
    margin-right: -28px !important;
  }
  [dir=ltr] .m-application .ms-sm-n8 {
    margin-left: -32px !important;
  }
  [dir=rtl] .m-application .ms-sm-n8 {
    margin-right: -32px !important;
  }
  [dir=ltr] .m-application .ms-sm-n9 {
    margin-left: -36px !important;
  }
  [dir=rtl] .m-application .ms-sm-n9 {
    margin-right: -36px !important;
  }
  [dir=ltr] .m-application .ms-sm-n10 {
    margin-left: -40px !important;
  }
  [dir=rtl] .m-application .ms-sm-n10 {
    margin-right: -40px !important;
  }
  [dir=ltr] .m-application .ms-sm-n11 {
    margin-left: -44px !important;
  }
  [dir=rtl] .m-application .ms-sm-n11 {
    margin-right: -44px !important;
  }
  [dir=ltr] .m-application .ms-sm-n12 {
    margin-left: -48px !important;
  }
  [dir=rtl] .m-application .ms-sm-n12 {
    margin-right: -48px !important;
  }
  [dir=ltr] .m-application .me-sm-n1 {
    margin-right: -4px !important;
  }
  [dir=rtl] .m-application .me-sm-n1 {
    margin-left: -4px !important;
  }
  [dir=ltr] .m-application .me-sm-n2 {
    margin-right: -8px !important;
  }
  [dir=rtl] .m-application .me-sm-n2 {
    margin-left: -8px !important;
  }
  [dir=ltr] .m-application .me-sm-n3 {
    margin-right: -12px !important;
  }
  [dir=rtl] .m-application .me-sm-n3 {
    margin-left: -12px !important;
  }
  [dir=ltr] .m-application .me-sm-n4 {
    margin-right: -16px !important;
  }
  [dir=rtl] .m-application .me-sm-n4 {
    margin-left: -16px !important;
  }
  [dir=ltr] .m-application .me-sm-n5 {
    margin-right: -20px !important;
  }
  [dir=rtl] .m-application .me-sm-n5 {
    margin-left: -20px !important;
  }
  [dir=ltr] .m-application .me-sm-n6 {
    margin-right: -24px !important;
  }
  [dir=rtl] .m-application .me-sm-n6 {
    margin-left: -24px !important;
  }
  [dir=ltr] .m-application .me-sm-n7 {
    margin-right: -28px !important;
  }
  [dir=rtl] .m-application .me-sm-n7 {
    margin-left: -28px !important;
  }
  [dir=ltr] .m-application .me-sm-n8 {
    margin-right: -32px !important;
  }
  [dir=rtl] .m-application .me-sm-n8 {
    margin-left: -32px !important;
  }
  [dir=ltr] .m-application .me-sm-n9 {
    margin-right: -36px !important;
  }
  [dir=rtl] .m-application .me-sm-n9 {
    margin-left: -36px !important;
  }
  [dir=ltr] .m-application .me-sm-n10 {
    margin-right: -40px !important;
  }
  [dir=rtl] .m-application .me-sm-n10 {
    margin-left: -40px !important;
  }
  [dir=ltr] .m-application .me-sm-n11 {
    margin-right: -44px !important;
  }
  [dir=rtl] .m-application .me-sm-n11 {
    margin-left: -44px !important;
  }
  [dir=ltr] .m-application .me-sm-n12 {
    margin-right: -48px !important;
  }
  [dir=rtl] .m-application .me-sm-n12 {
    margin-left: -48px !important;
  }
  .m-application .pa-sm-0 {
    padding: 0px !important;
  }
  .m-application .pa-sm-1 {
    padding: 4px !important;
  }
  .m-application .pa-sm-2 {
    padding: 8px !important;
  }
  .m-application .pa-sm-3 {
    padding: 12px !important;
  }
  .m-application .pa-sm-4 {
    padding: 16px !important;
  }
  .m-application .pa-sm-5 {
    padding: 20px !important;
  }
  .m-application .pa-sm-6 {
    padding: 24px !important;
  }
  .m-application .pa-sm-7 {
    padding: 28px !important;
  }
  .m-application .pa-sm-8 {
    padding: 32px !important;
  }
  .m-application .pa-sm-9 {
    padding: 36px !important;
  }
  .m-application .pa-sm-10 {
    padding: 40px !important;
  }
  .m-application .pa-sm-11 {
    padding: 44px !important;
  }
  .m-application .pa-sm-12 {
    padding: 48px !important;
  }
  .m-application .px-sm-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .m-application .px-sm-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  .m-application .px-sm-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .m-application .px-sm-3 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  .m-application .px-sm-4 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .m-application .px-sm-5 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .m-application .px-sm-6 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  .m-application .px-sm-7 {
    padding-right: 28px !important;
    padding-left: 28px !important;
  }
  .m-application .px-sm-8 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
  .m-application .px-sm-9 {
    padding-right: 36px !important;
    padding-left: 36px !important;
  }
  .m-application .px-sm-10 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .m-application .px-sm-11 {
    padding-right: 44px !important;
    padding-left: 44px !important;
  }
  .m-application .px-sm-12 {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
  .m-application .py-sm-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-application .py-sm-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-application .py-sm-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-application .py-sm-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-application .py-sm-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-application .py-sm-5 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-application .py-sm-6 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-application .py-sm-7 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-application .py-sm-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-application .py-sm-9 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-application .py-sm-10 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-application .py-sm-11 {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-application .py-sm-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-application .pt-sm-0 {
    padding-top: 0px !important;
  }
  .m-application .pt-sm-1 {
    padding-top: 4px !important;
  }
  .m-application .pt-sm-2 {
    padding-top: 8px !important;
  }
  .m-application .pt-sm-3 {
    padding-top: 12px !important;
  }
  .m-application .pt-sm-4 {
    padding-top: 16px !important;
  }
  .m-application .pt-sm-5 {
    padding-top: 20px !important;
  }
  .m-application .pt-sm-6 {
    padding-top: 24px !important;
  }
  .m-application .pt-sm-7 {
    padding-top: 28px !important;
  }
  .m-application .pt-sm-8 {
    padding-top: 32px !important;
  }
  .m-application .pt-sm-9 {
    padding-top: 36px !important;
  }
  .m-application .pt-sm-10 {
    padding-top: 40px !important;
  }
  .m-application .pt-sm-11 {
    padding-top: 44px !important;
  }
  .m-application .pt-sm-12 {
    padding-top: 48px !important;
  }
  .m-application .pr-sm-0 {
    padding-right: 0px !important;
  }
  .m-application .pr-sm-1 {
    padding-right: 4px !important;
  }
  .m-application .pr-sm-2 {
    padding-right: 8px !important;
  }
  .m-application .pr-sm-3 {
    padding-right: 12px !important;
  }
  .m-application .pr-sm-4 {
    padding-right: 16px !important;
  }
  .m-application .pr-sm-5 {
    padding-right: 20px !important;
  }
  .m-application .pr-sm-6 {
    padding-right: 24px !important;
  }
  .m-application .pr-sm-7 {
    padding-right: 28px !important;
  }
  .m-application .pr-sm-8 {
    padding-right: 32px !important;
  }
  .m-application .pr-sm-9 {
    padding-right: 36px !important;
  }
  .m-application .pr-sm-10 {
    padding-right: 40px !important;
  }
  .m-application .pr-sm-11 {
    padding-right: 44px !important;
  }
  .m-application .pr-sm-12 {
    padding-right: 48px !important;
  }
  .m-application .pb-sm-0 {
    padding-bottom: 0px !important;
  }
  .m-application .pb-sm-1 {
    padding-bottom: 4px !important;
  }
  .m-application .pb-sm-2 {
    padding-bottom: 8px !important;
  }
  .m-application .pb-sm-3 {
    padding-bottom: 12px !important;
  }
  .m-application .pb-sm-4 {
    padding-bottom: 16px !important;
  }
  .m-application .pb-sm-5 {
    padding-bottom: 20px !important;
  }
  .m-application .pb-sm-6 {
    padding-bottom: 24px !important;
  }
  .m-application .pb-sm-7 {
    padding-bottom: 28px !important;
  }
  .m-application .pb-sm-8 {
    padding-bottom: 32px !important;
  }
  .m-application .pb-sm-9 {
    padding-bottom: 36px !important;
  }
  .m-application .pb-sm-10 {
    padding-bottom: 40px !important;
  }
  .m-application .pb-sm-11 {
    padding-bottom: 44px !important;
  }
  .m-application .pb-sm-12 {
    padding-bottom: 48px !important;
  }
  .m-application .pl-sm-0 {
    padding-left: 0px !important;
  }
  .m-application .pl-sm-1 {
    padding-left: 4px !important;
  }
  .m-application .pl-sm-2 {
    padding-left: 8px !important;
  }
  .m-application .pl-sm-3 {
    padding-left: 12px !important;
  }
  .m-application .pl-sm-4 {
    padding-left: 16px !important;
  }
  .m-application .pl-sm-5 {
    padding-left: 20px !important;
  }
  .m-application .pl-sm-6 {
    padding-left: 24px !important;
  }
  .m-application .pl-sm-7 {
    padding-left: 28px !important;
  }
  .m-application .pl-sm-8 {
    padding-left: 32px !important;
  }
  .m-application .pl-sm-9 {
    padding-left: 36px !important;
  }
  .m-application .pl-sm-10 {
    padding-left: 40px !important;
  }
  .m-application .pl-sm-11 {
    padding-left: 44px !important;
  }
  .m-application .pl-sm-12 {
    padding-left: 48px !important;
  }
  [dir=ltr] .m-application .ps-sm-0 {
    padding-left: 0px !important;
  }
  [dir=rtl] .m-application .ps-sm-0 {
    padding-right: 0px !important;
  }
  [dir=ltr] .m-application .ps-sm-1 {
    padding-left: 4px !important;
  }
  [dir=rtl] .m-application .ps-sm-1 {
    padding-right: 4px !important;
  }
  [dir=ltr] .m-application .ps-sm-2 {
    padding-left: 8px !important;
  }
  [dir=rtl] .m-application .ps-sm-2 {
    padding-right: 8px !important;
  }
  [dir=ltr] .m-application .ps-sm-3 {
    padding-left: 12px !important;
  }
  [dir=rtl] .m-application .ps-sm-3 {
    padding-right: 12px !important;
  }
  [dir=ltr] .m-application .ps-sm-4 {
    padding-left: 16px !important;
  }
  [dir=rtl] .m-application .ps-sm-4 {
    padding-right: 16px !important;
  }
  [dir=ltr] .m-application .ps-sm-5 {
    padding-left: 20px !important;
  }
  [dir=rtl] .m-application .ps-sm-5 {
    padding-right: 20px !important;
  }
  [dir=ltr] .m-application .ps-sm-6 {
    padding-left: 24px !important;
  }
  [dir=rtl] .m-application .ps-sm-6 {
    padding-right: 24px !important;
  }
  [dir=ltr] .m-application .ps-sm-7 {
    padding-left: 28px !important;
  }
  [dir=rtl] .m-application .ps-sm-7 {
    padding-right: 28px !important;
  }
  [dir=ltr] .m-application .ps-sm-8 {
    padding-left: 32px !important;
  }
  [dir=rtl] .m-application .ps-sm-8 {
    padding-right: 32px !important;
  }
  [dir=ltr] .m-application .ps-sm-9 {
    padding-left: 36px !important;
  }
  [dir=rtl] .m-application .ps-sm-9 {
    padding-right: 36px !important;
  }
  [dir=ltr] .m-application .ps-sm-10 {
    padding-left: 40px !important;
  }
  [dir=rtl] .m-application .ps-sm-10 {
    padding-right: 40px !important;
  }
  [dir=ltr] .m-application .ps-sm-11 {
    padding-left: 44px !important;
  }
  [dir=rtl] .m-application .ps-sm-11 {
    padding-right: 44px !important;
  }
  [dir=ltr] .m-application .ps-sm-12 {
    padding-left: 48px !important;
  }
  [dir=rtl] .m-application .ps-sm-12 {
    padding-right: 48px !important;
  }
  [dir=ltr] .m-application .pe-sm-0 {
    padding-right: 0px !important;
  }
  [dir=rtl] .m-application .pe-sm-0 {
    padding-left: 0px !important;
  }
  [dir=ltr] .m-application .pe-sm-1 {
    padding-right: 4px !important;
  }
  [dir=rtl] .m-application .pe-sm-1 {
    padding-left: 4px !important;
  }
  [dir=ltr] .m-application .pe-sm-2 {
    padding-right: 8px !important;
  }
  [dir=rtl] .m-application .pe-sm-2 {
    padding-left: 8px !important;
  }
  [dir=ltr] .m-application .pe-sm-3 {
    padding-right: 12px !important;
  }
  [dir=rtl] .m-application .pe-sm-3 {
    padding-left: 12px !important;
  }
  [dir=ltr] .m-application .pe-sm-4 {
    padding-right: 16px !important;
  }
  [dir=rtl] .m-application .pe-sm-4 {
    padding-left: 16px !important;
  }
  [dir=ltr] .m-application .pe-sm-5 {
    padding-right: 20px !important;
  }
  [dir=rtl] .m-application .pe-sm-5 {
    padding-left: 20px !important;
  }
  [dir=ltr] .m-application .pe-sm-6 {
    padding-right: 24px !important;
  }
  [dir=rtl] .m-application .pe-sm-6 {
    padding-left: 24px !important;
  }
  [dir=ltr] .m-application .pe-sm-7 {
    padding-right: 28px !important;
  }
  [dir=rtl] .m-application .pe-sm-7 {
    padding-left: 28px !important;
  }
  [dir=ltr] .m-application .pe-sm-8 {
    padding-right: 32px !important;
  }
  [dir=rtl] .m-application .pe-sm-8 {
    padding-left: 32px !important;
  }
  [dir=ltr] .m-application .pe-sm-9 {
    padding-right: 36px !important;
  }
  [dir=rtl] .m-application .pe-sm-9 {
    padding-left: 36px !important;
  }
  [dir=ltr] .m-application .pe-sm-10 {
    padding-right: 40px !important;
  }
  [dir=rtl] .m-application .pe-sm-10 {
    padding-left: 40px !important;
  }
  [dir=ltr] .m-application .pe-sm-11 {
    padding-right: 44px !important;
  }
  [dir=rtl] .m-application .pe-sm-11 {
    padding-left: 44px !important;
  }
  [dir=ltr] .m-application .pe-sm-12 {
    padding-right: 48px !important;
  }
  [dir=rtl] .m-application .pe-sm-12 {
    padding-left: 48px !important;
  }
  .m-application .text-sm-left {
    text-align: left !important;
  }
  .m-application .text-sm-right {
    text-align: right !important;
  }
  .m-application .text-sm-center {
    text-align: center !important;
  }
  .m-application .text-sm-justify {
    text-align: justify !important;
  }
  .m-application .text-sm-start {
    text-align: start !important;
  }
  .m-application .text-sm-end {
    text-align: end !important;
  }
}
@media (min-width: 960px) {
  .m-application .ma-md-0 {
    margin: 0px !important;
  }
  .m-application .ma-md-1 {
    margin: 4px !important;
  }
  .m-application .ma-md-2 {
    margin: 8px !important;
  }
  .m-application .ma-md-3 {
    margin: 12px !important;
  }
  .m-application .ma-md-4 {
    margin: 16px !important;
  }
  .m-application .ma-md-5 {
    margin: 20px !important;
  }
  .m-application .ma-md-6 {
    margin: 24px !important;
  }
  .m-application .ma-md-7 {
    margin: 28px !important;
  }
  .m-application .ma-md-8 {
    margin: 32px !important;
  }
  .m-application .ma-md-9 {
    margin: 36px !important;
  }
  .m-application .ma-md-10 {
    margin: 40px !important;
  }
  .m-application .ma-md-11 {
    margin: 44px !important;
  }
  .m-application .ma-md-12 {
    margin: 48px !important;
  }
  .m-application .ma-md-auto {
    margin: auto !important;
  }
  .m-application .mx-md-0 {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .m-application .mx-md-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  .m-application .mx-md-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  .m-application .mx-md-3 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
  .m-application .mx-md-4 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  .m-application .mx-md-5 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .m-application .mx-md-6 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  .m-application .mx-md-7 {
    margin-right: 28px !important;
    margin-left: 28px !important;
  }
  .m-application .mx-md-8 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }
  .m-application .mx-md-9 {
    margin-right: 36px !important;
    margin-left: 36px !important;
  }
  .m-application .mx-md-10 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .m-application .mx-md-11 {
    margin-right: 44px !important;
    margin-left: 44px !important;
  }
  .m-application .mx-md-12 {
    margin-right: 48px !important;
    margin-left: 48px !important;
  }
  .m-application .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .m-application .my-md-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .m-application .my-md-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-application .my-md-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-application .my-md-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-application .my-md-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-application .my-md-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-application .my-md-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-application .my-md-7 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-application .my-md-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-application .my-md-9 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-application .my-md-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-application .my-md-11 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-application .my-md-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-application .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .m-application .mt-md-0 {
    margin-top: 0px !important;
  }
  .m-application .mt-md-1 {
    margin-top: 4px !important;
  }
  .m-application .mt-md-2 {
    margin-top: 8px !important;
  }
  .m-application .mt-md-3 {
    margin-top: 12px !important;
  }
  .m-application .mt-md-4 {
    margin-top: 16px !important;
  }
  .m-application .mt-md-5 {
    margin-top: 20px !important;
  }
  .m-application .mt-md-6 {
    margin-top: 24px !important;
  }
  .m-application .mt-md-7 {
    margin-top: 28px !important;
  }
  .m-application .mt-md-8 {
    margin-top: 32px !important;
  }
  .m-application .mt-md-9 {
    margin-top: 36px !important;
  }
  .m-application .mt-md-10 {
    margin-top: 40px !important;
  }
  .m-application .mt-md-11 {
    margin-top: 44px !important;
  }
  .m-application .mt-md-12 {
    margin-top: 48px !important;
  }
  .m-application .mt-md-auto {
    margin-top: auto !important;
  }
  .m-application .mr-md-0 {
    margin-right: 0px !important;
  }
  .m-application .mr-md-1 {
    margin-right: 4px !important;
  }
  .m-application .mr-md-2 {
    margin-right: 8px !important;
  }
  .m-application .mr-md-3 {
    margin-right: 12px !important;
  }
  .m-application .mr-md-4 {
    margin-right: 16px !important;
  }
  .m-application .mr-md-5 {
    margin-right: 20px !important;
  }
  .m-application .mr-md-6 {
    margin-right: 24px !important;
  }
  .m-application .mr-md-7 {
    margin-right: 28px !important;
  }
  .m-application .mr-md-8 {
    margin-right: 32px !important;
  }
  .m-application .mr-md-9 {
    margin-right: 36px !important;
  }
  .m-application .mr-md-10 {
    margin-right: 40px !important;
  }
  .m-application .mr-md-11 {
    margin-right: 44px !important;
  }
  .m-application .mr-md-12 {
    margin-right: 48px !important;
  }
  .m-application .mr-md-auto {
    margin-right: auto !important;
  }
  .m-application .mb-md-0 {
    margin-bottom: 0px !important;
  }
  .m-application .mb-md-1 {
    margin-bottom: 4px !important;
  }
  .m-application .mb-md-2 {
    margin-bottom: 8px !important;
  }
  .m-application .mb-md-3 {
    margin-bottom: 12px !important;
  }
  .m-application .mb-md-4 {
    margin-bottom: 16px !important;
  }
  .m-application .mb-md-5 {
    margin-bottom: 20px !important;
  }
  .m-application .mb-md-6 {
    margin-bottom: 24px !important;
  }
  .m-application .mb-md-7 {
    margin-bottom: 28px !important;
  }
  .m-application .mb-md-8 {
    margin-bottom: 32px !important;
  }
  .m-application .mb-md-9 {
    margin-bottom: 36px !important;
  }
  .m-application .mb-md-10 {
    margin-bottom: 40px !important;
  }
  .m-application .mb-md-11 {
    margin-bottom: 44px !important;
  }
  .m-application .mb-md-12 {
    margin-bottom: 48px !important;
  }
  .m-application .mb-md-auto {
    margin-bottom: auto !important;
  }
  .m-application .ml-md-0 {
    margin-left: 0px !important;
  }
  .m-application .ml-md-1 {
    margin-left: 4px !important;
  }
  .m-application .ml-md-2 {
    margin-left: 8px !important;
  }
  .m-application .ml-md-3 {
    margin-left: 12px !important;
  }
  .m-application .ml-md-4 {
    margin-left: 16px !important;
  }
  .m-application .ml-md-5 {
    margin-left: 20px !important;
  }
  .m-application .ml-md-6 {
    margin-left: 24px !important;
  }
  .m-application .ml-md-7 {
    margin-left: 28px !important;
  }
  .m-application .ml-md-8 {
    margin-left: 32px !important;
  }
  .m-application .ml-md-9 {
    margin-left: 36px !important;
  }
  .m-application .ml-md-10 {
    margin-left: 40px !important;
  }
  .m-application .ml-md-11 {
    margin-left: 44px !important;
  }
  .m-application .ml-md-12 {
    margin-left: 48px !important;
  }
  .m-application .ml-md-auto {
    margin-left: auto !important;
  }
  [dir=ltr] .m-application .ms-md-0 {
    margin-left: 0px !important;
  }
  [dir=rtl] .m-application .ms-md-0 {
    margin-right: 0px !important;
  }
  [dir=ltr] .m-application .ms-md-1 {
    margin-left: 4px !important;
  }
  [dir=rtl] .m-application .ms-md-1 {
    margin-right: 4px !important;
  }
  [dir=ltr] .m-application .ms-md-2 {
    margin-left: 8px !important;
  }
  [dir=rtl] .m-application .ms-md-2 {
    margin-right: 8px !important;
  }
  [dir=ltr] .m-application .ms-md-3 {
    margin-left: 12px !important;
  }
  [dir=rtl] .m-application .ms-md-3 {
    margin-right: 12px !important;
  }
  [dir=ltr] .m-application .ms-md-4 {
    margin-left: 16px !important;
  }
  [dir=rtl] .m-application .ms-md-4 {
    margin-right: 16px !important;
  }
  [dir=ltr] .m-application .ms-md-5 {
    margin-left: 20px !important;
  }
  [dir=rtl] .m-application .ms-md-5 {
    margin-right: 20px !important;
  }
  [dir=ltr] .m-application .ms-md-6 {
    margin-left: 24px !important;
  }
  [dir=rtl] .m-application .ms-md-6 {
    margin-right: 24px !important;
  }
  [dir=ltr] .m-application .ms-md-7 {
    margin-left: 28px !important;
  }
  [dir=rtl] .m-application .ms-md-7 {
    margin-right: 28px !important;
  }
  [dir=ltr] .m-application .ms-md-8 {
    margin-left: 32px !important;
  }
  [dir=rtl] .m-application .ms-md-8 {
    margin-right: 32px !important;
  }
  [dir=ltr] .m-application .ms-md-9 {
    margin-left: 36px !important;
  }
  [dir=rtl] .m-application .ms-md-9 {
    margin-right: 36px !important;
  }
  [dir=ltr] .m-application .ms-md-10 {
    margin-left: 40px !important;
  }
  [dir=rtl] .m-application .ms-md-10 {
    margin-right: 40px !important;
  }
  [dir=ltr] .m-application .ms-md-11 {
    margin-left: 44px !important;
  }
  [dir=rtl] .m-application .ms-md-11 {
    margin-right: 44px !important;
  }
  [dir=ltr] .m-application .ms-md-12 {
    margin-left: 48px !important;
  }
  [dir=rtl] .m-application .ms-md-12 {
    margin-right: 48px !important;
  }
  [dir=ltr] .m-application .ms-md-auto {
    margin-left: auto !important;
  }
  [dir=rtl] .m-application .ms-md-auto {
    margin-right: auto !important;
  }
  [dir=ltr] .m-application .me-md-0 {
    margin-right: 0px !important;
  }
  [dir=rtl] .m-application .me-md-0 {
    margin-left: 0px !important;
  }
  [dir=ltr] .m-application .me-md-1 {
    margin-right: 4px !important;
  }
  [dir=rtl] .m-application .me-md-1 {
    margin-left: 4px !important;
  }
  [dir=ltr] .m-application .me-md-2 {
    margin-right: 8px !important;
  }
  [dir=rtl] .m-application .me-md-2 {
    margin-left: 8px !important;
  }
  [dir=ltr] .m-application .me-md-3 {
    margin-right: 12px !important;
  }
  [dir=rtl] .m-application .me-md-3 {
    margin-left: 12px !important;
  }
  [dir=ltr] .m-application .me-md-4 {
    margin-right: 16px !important;
  }
  [dir=rtl] .m-application .me-md-4 {
    margin-left: 16px !important;
  }
  [dir=ltr] .m-application .me-md-5 {
    margin-right: 20px !important;
  }
  [dir=rtl] .m-application .me-md-5 {
    margin-left: 20px !important;
  }
  [dir=ltr] .m-application .me-md-6 {
    margin-right: 24px !important;
  }
  [dir=rtl] .m-application .me-md-6 {
    margin-left: 24px !important;
  }
  [dir=ltr] .m-application .me-md-7 {
    margin-right: 28px !important;
  }
  [dir=rtl] .m-application .me-md-7 {
    margin-left: 28px !important;
  }
  [dir=ltr] .m-application .me-md-8 {
    margin-right: 32px !important;
  }
  [dir=rtl] .m-application .me-md-8 {
    margin-left: 32px !important;
  }
  [dir=ltr] .m-application .me-md-9 {
    margin-right: 36px !important;
  }
  [dir=rtl] .m-application .me-md-9 {
    margin-left: 36px !important;
  }
  [dir=ltr] .m-application .me-md-10 {
    margin-right: 40px !important;
  }
  [dir=rtl] .m-application .me-md-10 {
    margin-left: 40px !important;
  }
  [dir=ltr] .m-application .me-md-11 {
    margin-right: 44px !important;
  }
  [dir=rtl] .m-application .me-md-11 {
    margin-left: 44px !important;
  }
  [dir=ltr] .m-application .me-md-12 {
    margin-right: 48px !important;
  }
  [dir=rtl] .m-application .me-md-12 {
    margin-left: 48px !important;
  }
  [dir=ltr] .m-application .me-md-auto {
    margin-right: auto !important;
  }
  [dir=rtl] .m-application .me-md-auto {
    margin-left: auto !important;
  }
  .m-application .ma-md-n1 {
    margin: -4px !important;
  }
  .m-application .ma-md-n2 {
    margin: -8px !important;
  }
  .m-application .ma-md-n3 {
    margin: -12px !important;
  }
  .m-application .ma-md-n4 {
    margin: -16px !important;
  }
  .m-application .ma-md-n5 {
    margin: -20px !important;
  }
  .m-application .ma-md-n6 {
    margin: -24px !important;
  }
  .m-application .ma-md-n7 {
    margin: -28px !important;
  }
  .m-application .ma-md-n8 {
    margin: -32px !important;
  }
  .m-application .ma-md-n9 {
    margin: -36px !important;
  }
  .m-application .ma-md-n10 {
    margin: -40px !important;
  }
  .m-application .ma-md-n11 {
    margin: -44px !important;
  }
  .m-application .ma-md-n12 {
    margin: -48px !important;
  }
  .m-application .mx-md-n1 {
    margin-right: -4px !important;
    margin-left: -4px !important;
  }
  .m-application .mx-md-n2 {
    margin-right: -8px !important;
    margin-left: -8px !important;
  }
  .m-application .mx-md-n3 {
    margin-right: -12px !important;
    margin-left: -12px !important;
  }
  .m-application .mx-md-n4 {
    margin-right: -16px !important;
    margin-left: -16px !important;
  }
  .m-application .mx-md-n5 {
    margin-right: -20px !important;
    margin-left: -20px !important;
  }
  .m-application .mx-md-n6 {
    margin-right: -24px !important;
    margin-left: -24px !important;
  }
  .m-application .mx-md-n7 {
    margin-right: -28px !important;
    margin-left: -28px !important;
  }
  .m-application .mx-md-n8 {
    margin-right: -32px !important;
    margin-left: -32px !important;
  }
  .m-application .mx-md-n9 {
    margin-right: -36px !important;
    margin-left: -36px !important;
  }
  .m-application .mx-md-n10 {
    margin-right: -40px !important;
    margin-left: -40px !important;
  }
  .m-application .mx-md-n11 {
    margin-right: -44px !important;
    margin-left: -44px !important;
  }
  .m-application .mx-md-n12 {
    margin-right: -48px !important;
    margin-left: -48px !important;
  }
  .m-application .my-md-n1 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }
  .m-application .my-md-n2 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }
  .m-application .my-md-n3 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }
  .m-application .my-md-n4 {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }
  .m-application .my-md-n5 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }
  .m-application .my-md-n6 {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }
  .m-application .my-md-n7 {
    margin-top: -28px !important;
    margin-bottom: -28px !important;
  }
  .m-application .my-md-n8 {
    margin-top: -32px !important;
    margin-bottom: -32px !important;
  }
  .m-application .my-md-n9 {
    margin-top: -36px !important;
    margin-bottom: -36px !important;
  }
  .m-application .my-md-n10 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }
  .m-application .my-md-n11 {
    margin-top: -44px !important;
    margin-bottom: -44px !important;
  }
  .m-application .my-md-n12 {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }
  .m-application .mt-md-n1 {
    margin-top: -4px !important;
  }
  .m-application .mt-md-n2 {
    margin-top: -8px !important;
  }
  .m-application .mt-md-n3 {
    margin-top: -12px !important;
  }
  .m-application .mt-md-n4 {
    margin-top: -16px !important;
  }
  .m-application .mt-md-n5 {
    margin-top: -20px !important;
  }
  .m-application .mt-md-n6 {
    margin-top: -24px !important;
  }
  .m-application .mt-md-n7 {
    margin-top: -28px !important;
  }
  .m-application .mt-md-n8 {
    margin-top: -32px !important;
  }
  .m-application .mt-md-n9 {
    margin-top: -36px !important;
  }
  .m-application .mt-md-n10 {
    margin-top: -40px !important;
  }
  .m-application .mt-md-n11 {
    margin-top: -44px !important;
  }
  .m-application .mt-md-n12 {
    margin-top: -48px !important;
  }
  .m-application .mr-md-n1 {
    margin-right: -4px !important;
  }
  .m-application .mr-md-n2 {
    margin-right: -8px !important;
  }
  .m-application .mr-md-n3 {
    margin-right: -12px !important;
  }
  .m-application .mr-md-n4 {
    margin-right: -16px !important;
  }
  .m-application .mr-md-n5 {
    margin-right: -20px !important;
  }
  .m-application .mr-md-n6 {
    margin-right: -24px !important;
  }
  .m-application .mr-md-n7 {
    margin-right: -28px !important;
  }
  .m-application .mr-md-n8 {
    margin-right: -32px !important;
  }
  .m-application .mr-md-n9 {
    margin-right: -36px !important;
  }
  .m-application .mr-md-n10 {
    margin-right: -40px !important;
  }
  .m-application .mr-md-n11 {
    margin-right: -44px !important;
  }
  .m-application .mr-md-n12 {
    margin-right: -48px !important;
  }
  .m-application .mb-md-n1 {
    margin-bottom: -4px !important;
  }
  .m-application .mb-md-n2 {
    margin-bottom: -8px !important;
  }
  .m-application .mb-md-n3 {
    margin-bottom: -12px !important;
  }
  .m-application .mb-md-n4 {
    margin-bottom: -16px !important;
  }
  .m-application .mb-md-n5 {
    margin-bottom: -20px !important;
  }
  .m-application .mb-md-n6 {
    margin-bottom: -24px !important;
  }
  .m-application .mb-md-n7 {
    margin-bottom: -28px !important;
  }
  .m-application .mb-md-n8 {
    margin-bottom: -32px !important;
  }
  .m-application .mb-md-n9 {
    margin-bottom: -36px !important;
  }
  .m-application .mb-md-n10 {
    margin-bottom: -40px !important;
  }
  .m-application .mb-md-n11 {
    margin-bottom: -44px !important;
  }
  .m-application .mb-md-n12 {
    margin-bottom: -48px !important;
  }
  .m-application .ml-md-n1 {
    margin-left: -4px !important;
  }
  .m-application .ml-md-n2 {
    margin-left: -8px !important;
  }
  .m-application .ml-md-n3 {
    margin-left: -12px !important;
  }
  .m-application .ml-md-n4 {
    margin-left: -16px !important;
  }
  .m-application .ml-md-n5 {
    margin-left: -20px !important;
  }
  .m-application .ml-md-n6 {
    margin-left: -24px !important;
  }
  .m-application .ml-md-n7 {
    margin-left: -28px !important;
  }
  .m-application .ml-md-n8 {
    margin-left: -32px !important;
  }
  .m-application .ml-md-n9 {
    margin-left: -36px !important;
  }
  .m-application .ml-md-n10 {
    margin-left: -40px !important;
  }
  .m-application .ml-md-n11 {
    margin-left: -44px !important;
  }
  .m-application .ml-md-n12 {
    margin-left: -48px !important;
  }
  [dir=ltr] .m-application .ms-md-n1 {
    margin-left: -4px !important;
  }
  [dir=rtl] .m-application .ms-md-n1 {
    margin-right: -4px !important;
  }
  [dir=ltr] .m-application .ms-md-n2 {
    margin-left: -8px !important;
  }
  [dir=rtl] .m-application .ms-md-n2 {
    margin-right: -8px !important;
  }
  [dir=ltr] .m-application .ms-md-n3 {
    margin-left: -12px !important;
  }
  [dir=rtl] .m-application .ms-md-n3 {
    margin-right: -12px !important;
  }
  [dir=ltr] .m-application .ms-md-n4 {
    margin-left: -16px !important;
  }
  [dir=rtl] .m-application .ms-md-n4 {
    margin-right: -16px !important;
  }
  [dir=ltr] .m-application .ms-md-n5 {
    margin-left: -20px !important;
  }
  [dir=rtl] .m-application .ms-md-n5 {
    margin-right: -20px !important;
  }
  [dir=ltr] .m-application .ms-md-n6 {
    margin-left: -24px !important;
  }
  [dir=rtl] .m-application .ms-md-n6 {
    margin-right: -24px !important;
  }
  [dir=ltr] .m-application .ms-md-n7 {
    margin-left: -28px !important;
  }
  [dir=rtl] .m-application .ms-md-n7 {
    margin-right: -28px !important;
  }
  [dir=ltr] .m-application .ms-md-n8 {
    margin-left: -32px !important;
  }
  [dir=rtl] .m-application .ms-md-n8 {
    margin-right: -32px !important;
  }
  [dir=ltr] .m-application .ms-md-n9 {
    margin-left: -36px !important;
  }
  [dir=rtl] .m-application .ms-md-n9 {
    margin-right: -36px !important;
  }
  [dir=ltr] .m-application .ms-md-n10 {
    margin-left: -40px !important;
  }
  [dir=rtl] .m-application .ms-md-n10 {
    margin-right: -40px !important;
  }
  [dir=ltr] .m-application .ms-md-n11 {
    margin-left: -44px !important;
  }
  [dir=rtl] .m-application .ms-md-n11 {
    margin-right: -44px !important;
  }
  [dir=ltr] .m-application .ms-md-n12 {
    margin-left: -48px !important;
  }
  [dir=rtl] .m-application .ms-md-n12 {
    margin-right: -48px !important;
  }
  [dir=ltr] .m-application .me-md-n1 {
    margin-right: -4px !important;
  }
  [dir=rtl] .m-application .me-md-n1 {
    margin-left: -4px !important;
  }
  [dir=ltr] .m-application .me-md-n2 {
    margin-right: -8px !important;
  }
  [dir=rtl] .m-application .me-md-n2 {
    margin-left: -8px !important;
  }
  [dir=ltr] .m-application .me-md-n3 {
    margin-right: -12px !important;
  }
  [dir=rtl] .m-application .me-md-n3 {
    margin-left: -12px !important;
  }
  [dir=ltr] .m-application .me-md-n4 {
    margin-right: -16px !important;
  }
  [dir=rtl] .m-application .me-md-n4 {
    margin-left: -16px !important;
  }
  [dir=ltr] .m-application .me-md-n5 {
    margin-right: -20px !important;
  }
  [dir=rtl] .m-application .me-md-n5 {
    margin-left: -20px !important;
  }
  [dir=ltr] .m-application .me-md-n6 {
    margin-right: -24px !important;
  }
  [dir=rtl] .m-application .me-md-n6 {
    margin-left: -24px !important;
  }
  [dir=ltr] .m-application .me-md-n7 {
    margin-right: -28px !important;
  }
  [dir=rtl] .m-application .me-md-n7 {
    margin-left: -28px !important;
  }
  [dir=ltr] .m-application .me-md-n8 {
    margin-right: -32px !important;
  }
  [dir=rtl] .m-application .me-md-n8 {
    margin-left: -32px !important;
  }
  [dir=ltr] .m-application .me-md-n9 {
    margin-right: -36px !important;
  }
  [dir=rtl] .m-application .me-md-n9 {
    margin-left: -36px !important;
  }
  [dir=ltr] .m-application .me-md-n10 {
    margin-right: -40px !important;
  }
  [dir=rtl] .m-application .me-md-n10 {
    margin-left: -40px !important;
  }
  [dir=ltr] .m-application .me-md-n11 {
    margin-right: -44px !important;
  }
  [dir=rtl] .m-application .me-md-n11 {
    margin-left: -44px !important;
  }
  [dir=ltr] .m-application .me-md-n12 {
    margin-right: -48px !important;
  }
  [dir=rtl] .m-application .me-md-n12 {
    margin-left: -48px !important;
  }
  .m-application .pa-md-0 {
    padding: 0px !important;
  }
  .m-application .pa-md-1 {
    padding: 4px !important;
  }
  .m-application .pa-md-2 {
    padding: 8px !important;
  }
  .m-application .pa-md-3 {
    padding: 12px !important;
  }
  .m-application .pa-md-4 {
    padding: 16px !important;
  }
  .m-application .pa-md-5 {
    padding: 20px !important;
  }
  .m-application .pa-md-6 {
    padding: 24px !important;
  }
  .m-application .pa-md-7 {
    padding: 28px !important;
  }
  .m-application .pa-md-8 {
    padding: 32px !important;
  }
  .m-application .pa-md-9 {
    padding: 36px !important;
  }
  .m-application .pa-md-10 {
    padding: 40px !important;
  }
  .m-application .pa-md-11 {
    padding: 44px !important;
  }
  .m-application .pa-md-12 {
    padding: 48px !important;
  }
  .m-application .px-md-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .m-application .px-md-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  .m-application .px-md-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .m-application .px-md-3 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  .m-application .px-md-4 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .m-application .px-md-5 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .m-application .px-md-6 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  .m-application .px-md-7 {
    padding-right: 28px !important;
    padding-left: 28px !important;
  }
  .m-application .px-md-8 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
  .m-application .px-md-9 {
    padding-right: 36px !important;
    padding-left: 36px !important;
  }
  .m-application .px-md-10 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .m-application .px-md-11 {
    padding-right: 44px !important;
    padding-left: 44px !important;
  }
  .m-application .px-md-12 {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
  .m-application .py-md-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-application .py-md-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-application .py-md-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-application .py-md-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-application .py-md-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-application .py-md-5 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-application .py-md-6 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-application .py-md-7 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-application .py-md-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-application .py-md-9 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-application .py-md-10 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-application .py-md-11 {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-application .py-md-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-application .pt-md-0 {
    padding-top: 0px !important;
  }
  .m-application .pt-md-1 {
    padding-top: 4px !important;
  }
  .m-application .pt-md-2 {
    padding-top: 8px !important;
  }
  .m-application .pt-md-3 {
    padding-top: 12px !important;
  }
  .m-application .pt-md-4 {
    padding-top: 16px !important;
  }
  .m-application .pt-md-5 {
    padding-top: 20px !important;
  }
  .m-application .pt-md-6 {
    padding-top: 24px !important;
  }
  .m-application .pt-md-7 {
    padding-top: 28px !important;
  }
  .m-application .pt-md-8 {
    padding-top: 32px !important;
  }
  .m-application .pt-md-9 {
    padding-top: 36px !important;
  }
  .m-application .pt-md-10 {
    padding-top: 40px !important;
  }
  .m-application .pt-md-11 {
    padding-top: 44px !important;
  }
  .m-application .pt-md-12 {
    padding-top: 48px !important;
  }
  .m-application .pr-md-0 {
    padding-right: 0px !important;
  }
  .m-application .pr-md-1 {
    padding-right: 4px !important;
  }
  .m-application .pr-md-2 {
    padding-right: 8px !important;
  }
  .m-application .pr-md-3 {
    padding-right: 12px !important;
  }
  .m-application .pr-md-4 {
    padding-right: 16px !important;
  }
  .m-application .pr-md-5 {
    padding-right: 20px !important;
  }
  .m-application .pr-md-6 {
    padding-right: 24px !important;
  }
  .m-application .pr-md-7 {
    padding-right: 28px !important;
  }
  .m-application .pr-md-8 {
    padding-right: 32px !important;
  }
  .m-application .pr-md-9 {
    padding-right: 36px !important;
  }
  .m-application .pr-md-10 {
    padding-right: 40px !important;
  }
  .m-application .pr-md-11 {
    padding-right: 44px !important;
  }
  .m-application .pr-md-12 {
    padding-right: 48px !important;
  }
  .m-application .pb-md-0 {
    padding-bottom: 0px !important;
  }
  .m-application .pb-md-1 {
    padding-bottom: 4px !important;
  }
  .m-application .pb-md-2 {
    padding-bottom: 8px !important;
  }
  .m-application .pb-md-3 {
    padding-bottom: 12px !important;
  }
  .m-application .pb-md-4 {
    padding-bottom: 16px !important;
  }
  .m-application .pb-md-5 {
    padding-bottom: 20px !important;
  }
  .m-application .pb-md-6 {
    padding-bottom: 24px !important;
  }
  .m-application .pb-md-7 {
    padding-bottom: 28px !important;
  }
  .m-application .pb-md-8 {
    padding-bottom: 32px !important;
  }
  .m-application .pb-md-9 {
    padding-bottom: 36px !important;
  }
  .m-application .pb-md-10 {
    padding-bottom: 40px !important;
  }
  .m-application .pb-md-11 {
    padding-bottom: 44px !important;
  }
  .m-application .pb-md-12 {
    padding-bottom: 48px !important;
  }
  .m-application .pl-md-0 {
    padding-left: 0px !important;
  }
  .m-application .pl-md-1 {
    padding-left: 4px !important;
  }
  .m-application .pl-md-2 {
    padding-left: 8px !important;
  }
  .m-application .pl-md-3 {
    padding-left: 12px !important;
  }
  .m-application .pl-md-4 {
    padding-left: 16px !important;
  }
  .m-application .pl-md-5 {
    padding-left: 20px !important;
  }
  .m-application .pl-md-6 {
    padding-left: 24px !important;
  }
  .m-application .pl-md-7 {
    padding-left: 28px !important;
  }
  .m-application .pl-md-8 {
    padding-left: 32px !important;
  }
  .m-application .pl-md-9 {
    padding-left: 36px !important;
  }
  .m-application .pl-md-10 {
    padding-left: 40px !important;
  }
  .m-application .pl-md-11 {
    padding-left: 44px !important;
  }
  .m-application .pl-md-12 {
    padding-left: 48px !important;
  }
  [dir=ltr] .m-application .ps-md-0 {
    padding-left: 0px !important;
  }
  [dir=rtl] .m-application .ps-md-0 {
    padding-right: 0px !important;
  }
  [dir=ltr] .m-application .ps-md-1 {
    padding-left: 4px !important;
  }
  [dir=rtl] .m-application .ps-md-1 {
    padding-right: 4px !important;
  }
  [dir=ltr] .m-application .ps-md-2 {
    padding-left: 8px !important;
  }
  [dir=rtl] .m-application .ps-md-2 {
    padding-right: 8px !important;
  }
  [dir=ltr] .m-application .ps-md-3 {
    padding-left: 12px !important;
  }
  [dir=rtl] .m-application .ps-md-3 {
    padding-right: 12px !important;
  }
  [dir=ltr] .m-application .ps-md-4 {
    padding-left: 16px !important;
  }
  [dir=rtl] .m-application .ps-md-4 {
    padding-right: 16px !important;
  }
  [dir=ltr] .m-application .ps-md-5 {
    padding-left: 20px !important;
  }
  [dir=rtl] .m-application .ps-md-5 {
    padding-right: 20px !important;
  }
  [dir=ltr] .m-application .ps-md-6 {
    padding-left: 24px !important;
  }
  [dir=rtl] .m-application .ps-md-6 {
    padding-right: 24px !important;
  }
  [dir=ltr] .m-application .ps-md-7 {
    padding-left: 28px !important;
  }
  [dir=rtl] .m-application .ps-md-7 {
    padding-right: 28px !important;
  }
  [dir=ltr] .m-application .ps-md-8 {
    padding-left: 32px !important;
  }
  [dir=rtl] .m-application .ps-md-8 {
    padding-right: 32px !important;
  }
  [dir=ltr] .m-application .ps-md-9 {
    padding-left: 36px !important;
  }
  [dir=rtl] .m-application .ps-md-9 {
    padding-right: 36px !important;
  }
  [dir=ltr] .m-application .ps-md-10 {
    padding-left: 40px !important;
  }
  [dir=rtl] .m-application .ps-md-10 {
    padding-right: 40px !important;
  }
  [dir=ltr] .m-application .ps-md-11 {
    padding-left: 44px !important;
  }
  [dir=rtl] .m-application .ps-md-11 {
    padding-right: 44px !important;
  }
  [dir=ltr] .m-application .ps-md-12 {
    padding-left: 48px !important;
  }
  [dir=rtl] .m-application .ps-md-12 {
    padding-right: 48px !important;
  }
  [dir=ltr] .m-application .pe-md-0 {
    padding-right: 0px !important;
  }
  [dir=rtl] .m-application .pe-md-0 {
    padding-left: 0px !important;
  }
  [dir=ltr] .m-application .pe-md-1 {
    padding-right: 4px !important;
  }
  [dir=rtl] .m-application .pe-md-1 {
    padding-left: 4px !important;
  }
  [dir=ltr] .m-application .pe-md-2 {
    padding-right: 8px !important;
  }
  [dir=rtl] .m-application .pe-md-2 {
    padding-left: 8px !important;
  }
  [dir=ltr] .m-application .pe-md-3 {
    padding-right: 12px !important;
  }
  [dir=rtl] .m-application .pe-md-3 {
    padding-left: 12px !important;
  }
  [dir=ltr] .m-application .pe-md-4 {
    padding-right: 16px !important;
  }
  [dir=rtl] .m-application .pe-md-4 {
    padding-left: 16px !important;
  }
  [dir=ltr] .m-application .pe-md-5 {
    padding-right: 20px !important;
  }
  [dir=rtl] .m-application .pe-md-5 {
    padding-left: 20px !important;
  }
  [dir=ltr] .m-application .pe-md-6 {
    padding-right: 24px !important;
  }
  [dir=rtl] .m-application .pe-md-6 {
    padding-left: 24px !important;
  }
  [dir=ltr] .m-application .pe-md-7 {
    padding-right: 28px !important;
  }
  [dir=rtl] .m-application .pe-md-7 {
    padding-left: 28px !important;
  }
  [dir=ltr] .m-application .pe-md-8 {
    padding-right: 32px !important;
  }
  [dir=rtl] .m-application .pe-md-8 {
    padding-left: 32px !important;
  }
  [dir=ltr] .m-application .pe-md-9 {
    padding-right: 36px !important;
  }
  [dir=rtl] .m-application .pe-md-9 {
    padding-left: 36px !important;
  }
  [dir=ltr] .m-application .pe-md-10 {
    padding-right: 40px !important;
  }
  [dir=rtl] .m-application .pe-md-10 {
    padding-left: 40px !important;
  }
  [dir=ltr] .m-application .pe-md-11 {
    padding-right: 44px !important;
  }
  [dir=rtl] .m-application .pe-md-11 {
    padding-left: 44px !important;
  }
  [dir=ltr] .m-application .pe-md-12 {
    padding-right: 48px !important;
  }
  [dir=rtl] .m-application .pe-md-12 {
    padding-left: 48px !important;
  }
  .m-application .text-md-left {
    text-align: left !important;
  }
  .m-application .text-md-right {
    text-align: right !important;
  }
  .m-application .text-md-center {
    text-align: center !important;
  }
  .m-application .text-md-justify {
    text-align: justify !important;
  }
  .m-application .text-md-start {
    text-align: start !important;
  }
  .m-application .text-md-end {
    text-align: end !important;
  }
}
@media (min-width: 1264px) {
  .m-application .ma-lg-0 {
    margin: 0px !important;
  }
  .m-application .ma-lg-1 {
    margin: 4px !important;
  }
  .m-application .ma-lg-2 {
    margin: 8px !important;
  }
  .m-application .ma-lg-3 {
    margin: 12px !important;
  }
  .m-application .ma-lg-4 {
    margin: 16px !important;
  }
  .m-application .ma-lg-5 {
    margin: 20px !important;
  }
  .m-application .ma-lg-6 {
    margin: 24px !important;
  }
  .m-application .ma-lg-7 {
    margin: 28px !important;
  }
  .m-application .ma-lg-8 {
    margin: 32px !important;
  }
  .m-application .ma-lg-9 {
    margin: 36px !important;
  }
  .m-application .ma-lg-10 {
    margin: 40px !important;
  }
  .m-application .ma-lg-11 {
    margin: 44px !important;
  }
  .m-application .ma-lg-12 {
    margin: 48px !important;
  }
  .m-application .ma-lg-auto {
    margin: auto !important;
  }
  .m-application .mx-lg-0 {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .m-application .mx-lg-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  .m-application .mx-lg-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  .m-application .mx-lg-3 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
  .m-application .mx-lg-4 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  .m-application .mx-lg-5 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .m-application .mx-lg-6 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  .m-application .mx-lg-7 {
    margin-right: 28px !important;
    margin-left: 28px !important;
  }
  .m-application .mx-lg-8 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }
  .m-application .mx-lg-9 {
    margin-right: 36px !important;
    margin-left: 36px !important;
  }
  .m-application .mx-lg-10 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .m-application .mx-lg-11 {
    margin-right: 44px !important;
    margin-left: 44px !important;
  }
  .m-application .mx-lg-12 {
    margin-right: 48px !important;
    margin-left: 48px !important;
  }
  .m-application .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .m-application .my-lg-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .m-application .my-lg-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-application .my-lg-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-application .my-lg-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-application .my-lg-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-application .my-lg-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-application .my-lg-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-application .my-lg-7 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-application .my-lg-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-application .my-lg-9 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-application .my-lg-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-application .my-lg-11 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-application .my-lg-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-application .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .m-application .mt-lg-0 {
    margin-top: 0px !important;
  }
  .m-application .mt-lg-1 {
    margin-top: 4px !important;
  }
  .m-application .mt-lg-2 {
    margin-top: 8px !important;
  }
  .m-application .mt-lg-3 {
    margin-top: 12px !important;
  }
  .m-application .mt-lg-4 {
    margin-top: 16px !important;
  }
  .m-application .mt-lg-5 {
    margin-top: 20px !important;
  }
  .m-application .mt-lg-6 {
    margin-top: 24px !important;
  }
  .m-application .mt-lg-7 {
    margin-top: 28px !important;
  }
  .m-application .mt-lg-8 {
    margin-top: 32px !important;
  }
  .m-application .mt-lg-9 {
    margin-top: 36px !important;
  }
  .m-application .mt-lg-10 {
    margin-top: 40px !important;
  }
  .m-application .mt-lg-11 {
    margin-top: 44px !important;
  }
  .m-application .mt-lg-12 {
    margin-top: 48px !important;
  }
  .m-application .mt-lg-auto {
    margin-top: auto !important;
  }
  .m-application .mr-lg-0 {
    margin-right: 0px !important;
  }
  .m-application .mr-lg-1 {
    margin-right: 4px !important;
  }
  .m-application .mr-lg-2 {
    margin-right: 8px !important;
  }
  .m-application .mr-lg-3 {
    margin-right: 12px !important;
  }
  .m-application .mr-lg-4 {
    margin-right: 16px !important;
  }
  .m-application .mr-lg-5 {
    margin-right: 20px !important;
  }
  .m-application .mr-lg-6 {
    margin-right: 24px !important;
  }
  .m-application .mr-lg-7 {
    margin-right: 28px !important;
  }
  .m-application .mr-lg-8 {
    margin-right: 32px !important;
  }
  .m-application .mr-lg-9 {
    margin-right: 36px !important;
  }
  .m-application .mr-lg-10 {
    margin-right: 40px !important;
  }
  .m-application .mr-lg-11 {
    margin-right: 44px !important;
  }
  .m-application .mr-lg-12 {
    margin-right: 48px !important;
  }
  .m-application .mr-lg-auto {
    margin-right: auto !important;
  }
  .m-application .mb-lg-0 {
    margin-bottom: 0px !important;
  }
  .m-application .mb-lg-1 {
    margin-bottom: 4px !important;
  }
  .m-application .mb-lg-2 {
    margin-bottom: 8px !important;
  }
  .m-application .mb-lg-3 {
    margin-bottom: 12px !important;
  }
  .m-application .mb-lg-4 {
    margin-bottom: 16px !important;
  }
  .m-application .mb-lg-5 {
    margin-bottom: 20px !important;
  }
  .m-application .mb-lg-6 {
    margin-bottom: 24px !important;
  }
  .m-application .mb-lg-7 {
    margin-bottom: 28px !important;
  }
  .m-application .mb-lg-8 {
    margin-bottom: 32px !important;
  }
  .m-application .mb-lg-9 {
    margin-bottom: 36px !important;
  }
  .m-application .mb-lg-10 {
    margin-bottom: 40px !important;
  }
  .m-application .mb-lg-11 {
    margin-bottom: 44px !important;
  }
  .m-application .mb-lg-12 {
    margin-bottom: 48px !important;
  }
  .m-application .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .m-application .ml-lg-0 {
    margin-left: 0px !important;
  }
  .m-application .ml-lg-1 {
    margin-left: 4px !important;
  }
  .m-application .ml-lg-2 {
    margin-left: 8px !important;
  }
  .m-application .ml-lg-3 {
    margin-left: 12px !important;
  }
  .m-application .ml-lg-4 {
    margin-left: 16px !important;
  }
  .m-application .ml-lg-5 {
    margin-left: 20px !important;
  }
  .m-application .ml-lg-6 {
    margin-left: 24px !important;
  }
  .m-application .ml-lg-7 {
    margin-left: 28px !important;
  }
  .m-application .ml-lg-8 {
    margin-left: 32px !important;
  }
  .m-application .ml-lg-9 {
    margin-left: 36px !important;
  }
  .m-application .ml-lg-10 {
    margin-left: 40px !important;
  }
  .m-application .ml-lg-11 {
    margin-left: 44px !important;
  }
  .m-application .ml-lg-12 {
    margin-left: 48px !important;
  }
  .m-application .ml-lg-auto {
    margin-left: auto !important;
  }
  [dir=ltr] .m-application .ms-lg-0 {
    margin-left: 0px !important;
  }
  [dir=rtl] .m-application .ms-lg-0 {
    margin-right: 0px !important;
  }
  [dir=ltr] .m-application .ms-lg-1 {
    margin-left: 4px !important;
  }
  [dir=rtl] .m-application .ms-lg-1 {
    margin-right: 4px !important;
  }
  [dir=ltr] .m-application .ms-lg-2 {
    margin-left: 8px !important;
  }
  [dir=rtl] .m-application .ms-lg-2 {
    margin-right: 8px !important;
  }
  [dir=ltr] .m-application .ms-lg-3 {
    margin-left: 12px !important;
  }
  [dir=rtl] .m-application .ms-lg-3 {
    margin-right: 12px !important;
  }
  [dir=ltr] .m-application .ms-lg-4 {
    margin-left: 16px !important;
  }
  [dir=rtl] .m-application .ms-lg-4 {
    margin-right: 16px !important;
  }
  [dir=ltr] .m-application .ms-lg-5 {
    margin-left: 20px !important;
  }
  [dir=rtl] .m-application .ms-lg-5 {
    margin-right: 20px !important;
  }
  [dir=ltr] .m-application .ms-lg-6 {
    margin-left: 24px !important;
  }
  [dir=rtl] .m-application .ms-lg-6 {
    margin-right: 24px !important;
  }
  [dir=ltr] .m-application .ms-lg-7 {
    margin-left: 28px !important;
  }
  [dir=rtl] .m-application .ms-lg-7 {
    margin-right: 28px !important;
  }
  [dir=ltr] .m-application .ms-lg-8 {
    margin-left: 32px !important;
  }
  [dir=rtl] .m-application .ms-lg-8 {
    margin-right: 32px !important;
  }
  [dir=ltr] .m-application .ms-lg-9 {
    margin-left: 36px !important;
  }
  [dir=rtl] .m-application .ms-lg-9 {
    margin-right: 36px !important;
  }
  [dir=ltr] .m-application .ms-lg-10 {
    margin-left: 40px !important;
  }
  [dir=rtl] .m-application .ms-lg-10 {
    margin-right: 40px !important;
  }
  [dir=ltr] .m-application .ms-lg-11 {
    margin-left: 44px !important;
  }
  [dir=rtl] .m-application .ms-lg-11 {
    margin-right: 44px !important;
  }
  [dir=ltr] .m-application .ms-lg-12 {
    margin-left: 48px !important;
  }
  [dir=rtl] .m-application .ms-lg-12 {
    margin-right: 48px !important;
  }
  [dir=ltr] .m-application .ms-lg-auto {
    margin-left: auto !important;
  }
  [dir=rtl] .m-application .ms-lg-auto {
    margin-right: auto !important;
  }
  [dir=ltr] .m-application .me-lg-0 {
    margin-right: 0px !important;
  }
  [dir=rtl] .m-application .me-lg-0 {
    margin-left: 0px !important;
  }
  [dir=ltr] .m-application .me-lg-1 {
    margin-right: 4px !important;
  }
  [dir=rtl] .m-application .me-lg-1 {
    margin-left: 4px !important;
  }
  [dir=ltr] .m-application .me-lg-2 {
    margin-right: 8px !important;
  }
  [dir=rtl] .m-application .me-lg-2 {
    margin-left: 8px !important;
  }
  [dir=ltr] .m-application .me-lg-3 {
    margin-right: 12px !important;
  }
  [dir=rtl] .m-application .me-lg-3 {
    margin-left: 12px !important;
  }
  [dir=ltr] .m-application .me-lg-4 {
    margin-right: 16px !important;
  }
  [dir=rtl] .m-application .me-lg-4 {
    margin-left: 16px !important;
  }
  [dir=ltr] .m-application .me-lg-5 {
    margin-right: 20px !important;
  }
  [dir=rtl] .m-application .me-lg-5 {
    margin-left: 20px !important;
  }
  [dir=ltr] .m-application .me-lg-6 {
    margin-right: 24px !important;
  }
  [dir=rtl] .m-application .me-lg-6 {
    margin-left: 24px !important;
  }
  [dir=ltr] .m-application .me-lg-7 {
    margin-right: 28px !important;
  }
  [dir=rtl] .m-application .me-lg-7 {
    margin-left: 28px !important;
  }
  [dir=ltr] .m-application .me-lg-8 {
    margin-right: 32px !important;
  }
  [dir=rtl] .m-application .me-lg-8 {
    margin-left: 32px !important;
  }
  [dir=ltr] .m-application .me-lg-9 {
    margin-right: 36px !important;
  }
  [dir=rtl] .m-application .me-lg-9 {
    margin-left: 36px !important;
  }
  [dir=ltr] .m-application .me-lg-10 {
    margin-right: 40px !important;
  }
  [dir=rtl] .m-application .me-lg-10 {
    margin-left: 40px !important;
  }
  [dir=ltr] .m-application .me-lg-11 {
    margin-right: 44px !important;
  }
  [dir=rtl] .m-application .me-lg-11 {
    margin-left: 44px !important;
  }
  [dir=ltr] .m-application .me-lg-12 {
    margin-right: 48px !important;
  }
  [dir=rtl] .m-application .me-lg-12 {
    margin-left: 48px !important;
  }
  [dir=ltr] .m-application .me-lg-auto {
    margin-right: auto !important;
  }
  [dir=rtl] .m-application .me-lg-auto {
    margin-left: auto !important;
  }
  .m-application .ma-lg-n1 {
    margin: -4px !important;
  }
  .m-application .ma-lg-n2 {
    margin: -8px !important;
  }
  .m-application .ma-lg-n3 {
    margin: -12px !important;
  }
  .m-application .ma-lg-n4 {
    margin: -16px !important;
  }
  .m-application .ma-lg-n5 {
    margin: -20px !important;
  }
  .m-application .ma-lg-n6 {
    margin: -24px !important;
  }
  .m-application .ma-lg-n7 {
    margin: -28px !important;
  }
  .m-application .ma-lg-n8 {
    margin: -32px !important;
  }
  .m-application .ma-lg-n9 {
    margin: -36px !important;
  }
  .m-application .ma-lg-n10 {
    margin: -40px !important;
  }
  .m-application .ma-lg-n11 {
    margin: -44px !important;
  }
  .m-application .ma-lg-n12 {
    margin: -48px !important;
  }
  .m-application .mx-lg-n1 {
    margin-right: -4px !important;
    margin-left: -4px !important;
  }
  .m-application .mx-lg-n2 {
    margin-right: -8px !important;
    margin-left: -8px !important;
  }
  .m-application .mx-lg-n3 {
    margin-right: -12px !important;
    margin-left: -12px !important;
  }
  .m-application .mx-lg-n4 {
    margin-right: -16px !important;
    margin-left: -16px !important;
  }
  .m-application .mx-lg-n5 {
    margin-right: -20px !important;
    margin-left: -20px !important;
  }
  .m-application .mx-lg-n6 {
    margin-right: -24px !important;
    margin-left: -24px !important;
  }
  .m-application .mx-lg-n7 {
    margin-right: -28px !important;
    margin-left: -28px !important;
  }
  .m-application .mx-lg-n8 {
    margin-right: -32px !important;
    margin-left: -32px !important;
  }
  .m-application .mx-lg-n9 {
    margin-right: -36px !important;
    margin-left: -36px !important;
  }
  .m-application .mx-lg-n10 {
    margin-right: -40px !important;
    margin-left: -40px !important;
  }
  .m-application .mx-lg-n11 {
    margin-right: -44px !important;
    margin-left: -44px !important;
  }
  .m-application .mx-lg-n12 {
    margin-right: -48px !important;
    margin-left: -48px !important;
  }
  .m-application .my-lg-n1 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }
  .m-application .my-lg-n2 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }
  .m-application .my-lg-n3 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }
  .m-application .my-lg-n4 {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }
  .m-application .my-lg-n5 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }
  .m-application .my-lg-n6 {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }
  .m-application .my-lg-n7 {
    margin-top: -28px !important;
    margin-bottom: -28px !important;
  }
  .m-application .my-lg-n8 {
    margin-top: -32px !important;
    margin-bottom: -32px !important;
  }
  .m-application .my-lg-n9 {
    margin-top: -36px !important;
    margin-bottom: -36px !important;
  }
  .m-application .my-lg-n10 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }
  .m-application .my-lg-n11 {
    margin-top: -44px !important;
    margin-bottom: -44px !important;
  }
  .m-application .my-lg-n12 {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }
  .m-application .mt-lg-n1 {
    margin-top: -4px !important;
  }
  .m-application .mt-lg-n2 {
    margin-top: -8px !important;
  }
  .m-application .mt-lg-n3 {
    margin-top: -12px !important;
  }
  .m-application .mt-lg-n4 {
    margin-top: -16px !important;
  }
  .m-application .mt-lg-n5 {
    margin-top: -20px !important;
  }
  .m-application .mt-lg-n6 {
    margin-top: -24px !important;
  }
  .m-application .mt-lg-n7 {
    margin-top: -28px !important;
  }
  .m-application .mt-lg-n8 {
    margin-top: -32px !important;
  }
  .m-application .mt-lg-n9 {
    margin-top: -36px !important;
  }
  .m-application .mt-lg-n10 {
    margin-top: -40px !important;
  }
  .m-application .mt-lg-n11 {
    margin-top: -44px !important;
  }
  .m-application .mt-lg-n12 {
    margin-top: -48px !important;
  }
  .m-application .mr-lg-n1 {
    margin-right: -4px !important;
  }
  .m-application .mr-lg-n2 {
    margin-right: -8px !important;
  }
  .m-application .mr-lg-n3 {
    margin-right: -12px !important;
  }
  .m-application .mr-lg-n4 {
    margin-right: -16px !important;
  }
  .m-application .mr-lg-n5 {
    margin-right: -20px !important;
  }
  .m-application .mr-lg-n6 {
    margin-right: -24px !important;
  }
  .m-application .mr-lg-n7 {
    margin-right: -28px !important;
  }
  .m-application .mr-lg-n8 {
    margin-right: -32px !important;
  }
  .m-application .mr-lg-n9 {
    margin-right: -36px !important;
  }
  .m-application .mr-lg-n10 {
    margin-right: -40px !important;
  }
  .m-application .mr-lg-n11 {
    margin-right: -44px !important;
  }
  .m-application .mr-lg-n12 {
    margin-right: -48px !important;
  }
  .m-application .mb-lg-n1 {
    margin-bottom: -4px !important;
  }
  .m-application .mb-lg-n2 {
    margin-bottom: -8px !important;
  }
  .m-application .mb-lg-n3 {
    margin-bottom: -12px !important;
  }
  .m-application .mb-lg-n4 {
    margin-bottom: -16px !important;
  }
  .m-application .mb-lg-n5 {
    margin-bottom: -20px !important;
  }
  .m-application .mb-lg-n6 {
    margin-bottom: -24px !important;
  }
  .m-application .mb-lg-n7 {
    margin-bottom: -28px !important;
  }
  .m-application .mb-lg-n8 {
    margin-bottom: -32px !important;
  }
  .m-application .mb-lg-n9 {
    margin-bottom: -36px !important;
  }
  .m-application .mb-lg-n10 {
    margin-bottom: -40px !important;
  }
  .m-application .mb-lg-n11 {
    margin-bottom: -44px !important;
  }
  .m-application .mb-lg-n12 {
    margin-bottom: -48px !important;
  }
  .m-application .ml-lg-n1 {
    margin-left: -4px !important;
  }
  .m-application .ml-lg-n2 {
    margin-left: -8px !important;
  }
  .m-application .ml-lg-n3 {
    margin-left: -12px !important;
  }
  .m-application .ml-lg-n4 {
    margin-left: -16px !important;
  }
  .m-application .ml-lg-n5 {
    margin-left: -20px !important;
  }
  .m-application .ml-lg-n6 {
    margin-left: -24px !important;
  }
  .m-application .ml-lg-n7 {
    margin-left: -28px !important;
  }
  .m-application .ml-lg-n8 {
    margin-left: -32px !important;
  }
  .m-application .ml-lg-n9 {
    margin-left: -36px !important;
  }
  .m-application .ml-lg-n10 {
    margin-left: -40px !important;
  }
  .m-application .ml-lg-n11 {
    margin-left: -44px !important;
  }
  .m-application .ml-lg-n12 {
    margin-left: -48px !important;
  }
  [dir=ltr] .m-application .ms-lg-n1 {
    margin-left: -4px !important;
  }
  [dir=rtl] .m-application .ms-lg-n1 {
    margin-right: -4px !important;
  }
  [dir=ltr] .m-application .ms-lg-n2 {
    margin-left: -8px !important;
  }
  [dir=rtl] .m-application .ms-lg-n2 {
    margin-right: -8px !important;
  }
  [dir=ltr] .m-application .ms-lg-n3 {
    margin-left: -12px !important;
  }
  [dir=rtl] .m-application .ms-lg-n3 {
    margin-right: -12px !important;
  }
  [dir=ltr] .m-application .ms-lg-n4 {
    margin-left: -16px !important;
  }
  [dir=rtl] .m-application .ms-lg-n4 {
    margin-right: -16px !important;
  }
  [dir=ltr] .m-application .ms-lg-n5 {
    margin-left: -20px !important;
  }
  [dir=rtl] .m-application .ms-lg-n5 {
    margin-right: -20px !important;
  }
  [dir=ltr] .m-application .ms-lg-n6 {
    margin-left: -24px !important;
  }
  [dir=rtl] .m-application .ms-lg-n6 {
    margin-right: -24px !important;
  }
  [dir=ltr] .m-application .ms-lg-n7 {
    margin-left: -28px !important;
  }
  [dir=rtl] .m-application .ms-lg-n7 {
    margin-right: -28px !important;
  }
  [dir=ltr] .m-application .ms-lg-n8 {
    margin-left: -32px !important;
  }
  [dir=rtl] .m-application .ms-lg-n8 {
    margin-right: -32px !important;
  }
  [dir=ltr] .m-application .ms-lg-n9 {
    margin-left: -36px !important;
  }
  [dir=rtl] .m-application .ms-lg-n9 {
    margin-right: -36px !important;
  }
  [dir=ltr] .m-application .ms-lg-n10 {
    margin-left: -40px !important;
  }
  [dir=rtl] .m-application .ms-lg-n10 {
    margin-right: -40px !important;
  }
  [dir=ltr] .m-application .ms-lg-n11 {
    margin-left: -44px !important;
  }
  [dir=rtl] .m-application .ms-lg-n11 {
    margin-right: -44px !important;
  }
  [dir=ltr] .m-application .ms-lg-n12 {
    margin-left: -48px !important;
  }
  [dir=rtl] .m-application .ms-lg-n12 {
    margin-right: -48px !important;
  }
  [dir=ltr] .m-application .me-lg-n1 {
    margin-right: -4px !important;
  }
  [dir=rtl] .m-application .me-lg-n1 {
    margin-left: -4px !important;
  }
  [dir=ltr] .m-application .me-lg-n2 {
    margin-right: -8px !important;
  }
  [dir=rtl] .m-application .me-lg-n2 {
    margin-left: -8px !important;
  }
  [dir=ltr] .m-application .me-lg-n3 {
    margin-right: -12px !important;
  }
  [dir=rtl] .m-application .me-lg-n3 {
    margin-left: -12px !important;
  }
  [dir=ltr] .m-application .me-lg-n4 {
    margin-right: -16px !important;
  }
  [dir=rtl] .m-application .me-lg-n4 {
    margin-left: -16px !important;
  }
  [dir=ltr] .m-application .me-lg-n5 {
    margin-right: -20px !important;
  }
  [dir=rtl] .m-application .me-lg-n5 {
    margin-left: -20px !important;
  }
  [dir=ltr] .m-application .me-lg-n6 {
    margin-right: -24px !important;
  }
  [dir=rtl] .m-application .me-lg-n6 {
    margin-left: -24px !important;
  }
  [dir=ltr] .m-application .me-lg-n7 {
    margin-right: -28px !important;
  }
  [dir=rtl] .m-application .me-lg-n7 {
    margin-left: -28px !important;
  }
  [dir=ltr] .m-application .me-lg-n8 {
    margin-right: -32px !important;
  }
  [dir=rtl] .m-application .me-lg-n8 {
    margin-left: -32px !important;
  }
  [dir=ltr] .m-application .me-lg-n9 {
    margin-right: -36px !important;
  }
  [dir=rtl] .m-application .me-lg-n9 {
    margin-left: -36px !important;
  }
  [dir=ltr] .m-application .me-lg-n10 {
    margin-right: -40px !important;
  }
  [dir=rtl] .m-application .me-lg-n10 {
    margin-left: -40px !important;
  }
  [dir=ltr] .m-application .me-lg-n11 {
    margin-right: -44px !important;
  }
  [dir=rtl] .m-application .me-lg-n11 {
    margin-left: -44px !important;
  }
  [dir=ltr] .m-application .me-lg-n12 {
    margin-right: -48px !important;
  }
  [dir=rtl] .m-application .me-lg-n12 {
    margin-left: -48px !important;
  }
  .m-application .pa-lg-0 {
    padding: 0px !important;
  }
  .m-application .pa-lg-1 {
    padding: 4px !important;
  }
  .m-application .pa-lg-2 {
    padding: 8px !important;
  }
  .m-application .pa-lg-3 {
    padding: 12px !important;
  }
  .m-application .pa-lg-4 {
    padding: 16px !important;
  }
  .m-application .pa-lg-5 {
    padding: 20px !important;
  }
  .m-application .pa-lg-6 {
    padding: 24px !important;
  }
  .m-application .pa-lg-7 {
    padding: 28px !important;
  }
  .m-application .pa-lg-8 {
    padding: 32px !important;
  }
  .m-application .pa-lg-9 {
    padding: 36px !important;
  }
  .m-application .pa-lg-10 {
    padding: 40px !important;
  }
  .m-application .pa-lg-11 {
    padding: 44px !important;
  }
  .m-application .pa-lg-12 {
    padding: 48px !important;
  }
  .m-application .px-lg-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .m-application .px-lg-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  .m-application .px-lg-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .m-application .px-lg-3 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  .m-application .px-lg-4 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .m-application .px-lg-5 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .m-application .px-lg-6 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  .m-application .px-lg-7 {
    padding-right: 28px !important;
    padding-left: 28px !important;
  }
  .m-application .px-lg-8 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
  .m-application .px-lg-9 {
    padding-right: 36px !important;
    padding-left: 36px !important;
  }
  .m-application .px-lg-10 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .m-application .px-lg-11 {
    padding-right: 44px !important;
    padding-left: 44px !important;
  }
  .m-application .px-lg-12 {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
  .m-application .py-lg-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-application .py-lg-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-application .py-lg-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-application .py-lg-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-application .py-lg-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-application .py-lg-5 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-application .py-lg-6 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-application .py-lg-7 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-application .py-lg-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-application .py-lg-9 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-application .py-lg-10 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-application .py-lg-11 {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-application .py-lg-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-application .pt-lg-0 {
    padding-top: 0px !important;
  }
  .m-application .pt-lg-1 {
    padding-top: 4px !important;
  }
  .m-application .pt-lg-2 {
    padding-top: 8px !important;
  }
  .m-application .pt-lg-3 {
    padding-top: 12px !important;
  }
  .m-application .pt-lg-4 {
    padding-top: 16px !important;
  }
  .m-application .pt-lg-5 {
    padding-top: 20px !important;
  }
  .m-application .pt-lg-6 {
    padding-top: 24px !important;
  }
  .m-application .pt-lg-7 {
    padding-top: 28px !important;
  }
  .m-application .pt-lg-8 {
    padding-top: 32px !important;
  }
  .m-application .pt-lg-9 {
    padding-top: 36px !important;
  }
  .m-application .pt-lg-10 {
    padding-top: 40px !important;
  }
  .m-application .pt-lg-11 {
    padding-top: 44px !important;
  }
  .m-application .pt-lg-12 {
    padding-top: 48px !important;
  }
  .m-application .pr-lg-0 {
    padding-right: 0px !important;
  }
  .m-application .pr-lg-1 {
    padding-right: 4px !important;
  }
  .m-application .pr-lg-2 {
    padding-right: 8px !important;
  }
  .m-application .pr-lg-3 {
    padding-right: 12px !important;
  }
  .m-application .pr-lg-4 {
    padding-right: 16px !important;
  }
  .m-application .pr-lg-5 {
    padding-right: 20px !important;
  }
  .m-application .pr-lg-6 {
    padding-right: 24px !important;
  }
  .m-application .pr-lg-7 {
    padding-right: 28px !important;
  }
  .m-application .pr-lg-8 {
    padding-right: 32px !important;
  }
  .m-application .pr-lg-9 {
    padding-right: 36px !important;
  }
  .m-application .pr-lg-10 {
    padding-right: 40px !important;
  }
  .m-application .pr-lg-11 {
    padding-right: 44px !important;
  }
  .m-application .pr-lg-12 {
    padding-right: 48px !important;
  }
  .m-application .pb-lg-0 {
    padding-bottom: 0px !important;
  }
  .m-application .pb-lg-1 {
    padding-bottom: 4px !important;
  }
  .m-application .pb-lg-2 {
    padding-bottom: 8px !important;
  }
  .m-application .pb-lg-3 {
    padding-bottom: 12px !important;
  }
  .m-application .pb-lg-4 {
    padding-bottom: 16px !important;
  }
  .m-application .pb-lg-5 {
    padding-bottom: 20px !important;
  }
  .m-application .pb-lg-6 {
    padding-bottom: 24px !important;
  }
  .m-application .pb-lg-7 {
    padding-bottom: 28px !important;
  }
  .m-application .pb-lg-8 {
    padding-bottom: 32px !important;
  }
  .m-application .pb-lg-9 {
    padding-bottom: 36px !important;
  }
  .m-application .pb-lg-10 {
    padding-bottom: 40px !important;
  }
  .m-application .pb-lg-11 {
    padding-bottom: 44px !important;
  }
  .m-application .pb-lg-12 {
    padding-bottom: 48px !important;
  }
  .m-application .pl-lg-0 {
    padding-left: 0px !important;
  }
  .m-application .pl-lg-1 {
    padding-left: 4px !important;
  }
  .m-application .pl-lg-2 {
    padding-left: 8px !important;
  }
  .m-application .pl-lg-3 {
    padding-left: 12px !important;
  }
  .m-application .pl-lg-4 {
    padding-left: 16px !important;
  }
  .m-application .pl-lg-5 {
    padding-left: 20px !important;
  }
  .m-application .pl-lg-6 {
    padding-left: 24px !important;
  }
  .m-application .pl-lg-7 {
    padding-left: 28px !important;
  }
  .m-application .pl-lg-8 {
    padding-left: 32px !important;
  }
  .m-application .pl-lg-9 {
    padding-left: 36px !important;
  }
  .m-application .pl-lg-10 {
    padding-left: 40px !important;
  }
  .m-application .pl-lg-11 {
    padding-left: 44px !important;
  }
  .m-application .pl-lg-12 {
    padding-left: 48px !important;
  }
  [dir=ltr] .m-application .ps-lg-0 {
    padding-left: 0px !important;
  }
  [dir=rtl] .m-application .ps-lg-0 {
    padding-right: 0px !important;
  }
  [dir=ltr] .m-application .ps-lg-1 {
    padding-left: 4px !important;
  }
  [dir=rtl] .m-application .ps-lg-1 {
    padding-right: 4px !important;
  }
  [dir=ltr] .m-application .ps-lg-2 {
    padding-left: 8px !important;
  }
  [dir=rtl] .m-application .ps-lg-2 {
    padding-right: 8px !important;
  }
  [dir=ltr] .m-application .ps-lg-3 {
    padding-left: 12px !important;
  }
  [dir=rtl] .m-application .ps-lg-3 {
    padding-right: 12px !important;
  }
  [dir=ltr] .m-application .ps-lg-4 {
    padding-left: 16px !important;
  }
  [dir=rtl] .m-application .ps-lg-4 {
    padding-right: 16px !important;
  }
  [dir=ltr] .m-application .ps-lg-5 {
    padding-left: 20px !important;
  }
  [dir=rtl] .m-application .ps-lg-5 {
    padding-right: 20px !important;
  }
  [dir=ltr] .m-application .ps-lg-6 {
    padding-left: 24px !important;
  }
  [dir=rtl] .m-application .ps-lg-6 {
    padding-right: 24px !important;
  }
  [dir=ltr] .m-application .ps-lg-7 {
    padding-left: 28px !important;
  }
  [dir=rtl] .m-application .ps-lg-7 {
    padding-right: 28px !important;
  }
  [dir=ltr] .m-application .ps-lg-8 {
    padding-left: 32px !important;
  }
  [dir=rtl] .m-application .ps-lg-8 {
    padding-right: 32px !important;
  }
  [dir=ltr] .m-application .ps-lg-9 {
    padding-left: 36px !important;
  }
  [dir=rtl] .m-application .ps-lg-9 {
    padding-right: 36px !important;
  }
  [dir=ltr] .m-application .ps-lg-10 {
    padding-left: 40px !important;
  }
  [dir=rtl] .m-application .ps-lg-10 {
    padding-right: 40px !important;
  }
  [dir=ltr] .m-application .ps-lg-11 {
    padding-left: 44px !important;
  }
  [dir=rtl] .m-application .ps-lg-11 {
    padding-right: 44px !important;
  }
  [dir=ltr] .m-application .ps-lg-12 {
    padding-left: 48px !important;
  }
  [dir=rtl] .m-application .ps-lg-12 {
    padding-right: 48px !important;
  }
  [dir=ltr] .m-application .pe-lg-0 {
    padding-right: 0px !important;
  }
  [dir=rtl] .m-application .pe-lg-0 {
    padding-left: 0px !important;
  }
  [dir=ltr] .m-application .pe-lg-1 {
    padding-right: 4px !important;
  }
  [dir=rtl] .m-application .pe-lg-1 {
    padding-left: 4px !important;
  }
  [dir=ltr] .m-application .pe-lg-2 {
    padding-right: 8px !important;
  }
  [dir=rtl] .m-application .pe-lg-2 {
    padding-left: 8px !important;
  }
  [dir=ltr] .m-application .pe-lg-3 {
    padding-right: 12px !important;
  }
  [dir=rtl] .m-application .pe-lg-3 {
    padding-left: 12px !important;
  }
  [dir=ltr] .m-application .pe-lg-4 {
    padding-right: 16px !important;
  }
  [dir=rtl] .m-application .pe-lg-4 {
    padding-left: 16px !important;
  }
  [dir=ltr] .m-application .pe-lg-5 {
    padding-right: 20px !important;
  }
  [dir=rtl] .m-application .pe-lg-5 {
    padding-left: 20px !important;
  }
  [dir=ltr] .m-application .pe-lg-6 {
    padding-right: 24px !important;
  }
  [dir=rtl] .m-application .pe-lg-6 {
    padding-left: 24px !important;
  }
  [dir=ltr] .m-application .pe-lg-7 {
    padding-right: 28px !important;
  }
  [dir=rtl] .m-application .pe-lg-7 {
    padding-left: 28px !important;
  }
  [dir=ltr] .m-application .pe-lg-8 {
    padding-right: 32px !important;
  }
  [dir=rtl] .m-application .pe-lg-8 {
    padding-left: 32px !important;
  }
  [dir=ltr] .m-application .pe-lg-9 {
    padding-right: 36px !important;
  }
  [dir=rtl] .m-application .pe-lg-9 {
    padding-left: 36px !important;
  }
  [dir=ltr] .m-application .pe-lg-10 {
    padding-right: 40px !important;
  }
  [dir=rtl] .m-application .pe-lg-10 {
    padding-left: 40px !important;
  }
  [dir=ltr] .m-application .pe-lg-11 {
    padding-right: 44px !important;
  }
  [dir=rtl] .m-application .pe-lg-11 {
    padding-left: 44px !important;
  }
  [dir=ltr] .m-application .pe-lg-12 {
    padding-right: 48px !important;
  }
  [dir=rtl] .m-application .pe-lg-12 {
    padding-left: 48px !important;
  }
  .m-application .text-lg-left {
    text-align: left !important;
  }
  .m-application .text-lg-right {
    text-align: right !important;
  }
  .m-application .text-lg-center {
    text-align: center !important;
  }
  .m-application .text-lg-justify {
    text-align: justify !important;
  }
  .m-application .text-lg-start {
    text-align: start !important;
  }
  .m-application .text-lg-end {
    text-align: end !important;
  }
}
@media (min-width: 1904px) {
  .m-application .ma-xl-0 {
    margin: 0px !important;
  }
  .m-application .ma-xl-1 {
    margin: 4px !important;
  }
  .m-application .ma-xl-2 {
    margin: 8px !important;
  }
  .m-application .ma-xl-3 {
    margin: 12px !important;
  }
  .m-application .ma-xl-4 {
    margin: 16px !important;
  }
  .m-application .ma-xl-5 {
    margin: 20px !important;
  }
  .m-application .ma-xl-6 {
    margin: 24px !important;
  }
  .m-application .ma-xl-7 {
    margin: 28px !important;
  }
  .m-application .ma-xl-8 {
    margin: 32px !important;
  }
  .m-application .ma-xl-9 {
    margin: 36px !important;
  }
  .m-application .ma-xl-10 {
    margin: 40px !important;
  }
  .m-application .ma-xl-11 {
    margin: 44px !important;
  }
  .m-application .ma-xl-12 {
    margin: 48px !important;
  }
  .m-application .ma-xl-auto {
    margin: auto !important;
  }
  .m-application .mx-xl-0 {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .m-application .mx-xl-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  .m-application .mx-xl-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  .m-application .mx-xl-3 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
  .m-application .mx-xl-4 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  .m-application .mx-xl-5 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .m-application .mx-xl-6 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  .m-application .mx-xl-7 {
    margin-right: 28px !important;
    margin-left: 28px !important;
  }
  .m-application .mx-xl-8 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }
  .m-application .mx-xl-9 {
    margin-right: 36px !important;
    margin-left: 36px !important;
  }
  .m-application .mx-xl-10 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .m-application .mx-xl-11 {
    margin-right: 44px !important;
    margin-left: 44px !important;
  }
  .m-application .mx-xl-12 {
    margin-right: 48px !important;
    margin-left: 48px !important;
  }
  .m-application .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .m-application .my-xl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .m-application .my-xl-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-application .my-xl-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-application .my-xl-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-application .my-xl-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-application .my-xl-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-application .my-xl-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-application .my-xl-7 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-application .my-xl-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-application .my-xl-9 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-application .my-xl-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-application .my-xl-11 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-application .my-xl-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-application .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .m-application .mt-xl-0 {
    margin-top: 0px !important;
  }
  .m-application .mt-xl-1 {
    margin-top: 4px !important;
  }
  .m-application .mt-xl-2 {
    margin-top: 8px !important;
  }
  .m-application .mt-xl-3 {
    margin-top: 12px !important;
  }
  .m-application .mt-xl-4 {
    margin-top: 16px !important;
  }
  .m-application .mt-xl-5 {
    margin-top: 20px !important;
  }
  .m-application .mt-xl-6 {
    margin-top: 24px !important;
  }
  .m-application .mt-xl-7 {
    margin-top: 28px !important;
  }
  .m-application .mt-xl-8 {
    margin-top: 32px !important;
  }
  .m-application .mt-xl-9 {
    margin-top: 36px !important;
  }
  .m-application .mt-xl-10 {
    margin-top: 40px !important;
  }
  .m-application .mt-xl-11 {
    margin-top: 44px !important;
  }
  .m-application .mt-xl-12 {
    margin-top: 48px !important;
  }
  .m-application .mt-xl-auto {
    margin-top: auto !important;
  }
  .m-application .mr-xl-0 {
    margin-right: 0px !important;
  }
  .m-application .mr-xl-1 {
    margin-right: 4px !important;
  }
  .m-application .mr-xl-2 {
    margin-right: 8px !important;
  }
  .m-application .mr-xl-3 {
    margin-right: 12px !important;
  }
  .m-application .mr-xl-4 {
    margin-right: 16px !important;
  }
  .m-application .mr-xl-5 {
    margin-right: 20px !important;
  }
  .m-application .mr-xl-6 {
    margin-right: 24px !important;
  }
  .m-application .mr-xl-7 {
    margin-right: 28px !important;
  }
  .m-application .mr-xl-8 {
    margin-right: 32px !important;
  }
  .m-application .mr-xl-9 {
    margin-right: 36px !important;
  }
  .m-application .mr-xl-10 {
    margin-right: 40px !important;
  }
  .m-application .mr-xl-11 {
    margin-right: 44px !important;
  }
  .m-application .mr-xl-12 {
    margin-right: 48px !important;
  }
  .m-application .mr-xl-auto {
    margin-right: auto !important;
  }
  .m-application .mb-xl-0 {
    margin-bottom: 0px !important;
  }
  .m-application .mb-xl-1 {
    margin-bottom: 4px !important;
  }
  .m-application .mb-xl-2 {
    margin-bottom: 8px !important;
  }
  .m-application .mb-xl-3 {
    margin-bottom: 12px !important;
  }
  .m-application .mb-xl-4 {
    margin-bottom: 16px !important;
  }
  .m-application .mb-xl-5 {
    margin-bottom: 20px !important;
  }
  .m-application .mb-xl-6 {
    margin-bottom: 24px !important;
  }
  .m-application .mb-xl-7 {
    margin-bottom: 28px !important;
  }
  .m-application .mb-xl-8 {
    margin-bottom: 32px !important;
  }
  .m-application .mb-xl-9 {
    margin-bottom: 36px !important;
  }
  .m-application .mb-xl-10 {
    margin-bottom: 40px !important;
  }
  .m-application .mb-xl-11 {
    margin-bottom: 44px !important;
  }
  .m-application .mb-xl-12 {
    margin-bottom: 48px !important;
  }
  .m-application .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .m-application .ml-xl-0 {
    margin-left: 0px !important;
  }
  .m-application .ml-xl-1 {
    margin-left: 4px !important;
  }
  .m-application .ml-xl-2 {
    margin-left: 8px !important;
  }
  .m-application .ml-xl-3 {
    margin-left: 12px !important;
  }
  .m-application .ml-xl-4 {
    margin-left: 16px !important;
  }
  .m-application .ml-xl-5 {
    margin-left: 20px !important;
  }
  .m-application .ml-xl-6 {
    margin-left: 24px !important;
  }
  .m-application .ml-xl-7 {
    margin-left: 28px !important;
  }
  .m-application .ml-xl-8 {
    margin-left: 32px !important;
  }
  .m-application .ml-xl-9 {
    margin-left: 36px !important;
  }
  .m-application .ml-xl-10 {
    margin-left: 40px !important;
  }
  .m-application .ml-xl-11 {
    margin-left: 44px !important;
  }
  .m-application .ml-xl-12 {
    margin-left: 48px !important;
  }
  .m-application .ml-xl-auto {
    margin-left: auto !important;
  }
  [dir=ltr] .m-application .ms-xl-0 {
    margin-left: 0px !important;
  }
  [dir=rtl] .m-application .ms-xl-0 {
    margin-right: 0px !important;
  }
  [dir=ltr] .m-application .ms-xl-1 {
    margin-left: 4px !important;
  }
  [dir=rtl] .m-application .ms-xl-1 {
    margin-right: 4px !important;
  }
  [dir=ltr] .m-application .ms-xl-2 {
    margin-left: 8px !important;
  }
  [dir=rtl] .m-application .ms-xl-2 {
    margin-right: 8px !important;
  }
  [dir=ltr] .m-application .ms-xl-3 {
    margin-left: 12px !important;
  }
  [dir=rtl] .m-application .ms-xl-3 {
    margin-right: 12px !important;
  }
  [dir=ltr] .m-application .ms-xl-4 {
    margin-left: 16px !important;
  }
  [dir=rtl] .m-application .ms-xl-4 {
    margin-right: 16px !important;
  }
  [dir=ltr] .m-application .ms-xl-5 {
    margin-left: 20px !important;
  }
  [dir=rtl] .m-application .ms-xl-5 {
    margin-right: 20px !important;
  }
  [dir=ltr] .m-application .ms-xl-6 {
    margin-left: 24px !important;
  }
  [dir=rtl] .m-application .ms-xl-6 {
    margin-right: 24px !important;
  }
  [dir=ltr] .m-application .ms-xl-7 {
    margin-left: 28px !important;
  }
  [dir=rtl] .m-application .ms-xl-7 {
    margin-right: 28px !important;
  }
  [dir=ltr] .m-application .ms-xl-8 {
    margin-left: 32px !important;
  }
  [dir=rtl] .m-application .ms-xl-8 {
    margin-right: 32px !important;
  }
  [dir=ltr] .m-application .ms-xl-9 {
    margin-left: 36px !important;
  }
  [dir=rtl] .m-application .ms-xl-9 {
    margin-right: 36px !important;
  }
  [dir=ltr] .m-application .ms-xl-10 {
    margin-left: 40px !important;
  }
  [dir=rtl] .m-application .ms-xl-10 {
    margin-right: 40px !important;
  }
  [dir=ltr] .m-application .ms-xl-11 {
    margin-left: 44px !important;
  }
  [dir=rtl] .m-application .ms-xl-11 {
    margin-right: 44px !important;
  }
  [dir=ltr] .m-application .ms-xl-12 {
    margin-left: 48px !important;
  }
  [dir=rtl] .m-application .ms-xl-12 {
    margin-right: 48px !important;
  }
  [dir=ltr] .m-application .ms-xl-auto {
    margin-left: auto !important;
  }
  [dir=rtl] .m-application .ms-xl-auto {
    margin-right: auto !important;
  }
  [dir=ltr] .m-application .me-xl-0 {
    margin-right: 0px !important;
  }
  [dir=rtl] .m-application .me-xl-0 {
    margin-left: 0px !important;
  }
  [dir=ltr] .m-application .me-xl-1 {
    margin-right: 4px !important;
  }
  [dir=rtl] .m-application .me-xl-1 {
    margin-left: 4px !important;
  }
  [dir=ltr] .m-application .me-xl-2 {
    margin-right: 8px !important;
  }
  [dir=rtl] .m-application .me-xl-2 {
    margin-left: 8px !important;
  }
  [dir=ltr] .m-application .me-xl-3 {
    margin-right: 12px !important;
  }
  [dir=rtl] .m-application .me-xl-3 {
    margin-left: 12px !important;
  }
  [dir=ltr] .m-application .me-xl-4 {
    margin-right: 16px !important;
  }
  [dir=rtl] .m-application .me-xl-4 {
    margin-left: 16px !important;
  }
  [dir=ltr] .m-application .me-xl-5 {
    margin-right: 20px !important;
  }
  [dir=rtl] .m-application .me-xl-5 {
    margin-left: 20px !important;
  }
  [dir=ltr] .m-application .me-xl-6 {
    margin-right: 24px !important;
  }
  [dir=rtl] .m-application .me-xl-6 {
    margin-left: 24px !important;
  }
  [dir=ltr] .m-application .me-xl-7 {
    margin-right: 28px !important;
  }
  [dir=rtl] .m-application .me-xl-7 {
    margin-left: 28px !important;
  }
  [dir=ltr] .m-application .me-xl-8 {
    margin-right: 32px !important;
  }
  [dir=rtl] .m-application .me-xl-8 {
    margin-left: 32px !important;
  }
  [dir=ltr] .m-application .me-xl-9 {
    margin-right: 36px !important;
  }
  [dir=rtl] .m-application .me-xl-9 {
    margin-left: 36px !important;
  }
  [dir=ltr] .m-application .me-xl-10 {
    margin-right: 40px !important;
  }
  [dir=rtl] .m-application .me-xl-10 {
    margin-left: 40px !important;
  }
  [dir=ltr] .m-application .me-xl-11 {
    margin-right: 44px !important;
  }
  [dir=rtl] .m-application .me-xl-11 {
    margin-left: 44px !important;
  }
  [dir=ltr] .m-application .me-xl-12 {
    margin-right: 48px !important;
  }
  [dir=rtl] .m-application .me-xl-12 {
    margin-left: 48px !important;
  }
  [dir=ltr] .m-application .me-xl-auto {
    margin-right: auto !important;
  }
  [dir=rtl] .m-application .me-xl-auto {
    margin-left: auto !important;
  }
  .m-application .ma-xl-n1 {
    margin: -4px !important;
  }
  .m-application .ma-xl-n2 {
    margin: -8px !important;
  }
  .m-application .ma-xl-n3 {
    margin: -12px !important;
  }
  .m-application .ma-xl-n4 {
    margin: -16px !important;
  }
  .m-application .ma-xl-n5 {
    margin: -20px !important;
  }
  .m-application .ma-xl-n6 {
    margin: -24px !important;
  }
  .m-application .ma-xl-n7 {
    margin: -28px !important;
  }
  .m-application .ma-xl-n8 {
    margin: -32px !important;
  }
  .m-application .ma-xl-n9 {
    margin: -36px !important;
  }
  .m-application .ma-xl-n10 {
    margin: -40px !important;
  }
  .m-application .ma-xl-n11 {
    margin: -44px !important;
  }
  .m-application .ma-xl-n12 {
    margin: -48px !important;
  }
  .m-application .mx-xl-n1 {
    margin-right: -4px !important;
    margin-left: -4px !important;
  }
  .m-application .mx-xl-n2 {
    margin-right: -8px !important;
    margin-left: -8px !important;
  }
  .m-application .mx-xl-n3 {
    margin-right: -12px !important;
    margin-left: -12px !important;
  }
  .m-application .mx-xl-n4 {
    margin-right: -16px !important;
    margin-left: -16px !important;
  }
  .m-application .mx-xl-n5 {
    margin-right: -20px !important;
    margin-left: -20px !important;
  }
  .m-application .mx-xl-n6 {
    margin-right: -24px !important;
    margin-left: -24px !important;
  }
  .m-application .mx-xl-n7 {
    margin-right: -28px !important;
    margin-left: -28px !important;
  }
  .m-application .mx-xl-n8 {
    margin-right: -32px !important;
    margin-left: -32px !important;
  }
  .m-application .mx-xl-n9 {
    margin-right: -36px !important;
    margin-left: -36px !important;
  }
  .m-application .mx-xl-n10 {
    margin-right: -40px !important;
    margin-left: -40px !important;
  }
  .m-application .mx-xl-n11 {
    margin-right: -44px !important;
    margin-left: -44px !important;
  }
  .m-application .mx-xl-n12 {
    margin-right: -48px !important;
    margin-left: -48px !important;
  }
  .m-application .my-xl-n1 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }
  .m-application .my-xl-n2 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }
  .m-application .my-xl-n3 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }
  .m-application .my-xl-n4 {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }
  .m-application .my-xl-n5 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }
  .m-application .my-xl-n6 {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }
  .m-application .my-xl-n7 {
    margin-top: -28px !important;
    margin-bottom: -28px !important;
  }
  .m-application .my-xl-n8 {
    margin-top: -32px !important;
    margin-bottom: -32px !important;
  }
  .m-application .my-xl-n9 {
    margin-top: -36px !important;
    margin-bottom: -36px !important;
  }
  .m-application .my-xl-n10 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }
  .m-application .my-xl-n11 {
    margin-top: -44px !important;
    margin-bottom: -44px !important;
  }
  .m-application .my-xl-n12 {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }
  .m-application .mt-xl-n1 {
    margin-top: -4px !important;
  }
  .m-application .mt-xl-n2 {
    margin-top: -8px !important;
  }
  .m-application .mt-xl-n3 {
    margin-top: -12px !important;
  }
  .m-application .mt-xl-n4 {
    margin-top: -16px !important;
  }
  .m-application .mt-xl-n5 {
    margin-top: -20px !important;
  }
  .m-application .mt-xl-n6 {
    margin-top: -24px !important;
  }
  .m-application .mt-xl-n7 {
    margin-top: -28px !important;
  }
  .m-application .mt-xl-n8 {
    margin-top: -32px !important;
  }
  .m-application .mt-xl-n9 {
    margin-top: -36px !important;
  }
  .m-application .mt-xl-n10 {
    margin-top: -40px !important;
  }
  .m-application .mt-xl-n11 {
    margin-top: -44px !important;
  }
  .m-application .mt-xl-n12 {
    margin-top: -48px !important;
  }
  .m-application .mr-xl-n1 {
    margin-right: -4px !important;
  }
  .m-application .mr-xl-n2 {
    margin-right: -8px !important;
  }
  .m-application .mr-xl-n3 {
    margin-right: -12px !important;
  }
  .m-application .mr-xl-n4 {
    margin-right: -16px !important;
  }
  .m-application .mr-xl-n5 {
    margin-right: -20px !important;
  }
  .m-application .mr-xl-n6 {
    margin-right: -24px !important;
  }
  .m-application .mr-xl-n7 {
    margin-right: -28px !important;
  }
  .m-application .mr-xl-n8 {
    margin-right: -32px !important;
  }
  .m-application .mr-xl-n9 {
    margin-right: -36px !important;
  }
  .m-application .mr-xl-n10 {
    margin-right: -40px !important;
  }
  .m-application .mr-xl-n11 {
    margin-right: -44px !important;
  }
  .m-application .mr-xl-n12 {
    margin-right: -48px !important;
  }
  .m-application .mb-xl-n1 {
    margin-bottom: -4px !important;
  }
  .m-application .mb-xl-n2 {
    margin-bottom: -8px !important;
  }
  .m-application .mb-xl-n3 {
    margin-bottom: -12px !important;
  }
  .m-application .mb-xl-n4 {
    margin-bottom: -16px !important;
  }
  .m-application .mb-xl-n5 {
    margin-bottom: -20px !important;
  }
  .m-application .mb-xl-n6 {
    margin-bottom: -24px !important;
  }
  .m-application .mb-xl-n7 {
    margin-bottom: -28px !important;
  }
  .m-application .mb-xl-n8 {
    margin-bottom: -32px !important;
  }
  .m-application .mb-xl-n9 {
    margin-bottom: -36px !important;
  }
  .m-application .mb-xl-n10 {
    margin-bottom: -40px !important;
  }
  .m-application .mb-xl-n11 {
    margin-bottom: -44px !important;
  }
  .m-application .mb-xl-n12 {
    margin-bottom: -48px !important;
  }
  .m-application .ml-xl-n1 {
    margin-left: -4px !important;
  }
  .m-application .ml-xl-n2 {
    margin-left: -8px !important;
  }
  .m-application .ml-xl-n3 {
    margin-left: -12px !important;
  }
  .m-application .ml-xl-n4 {
    margin-left: -16px !important;
  }
  .m-application .ml-xl-n5 {
    margin-left: -20px !important;
  }
  .m-application .ml-xl-n6 {
    margin-left: -24px !important;
  }
  .m-application .ml-xl-n7 {
    margin-left: -28px !important;
  }
  .m-application .ml-xl-n8 {
    margin-left: -32px !important;
  }
  .m-application .ml-xl-n9 {
    margin-left: -36px !important;
  }
  .m-application .ml-xl-n10 {
    margin-left: -40px !important;
  }
  .m-application .ml-xl-n11 {
    margin-left: -44px !important;
  }
  .m-application .ml-xl-n12 {
    margin-left: -48px !important;
  }
  [dir=ltr] .m-application .ms-xl-n1 {
    margin-left: -4px !important;
  }
  [dir=rtl] .m-application .ms-xl-n1 {
    margin-right: -4px !important;
  }
  [dir=ltr] .m-application .ms-xl-n2 {
    margin-left: -8px !important;
  }
  [dir=rtl] .m-application .ms-xl-n2 {
    margin-right: -8px !important;
  }
  [dir=ltr] .m-application .ms-xl-n3 {
    margin-left: -12px !important;
  }
  [dir=rtl] .m-application .ms-xl-n3 {
    margin-right: -12px !important;
  }
  [dir=ltr] .m-application .ms-xl-n4 {
    margin-left: -16px !important;
  }
  [dir=rtl] .m-application .ms-xl-n4 {
    margin-right: -16px !important;
  }
  [dir=ltr] .m-application .ms-xl-n5 {
    margin-left: -20px !important;
  }
  [dir=rtl] .m-application .ms-xl-n5 {
    margin-right: -20px !important;
  }
  [dir=ltr] .m-application .ms-xl-n6 {
    margin-left: -24px !important;
  }
  [dir=rtl] .m-application .ms-xl-n6 {
    margin-right: -24px !important;
  }
  [dir=ltr] .m-application .ms-xl-n7 {
    margin-left: -28px !important;
  }
  [dir=rtl] .m-application .ms-xl-n7 {
    margin-right: -28px !important;
  }
  [dir=ltr] .m-application .ms-xl-n8 {
    margin-left: -32px !important;
  }
  [dir=rtl] .m-application .ms-xl-n8 {
    margin-right: -32px !important;
  }
  [dir=ltr] .m-application .ms-xl-n9 {
    margin-left: -36px !important;
  }
  [dir=rtl] .m-application .ms-xl-n9 {
    margin-right: -36px !important;
  }
  [dir=ltr] .m-application .ms-xl-n10 {
    margin-left: -40px !important;
  }
  [dir=rtl] .m-application .ms-xl-n10 {
    margin-right: -40px !important;
  }
  [dir=ltr] .m-application .ms-xl-n11 {
    margin-left: -44px !important;
  }
  [dir=rtl] .m-application .ms-xl-n11 {
    margin-right: -44px !important;
  }
  [dir=ltr] .m-application .ms-xl-n12 {
    margin-left: -48px !important;
  }
  [dir=rtl] .m-application .ms-xl-n12 {
    margin-right: -48px !important;
  }
  [dir=ltr] .m-application .me-xl-n1 {
    margin-right: -4px !important;
  }
  [dir=rtl] .m-application .me-xl-n1 {
    margin-left: -4px !important;
  }
  [dir=ltr] .m-application .me-xl-n2 {
    margin-right: -8px !important;
  }
  [dir=rtl] .m-application .me-xl-n2 {
    margin-left: -8px !important;
  }
  [dir=ltr] .m-application .me-xl-n3 {
    margin-right: -12px !important;
  }
  [dir=rtl] .m-application .me-xl-n3 {
    margin-left: -12px !important;
  }
  [dir=ltr] .m-application .me-xl-n4 {
    margin-right: -16px !important;
  }
  [dir=rtl] .m-application .me-xl-n4 {
    margin-left: -16px !important;
  }
  [dir=ltr] .m-application .me-xl-n5 {
    margin-right: -20px !important;
  }
  [dir=rtl] .m-application .me-xl-n5 {
    margin-left: -20px !important;
  }
  [dir=ltr] .m-application .me-xl-n6 {
    margin-right: -24px !important;
  }
  [dir=rtl] .m-application .me-xl-n6 {
    margin-left: -24px !important;
  }
  [dir=ltr] .m-application .me-xl-n7 {
    margin-right: -28px !important;
  }
  [dir=rtl] .m-application .me-xl-n7 {
    margin-left: -28px !important;
  }
  [dir=ltr] .m-application .me-xl-n8 {
    margin-right: -32px !important;
  }
  [dir=rtl] .m-application .me-xl-n8 {
    margin-left: -32px !important;
  }
  [dir=ltr] .m-application .me-xl-n9 {
    margin-right: -36px !important;
  }
  [dir=rtl] .m-application .me-xl-n9 {
    margin-left: -36px !important;
  }
  [dir=ltr] .m-application .me-xl-n10 {
    margin-right: -40px !important;
  }
  [dir=rtl] .m-application .me-xl-n10 {
    margin-left: -40px !important;
  }
  [dir=ltr] .m-application .me-xl-n11 {
    margin-right: -44px !important;
  }
  [dir=rtl] .m-application .me-xl-n11 {
    margin-left: -44px !important;
  }
  [dir=ltr] .m-application .me-xl-n12 {
    margin-right: -48px !important;
  }
  [dir=rtl] .m-application .me-xl-n12 {
    margin-left: -48px !important;
  }
  .m-application .pa-xl-0 {
    padding: 0px !important;
  }
  .m-application .pa-xl-1 {
    padding: 4px !important;
  }
  .m-application .pa-xl-2 {
    padding: 8px !important;
  }
  .m-application .pa-xl-3 {
    padding: 12px !important;
  }
  .m-application .pa-xl-4 {
    padding: 16px !important;
  }
  .m-application .pa-xl-5 {
    padding: 20px !important;
  }
  .m-application .pa-xl-6 {
    padding: 24px !important;
  }
  .m-application .pa-xl-7 {
    padding: 28px !important;
  }
  .m-application .pa-xl-8 {
    padding: 32px !important;
  }
  .m-application .pa-xl-9 {
    padding: 36px !important;
  }
  .m-application .pa-xl-10 {
    padding: 40px !important;
  }
  .m-application .pa-xl-11 {
    padding: 44px !important;
  }
  .m-application .pa-xl-12 {
    padding: 48px !important;
  }
  .m-application .px-xl-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .m-application .px-xl-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  .m-application .px-xl-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .m-application .px-xl-3 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  .m-application .px-xl-4 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .m-application .px-xl-5 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .m-application .px-xl-6 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  .m-application .px-xl-7 {
    padding-right: 28px !important;
    padding-left: 28px !important;
  }
  .m-application .px-xl-8 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
  .m-application .px-xl-9 {
    padding-right: 36px !important;
    padding-left: 36px !important;
  }
  .m-application .px-xl-10 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .m-application .px-xl-11 {
    padding-right: 44px !important;
    padding-left: 44px !important;
  }
  .m-application .px-xl-12 {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
  .m-application .py-xl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-application .py-xl-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-application .py-xl-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-application .py-xl-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-application .py-xl-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-application .py-xl-5 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-application .py-xl-6 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-application .py-xl-7 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-application .py-xl-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-application .py-xl-9 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-application .py-xl-10 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-application .py-xl-11 {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-application .py-xl-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-application .pt-xl-0 {
    padding-top: 0px !important;
  }
  .m-application .pt-xl-1 {
    padding-top: 4px !important;
  }
  .m-application .pt-xl-2 {
    padding-top: 8px !important;
  }
  .m-application .pt-xl-3 {
    padding-top: 12px !important;
  }
  .m-application .pt-xl-4 {
    padding-top: 16px !important;
  }
  .m-application .pt-xl-5 {
    padding-top: 20px !important;
  }
  .m-application .pt-xl-6 {
    padding-top: 24px !important;
  }
  .m-application .pt-xl-7 {
    padding-top: 28px !important;
  }
  .m-application .pt-xl-8 {
    padding-top: 32px !important;
  }
  .m-application .pt-xl-9 {
    padding-top: 36px !important;
  }
  .m-application .pt-xl-10 {
    padding-top: 40px !important;
  }
  .m-application .pt-xl-11 {
    padding-top: 44px !important;
  }
  .m-application .pt-xl-12 {
    padding-top: 48px !important;
  }
  .m-application .pr-xl-0 {
    padding-right: 0px !important;
  }
  .m-application .pr-xl-1 {
    padding-right: 4px !important;
  }
  .m-application .pr-xl-2 {
    padding-right: 8px !important;
  }
  .m-application .pr-xl-3 {
    padding-right: 12px !important;
  }
  .m-application .pr-xl-4 {
    padding-right: 16px !important;
  }
  .m-application .pr-xl-5 {
    padding-right: 20px !important;
  }
  .m-application .pr-xl-6 {
    padding-right: 24px !important;
  }
  .m-application .pr-xl-7 {
    padding-right: 28px !important;
  }
  .m-application .pr-xl-8 {
    padding-right: 32px !important;
  }
  .m-application .pr-xl-9 {
    padding-right: 36px !important;
  }
  .m-application .pr-xl-10 {
    padding-right: 40px !important;
  }
  .m-application .pr-xl-11 {
    padding-right: 44px !important;
  }
  .m-application .pr-xl-12 {
    padding-right: 48px !important;
  }
  .m-application .pb-xl-0 {
    padding-bottom: 0px !important;
  }
  .m-application .pb-xl-1 {
    padding-bottom: 4px !important;
  }
  .m-application .pb-xl-2 {
    padding-bottom: 8px !important;
  }
  .m-application .pb-xl-3 {
    padding-bottom: 12px !important;
  }
  .m-application .pb-xl-4 {
    padding-bottom: 16px !important;
  }
  .m-application .pb-xl-5 {
    padding-bottom: 20px !important;
  }
  .m-application .pb-xl-6 {
    padding-bottom: 24px !important;
  }
  .m-application .pb-xl-7 {
    padding-bottom: 28px !important;
  }
  .m-application .pb-xl-8 {
    padding-bottom: 32px !important;
  }
  .m-application .pb-xl-9 {
    padding-bottom: 36px !important;
  }
  .m-application .pb-xl-10 {
    padding-bottom: 40px !important;
  }
  .m-application .pb-xl-11 {
    padding-bottom: 44px !important;
  }
  .m-application .pb-xl-12 {
    padding-bottom: 48px !important;
  }
  .m-application .pl-xl-0 {
    padding-left: 0px !important;
  }
  .m-application .pl-xl-1 {
    padding-left: 4px !important;
  }
  .m-application .pl-xl-2 {
    padding-left: 8px !important;
  }
  .m-application .pl-xl-3 {
    padding-left: 12px !important;
  }
  .m-application .pl-xl-4 {
    padding-left: 16px !important;
  }
  .m-application .pl-xl-5 {
    padding-left: 20px !important;
  }
  .m-application .pl-xl-6 {
    padding-left: 24px !important;
  }
  .m-application .pl-xl-7 {
    padding-left: 28px !important;
  }
  .m-application .pl-xl-8 {
    padding-left: 32px !important;
  }
  .m-application .pl-xl-9 {
    padding-left: 36px !important;
  }
  .m-application .pl-xl-10 {
    padding-left: 40px !important;
  }
  .m-application .pl-xl-11 {
    padding-left: 44px !important;
  }
  .m-application .pl-xl-12 {
    padding-left: 48px !important;
  }
  [dir=ltr] .m-application .ps-xl-0 {
    padding-left: 0px !important;
  }
  [dir=rtl] .m-application .ps-xl-0 {
    padding-right: 0px !important;
  }
  [dir=ltr] .m-application .ps-xl-1 {
    padding-left: 4px !important;
  }
  [dir=rtl] .m-application .ps-xl-1 {
    padding-right: 4px !important;
  }
  [dir=ltr] .m-application .ps-xl-2 {
    padding-left: 8px !important;
  }
  [dir=rtl] .m-application .ps-xl-2 {
    padding-right: 8px !important;
  }
  [dir=ltr] .m-application .ps-xl-3 {
    padding-left: 12px !important;
  }
  [dir=rtl] .m-application .ps-xl-3 {
    padding-right: 12px !important;
  }
  [dir=ltr] .m-application .ps-xl-4 {
    padding-left: 16px !important;
  }
  [dir=rtl] .m-application .ps-xl-4 {
    padding-right: 16px !important;
  }
  [dir=ltr] .m-application .ps-xl-5 {
    padding-left: 20px !important;
  }
  [dir=rtl] .m-application .ps-xl-5 {
    padding-right: 20px !important;
  }
  [dir=ltr] .m-application .ps-xl-6 {
    padding-left: 24px !important;
  }
  [dir=rtl] .m-application .ps-xl-6 {
    padding-right: 24px !important;
  }
  [dir=ltr] .m-application .ps-xl-7 {
    padding-left: 28px !important;
  }
  [dir=rtl] .m-application .ps-xl-7 {
    padding-right: 28px !important;
  }
  [dir=ltr] .m-application .ps-xl-8 {
    padding-left: 32px !important;
  }
  [dir=rtl] .m-application .ps-xl-8 {
    padding-right: 32px !important;
  }
  [dir=ltr] .m-application .ps-xl-9 {
    padding-left: 36px !important;
  }
  [dir=rtl] .m-application .ps-xl-9 {
    padding-right: 36px !important;
  }
  [dir=ltr] .m-application .ps-xl-10 {
    padding-left: 40px !important;
  }
  [dir=rtl] .m-application .ps-xl-10 {
    padding-right: 40px !important;
  }
  [dir=ltr] .m-application .ps-xl-11 {
    padding-left: 44px !important;
  }
  [dir=rtl] .m-application .ps-xl-11 {
    padding-right: 44px !important;
  }
  [dir=ltr] .m-application .ps-xl-12 {
    padding-left: 48px !important;
  }
  [dir=rtl] .m-application .ps-xl-12 {
    padding-right: 48px !important;
  }
  [dir=ltr] .m-application .pe-xl-0 {
    padding-right: 0px !important;
  }
  [dir=rtl] .m-application .pe-xl-0 {
    padding-left: 0px !important;
  }
  [dir=ltr] .m-application .pe-xl-1 {
    padding-right: 4px !important;
  }
  [dir=rtl] .m-application .pe-xl-1 {
    padding-left: 4px !important;
  }
  [dir=ltr] .m-application .pe-xl-2 {
    padding-right: 8px !important;
  }
  [dir=rtl] .m-application .pe-xl-2 {
    padding-left: 8px !important;
  }
  [dir=ltr] .m-application .pe-xl-3 {
    padding-right: 12px !important;
  }
  [dir=rtl] .m-application .pe-xl-3 {
    padding-left: 12px !important;
  }
  [dir=ltr] .m-application .pe-xl-4 {
    padding-right: 16px !important;
  }
  [dir=rtl] .m-application .pe-xl-4 {
    padding-left: 16px !important;
  }
  [dir=ltr] .m-application .pe-xl-5 {
    padding-right: 20px !important;
  }
  [dir=rtl] .m-application .pe-xl-5 {
    padding-left: 20px !important;
  }
  [dir=ltr] .m-application .pe-xl-6 {
    padding-right: 24px !important;
  }
  [dir=rtl] .m-application .pe-xl-6 {
    padding-left: 24px !important;
  }
  [dir=ltr] .m-application .pe-xl-7 {
    padding-right: 28px !important;
  }
  [dir=rtl] .m-application .pe-xl-7 {
    padding-left: 28px !important;
  }
  [dir=ltr] .m-application .pe-xl-8 {
    padding-right: 32px !important;
  }
  [dir=rtl] .m-application .pe-xl-8 {
    padding-left: 32px !important;
  }
  [dir=ltr] .m-application .pe-xl-9 {
    padding-right: 36px !important;
  }
  [dir=rtl] .m-application .pe-xl-9 {
    padding-left: 36px !important;
  }
  [dir=ltr] .m-application .pe-xl-10 {
    padding-right: 40px !important;
  }
  [dir=rtl] .m-application .pe-xl-10 {
    padding-left: 40px !important;
  }
  [dir=ltr] .m-application .pe-xl-11 {
    padding-right: 44px !important;
  }
  [dir=rtl] .m-application .pe-xl-11 {
    padding-left: 44px !important;
  }
  [dir=ltr] .m-application .pe-xl-12 {
    padding-right: 48px !important;
  }
  [dir=rtl] .m-application .pe-xl-12 {
    padding-left: 48px !important;
  }
  .m-application .text-xl-left {
    text-align: left !important;
  }
  .m-application .text-xl-right {
    text-align: right !important;
  }
  .m-application .text-xl-center {
    text-align: center !important;
  }
  .m-application .text-xl-justify {
    text-align: justify !important;
  }
  .m-application .text-xl-start {
    text-align: start !important;
  }
  .m-application .text-xl-end {
    text-align: end !important;
  }
}
/*
** Components and Pages
*/
.market {
  position: absolute;
  top: 0px;
  z-index: 1200;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px;
}

[dir=ltr] .market {
  left: 0;
}

[dir=rtl] .market {
  right: 0;
}

.market .item {
  color: #FFF;
  padding: 4px 32px 4px 32px;
  font-size: 14px;
}

.market .item:focus {
  outline: none;
}

.market .coin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.market .coin .logo {
  width: 20px;
  height: auto;
}

[dir=ltr] .market .coin .logo {
  margin-right: 8px;
}

[dir=rtl] .market .coin .logo {
  margin-left: 8px;
}

.market .coin .logo img {
  width: 100%;
  height: auto;
}

.market .coin i {
  font-style: normal;
}

.market .down {
  color: #FF7272;
}

.market .up {
  color: #5DD662;
}

.market .stay {
  color: #b2b2b2;
}

#banner .root {
  position: relative;
}

@media (min-width: 960px) {
  #banner .root {
    height: 700px;
  }
}
@media (max-width: 959px) {
  #banner .root {
    padding-bottom: 40px;
  }
}
#banner .canvas-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.theme--light #banner .canvas-wrap {
  background: linear-gradient(-45deg, #000000 30%, var(--v-primarydark-base) 80%);
}

.theme--dark #banner .canvas-wrap {
  background: linear-gradient(-45deg, var(--v-primarydark-base) 30%, var(--v-primarydark-base) 80%);
}

#banner .canvas-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

#banner .overlay-banner {
  position: absolute;
  width: 100%;
  height: 100%;
}

.theme--dark #banner .overlay-banner {
  position: relative;
}

.theme--dark #banner .overlay-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--v-primarydark-base);
  opacity: 0.7;
}

.theme--light #banner .overlay-banner {
  position: relative;
}

.theme--light #banner .overlay-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--v-primary-base);
  opacity: 0.7;
}

#banner .particle-background {
  position: absolute;
  width: 100%;
  height: 600px;
}

@media (max-width: 1279px) {
  #banner .particle-background canvas {
    display: none;
  }
}
#banner .banner-wrap {
  position: relative;
  z-index: 10;
}

#banner .object-art img {
  position: relative;
  z-index: 1;
  top: 190px;
  max-width: 560px;
}

[dir=ltr] #banner .object-art img {
  left: -90px;
}

[dir=rtl] #banner .object-art img {
  right: -90px;
}

@media (max-width: 1279px) {
  #banner .object-art img {
    top: 120px;
  }
}
@media (max-width: 959px) {
  #banner .object-art {
    display: none;
  }
}
#banner .text {
  color: #FFF;
}

@media (min-width: 1280px) {
  #banner .text {
    margin-top: 212px;
  }
}
@media (max-width: 1279px) {
  #banner .text {
    margin-top: 96px;
  }
}
@media (max-width: 959px) {
  #banner .text {
    text-align: center;
    margin-top: 160px;
  }
}
#banner .text h4 {
  margin-bottom: 30px;
}

#banner .btn-area {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 959px) {
  #banner .btn-area {
    text-align: center;
  }
}
[dir=ltr] #banner .btn-area .button {
  margin-right: 24px;
}

[dir=rtl] #banner .btn-area .button {
  margin-left: 24px;
}

@media (max-width: 599px) {
  #banner .btn-area .button {
    margin-bottom: 24px;
    height: 50px;
  }
}
#banner .invert {
  border-color: #FFF;
  color: #FFF;
}

#banner .deco-bottom {
  position: absolute;
  bottom: -50px;
  width: 100%;
}

[dir=ltr] #banner .deco-bottom {
  left: 0px;
}

[dir=rtl] #banner .deco-bottom {
  right: 0px;
}

@media (max-width: 959px) {
  #banner .deco-bottom {
    display: none;
  }
}
#banner .deco-bottom svg {
  width: 1400px;
  height: 380px;
}

@media only screen and (min-width: 1400px) {
  #banner .deco-bottom svg {
    -webkit-transform: scale(2, 1);
    -ms-transform: scale(2, 1);
    transform: scale(2, 1);
  }
}
@media (min-width: 1920px) {
  #banner .deco-bottom svg {
    display: none;
  }
}
.theme--light #banner .deco-bottom.back svg {
  fill: var(--v-primary-base);
}

.theme--dark #banner .deco-bottom.back svg {
  fill: var(--v-primarydark-base);
}

.theme--light #banner .deco-bottom.cover svg {
  fill: #FFF;
}

.theme--dark #banner .deco-bottom.cover svg {
  fill: #303030;
}

.theme--light #banner .deco-bottom.cover svg {
  opacity: 0.84;
}

.theme--dark #banner .deco-bottom.cover svg {
  opacity: 0.6;
}

#banner .deco-inner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

[dir=ltr] #banner .deco-inner {
  left: 0;
}

[dir=rtl] #banner .deco-inner {
  right: 0;
}

#benefit .root {
  position: relative;
  background-color: rgb(17, 43, 100);
}

#benefit .parallax-img {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  left: 0;
  top: 0;
}

@media (max-width: 1279px) {
  #benefit .parallax-img {
    background-image: url("https://via.placeholder.com/1280x677/204473/FFFFFF");
    background-repeat: no-repeat;
    -webkit-filter: blur(8px);
    filter: blur(8px);
  }
}
#benefit .parallax-img .parallax {
  -webkit-filter: blur(6px);
  filter: blur(6px);
  height: 560px;
  /* background: url("https://via.placeholder.com/1280x677/204473/FFFFFF") no-repeat center center;
  background-size: cover; */
  background-color: #07377C;
}

#benefit .wrapper {
  position: relative;
  padding-top: 80px;
}

@media (min-width: 1280px) {
  #benefit .wrapper {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (min-width: 600px) {
  #benefit .wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
}
#benefit .desc {
  color: #FFF;
  padding: 0;
}

#benefit .desc h4 {
  font-weight: var(--font-medium);
}

#benefit .list {
  display: block;
  margin: 24px 0px 40px 0px;
  list-style: none;
  font-size: 18px;
}

[dir=ltr] #benefit .list {
  padding-left: 0;
}

[dir=rtl] #benefit .list {
  padding-right: 0;
}

@media (max-width: 599px) {
  #benefit .list {
    font-size: 16px;
  }
}
#benefit .list li {
  line-height: 38px;
}

[dir=ltr] #benefit .list li {
  padding-left: 32px;
}

[dir=rtl] #benefit .list li {
  padding-right: 32px;
}

[dir=ltr] #benefit .list li {
  background: url("../images/crypto/deco-list.png") no-repeat 0 10px;
}

[dir=rtl] #benefit .list li {
  background: url("../images/crypto/deco-list.png") no-repeat 100% 0;
}

#benefit .img {
  margin: 24px 0px 0px 0px;
  overflow: hidden;
  bottom: -40px;
  position: relative;
}

#benefit .img img {
  max-width: 100%;
  display: block;
}

#benefit .deco {
  position: absolute;
  top: -60px;
}

[dir=ltr] #benefit .deco {
  right: 30px;
}

[dir=rtl] #benefit .deco {
  left: 30px;
}

@media (max-width: 959px) {
  #benefit .deco {
    top: 0;
  }
}
#benefit .parallax-props {
  background: url("../images/crypto/deco-benefit.svg") no-repeat center center;
  height: 540px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.testimonial-card2 {
  position: relative;
}

.testimonial-card2 .caption-name {
  margin-top: 24px;
  display: block;
  font-size: 16px;
}

@media (max-width: 599px) {
  .testimonial-card2 .caption-name {
    font-size: 14px;
  }
}
.testimonial-card2 .paper {
  height: 250px;
  margin: 24px 0px 24px 0px;
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: border 0.4s ease-out;
  transition: border 0.4s ease-out;
  padding: 8px;
}

@media (min-width: 600px) {
  .testimonial-card2 .paper {
    padding: 64px 120px 64px 120px;
  }
}
.testimonial-card2 .paper.card {
  overflow: visible;
  display: block;
}

.slick-current .testimonial-card2 .paper {
  border: 1px solid var(--v-primary-base);
} 

.testimonial-card2 .text {
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 80px;
  font-size: 18px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (max-width: 599px) {
  .testimonial-card2 .text {
    font-size: 12px;
    -webkit-line-clamp: 4;
    line-height: 2;
  }
} 
.testimonial-card2 .avatar {
  width: 80px;
  height: 80px;
  margin: -32px auto 32px;
  border-radius: 50% !important;
}

.theme--dark .testimonial-card2 .avatar {
  -webkit-box-shadow: 0px 4px 5px -2px rgba(50, 50, 50, 0.2), 0px 7px 10px 1px rgba(50, 50, 50, 0.14), 0px 2px 16px 1px rgba(50, 50, 50, 0.12);
  box-shadow: 0px 4px 5px -2px rgba(50, 50, 50, 0.2), 0px 7px 10px 1px rgba(50, 50, 50, 0.14), 0px 2px 16px 1px rgba(50, 50, 50, 0.12);
}

.theme--light .testimonial-card2 .avatar {
  -webkit-box-shadow: 0px 4px 5px -2px rgba(128, 128, 128, 0.2), 0px 7px 10px 1px rgba(128, 128, 128, 0.14), 0px 2px 16px 1px rgba(128, 128, 128, 0.12);
  box-shadow: 0px 4px 5px -2px rgba(128, 128, 128, 0.2), 0px 7px 10px 1px rgba(128, 128, 128, 0.14), 0px 2px 16px 1px rgba(128, 128, 128, 0.12);
}

@media (min-width: 600px) {
  .testimonial-card2 .avatar {
    margin: -96px auto 32px;
  }
}
.counter-wrap {
  position: relative;
  text-align: center;
}

.counter-wrap h3 {
  color: #000000;
  font-weight: var(--font-bold);
  margin-bottom: 16px;
}

@media (max-width: 599px) {
  .counter-wrap h3 {
    font-size: 36px;
  }
}
.counter-wrap p {
  color: #313030;
}

.counter-wrap .button {
  margin-top: 16px;
}

.counter-wrap .call-action {
  margin-top: 80px;
  position: relative;
  text-align: center;
  color: #000000;
}

.error-wrap {
  width: 100%;
  min-height: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: -120px;
}

@media (max-width: 599px) {
  .error-wrap {
    padding-top: 160px;
  }
}
@media (min-width: 600px) {
  [dir=ltr] .error-wrap .text {
    padding-left: 40px;
  }
  [dir=rtl] .error-wrap .text {
    padding-right: 40px;
  }
  [dir=ltr] .error-wrap .text {
    border-left: 1px solid;
  }
  [dir=rtl] .error-wrap .text {
    border-right: 1px solid;
  }
  .theme--light .error-wrap .text {
    border-color: rgba(0, 0, 0, 0.12);
  }
  .theme--dark .error-wrap .text {
    border-color: rgba(255, 255, 255, 0.12);
  }
}
@media (max-width: 599px) {
  .error-wrap .text {
    text-align: center;
    margin: 40px 0px 160px 0px;
  }
}
.error-wrap .text h4 {
  font-weight: var(--font-bold);
  margin-bottom: 32px;
}

.error-wrap .button {
  margin-top: 32px;
}

.error-wrap .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.error-wrap .deco {
  position: relative;
}

.error-wrap .deco svg {
  fill: var(--v-primarylight-base);
  position: relative;
  width: 212px;
  height: 240px;
}

.error-wrap .deco h3 {
  color: var(--v-primarydark-base);
  font-size: 96px;
  text-transform: capitalize;
  font-weight: 700;
  z-index: 1;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50px;
}

[dir=ltr] .error-wrap .deco h3 {
  left: 0;
}

[dir=rtl] .error-wrap .deco h3 {
  right: 0;
}

.error-wrap .deco:before {
  content: "";
  width: 320px;
  height: 230px;
  position: absolute;
  top: 24px;
}

[dir=ltr] .error-wrap .deco:before {
  left: -200px;
}

[dir=rtl] .error-wrap .deco:before {
  right: -200px;
}

#faq .root {
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-top: -160px;
}

.theme--light #faq .root {
  background-image: url("../images/crypto/deco-faq-top-light.svg");

}

.theme--dark #faq .root {
  background-image: url("../images/crypto/deco-faq-top-dark.svg");
}
/* tip color */
.theme--light #faq .root {
  background-color: var(--v-primary-base);
  position: relative;
 margin-top: -250px;
 margin-bottom: 53px;
 height: auto;
 width: auto;
}

.theme--light #faq .root:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100px;
  left: 0;
  background-color: #FFF;
  opacity: 0.84;
}

.theme--dark #faq .root {
  background-color: var(--v-primarydark-base);
}

.theme--dark #faq .root:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #303030;
  opacity: 0.6;
}

@media (min-width: 0) {
  #faq .root {
    padding-bottom: 120px;
  }
}
@media (min-width: 960px) {
  #faq .root {
    padding: 240px 0px 80px 0px;
  }
}
@media (max-width: 959px) {
  #faq .root {
    padding-bottom: 80px;
  }
}
#faq .root .container {
  position: relative;
  z-index: 3;
}

#faq .text {
  position: relative;
  z-index: 2;
}

#faq .illustration {
  position: relative;
  margin: 48px 48px 0px 48px;
}

#faq .illustration > div {
  top: -400px;
}

#faq .illustration img {
  display: block;
  width: 280px;
  margin: 0 auto;
}

#faq .accordion {
  position: relative;
}

#faq .item {
  margin-bottom: 24px;
}

#faq .paper {
  border-radius: 12px !important;
  margin-bottom: 24px;
  overflow: hidden;
}

.theme--dark #faq .paper {
  -webkit-box-shadow: 0px 1px 3px 0px rgb(64, 64, 64), 0px 1px 1px 0px rgb(42, 42, 42), 0px 2px 1px -1px rgb(20, 20, 20);
  box-shadow: 0px 1px 3px 0px rgb(64, 64, 64), 0px 1px 1px 0px rgb(42, 42, 42), 0px 2px 1px -1px rgb(20, 20, 20);
}

.theme--light #faq .paper {
  -webkit-box-shadow: 0 1.5px 12px 2px rgba(0, 0, 0, 0.06);
  box-shadow: 0 1.5px 12px 2px rgba(0, 0, 0, 0.06);
}

#faq .heading {
  font-weight: var(--font-medium);
  padding: 8px 16px 8px 0px;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 599px) {
  #faq .heading {
    font-size: 16px;
  }
}
#faq .content .icon {
  position: absolute;
  top: 20px;
}

[dir=ltr] #faq .content .icon {
  right: 16px;
}

[dir=rtl] #faq .content .icon {
  left: 16px;
}

#faq .active .collapsible-header {
  background: var(--v-primarydark-base);
  color: #000000;
}

#faq .active i.material-icons {
  color: #FFF;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

#faq .detail {
  padding-top: 24px;
  border-radius: 0 0 12px 12px;
}

.theme--light #faq .detail {
  background-color: #fff;
}

.theme--dark #faq .detail {
  background-color: #424242;
}

#faq .detail p {
  font-size: 18px;
}

@media (max-width: 599px) {
  #faq .detail p {
    font-size: 16px;
  }
}
.theme--light #faq .icon {
  color: var(--v-primary-base);
}

.theme--dark #faq .icon {
  color: var(--v-primarylight-base);
}

#faq .parallax {
  position: relative;
  top: -1000px;
  width: 100%;
}

#feature .main-feature {
  position: relative;
  display: block;
}

@media (min-width: 1280px) {
  #feature .main-feature {
    padding-bottom: 64px;
  }
}
#feature .video {
  overflow: hidden;
  position: relative;
  margin: 48px 0px 16px 0px;
}

#feature .video figure {
  margin: 0;
  background: #000;
}
/* 
#feature .video figure img {

  min-height: 100%;
  width: 100%;
} */

#feature .feature-wrap {
  position: relative;
}

#feature .play-btn {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

[dir=ltr] #feature .play-btn {
  left: 50%;
}

[dir=rtl] #feature .play-btn {
  right: 50%;
}

#feature .play-btn i:before {
  font-size: 130px;
  background: linear-gradient(120deg, var(--v-secondarylight-base), var(--v-primarylight-base));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#feature .close-btn {
  position: absolute;
  top: 4px;
}

[dir=ltr] #feature .close-btn {
  right: 4px;
}

[dir=rtl] #feature .close-btn {
  left: 4px;
}

#feature .deco {
  position: absolute;
  top: 80px;
  width: 400px;
}

[dir=ltr] #feature .deco {
  left: 80px;
}

[dir=rtl] #feature .deco {
  right: 80px;
}

#feature .deco svg {
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}

#feature .counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1280px) {
  #feature .counter {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (min-width: 600px) {
  [dir=ltr] #feature .counter {
    /* padding-right: 64px; */
    padding-left: 100px;
  }
  [dir=rtl] #feature .counter {
    /* padding-left: 64px; */
  }
}
@media (max-width: 599px) {
  #feature .counter > * {
    width: 50%;
    padding: 4px;
  }
}
@media (min-width: 600px) {
  #feature .lower {
    margin-top: 160px;
  }
}
@media (min-width: 600px) {
  #feature .higher {
    margin-top: 80px;
  }
}
#feature .paper {
  position: relative;
  height: 228px;
  padding: 16px;
  margin: 8px 0px 8px 0px;
}

@media (min-width: 600px) {
  #feature .paper {
    padding: 8px 24px 8px 24px;
    margin: 32px 32px 0px 0px;
    width: 228px;
  }
}
#feature .paper span {
  color: var(--v-primary-base);
  font-size: 48px;
}

#feature .paper h6 {
  font-weight: var(--font-bold);
}

#feature .paper p {
  font-size: 14px;
}

@media (max-width: 599px) {
  #feature .paper p {
    font-size: 12px;
  }
}
#feature .more-feature {
  position: relative;
}

#feature .more-feature figure {
  margin: 0;
}

#feature .chart-deco {
  width: 100%;
  height: 420px;
  bottom: 0px;
  position: absolute;
  background-size: cover;
}

#feature .item {
  position: relative;
  padding-top: 80px;
}

#feature .text {
  position: relative;
}

@media (max-width: 959px) {
  #feature .text {
    text-align: center;
  }
}
#feature .text > span {
  position: absolute;
  color: rgba(0, 0, 0, 0.54);
  top: -10px;
  font-size: 38px;
  z-index: 2;
}

[dir=ltr] #feature .text > span {
  left: 7px;
}

[dir=rtl] #feature .text > span {
  right: 7px;
}

@media (max-width: 959px) {
  [dir=ltr] #feature .text > span {
    left: calc(50% - 7px);
  }
  [dir=rtl] #feature .text > span {
    right: calc(50% - 7px);
  }
}
#feature .illustration img {
  width: 80%;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

[dir=ltr] #feature .text-center span {
  left: calc(50% - 7px);
}

[dir=rtl] #feature .text-center span {
  right: calc(50% - 7px);
}

#feature .progress-wrap {
  padding: 0;
}

@media (min-width: 600px) {
  #feature .progress-wrap {
    padding: 0px 48px 0px 48px;
  }
}
#feature .progress-wrap li {
  margin-bottom: 24px;
  list-style: none;
}

@media (min-width: 600px) {
  #feature .progress-wrap li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#feature .progress-wrap li h5 {
  font-weight: var(--font-bold);
}

@media (max-width: 599px) {
  #feature .progress-wrap li h5 {
    font-size: 16px !important;
  }
}
#feature .coin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  padding-top: 8px;
}

#feature .coin .logo {
  height: 48px;
  min-width: 48px;
  width: 48px;
}

[dir=ltr] #feature .coin .logo {
  margin-right: 16px;
}

[dir=rtl] #feature .coin .logo {
  margin-left: 16px;
}

#feature .coin .logo.avatar-img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: normal;
  position: relative;
  text-align: center;
  vertical-align: middle;
}

#feature .coin .logo.avatar-img img {
  border-radius: inherit;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: inherit;
  width: inherit;
}

@media (max-width: 599px) {
  #feature .coin .logo {
    width: 20px !important;
    height: 20px !important;
    min-width: 0 !important;
  }
  [dir=ltr] #feature .coin .logo {
    margin-right: 8px;
  }
  [dir=rtl] #feature .coin .logo {
    margin-left: 8px;
  }
}
#feature .progress-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (min-width: 600px) {
  #feature .progress-item {
    margin-top: 8px;
  }
  [dir=ltr] #feature .progress-item {
    padding-left: 48px;
  }
  [dir=rtl] #feature .progress-item {
    padding-right: 48px;
  }
}
#feature .progress-item .progress {
  background: none;
  height: 8px;
  border-radius: 8px;
  position: relative;
}

#feature .progress-item .progress:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  background: currentColor;
  opacity: 0.3;
  height: 8px;
  border-radius: 8px;
}

#feature .unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 599px) {
  #feature .unit h6 {
    font-size: 14px !important;
    line-height: 26px;
  }
}
#feature .unit h6 span {
  font-size: 16px 14px !important;
}

@media (max-width: 599px) {
  #feature .unit h6 span {
    font-size: 14px;
  }
}
#feature .track {
  border-radius: 10px;
  height: 8px !important;
}

.theme--light #feature .track {
  background: rgba(0, 0, 0, 0.12);
}

.theme--dark #feature .track {
  background: rgba(255, 255, 255, 0.12);
}

#feature .headline .title-main {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: 0.0125em;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#feature .zero .progress .progress-linear {
  width: 0 !important;
}

.video-popup {
  max-width: none;
}

@media (min-width: 600px) {
  .video-popup {
    width: 690px;
  }
}
.video-popup iframe {
  width: 100%;
}

#footer .link {
  margin: 8px 12px 8px 12px;
}

#footer .footer {
  position: relative;
  padding: 80px 0px 80px 0px;
}

@media (max-width: 959px) {
  #footer .footer {
    padding-bottom: 56px;
  }
}
#footer .footer p {
  color: #FFF;
}

@media (max-width: 599px) {
  #footer .footer p {
    text-align: center;
  }
}
#footer .footer-desc {
  display: block;
  font-size: 14px;
  margin-bottom: 16px;
}

@media (max-width: 959px) {
  #footer .footer-desc {
    text-align: center;
  }
}
#footer .footer.invert {
  padding-top: 0;
}

.theme--light #footer .footer.invert p {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark #footer .footer.invert p {
  color: #fff;
}

.theme--light #footer .footer.invert li a {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark #footer .footer.invert li a {
  color: #fff;
}

#footer .footer.invert .logo h6 {
  color: var(--v-primarydark-base);
}

#footer .footer.invert .title-nav {
  color: var(--v-secondary-base);
}

#footer .footer.invert .blog-item .category {
  color: var(--v-secondary-base);
}

.theme--light #footer .footer.invert .blog-item .content {
  color: rgba(0, 0, 0, 0.54);
}

.theme--dark #footer .footer.invert .blog-item .content {
  color: rgba(255, 255, 255, 0.7);
}

.theme--light #footer .footer.invert .select-lang input {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark #footer .footer.invert .select-lang input {
  color: #fff;
}

.theme--light #footer .footer.invert .select-lang svg {
  fill: rgba(0, 0, 0, 0.87);
}

.theme--dark #footer .footer.invert .select-lang svg {
  fill: #FFF;
}

#footer .footer-counter {
  position: relative;
 
}

.theme--light #footer .footer-counter {
  background: linear-gradient(-130deg, #3477d6 -20%, var(--v-primary-base) 70%);
}

.theme--dark #footer .footer-counter {
  background: linear-gradient(-130deg, var(--v-secondarydark-base) -20%, var(--v-primarydark-base) 70%);
}

@media (min-width: 960px) {
  #footer .footer-counter {
   
  }
}
@media (min-width: 1920px) {
  #footer .footer-counter {
    
  }
}
#footer .quick-links ul {
  margin: 0;
  padding: 0;
}

#footer .quick-links ul li {
  list-style: none;
  margin-bottom: 8px;
  display: inline-block;
  width: 30%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #FFF;
}

[dir=ltr] #footer .quick-links ul li {
  margin-right: 2%;
}

[dir=rtl] #footer .quick-links ul li {
  margin-left: 2%;
}

@media (max-width: 599px) {
  #footer .quick-links ul li {
    width: 47%;
  }
}
#footer .quick-links ul li a {
  text-transform: capitalize;
  text-decoration: none !important;
  font-size: 14px;
  color: #FFF;
}

#footer .quick-links ul li a:hover {
  color: var(--v-primarylight-base);
}

#footer .blog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 24px 0px 24px 0px;
  padding: 0 !important;
  height: auto !important;
  white-space: normal;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

[dir=ltr] #footer .blog-item {
  text-align: left;
}

[dir=rtl] #footer .blog-item {
  text-align: right;
}

#footer .blog-item .category {
  margin-bottom: 8px;
  display: block;
  line-height: normal;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  color: var(--v-secondarylight-base);
}

#footer .blog-item .list-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
  color: var(--v-primarylight-base);
}

#footer .blog-item .figure {
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
  width: 80px;
  height: 56px;
}

[dir=ltr] #footer .blog-item .figure {
  margin-right: 16px;
}

[dir=rtl] #footer .blog-item .figure {
  margin-left: 16px;
}

/* #footer .blog-item .figure img {
  display: block;
  min-height: 100%;
  width: 100%;
} */

#footer .blog-item .content {
  font-size: 14px;
  text-transform: none;
  margin-bottom: 0;
  display: block;
  line-height: 22px;
  font-weight: var(--font-regular);
  color: #FFF;
}

[dir=ltr] #footer .blog-item .content {
  text-align: left;
}

[dir=rtl] #footer .blog-item .content {
  text-align: right;
}

#footer .title-nav {
  color: var(--v-secondarylight-base);
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: var(--font-bold);
}

#footer .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

@media (max-width: 959px) {
  #footer .logo {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
#footer .logo img {
  width: 64px;
}

[dir=ltr] #footer .logo img {
  margin-right: 8px;
}

[dir=rtl] #footer .logo img {
  margin-left: 8px;
}

#footer .logo h6 {
  color: #FFF;
  font-weight: var(--font-bold);
  font-size: 28px;
  text-transform: uppercase;
}

#footer .socmed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-bottom: 32px;
}

#footer .socmed a.btn-icon {
  border-radius: 50%;
  margin: 8px;
  color: var(--v-primarydark-base);
  background: var(--v-primary-base);
}

#footer .socmed a.btn-icon .icon {
  color: #FFF;
}

#footer .socmed .icon {
  font-size: 24px;
}

#footer .icon + div {
  background: none !important;
  padding: 12px 12px 12px 32px;
  width: calc(100% - 32px);
}

#footer .select-lang {
  display: inherit;
  margin: 16px 0;
}

#footer .select-lang input {
  -webkit-box-shadow: 0 1.5px 12px 2px rgba(0, 0, 0, 0.06);
  box-shadow: 0 1.5px 12px 2px rgba(0, 0, 0, 0.06);
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.4);
  height: 2.8rem;
}

#footer .select-lang .select-wrapper .caret {
  fill: #FFF;
}

@media (max-width: 1279px) {
  #footer .site-map-item {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
}
#footer .deco-top {
  position: absolute;
  top: -20px;
  width: 1280px;
  height: 400px;
}

[dir=ltr] #footer .deco-top {
  left: 0;
}

[dir=rtl] #footer .deco-top {
  right: 0;
}

@media (min-width: 1280px) {
  #footer .deco-top {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@media only screen and (min-width: 1400px) {
  #footer .deco-top {
    -webkit-transform: scale(2, 1);
    -ms-transform: scale(2, 1);
    transform: scale(2, 1);
  }
}
@media (min-width: 1920px) {
  #footer .deco-top {
    display: none;
  }
}
@media (max-width: 1279px) {
  #footer .deco-top {
    -webkit-transform: scale(1.4, 1);
    -ms-transform: scale(1.4, 1);
    transform: scale(1.4, 1);
  }
  [dir=ltr] #footer .deco-top {
    left: -300px;
  }
  [dir=rtl] #footer .deco-top {
    right: -300px;
  }
}
@media (max-width: 959px) {
  #footer .deco-top {
    display: none;
  }
}
#footer .deco-top svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 599px) {
  #footer .deco-top svg {
    display: none;
  }
}
.theme--light #footer .deco-top.back svg {
  fill: #FFF;
}

.theme--dark #footer .deco-top.back svg {
  fill: var(--v-primarydark-base);
  top: 0;
}

.theme--light #footer .deco-top.cover svg {
  fill: #FFF;

}

.theme--dark #footer .deco-top.cover svg {
  fill: #303030;
}

.theme--light #footer .deco-top.cover svg {
  opacity: 0.84;
}

.theme--dark #footer .deco-top.cover svg {
  opacity: 0.6;
}

.form-page .page-wrap {
  text-align: center;
  background: repeat-x center 140%;
  min-height: 100%;
  position: relative;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 88px 40px 88px 40px;
}

.theme--light .form-page .page-wrap {
  background-color: #fafafa;
}

.theme--dark .form-page .page-wrap {
  background-color: #303030;
}

@media (max-width: 959px) {
  .form-page .page-wrap {
    padding: 32px 0px 32px 0px;
  }
}
.form-page .page-wrap .title-contact {
  font-weight: var(--font-bold);
}

.theme--light .form-page .page-wrap .title-contact {
  color: var(--v-primarydark-base);
}

.theme--dark .form-page .page-wrap .title-contact {
  color: var(--v-primarylight-base);
}

@media (max-width: 599px) {
  .form-page .page-wrap .title-contact {
    font-size: 32px;
  }
}
.form-page .page-wrap a {
  text-transform: none;
  font-size: 16px;
  text-decoration: none;
  font-weight: var(--font-regular);
}

.theme--light .form-page .page-wrap a {
  color: var(--v-primarydark-base);
}

.theme--dark .form-page .page-wrap a {
  color: var(--v-primarylight-base);
}

[dir=ltr] .form-page .inner-wrap {
  text-align: left;
}

[dir=rtl] .form-page .inner-wrap {
  text-align: right;
}

.form-page .full-form-wrap {
  padding: 72px 0;
}

.theme--light .form-page .full-form-wrap {
  background-color: #fff;
}

.theme--dark .form-page .full-form-wrap {
  background-color: #424242;
}

.form-page .card.form-box {
  border-radius: 10px !important;
  overflow: hidden;
  -webkit-box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.05);
}

.theme--light .form-page .card.form-box {
  background: var(--v-primarylight-base);
}

.theme--dark .form-page .card.form-box {
  background-color: var(--v-primarydark-base);
  position: relative;
}

.theme--dark .form-page .card.form-box:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.4;
}

.form-page .desc {
  font-size: 20px;
  text-align: center;
  padding: 0px 80px 0px 80px;
}

@media (max-width: 959px) {
  .form-page .desc {
    padding: 0px 40px 0px 40px;
  }
}
@media (max-width: 599px) {
  .form-page .desc {
    padding: 0px 16px 0px 16px;
    font-size: 16px;
  }
}
.form-page .form {
  position: relative;
  margin-top: 40px;
  padding: 0px 120px 80px 120px;
}

[dir=ltr] .form-page .form {
  text-align: left;
}

[dir=rtl] .form-page .form {
  text-align: right;
}

@media (max-width: 959px) {
  .form-page .form {
    padding: 0px 48px 80px 48px;
  }
}
@media (max-width: 599px) {
  .form-page .form {
    padding: 0px 16px 80px 16px;
  }
}
.form-page .form-helper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 599px) {
  .form-page .form-helper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.form-page .btn-area button {
  margin-top: 16px;
}

@media (max-width: 599px) {
  .form-page .btn-area span {
    font-size: 14px;
  }
}
.form-page .btn-area span a.link {
  display: block;
  text-decoration: none !important;
}

.theme--light .form-page .btn-area span a.link {
  color: var(--v-primarydark-base);
}

.theme--dark .form-page .btn-area span a.link {
  color: var(--v-primarylight-base);
}

.form-page .btn-area.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 959px) {
  .form-page .btn-area.flex {
    margin-top: 0;
    display: block;
  }
}
[dir=ltr] .form-page .right-icon {
  margin-left: 8px;
}

[dir=rtl] .form-page .right-icon {
  margin-right: 8px;
}

.form-page .check svg {
  fill: var(--v-secondary-base);
}

.form-page .decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  overflow: hidden;
  clip: rect(0, auto, auto, 0);
}

[dir=ltr] .form-page .decoration {
  left: 0;
}

[dir=rtl] .form-page .decoration {
  right: 0;
}

.form-page .decoration svg {
  fill: var(--v-secondary-base);
  opacity: 0.2;
  position: fixed;
  top: 0;
}

.form-page .left-deco {
  left: -400px;
  right: auto;
  width: 1200px;
  height: 1500px;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}

@media (min-width: 960px) {
  .form-page .left-deco {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.form-page .right-deco {
  left: auto;
  right: 0;
  height: 1500px;
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
}

@media (min-width: 960px) {
  .form-page .right-deco {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.form-page .auth-frame {
  display: block;
  position: relative;
}

.form-page .auth-frame .row > div {
  padding: 0;
}

.form-page .greeting {
  padding: 120px 48px 120px 48px;
  height: 100%;
  color: #FFF;
}

.form-page .greeting h6 {
  font-weight: var(--font-medium);
}

.form-page .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.form-page .logo.logo-header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.form-page .logo img {
  width: 64px;
}

.form-page .logo p, .form-page .logo span {
  display: block;
  text-transform: uppercase;
  font-size: 24px;
  padding-bottom: 4px;
  margin-bottom: 0;
  color: #FFF;
  font-weight: var(--font-bold);
  margin-top: 8px;
}

@media (min-width: 960px) {
  [dir=ltr] .form-page .logo p, [dir=ltr] .form-page .logo span {
    margin-left: 8px;
  }
  [dir=rtl] .form-page .logo p, [dir=rtl] .form-page .logo span {
    margin-right: 8px;
  }
}
.form-page .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 40px;
}

.form-page .head a {
  margin-top: 16px;
}

@media (max-width: 959px) {
  .form-page .head {
    margin-top: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .form-page .head a {
    display: none;
  }
}
.form-page .form-wrap {
  position: relative;
  padding: 16px;
  padding-bottom: 80px;
  min-height: 760px;
  overflow: hidden;
}

.theme--light .form-page .form-wrap {
  background-color: #fff;
}

.theme--dark .form-page .form-wrap {
  background-color: #424242;
}

.form-page .form-wrap .frm-deco {
  -webkit-transform: translateX(-72%);
  -ms-transform: translateX(-72%);
  transform: translateX(-72%);
  bottom: -105px;
}

[dir=ltr] .form-page .form-wrap .frm-deco {
  left: 58.333333%;
}

[dir=rtl] .form-page .form-wrap .frm-deco {
  right: 58.333333%;
}

@media (min-width: 600px) {
  .form-page .form-wrap {
    padding: 40px;
  }
}
@media (min-width: 1280px) {
  .form-page .form-wrap {
    padding: 64px;
  }
}
.form-page .socmed-side-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media (max-width: 1279px) {
  .form-page .socmed-side-login {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 599px) {
  .form-page .socmed-side-login {
    display: block;
  }
}
.form-page .socmed-side-login > button {
  color: #FFF;
  width: 160px;
  padding: 8px;
  line-height: 18px;
}

@media (max-width: 1279px) {
  .form-page .socmed-side-login > button {
    margin: 0 4px;
    width: 140px;
  }
}
@media (max-width: 599px) {
  .form-page .socmed-side-login > button {
    margin: 0 0 16px;
    width: 100%;
  }
}
.form-page .socmed-side-login i {
  font-size: 16px;
  color: #FFF;
}

[dir=ltr] .form-page .socmed-side-login i {
  margin-right: 8px;
}

[dir=rtl] .form-page .socmed-side-login i {
  margin-left: 8px;
}

.form-page .blue-btn {
  background: #28aae1 !important;
}

.form-page .blue-btn:hover {
  background: #146a8f !important;
}

.form-page .navi-btn {
  background: #3b579d !important;
}

.form-page .navi-btn:hover {
  background: #1f2e53 !important;
}

.form-page .red-btn {
  background: #dd493c !important;
}

.form-page .red-btn:hover {
  background: #98251b !important;
}

.form-page .separator {
  margin: 40px auto;
  max-width: 300px;
  min-width: 200px;
  text-align: center;
  position: relative;
}

@media (max-width: 599px) {
  .form-page .separator p {
    font-size: 12px;
  }
}
.form-page .separator:before, .form-page .separator:after {
  content: "";
  border-top: 1px solid;
  top: 50%;
  position: absolute;
  width: 20%;
}

.theme--light .form-page .separator:before, .theme--light .form-page .separator:after {
  border-top-color: rgba(0, 0, 0, 0.38);
}

.theme--dark .form-page .separator:before, .theme--dark .form-page .separator:after {
  border-top-color: rgba(255, 255, 255, 0.5);
}

.form-page .separator:before {
  left: 0;
}

.form-page .separator:after {
  right: 0;
}

.form-page .form-control-label {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.form-page .form-control-label label {
  margin-top: 6px;
}

.form-page .form-control-label a {
  position: relative;
  top: -3px;
  left: 3px;
}

.form-page .form-control-label > div {
  display: inline-block;
  margin-top: 0;
}

.form-page .backtohome {
  width: 80px;
  height: 80px;
  line-height: 80px;
  position: absolute;
  margin-top: 20px;
  z-index: 4;
  border-radius: 50%;
}

[dir=ltr] .form-page .backtohome {
  margin-left: 20px;
}

[dir=rtl] .form-page .backtohome {
  margin-right: 20px;
}

@media (max-width: 959px) {
  .form-page .backtohome {
    top: 40px;
    margin: 0;
  }
  [dir=ltr] .form-page .backtohome {
    left: calc(50% - 40px);
  }
  [dir=rtl] .form-page .backtohome {
    right: calc(50% - 40px);
  }
}
@media (max-width: 959px) {
  .form-page .backtohome {
    display: none;
  }
}
.form-page .backtohome.invert i {
  color: #FFF;
}

.form-page .backtohome i {
  font-size: 32px;
  line-height: 80px !important;
}

.form-page .backtohome > span i:first-child {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.form-page .backtohome > span i:last-child {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

[dir=ltr] .form-page .backtohome > span i:last-child {
  right: 0;
}

[dir=rtl] .form-page .backtohome > span i:last-child {
  left: 0;
}

.form-page .backtohome:hover {
  background: rgba(0, 0, 0, 0.05);
}

.form-page .backtohome:hover > span i:first-child {
  opacity: 0;
}

.form-page .backtohome:hover > span i:last-child {
  opacity: 1;
}

[dir=ltr] .form-page .backtohome:hover > span i:last-child {
  right: 30px;
}

[dir=rtl] .form-page .backtohome:hover > span i:last-child {
  left: 30px;
}

.form-page .deco {
  width: 100%;
  height: 150%;
  position: absolute;
  overflow: hidden;
  top: -500px;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

[dir=ltr] .form-page .deco {
  left: -90px;
}

[dir=rtl] .form-page .deco {
  right: -90px;
}

.theme--light .form-page .deco .light {
  display: block;
}

.theme--dark .form-page .deco .light {
  display: none;
}

.theme--light .form-page .deco .dark {
  display: none;
}

.theme--dark .form-page .deco .dark {
  display: block;
}

[dir=ltr] .form-page .deco {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

[dir=rtl] .form-page .deco {
  -webkit-transform: scale(-1.1, 1.1);
  -ms-transform: scale(-1.1, 1.1);
  transform: scale(-1.1, 1.1);
}

@media (max-width: 959px) {
  [dir=ltr] .form-page .deco {
    left: -30px;
  }
  [dir=rtl] .form-page .deco {
    right: -30px;
  }
}
@media (max-width: 599px) {
  [dir=ltr] .form-page .deco {
    left: 0;
  }
  [dir=rtl] .form-page .deco {
    right: 0;
  }
  .form-page .deco svg {
    position: relative;
  }
  [dir=ltr] .form-page .deco svg {
    left: -150%;
  }
  [dir=rtl] .form-page .deco svg {
    right: -150%;
  }
}
.form-page .deco.lower {
  top: -150px;
}

.form-page .parallax {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
}

[dir=ltr] .form-page .parallax {
  left: 0;
}

[dir=rtl] .form-page .parallax {
  right: 0;
}

.form-page .parallax-left > div {
  top: -500px;
}

.form-page .parallax-left > div svg {
  top: 100px;
}

.form-page .parallax-right > div {
  top: -400px;
}

.form-page .deco-inner {
  width: 100%;
  height: 150%;
  position: absolute;
  overflow: hidden;
  top: -70px;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

[dir=ltr] .form-page .deco-inner {
  left: -222px;
}

[dir=rtl] .form-page .deco-inner {
  right: -222px;
}

@media only screen and (max-width: 1280px) {
  [dir=ltr] .form-page .deco-inner {
    left: -33px;
  }
  [dir=rtl] .form-page .deco-inner {
    right: -33px;
  }
}
@media (max-width: 1279px) {
  .form-page .deco-inner {
    top: -60px;
  }
}
@media (max-width: 959px) {
  .form-page .deco-inner {
    display: none;
  }
}
[dir=rtl] .form-page .deco-inner .deco {
  right: 60px;
}

@media only screen and (min-width: 1281px) {
  [dir=ltr] .form-page .deco-inner .deco {
    left: 50px;
  }
  [dir=rtl] .form-page .deco-inner .deco {
    right: 50px;
  }
}
.form-page .deco-sm {
  text-align: center;
  margin-top: 112px;
}

.toast {
  border-radius: 4px;
  width: auto;
}

[dir=ltr] .toast {
  padding-right: 8px;
}

[dir=rtl] .toast {
  padding-left: 8px;
}

[dir=ltr] .toast .toast-action {
  margin-right: 0;
}

[dir=rtl] .toast .toast-action {
  margin-left: 0;
}

.toast i.material-icons {
  color: #FFF;
}

.invisible-deco {
  position: absolute;
  top: 0;
  left: 0;
}

@-webkit-keyframes slideRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.popover {
  width: 200px;
}

.theme--light .popover {
  background-color: #fff;
}

.theme--dark .popover {
  background-color: #424242;
}

.switch-toggle {
  margin-top: 0;
}

.header {
  height: auto !important;
  margin: 4px 0;
  width: 100%;
  z-index: 11;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  position: fixed !important;
  height: auto !important;
}

.theme--light .header {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark .header {
  color: #fff;
}

.header.invert {
  padding-top: 0;
}

@media (min-width: 1280px) {
  .header {
    padding-top: 30px;
    padding-bottom: 20px;
 
  }
}
@media (max-width: 1279px) {
  #main-wrap .header .container {
    padding-left: 0;
  }
}
@media (max-width: 599px) {
  #main-wrap .header .container {
    padding-right: 0;
  }
}
.header nav ul {
  padding: 0;
}

@media (max-width: 599px) {
  .header {
    z-index: 91;
  }
}
.header .nav-auth {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.header .nav-auth .button.v-btn {
  padding: 0 8px;
  margin: 0 24px;
}

@media (min-width: 1280px) {
  .header .nav-auth {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.header.fixed {
  
  margin: 0;
}

.theme--light .header.fixed {
  background: var(--v-primarydark-base);
}

.theme--dark .header.fixed {
  background-color: var(--v-primarydark-base);
  position: relative;
}

.theme--dark .header.fixed:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.3;
}

.header.fixed .logo a {
  color: transparent;
  font-size: 0;
}

.header.fixed .logo img {
  height: 50px;
  width: 100%;
  margin-bottom: 0;
}

.header.fixed .header-content {
  margin: 0;
}

.header.fixed nav {
  /* padding: 4px 6px; */
}

.header.fixed .text-btn {
  color: #FFF;
}

.header.fixed ul li a.btn,
.header.fixed .setting .icon, .header.fixed .text-btn {
  color: #FFF !important;
}

.header.fixed .mobile-menu .bar {
  background-color: #FFF !important;
}

.header.fixed .mobile-menu .bar:after, .header.fixed .mobile-menu .bar:before {
  background-color: #FFF !important;
}

.header.fixed .divider {
  border-left-color: rgba(255, 255, 255, 0.5);
}

.header.open-drawer {
  z-index: 1100;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.theme--light .header.open-drawer .logo a {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark .header.open-drawer .logo a {
  color: #fff;
}

.header a.btn.text-btn {
  padding-left: 8px;
  padding-right: 8px;
  margin-right: 16px;
}

.header .divider {
  background: none;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  height: 28px;
  display: block;
}

.header-content {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 4px 0px 4px 0px; */
  margin: 0;
}

.header-content nav {
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1279px) {
  .header-content nav {
    padding: 16px 0px 16px 0px;
  }
}
.header-content .collection-header {
  text-transform: capitalize;
  font-size: 0.875rem;
}

.theme--light .header-content .collection-header {
  color: rgba(0, 0, 0, 0.54);
}

.theme--dark .header-content .collection-header {
  color: rgba(255, 255, 255, 0.7);
}

.header-content .collection, .header-content .collection-item, .header-content .collection-header {
  border: none !important;
}

.header-content .logo {
  margin-right: 8px;
}

.header-content .logo a {
  margin-top: 4px;
  font-size: 16px;
  font-weight: var(--font-medium);
  position: relative;
  margin: 0px 8px 0px 8px;
  text-decoration: none;
}

.header-content .logo img {
  max-width: 100%;
  height: 50px;
  
  margin: 0 auto;
  display: block;
}

@media (max-width: 599px) {
  .header-content .logo img {
    height: auto;
    width: 155px;
  }
}
.nav-logo .logo a {
  display: block;
  color: #FFF;
}

.theme--light .nav-logo.invert .logo a {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark .nav-logo.invert .logo a {
  color: #fff;
}

@media (max-width: 959px) {
  .nav-logo.mobile-menu bar {
    background: #FFF;
  }
  .nav-logo.mobile-menu bar:after, .nav-logo.mobile-menu bar:before {
    background: #FFF;
  }
}
nav.nav-menu a.btn {
  color: #FFF;
  margin: 0px 8px 0px 8px;
  position: relative;
  font-size: 16px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

nav.nav-menu a.btn:hover {
  color: #FFF;
}

.theme--light nav.nav-menu.invert ul li a.btn {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark nav.nav-menu.invert ul li a.btn {
  color: #fff;
}

.theme--light nav.nav-menu.invert .icon {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark nav.nav-menu.invert .icon {
  color: #fff;
}

.theme--light nav.nav-menu.invert .text-btn {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark nav.nav-menu.invert .text-btn {
  color: #fff;
}

.theme--light nav.nav-menu.invert .mobile-menu .bar {
  background-color: rgba(0, 0, 0, 0.87);
}

.theme--dark nav.nav-menu.invert .mobile-menu .bar {
  background-color: rgba(255, 255, 255, 0.7);
}

.theme--light nav.nav-menu.invert .mobile-menu .bar:after, .theme--light nav.nav-menu.invert .mobile-menu .bar:before {
  background-color: rgba(0, 0, 0, 0.87);
}

.theme--dark nav.nav-menu.invert .mobile-menu .bar:after, .theme--dark nav.nav-menu.invert .mobile-menu .bar:before {
  background-color: rgba(255, 255, 255, 0.7);
}

.theme--light nav.nav-menu.invert .invert {
  border-color: rgba(0, 0, 0, 0.12);
}

.theme--dark nav.nav-menu.invert .invert {
  border-color: rgba(255, 255, 255, 0.12);
}

nav.nav-menu .scrollactive-nav {
  list-style: none;
  display: block;
}

nav.nav-menu .scrollactive-nav li {
  list-style: none;
  position: relative;
  display: inline-block;
}

@media (min-width: 1280px) {
  nav.nav-menu .scrollactive-nav li {
    margin: 0px 8px 0px 8px;
  }
}
nav.nav-menu .scrollactive-nav li.current {
  position: relative;
}

nav.nav-menu .scrollactive-nav li.current .btn {
  color: var(--v-primary-base) !important;
}

.theme--light nav.nav-menu .scrollactive-nav li.current .btn {
  background: rgba(255, 255, 255, 0.84);
}

.theme--dark nav.nav-menu .scrollactive-nav li.current .btn {
  background: rgba(0, 0, 0, 0.3);
}

nav.nav-menu .scrollactive-nav .btn {
  text-transform: capitalize;
  font-weight: var(--font-bold);
  border: 1px solid transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
  padding: 6px 12px;
  line-height: 24px;
  min-width: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0.16, 0.21, 0.93);
  transition: all 0.2s cubic-bezier(0.42, 0.16, 0.21, 0.93);
}

nav.nav-menu .scrollactive-nav .btn:hover {
  border: 1px solid #FFF;
}

.lang-menu .flag {
  margin: 0;
}

.lang-menu .flag i {
  margin-left: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: 1px;
  background: url("../images/flag-logo.png") no-repeat transparent;
  background-size: 16px auto;
}

[dir=ltr] .lang-menu .flag i {
  margin-right: 5px;
}

[dir=rtl] .lang-menu .flag i {
  margin-left: 5px;
}

.lang-menu .flag i.ar {
  background-position: 0 3px;
}

.lang-menu .flag i.zh {
  background-position: 0 -12px;
}

.lang-menu .flag i.en {
  background-position: 0 -28px;
}

.lang-menu .flag i.de {
  background-position: 0 -44px;
}

.lang-menu .flag i.id {
  background-position: 0 -62px;
}

.lang-menu .flag i.pt {
  background-position: 0 -79px;
}

.lang-menu .collection-item {
  padding: 0;
}

.collection .collection-item.avatar :not(.circle-clipper) > .circle.flag {
  width: auto;
  height: auto;
  overflow: visible;
}

.lang-opt {
  display: block;
  padding: 0 !important;
}

.theme--light .lang-opt {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark .lang-opt {
  color: #fff;
}

.lang-list {
  min-height: 0 !important;
}

.setting {
  position: relative;
}

.setting .icon {
  font-size: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #FFF;
}

.setting .active {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.setting .menu-list {
  text-transform: capitalize;
}

.setting .dropdown-content {
  width: 240px !important;
  border-radius: 12px;
}

[dir=ltr] .setting .dropdown-content {
  right: 8px !important;
  left: auto !important;
}

[dir=rtl] .setting .dropdown-content {
  left: 8px !important;
  right: auto !important;
}

.mode-menu, .lang-menu {
  text-transform: capitalize;
}

.flex-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-menu label {
  text-transform: capitalize;
}

.mobile-menu {
  margin: 0px 8px 0px 8px;
  height: 36px;
  line-height: 52px;
}

.mobile-menu .bar {
  background-color: #FFF;
}

.mobile-menu .bar:after, .mobile-menu .bar:before {
  background-color: #FFF;
}

.mobile-menu.is-active .bar {
  background-color: #FFF !important;
}

.mobile-menu.is-active .bar:after, .mobile-menu.is-active .bar:before {
  background-color: #FFF !important;
}

.mobile-nav {
  background-color: var(--v-primarydark-base);
  position: relative;
  position: fixed;
  z-index: 1100;
  min-width: 300px;
}

.mobile-nav:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.3;
}

.mobile-nav.menu-open ul li {
  -webkit-animation-name: slideRight;
  animation-name: slideRight;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

@media (max-width: 599px) {
  .mobile-nav {
    width: 100% !important;
  }
}
.mobile-nav .menu {
  padding: 0px 16px 32px 16px;
  overflow: auto;
  top: 80px;
  width: 100%;
  position: absolute;
  height: calc(100% - 120px);
}

.mobile-nav .menu ul.collection {
  border: none;
  margin: 0;
}

.mobile-nav .menu ul.collection li.collection-item {
  border: none;
  background: none;
  padding: 0;
  margin: 16px 24px 16px 24px;
}

.mobile-nav .menu ul.collection li.collection-item a {
  color: #FFF;
  text-transform: capitalize;
  font-size: 24px;
  margin-top: 4px;
  margin-bottom: 4px;
  font-weight: var(--font-regular);
  padding: 8px 16px 8px 16px;
  height: auto;
  line-height: normal;
}

.mobile-nav .divider-sidebar {
  background: rgba(255, 255, 255, 0.2);
}

.notification {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  left: 8px;
  position: fixed;
  right: 8px;
  bottom: 0;
  padding: 0;
  text-align: left;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  z-index: 9999;
  margin: 0 auto;
}

.notification.full {
  width: 95%;
}

@media (min-width: 1280px) {
  .notification.full {
    width: 80%;
  }
}
.notification .wrapper {
  width: 100%;
  margin-bottom: 16px;
  max-width: none;
  font-size: 16px;
  color: #FFF;
  border-radius: 4px;
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

.theme--light .notification .wrapper {
  background: #424242;
}

.theme--dark .notification .wrapper {
  background: var(--v-primarydark-base);
}

@media (min-width: 600px) {
  .notification .wrapper {
    padding: 4px 16px 4px 16px;
  }
}
.notification .wrapper .content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 48px;
  overflow: hidden;
  padding: 8px 16px;
  width: 100%;
}

@media (min-width: 600px) {
  .notification .wrapper .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  [dir=ltr] .notification .wrapper .content {
    margin-right: 16px;
  }
  [dir=rtl] .notification .wrapper .content {
    margin-left: 16px;
  }
}
@media (max-width: 599px) {
  .notification .wrapper .content {
    text-align: center;
  }
}
.notification .btn {
  width: 100%;
}

@media (min-width: 600px) {
  .notification .btn {
    width: 150px;
  }
}
@media (max-width: 599px) {
  .notification .action {
    width: 100%;
    padding: 0;
    margin: 8px 0;
  }
}
.page-nav {
  z-index: 200;
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 56px;
}

.page-nav .btn-floating {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  border-radius: 6px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 86px;
  font-weight: var(--font-bold);
  background: var(--v-primarydark-base) !important;
}

.page-nav .btn-floating .icon {
  color: #FFF;
  font-size: 40px;
}

.page-nav .btn-floating:hover {
  -webkit-filter: brightness(0.95);
  filter: brightness(0.95);
}

.page-nav nav li {
  float: none;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

.page-nav.show .btn-floating {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.page-nav .section-nav .scrollnav {
  bottom: 180px;
  margin: 0 0 76px 22px;
  padding: 0;
  position: relative;
}

.page-nav .section-nav a {
  margin-bottom: 24px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--v-primarydark-base);
  display: block;
  transition: all 0.4s ease;
  color: transparent;
  padding: 0;
}

.theme--dark .page-nav .section-nav a {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.2), 0px 1px 1px 0px rgba(50, 50, 50, 0.14), 0px 2px 1px -1px rgba(50, 50, 50, 0.12);
  box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.2), 0px 1px 1px 0px rgba(50, 50, 50, 0.14), 0px 2px 1px -1px rgba(50, 50, 50, 0.12);
}

.theme--light .page-nav .section-nav a {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.2), 0px 1px 1px 0px rgba(128, 128, 128, 0.14), 0px 2px 1px -1px rgba(128, 128, 128, 0.12);
  box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.2), 0px 1px 1px 0px rgba(128, 128, 128, 0.14), 0px 2px 1px -1px rgba(128, 128, 128, 0.12);
}

.theme--light .page-nav .section-nav a {
  border-color: rgba(0, 0, 0, 0.38);
}

.theme--dark .page-nav .section-nav a {
  border-color: rgba(255, 255, 255, 0.5);
}

.page-nav .section-nav li.current a {
  background: var(--v-primarydark-base);
  border: 1px solid var(--v-primarylight-base);
}

.page-nav:hover .section-nav li {
  opacity: 1;
  top: 0 !important;
}

.material-tooltip {
  text-transform: capitalize;
  font-size: 14px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.54);
}

.parallax-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 0;
}

[dir=ltr] .parallax-wrap {
  left: 0;
}

[dir=rtl] .parallax-wrap {
  right: 0;
}

@media (max-width: 1279px) {
  .parallax-wrap {
    display: none;
  }
}
.parallax-wrap .inner-parallax {
  height: 800px;
  width: 100%;
  position: absolute;
  display: block;
}

.parallax-wrap .inner-parallax > div {
  height: 800px;
  width: 100%;
  display: block;
}

.parallax-wrap .inner-parallax.large {
  top: 10px;
}

.parallax-wrap .inner-parallax.medium {
  top: -130px;
}

.parallax-wrap .inner-parallax .Masthead {
  overflow: visible;
}

.parallax-wrap .inner-parallax .parallax-figure > div {
  display: block;
  position: absolute;
  top: 200px;
  width: 100%;
  height: 700px;
}

.parallax-wrap .inner-parallax .parallax-figure > div svg {
  position: absolute;
}

.parallax-wrap .right-top-back {
  text-align: right;
}

.parallax-wrap .right-top-back svg {
  right: -240px;
}

.parallax-wrap .right-top-front {
  text-align: right;
}

.parallax-wrap .right-top-front svg {
  right: 50px;
}

.parallax-wrap .left-bottom-back {
  text-align: left;
}

.parallax-wrap .left-bottom-back svg {
  left: -110px;
}

.parallax-wrap .left-bottom-front {
  text-align: left;
}

.parallax-wrap .left-bottom-front svg {
  position: absolute;
  left: -50px;
  top: 150px;
}

.parallax-wrap .hexa-back {
  fill: #000;
  width: 550px;
  height: 500px;
}

.theme--light .parallax-wrap .hexa-back {
  opacity: 0.03;
}

.theme--dark .parallax-wrap .hexa-back {
  opacity: 0.12;
}

.parallax-wrap .hexa-wrap {
  position: relative;
  height: 700px;
}

#promotions {
  /* Position the "next button" to the right */
}

#promotions .root {
  position: relative;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 101%;
}

.theme--light #promotions .root {
  background-image: url("../images/crypto/deco-bottom-light.svg");
}

.theme--dark #promotions .root {
  background-image: url("../images/crypto/deco-bottom-dark.svg");
}

@media (max-width: 959px) {
  #promotions .root {
    padding: 80px 24px 80px 24px;
  }
}
@media (max-width: 599px) {
  #promotions .root {
    padding: 0;
  }
}
.theme--light #promotions .root {
  background-color: var(--v-primary-base);
  position: relative;
}

.theme--light #promotions .root:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFF;
  opacity: 0.84;
}

.theme--dark #promotions .root {
  background-color: var(--v-primarydark-base);
}

.theme--dark #promotions .root:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #303030;
  opacity: 0.6;
}

#promotions .root > .container {
  position: relative;
  height: 300px;
}

@media (max-width: 599px) {
  #promotions .root > .container {
    height: 200px;
  }
}
#promotions .root .anim-dots {
  display: none;
}

#promotions .slider-wrap {
  position: relative;
  z-index: 1;
}

#promotions .slider-wrap .anim-slider {
  z-index: 1;
}

#promotions .slider-wrap > div {
  height: 500px;
  overflow: hidden;
}

@media (max-width: 959px) {
  #promotions .slider-wrap > div {
    height: 320px;
  }
}
#promotions .slider-wrap > div > a {
  z-index: 11;
  background: none !important;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 40%;
}

@media (max-width: 959px) {
  #promotions .slider-wrap > div > a {
    display: none;
  }
}
#promotions .even h2 a {
  color: var(--v-secondary-base);
}

#promotions .even .decoration svg {
  fill: var(--v-secondary-base);
}

#promotions .odd h2 a {
  color: var(--v-primary-base);
}

#promotions .odd .decoration svg {
  fill: var(--v-primary-base);
}

#promotions .decoration {
  position: absolute;
  top: 0;
  opacity: 0.5;
  /* z-index: 2; */
}

[dir=ltr] #promotions .decoration {
  left: 0;
}

[dir=rtl] #promotions .decoration {
  right: 0;
}

#promotions .img-wrap {
  z-index: 1;
  position: relative;
  top: -24px;
}

[dir=ltr] #promotions .img-wrap {
  left: -400px;
}

[dir=rtl] #promotions .img-wrap {
  right: -400px;
}

#promotions .item {
  margin: 16px 0px 16px 0px;
  padding: 0px 8px 0px 8px;
  max-height: 500px;
  z-index: 10;
}

@media (max-width: 599px) {
  #promotions .item {
    margin-top: 64px;
  }
}
#promotions .item svg {
  width: 450px;
  height: 450px;
}

#promotions .item section {
  position: relative;
  z-index: 10;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#promotions .item figure {
  margin: 0;
  line-height: 450px;
  width: 450px;
  height: 450px;
  text-align: center;
  top: 17px;
  position: absolute;
  -webkit-transition: none !important;
  transition: none !important;
}

[dir=ltr] #promotions .item figure {
  left: 0;
}

[dir=rtl] #promotions .item figure {
  right: 0;
}

#promotions .item figure img {
  -webkit-transition: none;
  transition: none;
  vertical-align: middle;

  height: 100%;
  opacity: 1;
}

#promotions .item .paper {
  position: relative;
  padding-top: 9px;
  padding-top: 9px;
  border-radius: 24px;
}

[dir=rtl] #promotions .item .paper {
  padding: 60px 48px 60px 128px
}

[dir=ltr] #promotions .item .paper {
  padding: 60px 48px 60px 128px
}

@media (min-width: 1280px) {
  [dir=ltr] #promotions .item .paper {
    left: -80px;
  }
  [dir=rtl] #promotions .item .paper {
    right: -80px;
  }
}
@media (min-width: 960px) {
  #promotions .item .paper {
    margin-top: 95px;
  }
}
@media (max-width: 1279px) {
  #promotions .item .paper {
    width: calc(100% - 80px);
  }
}
@media (max-width: 959px) {
  #promotions .item .paper {
    padding: 48px !important;
  }
}
@media (max-width: 599px) {
  #promotions .item .paper {
    width: 100%;
    padding: 16px !important;
  }
}
#promotions .item .paper button {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (max-width: 959px) {
  #promotions .item .paper button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
#promotions .item h2 {
  font-weight: var(--font-bold);
  margin-bottom: 8px;
  line-height: 42px;
}

#promotions .item h2 a {
  font-size: 28px;
  padding: 0;
  max-width: 500px;
  text-transform: none;
  font-family: Montserrat;
  font-weight: var(--font-bold);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[dir=ltr] #promotions .item h2 a {
  margin-left: -4px;
}

[dir=rtl] #promotions .item h2 a {
  margin-right: -4px;
}

@media (min-width: 600px) {
  [dir=ltr] #promotions .item h2 a {
    text-align: left;
  }
  [dir=rtl] #promotions .item h2 a {
    text-align: right;
  }
}
@media (max-width: 599px) {
  #promotions .item h2 a {
    text-align: center;
  }
}
@media (max-width: 1279px) {
  #promotions .item h2 a {
    width: 100%;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
}
@media (max-width: 599px) {
  #promotions .item h2 a {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 599px) {
  #promotions .item h2 {
    white-space: normal;
    line-height: 32px;
  }
}
@media (max-width: 599px) {
  #promotions .item p {
    text-align: center;
    font-size: 14px;
  }
}
#promotions .item .time h6 {
  font-size: 14px;
}

.theme--light #promotions .item .time h6 {
  color: rgba(0, 0, 0, 0.54);
}

.theme--dark #promotions .item .time h6 {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 599px) {
  #promotions .item .time h6 {
    text-align: center;
  }
}
#promotions .anim-arrows {
  top: 0;
  position: absolute;
  z-index: 1000;
  width: 100%;
}

#promotions .anim-arrows .container {
  position: relative;
}

#promotions .anim-arrows-prev, #promotions .anim-arrows-next {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 11;
}

.theme--light #promotions .anim-arrows-prev, .theme--light #promotions .anim-arrows-next {
  background-color: #fff;
}

.theme--dark #promotions .anim-arrows-prev, .theme--dark #promotions .anim-arrows-next {
  background-color: #424242;
}

.theme--light #promotions .anim-arrows-prev, .theme--light #promotions .anim-arrows-next {
  color: rgba(0, 0, 0, 0.54);
}

.theme--dark #promotions .anim-arrows-prev, .theme--dark #promotions .anim-arrows-next {
  color: rgba(255, 255, 255, 0.7);
}

.theme--dark #promotions .anim-arrows-prev, .theme--dark #promotions .anim-arrows-next {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.2), 0px 1px 1px 0px rgba(50, 50, 50, 0.14), 0px 2px 1px -1px rgba(50, 50, 50, 0.12);
  box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.2), 0px 1px 1px 0px rgba(50, 50, 50, 0.14), 0px 2px 1px -1px rgba(50, 50, 50, 0.12);
}

.theme--light #promotions .anim-arrows-prev, .theme--light #promotions .anim-arrows-next {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.2), 0px 1px 1px 0px rgba(128, 128, 128, 0.14), 0px 2px 1px -1px rgba(128, 128, 128, 0.12);
  box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.2), 0px 1px 1px 0px rgba(128, 128, 128, 0.14), 0px 2px 1px -1px rgba(128, 128, 128, 0.12);
}

@media (max-width: 599px) {
  #promotions .anim-arrows-prev, #promotions .anim-arrows-next {
    display: none;
  }
}
#promotions .anim-arrows-prev i, #promotions .anim-arrows-next i {
  font-size: 35px;
  position: absolute;
  top: 3px;
}

[dir=ltr] #promotions .anim-arrows-prev i, [dir=ltr] #promotions .anim-arrows-next i {
  left: 3px;
}

[dir=rtl] #promotions .anim-arrows-prev i, [dir=rtl] #promotions .anim-arrows-next i {
  right: 3px;
}

.theme--light #promotions .anim-arrows-prev i, .theme--light #promotions .anim-arrows-next i {
  fill: rgba(0, 0, 0, 0.54);
}

.theme--dark #promotions .anim-arrows-prev i, .theme--dark #promotions .anim-arrows-next i {
  fill: rgba(255, 255, 255, 0.7);
}

#promotions .anim-arrows-next {
  top: 140px;
}

[dir=ltr] #promotions .anim-arrows-next {
  right: 140px;
}

[dir=rtl] #promotions .anim-arrows-next {
  left: 140px;
}

@media (max-width: 1279px) {
  [dir=ltr] #promotions .anim-arrows-next {
    right: 20px;
  }
  [dir=rtl] #promotions .anim-arrows-next {
    left: 20px;
  }
}
#promotions .anim-arrows-prev {
  top: 200px;
}

[dir=ltr] #promotions .anim-arrows-prev {
  right: 140px;
}

[dir=rtl] #promotions .anim-arrows-prev {
  left: 140px;
}

@media (max-width: 1279px) {
  [dir=ltr] #promotions .anim-arrows-prev {
    right: 20px;
  }
  [dir=rtl] #promotions .anim-arrows-prev {
    left: 20px;
  }
}
#testimonials .root {
  position: relative;
  z-index: 2;
}

@media (max-width: 959px) {
  #testimonials .root {
    padding-bottom: 160px;
  }
}
#testimonials .carousel {
  overflow: visible;
  position: relative;
}

@media (min-width: 960px) {
  #testimonials .carousel {
    padding: 0px 16px 0px 16px;
  }
}
#testimonials .carousel > div {
  z-index: 10;
}

#testimonials .carousel:after, #testimonials .carousel:before {
  content: "";
  border-radius: 12px;
  height: 150px;
  position: absolute;
}

.theme--light #testimonials .carousel:after, .theme--light #testimonials .carousel:before {
  background-color: #fff;
}

.theme--dark #testimonials .carousel:after, .theme--dark #testimonials .carousel:before {
  background-color: #424242;
}

.theme--dark #testimonials .carousel:after, .theme--dark #testimonials .carousel:before {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.2), 0px 1px 1px 0px rgba(50, 50, 50, 0.14), 0px 2px 1px -1px rgba(50, 50, 50, 0.12);
  box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.2), 0px 1px 1px 0px rgba(50, 50, 50, 0.14), 0px 2px 1px -1px rgba(50, 50, 50, 0.12);
}

.theme--light #testimonials .carousel:after, .theme--light #testimonials .carousel:before {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.2), 0px 1px 1px 0px rgba(128, 128, 128, 0.14), 0px 2px 1px -1px rgba(128, 128, 128, 0.12);
  box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.2), 0px 1px 1px 0px rgba(128, 128, 128, 0.14), 0px 2px 1px -1px rgba(128, 128, 128, 0.12);
}

#testimonials .carousel:after {
  width: 90%;
  bottom: 5px;
}

[dir=ltr] #testimonials .carousel:after {
  left: 50%;
}

[dir=rtl] #testimonials .carousel:after {
  right: 50%;
}

[dir=ltr] #testimonials .carousel:after {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

[dir=rtl] #testimonials .carousel:after {
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  transform: translate(50%, 0);
}

#testimonials .carousel:before {
  width: 80%;
  bottom: -15px;
}

[dir=ltr] #testimonials .carousel:before {
  left: 50%;
}

[dir=rtl] #testimonials .carousel:before {
  right: 50%;
}

[dir=ltr] #testimonials .carousel:before {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

[dir=rtl] #testimonials .carousel:before {
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  transform: translate(50%, 0);
}

@media (max-width: 599px) {
  #testimonials .carousel > button {
    display: none;
  }
}
#testimonials .item {
  padding: 8px;
}

@media (min-width: 960px) {
  #testimonials .item {
    padding: 0px 8px 0px 8px;
  }
}
#testimonials .item:focus {
  outline: none;
}

#testimonials .slide-content {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#testimonials .slide {
  background: none;
}

#testimonials .nav {
  position: absolute;
  border: none;
  z-index: 12;
  top: 48%;
  width: 64px;
  height: 64px;
  line-height: 74px;
  padding: 0px;
  min-width: 0px;
  background: url("../images/crypto/hexa-nav.png") no-repeat center;
  background-size: 80%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

[dir=rtl] #testimonials .nav {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

[dir=ltr] #testimonials .nav {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

#testimonials .nav i {
  opacity: 0.33;
  position: relative;
  font-size: 26px;
}

.theme--light #testimonials .nav i {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark #testimonials .nav i {
  color: #fff;
}

#testimonials .nav:focus {
  outline: none;
}

#testimonials .nav:hover {
  opacity: 0.6;
}

[dir=ltr] #testimonials .prev {
  left: 56px;
}

[dir=rtl] #testimonials .prev {
  right: 56px;
}

#testimonials .prev svg {
  margin-top: 3px;
}

[dir=ltr] #testimonials .prev svg {
  right: 2px;
}

[dir=rtl] #testimonials .prev svg {
  left: 2px;
}

[dir=ltr] #testimonials .next {
  right: 56px;
}

[dir=rtl] #testimonials .next {
  left: 56px;
}

#testimonials .next svg {
  margin-top: 3px;
}

[dir=ltr] #testimonials .next svg {
  left: 2px;
}

[dir=rtl] #testimonials .next svg {
  right: 2px;
}

#testimonials .pagination {
  z-index: 22;
  position: relative;
}

#testimonials .pagination ul {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  bottom: -96px;
}

#testimonials .pagination ul li {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  padding: 0;
  border: 1px solid var(--v-primary-base);
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#testimonials .pagination ul li.active {
  background: var(--v-primary-base);
}

#testimonials .pagination ul li:hover {
  opacity: 0.5;
}

#testimonials .pagination ul li button {
  opacity: 0;
  cursor: pointer;
  padding: 0;
  width: 100%;
  height: 100%;
}

.title-main {
  display: block;
  position: relative;
  margin-bottom: 24px;
}

@media (min-width: 960px) {
  [dir=ltr] .title-main.align-left {
    text-align: left;
  }
  [dir=rtl] .title-main.align-left {
    text-align: right;
  }
  [dir=ltr] .title-main.align-left:after {
    left: 0;
  }
  [dir=rtl] .title-main.align-left:after {
    right: 0;
  }
}
@media (max-width: 959px) {
  .title-main.align-left {
    text-align: center;
  }
  [dir=ltr] .title-main.align-left:after {
    left: 50%;
  }
  [dir=rtl] .title-main.align-left:after {
    right: 50%;
  }
  [dir=ltr] .title-main.align-left:after {
    margin-left: -35px;
  }
  [dir=rtl] .title-main.align-left:after {
    margin-right: -35px;
  }
}
@media (min-width: 960px) {
  [dir=ltr] .title-main.align-right {
    text-align: right;
  }
  [dir=rtl] .title-main.align-right {
    text-align: left;
  }
  [dir=ltr] .title-main.align-right:after {
    right: 0;
  }
  [dir=rtl] .title-main.align-right:after {
    left: 0;
  }
}
@media (max-width: 959px) {
  .title-main.align-right {
    text-align: center;
  }
  [dir=ltr] .title-main.align-right:after {
    left: 50%;
  }
  [dir=rtl] .title-main.align-right:after {
    right: 50%;
  }
  [dir=ltr] .title-main.align-right:after {
    margin-left: -35px;
  }
  [dir=rtl] .title-main.align-right:after {
    margin-right: -35px;
  }
}
.title-main.align-center {
  text-align: center;
}

[dir=ltr] .title-main.align-center:after {
  left: 50%;
}

[dir=rtl] .title-main.align-center:after {
  right: 50%;
}

[dir=ltr] .title-main.align-center:after {
  margin-left: -35px;
}

[dir=rtl] .title-main.align-center:after {
  margin-right: -35px;
}

.theme--light .title-main .deco-title {
  opacity: 0.3;
}

.theme--dark .title-main .deco-title {
  opacity: 1;
}

.title-main h4 {
  margin-top: 16px;
  font-weight: var(--font-bold);
  font-size: 36px;
  font-family: "Montserrat", sans-serif !important;
}

.theme--light .title-main h4 {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark .title-main h4 {
  color: #fff;
}

@media (max-width: 1279px) {
  .title-main h4 {
    font-size: 32px;
    line-height: 48px;
  }
}
@media (max-width: 599px) {
  .title-main h4 {
    font-size: 28px;
    line-height: 44px;
  }
}
.title-secondary {
  display: block;
  position: relative;
}

@media (min-width: 960px) {
  [dir=ltr] .title-secondary.align-left {
    text-align: left;
  }
  [dir=rtl] .title-secondary.align-left {
    text-align: right;
  }
  [dir=ltr] .title-secondary.align-left:after {
    left: 0;
  }
  [dir=rtl] .title-secondary.align-left:after {
    right: 0;
  }
}
@media (max-width: 959px) {
  .title-secondary.align-left {
    text-align: center;
  }
  [dir=ltr] .title-secondary.align-left:after {
    left: 50%;
  }
  [dir=rtl] .title-secondary.align-left:after {
    right: 50%;
  }
  [dir=ltr] .title-secondary.align-left:after {
    margin-left: -35px;
  }
  [dir=rtl] .title-secondary.align-left:after {
    margin-right: -35px;
  }
}
@media (min-width: 960px) {
  [dir=ltr] .title-secondary.align-right {
    text-align: right;
  }
  [dir=rtl] .title-secondary.align-right {
    text-align: left;
  }
  [dir=ltr] .title-secondary.align-right:after {
    right: 0;
  }
  [dir=rtl] .title-secondary.align-right:after {
    left: 0;
  }
}
@media (max-width: 959px) {
  .title-secondary.align-right {
    text-align: center;
  }
  [dir=ltr] .title-secondary.align-right:after {
    left: 50%;
  }
  [dir=rtl] .title-secondary.align-right:after {
    right: 50%;
  }
  [dir=ltr] .title-secondary.align-right:after {
    margin-left: -35px;
  }
  [dir=rtl] .title-secondary.align-right:after {
    margin-right: -35px;
  }
}
.title-secondary.align-center {
  text-align: center;
}

[dir=ltr] .title-secondary.align-center:after {
  left: 50%;
}

[dir=rtl] .title-secondary.align-center:after {
  right: 50%;
}

[dir=ltr] .title-secondary.align-center:after {
  margin-left: -35px;
}

[dir=rtl] .title-secondary.align-center:after {
  margin-right: -35px;
}

.title-secondary h4 {
  font-size: 36px;
  line-height: 56px;
  text-transform: capitalize;
  font-weight: var(--font-bold);
}

.theme--light .title-secondary h4 {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark .title-secondary h4 {
  color: #fff;
}

@media (max-width: 1279px) {
  .title-secondary h4 {
    font-size: 32px;
    line-height: 48px;
  }
}
@media (max-width: 599px) {
  .title-secondary h4 {
    font-size: 28px;
    line-height: 44px;
  }
}
.theme--light .title-secondary strong {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark .title-secondary strong {
  color: #fff;
}

.main-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.theme--light .main-wrap {
  color: rgba(0, 0, 0, 0.87);
}

.theme--dark .main-wrap {
  color: #fff;
}

.theme--dark .main-wrap {
  background-color: #303030;
}

.theme--light .main-wrap {
  background-color: #fff;
}

.space-bottom {
  margin-bottom: 160px;
}

@media (max-width: 1279px) {
  .space-bottom {
    margin-bottom: 120px;
  }
}
.space-top {
  margin-top: 160px;
}

@media (max-width: 1279px) {
  .space-top {
    margin-top: 120px;
  }
}
.space-bottom-short {
  margin-bottom: 80px;
}

@media (min-width: 960px) and (max-width: 1279px) {
  .space-top-short-md-down {
    margin-top: 80px;
  }
}
.space-top-short {
  margin-top: 80px;
}

.container-wrap {
  margin-top: -40px;
}

.container-wrap > section {
  position: relative;
}

.container-general {
  margin-top: 80px;
  padding: 32px;
}

.container-general > section {
  position: relative;
}
















































