@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap");
.slider,
.slide {
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: relative;
}

.slide .slide__img {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slide .slide__img img {
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.slide .slide__content {
  z-index: 99;
  position: absolute;
  top: 0;
  background: black;
}

.slide .slide__content--1 {
  z-index: 9;
  position: absolute;
  bottom: 15vh;
  left: 10vw;
  color: white;
  font-size: 30px;
  line-height: 36px;
  width: 580px;
  text-align: left;
}

.slide .slide__content--2 {
  z-index: 9;
  position: absolute;
  bottom: 20vh;
  right: 10vw;
  color: white;
  font-size: 30px;
  line-height: 36px;
  width: 600px;
  text-align: right;
}

.slide span {
  font-size: 20px;
}

.slide .about_url a {
  font-size: 20px;
}

.slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-transition: opacity 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 80px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
  opacity: 1;
}

.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.stick-dots .slick-dots li {
  height: 5px;
  width: 50px;
}

.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 5px;
  padding: 0;
}

.stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
  opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
}
@keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
}

.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*! --- Mark's reset CSS --- */
button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul,
ol,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

video {
  -o-object-fit: contain;
  object-fit: contain;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

html,
body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

*:focus {
  outline-width: 0px !important;
}

input[type="text"],
input[type="email"],
textarea,
input[type="file"] {
  padding: 5px;
  margin: 5px;
  background: none;
  border: none;
  color: rgba(12, 12, 12, 0.9);
  border-bottom: 1px solid #373737;
  font-weight: lighter;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 1px;
}

textarea {
  resize: vertical;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  background: #404041;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
}

input[type="button"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus {
  border: none;
}

input:focus,
textarea:focus,
select:focus {
  /*background: rgba(20,20,20,1.00);*/
  border-bottom: 1px solid black;
  outline: none;
}

textarea::-webkit-scrollbar-track {
  background-color: white;
}

textarea::-webkit-scrollbar {
  width: 10px;
  background-color: white;
}

textarea::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: 0px solid #ffffff;
}

input:-webkit-autofill {
  background-color: red !important;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ng {
  border: 0px solid;
  color: #3ba0ff;
  width: 100%;
  text-align: center;
  padding: 0 auto;
  margin: 0 auto;
}

span.wpcf7-not-valid-tip {
  color: #3ba0ff;
  display: block;
  padding-top: 10px;
}

.wpcf7-mail-sent-ok {
  border: 0px solid #398f14;
  text-align: center;
  color: #398f14;
  padding-bottom: 30px;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1150px;
  }
}

body {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 22px;
}

h1 {
  font-size: 50px;
  font-weight: 100;
  letter-spacing: 3px;
}

h2 {
  font-size: 30px;
  font-weight: 100;
  letter-spacing: 2px;
  padding-bottom: 15px;
  line-height: 35px;
}

a:link {
  color: #e2e2e2;
  text-decoration: none;
}

a:visited {
  color: #e2e2e2;
  text-decoration: overline;
}

a:hover {
  color: #b6b6b6;
  text-decoration: none;
}

a:active {
  color: #e2e2e2;
  text-decoration: none;
}

header {
  z-index: 999;
  background: black;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

header .logo {
  padding-left: 30px;
  padding-top: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

header .logo svg {
  height: 40px;
}

@media (min-width: 1025px) {
  header .logo svg {
    height: 60px;
  }
}

header .language {
  padding-left: 20px;
}

header .language li {
  display: inline;
}

header .call_action {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 50px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
  padding-top: 10px;
}

header .midnightHeader.default {
  background: none;
}

header .midnightHeader.default .st0 {
  fill: white;
}

header .midnightHeader.black {
  color: black;
}

header .midnightHeader.black a {
  color: #161616;
  text-decoration: none;
}

header .midnightHeader.black a:link {
  color: #161616;
  text-decoration: none;
}

header .midnightHeader.black a:hover {
  color: #3b3b3b;
  text-decoration: none;
}

header .midnightHeader.black .st0 {
  fill: #1f1f1f;
}

header .midnightInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer {
  padding-top: 100px;
}

.footer img {
  width: 150px;
}

.footer p {
  font-size: 10px;
}

li {
  list-style: none;
}

.en_btn,
.cn_btn {
  cursor: pointer;
}

.cn {
  display: none;
}

.slideshow_nav {
  position: absolute;
  width: 100%;
  z-index: 99;
  bottom: 10vh;
}

@media (min-width: 1025px) {
  .slideshow_nav {
    bottom: 50vh;
  }
}

.slideshow_prev {
  position: absolute;
  left: 5vw;
  z-index: 9;
  width: 18px;
}

.slideshow_next {
  position: absolute;
  right: 5vw;
  z-index: 9;
  width: 18px;
}

.slideshow,
.slideshow_item {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .slideshow,
  .slideshow_item {
    width: 100vw;
    height: 100vh;
  }
}

.slideshow .slick-current,
.slideshow_item .slick-current {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.slideshow img,
.slideshow_item img {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.landing {
  height: 100vh;
}

.landing div {
  position: absolute;
  bottom: 100px;
  left: 50px;
  line-height: 50px;
  width: 60%;
}

@media (min-width: 1025px) {
  .landing div {
    bottom: 150px;
    left: 150px;
  }
}

.concept {
  background-image: url("../images/concept.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: none;
  height: auto;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1025px) {
  .concept {
    height: 100vh;
  }
}

.concept div {
  width: auto;
  padding-left: 0px;
  padding-top: 50px;
  padding-bottom: 900px;
  padding-left: 30px;
  padding-right: 30px;
}

@media (min-width: 1025px) {
  .concept div {
    width: 700px;
    padding-left: 150px;
    padding-top: 150px;
    padding-bottom: 0px;
  }
}

.concept p {
  padding-top: 10px;
  padding-bottom: 10px;
}

.features {
  height: auto;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 100px;
}

@media (min-width: 1025px) {
  .features {
    height: 100vh;
    padding-top: 0px;
  }
}

.features .icon {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  /* Define Auto Row size */
  /*Define our columns */
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 1em;
}

.features .icon div {
  padding: 15px;
}

.features .icon img {
  width: 80px;
}

.location {
  color: #000;
  text-align: center;
  overflow: hidden;
  padding: auto;
  margin: auto;
}

.location a {
  color: #161616;
  text-decoration: none;
}

.location a:link {
  color: #161616;
  text-decoration: none;
}

.location a:hover {
  color: #3b3b3b;
  text-decoration: none;
}

.directions {
  text-align: center;
  color: #161616;
}

.directions a {
  color: #161616;
  text-decoration: none;
}

.directions a:link {
  color: #161616;
  text-decoration: none;
}

.directions a:hover {
  color: #3b3b3b;
  text-decoration: none;
}

.location_plan {
  overflow: hidden;
  position: relative;
  height: 100vh;
}

.location_plan p {
  position: absolute;
  left: 38%;
  -webkit-transform: translateX(-38%);
          transform: translateX(-38%);
}

@media (min-width: 1025px) {
  .location_plan p {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.location_plan img {
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
}

.plan {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: auto;
  margin: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #000;
  padding-top: 0px;
}

@media (min-width: 1025px) {
  .plan {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 60%;
    padding-top: 100px;
  }
}

.plan .siteplan {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  height: 100vh;
}

.plan .floorplan {
  padding-bottom: 100px;
  width: 100%;
  text-align: center;
}

@media (min-width: 1025px) {
  .plan .floorplan {
    padding-bottom: 0px;
    width: 70%;
  }
}

.exterior {
  position: relative;
  z-index: -1;
}

.exterior img {
  width: 100%;
  display: block;
}

.exterior .intro_text {
  position: absolute;
  right: 10%;
  color: #000;
  width: 25vw;
  top: 50%;
}

.exterior .desk {
  display: none;
}

@media (min-width: 1025px) {
  .exterior .desk {
    display: block;
  }
}

.exterior .mobile {
  display: block;
}

@media (min-width: 1025px) {
  .exterior .mobile {
    display: none;
  }
}

.contact {
  background-image: url("../images/contact.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: none;
  height: 100vh;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact_us {
  background-image: url("../images/contact.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 1025px) {
  .contact_us {
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.contact_us a:link {
  color: #e2e2e2;
  text-decoration: none;
}

.contact_us a:visited {
  color: #e2e2e2;
  text-decoration: overline;
}

.contact_us a:hover {
  color: #b6b6b6;
  text-decoration: none;
}

.contact_us a:active {
  color: #e2e2e2;
  text-decoration: none;
}

.enquiry {
  background: #ffffffb0;
  width: 90%;
  -webkit-box-shadow: 4px 6px 16px -5px rgba(0, 0, 0, 0.56);
          box-shadow: 4px 6px 16px -5px rgba(0, 0, 0, 0.56);
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 50px;
  margin-bottom: 20px;
}

.enquiry .inner {
  padding: 20px;
}

@media (min-width: 1025px) {
  .enquiry .inner {
    padding: 50px;
  }
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1025px) {
  .info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.info .showroom,
.info .talk,
.info .whatsapp,
.info .project_by {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 10px;
  padding-bottom: 15px;
}

@media (min-width: 1025px) {
  .info .showroom,
  .info .talk,
  .info .whatsapp,
  .info .project_by {
    padding-bottom: 10px;
  }
}

.whatsapp_no {
  padding-top: 15px;
  font-size: 20px;
}

.whatsapp_no li {
  display: block;
  padding: 10px;
}

@media (min-width: 1025px) {
  .whatsapp_no li {
    display: inline;
  }
}

.tag_line {
  position: absolute;
  z-index: 99;
  font-weight: 400;
  bottom: 30vh;
  left: 0vw;
  font-size: 30px;
  font-weight: 400;
  line-height: 55px;
  text-align: center;
  width: 100vw;
}

@media (min-width: 1025px) {
  .tag_line {
    bottom: 20vh;
    left: 5vw;
    font-size: 45px;
    font-weight: 400;
    line-height: 55px;
    text-align: left;
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  background-color: #25d366;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 25px -6px black;
  box-shadow: 0px 0px 25px -6px black;
  -webkit-animation: effect 5s infinite ease-in;
          animation: effect 5s infinite ease-in;
}

#float-open *,
#float-menu * {
  font-family: "Lato", sans-serif !important;
  color: #444 !important;
  font-size: 14px !important;
}

#float-open small,
#float-menu small {
  font-size: 11px !important;
  opacity: 0.5;
}

#float-open,
#float-close {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#float-open {
  padding: 10px 20px;
  background-color: #27bcc3;
  position: fixed;
  right: 0;
  bottom: 25px;
  font-size: 14px;
  border-radius: 8px 0 0 8px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#float-open:hover {
  background-color: #41c9d0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#float-open.hide {
  display: none;
}

#float-open * {
  color: #fff !important;
}

#float-open > span {
  margin-left: 7px;
}

#float-close {
  padding: 10px 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-top: 15px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#float-close:hover {
  color: #fff;
  background-color: #27bcc3;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#float-close:hover * {
  color: #fff !important;
}

#float-menu {
  display: none;
  position: fixed;
  background: #fff;
  padding: 25px 20px;
  right: 0;
  bottom: 20px;
  width: 230px;
  border-radius: 8px 0 0 8px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

#float-menu.active {
  display: block;
}

#float-menu a,
#float-menu a:hover {
  color: #444;
  text-decoration: none;
}

#float-menu p {
  margin-bottom: 15px;
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}

.contact-item:hover .contact-icon {
  background-color: #27bcc3;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#float-menu .contact-item:hover .contact-icon * {
  color: #fff !important;
}

.contact-item-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-icon {
  background-color: #eee;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.contact-name {
  margin: 0 10px;
}
/*# sourceMappingURL=style.css.map */