@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;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body {
    overflow-x: hidden;
}

/* BOOTSTRAP CHANGES */
.btn,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
    box-shadow: none;
    border-radius: 3px;
}

.form-control,
.form-control:focus,
.form-control:active:focus,
.form-control.active:focus,
.form-control.focus,
.form-control:active.focus,
.form-control.active.focus {
    outline: none;
    box-shadow: none;
    border-radius: 3px;
}

.form-select,
.form-select:focus,
.form-select:active:focus,
.form-select.active:focus,
.form-select.focus,
.form-select:active.focus,
.form-select.active.focus {
    outline: none;
    box-shadow: none;
    border-radius: 3px;
}

.page-link,
.page-link:focus,
.page-link:active:focus,
.page-link.active:focus,
.page-link.focus,
.page-link:active.focus,
.page-link.active.focus {
    outline: none;
    box-shadow: none;
    border-radius: 3px;
}

html {
    scroll-behavior: smooth;
}

.hero {
    height: 88vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    color: #0A1931;
    margin-bottom: 20px;
    margin-top: 50px;
}

.hero p {
    font-size: 20px;
    font-weight: 400;
    color: #494949;
}

.hero img {
    height: 450px;
    margin: auto;
}

.hero .left-side {
    flex-direction: column;
    justify-content: center;
}

/* CSS */
.button-52 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 13px 20px 13px;
    outline: 0;
    border: 2px solid black;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    color: #fff;
    margin-top: 20px;
    text-decoration: none;
}

.button-52:after {
    content: "";
    background-color: #185ADB;
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
    transition: 0.2s;
}

.button-52:hover:after {
    top: 0px;
    left: 0px;
}

.button-52:hover {
    color: #fff;
}

.navbar a {
    font-weight: 600;
    text-transform: uppercase;

}

.navbar li {
    margin-right: 10px;
}

.forms {
    display: grid;
    place-items: center;
}

.card {
    width: 800px;
    border: 0;
}

@media (max-width: 768px) {
    .button-52 {
        padding: 13px 50px 13px;
    }

    .hero {
        height: auto;
    }


    .hero img {
        height: 200px !important;
        -webkit-animation: spin 10s linear infinite;
        -moz-animation: spin 10s linear infinite;
        animation: spin 10s linear infinite;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    @-moz-keyframes spin {
        100% {
            -moz-transform: rotate(360deg);
        }
    }

    @-webkit-keyframes spin {
        100% {
            -webkit-transform: rotate(360deg);
        }
    }

    @keyframes spin {
        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    .card {
        width: 100%;
    }
}