:root {
  /* Colors */
  --color-brand: #7a1c8d;
  --color-brand-secondary: #DC5BE3;
  --color-brand-light: #d745df;
  --color-brand-dark: #1f386e;
  --color-white: #fff;
  --color-grey: #f6f6f6;
  --color-grey-dark: #333;
  --color-grey-medium: #888;
  --color-grey-light: #e5e5e5;
  --color-blue: #608dfd;
  --color-danger: #cc0033;
  --color-form-border: #ddd;
  --color-form-focus: #999;
  --color-form-text: #444;

  /* Gradients */
  --gradient-primary: linear-gradient(to right, var(--color-brand-secondary) 0%, var(--color-brand) 100%);
  --gradient-light: linear-gradient(to right, var(--color-brand) 0%, var(--color-brand-secondary) 100%);
  --gradient-overlay: linear-gradient(to bottom right, rgba(99, 114, 255, 0.75) 0%, rgba(214, 74, 226, 0.75) 100%);
  --gradient-text: linear-gradient(to right, var(--color-brand) 0%, var(--color-brand-light) 100%);
  --gradient-white-fade: rgba(255, 255, 255, 0.3);

  /* Font Families */
  --font-primary: 'Open Sans', sans-serif;
  --font-secondary: 'Raleway', sans-serif;
  --font-tertiary: 'Lato', sans-serif;
  --font-icon: 'FontAwesome';

  /* Font Sizes */
  --font-size-base: 15px;
  --font-size-h2: 36px;
  --font-size-h3: 20px;
  --font-size-h4: 18px;
  --font-size-h5: 14px;
  --font-size-intro: 22px;
  --font-size-section-title: 18px;
  --font-size-btn: 15px;
  --font-size-testimonial: 14px;
  --font-size-meta: 15px;
  --font-size-label: 12px;

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
}

html {
	scroll-behavior: smooth;
}

#benefits,
#about-us,
#our-services,
#allies,
#team,
#visit-us,
#faq,
#contact {
  scroll-margin-top: 100px;
}

body,
html {
  font-family: var(--font-primary);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #777;
  font-weight: var(--font-weight-normal);
  width: 100% !important;
  height: 100% !important;
}
h2,
h3,
h4 {
  font-family: var(--font-secondary);
}
h2 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: var(--font-weight-extrabold);
  font-size: var(--font-size-h2);
  color: var(--color-grey-dark);
}
h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
  color: var(--color-grey-dark);
}
h4 {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-semibold);
  color: var(--color-grey-dark);
}
h5 {
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  line-height: 20px;
}
p {
  font-size: var(--font-size-base);
}
p.intro {
  margin: 12px 0 0;
  line-height: 24px;
  font-size: var(--font-size-intro);
}
a {
  color: var(--color-blue);
  font-weight: var(--font-weight-normal);
}
a:hover,
a:focus {
  text-decoration: none;
  color: var(--color-blue);
}
ul,
ol {
  list-style: none;
}
ul,
ol {
  padding: 0;
}

.container-block {
  display: block;
}

/* NavigationHeader */
#menu {
  display: flex;
  justify-content: center;
  transition: all 0.8s;
  height: 100px;
}
.navbar {
  margin: 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
#menu .logo {
  height: 75px;
  width: 75px;
}
#menu .header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px
}
#menu .navbar-nav {
  display: flex;
  gap: 14px;
}
.navbar-default {
  background-color: var(--color-white);
  border-color: rgba(231, 231, 231, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.navbar-default .navbar-nav > li > a {
  font-family: var(--font-tertiary);
  text-transform: uppercase;
  color: #555;
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-normal);
  border-radius: 0;
}
.navbar-default .navbar-nav > li > a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  content: "";
  transition: width 0.2s;
}
.navbar-default .navbar-nav > li > a:hover:after {
  width: 100%;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after,
.navbar-default .navbar-nav > .active > a:hover:after,
.navbar-default .navbar-nav > .active > a:focus:after {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 2px !important;
  background: var(--gradient-primary) !important;
  content: "" !important;
  transition: width 0.2s !important;
}
.navbar-toggle {
  border-radius: 0;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: var(--color-white);
  border-color: var(--color-blue);
}
.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: var(--color-blue);
}
.section-title {
  margin-bottom: 70px;
}
.section-title h2 {
  position: relative;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.section-title h2::after {
  position: absolute;
  content: "";
  background: var(--gradient-light);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
.section-title p {
  font-size: var(--font-size-section-title);
}
.btn-custom {
  position: relative;
  z-index: 1;
  overflow: hidden;               /* clip the gradients to the button shape */
  display: inline-block;
  padding: 14px 34px;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: var(--font-size-btn);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: normal;
  color: var(--color-white);
  border: 0;
  border-radius: 25px;
  cursor: pointer;

  /* fallback solid color if gradients don’t load */
  background-color: var(--color-brand);
  transition: transform 0.25s ease-in-out;
}

.btn-custom::before,
.btn-custom::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: opacity 0.25s ease-in-out;
  z-index: -1;
}

/* Default (outgoing) gradient */
.btn-custom::before {
  background-image: var(--gradient-light);
  opacity: 1;
}

/* Hover (incoming) gradient, start hidden */
.btn-custom::after {
  background-image: var(--gradient-primary);
  opacity: 0;
}

.btn-custom:hover,
.btn-custom:focus {
  /* keep text white */
  color: var(--color-white);
  transform: scale(1.025);
}

/* fade the hover-gradient in */
.btn-custom:hover::after {
  opacity: 1;
}

/* ensure the old gradient stays visible underneath */
.btn-custom:hover::before {
  opacity: 1;
}

/* reset any .btn active rules you need to keep */
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  box-shadow: none;
}

