html {
    font-family: "Viga";
}

body {
    padding: 0px;
    margin: 0px
}

.main-header-ctn {
    /* background-image: url("assets/img/header.jpg"); */
    background-image: url(assets/img/bg_2.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grey-ctn {
    height: 100vh;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.main-header {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 120px;
    padding-right: 120px;
    padding-top: 25px;
    color: white;
}

.header img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.header a {
    padding-left: 60px;
    font-size: 24px;
    text-decoration: none;
    color: white;
}

.header a:hover {
    cursor: pointer;
    color: #af8548;
}

.main-header-text-ctn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.main-header-text-ctn h3 {
    font-size: 40px;
    margin: 0px;
    font-weight: 100 !important;
    color: white;
    text-align: center;
    width: 65%;
    margin-bottom: 50px;
}

.main-header-text-ctn span {
    font-size: 24px;
    color: white;
    text-align: center;
    width: 60%;
}

.main-payment-ctn {
    color: white;
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 150px;
    font-size: 24px;
}

@font-face {
    font-family: "Viga";
    src: url("assets/fonts/viga/Viga-Regular.ttf") format("truetype");
    font-style: normal;
}

@media (max-width:650px) {
    .header {
        padding-left: 50px;
        padding-right: 50px;
    }

    .heeder img {
        height: 65px;
        width: 65px;
    }

    .main-header-text-ctn h3 {
        font-size: 30px;
        margin-bottom: 34px;
    }

    .main-header-text-ctn span {
        font-size: 16px;
    }
}