@font-face {
  font-family: "Futura";
  src: url('https://ppl.homes/fonts/Futura-Medium.ttf');
  font-weight: 500;
  font-style: normal;
}



body {
  background-image: url('https://ppl.homes/images/background.png');
  margin: 0;
  box-shadow: inset #CBBBA0 0 0 0 0.08em;
  margin: 60px 60px 60px 60px;
}
.linktree-wrapper {
  background-size: cover;
  font-family: "Futura";
}
.linktree-wrapper:before {
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.linktree-wrapper .linktree-info {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  color: #fff;
}
.linktree-wrapper .linktree-info img {
  max-width: 320px;
  margin: 0 auto;
  margin-top: 30px;
  display: block;
}
.linktree-wrapper .linktree-info .name-heading {
  text-align: center;
  width: 100%;
  padding-top: 30px;
  font-size: 17px;
  padding-bottom: 30px;
}
.linktree-wrapper .linktree-info .btn-wrapper .linktree-btn {
  font-size: 14px;
  background: #fff;
  padding: 16px 20px;
  margin-bottom: 20px !important;
  margin: 0 auto;
  display: block;
  width: 350px;
  text-align: center;
  transition: all 0.4s;
  transform: scale(1);
  border: 1px solid #CBBBA0;
  color: #0a0b0d;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Futura";
}
.linktree-wrapper .linktree-info .btn-wrapper .linktree-btn:hover {
  transform: scale(1.1);
}
.linktree-wrapper .linktree-info .footer-social {
  display: block;
  height: 100px;
}
.linktree-wrapper .linktree-info .footer-social .lt-social {
  background: #fff;
}


/*
    Auther: Abdelrhman Said
*/



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

*:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}


.wrapper {
  display: inline-flex;
  list-style: none;
}

.wrapper .icon {
  position: relative;
  background: #CBBBA0;
  border-radius: 50%;
  padding: 15px;
  margin: 30px;
  width: 55px;
  height: 55px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

ul.wrapper{
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  width: max-content;
  font-size: 14px;
  background: black;
  color: white;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: black;
  color: #ffffff;
}


.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: black;
  color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
  background: black;
  color: #ffffff;
}

.wrapper .share:hover,
.wrapper .share:hover .tooltip,
.wrapper .share:hover .tooltip::before {
  background: black;
  color: #ffffff;
}
.wrapper .linkedin:hover,
.wrapper .linkedin:hover .tooltip,
.wrapper .linkedin:hover .tooltip::before {
  background: #333333;
  color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
  background: #cd201f;
  color: #ffffff;
}


.wrapper-bottom {
  display: inline-flex;
  list-style: none;
}

.wrapper-bottom .icon {
  position: relative;
  color: #CBBBA0;
  border-radius: 50%;
  padding: 15px;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

ul.wrapper-bottom{
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.wrapper-bottom .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: black;
  color: white;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-bottom .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-bottom .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

li.icon.facebook{
  font-size: 25px;
}

li.icon.instagram{
  font-size: 25px;
}

li.icon.linkedin{
  font-size: 25px;
}

li.icon.youtube{
  font-size: 25px;
}


@import "compass";
@import "compass/css3/transform";
.ex1{
  font-family: fontawesome;
  padding: 60px 0;
  text-align: center;
  background: #fff;
  i {
    margin: 0 20px;
    color: #333;
    cursor: pointer;
  }
}

.ex1 {
  i {
    &:hover {
      color: red;
      @include transition(all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86));
      @include transform(scale(1.5));
    }
  }
}




/* Icons */

a.icons-social-media {
  color: #CBBBA0;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  font-family: fontawesome;
  font-size: 30px;
  position: relative;
  display: inline-block;
  width: 40px;
  height: 28px;
  padding-top: 12px;
  margin: 0 2px;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-font-smoothing: antialiased;
}

/*a.icons-social-media:hover {
  background: #ef92a3;
}*/

/* pop-up text */

a.icons-social-media span {
  color: #666;
  position: absolute;
  font-family:"Futura";
  bottom: 0;
  left: -25px;
  right: -25px;
  padding: 5px 7px;
  z-index: -1;
  font-size: 14px;
  border-radius: 2px;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* pop-up text arrow */

a.icons-social-media span:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  position: absolute;
  bottom: -5px;
  left: 40px;
}

/* text pops up when icon is in hover state */

a.icons-social-media:hover span {
  bottom: 50px;
  visibility: visible;
  opacity: 1;
}

/* font awesome icons */

a.icons-social-media:nth-of-type(1):before {
  content: "\f09a";
  width: 100px;
  height: 100px;
}
a.icons-social-media:nth-of-type(2):before {
  content: "\f16d";
}
a.icons-social-media:nth-of-type(3):before {
  content: "\f0e1";
}
a.icons-social-media:nth-of-type(4):before {
  content: "\f167";
}






/*Languages Picker*/

@import url("https://fonts.googleapis.com/css?family=Muli");
body {
  font-family: "Futura";
  font-family: "Futura";
}
.nav-wrapper {
  width: 300px;
  margin: 100px auto;
  text-align: center;
}

ul.language-selector{
  cursor:pointer;
  border: 1px solid #CBBBA0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sl-nav {
  display: flex;
  justify-content: right;
  position: relative;
}
.sl-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: 40px;
  margin-top: 25px;
}
.sl-nav li {
  cursor: pointer;
}
.sl-nav li ul {
  display: none;
}
.language-selector:hover ul {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 10px;
  right: 0px;
  display: block;
  background: transparent;
  width: 60px;
  padding-top: 40px;
  z-index: 9999;
  border-radius: 5px;
}
/*.sl-nav li:hover .triangle {
  position: absolute;
  top: 15px;
  right: -10px;
  z-index: 10;
  height: 14px;
  overflow: hidden;
  width: 30px;
  background: transparent;
}
.sl-nav li:hover .triangle:after {
  content: "";
  display: block;
  z-index: 20;
  width: 15px;
  transform: rotate(45deg) translateY(0px) translatex(10px);
  height: 15px;
  background: transparent;
  border-radius: 2px 0px 0px 0px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}*/
