@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Red Hat Text', sans-serif;

}

#content{
    background: #fff;
    padding: 50px 40px;
}

#content h1{
    font-size: 35px;
    line-height: 47px;
    font-weight: 600;
    text-align: center;
}

#content h3{
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    text-align: center;
    margin: 15px 0 25px 0;
}

#btnn{
    background:  #077e9e;
    color: #fff;
    text-align: center;
    padding: 10px 25px;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.5s;
    border-radius: 5px;
    display: block;
    width: 50%;
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
  }
  
  @keyframes shake {
    10%,
    90% {
      transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
      transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
      transform: translate3d(-4px, 0, 0);
    }
    40%,
    60% {
      transform: translate3d(4px, 0, 0);
    }
  }

#btnn:hover{
    background:  #02acdb;
}

#content h6{
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    text-align: center;
    margin: 25px 0 15px 0;
}

#content h2{
    font-size: 28px;
    line-height: 40px;
    font-weight: 600;
    margin: 20px 0 15px 0;
}

#content h4{
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin: 0 0 10px 0;
}

.if{
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin: 20px 0;
}

.card{
    width: 40%;
    margin: 40px 0;
}

.card-body{
    background: #f4f4f4;
}

.card-img, .card-img-bottom, .card-img-top{
    width: 30% !important;
    display: block;
    margin: 10px auto;
}

.card-title{
    font-weight: 700;
}

.card-text{
    font-weight: 600;
}

.btn-primary{
    background: #0db154 !important;
    color: #fff;
    border: none !important;
    font-weight: 600 !important;
    margin: 0 0 20px 0;
}

.disclaimer{
    font-size: 12px;
    line-height: 24px;
    font-weight: 400;
    margin: 20px 0;
}

.copy{
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    margin: 20px 0;
}

@media screen and (max-width:1400px){
    .card{
        width: 50%;
    }

    #btnn{
        width: 80%;
    }
}

@media screen and (max-width:980px){
    #content{
        padding: 30px 20px;
    }  

    #btnn{
        width: 90%;
    }
}

@media screen and (max-width:600px){
    #btnn {
        font-size: 15px;
    }
    .card{
        width: 100%;
    }
}