a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline-offset: 0;
}

/* Header Section */
#introduction .intro {
  display: table;
  width: 100%;
  padding: 0;
  background: url(../img/intro-bg.webp) center center no-repeat;
  background-color: var(--color-grey-light);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
#introduction .overlay {
  background: rgba(0, 0, 0, 0.2);
}
#introduction .intro h1 {
  cursor: default;
  user-select: none;
  font-family: var(--font-secondary);
  color: var(--color-white);
  font-size: clamp(32px, 10vw, 82px);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}
#introduction .intro p {
  color: var(--color-white);
  font-size: var(--font-size-intro);
  font-weight: 300;
  line-height: 30px;
  margin: 0 auto;
  margin-bottom: 60px;
}
#introduction .intro-text {
  min-height: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#introduction .intro-text p {
  font-weight: var(--font-weight-normal);
}

/* Benefits Section */
#benefits {
  padding: 100px 0;
  background: var(--color-grey);
}
#benefits .benefits-list {
  display: flex;
  overflow: hidden;
  gap: 10px;
}
#benefits .icon-container {
  color: var(--color-white);
  width: 100px;
  height: 100px;
  border-radius: 1000px;
  background: var(--gradient-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}
#benefits .benefit {
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 8px;
  border-radius: 8px;
  min-width: 200px;
}
#benefits .benefit:hover {
  background-color: var(--color-white);
  transform: scale(1.025);
}
/* AboutUs Section */
#about-us {
  padding: 100px 0;
}
#about-us h3 {
  font-size: 22px;
  margin: 0 0 20px;
}
#about-us h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#about-us h2::after {
  position: absolute;
  content: "";
  background: var(--gradient-light);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
}
#about-us .about-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#about-us .about-elem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
#about-us .about-arrow {
  color: var(--color-brand);
}
#about-us img {
  width: 520px;
  margin-top: 10px;
  background: var(--color-white);
  border-right: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
}
#about-us p {
  line-height: 24px;
  margin: 30px 0;
}
/* Allies Section */
#allies {
  padding: 100px 0;
  background: var(--gradient-primary);
  color: var(--color-white);
}
#allies .allies-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 40px 0;
}
#allies .allies-desc {
  margin: 10px;
}
#allies .allie {
  cursor: pointer;
  transition: all 0.3s;
  width: 250px;
}
#allies .allie:hover {
  transform: scale(1.05);
}
#allies h2 {
  color: var(--color-white);
}
#allies .section-title h2::after {
  position: absolute;
  content: "";
  background: var(--gradient-white-fade);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
#allies i.fa {
  font-size: 42px;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: var(--color-white);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
#allies h3 {
  font-weight: 500;
  padding: 5px 0;
  color: var(--color-white);
}
#allies p {
  color: rgba(255, 255, 255, 0.75);
}
/* Portfolio Section */
#our-services {
  padding: 100px 0;
  background: var(--color-grey);
}
.our-services-item {
  cursor: pointer;
  margin: 1px -15px 0 -14px;
  max-width: 100vw;
  padding: 0;
}
.our-services-item .hover-bg {
  overflow: hidden;
  position: relative;
  margin: 0;
}
.hover-bg .hover-text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: var(--color-white);
  background: var(--gradient-overlay);
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  border-radius: 4px;
}
.hover-bg .hover-text > h3 {
  opacity: 0;
  color: var(--color-white);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}
