:root {
  /* ===================================
     SMACSS BASE - Design System Tokens
     =================================== */

  /* Typography */
  --font-family-primary: "Poppins", sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /* Color Palette */
  --primary-color: #2B3E50;
  --primary-color-hover: #3d5468;
  --secondary-color: #2B3E50;
  --accent-color: #2B3E50;

  /* Text Colors */
  --text-color-heading: #2B3E50;
  --text-color-heading-hover: #BEC5C9;
  --text-color-primary: #2B3E50;
  --text-color-contrast: #EEEEEE;
  --text-color-light: #DDDEDD;

  /* Background Colors */
  --background-color-body: #EEEEEE;
  --background-color-section-primary: #DDDEDD;
  --background-color-section-secondary: #2B3E50;
  --background-color-footer: #2B3E50;
  --background-color-button-footer: #2B3E50;

  /* Borders & Shadows */
  --border-color-light: #BEC5C9;
  --shadow-color-primary: rgba(43, 62, 80, 0.3);
  --shadow-color-primary-light: rgba(43, 62, 80, 0.25);

  /* Spacing Scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.625rem;
  --spacing-md: 0.9375rem;
  --spacing-lg: 1.25rem;
  --spacing-xl: 1.875rem;

  /* Border Radius Scale */
  --border-radius-sm: 0.5rem;
  --border-radius-md: 0.625rem;
  --border-radius-lg: 1.875rem;
  --border-radius-pill: 3.125rem;

  /* Animation Duration */
  --animation-duration-fast: 0.3s;
  --animation-duration-normal: 0.6s;

  /* Responsive Breakpoints */
  --breakpoint-xs: 384px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1366px;
  /* Fixed navbar anchor offset (updated dynamically via JS) */
  --navbar-offset: 72px;
  /* Default fallback value */
}

/* ===================================
   SMACSS BASE - GLOBAL STYLES
   =================================== */
html {
  scroll-behavior: smooth;
}

/*
 * Anchor offset compensation for fixed navbar
 * Applies to all sections and elements with IDs that might be navigation targets
 */
section[id],
header[id],
main[id],
footer[id],
div[id] {
  scroll-margin-top: var(--navbar-offset);
}

body {
  overflow-x: hidden;
  background-color: var(--background-color-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  color: var(--text-color-heading);
}

p,
a {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  color: var(--text-color-primary);
}

a {
  text-decoration: none !important;
}

/* ===================================
   SMACSS LAYOUT - HEADER & NAVIGATION
   =================================== */
.navbar {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1000;
}

h1>.navbar-img {
  color: var(--accent-color) !important;
  font-size: 25px;
}

@media only screen and (max-width: 992px) {
  .navbar-collapse {
    text-align: center;
  }
}

.format-text-nav a {
  color: var(--text-color-heading) !important;
}

.format-text-nav a:hover {
  color: var(--text-color-heading-hover) !important;
}

.format-size-text a {
  font-size: 22px;
}

.withUs {
  color: var(--primary-color) !important;
}

.withUs:hover {
  color: var(--primary-color-hover) !important;
}

.format-text-nav a.btn-nav {
  background-color: var(--primary-color) !important;
  color: var(--text-color-contrast) !important;
  border-radius: var(--border-radius-pill);
  padding: 10px 20px !important;
  margin: 0 15px;
  font-weight: var(--font-weight-bold);
  transition: background-color 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 6px var(--shadow-color-primary-light);
}

.format-text-nav a.btn-nav:hover {
  background-color: var(--primary-color-hover) !important;
  transform: translateY(-2px);
  color: #fff !important;
}

/* btn-nav responsive styles moved to comprehensive responsive section */

/* ===================================
   SMACSS MODULES - HERO CAROUSEL
   =================================== */

.carousel-item {
  height: 100vh;
  min-height: 350px;
  max-height: 600px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center 45%;
}

.image-background-color {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.40) 55%,
    rgba(0, 0, 0, 0.10) 100%
  );
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-text {
  text-align: left;
  position: absolute;
  top: 40%;
  left: 5%;
  transform: translateY(-50%);
  color: #ffffff;
  max-width: 55%;
  padding: 0 2rem;
}

.hero-text span {
  color: #b8d4f0 !important;
}

