/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Montserrat', sans-serif;
  color:#111;
  background:#fff;
  line-height:1.5;
}

a{
  text-decoration:none;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
  background:#050b14;
  color:#fff;
  font-size:13px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* GRID ALIGNMENT */
.top-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

/* LEFT (CONTACT) */
.top-left{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  opacity:0.9;
}

.top-left span{
  display:flex;
  align-items:center;
  gap:8px;
}

/* CENTER (TRUST BADGE) */
.top-center{
  background:rgba(15,123,242,0.15);
  border:1px solid rgba(15,123,242,0.3);
  padding:4px 12px;
  border-radius:20px;
  font-weight:600;
  color:#0f7bf2;
  display:flex;
  align-items:center;
  gap:8px;
}

/* RIGHT (AREA) */
.top-right{
  opacity:0.8;
  font-size:12px;
  letter-spacing:0.3px;
}

/* ICONS */
.top-bar i{
  color:#0f7bf2;
  font-size:12px;
}

/* MOBILE FIX */
@media(max-width:768px){

.top-flex{
  flex-direction:column;
  text-align:center;
  gap:8px;
}

.top-left{
  justify-content:center;
}

}

/* =========================
   HEADER
========================= */


/* =========================
   HEADER (WHITE PREMIUM STYLE)
========================= */

.main-header{
  position:sticky;
  top:0;
  z-index:999;

  background:#ffffff;
  border-bottom:1px solid #eaeaea;

  box-shadow:0 5px 20px rgba(0,0,0,.05);
}

/* GRID */

.header-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:14px 0;
}

/* LOGO */

.logo img{
  height:120px;
  width:auto;
  object-fit:contain;
}

.logo span{
  font-size:54px;
  font-family:'Bebas Neue', sans-serif;
  color:#0f7bf2;
}

.logo h2{
  font-size:20px;
  color:#111;
}

.logo p{
  font-size:12px;
  color:#0f7bf2;
}

/* NAV */

nav{
  display:flex;
  gap:25px;
}

nav a{
  color:#111;
  font-weight:700;
  font-size:14px;
  letter-spacing:1px;

  position:relative;
}

/* underline effect */

nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;

  width:0;
  height:2px;

  background:#0f7bf2;
  transition:.3s;
}

nav a:hover::after{
  width:100%;
}

/* CTA BUTTON */

.header-cta{
  background:#0f7bf2;
  color:#fff;

  padding:12px 22px;

  font-weight:800;
  letter-spacing:1px;

  border-radius:6px;

  box-shadow:0 10px 25px rgba(15,123,242,.25);

  transition:.3s ease;
}

.header-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(15,123,242,.35);
}

/* MOBILE */

.menu-toggle{
  display:none;
  font-size:30px;
  color:#111;
  cursor:pointer;
}

/* MOBILE NAV */

@media(max-width:992px){

nav{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  width:100%;

  background:#fff;

  flex-direction:column;
  padding:20px;

  border-top:1px solid #eee;
}

nav.active{
  display:flex;
}

.menu-toggle{
  display:block;
}

.header-cta{
  display:none;
}

}

/* =========================
   HERO
========================= */

.hero{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  min-height:85vh;
}

.hero-left{
  background:#07111f;
  display:flex;
  align-items:center;
  padding:60px;
}

.hero-content{
  max-width:600px;
  color:#fff;
}

.hero-badge-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:25px;
}

.hero-badge-strip span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.08);
  padding:8px 14px;
  border-radius:30px;
  font-size:13px;
  color:#fff;
}

.hero-badge-strip i{
  color:#0f7bf2;
  font-size:14px;
}

.hero h1{
  font-family:'Bebas Neue', sans-serif;
  font-size:90px;
  line-height:0.95;
  margin-bottom:20px;
}

