/* common css ******************************************************************************/



@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



@font-face {

    font-family: 'Poppins-Bold';

    src: url('../fonts/Poppins/Poppins-Bold.ttf');

    

}
@font-face {

    font-family: 'Poppins-ExtraBold';

    src: url('../fonts/Poppins/Poppins-ExtraBold.ttf');

    

}
@font-face {

    font-family: 'Poppins-Light';

    src: url('../fonts/Poppins/Poppins-Light.ttf');

    

}
@font-face {

    font-family: 'Poppins-SemiBold';

    src: url('../fonts/Poppins/Poppins-SemiBold.ttf');

    

}
@font-face {

    font-family: 'Poppins-Medium';

    src: url('../fonts/Poppins/Poppins-Medium.ttf');

    

}


:root {

    --white: #fff;

    --black: #000;

    --blue: #19226D;

    --gray: #5D5D5D;

    --dark-gray: #333333;

    --yellow: #FFCC29;

}

.white {

    color: var(--white);

}

.black {

    color: var(--black);

}

.white-bg{

    background-color: var(--white);

}

.grey-bg{

    background-color: var(--grey-F2F2F7);

}

.green-gradient{

    background: linear-gradient(to bottom left, var(--bright-teal),var(--green-teal));

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    -moz-box-sizing: border-box;

    -webkit-box-sizing: border-box;

}

*::before,

*::after {

    box-sizing: border-box;

}

.common::after {

    content: '';

    position: absolute;

    width: 100%;

    height: 100%;

    left: 0;

    top: 0;

    background: var(--black);

}
h1,h2,h3.h4,h5,h6{
    font-weight: 100;
}

p {

    margin: 0;

    padding: 0;

    font-size: 20px;

    /* line-height: 25px; */

    /* margin-bottom: 25px; */

    color: var(--black_343436);

    

}

p:last-child {

    margin-bottom: 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;

}


/* **************************************************** */



body{
    max-width: 480px;
    margin: 0 auto;
    height: 100%;
    font-family: "Poppins";
   
}

.main {
    background-image: url("../images/banner-bg.png");
    height: 100vh;
    /* padding: 40px 50px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}


.main-text {
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}   

.main-text p{
    font-family: "Poppins-SemiBold";
    color: var(--gray);
    font-size: 15px;
}
.main-text h5{
    font-family: "Poppins-ExtraBold";
    color: var(--gray);
    font-size: 20px;
}
.main-text h1 {
    font-family: "Poppins-ExtraBold";
    color: var(--blue);
    font-size: 60px;
    line-height: 0.8;
}
.main-text h3{
    font-family: "Poppins-Light";
    color: var(--blue);
    font-size: 50px;
    font-weight: 100;
    line-height: 1;
}
.main-text .line {
    width: 50px;
    border: 2px solid var(--blue);
    margin: 8px auto 0;
}

.date p{
    color: var(--gray);
    font-family: "Poppins-Medium";
    text-transform: uppercase;
    text-align: center;
}
.date h2 {
    color: var(--blue);
    font-family: "Poppins-Bold";
    text-transform: uppercase;
    font-size: 50px;
    line-height: 0.9;
}

.target{
    width: 100%;
}

.target img {
    width: 65%;
    margin: 0 auto;
}

.boxes {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    padding-bottom: 10px;
}

.boxes .box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}
.boxes .icon{
margin-bottom: 8px;}
.boxes .text p{
    text-align: center;
    color: var(--dark-gray);
    font-size: 16px;
    text-transform: capitalize;
}

.boxes .line {
    height: 100%;
    border: 1px solid var(--blue);
}

.btn-box {
   width: 100%;
}
.btn-box a {
    background-color: var(--yellow);
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    padding: 15px 0;
    font-family: "Poppins-Bold";
    font-size: 22px;
    color: var(--blue);
    text-transform: uppercase;
}
