.sl-nav li ul li {
  position: relative;
  text-align: center;
  background: transparent;
  padding: 20px 20px;
  padding-bottom: 0;
  z-index: 2;
  font-size: 16px;
  color: #3c3c3c;
  display: flex;
    align-items: center;
justify-content: center;
}
.sl-nav li ul li:last-of-type {
  padding-bottom: 15px;
}
/*.sl-nav li ul li span {
  padding-left: 5px;
}
.sl-nav li ul li span:hover,
.sl-nav li ul li span.active {
  color: #CBBBA0;
}*/

.language-selector:hover ul{
padding-top:0;
background-color: #ffffff;
height: 133px;
top: 63px;
border: 1px solid #CBBBA0;
width: 60px;
}


/*Media Querys*/

@media screen and (min-width: 1900px) {
.linktree-wrapper .linktree-info img{
  width: 280px;
}
  ul.wrapper{
  margin-top: 0;
  margin-bottom: 0;
  }
  ul.wrapper-bottom{
    margin-top: 0;
    margin-bottom: 0;
  }

}

@media (min-width: 500px) and (max-width : 1900px){
  .linktree-wrapper .linktree-info img{
    width: 280px;
  }
    ul.wrapper{
    margin-top: 0;
    margin-bottom: 0;
    }
    ul.wrapper-bottom{
      margin-top: 0;
      margin-bottom: 0;
    }
}

@media (min-width: 400px) and (max-width : 499px){
  body{
    margin: 25px 25px 25px 25px;
  }

.linktree-wrapper .linktree-info img{
  width: 250px;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
ul.wrapper{
  margin-top: 0;
  margin-bottom: 0;
  }
  ul.wrapper-bottom{
    margin-top: 0;
    margin-bottom: 0;
  }
  ul.language-selector{
    width: 45px;
    height: 45px;
  }
  .linktree-wrapper .linktree-info .btn-wrapper .linktree-btn{
    width: 245px;
    font-size: 12px;
  }
  .wrapper .icon{
    width: 45px;
    height: 45px;
    margin: 25px;
  }
.sl-nav li:hover ul{
width: 48px;
}
.language-selector:hover ul{
top: 48px;}
}
@media screen and (max-width: 399px){
.linktree-wrapper .linktree-info img{
  max-width: 150px;
  margin-bottom: 1rem;
  margin-top: 30px;
}
.wrapper .icon{
  width: 40px;
  height: 40px;
  margin: 17px;
}
.linktree-wrapper .linktree-info .btn-wrapper .linktree-btn{
  width: 215px;
  font-size: 10px;
}
ul.wrapper{
margin-top: 0;
margin-bottom: 10px;
}
.fa-solid.fa-phone{
  font-size: 22px;
}
.fa-brands.fa-whatsapp{
  font-size: 33px;
}
.fa-solid.fa-paper-plane{
  font-size: 21px;
}
.wrapper-bottom .icon{
  margin: 4px;
}
ul.language-selector{
  width: 40px;
height: 40px;
}
body{
  margin: 25px 25px 25px 25px;
}
.sl-nav ul{
  margin-right: 20px;
margin-top: 15px;
}
ul.wrapper-bottom{
margin-top: 1rem;
margin-bottom: 1rem;
}
.sl-nav li:hover ul{
width: 52px;
}
.language-selector:hover ul{
top: 42px;}
}

/*@media screen and (min-width: 1900px) {

body{
    height: 89vh;
  }
}
@media screen and (min-width: 1400px) {

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

}

@media (min-width: 992px) and (max-width : 1200px){

}
@media screen and (max-width: 1024px){

}
@media screen and (max-width: 900px){

}
@media screen and (max-width: 768px){

}
@media screen and (max-width: 600px){*/