.hero-sub{
  color:#cfd6df;
  margin-bottom:30px;
  max-width:450px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.blue-btn{
  background:#0f7bf2;
  color:#fff;
  padding:16px 28px;
  font-weight:700;
  border-radius:4px;
  display:inline-block;
}

.outline-btn{
  border:2px solid #fff;
  color:#fff;
  padding:16px 28px;
  font-weight:700;
  border-radius:4px;
  display:inline-block;
}

/* HERO RIGHT */

.hero-right{
  position:relative;
  background:url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?q=80&w=1974&auto=format&fit=crop') center/cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to left, rgba(0,0,0,0.2), rgba(0,0,0,0.65));
}

.hero-badge{
  position:absolute;
  top:60px;
  right:40px;
  background:#0f7bf2;
  color:#fff;
  padding:18px 22px;
  font-weight:700;
  text-align:center;
  width:240px;
}

/* =========================
   TRUST
========================= */

/* =========================
   PREMIUM TRUST SECTION
========================= */

.trust-section{
  background:#f5f5f5;
  position:relative;
  padding:70px 0;

  border-top:
  1px solid rgba(0,0,0,.05);

  border-bottom:
  1px solid rgba(0,0,0,.05);
}

/* ROW */

.trust-row{
  display:grid;
  grid-template-columns:
  1fr
  1.2fr
  1fr;

  align-items:center;
  gap:40px;
}

/* BOXES */

.trust-box{
  display:flex;
  align-items:center;
  gap:25px;

  padding:20px 10px;

  position:relative;
}

/* DIVIDERS */

.trust-box:not(:last-child)::after{
  content:'';
  position:absolute;
  right:-20px;
  top:50%;
  transform:translateY(-50%);

  width:1px;
  height:120px;

  background:
  linear-gradient(
    transparent,
    rgba(0,0,0,.15),
    transparent
  );
}

/* ICON */

.trust-icon-wrap{
  width:100px;
  height:100px;

  border-radius:50%;

  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
  0 10px 30px rgba(0,0,0,.08);
}

.trust-icon-wrap i{
  font-size:42px;
  color:#0f7bf2;
}

/* TEXT */

.trust-content h3{
  font-size:36px;
  line-height:1;

  font-family:'Bebas Neue', sans-serif;

  color:#111;
}

.trust-content p{
  color:#0f7bf2;
  font-size:28px;
  font-style:italic;
}

/* CENTER */

.trust-highlight{
  flex-direction:column;
  justify-content:center;
  text-align:center;
}

.trust-highlight .stars{
  color:#ffc400;
  font-size:34px;
  margin-bottom:10px;
}

.trust-highlight h2{
  font-size:92px;
  line-height:0.9;

  font-family:'Bebas Neue', sans-serif;

  color:#111;
}

.trust-highlight h4{
  font-size:34px;

  font-family:'Bebas Neue', sans-serif;

  color:#111;
}

.trust-highlight p{
  color:#0f7bf2;
  font-weight:700;
  font-size:20px;
}

/* MOBILE */

@media(max-width:992px){

.trust-row{
  grid-template-columns:1fr;
  gap:50px;
}

.trust-box{
  justify-content:center;
  text-align:center;
}

.trust-box:not(:last-child)::after{
  display:none;
}

}

@media(max-width:768px){

.trust-content h3{
  font-size:28px;
}

.trust-content p{
  font-size:22px;
}

.trust-highlight h2{
  font-size:70px;
}

}

/* =========================
   SERVICES
========================= */

/* =========================
   PREMIUM SERVICES
========================= */

.services{
  background:#f7f7f7;
  padding:90px 0;
  position:relative;
  overflow:hidden;
}

/* TITLE */

.services-title-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:25px;

  margin-bottom:60px;
}

.paint-line{
  width:120px;
  height:8px;

  background:
  linear-gradient(
    90deg,
    transparent,
    #0f7bf2,
    transparent
  );

  border-radius:20px;
}

.section-title{
  font-family:'Bebas Neue', sans-serif;
  font-size:64px;
  color:#0f7bf2;
  letter-spacing:2px;
}

/* GRID */

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);

  border:
  1px solid rgba(0,0,0,.08);

  background:#fff;
}

/* CARDS */

.service-card{
  display:flex;
  align-items:center;
  gap:25px;

  padding:40px 30px;

  border-right:
  1px solid rgba(0,0,0,.08);

  border-bottom:
  1px solid rgba(0,0,0,.08);

  transition:.3s;

  position:relative;
  overflow:hidden;
}

/* HOVER */

.service-card:hover{
  background:#fdfdfd;

  transform:translateY(-4px);

  box-shadow:
  0 10px 25px rgba(15,123,242,.08);
}

.service-card:hover .service-icon{
  transform:scale(1.1);
}

/* ICON */

.service-icon{
  width:85px;
  height:85px;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:.3s;
}

.service-icon i{
  font-size:52px;
  color:#0f7bf2;
}

/* TEXT */

.service-info h3{
  font-size:28px;
  line-height:1.1;

  font-family:'Bebas Neue', sans-serif;

  color:#111;
}

.service-info p{
  font-size:20px;
  color:#222;
}

/* REMOVE BORDERS */

.service-card:nth-child(4n){
  border-right:none;
}

.service-card:nth-last-child(-n+4){
  border-bottom:none;
}

