.container {
    max-width: 1400px;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: auto;
    margin-left: auto;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.2em;
}

h1 {
    font-size: 2.75rem;
    color: #fff;
    line-height: 1.125em;
    font-weight: 700;
}

h2 {
    line-height: 1.3em;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.125em;
}

h3:after {
    content: "";
    width: 150px;
    height: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    background: linear-gradient(89.96deg, #C51515 6.07%, rgba(197, 21, 21, 0) 104.84%);
}

h4 {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 500;
 
}


.btn {
    background: #C51515;
    padding: 15px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 4px;
    box-shadow: 0px 2px 10px 2px rgba(197, 21, 21, 0.25);
    animation: inflate 5s infinite;
    text-align: center;
    width: max-content;
}

i {
    font-weight: 600;
}

.terms p{
    margin-top: 10px;
}

.terms h4{
   color: #000;
   font-weight: 700;
   margin-top: 40px;
 
}


.terms h6{
    color: #000;
    font-weight: 700;
    margin-top: 40px;
    text-transform: uppercase;
 }


@keyframes inflate{
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.025);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.025);
    }
    100% {
        transform: scale(1);
    }
}

.whats-fixed {
    position: fixed;
    bottom: 40px;
    right: 40px;
    animation: move 3s infinite;
    z-index: 222;
  }
  
  @keyframes move {
    25%{
       transform: translateX(-10px);  }
    50%{
      transform: translateX(0px);  
    }
    75%{
      transform: translateX(10px); 
    }
    100%{
      transform: translateX(0px); 
    }
  }

  @media only screen and (min-width: 331px) and (max-width: 390px) {
    h1 {
        font-size: 2.25rem;
    }
  }

  @media only screen and (max-width: 330px) {
    h1 {
        font-size: 2rem;
    }
  }