html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  min-height: 100vh;
}

*::-webkit-scrollbar {
  width: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: #6e6e6e;
}
*::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 100, 100, 0.4);
}

a {
  text-decoration: none;
}

html body .hidden {
  display: none;
}

html body .disabled {
  opacity: 0.5;
  pointer-events: none;
}
html body .inactive {
  pointer-events: none;
}

button,
.btn {
  padding: 0.75rem 2rem;
  background-color: #000;
  border: 1px solid #000;
  outline: none;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
button:hover,
.btn:hover {
  opacity: 0.9;
}
@media (hover: none) {
  button:hover,
.btn:hover {
    opacity: 1;
  }
}
button b,
.btn b {
  font-size: 16px;
  color: #fff;
}
button svg,
.btn svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.5rem;
  color: #fff;
}

.emptyBtn {
  background-color: transparent;
}
.emptyBtn b {
  color: #000;
}

img {
  user-select: none;
}

@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto/Roboto-Bold.woff2") format("woff2"), local("Roboto");
  font-display: swap;
}
@font-face {
  font-family: "Nunito-Light";
  src: url("../fonts/Nunito/Nunito-Light.woff2") format("woff2"), local("Nunito");
  font-display: swap;
}
* {
  font-family: Nunito-Light, Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
  font-family: Roboto-Bold, Arial, Helvetica, sans-serif;
  color: #000;
}

p,
span {
  line-height: 130%;
  color: #000;
}

.nav {
  width: 85vw;
  padding: 0.5vh 15vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  box-shadow: 0px 4px 4px rgba(85, 82, 77, 0.05);
}
.nav .navLogoContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav .navLogoContainer .navLogo {
  width: 22.1vh;
  height: 6.5vh;
}
.nav .navMenu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
  margin-left: 1vw;
}
.nav .navMenu .navLink {
  font-size: 19px;
  margin: 0 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}
.nav .navMenu .navLink span {
  color: #fff;
}
.nav .navMenu .navLink:hover span {
  color: #f59e0b;
}
.nav .btn {
  width: 9.5vw;
  height: 2.2941176471vw;
  padding: 0;
  background-color: #fff;
  border: 1px solid #fff;
}
.nav .btn b {
  color: #000;
}

