.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #000000;
  --bs-btn-border-color: #000000;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #262626;
  --bs-btn-hover-border-color: #1a1a1a;
  --bs-btn-focus-shadow-rgb: 38, 38, 38;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #333333;
  --bs-btn-active-border-color: #1a1a1a;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #000000;
  --bs-btn-disabled-border-color: #000000;
}


html {
  height: 100%;
}

body {
  height: 100%;
  position: relative;
}

.bg-img {
  background: url(../img/cover.jpeg) no-repeat center center fixed;
  background-size: cover;
  height: 100%;
  overflow: hidden;
}


@media (min-width: 1100px) {
  .bg-img {
    background: url(../img/cover.jpeg) no-repeat center right;
    background-size: contain;
  }
}


.social-icons {
  display: none;
}

.mobile{
  display: block;
  position: absolute;
  top: 0;
  left: 0.1rem;
  width: auto;
}


@media (min-width: 1100px) {
  .social-icons {
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0.5rem;
    width: auto;
  }

  .mobile{
    display: none;
  }

  button{
    display: none!important;
  }
}

.social-icons .btn {
  display: inline-flex;
  flex-direction: row!important;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 4rem;
  width: 4rem;
  border-radius: 100rem;
  border-color: transparent;
}

.mobile .btn{
  height: 3.25rem;
  width: 3.25rem;
}
.social-icons .btn:has(.fa-twitter){
  background-color: rgb(29, 155, 240);;
}

.social-icons .btn:has(.fa-whatsapp),
.social-icons .btn:has(.fa-info){
  background-color: #00a884;
}

.social-icons .btn:has(.fa-instagram){
  background: radial-gradient(
    circle farthest-corner at 28% 100%,
    #fcdf8f 0%,
    #fbd377 10%,
    #fa8e37 22%,
    #f73344 35%,
    transparent 65%
  ), linear-gradient(145deg, #3051f1 10%, #c92bb7 70%);
}

.floating-txt{
  display: none;
}

.bottom-text{
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  color: #fff;
  background-color: #000;
  opacity: 0.8;
  padding-right: 4rem;
}

@media (min-width: 1100px) {
  .floating-txt {
    display: block;
    position: absolute;
    top: 0;
    left: 7rem;
    height: 100%;
    width: calc(100vw - (100vh*903/1280) - 7rem);
    color: #000;
  }

  .bottom-text{
    display: none!important;
  }
}

.floating-txt > h1{
  font-size: 3.5rem;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Tinos", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  line-height: 1.2;
}

.floating-txt > div{
  font-size: 1.3rem;
}

#textToggler{
  position: absolute;
  bottom: 0;
  padding: .1rem;
  z-index: 10;
}