.hero-text>h2 {
  font-size: 50px !important;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-text>p {
  color: #f0f0f0 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  font-size: 1.05rem;
  max-width: 480px;
}

/* Carousel arrows — repositioned to bottom to avoid overlapping hero text */
.carousel-control-prev,
.carousel-control-next {
  top: auto;
  bottom: 20px;
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  opacity: 1;
}

.carousel-control-prev {
  left: auto;
  right: 80px;
}

.carousel-control-next {
  right: 24px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* hero-text 1366px responsive styles moved to comprehensive responsive section */

.background-section-two {
  background-color: var(--primary-color);
}

.background-section-two h2 {
  color: var(--text-color-contrast);
}

/* Portal Results Section UI/UX Optimization - Compact style */
.btn-result-portal {
  background: #ffffff;
  color: var(--primary-color) !important;
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  font-size: 1.1rem;
  padding: 12px 35px;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-result-portal:hover {
  background: #b8d4f0; /* Soft accent blue on hover */
  color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 212, 240, 0.45);
}

.btn-result-portal:active {
  transform: translateY(0);
}

.btn-result-portal .transition-arrow {
  transition: transform 0.3s ease;
}

.btn-result-portal:hover .transition-arrow {
  transform: translateX(5px);
}

@media only screen and (max-width: 768px) {
  .btn-result-portal {
    font-size: 1rem;
    padding: 10px 24px;
    width: 100%;
    max-width: 320px;
  }
}


.click {
  cursor: pointer !important;
}

/* ===================================
   SMACSS LAYOUT - MAIN CONTENT
   =================================== */
/* Module: About Section */
.img-main-one {
  max-width: 500px;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .img-main-one {
    max-width: 320px !important;
  }
}

@media only screen and (max-width: 384px) {
  .img-main-one {
    max-width: 280px !important;
    margin: auto !important;
  }
}

.who-we-are>h2 {
  color: var(--text-color-heading);
}

.who-we-are p {
  color: var(--text-color-primary) !important;
}

/* Module: Icon Highlights */
.format-text-icon>i {
  padding: 20px 20px !important;
  background-color: var(--primary-color) !important;
  color: white;
  border-radius: 50%;
  /* margin: 0px 140px 0px 140px !important; */
  font-size: 25px;
}

@media only screen and (max-width: 384px) {
  .format-text-icon>i {
    padding: 20px 20px !important;
    background-color: var(--primary-color) !important;
    color: white;
    border-radius: 50%;
    margin: 0px !important;
    font-size: 25px;
  }
}

.format-text-icon {
  text-align: center !important;
}

.format-text-icon p {
  color: var(--text-color-primary) !important;
}

.format-text-icon h5 {
  padding-top: 15px;
  color: var(--text-color-heading);
}

/* Module: Feature Spotlight */
.background-main-section-three {
  background-color: var(--background-color-section-primary);
}

.background-main-section-three h2 {
  color: var(--text-color-heading);
}

.featured {
  color: var(--primary-color) !important;
}

.img-main-three>img {
  max-width: 500px;
  position: relative;
  top: -50px;
}

.btn-section-three>button,
.btn-section-three>a {
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-weight: bold;
  padding: 15px;
}

.btn-section-three {
  text-align: left;
}

/* img-main-three responsive styles moved to comprehensive responsive section */

/* Module: Locations Gallery */

.background-main-section-four .container-fluid {
  text-align: center !important;
}

.btn-section-four>button {
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-weight: bold;
  padding: 15px;
}

.btn-section-four {
  text-align: center !important;
}

.map {
  color: white !important;
  font-weight: bold !important;
}

.map:hover {
  text-decoration: underline !important;
}

.row .img-background-section-four {
  height: 400px;
  max-width: 320px;
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.row .img-background-section-four:nth-child(1) {
  background-image: url("../img/unity01.jpg");
}

.row .img-background-section-four:nth-child(2) {
  background-image: url("../img/unity02.jpg");
}

.row .img-background-section-four:nth-child(3) {
  background-image: url("../img/unity03.jpg");
}

.row .img-background-section-four:nth-child(4) {
  background-image: url("../img/unity02.jpg");
}

@media only screen and (max-width: 767px) {
  .row .img-background-section-four {
    height: 400px;
    max-width: 90%;
    border-radius: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .row .img-background-section-four:nth-child(1) {
    background-image: url("../img/unity01.jpg");
  }

  .row .img-background-section-four:nth-child(2) {
    background-image: url("../img/unity02.jpg");
  }

  .row .img-background-section-four:nth-child(3) {
    background-image: url("../img/unity03.jpg");
  }

  .row .img-background-section-four:nth-child(4) {
    background-image: url("../img/unity02.jpg");
  }
}

.text-format-four {
  text-align: center;
  top: 35% !important;
  position: relative;
  color: var(--text-color-contrast);
}

.text-format-four h4,
.text-format-four p,
.text-format-four span {
  color: var(--text-color-contrast);
}

.image-background-color-four {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.image-background-color-four-in {
  background-color: var(--background-color-section-primary);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.text-format-four-in {
  text-align: center;
  top: 10% !important;
  position: relative;
  color: var(--text-color-contrast);
}

.text-format-four-in h4,
.text-format-four-in p,
.text-format-four-in span {
  color: var(--text-color-contrast);
}

.text-format-four-in p {
  font-size: 14px !important;
}


/* Module: Testimonials Slider */
.glider-dot.active {
  background: var(--primary-color);
}

.main-section-six h2 {
  color: var(--text-color-heading);
}

.main-section-six p {
  color: var(--text-color-primary);
}

/* Module: Company History Image */
#who .row {
  align-items: stretch;
}

#who .col-sm-12.col-md-12.col-lg-6:first-child {
  display: flex;
}

.img-main-one {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Module: Team Spotlight */

.background-main-section-seven {
  background-color: var(--background-color-section-secondary);
}

.background-main-section-seven h2 {
  color: white !important;
  padding: 10px 0px 20px 0px;
}

.background-main-section-seven p {
  color: var(--text-color-primary);
}

/* Module: BMI Calculator */
.imc {
  margin-top: 30px !important;
}

.imc .input {
  font-family: var(--font-family-primary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color-primary);
  background-color: #ffffff;
  border: 1px solid var(--background-color-section-secondary);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.imc .input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 118, 209, 0.18);
}

.imc .input::placeholder {
  color: rgba(65, 66, 82, 0.6);
}

.imc-button {
  display: inline-block;
  font-family: var(--font-family-primary);
  font-weight: 700;
  background-color: var(--background-color-section-secondary);
  color: #ffffff;
  border: 1px solid var(--background-color-section-secondary);
  border-radius: 9999px;
  padding: 0.75rem 2.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.imc-button:hover,
.imc-button:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(26, 118, 209, 0.25);
  outline: none;
}

.format-text-section-ten h3 {
  color: var(--primary-color);
}

.main-section-ten {
  color: var(--text-color-primary);
}

#img-imc {
  max-width: 18.125rem;
  width: 100%;
}

/* Module: Contact Section */
.main-section-eleven h2 {
  color: var(--text-color-heading);
}

.main-section-eleven p {
  color: var(--text-color-primary);
}

.main-section-eleven input {
  border-color: var(--background-color-section-secondary) !important;
}

.main-section-eleven textarea {
  border-color: var(--background-color-section-secondary) !important;
}

.main-section-eleven button {
  background-color: var(--background-color-section-secondary);
  padding-left: 50px;
  padding-right: 50px;
  border-color: var(--background-color-section-secondary) !important;
  border-radius: 50px !important;
}

/* ===================================
   SMACSS LAYOUT - FOOTER
   =================================== */
.background-section-footer-one {
  background-color: var(--background-color-footer);
}

.background-section-footer-one p {
  color: white !important;
}

.background-section-footer-one a {
  color: white !important;
  text-decoration: none !important;
}

.background-section-footer-one a:hover {
  text-decoration: underline !important;
}

@media only screen and (max-width: 992px) {
  .background-section-footer-one p {
    text-align: center !important;
  }
}

/*Sticky não mexer*/
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 2%;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50px;
}

#myBtn:hover {
  background-color: #555;
}

.show {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Floating WhatsApp Button */
.whats-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whats-floating:hover {
  background-color: #1ebe57;
  color: #fff;
  transform: scale(1.1);
  text-decoration: none;
}

/* ===================================
   RESPONSIVE - COMPREHENSIVE OVERHAUL
   =================================== */

/* --- Medium / Large desktops (max-width: 1550px) --- */
@media only screen and (max-width: 1550px) {
  .format-text-nav a.btn-nav {
    padding: 10px 15px !important;
    margin: 0 10px;
  }

  .format-size-text a {
    font-size: 18px;
  }

  .hero-text {
    margin: 0px 150px 0px 60px !important;
  }
}

/* --- Notebooks / Small desktops (max-width: 1366px) --- */
@media only screen and (max-width: 1366px) {
  .format-text-nav a.btn-nav {
    padding: 8px 20px !important;
    margin: 0 15px;
    font-size: 16px;
  }

  .format-size-text a {
    font-size: 18px;
  }
}

/* --- Tablets landscape / small laptops (max-width: 1200px) --- */
@media only screen and (max-width: 1200px) {
  .format-text-nav a.btn-nav {
    padding: 8px 16px !important;
    margin: 0 8px;
    font-size: 15px;
  }

  .hero-text>h2 {
    font-size: 28px !important;
  }

  .hero-text>p {
    font-size: 14px;
  }
}

/* --- Tablets portrait (max-width: 992px) --- */
@media only screen and (max-width: 992px) {

  /* Navbar */
  .navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .navbar-brandg.navbar-img {
    padding-right: 0 !important;
  }

  .navbar-brandg.navbar-img img {
    height: 3.5rem !important;
  }

  .format-text-nav a.btn-nav {
    margin: 6px auto;
    display: block;
    text-align: center;
    max-width: 250px;
    font-size: 15px;
    padding: 10px 20px !important;
  }

  .format-size-text a {
    font-size: 16px;
  }

  /* Hero carousel */
  .carousel-item {
    height: 60vh;
    min-height: 280px;
    max-height: 450px;
  }

  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    padding: 0 20px;
    width: 90%;
  }

  .hero-text>h2 {
    font-size: 24px !important;
  }

  .hero-text>p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Exams section */
  .img-main-three>img {
    max-width: 100%;
    position: relative;
    top: 20px;
  }

  .background-main-section-three {
    padding-bottom: 40px !important;
  }

  .background-main-section-three h2 {
    font-size: 24px;
  }

  .btn-section-three {
    text-align: center !important;
  }

  .background-main-section-three>.container {
    text-align: center !important;
  }

  /* About section (Quem Somos) */
  #who .row {
    flex-direction: column;
    align-items: center;
  }

  .img-main-one {
    max-width: 350px !important;
    display: block;
    margin: 0 auto 20px auto !important;
  }

  .who-we-are {
    text-align: center;
  }

  .who-we-are>h2 {
    margin-top: 15px;
  }

  /* Footer */
  .background-section-footer-one .row {
    text-align: center;
  }

  .background-section-footer-one iframe {
    height: 280px;
  }

  /* Coleta section */
  .format-text-section-ten {
    text-align: center !important;
  }

  .format-text-section-ten h3 {
    text-align: center !important;
    font-size: 22px;
  }

  .format-text-section-ten ul {
    display: inline-block;
    text-align: left;
  }

  /* Icon section */
  .format-text-icon {
    margin-bottom: 30px;
  }

  /* Partners */
  #partners {
    overflow: hidden;
  }

  #partners .container {
    width: 100% !important;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* --- Tablets small / large phones (max-width: 768px) --- */