.hover-bg:hover .hover-text > h3 {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.hover-bg:hover .hover-text {
  opacity: 1;
}
/* Reviews Section */
#reviews {
  padding: 100px 0;
  background: var(--color-grey);
}
.testimonials-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial {
  padding: 20px;
  transition: all 0.3s;
  border-radius: 14px;
  cursor: pointer;
  user-select: none;
  background-color: white;
}

.testimonial:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.testimonial-image {
  float: left;
  margin-right: 15px;
}
.testimonial-image,
.testimonial-image img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.testimonial-content {
  position: relative;
  overflow: hidden;
}
.testimonial-content p {
  margin-bottom: 0;
  font-size: var(--font-size-testimonial);
  font-style: italic;
}
.testimonial-meta {
  margin-top: 10px;
  font-size: var(--font-size-meta);
  font-weight: var(--font-weight-semibold);
  color: var(--color-grey-medium);
}
/* Team Section */
#team {
  padding: 100px 0;
}
#team h3 {
  margin: 5px 0;
}
#team .feature-title {
  margin-bottom: 10px;
  user-select: none;
}
#team .team-img {
  width: 240px;
}
#team .thumbnail {
  background: transparent;
  border: 0;
}
#team .thumbnail .caption {
  padding: 10px 0 0;
  color: var(--color-grey-medium);
  font-size: var(--font-size-base);
}
/* Visit Us Section */
#visit-us {
  display: flex;
  padding: 100px 0;
  background: var(--color-grey);
}
#visit-us .container {
  display: flex;
  flex-direction: column;
}
#visit-us .map-pin {
  display: flex;
  flex-direction: row;
  gap: 4px;
  font-weight: var(--font-weight-medium);
  color: var(--color-brand);
  align-items: center;
  margin-top: -25px;
}
#visit-us .map-pin p {
  margin: 0;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;

  background-clip: text;
  color: transparent;
}
#visit-us .map-container {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}
#visit-us iframe {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#visit-us .map-gradient {
  margin-top: 20px;
  padding: 4px;
  border-radius: 20px;
  background: var(--gradient-primary);
  display: inline-block;
}

/* FAQ Section */
#faq {
  padding: 100px 0;
  background: var(--color-white);
}
#faq .section-title {
  margin-bottom: 40px;
}
#faq .faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
#faq .faq-item {
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
#faq .faq-item-open {
  box-shadow: 0 0 14px rgba(0,0,0,0.075);
  border-radius: 8px;
}
#faq .faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: var(--font-secondary);
  color: var(--color-brand);
  font-weight: 600;
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s;
}
#faq .faq-question:hover {
  box-shadow: 0 0 8px rgba(0,0,0,0.075);
}
#faq .faq-answer {
  padding: 24px;
  text-align: left;
  font-size: 16px;
  color: var(--color-grey-dark);
  border-top: 1px solid var(--color-brand);
  border-radius: 0 0 8px 8px;
  background: var(--color-white);
}
#faq .faq-answer-text {
  margin: 0;
}

/* Contact Section */
#contact {
  padding: 100px 0 60px;
  background: var(--gradient-primary);
  color: rgba(255, 255, 255, 0.75);
}
#contact .section-title {
  margin-bottom: 40px;
}
#contact .section-title p {
  font-size: 16px;
}
#contact h2 {
  color: var(--color-white);
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#contact .section-title h2::after {
  position: absolute;
  content: "";
  background: var(--gradient-white-fade);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 30px;
}
#contact h3 {
  color: var(--color-white);
  margin-top: 80px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  font-weight: var(--font-weight-normal);
}
#contact form {
  padding-top: 20px;
}
#contact .text-danger {
  color: var(--color-danger);
  text-align: left;
}
/* Contact section “ghost” button */
#contact .btn-custom {
  margin: 30px 0;
  padding: 14px 34px;
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  border-radius: 25px;
  cursor: pointer;

  /* Animate only these */
  transition:
    background-color 0.25s ease-in-out,
    color            0.25s ease-in-out,
    border-color     0.25s ease-in-out,
    transform        0.25s ease-in-out;
}

/* Kill the global .btn-custom pseudos for this variant */
#contact .btn-custom::before,
#contact .btn-custom::after {
  display: none;
}

