html{
  scroll-behavior: smooth;
 }
 
.info a{
  color: #000;
  text-decoration: none;
}
.link{
  color: #000;
  text-decoration: none;
}
.bg-img {  
  background: url(../images/background-slide.jpg) no-repeat;
  background-size: cover;
}
.bg-img2{
  background: url(../images/image3.jpg) no-repeat;
  background-size: cover;
  background-position: right;

}



.fa {
    padding: 20px;
    font-size: 30px;
    width: 20px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
  }
  .fa:hover {
    opacity: 0.7;
}
.fa-facebook {
    background: #3B5998;
    color: white;
  }
  .fa-instagram {
  background: #f40083;
  color: white;
}
/*--------------------------------------------------------------
# social media
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:600&display=swap');
.socialf{
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}
.socialf nav{
  margin-left: -32px;
  position: fixed;
  width: 90px;
  height: 120px;
  margin-top: 310px;
  transition: all 0.3s linear;
  box-shadow: 2px 2px 8px 0px rgba(0,0,0,.4);
}
.socialf nav li{
  height: 60px;
  position:relative;
  display: block;
}
.socialf nav li a{
  color: white;
  display: block;
  height: 100%;
  width: 100%;
  line-height: 60px;
  padding-left:25%;
  border-bottom: 1px solid rgba(0,0,0,.4);
  transition: all .3s linear;
}
.socialf nav li:nth-child(1) a{
  background: #4267B2;
}
.socialf nav li:nth-child(2) a{
  background: #E1306C;
}
.socialf nav li:nth-child(3) a{
  background: #02c459;
}

.socialf nav li a i{
  position:absolute;
  top: 17px;
  left: 20px;
  font-size: 27px;
}
.socialf ul li a span{
  display: none;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.socialf a:hover {
  z-index:1;
  width: 200px;
  border-bottom: 1px solid rgba(0,0,0,.5);
  box-shadow: 0 0 1px 1px rgba(0,0,0,.3);
}

.socialf ul li:hover a span{
  padding-left: 30%;
  display: block;
}
/*--------------------------------------------------------------
# Popup
--------------------------------------------------------------*/
.popup{
  color: rgb(0, 0, 0);
    display: block;
    height: 100%;
    width: 100%;
    line-height: 50px;
    padding-left: 25%;
    border-bottom: 1px solid rgba(0,0,0,.4);
    transition: all .3s linear;
}
.popup .overlay {
  position:fixed;
  top:0px;
  left:0px;
  width:100vw;
  height:100vh;
  background:rgba(0,0,0,0.7);
  z-index:1;
  display:none;
}

.popup .content {
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) scale(0);
  background:#fff;
  width:50%;
  z-index:2;
  color: #000;
  padding:20px;
  box-sizing:border-box;
  font-family:"Open Sans",sans-serif;
}
.popup .content a{
  text-decoration: none;
  color: #000;
  
}

.popup .close-btn {
  cursor:pointer;
  position:absolute;
  right:20px;
  top:20px;
  width:30px;
  height:30px;
  background:#222;
  color:#fff;
  font-size:25px;
  font-weight:600;
  line-height:30px;
  text-align:center;
  border-radius:50%;
}

.popup.active .overlay {
  display:block;
}

.popup.active .content {
  transition:all 300ms ease-in-out;
  transform:translate(-50%,-50%) scale(1);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #50dfd5;
}

#hero h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background-color: #16bddd;
  border: 2px solid #57dcd7;
}

#hero .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


/* 
---------------------------------------------
contact us
--------------------------------------------- 
*/

section.contact-us {
  background: url(../images/background.jpg);
  background-color: rgb(43, 247, 247);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  
  padding-top: 40px;
  padding-bottom: 30px;

}

section.contact-us:after {
  position: absolute;
  content: '';
  background-image: url(../images/footer-left-dec.png);
  left: 0px;
  top: 60px;
  width: 267px;
  height: 396px;
  z-index: 1;
}

section.contact-us .contact-info {
  background-color: #fff;
  margin-top: -30px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  z-index: 5;
  position: relative;
  padding: 20px;
}

section.contact-us .contact-info .icon i {
  float: left;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  background: rgb(219,138,222);
  background: linear-gradient(-145deg, rgba(219,138,222,1) 0%, rgba(246,191,159,1) 100%);
  color: #fff;
}

section.contact-us .contact-info h4 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

section.contact-us .contact-info span {
  font-size: 15px;
  color: #dc8cdb;
  font-weight: 700;
}

section.contact-us .section-heading {
  text-align: left;
  margin-bottom: 40px;
}

section.contact-us #contact {
  margin-left: -100px;
  position: relative;
  z-index: 5;
  background-color: #fff;
  margin-top: 40px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 40px;
}

section.contact-us #contact input {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  background-color: #f4f7fb;
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 0px 15px;
  margin-bottom: 30px;
}

section.contact-us #contact textarea {
  width: 100%;
  min-height: 140px;
  max-height: 180px;
  border-radius: 5px;
  background-color: #f4f7fb;
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 15px;
  margin-bottom: 30px;
}

section.contact-us #contact button {
  float: right;
  font-size: 13px;
  color: #fff;
  background: rgb(219,138,222);
  background: linear-gradient(-145deg, rgba(219,138,222,1) 0%, rgba(246,191,159,1) 100%);
  padding: 12px 30px;
  display: inline-block;
  border-radius: 5px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
  transition: all .3s;
  border: none;
  outline: none;
}

section.contact-us #contact button:hover {
  opacity: 0.9;
}

section.contact-us ul.social-icons li {
  display: inline-block;
  margin: 0px 5px;
}

section.contact-us ul.social-icons {
  text-align: center;
  margin-top: 70px;
}

section.contact-us ul.social-icons li a {
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  background-color: #fff;
  color: #dc8cdb;
  border-radius: 50%;
  transition: all .5s;
}

section.contact-us ul.social-icons li a:hover {
  background-color: #dc8cdb;
  color: #fff;
}

p.copyright {
  text-align: center;
  color: #fff;
  margin: 40px 0px;
}

p.copyright a {
  font-weight: 700;
  color: #fff;
}
.bgteam{
  --bs-bg-opacity: 1;
  background-color: #56dcd7;
}

/* 
---------------------------------------------
devise
--------------------------------------------- 
*/

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
    height:90vh;
  }
  #hero1 {
    background-attachment: fixed;
  }
  #slideimg1{
    align-items: center!important;

  }
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 100%;
  }
  #hero1 {
    height: auto;
  }

  #hero1 .animated {
    animation: none;
  }

  #hero1 .hero-img {
    text-align: center;
  }

  #hero1 .hero-img img {
    width: 100%;
  }
  section.contact-us #contact {
    margin-left: 0px!important;
  }
}

@media (max-width: 768px) {
  #hero {
    margin-top: 20px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 100%;
  }
  #hero1 {
    margin-top: 20px;
  }

  #hero1 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero1 h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero1 .hero-img img {
    width: 100%;
  }
}

@media (max-width: 575px) {
.bg-img2{
  background-position-x: 80%;
}
  #hero {
    margin-left: -82px;
    height: 70vh;
}
  .textbb{
    margin-top: -345px;
  }

  #hero .hero-img img {
    padding-top: 2%;
    width: 100%;
  }
  #hero1 {
    height: auto;
}

  #hero1 .hero-img img {
    padding-top: 2%;
    width: 100%;
  }
  .popup .content {
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(0);
    background:#fff;
    width:75%;
    z-index:2;
    padding:20px;
    box-sizing:border-box;
    font-family:"Open Sans",sans-serif;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}