/* MOBILE */

@media(max-width:992px){

.services-grid{
  grid-template-columns:repeat(2,1fr);
}

.service-card:nth-child(2n){
  border-right:none;
}

.service-card:nth-last-child(-n+2){
  border-bottom:none;
}

}

@media(max-width:768px){

.services{
  padding:70px 0;
}

.services-grid{
  grid-template-columns:1fr;
}

.service-card{
  border-right:none !important;
}

.service-card:last-child{
  border-bottom:none;
}

.services-title-wrap{
  flex-direction:column;
  gap:15px;
}

.paint-line{
  width:80px;
}

.section-title{
  font-size:48px;
}

.service-card{
  padding:30px 20px;
}

.service-icon{
  width:70px;
  height:70px;
}

.service-icon i{
  font-size:42px;
}

.service-info h3{
  font-size:24px;
}

.service-info p{
  font-size:18px;
}

}

/* =========================
   ABOUT
========================= */

/* =========================
   PREMIUM ABOUT SECTION
========================= */

.about{
  padding:120px 0;
  background:#0a0a0a;
  position:relative;
  overflow:hidden;
}

/* BLUE GLOW */

.about::before{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  background:#0f7bf2;
  border-radius:50%;
  filter:blur(180px);
  opacity:.08;
  left:-200px;
  bottom:-200px;
}

/* GRID */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  position:relative;
  z-index:2;
}

/* IMAGE WRAP */

.about-image-wrap{
  position:relative;
}

/* IMAGE */

.about-image{
  min-height:600px;

  background:
  linear-gradient(
    rgba(0,0,0,.15),
    rgba(0,0,0,.35)
  ),
  url('https://images.unsplash.com/photo-1484154218962-a197022b5858?q=80&w=2070&auto=format&fit=crop');

  background-size:cover;
  background-position:center;

  border-radius:24px;

  box-shadow:
  0 25px 60px rgba(0,0,0,.5);
}

/* EXPERIENCE BADGE */

.about-badge{
  position:absolute;
  bottom:-30px;
  right:-30px;

  background:#0f7bf2;
  color:#fff;

  padding:30px;

  border-radius:20px;

  box-shadow:
  0 20px 50px rgba(15,123,242,.35);
}

.about-badge h3{
  font-size:62px;
  line-height:1;
  font-family:'Bebas Neue', sans-serif;
}

.about-badge p{
  font-size:18px;
  font-weight:600;
}

/* CONTENT */

.about-mini{
  color:#0f7bf2;
  font-weight:700;
  letter-spacing:1px;
  font-size:14px;
}

.about-content h2{
  font-size:72px;
  line-height:0.95;
  margin:20px 0 30px;

  font-family:'Bebas Neue', sans-serif;
  letter-spacing:1px;

  color:#fff;
}

/* TEXT */

.about-text{
  color:#cfcfcf;
  line-height:1.9;
  margin-bottom:22px;
  max-width:550px;
  font-size:17px;
}

/* FEATURES */

.about-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;

  margin:40px 0;
}

.feature{
  display:flex;
  align-items:center;
  gap:12px;

  background:#121212;

  padding:18px 20px;

  border-radius:12px;

  border:1px solid rgba(255,255,255,.06);

  color:#f2f2f2;

  transition:.3s;
}

.feature:hover{
  transform:translateY(-5px);

  border-color:#0f7bf2;

  box-shadow:
  0 10px 30px rgba(15,123,242,.12);
}

.feature i{
  color:#0f7bf2;
  font-size:20px;
}

/* MOBILE */

@media(max-width:992px){

.about-grid{
  grid-template-columns:1fr;
}

.about-content h2{
  font-size:56px;
}

.about-image{
  min-height:500px;
}

}

@media(max-width:768px){

.about{
  padding:90px 0;
}

.about-content h2{
  font-size:44px;
}

.about-features{
  grid-template-columns:1fr;
}

.about-badge{
  right:20px;
  bottom:20px;
  padding:20px;
}

.about-badge h3{
  font-size:42px;
}

.about-image{
  min-height:400px;
}

}

/* =========================
   PROJECTS
========================= */

/* =========================
   PROJECTS (WHITE PREMIUM SECTION)
========================= */

.projects{
  background:#ffffff;
  padding:110px 0;
}

/* TITLE */

.projects-title{
  text-align:center;
  margin-bottom:60px;
}

.projects-title span{
  color:#0f7bf2;
  font-weight:800;
  letter-spacing:2px;
  font-size:14px;
}

