@font-face {
  font-family: 'poppins';
  src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'),
    url('../fonts/poppins-regular-webfont.woff') format('woff');
  font-weight: normal;
}

@font-face {
  font-family: 'poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
    url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
    url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}


* {
  box-sizing: border-box;
}

body,
html {
  min-height: 100vh;
  margin: 0;
  font-family: 'poppins', sans-serif;
}

body {
  background: #fff;
}

.bgimg {
  background-image: url('../images/bg.png');
  min-height: 100vh;

  background-position: center;
  background-repeat: no-repeat;

  background-size: 100% 100%;
}

.middle {
  width: min(100%, 1200px);
  max-width: 1200px;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}



.eyebrow {
  color: #F6B000;
  font-weight: 600;
  font-size: 28px;
  padding-left: 80px;
  margin: 0;
  letter-spacing: 0.1em;
  padding-top: 30px;
}

.hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  padding-left: 80px;
  letter-spacing: 0.1em;
}

.hero .sub {
  margin-top: 0;
  color: #132743;
  font-weight: 600;
  font-size: 22px;
  padding-left: 80px;
  letter-spacing: 0.1em;
}

.green {
  color: #19A974;
}

.blue {
  color: #1EA6F2;
}


hr {
  width: 37px;
  margin: 20px auto;
}

.companylogo img {
  width: 100%;
  max-width: 420px;
  margin-top: 32px;
  display: block;
  object-fit: contain;
}

.companylogo svg {
  width: 100%;
  height: auto;
}

.address a {
  color: #ffff;
  text-decoration: none;
}

.conven-para {
  line-height: 28px;
  font-size: 18px;
  color: #111;
  margin-top: 24px;
  font-weight: 500;
}

.hero {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.container .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.container .hero {
  max-width: 550px;
}

@media screen and (max-width: 1024px) {
  .middle {
    padding: 32px;
    gap: 40px;
  }

  .container {
    gap: 40px;
  }
}

@media screen and (max-width: 991px) {
  .middle {
    width: 100%;
    padding: 28px;
  }

  .container {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .container .right {
    justify-content: center;
  }

  .hero {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(44px, 6vw, 56px);
    line-height: 1.1;
    padding-left: 50px;
  }

  .eyebrow {
    font-size: 0.9rem;
    padding-left: 50px;
  }

  .companylogo svg,
  .companylogo img {
    max-width: 320px;
  }

  .hero .sub {
    padding-left: 50px;
  }

}

@media screen and (max-width: 767px) {
  .bgimg {
    padding: 24px 16px;
    background-image: url('../images/bg-mobile.png') !important;
    /* min-height: auto; */
    align-items: flex-center;
    padding-top: 40px;
  }

  .middle {
    padding: 0;
    /* border-radius: 16px; */
    /* background: rgba(255, 255, 255, 0.92); */
  }

  .container {
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.12;
  }

  .eyebrow {
    font-size: 0.85rem;
  }


  .conven-para {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 600px) {


  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
     padding-left: 10px;
  }

  .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
     padding-left: 10px;
     padding-top: 200px;
  }

  .hero .sub {
    font-size: 0.85rem;
     padding-left: 10px;
  }
    .companylogo svg, .companylogo img {
        max-width: 260px;
    }
  /* .companylogo svg,
  .companylogo img {
    max-width: 100%;
    margin-top: 16px;
  } */

  .conven-para {
    font-size: 14px;
    line-height: 1.5;
  }
}