@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
html {
    --scrollbarBG: #CFD8DC;
    --thumbBG: #90A4AE;
}

body::-webkit-scrollbar {
    width: 12px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: var(--white-bg-color);
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: blue;
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    border: 3px solid var(--white-bg-color);
    /* creates padding around scroll thumb */
}
:root {
    --font-primary: "Inter", sans-serif;
    --primary-bg-color: #000;
    --gold-bg-color: #DCB116;
    --gold-bg-color-op: rgba(220, 177, 22,0.3);
    --primary-text-color: #fff;
    --red-text-color: #EA011D;    
    --white-bg-color: #fff;
}
ul,li {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
}
body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg-color);
}
.home-page-bg {
    background-image: url(../img/home-bg.svg);
    background-position: top center;
    background-repeat: no-repeat;
}
header{
    transition: all 0.3s ease-in-out;
}
header.sticky{
    position: fixed;
    top: 0px;
    background-color: var(--primary-bg-color);
    z-index: 1;
    width: 100%;
    border-bottom: 1px solid #EDC520;
}
.header-inner {
    padding: 20px 0;
}
.header-inner .nav-menu_left ul li a {
    display: inline-flex;
    color: var(--primary-text-color);
    font-size: 18px;
    padding: 4px 16px;
    font-weight: 300;
    border-radius: 18px;
}
.nav-menu_left,
.nav-menu_right {
    width: calc(50% - 90px);
}
.nav-menu_left ul {
    display: inline-flex;
    width: 100%; 
}
.nav-menu_left ul li,
.nav-menu_right ul li {
    margin: 0 3px;
}
.nav-menu_right ul {
    display: inline-flex;
    width: 100%;
    justify-content: flex-end;
}
.nav-menu_right ul li a svg {
    width: 100%;
    height: 100%;
}
.nav-menu_right ul li.icon a {
    width: 30px;
    height: 30px;
}
.nav-menu_right ul li.icon a {
    padding: 3px;
    border-radius: 4px;
    display: inline-flex;
}
.nav-menu_right ul li.icon.instagram a:hover {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 0 2px #fff;
}
.nav-menu_right ul li.icon.twitter a:hover { 
    background: var(--primary-bg-color);
    box-shadow: 0 0 2px #fff;
}
.nav-menu_right ul li.icon.whatsapp a:hover {
    background: #00E676;
    box-shadow: 0 0 2px #fff;
}
.nav-menu_right ul li.icon.facebook a:hover {
    background: #3b5998;
    box-shadow: 0 0 2px #fff;
}

.nav-menu_center {
    width: 180px;
}
.mg-btn-small {
    color: var(--white-bg-color);
    background: var(--red-text-color);
    font-size: 16px;
    font-weight: 500;
    border-radius: 22px;
    padding: 0 20px;
    height: 35px;
    display: inline-flex;
    align-items: center;
}
.mg-btn-small:hover {
    background: var(--white-bg-color);
    color: var(--red-text-color);
}
.mg-btn-small.mg-gold {
    background: var(--white-bg-color);
    color: var(--primary-bg-color);   
    font-weight: 600;
    font-size: 22px;
    height: 45px;
    padding: 0 30px;
}
.mg-btn-small.mg-gold:hover {
    background: var(--gold-bg-color);
    color: var(--primary-text-color);
}
.mg-gold-outline {
    font-weight: 600;
    font-size: 22px;
    height: 45px;
    background: transparent;
    color: var(--primary-text-color);
    border: 2px solid var(--gold-bg-color);
    box-shadow: 0 0 30px var(--gold-bg-color-op);
}
.mg-gold-outline:hover {
    background: var(--gold-bg-color);
    color: var(--primary-text-color);
}
.header-inner .nav-menu_left ul li.active a,
.header-inner .nav-menu_left ul li a:hover {
    color: var(--gold-bg-color);
    /* box-shadow: inset 0 0 10px #fff; */
    background: rgb(255 255 255 / 15%);
}
.p-100 {
    padding: 100px 0;
}
.banner_section .container{
    position: relative;
}
.banner-img-wrap{
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}
.banner-img {
/*    height: 520px;*/
    position: absolute;
    /*background: url(../img/banner.jpg) no-repeat center right;
    background-size: cover;*/
    display: flex;
    align-items: flex-start;
    padding: 0 0px 0 40px;
    flex-direction: column;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}