@media (min-width: 901px) and (max-width: 1400px) and (orientation: landscape) {
  html body .nav {
    width: 90vw;
  }
  html body .nav .navMenu .navLink {
    font-size: 15px;
  }
  html body .nav .btn {
    min-width: 11vw;
    min-height: 2.7352941176vw;
    padding: 0 1vw;
  }
}
@media (min-width: 1401px) and (max-width: 1650px) and (orientation: landscape) {
  html body .nav .navMenu .navLink {
    font-size: 18px;
  }
  html body .nav .btn {
    width: 10vw;
    height: 2.4411764706vw;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  html body .nav {
    width: 94vw;
    padding: 0.5vh 3vw;
  }
  html body .nav .navLogoContainer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  html body .nav .navLogoContainer .navLogo {
    width: 18.7vh;
    height: 5.5vh;
  }
  html body .nav .navMenu .navLink {
    font-size: 17px;
    margin: 0 1vw;
  }
  html body .nav .navMenu .navLink:first-of-type {
    margin-left: 2vw;
  }
  html body .nav .btn {
    width: fit-content;
    height: 4vh;
    padding: 0 3vw;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  html body .nav {
    width: 90vw;
    padding: 0.5vh 5vw;
  }
  html body .nav .navMenu {
    display: none;
  }
  html body .nav .navLogoContainer .navLogo {
    width: 40vw;
    height: 11.7647058824vw;
  }
  html body .nav .btn {
    width: 35vw;
    height: 8.0588235294vw;
  }
  html body .nav .btn b {
    font-size: 15px;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  html body .nav {
    width: 90vw;
    padding: 1vh 5vw;
  }
  html body .nav .navLogoContainer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  html body .nav .navLogoContainer .navLogo {
    width: 34vh;
    height: 10vh;
  }
  html body .nav .navMenu .navLink {
    margin: 0 2vw;
  }
  html body .nav .navMenu .navLink span {
    font-size: 12px;
  }
  html body .nav .btn {
    width: fit-content;
    height: 7vh;
    padding: 0 3vw;
  }
  html body .nav .btn b {
    font-size: 14px;
  }
}
.promoBar {
  width: 100vw;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.promoBar .promoBtn {
  background-color: #000;
  padding: 0.5rem 2rem;
  border: 1px solid;
  border-color: rgba(0, 0, 0, 0);
}
.promoBar .promoBtn span {
  color: #fff;
}
.promoBar .promoBtn:hover {
  background-color: #fff;
  opacity: 1;
  border-color: #000;
}
.promoBar .promoBtn:hover span {
  color: #000;
}

.promoTxt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
}
.promoTxt b,
.promoTxt span {
  color: #545454;
}
.promoTxt .verticalBar {
  margin: 0 1rem;
  align-self: stretch;
  background-color: #000;
}

.footer {
  width: 100vw;
  padding: 2rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.footerNav {
  width: 65vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footerLogo {
  width: 10vw;
  height: 2.9411764706vw;
}

.footerMenu {
  width: 20vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footerMenu span,
.footerMenu b {
  color: #fff;
}

.socialBtnContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.socialBtnContainer span {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-size: 12px;
}
.socialBtnContainer .letsConnectTxt {
  white-space: nowrap;
  position: relative;
  right: 0.5rem;
  font-size: 16px;
}

.footerLink {
  padding: 1rem;
  cursor: pointer;
}
.footerLink:hover span,
.footerLink:hover b {
  opacity: 0.7;
}

.socialBtns {
  width: 10vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.socialBtns span {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
}

.socialBtn {
  padding: 0.75rem;
  border-radius: 25%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.socialBtn svg {
  width: 1rem;
  height: 1rem;
}
.socialBtn svg path {
  fill: #000;
}
.socialBtn:hover svg {
  opacity: 0.8;
}

.divider {
  width: 65vw;
  height: 1px;
  margin: 1rem 0 1rem 0;
  background-color: #505459;
}

.footerDetails {
  width: 65vw;
  display: flex;
  align-items: center;
}
.footerDetails span {
  color: #fff;
  font-size: 12px;
  user-select: auto;
}
.footerDetails .verticalBar {
  width: 1px;
  height: 1rem;
  background-color: #505459;
  margin: 0 1rem;
}

.legalAddress {
  margin-top: 0.5rem;
  align-self: flex-start;
  margin-left: 17.5vw;
  font-size: 12px;
  color: #fff;
}

.copyright {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  position: relative;
  bottom: 0.1rem;
}
.copyright svg path {
  stroke: #fff;
}

@media (min-width: 901px) and (max-width: 1400px) and (orientation: landscape) {
  html body .socialBtnContainer .letsConnectTxt {
    right: 2rem;
  }
  html body .footerLogo {
    width: 12vw;
    height: 3.5294117647vw;
  }
  html body .socialBtn {
    padding: 0.6rem;
  }
  html body .socialBtn svg {
    width: 0.9rem;
    height: 0.9rem;
  }
}
@media (min-width: 1401px) and (max-width: 1650px) and (orientation: landscape) {
  html body .footerLogo {
    width: 12vw;
    height: 3.5294117647vw;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  html body .footer .footerNav {
    width: 80vw;
  }
  html body .footer .footerLogo {
    width: 20vw;
    height: 5.8823529412vw;
  }
  html body .footer .footerMenu {
    width: 30vw;
  }
  html body .footer .socialBtns {
    width: auto;
  }
  html body .footer .footerDetails {
    width: 80vw;
  }
  html body .footer .legalAddress {
    margin-left: 10vw;
  }
  html body .footer .letsConnectTxt {
    display: none;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  html body .footer .footerNav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    padding: 0.5rem 0;
  }
  html body .footer .footerLogo {
    width: 50vw;
    height: 14.7058823529vw;
  }
  html body .footer .footerMenu {
    width: 80vw;
    margin: 2rem 0;
  }
  html body .footer .socialBtns {
    width: 50vw;
  }
  html body .footer .footerDetails {
    width: 100vw;
    flex-direction: column;
    height: 10vh;
    justify-content: space-between;
  }
  html body .footer .footerDetails .verticalBar {
    display: none;
  }
  html body .footer .footerDetails > span {
    margin-top: 0.5rem;
  }
  html body .footer .footerDetails span {
    font-size: 12px;
    user-select: auto;
    color: #fff;
  }
  html body .footer .legalAddress {
    align-self: center;
    margin-left: 0;
    margin-top: 1rem;
  }
  html body .footer .copyright svg {
    margin-right: 0.25rem;
    position: static;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  html body .footer .letsConnectTxt {
    display: none;
  }
  html body .footer .footerLogo {
    width: 15vw;
    height: 4.4117647059vw;
  }
  html body .footer .footerMenu {
    width: 35vw;
    position: relative;
    left: 1vw;
  }
  html body .footer .footerMenu .footerLink {
    padding: 0;
  }
  html body .footer .footerMenu .footerLink b {
    font-size: 14px;
  }
  html body .footer .socialBtns {
    justify-content: flex-end;
  }
  html body .footer .socialBtns .socialBtn {
    padding: 0.5rem;
  }
  html body .footer .socialBtns .socialBtn svg {
    width: 0.75rem;
    height: 0.75rem;
  }
  html body .footer .copyright svg {
    margin-right: 0.25rem;
    bottom: 0.05rem;
  }
}
.navModal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 2rem 0 3rem 0;
}

.mobilNavLogo {
  width: 40vw;
  margin-bottom: 2rem;
}

.mobileNavMenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobileNavMenu .navLink {
  font-size: 20px;
  margin: 0.75rem 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 8;
}

.disabledOverlay {
  pointer-events: none;
}

.modal {
  position: absolute;
  width: 40vw;
  height: 80vh;
  padding: 4vh 2vw;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(85, 82, 77, 0.2);
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  border-radius: 5px;
  overflow-x: hidden;
}
.modal p {
  width: 80%;
}

.closeModalBtn {
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  padding: 0.5rem;
  border-radius: 50%;
  position: absolute;
  top: 4vh;
  right: 25vw;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.closeModalBtn svg {
  width: 1.25vw;
  height: 1.25vw;
}
.closeModalBtn svg path {
  stroke: #fff;
}
.closeModalBtn:hover svg {
  transition: all 1s;
  transform: rotate(-90deg);
  opacity: 0.6;
}
@media (hover: none) {
  .closeModalBtn:hover svg {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.meetingOverlay .closeModalBtn {
  top: 5vh;
  right: 12vw;
}

.meetingModal {
  width: 70vw;
  height: 70vh;
  padding: 4rem 0;
  max-height: none;
  max-width: none;
  background-color: #fafafa;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.meetingModal::-webkit-scrollbar {
  width: 7.5px;
}
.meetingModal::-webkit-scrollbar-track {
  border-radius: 7.5px;
}
.meetingModal::-webkit-scrollbar-thumb {
  border-radius: 7.5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: #646464;
  cursor: pointer;
}
.meetingModal::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 100, 100, 0.4);
}
.meetingModal .contactInfo {
  background-color: teal;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 2.5px;
}
.meetingModal .contactInfo .contactMethod {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem 0;
}
.meetingModal .contactInfo .contactMethod svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 1rem;
}
.meetingModal .contactInfo .contactMethod svg path {
  fill: #fff;
}
.meetingModal .contactInfo b,
.meetingModal .contactInfo span {
  color: #fff;
  font-size: 14px;
}
.meetingModal .meetings-iframe-container {
  width: 100%;
  height: 100%;
}

@media (max-width: 600px) and (orientation: portrait) {
  .modal {
    max-height: 80vh;
    width: 70vw;
    padding: 2.5vw;
    overflow-x: hidden;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  .modal {
    max-height: 80vh;
    width: 70vw;
    padding: 2.5vw;
    overflow-x: hidden;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  .modal {
    max-height: 80vh;
    width: 70vw;
    padding: 2.5vw;
    overflow-x: hidden;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  html body .overlay .closeModalBtn {
    position: fixed;
    top: 1rem;
    right: 1rem;
  }
  html body .overlay .closeModalBtn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  html body .overlay .closeModalBtn {
    position: fixed;
    top: 1rem;
    right: 1rem;
  }
  html body .overlay .closeModalBtn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  html body .overlay .closeModalBtn {
    position: fixed;
    top: 1rem;
    right: 1rem;
  }
  html body .overlay .closeModalBtn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.dualBtnContainer {
  display: flex;
  align-items: center;
}
.dualBtnContainer button {
  width: 10vw;
}
.dualBtnContainer button:first-of-type {
  margin-right: 1rem;
}

.secondaryBtn {
  opacity: 0.8;
  border: 1px solid #f59e0b;
  background-color: rgba(0, 0, 0, 0);
}
.secondaryBtn span,
.secondaryBtn b {
  color: #f59e0b;
}
.secondaryBtn:hover {
  opacity: 1;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  padding: 2vh 0;
  background-color: #fff;
}
.hero .heroCta {
  width: 25vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 2vw;
}
.hero .heroCta .heroTitleContainer {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 2rem;
}
.hero .heroCta .heroTitle {
  font-size: 48px;
  line-height: 56px;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}
.hero .heroCta .heroSubtitle {
  width: 90%;
  font-size: 20px;
  padding: 0;
  margin: 0;
}
.hero .heroCta .heroBulletContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  margin: 2vh 0 0 0;
}
.hero .heroCta .heroBulletContainer .heroBullet {
  display: flex;
  align-items: center;
}
.hero .heroCta .heroBulletContainer .heroBullet b {
  font-size: 36px;
  margin-right: 0.5rem;
}
.hero .heroCta .dualActionBtn {
  width: 90%;
}
.hero .heroImg {
  width: 58vw;
  height: 32.625vw;
  border-radius: 25px;
}

@media (min-width: 901px) and (max-width: 1400px) and (orientation: landscape) {
  html body .hero .heroImg {
    width: 53vw;
    height: 29.8125vw;
    align-self: flex-start;
  }
  html body .hero .heroCta {
    width: 35vw;
  }
  html body .hero .heroCta .heroTitle {
    font-size: 36px;
    line-height: 40px;
  }
  html body .hero .heroCta .heroSubtitle {
    font-size: 18px;
  }
  html body .hero .heroCta .heroBulletContainer .heroBullet b {
    font-size: 32px;
  }
  html body .hero .heroCta .btn b {
    font-size: 14px;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  html body .hero {
    flex-direction: column-reverse;
    padding: 2vh 0;
  }
  html body .hero .heroImg {
    width: 80vw;
    height: 80vw;
    margin-bottom: 0.5rem;
  }
  html body .hero .heroCta {
    width: 70vw;
    margin: 2vh 0 4vh 0;
  }
  html body .hero .heroCta .heroTitle {
    font-size: 42px;
    line-height: 48px;
  }
  html body .hero .heroCta .dualActionBtn {
    width: 100%;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  html body .hero {
    flex-direction: column-reverse;
    padding: 2vh 0 0 0;
  }
  html body .hero .heroCta {
    width: 85vw;
    margin: 0 0 4vh 0;
  }
  html body .hero .heroCta .heroTitleContainer {
    margin-bottom: 1.25rem;
  }
  html body .hero .heroCta .heroTitle {
    font-size: 32px;
    line-height: 36px;
  }
  html body .hero .heroCta .heroSubtitle {
    font-size: 16px;
    width: 100%;
  }
  html body .hero .heroCta .heroBulletContainer {
    width: fit-content;
  }
  html body .hero .heroCta .heroBulletContainer .heroBullet b {
    font-size: 28px;
  }
  html body .hero .heroCta .dualActionBtn {
    width: 100%;
  }
  html body .hero .heroCta .btn b {
    font-size: 14px;
  }
  html body .hero .heroImg {
    width: 90vw;
    height: 90vw;
    margin-bottom: 1rem;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  html body .hero {
    flex-direction: column-reverse;
    padding: 4vh 0;
  }
  html body .hero .heroCta {
    width: 75vw;
    margin: 0 0 4vh 0;
  }
  html body .hero .heroCta .heroTitle {
    font-size: 36px;
    line-height: 40px;
  }
  html body .hero .heroCta .heroSubtitle {
    font-size: 16px;
    width: 100%;
  }
  html body .hero .heroCta .heroBulletContainer {
    width: fit-content;
  }
  html body .hero .heroCta .heroBulletContainer .heroBullet b {
    font-size: 28px;
  }
  html body .hero .heroCta .dualActionBtn {
    width: 100%;
  }
  html body .hero .heroCta .btn b {
    font-size: 14px;
  }
  html body .hero .heroImg {
    width: 90vw;
    height: 50.625vw;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
}
.content {
  padding-top: 8vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
}

.header {
  width: 100vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

.dualActionBtn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dualActionBtn .btn {
  padding: 0.75rem 0;
  width: 98%;
}
.dualActionBtn .btn:first-of-type {
  margin-right: 2%;
}

.badgeSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2vh 0 6vh 0;
  width: 100%;
  border-bottom: 1px solid #000;
  box-shadow: 0 1px 7.5px rgba(85, 82, 77, 0.05);
}
.badgeSection h2 {
  font-size: 36px;
  margin-bottom: 4vh;
}
.badgeSection .badgeContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
}
.badgeSection .badgeContainer img {
  height: 100%;
  margin: 0 2vw;
}

@media (min-width: 901px) and (max-width: 1400px) and (orientation: landscape) {
  html body .badgeSection h2 {
    font-size: 32px;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  html body .badgeSection {
    padding: 2vh 0 4vh 0;
  }
  html body .badgeSection h2 {
    font-size: 32px;
    margin-bottom: 4vh;
  }
  html body .badgeSection .badgeContainer img {
    margin: 0 1vw;
    height: 8vh;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  html body .badgeSection {
    padding: 2vh 0 4vh 0;
  }
  html body .badgeSection h2 {
    font-size: 24px;
    margin-bottom: 4vh;
    text-align: center;
    width: 90%;
  }
  html body .badgeSection .badgeContainer {
    width: 100%;
    height: auto;
    align-items: space-evenly;
  }
  html body .badgeSection .badgeContainer img {
    margin: 0 1vw;
    height: auto;
    width: 30%;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  html body .badgeSection {
    padding: 6vh 0 8vh 0;
  }
  html body .badgeSection h2 {
    font-size: 24px;
    margin-bottom: 4vh;
    text-align: center;
    width: 90%;
  }
  html body .badgeSection .badgeContainer {
    width: 100%;
    height: auto;
    align-items: space-evenly;
  }
  html body .badgeSection .badgeContainer img {
    margin: 0 1vw;
    height: auto;
    width: 25%;
  }
}
.features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 55vw;
  margin-top: 8vh;
}

@media (min-width: 901px) and (max-width: 1400px) and (orientation: landscape) {
  html body .features {
    width: 65vw;
  }
}
@media (min-width: 1401px) and (max-width: 1650px) and (orientation: landscape) {
  html body .features {
    width: 60vw;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  html body .features {
    width: 85vw;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  html body .features {
    width: 85vw;
    margin-top: 4vh;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  html body .features {
    width: 90vw;
    margin-top: 12vh;
  }
}
.feature {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10vh;
}
.feature .feautreImg {
  width: 30vw;
  height: 30vw;
  border-radius: 50px;
}
.feature .txtContainer {
  display: flex;
  flex-direction: column;
  margin-right: 4vw;
}
.feature .txtContainer h2 {
  margin: 0.5rem 0 0.5rem 0;
  font-size: 40px;
}
.feature .txtContainer p {
  margin: 1rem 0 2rem 0;
  font-size: 18px;
  line-height: 140%;
}
.feature.reverse {
  flex-direction: row-reverse;
}
.feature.reverse .txtContainer {
  margin-right: 0;
  margin-left: 4vw;
}

@media (min-width: 901px) and (max-width: 1400px) and (orientation: landscape) {
  html body .feature .feautreImg {
    width: 30vw;
    height: 30vw;
  }
  html body .feature .txtContainer h2 {
    font-size: 32px;
  }
  html body .feature .txtContainer p {
    font-size: 16px;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  html body .feature {
    margin-bottom: 5vh;
  }
  html body .feature .feautreImg {
    align-self: flex-start;
    width: 42.5vw;
    height: 42.5vw;
  }
  html body .feature .btn b {
    font-size: 14px;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  html body .feature {
    flex-direction: column-reverse;
    margin-bottom: 5vh;
  }
  html body .feature .feautreImg {
    width: 85vw;
    height: 85vw;
    margin-bottom: 3vh;
    border-radius: 35px;
  }
  html body .feature .txtContainer {
    margin-right: 0;
    margin-bottom: 4vh;
  }
  html body .feature .txtContainer h2 {
    font-size: 36px;
  }
  html body .feature .txtContainer p {
    font-size: 16px;
  }
  html body .feature.reverse {
    flex-direction: column-reverse;
  }
  html body .feature.reverse .txtContainer {
    margin-right: 0;
    margin-left: 0;
  }
  html body .feature .btn b {
    font-size: 14px;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  html body .feature {
    margin-bottom: 10vh;
  }
  html body .feature .txtContainer b {
    font-size: 14px;
  }
  html body .feature .txtContainer h2 {
    font-size: 28px;
  }
  html body .feature .txtContainer p {
    font-size: 14px;
  }
  html body .feature .feautreImg {
    align-self: flex-start;
    width: 42.5vw;
    height: 42.5vw;
  }
  html body .feature .btn b {
    font-size: 13px;
  }
}
.banner {
  width: 100vw;
  margin: 4vh 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #545454;
  padding: 6vh 0;
  box-shadow: 0 1px 7.5px rgba(85, 82, 77, 0.05);
}
.banner h2,
.banner b,
.banner span,
.banner p {
  color: #fff;
}
.banner .bannerTxtContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 45%;
}
.banner .bannerTxtContainer h2 {
  font-size: 42px;
  margin: 0 0 0.5rem 0;
}
.banner .bannerTxtContainer p {
  font-size: 20px;
}
.banner .verticalBulletContainer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 4vh 0;
  width: 65%;
}
.banner .verticalBulletContainer .verticalBullet {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.banner .verticalBulletContainer .verticalBullet b {
  font-size: 40px;
  margin-bottom: 0.5rem;
}

@media (min-width: 601px) and (orientation: portrait) {
  html body .banner {
    padding: 4vh 0;
    margin: 4vh 0 0 0;
  }
  html body .banner .bannerTxtContainer {
    width: 55%;
  }
  html body .banner .bannerTxtContainer h2 {
    font-size: 36px;
  }
  html body .banner .bannerTxtContainer p {
    font-size: 18px;
  }
  html body .banner .verticalBulletContainer {
    width: 75%;
  }
  html body .banner .verticalBulletContainer .verticalBullet b {
    font-size: 36px;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  html body .banner {
    padding: 4vh 0;
    margin: 2vh 0 0 0;
  }
  html body .banner .bannerTxtContainer {
    width: 90%;
  }
  html body .banner .bannerTxtContainer h2 {
    font-size: 32px;
  }
  html body .banner .bannerTxtContainer p {
    font-size: 16px;
  }
  html body .banner .verticalBulletContainer {
    width: 90%;
    flex-direction: column;
  }
  html body .banner .verticalBulletContainer .verticalBullet {
    margin-bottom: 2vh;
  }
  html body .banner .verticalBulletContainer .verticalBullet b {
    font-size: 32px;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  html body .banner {
    padding: 8vh 0;
    margin: 2vh 0 0 0;
  }
  html body .banner .bannerTxtContainer {
    width: 80%;
  }
  html body .banner .bannerTxtContainer h2 {
    font-size: 32px;
  }
  html body .banner .bannerTxtContainer p {
    font-size: 16px;
  }
  html body .banner .verticalBulletContainer {
    width: 80%;
    flex-direction: column;
  }
  html body .banner .verticalBulletContainer .verticalBullet {
    margin-bottom: 4vh;
  }
  html body .banner .verticalBulletContainer .verticalBullet b {
    font-size: 32px;
  }
}
.getStarted {
  background-color: #fafafa;
  width: 100vw;
  padding: 4vh 0 6vh 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.getStarted .getStartedTitle {
  margin-bottom: 4vh;
  width: 55vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.getStarted .getStartedTitle h2 {
  font-size: 36px;
}
.getStarted .getStartedTitle p {
  font-size: 18px;
}
.getStarted .getStartedContentContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6vh;
}
.getStarted .getStartedContentContainer img {
  width: 35vw;
  height: 35vw;
  border-radius: 50px;
}
.getStarted .getStartedContentContainer .getStartedTxt {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  width: 40vw;
  margin-left: 5vw;
}
.getStarted .getStartedContentContainer .getStartedTxt p {
  font-size: 16px;
}
.getStarted .getStartedContentContainer .getStartedTxt .btn {
  width: fit-content;
  padding: 0.75rem 2vw;
  margin-top: 1rem;
}
.getStarted .getStartedContentContainer .getStartedTxt .getStartedCardTxtTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.getStarted .getStartedContentContainer .getStartedTxt .getStartedCardTxtTitle b {
  font-size: 18px;
  margin: 0;
}
.getStarted .getStartedContentContainer .getStartedTxt .getStartedCardTxtTitle h3 {
  font-size: 32px;
  margin: 0.5rem 0 0 0;
}
.getStarted .getStartedContentContainer .getStartedTxt .bulletList {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0 0 2vh 0;
}
.getStarted .getStartedContentContainer .getStartedTxt .bulletList .bullet {
  display: flex;
  align-items: center;
  margin: 1vh 0;
}
.getStarted .getStartedContentContainer .getStartedTxt .bulletList .bullet b {
  font-size: 28px;
  margin-right: 0.25vw;
}
.getStarted .getStartedContentContainer .getStartedTxt .bulletList .bullet span {
  font-size: 16px;
}

@media (min-width: 901px) and (max-width: 1400px) and (orientation: landscape) {
  html body .getStarted .getStartedContent {
    width: 75vw;
  }
  html body .getStarted .getStartedTitle {
    width: 70vw;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  html body .getStarted {
    padding: 2vh 0;
  }
  html body .getStarted .getStartedTitle {
    width: 60vw;
  }
  html body .getStarted .getStartedContentContainer {
    flex-direction: column;
    align-items: center;
    margin-top: 4vh;
  }
  html body .getStarted .getStartedContentContainer img {
    width: 55vw;
    height: 55vw;
    border-radius: 35px;
  }
  html body .getStarted .getStartedContentContainer .getStartedTxt {
    width: 55vw;
    margin-left: 0;
    margin-top: 4vh;
  }
  html body .getStarted .getStartedContentContainer .getStartedTxt .bulletList .bullet b {
    margin-right: 1.5vw;
  }
  html body .getStarted .getStartedContentContainer .getStartedTxt .btn {
    width: 100%;
    padding: 0.75rem 0;
    margin: 3vh 0 1vh 0;
    border-radius: 15px;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  html body .getStarted {
    padding: 2vh 0;
  }
  html body .getStarted .getStartedTitle {
    width: 85vw;
  }
  html body .getStarted .getStartedTitle h2 {
    font-size: 32px;
    margin-bottom: 0.5rem;
  }
  html body .getStarted .getStartedTitle p {
    font-size: 16px;
  }
  html body .getStarted .getStartedContentContainer {
    flex-direction: column;
    align-items: center;
    margin-top: 4vh;
  }
  html body .getStarted .getStartedContentContainer img {
    width: 85vw;
    height: 85vw;
    border-radius: 35px;
  }
  html body .getStarted .getStartedContentContainer .getStartedTxt {
    width: 90vw;
    margin-left: 0;
    margin-top: 4vh;
  }
  html body .getStarted .getStartedContentContainer .getStartedTxt .getStartedCardTxtTitle b {
    font-size: 16px;
  }
  html body .getStarted .getStartedContentContainer .getStartedTxt .getStartedCardTxtTitle h3 {
    font-size: 24px;
  }
  html body .getStarted .getStartedContentContainer .getStartedTxt .bulletList .bullet b {
    margin-right: 1.5vw;
  }
  html body .getStarted .getStartedContentContainer .getStartedTxt .btn {
    width: 100%;
    padding: 0.75rem 0;
    margin: 3vh 0 1vh 0;
    border-radius: 15px;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  html body .getStarted {
    padding: 8vh 0;
  }
  html body .getStarted .getStartedTitle {
    width: 60vw;
    margin-top: 6vh;
  }
  html body .getStarted .getStartedContentContainer {
    flex-direction: column;
    align-items: center;
    margin-top: 4vh;
  }
  html body .getStarted .getStartedContentContainer img {
    width: 55vw;
    height: 55vw;
    border-radius: 35px;
  }
  html body .getStarted .getStartedContentContainer .getStartedTxt {
    width: 55vw;
    margin-left: 0;
    margin-top: 4vh;
  }
  html body .getStarted .getStartedContentContainer .getStartedTxt .bulletList .bullet b {
    margin-right: 1.5vw;
  }
  html body .getStarted .getStartedContentContainer .getStartedTxt .btn {
    width: 100%;
    padding: 0.75rem 0;
    margin: 3vh 0 1vh 0;
    border-radius: 15px;
  }
}
.ctaBanner {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8vh 0;
  box-shadow: 0 1px 7.5px rgba(85, 82, 77, 0.05);
}
.ctaBanner h2 {
  width: 45%;
  font-size: 36px;
  margin: 0 0 0.5rem 0;
  text-align: center;
  margin-bottom: 3rem;
}
.ctaBanner .dualActionBtn {
  width: 30vw;
}
.ctaBanner .dualActionBtn .btn {
  padding: 1rem 0;
}

@media (min-width: 901px) and (max-width: 1400px) and (orientation: landscape) {
  html body .ctaBanner h2 {
    width: 55%;
  }
}
@media (min-width: 1401px) and (max-width: 1650px) and (orientation: landscape) {
  html body .ctaBanner h2 {
    width: 55%;
  }
}
@media (min-width: 601px) and (orientation: portrait) {
  html body .ctaBanner {
    padding: 4vh 0;
    margin: 2vh 0 0 0;
  }
  html body .ctaBanner h2 {
    width: 80%;
    font-size: 32px;
    margin-bottom: 2rem;
  }
  html body .ctaBanner .dualActionBtn {
    width: 60%;
    margin-bottom: 2vh;
  }
  html body .ctaBanner .dualActionBtn .btn {
    padding: 1rem 0;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  html body .ctaBanner {
    padding: 4vh 0;
    margin: 2vh 0 0 0;
  }
  html body .ctaBanner h2 {
    width: 90%;
    font-size: 24px;
    margin-bottom: 2rem;
  }
  html body .ctaBanner .dualActionBtn {
    width: 90%;
  }
  html body .ctaBanner .dualActionBtn .btn {
    padding: 0.75rem 0;
  }
  html body .ctaBanner .dualActionBtn .btn b {
    font-size: 14px;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  html body .ctaBanner {
    padding: 8vh 0;
    margin: 2vh 0 0 0;
  }
  html body .ctaBanner h2 {
    width: 80%;
    font-size: 24px;
    margin-bottom: 2rem;
  }
  html body .ctaBanner .dualActionBtn {
    width: 80%;
  }
  html body .ctaBanner .dualActionBtn .btn {
    padding: 0.75rem 0;
  }
  html body .ctaBanner .dualActionBtn .btn b {
    font-size: 14px;
  }
}
.ibmBadge {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 0.75rem 0;
  height: 60px;
}
.ibmBadge img {
  height: 100%;
}

@media (min-width: 901px) and (max-width: 1400px) and (orientation: landscape) {
  html body .ibmBadge {
    height: 50px;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  html body .ibmBadge {
    height: 45px;
    padding: 0.75rem 0;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  html body .ibmBadge {
    height: 37.5px;
    padding: 0.5rem 0;
  }
}

/*# sourceMappingURL=index.css.map */
