@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');

body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #fff;
}

p,
h2,
div {
    margin: 0;
    padding: 0;
}

h2 {

    text-align: center;
    font-size: 30px;
    font-weight: 500;
}

header {
    margin-top: 20px;
    height: 100px;
    width: 100vw;
    text-align: center;
}

header img {
    text-align: center;
    max-height: 100%;
    height: auto;
    width: auto;
    max-width: calc(100vw - 160px);
}

.content {
    min-height: calc(100vh - 150px);
    padding-top: 20px;
    padding-bottom: 80px;
    padding-left: 80px;
    padding-right: 80px;
    box-sizing: border-box;
    width: 100%;
}
footer {
    display: flex;
    width: 100vw;
    background-color: #0064a2;
    padding: 10px;
    align-items: center;
}

footer span{
    margin-left: 20px;
    color: #fff;
}
footer a{
    text-decoration: none;
    border:none;
    outline:0;
    width: 35px;
    height: 35px;
    background-color: transparent;
    display: inline-block;
    line-height: 35px;
    font-size: 16px;
    border-radius: 100%;
    margin: 0 5px;
    transition: 0.6s;
    text-align: center;
}

footer a i {
    color:#fff;
}

footer a:hover {
    background-color: #fff !important;
    cursor: pointer;
}
footer a:hover i {
    color: #0064a2;
}


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    text-align: center;
}

.preloader-icon {
    position: relative;
    top: 45%;
    width: 100px;
    border-radius: 50%;
    animation: shake 1.5s infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, -1px) rotate(0deg);
    }

    10% {
        transform: translate(1px, -3px) rotate(-1deg);
    }

    20% {
        transform: translate(1px, -5px) rotate(-3deg);
    }

    30% {
        transform: translate(1px, -7px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -9px) rotate(1deg);
    }

    50% {
        transform: translate(1px, -11px) rotate(3deg);
    }

    60% {
        transform: translate(1px, -9px) rotate(0deg);
    }

    70% {
        transform: translate(1px, -7px) rotate(-1deg);
    }

    80% {
        transform: translate(1px, -5px) rotate(-3deg);
    }

    90% {
        transform: translate(1px, -3px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -1px) rotate(-1deg);
    }
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #0064a2;
    /*background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(122,153,217)),
									   color-stop(0.72, rgb(73,125,189)),
									   color-stop(0.86, rgb(28,58,148)));*/
}