.banner-img h1 {
    font-size: 46px;
    color: var(--primary-text-color);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    text-transform: capitalize;
}
.banner-img h1 span {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-text-color);
    margin-top: 50px;
}
.banner-img h1 p {
    font-size: 36px;
    font-weight: 600;
    color: var(--gold-bg-color);
    margin: 0;
}
.banner-img h1 b {
    font-weight: 600;
    font-size: 36px;
    color: var(--primary-text-color);
}
.section-title {
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 40px 0;
    color: var(--primary-text-color);
}
.section-title span {
    color: #EDC520;
}
.sub-line {
    font-size: 16px;
    color: var(--primary-text-color);
    margin-bottom: 40px;
    font-weight: 300;
    text-align: center;
    margin: 0 auto;
    max-width: 780px;
}
.about_section::after {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    background: url(../img/casino-blur-right-flip1.svg) no-repeat;
    background-size: contain;
    height: 100%;
    background-position: center right;
    z-index: -1;
}
.about_section_inner {
    background: rgba(255, 255, 255, 0.09);
    width: calc(100% - 400px);
    padding: 80px 120px;
    color: var(--primary-text-color);
    border-radius: 20px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}
b.gold {
    color: var(--gold-bg-color);
}
.about_section_inner p {
    font-size: 20px;
    color: #D1D1D1;
    margin-bottom: 40px;
    font-weight: 300;
}
.about_section_inner p:last-child {
    margin: 0;
}
.about_section_inner .animated-ic {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}
.about_section_inner p b {
    font-weight: 600;
}
.about_section_inner .animated-ic span {
    -webkit-animation: slide-y infinite 3s linear;
    animation: slide-y infinite 3s linear;
    position: absolute;
}
.about_section_inner .animated-ic span.ic1 {    
    left: -340px;
    top: -120px;
}
.about_section_inner .animated-ic span.ic2 {
    right: -50px;
    top: -130px;
}
.about_section_inner .animated-ic span.ic3 {
    left: -300px;
    bottom: -100px;
}
.about_section_inner .animated-ic span.ic4 {
    right: -20px;
    bottom: 0;
}
.animated-ic span.ic6 {
    left: -20px;
    top: -120px;
}
.animated-ic span.ic7 {
    right: 0;
    top: -80px;
}
.animated-ic span.ic8 {
    left: -100px;
    top: 60px;
}
.animated-ic span.ic9 {
    right: 0;
    top: 50%;
}
/* slide y keyframe */
@-webkit-keyframes slide-y {
    0% {
        -webkit-transform: translateY(25px);
        transform: translateY(25px);
    }
    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        -webkit-transform: translateY(25px);
        transform: translateY(25px);
    }
}
@keyframes slide-y {
    0% {
        -webkit-transform: translateY(25px);
        transform: translateY(25px);
    }
    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(-px);
    }
    100% {
        -webkit-transform: translateY(25px);
        transform: translateY(25px);
    }
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-100 {
    padding-top: 100px;
}
.mb-100 {
    margin-bottom: 100px;
}
.cta_section h4 {
    font-size: 32px;
    color: var(--primary-text-color);
    font-weight: 800;
}


