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

* {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    font-family: "Hind Siliguri", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #1D2A38;
}

a {
    transition: 0.5s;
    outline-style: none;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

ul, li, p {
    padding: 0;
    margin: 0;
    color: #1D2A38;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    font-weight: 700;
    color: #252525;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}
section {
    display: block;
    float: left;
    width: 100%;
}

.top_header_section
{
    display: block;
    float: left;
    width: 100%;
    position: relative;
    z-index: 2;
    background: #181b60;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.23);
    padding: 10px 0;
}
.top_header_section .inner
{
    display: flex;
    float: left;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.top_header_section .inner .logo_area
{
    display:block;
    float: left;
    width: 100%;
    max-width: 250px;
    text-align: center;
}
.top_header_section .inner .logo_area img
{
    width: 100%;
}
.top_header_section .inner .right_area
{
    display:block;
    float: left;
    width: auto;
}
.top_header_section .inner .right_area li
{
    list-style-type: none;
    font-size: 16px;
}
.top_header_section .inner .right_area li a
{
    color: #ffeb00;
}
.top_header_section .inner .right_area li i
{
    margin-right: 5px;
}
.top_header_section .inner .right_area li a:hover
{
    color: #fff;
}

.body_section {
    padding: 60px 0;
}

footer {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 15px 0;
    border-top: 1px solid #CCC;
    text-align: center;
}
.home_page_body
{
    display: block;
    float: left;
    width: 100%;
    min-height: 100vh;
    background: url(../images/bg.jpg) center;
    background-size: cover;
}
.home_page_top
{
    display: flex;
    float: left;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.home_page_top .left img
{
    width: 100%;
    max-width: 240px;
}
.enter_but
{
    display: inline-block;
    vertical-align: middle;
    padding: 10px 30px;
    background: #f4e008;
    color: #181b60;
    border-radius: 6px;
    font-weight: bold;
}
.enter_but:hover
{
    background: #fff;
}
.home_text1
{
    display: block;
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
.home_text1 img
{
    width: 100%;
    max-width: 400px;
}
.home_main_img
{
    display: block;
    float: left;
    width: 100%;
    text-align: center;
    margin: 15px 0 40px 0;
}
.home_main_img img
{
    width: 100%;
    max-width: 800px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

.blinking-text {
    animation: blink 1.2s infinite; 
}

.home_text1 h2 {
    color: #fff;
    margin-top: 15px;
    font-weight: normal;
    font-size: 35px;
}

    .home_text1 h2 strong {
        color: #f4e008;
    }

.home_text1 p {
    margin-top: 15px;
    font-size: 20px;
}

    .home_text1 p strong {
        color: #f40808;
    }

.bounce {
    overflow: hidden;
    position: relative;
    font-weight: bold;
    background: #f4e008;
    color: #000;
    border: 1px solid #ccc;
    padding: 8px 0;
    border-radius: 12px;
    margin-top: 15px;
}

    .bounce p {
        position: relative;
        width: 100%;
        height: 100%;
        margin: 0;
        text-align: center;
        /* Starting position */
        -moz-transform: translateX(50%);
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
        /* Apply animation to this element */
        -moz-animation: bouncing-text 10s linear infinite alternate;
        -webkit-animation: bouncing-text 10s linear infinite alternate;
        animation: bouncing-text 10s linear infinite alternate;
    }
/* Move it (define the animation) */
@-moz-keyframes bouncing-text {
    0% {
        -moz-transform: translateX(50%);
    }

    100% {
        -moz-transform: translateX(-50%);
    }
}

@-webkit-keyframes bouncing-text {
    0% {
        -webkit-transform: translateX(50%);
    }

    100% {
        -webkit-transform: translateX(-50%);
    }
}

@keyframes bouncing-text {
    0% {
        -moz-transform: translateX(50%); /* Browser bug fix */
        -webkit-transform: translateX(50%); /* Browser bug fix */
        transform: translateX(50%);
    }

    100% {
        -moz-transform: translateX(-50%); /* Browser bug fix */
        -webkit-transform: translateX(-50%); /* Browser bug fix */
        transform: translateX(-50%);
    }
}