/* Hover/focus state */
#contact .btn-custom:hover,
#contact .btn-custom:focus {
  background-color: var(--color-white);
  border-color:    var(--color-form-text);
  color:           var(--color-grey-dark);
  transform:       scale(1.025);
}
label {
  font-size: var(--font-size-label);
  font-weight: var(--font-weight-normal);
  font-family: var(--font-primary);
  float: left;
}
#contact .form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: var(--color-form-text);
  background-color: var(--color-white);
  background-image: none;
  border: 1px solid var(--color-form-border);
  border-radius: 8px;
}
#contact .form-control:focus {
  border-color: var(--color-form-focus);
  outline: 0;
  -webkit-box-shadow: transparent;
  box-shadow: transparent;
}
#contact .contact-item {
  margin: 20px 0;
}
#contact .contact-item a:hover {
  text-decoration: underline;
}
#contact .contact-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
#contact .contact-title-text {
  margin: 0;
}
#contact .social {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 50px;
  margin-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}

#contact .social-icon {
  width: 70px;
  height: 70px;
  padding: 8px;
  background-color: transparent;
  transition: all 0.3s ease;
  filter: invert(1); /* Makes black images white */
  border-radius: 8px;
}

#contact .social-icon:hover {
  background-color: white;
  filter: invert(0); /* Makes white images black */
}

.whatsapp-floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.whatsapp-floating-button:hover {
  background-color: #d8f8e4;
  box-shadow: 0 0 16px rgba(0,0,0,0.2);
  transform: scale(1.05);
}

/* Footer Section*/
#footer {
  background: var(--color-grey);
  padding: 30px 0;
}
#footer p {
  color: var(--color-grey-medium);
  font-size: 14px;
}
#footer a {
  color: var(--color-blue);
}
#footer a:hover {
  border-bottom: 2px solid var(--color-blue);
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
    max-width: 100vw;
  }

  .row {
    margin: 0;
    max-width: 100vw;
  }

  #menu .header-container {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
  }

  #menu .navbar-toggle {
    display: block;
    border: none;
    background: transparent;
    margin-right: 10px;
  }

  #menu .navbar-nav {
    flex-direction: column;
    display: none;
    width: calc(100vw - 20px);
    max-width: none;
    padding-left: 0;
    background-color: var(--color-white);
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 12px;

    overflow: auto;
    max-height: calc(100vh - 110px);
  }

  #menu .navbar-nav.show {
    display: flex;
  }

  #menu .navbar-nav > li {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--color-grey-light);
  }

  #menu .navbar-nav > li:last-child {
    border-bottom: none;
  }

  #menu .navbar-toggle .icon-bar {
    background-color: var(--color-brand-dark);
    height: 3px;
    margin: 4px 0;
    display: block;
    width: 25px;
  }

  .navbar-default .navbar-nav > li > a {
    padding-left: 0;
  }

  /* Introduction Section */
  #introduction .intro {
    padding: 0;
  }

  #introduction .intro h1 {
    font-size: clamp(32px, 10vw, 82px);
    line-height: 1.1;
    word-break: break-word;
  }

  #introduction .intro-text {
    height: 100vh;
  }

  /* Benefits Section */
  #benefits {
    padding: 40px 0;
  }
  #benefits .section-title {
    margin-bottom: 20px;
  }
  #benefits .benefits-list {
    overflow-x: auto;
    padding: 0 20px;
  }

  /* About Us Section */
  #about-us {
    padding: 40px 0;
    padding-top: 0;
  }
  #about-us img {
    margin: 50px 0;
  }
  #about-us .why-choose-us {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* Services Section */
  #our-services {
    padding: 40px 0;
  }

  #our-services .section-title {
    margin-bottom: 30px;
  }
  #our-services .our-services-item {
    margin: 6px -15px 0 -14px;
  }

  /* Allies Section */
  #allies {
    padding: 40px 0;
  }
  #allies .allies-list {
    display: block;
    justify-items: center;
  }
  #allies .allie {
    margin-bottom: 40px;
  }

  /* Reviews Section */
  #reviews {
    padding: 40px 0;
  }
  #reviews .section-title {
    margin-bottom: 30px;
  }

  /* Team Section */
  #team {
    padding: 40px 0;
  }
  #team .section-title {
    margin-bottom: 30px;
  }

  /* Visit Us Section */
  #visit-us {
    padding: 40px 0;
  }

  /* FAQ Section */
  #faq {
    padding: 40px 0;
  }

  /* Contact Section */
  #contact {
    padding: 40px 0;
  }
  #contact .contact-info-title {
    margin: 0;
  }
  #contact .social {
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding: 0;
    max-width: 100vw;
  }
}