.projects-title h2{
  font-family:'Bebas Neue', sans-serif;
  font-size:72px;
  color:#111;
  margin:10px 0;
}

.projects-title p{
  color:#666;
  max-width:520px;
  margin:auto;
  font-size:16px;
  line-height:1.6;
}

/* GRID */

.projects-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

/* CARD */

/* CARD */
.project-card{
  height:320px;
  position:relative;

  border-radius:16px;
  overflow:hidden;

  /* Stripped out the single hardcoded image URL here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow:0 20px 45px rgba(0,0,0,.10);
  transition:.35s ease;
}

/* HOVER */

.project-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 30px 70px rgba(0,0,0,.18);
}

/* OVERLAY */

.project-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.2)
  );

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  padding:25px;

  color:#fff;
}

/* TEXT */

.project-overlay h3{
  font-family:'Bebas Neue', sans-serif;
  font-size:34px;
  letter-spacing:1px;
}

.project-overlay p{
  color:#0f7bf2;
  font-weight:700;
  margin-top:5px;
}

/* RESPONSIVE */

@media(max-width:992px){

.projects-grid{
  grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.projects-grid{
  grid-template-columns:1fr;
}

.projects-title h2{
  font-size:52px;
}

.project-card{
  height:260px;
}

}

/* =========================
   REVIEW CTA
========================= */

/* =========================
   PREMIUM REVIEW CTA
========================= */

.review-cta{
  background:
  linear-gradient(
    rgba(5,5,5,.92),
    rgba(5,5,5,.92)
  ),
  url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=2070&auto=format&fit=crop');

  background-size:cover;
  background-position:center;

  padding:90px 0;
  color:#fff;

  position:relative;
  overflow:hidden;
}

.review-cta::before{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  background:#0f7bf2;
  border-radius:50%;
  filter:blur(180px);
  opacity:.12;
  right:-150px;
  top:-150px;
}

.review-cta-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:2;
}

/* LEFT */

.review-left{
  border-right:1px solid rgba(255,255,255,.12);
  padding-right:60px;
}

.review-mini{
  color:#0f7bf2;
  font-weight:700;
  letter-spacing:1px;
  font-size:14px;
}

.review-left h2{
  font-size:48px;
  margin:15px 0 20px;
  font-family:'Bebas Neue', sans-serif;
  letter-spacing:1px;
}

.stars{
  font-size:28px;
  color:#ffc400;
  margin-bottom:20px;
}

.stars span{
  color:#fff;
  font-size:20px;
  margin-left:10px;
}

.review-text{
  color:#d6d6d6;
  line-height:1.8;
  max-width:500px;
  margin-bottom:20px;
}

.review-left h4{
  margin-bottom:30px;
  color:#fff;
}

.review-btn{
  display:inline-block;
  border:2px solid #fff;
  padding:15px 28px;
  color:#fff;
  font-weight:700;
  transition:.3s;
}

.review-btn:hover{
  background:#0f7bf2;
  border-color:#0f7bf2;
}

/* RIGHT */

.review-right{
  padding-left:20px;
}

.cta-icon{
  width:85px;
  height:85px;
  border-radius:50%;
  background:#0f7bf2;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;

  box-shadow:
  0 0 35px rgba(15,123,242,.5);
}

.cta-icon i{
  font-size:34px;
  color:#fff;
}

.review-right h2{
  font-size:52px;
  line-height:1;
  margin-bottom:20px;
  font-family:'Bebas Neue', sans-serif;
}

.review-right p{
  color:#d7d7d7;
  margin-bottom:30px;
  max-width:450px;
}

.cta-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:35px;
}

.cta-checks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.cta-checks span{
  display:flex;
  align-items:center;
  gap:10px;
  color:#dcdcdc;
  font-size:15px;
}

.cta-checks i{
  color:#0f7bf2;
}

/* MOBILE */

@media(max-width:768px){

.review-cta-grid{
  grid-template-columns:1fr;
}

.review-left{
  border-right:none;
  padding-right:0;
  border-bottom:1px solid rgba(255,255,255,.1);
  padding-bottom:50px;
}

.review-right{
  padding-left:0;
}

.review-left h2,
.review-right h2{
  font-size:42px;
}

.cta-checks{
  grid-template-columns:1fr;
}

}

/* =========================
   FOOTER
========================= */

/* =========================
   PREMIUM FOOTER
========================= */

.main-footer{
  position:relative;
  overflow:hidden;
  background:#020202;
  color:#fff;
}

/* TOP SECTION */

