/* LAYOUT */
.container2 {
  max-width: 95%;
  margin: auto;
}

/* HERO */
.hero {

  color: #fff;
  margin-top: 85px;
}

.hero-inner {
  background: linear-gradient(135deg, #094072, #0b2a4a);
  display: flex;
  height: 520px;
  flex-direction: column;
  justify-content: center;
  width: 95%;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/SPECIALTY-LOGO.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 709px auto;
  opacity: .2
}

.hero h1 {
  font-size: 3.75vw;
  color: #FFF;
  position: relative;
  z-index: 1;
}



.hero h2 {
  font-size: 24px;
  margin-top: 10px;
  color: #FFF;
  position: relative;
  z-index: 1;
}

.container2.center {
  text-align: center;
}

/* FINAL */
.final {
  padding: 80px 0px;
  background: #f6f7fb;
}

.iss_img {
  max-width: 650px;
  width: 100%;
  border-radius: 32px;
}

.qr {
  max-width: 215px;
}

.section h2 {
  font-size: 52px;
}

.section h3 {
  font-size: 32px;
}

.smale_simulator a {
  color: #696C8B;
  text-decoration: none;
}

a.inv-btn-pink {
  background-color: #dc1b7a;
  border-bottom-color: #dc1b7a;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  border-bottom-style: solid;
  border-bottom-width: 1.9px;
  border-left-color: #dc1b7a;
  border-left-style: solid;
  border-left-width: 1.9px;
  border-right-color: #dc1b7a;
  border-right-style: solid;
  border-right-width: 1.9px;
  border-top-color: #dc1b7a;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-top-style: solid;
  border-top-width: 1.9px;
  box-shadow: none;
  box-sizing: border-box;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1.25px;
  line-height: 24px;
  margin-bottom: 20px;
  margin-top: 20px;
  outline-style: none;
  outline-width: 0px;
  padding-bottom: 18px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 18px;
  position: relative;
  text-align: center;
  color: #FFF;
  display: block;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

a.inv-btn-pink:hover {
  background-color: #FFF;
  color: #000
}

.reviews-section {
  padding: 80px 0;
  background: #FAFAFA;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 24px 0px;
  border: 1px solid rgb(232, 232, 240);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.review-stars {
  color: #FFA500;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  gap: 2px;
}

.g-logo {
  font-size: 52px;
  font-weight: 700;
  color: #dc1b7a;
}

.g-logo span {
  color: #EA4335;
}

.review-card p {
  margin-bottom: 16px;
}

.reviewer {
  font-size: 14px;
  font-weight: 600;
}

.reviews-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgb(232, 232, 240);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.nav-btn:hover {
  background: #4285F4;
  color: white;
  border-color: #4285F4;
}

/* RESPONSIVE */
@media(max-width:1200px) {
  .container2 {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media(max-width:768px) {
  .hero {
    margin: 0;
  }

  .section h2 {
    font-size: 32px;
  }

  .section h3 {
    font-size: 24px;
  }

  .hero-inner {
    height: 344px;
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.22em;
    letter-spacing: 0;
  }

  .hero h2 {
    font-size: 18px;
  }
}