@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-brands-400.eot");
    src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}

.fab {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a,
a:link,
a:visited,
a:active,
a:hover,
button,
input,
select,
textarea,
i {
    text-decoration: none;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

input,
select,
textarea {
    width: 100%;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

img {
    max-width: 100%;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

p {
    font-size: 16px;
    line-height: 26px;
}

.comnpadding {
    padding: 80px 0;
}

.comntitle {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

:root {
    --balck: #000;
    --white: #fff;
    --yellow: #F5BC0B;
    --red: #F00;
    --grey: #F2F2F2;
}


/*------------------------------------------------------------------------------*/

header {
    padding: 25px 0;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--balck);
    text-transform: uppercase;
    font-size: 18px;
    padding: 5px 25px;
    border-radius: 5px;
    margin-left: 5px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav li:last-child a {
    color: var(--white);
    background: var(--balck);
}

.banner,
#banner_slider {
    position: relative;
    z-index: 2;
}


/* #banner_slider.owl-carousel .owl-stage::before {
    content: "";
    background: var(--balck);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.5;
} */

.banner .banner_caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
    max-width: 1300px;
    padding: 0 15px;
    z-index: 5;
}

.banner .banner_caption .caption_text {
    max-width: 650px;
}

.banner h1 {
    font-size: 40px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.banner p {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 0;
}

.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-prev {
    left: 5%;
    right: auto;
    background: var(--yellow);
    color: var(--balck);
    width: 50px;
    line-height: 60px;
    font-size: 28px;
    font-weight: 700;
    border-radius: 25px 0 0 25px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 5%;
    left: auto;
    background: var(--yellow);
    color: var(--balck);
    width: 50px;
    line-height: 60px;
    font-size: 28px;
    border-radius: 0 25px 25px 0;
    font-weight: 700;
}

.Coupon_box {
    margin-top: 50px;
    box-shadow: 0px 0 3px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.Coupon_box:hover .Coupon_img::before {
    opacity: 0.5;
}

.Coupon_box:hover .Coupon_img a {
    opacity: 1;
}

.Coupon_img {
    position: relative;
}

.Coupon_img::before {
    content: "";
    background: var(--balck);
    width: 100%;
    height: calc( 100% - 0px);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 25px 25px 0 0;
    opacity: 0;
    -moz-transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.Coupon_img img {
    width: 100%;
    border-radius: 25px 25px 0 0;
}

.Coupon_img a {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--yellow);
    border-radius: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    max-width: 200px;
    height: 60px;
    line-height: 60px;
    opacity: 0;
    -moz-transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.Coupon_text {
    padding: 15px;
}

.Coupon_text strong {
    font-size: 20px;
    margin-bottom: 5px;
    display: block;
}

.Coupon_text p {
    font-size: 18px;
    margin-bottom: 0;
}

footer {
    background: var(--balck);
    padding: 30px 0;
}

.ft {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ftlink a {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white);
    margin-left: 30px;
}

.ftlink a:hover {
    color: var(--yellow);
}

.loginform {
    text-align: center;
    padding: 15px;
}

.loginform input {
    font-size: 16px;
    color: var(--balck);
    background: var(--grey);
    height: 50px;
    padding: 5px 15px;
    text-align: left;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

.loginform button {
    border: none;
    border-radius: 5px;
    background: var(--yellow);
    color: var(--balck);
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 10px;
}

.loginform button:hover {
    background: var(--balck);
    color: var(--white);
}

.btn-close {
    background: var(--red);
    color: var(--white);
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 30px;
    border-radius: 0 0 0 10px;
}

.loginform .user {
    background: url("../images/user.png") no-repeat var(--grey);
    background-size: 25px;
    padding: 5px 5px 5px 50px;
    background-position: 13px center;
}

.loginform .Email {
    background: url("../images/mail.png") no-repeat var(--grey);
    background-size: 25px;
    padding: 5px 5px 5px 50px;
    background-position: 13px center;
}

.loginform .Phone {
    background: url("../images/phone.png") no-repeat var(--grey);
    background-size: 19px;
    padding: 5px 5px 5px 50px;
    background-position: 13px center;
}

.loginform .Address {
    background: url("../images/map.png") no-repeat var(--grey);
    background-size: 20px;
    padding: 5px 5px 5px 50px;
    background-position: 13px center;
}

.loginform .Area {
    background: url("../images/area.png") no-repeat var(--grey);
    background-size: 25px;
    padding: 5px 5px 5px 50px;
    background-position: 13px center;
}

.loginform .Pincode {
    background: url("../images/pincode.png") no-repeat var(--grey);
    background-size: 25px;
    padding: 5px 5px 5px 50px;
    background-position: 13px center;
}

.loginform .Number {
    background: url("../images/user-no.png") no-repeat var(--grey);
    background-size: 25px;
    padding: 5px 5px 5px 50px;
    background-position: 13px center;
}

.loginform .Pin_Number {
    background: url("../images/pin-no.png") no-repeat var(--grey);
    background-size: 25px;
    padding: 5px 5px 5px 50px;
    background-position: 13px center;
}

.loginform .Total_Amount {
    background: url("../images/amount.png") no-repeat var(--grey);
    background-size: 25px;
    padding: 5px 5px 5px 50px;
    background-position: 13px center;
}

.formdiv button {
    font-size: 22px;
    max-width: 300px;
    width: 100%;
    margin-top: 25px;
    box-shadow: 0px 0 5px rgba(0, 0, 0, 0.25);
}

table {
    margin-top: 50px;
    border: none;
    border-collapse: collapse;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    border-radius: 10px 10px 0 0;
}

table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}

table tr {
    background-color: #f8f8f8;
    border: none;
    padding: .35em;
}

table th,
table td {
    padding: 30px 10px;
    text-align: center;
    font-size: 20px;
}

table td p {
    margin: 0;
    text-align: left;
    font-size: 20px;
}

table th {
    font-size: 22px;
    text-transform: uppercase;
    background: var(--balck);
    color: var(--white);
    font-weight: 400;
}

table th:first-child {
    border-radius: 10px 0 0 0;
}

table th:last-child {
    border-radius: 0 10px 0 0;
}

@media screen and (max-width: 767px) {
    table {
        border: 0;
    }
    table caption {
        font-size: 1.3em;
    }
    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }
    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }
    table td::before {
        /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 14px;
    }
    table td:last-child {
        border-bottom: 0;
    }
}

.Partners_list img {
    border-radius: 25px;
}