.footer-top{
  background:
  linear-gradient(
    135deg,
    #0f7bf2 0%,
    #005fcc 45%,
    #02152f 100%
  );

  position:relative;
  padding:50px 0;
}

.footer-top::after{
  content:'';
  position:absolute;
  right:-120px;
  top:0;
  width:320px;
  height:100%;
  background:#0b0b0b;

  clip-path:polygon(
    30% 0,
    100% 0,
    100% 100%,
    0 100%
  );
}

/* GRID */

.footer-top-grid{
  display:grid;
  grid-template-columns:
  90px
  1fr
  1fr
  140px;

  align-items:center;
  gap:30px;

  position:relative;
  z-index:2;
}

/* ICON */

.footer-call-icon{
  width:85px;
  height:85px;
  border-radius:50%;
  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
  0 10px 30px rgba(0,0,0,.25);
}

.footer-call-icon i{
  font-size:36px;
  color:#0f7bf2;
}

/* TEXT */

.footer-text h2{
  font-family:'Bebas Neue', sans-serif;
  font-size:62px;
  line-height:0.9;
  letter-spacing:1px;
}

.footer-text p{
  font-size:30px;
  font-style:italic;
  color:#dcecff;
}

/* CONTACT */

.footer-contact h3{
  font-size:54px;
  font-weight:800;
  margin-bottom:5px;
}

.footer-contact p{
  font-size:22px;
  color:#dcecff;
}

/* LOGO */

.footer-logo{
  font-family:'Bebas Neue', sans-serif;
  font-size:120px;
  color:#fff;
  opacity:.18;
  text-align:right;
}

/* BOTTOM */

.footer-bottom{
  background:#050505;
  border-top:1px solid rgba(255,255,255,.08);
  padding:22px 0;
}

.footer-bottom-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

/* BADGES */

.footer-badges{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
}

.footer-badges span{
  color:#d5d5d5;
  font-size:14px;
  position:relative;
}

.footer-badges span::before{
  content:'✔';
  color:#0f7bf2;
  margin-right:8px;
}

/* COPYRIGHT */

.footer-copy{
  color:#999;
  font-size:14px;
}

/* MOBILE */

@media(max-width:992px){

.footer-top-grid{
  grid-template-columns:1fr;
  text-align:center;
}

.footer-logo{
  text-align:center;
  font-size:90px;
}

.footer-call-icon{
  margin:auto;
}

.footer-top::after{
  display:none;
}

}

@media(max-width:768px){

.footer-text h2{
  font-size:42px;
}

.footer-text p{
  font-size:22px;
}

.footer-contact h3{
  font-size:36px;
}

.footer-contact p{
  font-size:18px;
}

.footer-bottom-grid{
  flex-direction:column;
  text-align:center;
}

.footer-badges{
  justify-content:center;
}

}
/* =========================
   MOBILE FIX (IMPORTANT)
========================= */

@media(max-width:992px){

.hero{
  grid-template-columns:1fr;
}

.services-grid,
.projects-grid,
.trust-grid,
.about-grid,
.review-grid{
  grid-template-columns:1fr;
}

.hero h1{
  font-size:70px;
}

}

/* =========================
   MOBILE HEADER + HERO FIX
========================= */

@media(max-width:768px){

.container{
  width:92%;
}

.menu-toggle{
  display:block;
}

/* NAV */
nav{
  display:none;
  width:100%;
  flex-direction:column;
  background:#fff;
  margin-top:10px;
  border-top:1px solid #eee;
}

nav.active{
  display:flex;
}

nav a{
  padding:15px;
  border-bottom:1px solid #eee;
}

.quote-btn{
  display:none;
}

/* LOGO */
.logo span{
  font-size:40px;
}

.logo h2{
  font-size:18px;
}

/* HERO FIX (CENTERED) */
.hero{
  min-height:auto;
}

.hero-left{
  padding:50px 20px;
  justify-content:center;
  text-align:center;
}

.hero-content{
  max-width:100%;
}

.hero h1{
  font-size:48px;
  text-align:center;
}

.hero-sub{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.hero-buttons{
  justify-content:center;
  flex-direction:column;
  align-items:center;
}

.hero-badge-strip{
  justify-content:center;
}

.hero-badge{
  position:static;
  margin:20px auto;
  width:auto;
}

/* =========================
   LOGO IMAGE FIX
========================= */

.logo img{
  height:60px;
  width:auto;
  object-fit:contain;
}

/* MOBILE */

@media(max-width:768px){

.logo img{
  height:70px;
  width:auto;
  max-width:220px;
}

}



}