@media only screen and (max-width: 768px) {

  /* Hero carousel */
  .carousel-item {
    height: 50vh;
    min-height: 250px;
    max-height: 380px;
  }

  /* Darken overlay for better text readability on mobile */
  .image-background-color {
    background-color: rgba(0, 0, 0, 0.60);
  }

  .hero-text {
    width: 95%;
    padding: 0 15px;
  }

  .hero-text>h2 {
    font-size: 20px !important;
    line-height: 1.3;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.4);
  }

  .hero-text span {
    color: #b8d4f0 !important;
  }

  .hero-text>p {
    font-size: 12px;
    line-height: 1.4;
    color: #f0f0f0 !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  }

  /* Results section */
  .background-section-two h2 {
    font-size: 20px;
  }



  /* Exams section */
  .background-main-section-three h2 {
    font-size: 20px;
  }

  .img-main-three>img {
    max-width: 90%;
    top: 20px;
  }


  /* Footer */
  .background-section-footer-one iframe {
    height: 250px;
  }

  .background-section-footer-one .col-sm-12 {
    text-align: center;
    margin-bottom: 20px;
  }

  /* Coleta section */
  .format-text-section-ten h3 {
    font-size: 20px;
  }

  /* About section */
  .who-we-are p {
    font-size: 14px;
  }

  .who-we-are>h2 {
    font-size: 22px;
  }

  .img-main-one {
    max-width: 280px !important;
  }

  /* Partners carousel */
  #partners h2 {
    font-size: 22px;
  }

  #partners p {
    font-size: 14px;
    padding: 0 15px;
  }
}