.icon_steps {
    width: 80px;
    height: 80px;
    background: rgba(237, 197, 32, 0.1);
    border: 2px solid rgba(237, 197, 32, 0.3);
    border-radius: 8px;
}
.steps_inner_set .icon_step_title p {
    color: var(--gold-bg-color);
    font-size: 16px;
}
.icon_step_title h3 {
    font-weight: 600;
    font-size: 24px;
    color: var(--primary-text-color);
}
.steps_inner_set p {
    color: var(--primary-text-color);
    font-size: 16px;
    font-weight: 300;
    padding: 0;
    margin: 0;
}
.bg1 {
    background: url(../img/newsletter1.jpg) no-repeat center left;
    background-size: cover;
    width: 100%;
}
.bg2 {
    background: url(../img/newsletter2.jpg) no-repeat center left;
    background-size: cover;
    width: 100%;
}
.cta_section .mg-gold-outline {
    background: var(--white-bg-color) !important;
    border: none !important;
    color: #20B038 !important;
    font-weight: 700 !important;
    height: 50px !important;
    border-radius: 25px !important;
}
.cta_section .mg-gold-outline:hover {
    background: #20B038 !important;
    color: var(--primary-text-color) !important;
}
.cta_section .mg-gold-outline img {
    margin-right: 10px;
    width: 28px;
}
.h-100x {
    height: 160px;
}
.steps_inner_set .card { 
    padding: 20px;
    background: rgba(237, 197, 32, 0.1);
    border: 2px solid rgba(237, 197, 32, 0.3);
    height: 100%;
}
.steps_inner_set .card h3 {
    color: var(--gold-bg-color);
    font-weight: 600;
    font-size: 20px;
}
.set-radius {
    border-radius: 20px;
    border: 2px dashed var(--gold-bg-color);
    padding: 40px;
    max-width: 90%;
}
.about_section::before {
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: url(../img/casino-blur-right-flip1.svg) no-repeat;
    background-size: contain;
    height: 100%;
    background-position: center right;
    transform: rotateY(-180deg);
    z-index: -1;
}
.features_section::before {
    width: 50%;
    position: absolute;
    left: 0;
    top: -200px;
    content: '';
    background: url(../img/casino-blur-right-flip1.svg) no-repeat;
    background-size: contain;
    height: 100%;
    background-position: center right;
    transform: rotateY(-180deg);
    z-index: -1;
}
.features_section::after {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: -200px;
    content: '';
    background: url(../img/casino-blur-right-flip1.svg) no-repeat;
    background-size: contain;
    height: 100%;
    background-position: center right;
    z-index: -1;
}
.betting-types::before {
    width: 50%;
    position: absolute;
    left: 0;
    top: 100px;
    content: '';
    background: url(../img/casino-blur-right-flip1.svg) no-repeat;
    background-size: contain;
    height: 800px;
    background-position: center right;
    transform: rotateY(-180deg);
    z-index: -1;
}
.betting-types::after {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: -200px;
    content: '';
    background: url(../img/casino-blur-right-flip1.svg) no-repeat;
    background-size: contain;
    height: 100%;
    background-position: center right;
    z-index: -1;
}
.Benefits_section::before {
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: url(../img/casino-blur-right-flip1.svg) no-repeat;
    background-size: contain;
    height: 100%;
    background-position: center right;
    transform: rotateY(-180deg);
    z-index: -1;
}
.Benefits_section::after {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
    content: '';
    background: url(../img/casino-blur-right-flip1.svg) no-repeat;
    background-size: contain;
    height: 100%;
    background-position: center right;
    z-index: -1;
}
.step_section .animated-ic {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
.step_section .animated-ic span {
    -webkit-animation: slide-y infinite 2s linear;
    animation: slide-y infinite 2s linear;
    position: absolute;
}
.step_section .animated-ic span.ic5 {
    right: 100px;
    top: -100px;
}
.Benefits_section .steps_inner_top .icon_steps {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-text-color);
}
.Benefits_section .steps_inner_top p {
    color: var(--primary-text-color);
    font-size: 16px;
    font-weight: 300;
    padding: 0;
    margin: 0;
}
.Benefits_section .steps_inner_top .icon_step_title {
    width: calc(100% - 590px);
}
.Benefits_section .steps_inner_top .icon_steps {
    width: 60px;
    height: 60px;
}
.Benefits_section .steps_inner_set {
    position: relative;
}
.Benefits_section .celb_s {
    position: absolute;
    width: 560px;
    bottom: 6px;
    right: 3px;
}
.Benefits_section .steps_inner_top .icon_steps {
    background: transparent;
    border: none !important;
    align-items: flex-start !important;
    height: auto;
    line-height: 1;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: .5rem;
    width: 30px;
}
.betting-types .sub-line {
    max-width: 100%;
}
.chips_main_clsop li {
    background: rgba(225, 225, 225,0.2);
    color: var(--primary-text-color);
    height: 36px;
    padding: 0 16px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.w-100xx {max-width: 60%;text-align: left;margin: 0;}
.nca_listingline ul li {
    width: 100%;
    background: url(../img/arrow.svg) no-repeat left top 5px;
    background-size: 17px 17px;
    padding: 0 40px 0 30px;
    color: var(--primary-text-color);
    font-size: 18px;
    font-weight: 300;
    margin: 8px 0;
}
.aboutbchhrg_main {
    background: #000 url(../img/cta.png) no-repeat bottom right;
    border-radius: 20px;
    background-size: contain;
    padding: 40px;
    position: relative;
    width: 100%;
    border: 1px dashed var(--gold-bg-color);
}
.aboutbchhrg {
    position: relative;
}
.aboutbchhrg{
    position: absolute;
    right: 0;
    width: auto;
    bottom: -40px;
}
.equal_height {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.equal_height>.equal_height_container {
    display: flex;
    /* width: 100%; */
}

.equal_height>.equal_height_container>div {
    width: 100%;
}
.nca_listingline table {
    border: 1px dashed var(--gold-bg-color);
    border-radius: 20px;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-top: 30px;
}
.nca_listingline tr:nth-child(even) {
    background-color:rgba(237, 197, 32, 0.1);
}
.nca_listingline table td {
    padding: 6px 10px;
    color: var(--primary-text-color);
}
.accordion-item {
    background-color: #ffffff1f;
    border: 1px solid #ffc1074f;
}
.accordion-button::after {
    background-image:url(../img/arrowcol.svg);
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../img/arrowcol.svg);
}
.set_cellb {
    position: absolute;
    right: 0;
    bottom: 1px;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-body {
    color: var(--primary-text-color);
}
.accordion-button:not(.collapsed) {
    color: var(--gold-bg-color);
    background-color: rgba(237, 197, 32, 0.1);
}
.accordion-button {
    background-color: rgba(237, 197, 32, 0.1);
    color: var(--primary-text-color);
}
footer {
    background: url(../img/footerbg.jpg) no-repeat center center;
    background-size: cover;
    padding: 80px 0 0 0;
}
footer p {
    color: var(--primary-text-color);
    font-size: 16px;
    opacity: 0.8;
}
footer h6 {
    color: var(--primary-text-color);
    margin: 0;
    font-size: 24px;
    padding-bottom: 10px;
}
.copyrights_mglion {
    border-top: 1px dashed #ccc;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    color: #ccc;
}


@media screen and (min-width: 1200px) {
    .nav-menu_right .offcanvas {
        position: relative;
        transform: none;
        visibility: visible;
        width: auto;
        border: 0px;
        background-color: transparent;
        inset: auto;
    }

    .mobile-toggle-btn{
        display: none;
    }

    .nav-menu_right .offcanvas .btn-close{
        display: none;
    }

    .nav-menu_right .offcanvas .offcanvas-body{
        padding: 0px;
        overflow: hidden;
    }

}
@media screen and (min-width: 1680px) {
    .container {
        max-width: 1580px;
    }
}
@media screen and (max-width: 1680px) { 
    .about_section_inner {
        padding: 80px 80px;
        width: 80%;
    }
    .about_section_inner .animated-ic {
        left: 0;
    }
    .about_section_inner .animated-ic span.ic1 {
        left: -190px;
        top: -120px;
    }
    .about_section_inner .animated-ic span.ic2 {
        right: -120px;
        top: -130px;
    }
    .about_section_inner .animated-ic span.ic3 {
        left: -150px;
        bottom: -100px;
    }
    .about_section_inner .animated-ic span.ic4 {
        right: -65px;
        bottom: 0;
    }
    .animated-ic span.ic8 {
        opacity: 0.5;
    }
    .animated-ic span.ic6 {
        left: -20px;
        top: -170px;
    }
    .animated-ic span.ic9 {
        right: 0;
        bottom: -100px;
    }
    .w-100xx {
        max-width: 90%;
    }
    .steps_inner_set p,
    .sub-line {
        font-size: 14px;
    }
    .steps_inner_set .card h5 {
        font-size: 18px;
    }
    .steps_inner_set .card {
        padding: 16px;
    }
}
@media screen and (max-width: 1399px) {
    .container {
        max-width: 96%;
    }
    .set-radius {
        max-width: 100%;
        padding: 20px;
    }
    .animated-ic span.ic9 {
        display: none;
    }
}

@media screen and (max-width: 1199px) {

    .nav-menu_left,
    .nav-menu_right{
        width: auto;
    }

    .nav-menu_right{
        margin-left: auto;
        display: flex;
    }

    .mobile-toggle-btn{
        position: relative;
        width: 30px;
        height: 18px;
        padding: 0px;
        border: 0px;
        border-top: 2px solid #EDC520;
        border-radius: 0px;
    }

    .mobile-toggle-btn:focus{
        outline: none;
        box-shadow: none;
    }

    .mobile-toggle-btn:before,
    .mobile-toggle-btn:after{
        content: '';
        position: absolute;
        right: 0px;
        background-color: #EDC520;
        height: 2px;
        width: 100%;
    }

    .mobile-toggle-btn:before{
        top: 6px;
        width: 80%;
    }

    .mobile-toggle-btn:after{
        bottom: 0px;
    }

    .nav-menu_right .offcanvas .btn-close{
        padding: 0 0 0 0;
        margin-left: auto;
        margin-top: 15px;
        margin-right: 15px;
        background-image: url(../img/cross-icon.svg);
        background-repeat: no-repeat;
        background-position: right;
        background-size: 16px;
        opacity: 1;
    }

    .nav-menu_right .offcanvas{
        background-color: var(--primary-bg-color);
        width: 320px;
    }

    .nav-menu_right .offcanvas .offcanvas-body .nav-menu_left{

    }

    .nav-menu_right .offcanvas .offcanvas-body{
        display: flex;
        flex-direction: column;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        margin-top: 15px;
    }

    .nav-menu_right ul.icon{
        margin-top: auto;
        border-top: 1px solid #fff;
        padding-top: 20px;
        justify-content: space-around;
    }

    .p-100{
        padding: 80px 0px;
    }

    .pb-100{
        padding-bottom: 80px;
    }

    .mb-100{
        margin-bottom: 80px;
    }

    .bg1{
        background: url(../img/newsletter1.jpg) no-repeat center left -70px;
        background-size: cover;
    }

    .bg2 {
        background: url(../img/newsletter2.jpg) no-repeat center left -50px;
        background-size: cover;
    }

    .header-inner {
        padding: 15px 0;
        min-height: 75px;
    }

    .nav-menu_center{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-menu_center a{
        display: flex;
    }

    .banner-img-wrap{
        height: 460px;
    }

    /*.banner-img{
        height: 460px;
        background: url(../img/banner.jpg) no-repeat center right -120px;
        background-size: cover;
    }*/

    .banner-img h1{
        font-size: 42px;
    }

    .banner-img h1 span{
        font-size: 16px;
        margin-top: 40px;
    }

    .banner-img h1 p {
        font-size: 32px;
    }

    .banner-img h1 b{
        font-size: 32px;
    }

    .mg-btn-small.mg-gold{
        font-size: 20px;
        padding: 0 25px;
    }

    .section-title{
        font-size: 32px;
        margin: 0 0 35px 0;
    }

    .about_section_inner {
        padding: 65px;
    }

    .about_section_inner p{
        font-size: 18px;
        margin-bottom: 35px;
    }

    .mg-gold-outline{
        font-size: 20px;
    }


    .about_section_inner .animated-ic span.ic1,
    .about_section_inner .animated-ic span.ic2,
    .about_section_inner .animated-ic span.ic3,
    .step_section .animated-ic span.ic5,
    .animated-ic span.ic6,
    .animated-ic span.ic7,
    .animated-ic span.ic8{
        width: 200px;
    }


    .about_section_inner .animated-ic img,
    .step_section .animated-ic span.ic5 img,
    .animated-ic span.ic6 img,
    .animated-ic span.ic7 img,
    .animated-ic span.ic8 img,
    .animated-ic span.ic9 img{
        width: 100%;
    }

    .about_section_inner .animated-ic span.ic1{
        left: -150px;
        top: -100px;
    }

    .about_section_inner .animated-ic span.ic2 {
        right: -110px;
        top: -95px;
    }

    .about_section_inner .animated-ic span.ic3 {
        left: -170px;
        bottom: -60px;
    }

    .about_section_inner .animated-ic span.ic4 {
        right: -95px;
        width: 90px;
    }

    .icon_steps{
        width: 65px;
        height: 65px;
    }

    .steps_inner_set .icon_step_title p{
        font-size: 15px;
    }

    .icon_step_title h3{
        font-size: 22px;
    }

    .cta_section h4{
        font-size: 30px;
        width: calc(100% - 320px);
    }

    .step_section .animated-ic span.ic5{
        right: 0;
    }

    .steps_inner_set .card h3{
        font-size: 18px;
    }

    .animated-ic span.ic6{
        top: -150px;
    }

    .animated-ic span.ic7{
        right: 10px;
        top: -70px;
    }

    .animated-ic span.ic8{
        left: -60px;
    }

    .Benefits_section .celb_s{
        width: 460px;
    }

    .Benefits_section .steps_inner_top .icon_steps{
        font-size: 20px;
        width: 25px;
    }

    .Benefits_section .steps_inner_top .icon_step_title {
        width: calc(100% - 430px);
    }

    .nca_listingline ul li{
        font-size: 16px;
        background-size: 14px 14px;
    }

    .step_section .animated-ic span.ic5 {
        right: 10px;
    }

    .set_cellb{
        width: 30%;
        right: -8px;
    }

    .set_cellb img{
        width: 100%;
    }

    footer{
        padding-top: 60px;
    }

    footer h6{
        font-size: 22px;
    }

    footer p{
        font-size: 15px;
    }

    .copyrights_mglion{
        font-size: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 991px) {
    
    .p-100 {
        padding: 65px 0px;
    }

    .mb-100{
        margin-bottom: 65px;
    }

    .pb-100 {
        padding-bottom: 65px;
    }

    .banner-img-wrap{
        height: 420px;
    }

    /*.banner-img {
        height: 420px;
        background: url(../img/banner.jpg) no-repeat center right -200px;
        background-size: cover;
    }*/

    .bg2 {
        background: url(../img/newsletter2.jpg) no-repeat center left -240px;
        background-size: cover;
    }

    .banner-img h1 {
        font-size: 38px;
        max-width: 350px;
    }

    .banner-img h1 span {
        font-size: 15px;
        margin-top: 32px;
    }

    .banner-img h1 p,
    .banner-img h1 b{
        font-size: 30px;
    }

    .mg-btn-small.mg-gold {
        font-size: 18px;
        padding: 0 22px;
    }

    .section-title {
        font-size: 27px;
        margin: 0 0 30px 0;
    }

    .about_section_inner {
        padding: 50px;
    }

    .about_section_inner p {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .mg-gold-outline {
        font-size: 18px;
    }

    .about_section_inner .animated-ic span.ic1, 
    .about_section_inner .animated-ic span.ic2, 
    .about_section_inner .animated-ic span.ic3, 
    .step_section .animated-ic span.ic5, 
    .animated-ic span.ic6, 
    .animated-ic span.ic7, 
    .animated-ic span.ic8 {
        width: 150px;
    }

    .about_section_inner .animated-ic span.ic1 {
        left: -110px;
        top: -80px;
    }

    .about_section_inner .animated-ic span.ic2 {
        right: -90px;
        top: -85px;
    }

    .about_section_inner .animated-ic span.ic3 {
        left: -80px;
        bottom: -40px;
    }

    .about_section_inner .animated-ic span.ic4 {
        right: -75px;
        width: 75px;
    }

    .icon_steps {
        width: 55px;
        height: 55px;
    }

    .steps_inner_set .icon_step_title p {
        font-size: 14px;
    }

    .icon_step_title h3 {
        font-size: 20px;
    }

    .cta_section h4{
        width: 100% !important;
        font-size: 28px;
    }

    .step_section .animated-ic span.ic5 {
        right: 20px;
        top: -75px;
    }

    .animated-ic span.ic6 {
        top: -140px;
        left: 0px;
    }

    .Benefits_section .celb_s {
        width: 320px;
    }

    .steps_inner_set .card {
        padding: 12px;
    }

    .Benefits_section .steps_inner_top .icon_steps {
        font-size: 18px;
        width: 20px;
    }

    .Benefits_section .steps_inner_top .icon_step_title {
        width: calc(100% - 290px);
    }

    .steps_inner_set .card h3 {
        font-size: 16px;
    }

    .chips_main_clsop li{
        height: 32px;
        padding: 0 12px;
        font-size: 14px;
        margin-right: 6px;
    }

    .nca_listingline ul li {
        font-size: 15px;
        background-size: 10px 10px;
        padding: 0 20px;
    }

    .set-radius {
        padding: 15px;
    }

    .aboutbchhrg_main{
        padding: 25px;
        background-size: 125%;
        background-position: bottom right -18px;
    }

    .spobox_absolute{
        width: 65%;
        margin: 0 auto 30px;
    }

    .nca_listingline table td{
        font-size: 15px;
    }

    .set_cellb{
        display: none;
    }

    footer {
        padding-top: 45px;
    }

    footer h6 {
        font-size: 20px;
    }

    footer p {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {

    .animated-ic{
        display: none;
    }

    .seprator img{
        display: none;
    }

    .pb-100 {
        padding-bottom: 50px;
    }

    .mb-100 {
        margin-bottom: 50px;
    }

    .h-100x{
        height: auto;
    }

    .banner-img-wrap{
        height: 360px;
    }

    .banner-img{
        padding: 0 0px 0 25px;
        /*background: url(../img/banner.jpg) no-repeat center right -280px;
        background-size: cover;
        height: 380px;*/
    }

    .banner-img h1 {
        font-size: 36px;
        max-width: 370px;
    }

    .banner-img h1 span {
        font-size: 14px;
        margin-top: 26px;
    }

    .banner-img h1 p, .banner-img h1 b {
        font-size: 28px;
    }

    .mg-btn-small.mg-gold{
        font-size: 17px;
    }

    .p-100 {
        padding: 55px 0px;
    }

    .about_section_inner{
        width: 100%;
    }

    .about_section_inner {
        padding: 35px;
    }

    .about_section_inner p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .icon_step_title h3 {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .cta_section h4{
        font-size: 26px;
    }

    .mg-gold-outline {
        font-size: 16px;
    }

    .section-title{
        font-size: 26px;
    }

    .Benefits_section .steps_inner_top .icon_steps{
        font-size: 16px;
    }

    .Benefits_section .steps_inner_top .icon_step_title{
        width: 100%;
    }

    .Benefits_section .celb_s{
        opacity: 0.2;
        left: 50%;
        transform: translateX(-50%);
    }

    .cta_section .mg-gold-outline img{
        margin-right: 6px;
        width: 24px;
    }

    .chips_main_clsop li{
        margin-top: 3px;
        margin-bottom: 3px;
        margin-right: 3px;
    }

    .nca_listingline ul li {
        font-size: 15px;
        background-size: 8px 8px;
        padding: 0 15px;
    }

    .aboutbchhrg_main{
        position: relative;
        background: #000;
    }

    .aboutbchhrg_main:before{
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background-image: url(../img/cta.png);
        background-position: left -150% bottom;
        background-size: 100%;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        bottom: 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        opacity: 0.3;
    }

    .accordion-item .accordion-button,
    .accordion-collapse .accordion-body{
        font-size: 14px;
        padding: 15px;
    }

    footer {
        padding-top: 35px;
    }

    footer h6 {
        font-size: 18px;
    }

    footer p {
        font-size: 13px;
    }

    .copyrights_mglion {
        font-size: 14px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

@media screen and (max-width: 575px) {

    .nav-menu_center{
        width: 150px;
    }

    .mobile-toggle-btn{
        width: 22px;
        height: 16px;
    }

    .mobile-toggle-btn:before{
        top: 5px;
    }

    .p-100 {
        padding: 45px 0px;
    }

    .pb-100 {
        padding-bottom: 40px;
    }

    .section-title {
        font-size: 24px;
    }

    .container{
        max-width: 100%;
    }

    .banner-img-wrap{
        height: 320px;
    }

    .banner-img {
        padding: 0 0px 0 15px;
        /*background: url(../img/banner.jpg) no-repeat center right -320px;
        background-size: cover;
        height: 350px;*/
    }

    .banner-img h1 {
        font-size: 32px;
        max-width: 300px;
    }

    .banner-img h1 span {
        font-size: 13px;
        margin-top: 20px;
    }

    .banner-img h1 p, .banner-img h1 b {
        font-size: 25px;
    }

    .mg-btn-small.mg-gold {
        font-size: 15px;
        padding: 0 18px;
    }

    .about_section_inner {
        padding: 25px;
    }

    .about_section_inner p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .mg-gold-outline {
        font-size: 15px;
    }

    .steps_inner_set p, .sub-line{
        text-align: left;
    }

    .aboutbchhrg_main{
        padding: 20px
    }

    .spobox_absolute{
        width: 100%;
    }

    .cta_section h4 {
        font-size: 24px;
    }

    footer h6 {
        font-size: 17px;
    }

    footer p {
        font-size: 12px;
    }

    .copyrights_mglion{
        font-size: 13px;
    }

    .cta_section .mg-gold-outline{
        height: 44px !important;
    }

    .nca_listingline table td{
        font-size: 14px;
    }
}

@media screen and (max-width: 479px) {

    .banner-img-wrap {
        height: 280px;
    }

    .banner-img {
        padding: 0px 0px 0 10px;
    }

    .banner-img h1 {
        font-size: 28px;
        max-width: 300px;
    }

    .banner-img h1 span {
        font-size: 12px;
        margin-top: 15px;
    }

    .banner-img h1 p, .banner-img h1 b {
        font-size: 22px;
        line-height: 1.4;
    }

    .mg-btn-small.mg-gold {
        font-size: 14px;
        padding: 0 15px;
        height: 42px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-title br{
        display: none;
    }

    .about_section_inner {
        padding: 15px;
    }

    .about_section_inner p{
        margin-bottom: 15px;
    }

    .mg-gold-outline {
        font-size: 14px;
    }

    .steps_inner_set .icon_step_title p {
        font-size: 13px;
    }

    .icon_step_title h3 {
        font-size: 16px;
    }

    .cta_section h4 {
        font-size: 20px;
    }

}