.container {
    max-width: 1300px;
}

.awardHeroSection {
    background: #191111;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    height: 768px;
}

.awardHeroSection .awardBg {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.awardHeroSection .awardBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awardHeroSection .awardBg img.posiAbsolute {
    position: absolute;
}

.heading {
    position: absolute;
    top: 15%;
    text-align: center;
}

.heading h1 {
    margin: 0 0 50px;
}

.awardTrophy {
    position: absolute;
    bottom: 0;
    right: 5%;
}

.guestRoom {
    position: absolute;
    bottom: 0;
    left: 5%;
}

.guestRoom img {
    position: relative;

    z-index: 1;
}

.guestName {
    position: absolute;
    left: 75%;
    bottom: 60px;
    padding: 20px;
    border-radius: 20px;
    border: 4px solid #E5CF6A;
    font-size: 32px;
    font-weight: 600;
    font-family: 'akshar';
    color: #ffffff;
    white-space: nowrap;
    text-align: center;
    padding-left: 60px;
}

.eventAddress {
    position: absolute;
    bottom: 30px;
    right: 25%;
    font-size: 20px;
    font-weight: 400;
    font-family: 'akshar';
    color: #ffffff;
    white-space: nowrap;
    text-align: center;
}

.midContent {
    background: #1C1311 url(../images/award-ceremony/content-bg.png) no-repeat center center;
    background-size: cover;
    padding: 70px 0 0;
}

.midContent h2 {
    font-size: 36px;
    font-weight: 600;
    color: #F6D662;
    margin: 0 0 20px;
    padding: 0 0 25px;
    background: url(../images/award-ceremony/heading-line.png) no-repeat -50px bottom;
}

.midContent .desc {
    margin-bottom: 80px;
}

.midContent .desc p {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 36px;
    margin: 0 0 24px;
}

.midContent .desc p strong {
    color: #F8CC73;
    font-weight: 600;
    ;
}

.awardSection {
    background: url(../images/award-ceremony/award-bg.png) no-repeat top center;
    padding: 80px 0;
    background-size: cover;
}

.awardSection h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    padding: 5px;
    text-align: center;
    margin: 0;
}

.awardContainer {
    position: relative;
    padding: 50px 0 0;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;

    transition: all 0.5s ease-in-out;
}

/* Create gradient border using a pseudo-element */
.awardContainer::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 4px;
    /* Border thickness */
    border-radius: 20px;
    background: linear-gradient(120deg, #AE8625, #F7EF8A, #D2AC47, #F7EF8A, #EDC967);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.trophy {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
}

.trophy h4 {
    text-align: center;
    background: linear-gradient(0deg, rgba(48, 28, 10, 1) 58%, rgba(48, 28, 10, 0));
    padding: 15px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 4px;
    margin: 0;
    border-radius: 0 0 20px 20px;
}

.awardContainer:hover .trophy h4 {
    color: rgba(48, 28, 10, 1);
}

.hover-desc {
    background: rgba(16, 16, 16, 0.7);
    position: absolute;
    border-radius: 20px;
    left: 4px;
    top: 4px;
    right: 4px;
    bottom: 4px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    transform: translateY(102%);
    transition: all 0.5s ease-in-out;
}

.awardContainer:hover .hover-desc {
    transform: translateY(0%);
    transition: all 0.5s ease-in-out;
}

.hover-desc p {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    padding: 0;
    margin: 0 0 20px;
}

.hover-desc h4 {
    font-size: 30px;
    font-weight: 600;
    color: #FFBC5E;
    text-align: center;
    display: block;
    margin: 0;
}

.platinumAward h3,
.platinumAward .hover-desc p {
    color: #DCE6E3;
}

.diamondAward h3,
.diamondAward .hover-desc p {
    color: #E6DDCF;
}

.goldAward h3,
.goldAward .hover-desc p {
    color: #F4D6A1;
}

.silverAward h3,
.silverAward .hover-desc p {
    color: #DDD9D3;
}

.awardDonateForm {
    padding: 40px 0;
    background: #383838;
    position: relative;
}

.awardDonateForm::before {
    content: '';
    background: url(../images/award-ceremony/cornor-left.png) no-repeat left top;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30%;
}

.awardDonateForm::after {
    content: '';
    background: url(../images/award-ceremony/cornor-right.png) no-repeat right bottom;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
}


