.top-bar-area .logo img {
  height: 75px !important;
}

.quick-actions {
  z-index: 110;
  position: fixed;

  right: 0;
  bottom: 0;
  -webkit-transform: translateY(-50%) translateX(120%);
  transform: translateY(-50%) translateX(120%);
  -webkit-transition: 0.45s ease all;
  transition: 0.45s ease all;
}

.quick-actions.index {
  -webkit-transform: translateY(-50%) translateX(-30px) !important;
  transform: translateY(-50%) translateX(-30px) !important;
}

.quick-actions.show {
  -webkit-transform: translateY(-50%) translateX(-30px);
  transform: translateY(-50%) translateX(-30px);
}

.quick-actions .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background-color: #80d7e2;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.quick-actions .item.email {
  background-color: #0099f6;
}

.quick-actions .item.email span {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0099f6),
    to(#80d7e2)
  );
  background: linear-gradient(90deg, #0099f6 0%, #80d7e2 100%);
}

.quick-actions .item.email:hover {
  background-color: #80d7e2;
}

.quick-actions .item.phone {
  background-color: #642c6e;
}

.quick-actions .item.phone span {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#642c6e),
    to(#92529e)
  );
  background: linear-gradient(90deg, #642c6e 0%, #92529e 100%);
}

.quick-actions .item.phone:hover {
  background-color: #92529e;
}

.quick-actions .item.whatsapp {
  background-color: #3eb820;
}

.quick-actions .item.whatsapp span {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#3eb820),
    to(#51bfaf)
  );
  background: linear-gradient(90deg, #3eb820 0%, #51bfaf 100%);
}

.quick-actions .item.whatsapp:hover {
  background-color: #51bfaf;
}

.quick-actions .item:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.quick-actions .item:hover span {
  -webkit-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.quick-actions .item + .item {
  margin-top: 30px;
}

.quick-actions .item span {
  font-size: 18px;
  color: #fff;
  background-color: #2c3134;
  text-align: center;
  border-radius: 30px;
  padding: 10px 15px;
  line-height: 1;
  white-space: nowrap;
  display: block;
  position: absolute;
  top: 50%;
  right: calc(100% + 15px);
  -webkit-transform: translateY(-50%) translateX(15px);
  transform: translateY(-50%) translateX(15px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.quick-actions .item svg {
  width: 45%;
  height: 45%;
  fill: #fff;
}

.quick-actions .item svg .opacity {
  opacity: 0.5;
}

.mobile-bar {
  padding: 0 15px;
  position: fixed;
  z-index: 120;
  -webkit-box-shadow: 0 -10px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 -10px 30px -10px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 75px;
  left: 0;
  bottom: 0;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 10fr)) minmax(0, 15fr) repeat(
      2,
      minmax(0, 10fr)
    );
  grid-gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}

.mobile-bar .item {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  justify-self: center;
  -webkit-box-shadow: 0 0 0 1px #642c6e;
  box-shadow: 0 0 0 1px #642c6e;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.mobile-bar .item:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  background-color: #642c6e;
}

.mobile-bar .item:hover span {
  -webkit-transform: translateY(0) translateX(-50%);
  transform: translateY(0) translateX(-50%);
  opacity: 1;
}

.mobile-bar .item:hover svg {
  fill: #fff;
}

.mobile-bar .item span {
  font-size: 0.75rem;
  color: #fff;
  background-color: #642c6e;
  text-align: center;
  border-radius: 30px;
  padding: 5px 10px;
  white-space: nowrap;
  display: block;
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  -webkit-transform: translateY(-15px) translateX(-50%);
  transform: translateY(-15px) translateX(-50%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.mobile-bar .item svg {
  width: 22px;
  height: 22px;
  fill: #642c6e;
}

.mobile-bar .item svg .opacity {
  opacity: 0.5;
}

.mobile-bar .mobile-trigger {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  top: 0;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  background-color: #642c6e;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 15px;
  -webkit-box-shadow: 0 15px 30px -15px #80d7e2;
  box-shadow: 0 15px 30px -15px #80d7e2;
}

.mobile-bar .mobile-trigger span {
  background-color: #fff;
  width: 100%;
  height: 1px;
  display: block;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.quick-actions .item {
  width: 60px;
  height: 60px;
}

.quick-actions .item + .item {
  margin-top: 20px;
}

.quick-actions .item span {
  font-size: 14px;
}

@media only screen and (max-width: 1200px) {
  .fs-22 {
    font-size: 1rem;
  }

  .fs-24 {
    font-size: 1.125rem;
  }

  .fs-26 {
    font-size: 1.25rem;
  }

  .fs-28 {
    font-size: 1.375rem;
  }

  .fs-30 {
    font-size: 1.5rem;
  }

  .fs-32 {
    font-size: 1.625rem;
  }

  .fs-34 {
    font-size: 1.75rem;
  }

  .fs-36 {
    font-size: 1.875rem;
  }

  .fs-38 {
    font-size: 2rem;
  }

  .fs-40 {
    font-size: 2.125rem;
  }

  .fs-42 {
    font-size: 2.25rem;
  }

  .fs-44 {
    font-size: 2.375rem;
  }

  .fs-46 {
    font-size: 2.5rem;
  }

  .fs-48 {
    font-size: 2.625rem;
  }

  .fs-50 {
    font-size: 2.75rem;
  }

  .fs-52 {
    font-size: 2.875rem;
  }

  .fs-54 {
    font-size: 3rem;
  }

  .fs-56 {
    font-size: 3.125rem;
  }

  .fs-58 {
    font-size: 3.25rem;
  }

  .fs-60 {
    font-size: 3.375rem;
  }

  .fs-62 {
    font-size: 3.5rem;
  }

  .fs-64 {
    font-size: 3.625rem;
  }

  .fs-66 {
    font-size: 3.75rem;
  }

  .fs-68 {
    font-size: 3.875rem;
  }

  .fs-70 {
    font-size: 4rem;
  }

  .fs-72 {
    font-size: 4.125rem;
  }

  .fs-74 {
    font-size: 4.25rem;
  }

  .fs-76 {
    font-size: 4.375rem;
  }

  .fs-78 {
    font-size: 4.5rem;
  }

  .fs-80 {
    font-size: 4.625rem;
  }

  .fs-82 {
    font-size: 4.75rem;
  }

  .fs-84 {
    font-size: 4.875rem;
  }

  .fs-86 {
    font-size: 5rem;
  }

  .fs-88 {
    font-size: 5.125rem;
  }

  .fs-90 {
    font-size: 5.25rem;
  }

  .mobile-bar {
    display: grid;
  }

  body {
    background-color: #f8f8f8;
  }

  main {
    opacity: 1;
  }

  header .wrapper .content {
    opacity: 1;
  }

  header .wrapper .logo svg .shape,
  header .wrapper .logo img .shape {
    -webkit-transform: unset !important;
    transform: unset !important;
  }

  header.hidden .wrapper .logo {
    pointer-events: visible;
  }

  header .wrapper .logo svg,
  header .wrapper .logo img {
    opacity: 1 !important;
    height: 100% !important;
    -webkit-transform: unset !important;
    transform: unset !important;
  }

  footer {
    margin-bottom: 75px;
  }

  header {
    position: absolute;
    -webkit-transform: unset !important;
    transform: unset !important;
  }

  header .wrapper .content .mobile-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  header .wrapper .content .quote-button {
    display: none;
  }

  header .wrapper .content .language .current {
    padding-right: 0;
  }

  header .wrapper .content .language {
    margin-right: 0;
  }

  header .wrapper .content .menu {
    display: none;
    position: fixed !important;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-height: calc(100vh - 75px);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 105;
  }

  header .wrapper .content .menu > li {
    padding: 15px 0;
    width: 100%;
    height: unset;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  header .wrapper .content .menu > li + li {
    border-top: 1px solid #f7f7f7;
  }

  header .wrapper .content .menu > li > a {
    font-size: 1.125rem;
    color: #5e6467;
  }

  header .wrapper .content .menu > li.has-child > a {
    padding: 0;
  }

  header .wrapper .content .menu > li.has-child > a::after {
    content: unset !important;
    display: none !important;
  }

  header .wrapper .content .menu > li.has-child > .sub-menu,
  header
    .wrapper
    .content
    .menu
    > li.has-child
    > .sub-menu
    .list
    li.has-child
    .sub-menu {
    display: none;
    position: relative;
    -webkit-transform: unset !important;
    transform: unset !important;
    top: unset;
    left: unset;
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    width: 100%;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    background-color: #f9f9f9;
    padding: 15px 0 15px 30px;
    margin-top: 15px;
  }

  header
    .wrapper
    .content
    .menu
    > li.has-child
    > .sub-menu
    .list
    li.has-child
    .sub-menu {
    display: none;
    background-color: #f2f2f2;
    width: calc(100% - 30px);
    margin-bottom: 15px;
  }

  header
    .wrapper
    .content
    .menu
    > li.has-child
    > .sub-menu
    .list
    li.has-child
    .sub-menu
    > li
    > .sub-menu {
    background-color: #ededed;
  }

  header .wrapper .content .menu > li.has-child > .sub-menu .list li {
    padding: 0;
  }

  header .wrapper .content .menu > li.has-child > .sub-menu .list li > a {
    padding-right: 0;
    font-size: 0.875rem;
  }

  header
    .wrapper
    .content
    .menu
    > li.has-child
    > .sub-menu
    .list
    li.has-child
    span.trigger {
    top: 3px;
    right: 30px;
    width: 25px;
    height: 25px;
  }

  header
    .wrapper
    .content
    .menu
    > li.has-child
    > .sub-menu
    .list
    li
    > a::after {
    display: none;
    content: unset;
  }

  header .wrapper .content .menu > li.has-child.has-image > .sub-menu {
    left: 0;
    display: none;
    padding: 15px 0 15px 30px !important;
  }

  header .wrapper .content .menu > li.has-child.has-image > .sub-menu .image {
    display: none;
  }

  .quick-actions {
    /* display: none */
  }

  header .wrapper .logo {
    max-width: 175px;
    opacity: 1 !important;
    -webkit-transform: unset !important;
    transform: unset !important;
  }

  #index .call-action-wrapper .container .call-an-action {
    max-width: 90%;
  }

  footer .content .container {
    grid-template-columns: minmax(0, 1fr);
    grid-gap: 15px;
  }

  footer .content .container .brand .menu {
    display: none;
  }

  footer .content .container .detail .menu-list {
    display: none;
  }

  footer .content .container .detail .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  footer .content .container .detail .contact .line svg {
    display: none;
  }

  footer .content .container .detail .contact .line {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 10px 0;
  }

  footer .content .container .detail .heading {
    max-width: 400px;
    width: 100%;
    margin: 15px auto;
  }

  footer .content .container .brand {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

  #index .call-action-wrapper .container .call-an-action {
    max-width: 100%;
  }

  #about .call-action-wrapper {
    margin-top: 45px;
  }
}
.navbar .attr-nav.contact li {
  padding: 0px;
}

.form .appoinment-box textarea {
  max-height: 165px !important;
  min-height: inherit;
}