/* --- Phones (max-width: 576px) --- */
@media only screen and (max-width: 576px) {

  /* Navbar */
  .navbar-brandg.navbar-img img {
    height: 3rem !important;
  }

  .navbar-brandg.navbar-img {
    padding-right: 0 !important;
  }

  /* Hero carousel */
  .carousel-item {
    height: 45vh;
    min-height: 220px;
    max-height: 320px;
  }

  .hero-text>h2 {
    font-size: 17px !important;
    line-height: 1.3;
  }

  .hero-text>p {
    font-size: 11px;
    line-height: 1.4;
    margin-top: 8px;
  }

  /* Results section */
  .background-section-two h2 {
    font-size: 18px;
    padding: 0 10px;
  }

  .space-result {
    padding: 0 10px;
  }



  /* Icon highlights */
  .format-text-icon>i {
    font-size: 20px;
    padding: 15px 15px !important;
  }

  .format-text-icon h5 {
    font-size: 16px;
  }

  .format-text-icon p {
    font-size: 14px;
    padding: 0 10px;
  }

  /* Exams section */
  .background-main-section-three h2 {
    font-size: 18px;
  }

  .img-main-three>img {
    max-width: 100%;
    top: 10px;
  }


  /* Coleta section */
  #coleta {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .format-text-section-ten h3 {
    font-size: 18px;
  }

  .format-text-section-ten ul {
    font-size: 0.95rem !important;
  }

  /* Custom slider buttons */
  .custom-slider-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .custom-slider-btn.prev-btn {
    left: 8px;
  }

  .custom-slider-btn.next-btn {
    right: 8px;
  }

  /* Partners section */
  #partners h2 {
    font-size: 20px;
  }

  #partners p {
    font-size: 13px;
  }

  /* About section */
  .who-we-are>h2 {
    font-size: 20px;
  }

  .who-we-are p {
    font-size: 13px;
    line-height: 1.6;
  }

  .img-main-one {
    max-width: 260px !important;
  }

  /* Footer */
  .background-section-footer-one {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .background-section-footer-one iframe {
    height: 220px;
  }

  .background-section-footer-one p span[style*="font-size: 20px"] {
    font-size: 18px !important;
  }

  /* Floating buttons */
  .whats-floating {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 15px;
    right: 15px;
  }

  #myBtn {
    bottom: 15px;
    left: 15px;
    padding: 12px;
    font-size: 14px;
  }
}

