@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600&display=swap');
@font-face {
  font-family: 'i8labs';
  src:  url('../fonts/i8labs.eot?rm6mw2');
  src:  url('../fonts/i8labs.eot?rm6mw2#iefix') format('embedded-opentype'),
    url('../fonts/i8labs.ttf?rm6mw2') format('truetype'),
    url('../fonts/i8labs.woff?rm6mw2') format('woff'),
    url('../fonts/i8labs.svg?rm6mw2#i8labs') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'i8labs' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-email:before {
  content: "\e900";
}
.icon-mobile:before {
  content: "\e901";
}
.icon-youtube:before {
  content: "\e902";
}
.icon-instagram:before {
  content: "\e903";
}
.icon-twitter:before {
  content: "\e904";
}
.icon-facebook:before {
  content: "\e905";
}
.icon-whatsapp:before {
  content: "\e906";
}

html * {
  box-sizing: border-box;
}

body {
  background: no-repeat center #FAFAFA;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%), url('../images/50417808883_1c554f7f2c.jpg');
  background-size: cover;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.44px;
  line-height: 24px;
  padding: 0;
  margin: 0;
  font-family: 'Urbanist', sans-serif;
  color: #222;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 20px;
    line-height: 32px;
  }
}

header {
  padding: 30px 0;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.logo {
  width: 160px;
  height: 59px;
  background: url(../images/infini8_labs_logo.png) no-repeat top left;
  background-size: contain;
  text-indent: -99999px;
  overflow: hidden;
  display: block;
  margin: 0;
  -webkit-filter: drop-shadow(1px 2px 2px rgba( 255, 255, 255, 0.6));
  filter: drop-shadow(1px 2px 2px rgba( 255, 255, 255, 0.6));
}
@media screen and (min-width: 1024px) {
  header {
    padding: 60px 0;
  }

  .logo {
    width: 200px;
    height: 73px;
  }
}

.content-wrap {
  width: 100%;
  position: relative;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .content-wrap {
    margin: 0 auto;
    padding: 0 60px;
  }
}

section.section {
  width: 100%;
  padding: 120px 0 50px;
  position: relative;
  background: linear-gradient(0deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
}

section.section.hero {
  position: absolute;
  bottom: 0;
}

p {
  margin: 15px 0;
}
@media screen and (min-width: 1024px) {
  section.section {
    padding: 100px 0 40px;
  }
  
  section.section.hero .content-wrap {
    width: 70%;
    margin: 0;
  }

  p {
    margin: 20px 0;
  }
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.social-links li {
  padding: 0;
  margin-top: 20px;
}

.social-links li:first-child {
  margin-left: 0;
}

.social-links li a {
  color: #222;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 18px;
}

.social-links li a i {
  width: 40px;
  height: 40px;
  background: #E45A41;
  color: #fff;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-right: 15px;
  box-shadow: 0 0 5px rgba( 0, 0, 0, 0.3);
}

.social-links li a:hover i {
  background: #D63D28;
}
@media screen and (min-width: 668px) {
  header .content-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .social-links {
    flex-direction: row;
    justify-content: flex-end;
  }

  .social-links li {
    margin-left: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .social-links li {
    margin-left: 80px;
  }

  .social-links li a i {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

.whatsapp-v {
  background: #25D366;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  border-radius: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  box-shadow: 0 0 10px rgba( 0, 0, 0, 0.25);
}

.whatsapp-v:hover span {
  display: block;
}

.whatsapp-v span {
  position: absolute;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
  top: 50%;
  right: 60px;
  background: rgba( 0, 0, 0, 0.4);
  border-radius: 50px;
  padding: 3px 10px 2px 10px;
  font-size: 13px;
  width: max-content;
  transform: translate(0, -50%);
  display: none;
}

.whatsapp-v i {
  color: #fff;
  font-size: 24px;
}

@media screen and (min-width: 1024px) {
  .whatsapp-v {
    width: 50px;
    height: 50px;
    bottom: 60px;
    right: 60px;
  }

  .whatsapp-v i {
    font-size: 28px;
  }
}