/* common css ******************************************************************************/


@font-face {

    font-family: 'Anton-Regular';

    src: url('../fonts/Anton-Regular.ttf');
}

@font-face {

    font-family: 'Nirmala-R';

    src: url('../fonts/Nirmala.ttf');
}

@font-face {

    font-family: 'Nirmala-Bold';

    src: url('../fonts/nirmala-bold.ttf');
}

@font-face {

    font-family: 'MYRIADPRO-REGULAR';

    src: url('../fonts/MYRIADPRO-REGULAR.OTF');
}






:root {

    --white: #fff;

    --black: #000;

    --yellow: #f5bf5a;

}

.white {

    color: var(--white);

}

.black {

    color: var(--black);

}

.white-bg {

    background-color: var(--white);

}

.grey-bg {

    background-color: var(--grey-F2F2F7);

}

.green-gradient {
    background: url('../images/btn-bg.png');
    background-size: cover;
    background-position: center;
}

* {

    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: 'Nirmala-R';
}

h3 {
    font-size: 4rem;
    color: var(--yellow);
    font-weight: 700;
}
h4 {
    font-size: 3rem;
    word-spacing: 12px;
    color: var(--yellow);
    font-family: 'Nirmala-Bold';
}

.main {
    background-image: url("../images/banner-bg.png");
    height: 100dvh;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow: hidden;
    color: var(--white);
}

.logo-box {
    max-width: 60%;
    margin-inline: auto;
}

.white-box {
    width: 100%;
    text-align: center;
    padding: 5px 10px;
    background: var(--white);
    border-radius: 50px;
}

.white-box p{
    color: var(--black);
    font-family: 'MYRIADPRO-REGULAR';
    font-weight: bold;
    font-size: 1.6rem;
}

.line-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    gap: 10px;
}
.line-text span.line {
    width: 100%;
    height: 1px;
    background: var(--yellow);
}

.line-text span.text {
    flex-shrink: 0;
    color: var(--yellow);
    font-family: 'Nirmala-R';
    font-size: 1.8rem;
}

.boxes {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}
.boxes .box {
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    flex-shrink: 0;
    font-size: 14px;
    width: max-content;
    font-weight: 600;
}

.boxes .box.white{
    background: var(--white);
    color: var(--black);
}
.boxes .box.yellow{
    background: var(--yellow);
    color: var(--black);
}
.btn-box {
    width: 100%;
}

.btn-box a {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-family: 'Anton-Regular';
    font-size: 2.5rem;
    color: var(--black);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 2px;
}


 