.awardDonateForm h2 {
    font-size: 38px;
    color: #F8CC73;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.awardDonateForm .col-md-2 {
    padding-right: 7px;
    padding-left: 7px;
    flex: 0 0 20%;
    max-width: 20%;
}

.awardDonateForm .awardBtn {
    background: #DAAA48;
    color: #2D2928;
    width: 160px;
    height: 48px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.awardDonateForm .form-control {
    height: 48px;
}

.requestContainer {
    background: #301C0A;
    padding: 80px 0;
    position: relative;
}

.requestContainer::before {
    content: '';
    background: url(../images/award-ceremony/circleBg.png) no-repeat center center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.requestContainer h2 {
    font-size: 36px;
    font-weight: 600;
    color: #F6D662;
    margin: 0 0 20px;
    padding: 0 0 20px;
    position: relative;
}

.requestContainer h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E6D06B 10%, #301C0A 70%);
    border-radius: 10px;
}

.requestContainer .desc {}

.requestContainer .desc p {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 32px;
    margin: 0 0 20px;
}

.requestContainer .desc p:last-child {
    margin: 0;
}

.requestContainer .desc p strong {
    color: #F8CC73;
    font-weight: 600;
    ;
}


.awardVideoWrapper {
    position: relative;
    padding: 15px;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;

    transition: all 0.5s ease-in-out;
}

/* Create gradient border using a pseudo-element */
.awardVideoWrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 4px;
    /* Border thickness */
    border-radius: 20px;
    background: linear-gradient(320deg, #F8CC73 0%, #301C0A 30%, #56401B 66%, #DABB56 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.footerSection {
    background: #383838;
    padding: 30px 0;
}

.footerSection p {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: normal;
    margin: 0;
}

  .awardDonateForm {
            padding: 26px 0;
        }

        .awardDonateForm .container{
            max-width: 1440px;
        }

        .awardDonateForm .katha-form-inputs {
           display: flex
;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 10;
        }

        .awardDonateForm .katha-form-inputs .f-input {
            -ms-flex: 0 0 14%;
            flex: 0 0 14%;
            max-width: 14%;
            padding: 0 7px;
            color: #ffffff;
        }

        .awardDonateForm .katha-form-inputs .f-input:first-child{
              -ms-flex: 0 0 20%;
            flex: 0 0 20%;
            max-width: 20%;
        }

        .awardDonateForm .katha-form-inputs .f-input label, .awardDonateForm .katha-form-inputs .custom_open_amount_cross {
            display: none;
        }

        .awardDonateForm .katha-form-inputs .f-input label.error {
    font-size: 13px;
    white-space: nowrap;
}

        .awardDonateForm .katha-form-inputs .my-bt {
            background: #DAAA48;
            color: #2D2928;
            width: 160px;
            height: 48px;
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            border: 1px solid transparent;
            padding: .375rem .75rem;
            font-size: 1rem;
            line-height: 1.5;
            border-radius: .25rem;
        }

        .awardDonateForm .katha-form-inputs select,
        .awardDonateForm .katha-form-inputs input {
            display: block;
            width: 100%;
            height: 48px;
            padding: .375rem .75rem;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            color: #495057;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid #ced4da;
            border-radius: .25rem;
            transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        }

        /*ceremonyCountDown*/

.ceremonyCountDown{
     background: #1C1311;
    padding: 40px 0;
    position: relative;
}


.ceremonyCountDown::before {
    content: '';
    background: url(../images/award-ceremony/circleBg.png) no-repeat center center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.ceremonyCountDown h2 {
    font-size: 38px;
    color: #F8CC73;
    font-weight: 700;
    margin: 0 0 30px;
    padding: 0;
    text-align: center;
}

.ceremonyCountDown .countdown{
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceremonyCountDown .unit{
    margin: 0 15px;
    padding: 10px;
    background: linear-gradient(180deg, #AE8625, #D2AC47, #F7EF8A, #EDC967);
    width: 160px;
    height: 160px;
    border-radius: 12px;
    border: 5px solid rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ceremonyCountDown .unit .number{
    font-size: 72px;
    line-height: 80px;
    font-weight: 700;
    /* background gradient for text */
    background: linear-gradient(180deg, #333333, #1C1311, #301a07, #1C1311);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

/* Number container for wheel effect */
.ceremonyCountDown .number span {
    display: block;
    height: 60px;
    line-height: 60px;
    transition: transform 0.5s ease-in-out;
}


/*ceremonyCountDown*/
@media all and (max-width:1600px) {
.awardDonateForm .katha-form-inputs{
    flex-wrap: wrap;
    justify-content: center;
}
}

/*Small Desktop or Tablet CSS*/

/* Small Desktop*/
@media all and (min-width:1371px) and (max-width:1600px) {
    .heading {
        top: 10%;
    }

    .awardHeroSection {
        height: 768px;
    }

    .awardHeroSection .awardBg {
        height: 100%;
        align-items: flex-start;
    }

    .awardHeroSection .awardBg img {
        object-fit: cover;
        height: 100%;
    }

    .awardTrophy {
        right: 30px;
    }

    .guestRoom {
        left: 0%;
    }

    .guestName {
        font-size: 28px;
    }

    .eventAddress {
        bottom: 60px;
        right: 20%;
    }

    .girl-img {
        text-align: center;
    }
}

/* Small tablet*/
@media all and (min-width:1161px) and (max-width:1370px) {
    .heading {
        top: 10%;
    }

    .heading h2 img {
        max-width: 70%;
    }

    .awardHeroSection {
        height: 768px;
    }

    .awardHeroSection .awardBg {
        height: 100%;
        align-items: flex-start;
    }

    .awardHeroSection .awardBg img {
        object-fit: cover;
        height: 100%;
    }

    .awardTrophy {
        right: 30px;
    }

    .awardTrophy img {
        width: 180px;
    }

    .guestRoom {
        left: 0%;
    }

    .guestName {
        font-size: 24px;
        left: 72%;
        bottom: 60px;
        padding: 12px;
        padding-left: 60px;
    }

    .eventAddress {
        bottom: 60px;
        right: 20%;
        font-size: 16px;
    }

    .girl-img {
        text-align: center;
    }
}


/* tablet*/
@media all and (min-width:821px) and (max-width:1160px) {
    .heading {
        top: 10%;
        text-align: center;
    }

    .heading h1 {
        margin-bottom: 30px;
    }

    .awardHeroSection {
        height: 768px;
    }

    .awardHeroSection .awardBg {
        height: 100%;
        align-items: flex-start;
    }

    .awardHeroSection .awardBg img {
        object-fit: cover;
        height: 100%;
    }

    .awardTrophy {
        right: 30px;
    }

    .awardTrophy img {
        width: 180px;
    }

    .guestRoom {
        left: 0%;
    }

    .guestName {
        font-size: 20px;
        left: 72%;
        bottom: 50px;
        padding: 10px;
        padding-left: 70px;
    }

    .eventAddress {
        bottom: 200px;
        right: 25%;
        left: 25%;
        font-size: 18px;
    }

    .girl-img {
        text-align: center;
    }

    .midContent .desc p,
    .requestContainer .desc p,
    .footerSection p {
        font-size: 16px;
        line-height: 28px;
    }

    .awardSection .col-md-3 {
        padding: 0 8px;
    }

    .hover-desc {
        padding: 12px;
    }

    .hover-desc p {
        font-size: 16px;
    }

    .trophy img {
        max-height: 360px;
    }

    .awardSection h3 {
        font-size: 28px;
    }

    .footerSection h1 img {
        max-width: 400px;
    }

}

/* tablet*/
@media all and (min-width:821px) and (max-width:1024px) and (orientation: landscape) {
    .heading {
        top: 10%;
        text-align: center;
    }

    .heading h1 {
        margin-bottom: 30px;
    }

    .heading h2 img {
        max-width: 70%;
    }

    .awardHeroSection {
        height: 768px;
    }

    .awardHeroSection .awardBg {
        height: 100%;
        align-items: flex-start;
    }

    .awardHeroSection .awardBg img {
        object-fit: cover;
        height: 100%;
    }

    .awardTrophy {
        right: 30px;
    }

    .awardTrophy img {
        width: 180px;
    }

    .guestRoom {
        left: 0%;
    }

    .guestName {
        font-size: 20px;
        left: 72%;
        bottom: 50px;
        padding: 10px;
        padding-left: 70px;
    }

    .eventAddress {
        bottom: 200px;
        right: 25%;
        left: 25%;
        font-size: 18px;
    }

    .girl-img {
        text-align: center;
    }

    .midContent .desc p,
    .requestContainer .desc p,
    .footerSection p {
        font-size: 16px;
        line-height: 28px;
    }

    .awardSection .col-md-3 {
        padding: 0 8px;
    }

    .hover-desc {
        padding: 12px;
    }

    .hover-desc p {
        font-size: 16px;
    }

    .trophy img {
        max-height: 360px;
    }

    .awardSection h3 {
        font-size: 28px;
    }

    .footerSection h1 img {
        max-width: 400px;
    }

}


@media all and (min-width:768px) and (max-width:1160px) {

    .awardHeroSection {
        height: 85vh;
    }

    .awardHeroSection .awardBg {
        height: 100%;
        align-items: flex-start;
    }

    .awardHeroSection .awardBg img {
        object-fit: cover;
        height: 100%;
    }
    

    .awardHeroSection {
        height: 678px;
        align-items: flex-start;
        padding-bottom: 0;
    }

    .heading {
        position: absolute;
        top: 40px;
        text-align: center;
        left: 15px;
        right: 15px;
    }

    .heading h2 img {
        max-width: 50%;
    }

    .heading h1 {
        margin: 0 0 30px;
    }

    .guestRoom {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .guestRoom img {
        position: relative;
        z-index: 1;
        max-width: 230px;
    }

    .guestRoom .guestName {
        position: absolute;
        left: 65%;
        bottom: 20px;
        padding: 20px;
        border-radius: 20px;
        border: 2px solid #E5CF6A;
        font-size: 22px;
        font-weight: 600;
        font-family: 'akshar';
        color: #ffffff;
        white-space: nowrap;
        text-align: center;
        padding-left: 60px;
    }

    .awardTrophy {
        right: 30px;
        text-align: right;
        bottom: 0;
        width: 100%;
    }

    .awardTrophy img {
        max-width: 150px;
    }

    .eventAddress {
        position: absolute;
        top: 350px;
        right: 15px;
        font-size: 14px;
        font-weight: 400;
        font-family: 'akshar';
        color: #ffffff;
        white-space: nowrap;
        text-align: center;
        left: 15px;
        bottom: auto;
    }

    .midContent .row {
        flex-direction: row;
    }

    .midContent h2 {
        font-size: 28px;
    }

    .midContent {
        background: #1C1311 url(../images/award-ceremony/content-bg.png) no-repeat top center;
        background-size: cover;
        padding: 40px 0 0;
    }

    .midContent .desc {
        margin-bottom: 30px;
    }

    .midContent .desc p {
        font-size: 16px;
        font-weight: 400;
        color: #ffffff;
        line-height: 30px;
        margin: 0 0 16px;
    }

    .girl-img {
        text-align: center;
    }

    .girl-img img {
        max-width: 95%;
    }

    .awardSection {
        background: #000000 url(../images/award-ceremony/award-bg.png) no-repeat top center;
        padding: 40px 0;
        background-size: contain;
    }

    .awardSection .col-md-3 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .platinumAward,
    .diamondAward,
    .goldAward,
    .silverAward {
        margin-bottom: 20px;
    }

    .awardDonateForm::before,
    .awardDonateForm::after {
        display: none;
    }

    .requestContainer {
        background: #301C0A;
        padding: 40px 0;
        position: relative;
    }

    .requestContainer h2 {
        font-size: 28px;
    }

    .requestContainer .desc p {
        font-size: 16px;
        font-weight: 400;
        color: #ffffff;
        line-height: 28px;
        margin: 0 0 15px;
    }

    .awardVideoWrapper {
        margin-bottom: 30px;
    }

    .footerSection img {
        max-width: 300px;
    }

    .footerSection p {
        font-size: 16px;
        font-weight: 400;
    }

    .awardDonateForm .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 20px;
        margin-bottom: 15px;
        text-align: center;
    }

    .awardDonateForm .awardBtn {
        width: 100%;
    }

    .awardContainer {
        max-width: 350px;
        margin: 0 auto;
    }

    .ceremonyCountDown .countdown {
        flex-wrap: wrap;
    }

    .ceremonyCountDown .unit {
        margin: 10px;
    }

    .awardDonateForm .katha-form-inputs{
        flex-wrap: wrap;
    }

    .awardDonateForm .katha-form-inputs .f-input, .awardDonateForm .katha-form-inputs .f-input:first-child{
        -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin: 0 0 15px;
    }

}

/*Small Desktop or Tablet CSS*/

@media all and (max-width:767px) {
    .awardHeroSection {
        height: 480px;
        align-items: flex-start;
        padding-bottom: 0;
    }

    .awardHeroSection .awardBg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .heading {
        position: absolute;
        top: 40px;
        text-align: center;
        left: 15px;
        right: 15px;
    }

    .heading img {
        max-width: 50%;
    }

    .heading h1 {
        margin: 0 0 30px;
    }

    .guestRoom {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .guestRoom img {
        position: relative;
        z-index: 1;
        max-width: 190px;
    }

    .guestRoom .guestName {
        position: absolute;
        left: 65%;
        bottom: 20px;
        padding: 10px;
        border-radius: 20px;
        border: 2px solid #E5CF6A;
        font-size: 18px;
        font-weight: 600;
        font-family: 'akshar';
        color: #ffffff;
        white-space: nowrap;
        text-align: center;
        padding-left: 60px;
    }

    .awardTrophy {
        right: 20px;
        text-align: right;
        bottom: 0;
        width: 100%;
    }

    .awardTrophy img {
        max-width: 100px;
    }

    .eventAddress {
        position: absolute;
        top: 250px;
        right: 15px;
        font-size: 14px;
        font-weight: 400;
        font-family: 'akshar';
        color: #ffffff;
        white-space: nowrap;
        text-align: center;
        left: 15px;
        bottom: auto;
    }

    .midContent .row{
        flex-direction: column-reverse;
    }
    .midContent h2 {
    font-size: 28px;
    }

    .midContent {
    background: #1C1311 url(../images/award-ceremony/content-bg.png) no-repeat top center;
    background-size: cover;
    padding: 40px 0 0;
}

    .midContent .desc {
    margin-bottom: 30px;
}

    .midContent .desc p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 30px;
    margin: 0 0 16px;
}

.girl-img{
    text-align: center;
}

.girl-img img{
    max-width: 50%;
}

.awardSection {
    background:#000000 url(../images/award-ceremony/award-bg.png) no-repeat top center;
    padding: 40px 0;
    background-size: contain;
}

.platinumAward, .diamondAward, .goldAward, .silverAward{
    margin-bottom: 20px;
}

.awardDonateForm::before, .awardDonateForm::after{
    display: none;
}

.requestContainer {
    background: #301C0A;
    padding: 40px 0;
    position: relative;
}
.requestContainer h2 {
    font-size: 28px;
}

.requestContainer .desc p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 28px;
    margin: 0 0 15px;
}

.awardVideoWrapper{
    margin-bottom: 30px;
}

.footerSection img{
    max-width: 300px;
}

.footerSection p {
    font-size: 16px;
    font-weight: 400;
}

.awardDonateForm .col-md-2{
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 20px;
    margin-bottom: 15px;
    text-align: center;
}

.awardDonateForm .awardBtn{
    width: 100%;
}

.awardContainer {
    max-width: 350px;
    margin: 0 auto;
}

.awardDonateForm .katha-form-inputs .f-input, 
.awardDonateForm .katha-form-inputs .f-input:first-child {
    -ms-flex: 0 0 20%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 15px;
}

.awardDonateForm .katha-form-inputs{
    display: block;
}

.awardDonateForm .katha-form-inputs .my-bt{
    width: 100%;
}

.ceremonyCountDown .countdown{
    flex-wrap: wrap;
}

.ceremonyCountDown .unit{
    margin: 10px;
}

}

@media all and (max-width:620px) {
    .awardHeroSection {
        height: 600px;
        align-items: flex-start;
        padding-bottom: 0;
    }

}

@media all and (max-width:440px) {
    .awardHeroSection {
        height: 660px;
        align-items: flex-start;
        padding-bottom: 0;
    }

        .awardTrophy {
        right: 20px;
        text-align: right;
        bottom: 98px;
        width: 100%;
    }

        .heading img {
        max-width: 90%;
    }

    .ceremonyCountDown .unit{
            width: 140px;
    height: 140px;
    }

}