*, *:after, *:before {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: "Prompt",sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

img{
    max-width: 100%;
}

.main {
    flex: 1 1 auto;
    margin: 1rem 0 5rem;
    background-color: #fff;
}

.container {
    max-width: 610px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.title {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    color: #333;
}
.subtitle {
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    margin: 15px 0;
}

.subtitle-img {
    width: 38px;
    height: 39px;
    display: block;
    margin-left: 10px;
}

.bar__wrapper {
    overflow: hidden;
    text-align: center;
    width: 100%;
    max-width: 190px;
    height: 15px;
    box-shadow: 0 1px 5px rgb(0 0 0/70%);
    border-radius: 5px;
    font-size: 18px;
    color: #fff;
    padding: 7px 20px;
    position: relative;
    margin: 0 auto 10px;
    z-index: 5;
}

.bar {
    width: 87%;
    height: 100%;
    background-color: #5cb85c;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.bar__lines {
    width: 300%;
    height: 100%;
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 40px 40px;
    animation: progress-bar 5s linear infinite reverse;
}

@keyframes progress-bar {
    100% {
        margin-left: -360px
    }
}

.bar-text {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #555;
}

.image-wrapper {
    display: block;
    width: 100%;
}

.image {
    width: 100%;
    max-width: 100%;
    display: block;
}

.select-title {
    text-transform: uppercase;
    text-align: center;
    font-size: 26px;
    font-weight: 500;
}

.center-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

.red-button {
    background-color: red;
    color: white;
}

.green-button {
    background-color: green;
    color: white;
}

.select__box {
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
}

.select__box-button {
    width: calc(50% - 10px);
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(150deg,#eb4c42,#ca4339);
    padding: 20px;
    padding: 11px 2px;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50px;
    border-width: 1px 2px 3px;
    border-style: solid;
    border-color: #4a5dff;
    border-top-color: #047c34;
    border-right-color: #e95929;
    border-left-color: #e95929;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 3px 6px rgb(0 0 0/25%);
    text-shadow: -0.5px 0.5px 1px rgb(0 0 0/50%);
    margin-right: 20px;
}

.select__box-button:hover {
    background: linear-gradient(150deg,#bb3026,#a4281f);
    text-decoration: none;
    color: #fff;
}

.select__box-button:last-child {
    margin-right: 0;
    background: linear-gradient(150deg,#23b424,#02fd03);
}

.select__box-button:last-child:hover {
    background: linear-gradient(150deg,#148814,#02c502);
    text-decoration: none;
    color: #fff;
}

.text-container {
    max-width: 610px;
    width: 100%;
    margin: 150px auto 0 auto;
    padding: 0 20px;
}
.footer {
    width: 100%;
    background-color: rgba(40,97,154,1);
    position: relative;
}

.footer__inner {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.footer__main {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.logo {
    width: 250px;
    max-width: 80%;
    display: block;
}

.footer__links {
    display: flex;
    flex-direction: column;
}

.footer__links-item:hover {
    color: #fff;
    text-decoration: none;
}

.footer__links-item {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    text-align: end;
    margin-bottom: 5px;
}

.footer__links-item:last-child {
    margin-bottom: 0;
}

.footer__text {
    font-size: 8px;
    line-height: 1.05;
    color: #fff;
    margin-top: 10px;
}


#main-footer {
    background-color: #1f49b6
}

.footer__links a{
    font-size: 1.1rem;
}
footer p{
    color: #e0e0e0;
}
footer, footer a{
    color: white;
}
footer a:hover{
    color: white;
}







.temblor:hover {
    animation: temblor 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}
@keyframes temblor {
  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);
  }
}
.temblor_inf {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: temblor_inf 2s;
    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
}

.temblor_2 {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: temblor 2s;
    /* When the animation is finished, start again */
    animation-iteration-count: 2;
}
@keyframes temblor_inf {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}