/* --- Small phones (max-width: 480px) --- */
@media only screen and (max-width: 480px) {

  /* Navbar */
  .navbar-brandg.navbar-img img {
    height: 2.5rem !important;
  }

  /* Hero carousel */
  .carousel-item {
    height: 40vh;
    min-height: 200px;
    max-height: 280px;
  }

  .hero-text {
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .hero-text>h2 {
    font-size: 15px !important;
    line-height: 1.3;
  }

  .hero-text>p {
    font-size: 10px;
    line-height: 1.3;
    margin-top: 5px;
  }

  /* Carousel controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 8%;
  }

  /* Results section */
  .background-section-two h2 {
    font-size: 16px;
  }

  /* CTA */
  .btn-section-three>a,
  .btn-section-three>button {
    padding: 10px;
    font-size: 14px;
  }

  /* Footer */
  .background-section-footer-one iframe {
    height: 200px;
  }
}

/* --- Very small phones (max-width: 384px) --- */
@media only screen and (max-width: 384px) {
  .navbar-brandg.navbar-img img {
    height: 2.2rem !important;
  }

  .carousel-item {
    height: 35vh;
    min-height: 180px;
    max-height: 250px;
  }

  .hero-text>h2 {
    font-size: 14px !important;
  }

  .hero-text>p {
    font-size: 9.5px;
  }

  .background-section-two h2 {
    font-size: 15px;
  }

  .img-main-one {
    max-width: 220px !important;
    margin: auto !important;
  }

  .who-we-are>h2 {
    font-size: 18px;
  }

  .who-we-are p {
    font-size: 12px;
  }

  .format-text-icon p {
    font-size: 13px;
  }

  .background-section-footer-one iframe {
    height: 180px;
  }
}