@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

ul {
  list-style: none;
  padding-left: 0;
}

.divider {
  border: 0.5px solid rgba(130, 130, 130, 1);
}

/* ------------------------ HEADER --------------------------- */
header {
  padding: 40px 0;
  background-color: transparent;
  position: fixed;
  z-index: 1000;
  width: 100%;
  transition: background-color 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.secondary-button {
  width: 286px;
  height: 54px;
  gap: 0px;
  border-radius: 27px;
  background: rgba(33, 79, 179, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 300;
  line-height: 17.36px;
  letter-spacing: -0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
  z-index: 2;
}

.cta-button {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.cta-button::after {
  content: "";
  background-color: white;
  width: 286px;
  height: 54px;
  position: absolute;
  transform: translateY(4px);
  border-radius: 27px;
  z-index: 1;
}

.cta-button-specialization {
  width: 100%;
  margin-top: 49px;
  position: relative;
}

.cta-button-specialization > .secondary-button {
  width: 100%;
  display: flex;
  gap: 21px;
  align-items: center;
}

.cta-button-specialization > .secondary-button > p {
  font-family: Unbounded;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 17.36px;
  letter-spacing: -0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 0;
}

.secondary-button-outlay {
  width: 100%;
  height: 54px;
  background-color: rgba(192, 192, 192, 1);
  border-radius: 27px;
  position: absolute;
  top: 4px;
  left: 2px;
}

.logo img {
  height: 90px;
  object-fit: contain;
}

.nav-links ul {
  display: flex;
  list-style: none;
}

.nav-links ul li {
  margin: 0 15px;
}

.nav-links ul li a {
  text-decoration: none;
  color: rgba(240, 240, 241, 1);
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 400;
  line-height: 21.6px;
  letter-spacing: -0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  transition: color 0.3s ease;
}

.nav-links ul li a.selected {
  color: rgba(33, 79, 179, 1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1200px) {
  .cta-button::after {
    width: 200px;
  }

  .secondary-button {
    width: 200px;
  }

  .logo > img {
    width: 200px;
  }
}

@media (max-width: 991px) {
  .logo > img {
    height: 75px;
    width: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full screen height */
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%); /* Start off-screen */
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .nav-links ul li {
    margin: 20px 0;
  }

  .nav-links ul li a {
    font-size: 1.5rem;
    color: #333;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .cta-button {
    display: none;
  }

  .nav-links ul li a.selected {
    color: rgba(242, 115, 23, 1);
  }
}

@media (max-width: 576px) {
  header {
    padding: 20px 0;
  }

  .logo > img {
    height: 60px;
  }
}
/* --------------------- MAIN -------------------------------- */

.main {
  height: 50vh;
  width: 100%;
  background: linear-gradient(138.14deg, #ff9040 -14.55%, #f16500 87.93%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}

.top-splash {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.main-heading {
  color: rgba(240, 240, 240, 1);
  font-family: Unbounded;
  font-size: 40px;
  font-weight: 600;
  line-height: 61px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  align-self: center;
  justify-self: center;
  width: 100%;
  text-align: center;
}

.main-heading > span {
  font-weight: 300;
}

@media (max-width: 992px) {
  .main-heading {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 28px;
  }
}

/* ------------------------------ ABOUT US ------------------------------------- */

.about-us {
  margin-top: 138px;
}

.about-us-image > img {
  border-radius: 35px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-heading-secondary {
  display: flex;
  gap: 18px;
}

.about-us-heading-secondary > h2 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 300;
  line-height: 36.6px;
  letter-spacing: -0.07em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(54, 54, 54, 1);
}

.about-us-heading-secondary > img {
  height: 36px;
}

.about-us-data {
}

.about-us-data > h1 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(41, 41, 41, 1);
  margin-top: 20px;
}

.about-us-data > p {
  font-family: Satoshi;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(142, 142, 142, 1);
  margin-top: 35px;
}

.about-us-data > ul {
  margin-top: 25px;
  list-style-image: url("/assets/images/common/list_arrow_orange.svg");
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 20px;
}

.about-us-data > ul > li {
  color: rgba(33, 79, 179, 1);
  font-family: Satoshi;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.about-us-data > ul > li > p {
  padding-left: 20px;
}

@media (max-width: 1200px) {
  .about-us-heading-secondary > h2 {
    font-size: 24px;
  }

  .about-us-heading-secondary > img {
    height: 32px;
  }

  .about-us-data > h1 {
    margin-top: 16px;
    font-size: 24px;
  }

  .about-us-data > p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
  }

  .about-us-data > ul > li {
    font-size: 16px;
    line-height: 24px;
  }

  .about-us-container .main-button {
    padding: 18px 36px;
  }
}

@media (max-width: 992px) {
  .about-us {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .about-us-heading-secondary {
    margin-top: 24px;
  }
}

@media (max-width: 576px) {
  .about-us {
    margin-top: 50px;
  }

  .about-us-heading-secondary {
    align-items: center;
    gap: 10px;
  }

  .about-us-heading-secondary > h2 {
    font-size: 14px;
    margin-bottom: 0;
  }

  .about-us-heading-secondary > img {
    height: 18px;
  }

  .about-us-data > h1 {
    margin-top: 14px;
    font-size: 20px;
  }

  .about-us-data > p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 24px;
  }

  .about-us-data > ul > li {
    font-size: 14px;
    line-height: 24px;
  }

  .about-us-container .main-button {
    padding: 14px 24px;
  }
}

/* ----------------------------- THERAPY SESSION ------------------------------------- */
.expert-care {
  margin-top: 150px;
  margin-bottom: 150px;
}

.expert-care > div > div > div {
  border-radius: 16px;
  height: inherit;
  height: 100%;
}

.individual-therapy {
  background-color: rgba(248, 240, 224, 1);
}

.couple-therapy {
  background-color: rgba(235, 245, 220, 1);
}

.family-therapy {
  background-color: rgba(223, 246, 225, 1);
}

.individual-therapy,
.couple-therapy,
.family-therapy {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 28px;
}

.individual-therapy > img,
.couple-therapy > img,
.family-therapy > img {
  height: 106px;
}

.individual-therapy > h1,
.couple-therapy > h1,
.family-therapy > h1 {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -2%;
}

.individual-therapy > h1 {
  color: rgba(210, 130, 48, 1);
}
.couple-therapy > h1 {
  color: rgba(120, 144, 83, 1);
}
.family-therapy > h1 {
  color: rgba(76, 163, 54, 1);
}

.individual-therapy > p,
.couple-therapy > p,
.family-therapy > p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -2%;
  color: rgba(142, 142, 142, 1);
}

@media (max-width: 1200px) {
}

@media (max-width: 992px) {
  .individual-therapy > h1,
  .couple-therapy > h1,
  .family-therapy > h1 {
    font-size: 20px;
    line-height: 24px;
  }

  .individual-therapy > img,
  .couple-therapy > img,
  .family-therapy > img {
    height: 86px;
  }

  .individual-therapy > p,
  .couple-therapy > p,
  .family-therapy > p {
    font-size: 14px;
  }

  .expert-care {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .individual-therapy,
  .couple-therapy,
  .family-therapy {
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .individual-therapy > h1,
  .couple-therapy > h1,
  .family-therapy > h1 {
    margin-bottom: 0;
  }

  .expert-care {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

/* ----------------------- CONTACT FORM ----------------------------- */
.section-header {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 300;
  line-height: 36.6px;
  letter-spacing: -0.07em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(33, 79, 179, 1);
  margin-top: 100px;
}

.div-header {
  margin-top: 30px;
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(41, 41, 41, 1);
}

.contact-form > .container > p {
  display: none;
}

.all-form {
  margin-top: 50px;
  display: flex;
}

.all-form > .detail {
  background: linear-gradient(180deg, #214fb3 0%, #0e224d 100%);
  width: 36%;
  position: relative;
  padding: 105px 0 0 0;
  border-radius: 32px 0 0 32px;
  flex: 4;
}

.all-form > .detail > img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.0005;
  margin-top: 50px;
}

.all-form > .detail > h1 {
  font-family: Unbounded;
  font-weight: 700;
  font-size: 20px;
  line-height: 33px;
  letter-spacing: -2%;
  text-align: center;
  color: rgba(241, 241, 241, 1);
  padding: 0 77px;
}

.all-form > .form {
  background-color: rgba(242, 244, 250, 1);
  width: 100%;
  border-radius: 0px 32px 32px 0px;
  flex: 6;
}

.all-form > .form {
  padding: 0 59px;
}

.all-form > .form > h1 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(21, 21, 21, 1);
}

form > .row {
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

form input[type="submit"] {
  width: fit-content;
  padding: 16px 24px;
  font-family: Satoshi;
  font-size: 14px;
  font-weight: 700;
  line-height: 13.4px;
  letter-spacing: -0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  background-color: rgba(33, 79, 179, 1);
  border: none;
  border-radius: 30px;
  color: rgba(255, 255, 255, 1);
  margin-top: 24px;
}

form input[type="text"] {
  border-radius: 6px;
  border: 0;
  background-color: white;
  padding: 17px 15px;
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  width: 100%;
}

form input[type="text"]::placeholder,
textarea::placeholder {
  color: rgba(171, 171, 171, 1);
}

form input[type="text"]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: rgba(171, 171, 171, 1);
}

form input[type="text"]:active {
  border: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form textarea {
  border: none;
  padding: 17px 15px !important;
  resize: none;
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  width: calc(100% - 1.25rem);
}

form textarea:focus {
  border: none;
  outline: none;
}

form select {
  background-color: rgba(255, 255, 255, 1);
  border: none;
  padding: 0 15px !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -2%;
  border-radius: 6px;
  width: 100%;
  height: 56px;
}

@media (max-width: 1200px) {
  .all-form > .detail {
    width: 40%;
    padding: 105px 40px;
    padding-bottom: 0;
  }

  .section-header {
    font-size: 24px;
  }

  .div-header {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .all-form > .detail {
    display: none;
  }

  .contact-form > .container > p {
    display: block;
    margin-top: 20px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -2%;
    color: rgba(142, 142, 142, 1);
    width: 90%;
  }

  .all-form > .form {
    padding: 59px;
    border-radius: 32px;
  }
}

@media (max-width: 576px) {
  .section-header {
    font-size: 20px;
  }

  .div-header {
    font-size: 20px;
    margin-top: 0px;
  }

  .all-form > .form {
    padding: 24px;
  }
}

/* --------------------- HYPNOSYS --------------------------------- */

.hypnosis {
  background: linear-gradient(136.2deg, #214fb3 46.28%, #0e224d 128.4%);
  margin-top: 150px;
}

.hypnosis h2 {
  font-family: Unbounded;
  font-weight: 300;
  font-size: 30px;
  line-height: 122%;
  letter-spacing: -7%;
  color: rgba(242, 115, 23, 1);
}

.hypnosis h1 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(241, 241, 241, 1);
}

.hypnosis p {
  font-family: Satoshi;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(225, 225, 225, 1);
  margin-top: 10px;
  margin-bottom: 40px;
}

.hypnosis-image {
  width: 40%;
}

.hypnosis-image > img {
  height: 400px;
  width: 100%;
}

.hypnosis-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

@media (max-width: 1200px) {
  .hypnosis-image > img {
    height: 300px;
  }

  .hypnosis h2 {
    font-size: 24px;
  }

  .hypnosis h1 {
    font-size: 24px;
    margin-bottom: 0;
  }

  .hypnosis p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hypnosis-data .main-button {
    padding: 12px 24px;
  }
}

@media (max-width: 992px) {
  .hypnosis-image {
    display: none;
  }

  .hypnosis-data {
    width: 80%;
    padding: 40px 0;
  }

  .hypnosis {
    margin-top: 80px;
  }
}

@media (max-width: 576px) {
  .hypnosis {
    margin-top: 50px;
  }

  .hypnosis-data {
    align-items: center;
    width: 100%;
  }

  .hypnosis h2 {
    font-size: 18px;
  }

  .hypnosis-data > h1 {
    width: 80%;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
  }

  .hypnosis-data > p {
    width: 80%;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
  }
}

/* ------------------------- APPOINTMENTS --------------------------------- */

.appointments {
  margin-top: 150px;
}

.make-appointments {
  background: linear-gradient(127.54deg, #214fb3 26.92%, #1e3669 97.96%);
  border-radius: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 65px 0px;
  width: 100%;
  gap: 30px;
}

.make-appointments > h1 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(241, 241, 241, 1);
}

.button-secondary {
  background-color: rgba(242, 115, 23, 1);
  font-family: Satoshi;
  font-size: 14px;
  font-weight: 700;
  line-height: 13.4px;
  letter-spacing: -0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 24px 43px;
  color: white;
  text-transform: uppercase;
  border-radius: 40px;
  cursor: pointer;
}

.appointment-data {
  margin-top: 10px;
}

.appointment-data > div > div {
  background: url("/assets/images/home/appointment_bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  width: calc(50% - 5px);
  padding: 56px 95px;
  display: flex;
  flex-direction: column;
  border-radius: 35px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.appointment-data h1 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(33, 79, 179, 1);
  margin-top: 50px;
}

.appointment-data p {
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(142, 142, 142, 1);
}

.appointment-data p > span {
  font-family: Satoshi;
  font-size: 23px;
  font-weight: 900;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(241, 101, 0, 1);
}

.appointment-data img {
  height: 150px;
  width: 190px;
}

@media (max-width: 1200px) {
  .make-appointments {
    padding: 54px 0;
    gap: 10px;
  }

  .make-appointments > h1 {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .appointment-data > div > div {
    padding: 56px 50px;
  }

  .appointment-data h1 {
    font-size: 20px;
  }

  .appointment-data p {
    font-size: 14px;
  }

  .appointment-data p > span {
    font-size: 18px;
  }

  .appointments {
    margin-top: 80px;
  }
}

@media (max-width: 764px) {
  .make-appointments > h1 {
    font-size: 20px;
    width: 80%;
  }

  .make-appointments .button-secondary {
    font-size: 12px;
    padding: 18px 36px;
  }

  .make-appointments > h1 {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 576px) {
  .appointments {
    margin-top: 50px;
  }

  .appointment-data h1 {
    font-size: 16px;
    width: 80%;
    line-height: 24px;
  }

  .appointment-data p {
    font-size: 12px;
  }

  .appointment-data p > span {
    font-size: 16px;
  }
}

/* ------------------------------ FOOTER ------------------------------------ */
.footer {
  background-color: rgba(245, 245, 245, 1);
  margin-top: 100px;
  padding-top: 52px;
  padding-bottom: 45px;
}

.footer-logo > img {
  height: 117px;
}

.footer-divider {
  border: 0.8px solid rgba(205, 205, 205, 1);
  margin-top: 45px;
  margin-bottom: 32px;
}

.footer-navigations > div > div h2 {
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(54, 54, 54, 1);
}

.footer-navigations {
  /* display: flex;
    gap: 220px; */
  margin-top: 50px;
}

.footer-navigations ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-navigations li {
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(54, 54, 54, 1);
}

.footer-socials {
  display: flex;
  justify-content: space-between;
}

.footer-socials > .socials {
  display: flex;
  gap: 35px;
}

@media (max-width: 1200px) {
  .section-header {
    font-size: 24px;
  }

  .div-header {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .div-header {
    margin-top: 0px;
  }
}

@media (max-width: 576px) {
  .footer-socials {
    flex-direction: column;
    gap: 25px;
  }

  .section-header {
    font-size: 20px;
  }

  .div-header {
    font-size: 20px;
    margin-top: 0px;
  }
}

/* WHATSAPP FLOAT */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-float {
}

.float:hover {
  color: white;
}

@media (max-width: 768px) {
  .float {
    width: 50px;
    height: 50px;
    bottom: 35px;
    right: 35px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .float {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}
