@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); 

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Poppins",sans-serif;
    box-sizing: border-box;
  }

  body {
    background-color: #FBFEFF;
  }

  html {
    scroll-behavior: smooth;
}
  
  .navbar {
    position: absolute;
    background-color: transparent;
    width: 100%;
    padding: 30px 0;
    top: 0;
    z-index: 999;
    transition: .3s linear;
  }
  
  .inner-width{
    max-width: 1300px;
    margin: auto;
    padding: 0 40px;
  }
  
  .navbar .inner-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggler{
    background: none;
    width: 30px;
    border: none;
    cursor: pointer;
    position: relative;
    outline: none;
    z-index: 999;
    display: none;
  }
  
  .menu-toggler span{
    display: block;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    position: relative;
    transition: .3s linear;
  }
  
  .navbar-menu a{
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-left: 30px;
    transition: .2s linear;
  }
  
  .navbar-menu a:hover{
    color: #48dbfb !important;
  }

  .navbar-menu a:hover{
    color: #48dbfb !important;
  }
  
  .sticky{
    background-color: #fff;
    padding: 18px 0;
  }
  
  .sticky .logo{
    background-image: url(../images/black-logo.png);
  }
  
  .sticky .navbar-menu a{
    color: #111;
  }
  
  .sticky .menu-toggler span{
    background-color: #111;
  }

  #home{
    height: 100vh;
    min-height: 500px;
    background-color: #234256;
  }
  
  #home .inner-width{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
  }
  
  #home .content{
    width: 100%;
    color: #fff;
  }
  
  #home .content h1{
    margin-top: 90px;
    font-size: 45px;
    margin-bottom: 40px;
    text-align: left;
    line-height: 100%
  }

  .text {
    width: 50%;
    text-align: left;
  }

.text p {
  text-align: left;
}


  .content img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
  }


/* CSS */
.button-81 {
  background-color: #fff;
  border: 0 solid #e2e8f0;
  border-radius: 1.5rem;
  box-sizing: border-box;
  color: #3268CA;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  text-decoration: none #0d172a solid;
  text-decoration-thickness: auto;
  transition: all .1s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0px 1px 2px rgba(166, 175, 195, 0.25);
  touch-action: manipulation;
  margin-top: 30px;
  font-size: 25px;
  padding: 15px;
}

.button-81:hover {
  background-color: #1e293b;
  color: #fff;
}


.whats {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
}

.whats img {
  animation: float 0.5s ease-in-out infinite;
}


@media screen and (max-width: 980px){
  .menu-toggler{
    display: block;
  }

  #home {
    height: 70vh;
  }

  .text {
    width: 100%;
  }

  .inner-width {
    justify-content: center;
  }

  .content img {
    display: none;
  }

  #home .text h1 {
    font-size: 20px;
    padding: 0;
  }

  #home .text p {
    font-size: 18px;
  }

  .navbar-menu{
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: #353b48;
    top: 0;
    right: -100%;
    max-width: 400px;
    padding: 80px 50px;
    transition: .3s linear;
  }

  .navbar-menu a{
    display: block;
    font-size: 30px;
    margin: 30px 0;
  }

  .sticky .navbar-menu{
    background-color: #f1f1f1;
  }
  
  .navbar-menu.active{
    right: 0;
  }

  .menu-toggler.active span:nth-child(1){
    transform: rotate(-45deg);
    top: 4px;
  }

  .menu-toggler.active span:nth-child(2){
    opacity: 0;
  }

  .menu-toggler.active span:nth-child(3){
    transform: rotate(45deg);
    bottom: 14px;
  }

  .logo img {
    width: 200px;
  }

  .button-81 {
    font-size: 25px;
    padding: 10px;
  }


}


@keyframes float {
  0%, 100% {
      transform: translateY(0);
  } 50% {
      transform: translateY(-5px);
  }
}