

@font-face {
font-family: 'LEMON MILK';
src: url('../fonts/lemon_milk/LEMONMILK-Medium.eot');
src: url('../fonts/lemon_milk/LEMONMILK-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/lemon_milk/LEMONMILK-Medium.woff2') format('woff2'),
    url('../fonts/lemon_milk/LEMONMILK-Medium.woff') format('woff'),
    url('../fonts/lemon_milk/LEMONMILK-Medium.ttf') format('truetype'),
    url('../fonts/lemon_milk/LEMONMILK-Medium.svg#LEMONMILK-Medium') format('svg');
font-weight: 500;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Dharma Gothic E';
src: url('../fonts/dharma_gothic/DharmaGothicE-BoldItalic.eot');
src: url('../fonts/dharma_gothic/DharmaGothicE-BoldItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/dharma_gothic/DharmaGothicE-BoldItalic.woff2') format('woff2'),
    url('../fonts/dharma_gothic/DharmaGothicE-BoldItalic.woff') format('woff'),
    url('../fonts/dharma_gothic/DharmaGothicE-BoldItalic.ttf') format('truetype'),
    url('../fonts/dharma_gothic/DharmaGothicE-BoldItalic.svg#DharmaGothicE-BoldItalic') format('svg');
font-weight: bold;
font-style: italic;
font-display: swap;
}



:root {
--white: #FFFFFF;
--black: #000000;
--blue:#00a7fe;
--navy-blue:#001e5e;
}

.white {
color: var(--white) !important;
}

* { padding: 0; margin: 0; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
body{
color: var(--white);
font-family: 'Dharma Gothic E';
}
h1, h2, h3, h4, h5, h6 { 
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    line-height: 1;
    color: var(--white);
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child { margin-bottom: 0; }
h1 { font-size: 60px; }
h2 { font-size: 40px; }
h3 { font-size: 36px; }
h4 { font-size: 28px; }
h5 { font-size: 24px; }
h6 { font-size: 21px; }
p {
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 15px;
}
p:last-child { margin-bottom: 0; }
ul, ol { list-style-type: none; margin: 0; padding: 0; }
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}
span {
    display: inline-block;
}
img, video {
    max-width: 100%;
    display: block;
}
.btn-check:focus+.btn, .btn:focus {
    box-shadow: none;
}
:focus-visible { 
    outline: none;
}

/* Home Start *********************************************/
.home {
    width: 100%;
    min-height: 100vh;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    height: inherit;
    overflow: hidden;
}
.home-inner {
    height: 100vh;
    padding: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    row-gap: 15px;
}
.home-inner .top-content-bx {
    width: 100%;
    margin: 0 auto;
}
.home-inner .top-content-bx h1 {
    font-size: 150px;
    color: var(--blue);
    line-height: 130px;
}
.joining-box h2 {
    font-size: 70px;
    margin: 5px 0;
    text-transform: uppercase;
    color: var(--blue);
    line-height: 70px;
}
.home-inner .btm-content-bx {
    max-width: 60%;
    width: 100%;
    margin: 10px auto;
}
.logo-box img {
    max-width: 50%;
    width: 100%;
    margin: 0 auto 30px;
}
.middle-text-box {
    background: var(--white);
}
.middle-text-box h3{
    color: var(--navy-blue);
}
.middle-text-box h3 {
    font-size: 25px;
    color: var(--navy-blue);
    padding: 10px 20px;
    line-height: 30px;
    font-family: 'LEMON MILK';
}

.zoom-in {
    animation: zoomPulse 1s ease-in-out infinite;
}
  
@keyframes zoomPulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }
  

/* Responsive ******************************/

@media (max-width: 479px) {
    .home-inner .top-content-bx h1 {
        font-size: 100px;
        line-height: 100px;
    }
    .logo-box img {
        margin: 0 auto 10px;
    }
    .joining-box h2 {
        font-size: 55px;
        line-height: 55px;
    }
    .home-inner{
        row-gap: 10px;
    }
    .middle-text-box h3 {
        font-size: 22px;
        line-height: 25px;
    }
    .home-inner .btm-content-bx {
        max-width: 55%;
        margin: 5px auto;
    }
    .joining-box {
        max-width: 80%;
        margin: 0 auto;
        width: 100%;
    }
    .home{
        min-height: 91vh;
    }
}

@media (max-width:320px) {
    .home-inner .top-content-bx h1 {
        font-size: 80px;
        line-height: 70px;
        margin-bottom: 5px;
    }
    .home-inner {
        row-gap: 5px;
    }
    .joining-box h2 {
        font-size: 50px;
        line-height: 50px;
    }
    .logo-box img {
        max-width: 40%;
    }
    .home-inner {
        padding: 15px 0 0;
    }
    .middle-text-box h3 {
        font-size: 20px;
    }
}
