.footer_master {
  position: relative;
  min-height: 230px;
  color: white;
  background-color: var(--acol1);
  margin-top: 200px;
}

.f_top_banner {
  --_ftbHeight: 80px;
  position: relative;
  background-color: var(--bg);
  display: grid;
  grid-template-columns: 1fr;
  height: var(--_ftbHeight);
  align-items: center;
  justify-items: center;
}

.ftSizeM {
  --_size: 2.5rem;
  cursor: pointer;
  color: white;
}

.compHold {
  position: absolute;
  width: 100%;
  top: var(--_ftbHeight);
}
.f_companyName {
  --_-right: 35px;
  --_padTop: -40px;
  position: absolute;
  display: block;
  right: var(--_-right);
  top: var(--_padTop);
  background-color: var(--pcol);
  font-weight: bold;
  font-size: 2rem;
  padding: 1rem 1rem 1rem 2rem;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0 100%);
  text-align: center;
}

.shadow1 {
  right: calc(var(--_-right) + 10px);
  background-color: var(--sc1);
  color: rgba(0, 0, 0, 0) !important;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  clip-path: polygon(10% 1%, 100% 1%, 100% 100%, 0 98%) !important;
}

.shadow2 {
  --_adjusted: calc(var(--_padTop) + 1px);
  right: calc(var(--_-right) + 35px);
  background-color: var(--sc2);
  color: rgba(0, 0, 0, 0) !important;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  top: -41px;
  clip-path: polygon(
    4% calc(var(--_adjusted) * -1),
    100% calc(var(--_padTop) * -1),
    100% 100%,
    10% 100%
  ) !important;
}

.f_bottom {
  display: grid;
  grid-gap: 10px;
  padding: 50px;
  max-width: 900px;
  display:none;
}

.fbText {
  font-weight: bold;
  font-size: 2.5rem;
  color: var(--acol2);
}

.fSlogan {
  font-style: italic;
  color: var(--text);
  font-size: 1.2rem;
}

.fmText {
  color: var(--text);
}

.bottomBar {
  position: absolute;
  background-color: var(--bg);
  bottom: 0px;
  width: 100%;
  min-height: 65px;
  display: grid;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.footerCorner {
  --_width: 150px;
  position: absolute;
  background-color: var(--pcol);
  width: var(--_width);
  aspect-ratio: 1/1;
  transform: rotate(45deg) translate(-50%, -50%);
  bottom: calc(100% - var(--_width) * 1.9);
  left: calc(var(--_width) / 1.7 * -1);
}

.contactUs {
  max-width: 400px;
  text-align: center;
}
.gridSMFooter {
  position: relative;
  display: flex;
  grid-gap: 10px;
  font-size: 2.5rem;
  align-items: center;
}
.logoFooter {
  margin-left: 2rem;
  display: none;
}
@media only screen and (max-width: 800px) {
  .compHold {
    display: none;
  }
  .f_bottom {
    padding: 1rem;
  }

  .fbText {
    font-size: 1.8rem;
  }
  .bottomBar {
    padding: 0rem 2rem;
  }

  .f_top_banner {
    --_ftbHeight: 80px;
    position: relative;
    background-color: var(--bg);
    display: grid;
    grid-template-columns: 1fr;
    height: unset !important;
    min-height: var(--_ftbHeight);
    align-items: center;
    justify-items: center;
    padding:1rem;
  }

  .gridSMFooter {
    position: relative;
    display: flex;
    grid-gap: 10px;
    font-size: 2.5rem;
    align-items: center;
    left: 0px;
  }

  .logoFooter {
    display: block;
    color: white;
    font-size: 2.2rem;
    margin: 0px;
    margin-left: 0rem;
    text-shadow: black 0px 0px 5px;
  }
}
