@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

@import url('https://site-assets.fontawesome.com/releases/v6.4.2/css/all.css');
@import url('https://site-assets.fontawesome.com/releases/v6.4.2/css/sharp-solid.css');
@import url('https://site-assets.fontawesome.com/releases/v6.4.2/css/sharp-regular.css');
@import url('https://site-assets.fontawesome.com/releases/v6.4.2/css/sharp-light.css');

:root {
    --blue: #0380d5;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px !important;
    background-color: #F5F5F5;
}

p {
    font-size: 14px !important;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #212529;
    text-decoration: none;
}

a:hover {
    color: var(--blue);
}

a.active {
    color: var(--blue);
}

a .underline {
    display: inline;
    position: relative;
    overflow: hidden;
}

a .underline:after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    bottom: -2px;
    background: var(--blue);
    height: 2px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

a .underline:hover:after,
a .underline:focus:after,
a .underline:active:after {
    left: 0;
    right: auto;
    width: 100%;
}

a .underline.active:after {
    left: 0;
    right: auto;
    width: 100%;
}

.bg-blue {
    background-color: var(--blue);
}

.text-blue{
    color: var(--blue);
}

/* start font text */
.font-w-300{
    font-weight: 300 !important;
}

.font-14-400{
    font-size: 14px;
    font-weight: 400;
}

.font-14-500{
    font-size: 14px;
    font-weight: 500;
}

.font-14-700{
    font-size: 14px;
    font-weight: 700;
}

.font-16-400{
    font-size: 16px;
    font-weight: 400;
}

.font-16-500{
    font-size: 16px;
    font-weight: 500;
}

.font-16-700{
    font-size: 16px;
    font-weight: 700;
}

.font-18-400{
    font-size: 18px;
    font-weight: 400;
}

.font-18-500{
    font-size: 18px;
    font-weight: 500;
}

.font-18-700{
    font-size: 18px;
    font-weight: 700;
}

.font-20-400{
    font-size: 20px;
    font-weight: 400;
}

.font-20-500{
    font-size: 20px;
    font-weight: 500;
}

.font-20-700{
    font-size: 18px;
    font-weight: 700;
}
/* end font text */

.coming-soon {
    min-height: 240px;
}

.arrow {
    text-align: center;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}