img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.form-control {
    background: #F1F5F9;
    border: 1px solid #D8E7ED;
    border-radius: 10px;
}

/*images*/
.show-on-pc {
    display: none;
}

@media (min-width: 455px){
    .show-on-pc {
        display: block;
    }
    .show-on-mobile {
        display: none;
    }
}

/*made-with-love*/
.made-with-love {
    display: flex;
    justify-content: center;
    color: #fff;
    gap: 5px;
    padding: 10px;
    text-transform: uppercase;
    font-size: 10px;
    max-width: 1300px;
    margin: 0 auto;
}

@media(min-width:992px) {
    .made-with-love {
        justify-content: flex-end;
    }
}

.made-with-love-box {
    background-color: #000;
}

.made-with-love svg {
    width: 15px;
    animation: 1.5s heartThrob infinite;
}

@keyframes heartThrob {
    10% {
        transform: scale(1.15);
    }
    20% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.15);
    }
    60% {
        transform: scale(1);
    }
}