@import url('https://fonts.googleapis.com/css?family=Nunito:400,600,700&display=swap');

@font-face {
    font-family: 'Futura';
    src: url(/fonts/FuturaMediumBT.woff?303d918d0daf475a8eb82d05a7cdc04f) format("WOFF");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'futurabold';
    src: url(/fonts/futurabold-webfont.woff2?190cc742fc02469b5b89950ff4e23f7c) format("woff2"), url(/fonts/futurabold-webfont.woff?5d143ef80630635ec662137c5267bce5) format("woff"), url(/fonts/FuturaBold.ttf?4c62644b159530ff6214336f8cfb1d32) format("truetype");
    font-weight: normal;
    font-style: normal;
    letter-spacing: 0.3px;
}


$font-family: "Nunito", "Futura", 'Nunito', Helvetica, Arial, sans-serif;
$font-family-bold: "Nunito", "futurabold", 'Nunito', Helvetica, Arial, sans-serif;

$white: #fff;
$primary: #03237F;
$bg-color: #FBFBFB; //rgb(50,50,50);
$font-color: #8a9195;
$white-font-color: $white;
$header-font-color: #565b6c;
$footer-font-color: $white;

$yellow: rgb(245, 202, 60);
$black: #222;
$blue-light: #2b96af;
$blue-dark: #095B92;
$purple: #CF9AD8;
$btn-green: #00FF00;

$error-color: red;

$header-title-color: $header-font-color;

$navbar-brand-color: $white-font-color;
$navbar-menulinks-color: $white-font-color;
$hambuger_menubars-color: $white-font-color;


$voucher_card-claimable_button-bg: $purple;
$voucher_card-claimable_button-color: $white-font-color;
$voucher_card-unclaimable_button-bg: rgba(2,15,32,.25);
$voucher_card-unclaimable_button-color: $white;

$register-modal-bg: $primary;
$register-modal-color: $white-font-color;
$register-modal-title-color: $white-font-color;
$register-modal-button-bg: $black;
$register-modal-button-color: $white-font-color;

$blue-bright: #40BEDD;
$primary-black-25 : #02195f;

body {
    text-rendering: optimizeLegibility;
    background-color: $bg-color;
    color: $font-color;
    font-family: $font-family;


}

@media screen and (max-width: 575px) {
    html {
        overflow-y: scroll; // compatible with IE8, not supported: root, VW
    }

    :root {
        overflow-y: auto;
        overflow-x: hidden;
    }

    :root body {
        // position: absolute;
    }
}

h1,
h2,
h3 {
    font-family: $font-family;
    color: $primary;
}

h4,
h5,
h6 {
    font-family: $font-family;
    color: $black;
}

a {
    color: $font-color;
}

.color-white {
    color: $font-color;

    b {
        color: $yellow;
    }
}

.container {
    padding: 0;
}

.navbar {
    margin-bottom: 0 !important;
    //background: $primary;

    .navbar-brand {
        color: $navbar-brand-color;
        max-width: 60%;
        height: inherit;
        padding-bottom: 0;
        padding-top: 0;

        img {
            max-height: 80px;
        }
    }

    .navbar-toggler {
        padding: 0;

        .menu-bar {
            display: block;
            width: 25px;
            height: 4px;
            margin-bottom: 4px;
            position: relative;

            background: $hambuger_menubars-color;
            border-radius: 3px;
            z-index: 1;


            &:last-child {
                margin-bottom: 0px;
            }
        }
    }

    .navbar-nav {
        .nav-link {
            margin: 0;
        }

        .nav-item {
            color: $navbar-menulinks-color;


            margin: 2px 0;
            padding: 0 16px;

            // @media only screen and (max-width: 991px) {
            //     background-color: #4F629A;
            // }

            &:hover, &:focus {
                text-decoration: underline;
                filter: invert(1);
            }
        }

        a {
            color: inherit;
        }
    }
}

.justify-space-between {
    justify-content: space-between;
}

.error, .err-item {
    color: $error-color;
}

#register_page {
    background-color: $register-modal-bg;
    color: $register-modal-color;
    padding: 1rem;

    .form {
        .form-group {
            font-size: 14px !important;
        }

        .form-control {
           height: 35px;
        }

        .form-control, .input-group-text {
            font-size: 14px;
        }

        input {
            box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
        }

        .form-check {
            .form-text {
                margin-left: -1.25rem;
            }

            .form-check-label {
                font-size: 14px;
            }
        }


        .form-group {
            .select2 {
                span {
                    height: 35px;
                    line-height: 35px;
                    border-radius: 0.25rem 0 0 0.25rem;
                    border-color: #ced4da;
                }
            }
        }


        a {
            color: inherit;
            text-decoration: underline;
        }


        button[type="submit"] {
            background-color: $register-modal-button-bg;
            color: $register-modal-button-color;
        }

    }

    .button-container {
        text-align: center;
        margin-top: 1em;
    }

    #register-modal-countrycode {
        cursor: pointer;
    }

    #register-modal-submit {
        background-color: $register-modal-button-bg;
        color: $register-modal-button-color;
    }
}

.ui-loader {
    display: none;
}

#usemy_vouchers {
    .voucher_card-claimable {
        //border-radius: 20px;
        background-color: $btn-green;
        color: $black;
    }
}


.voucher_single-claimable {

    background-color: $voucher_card-claimable_button-bg !important;
    color: $voucher_card-claimable_button-color !important;
}

#header, #header-mob {
    background: $primary;
    color: $header-font-color;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    box-sizing: content-box;

    a {
        color: $header-font-color;
    }
}

.search-input {
    max-width: 300px;
    width: 100%;
    text-align: center;
    border-radius: 10px 10px;
    height: 30px;
    border: 0;
    color: $black;
    background: $white;
    display: flex;
    padding-right: 10px;

    input {
        width: 100%;
        border: 0;
        margin-left: 10px;
    }

    i {
        color: $white;
        vertical-align: middle;
    }

    button {
        margin: auto;
        width: 45px;
        height: 100%;
        background: #2b96af;
        margin: auto;
        text-align: center;
        right: 0;
        margin-right: -10px;
        border-radius: 0 10px 10px 0;


    }

    @media only screen and (max-width: 576px) {
        width: 100%;
    }
}

#content_div {
    // color: initial;
    min-height: 100vh;
}

placeholder {
    color: #757575;
}

footer {
    font-size: .8rem;
    color: $footer-font-color;
    padding: 2px;
    line-height: 1.2;
    //padding: 50px 80px;
    background-color: $primary;

    b {
        color: $yellow;
    }

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

        .img-fluid {
            width: 50px !important;
            //margin-right: 10px;
        }

        font-size: 9px;
    }
}

@media screen and (max-width: 575px) {
    .m-sm-auto {
        margin: auto !important;
    }
}

@media (max-width: 400px) {
    .select2-container {
        display: flex;
    }
}






.navbar:before,
.navbar:after {
    content: none !important;
    display: none !important;
}

@media screen and (max-width: 576px) {
    .search-input {
        max-width: 100%;
    }
}

@media screen and (width: 576px) {
    .header-left-div {
        width: 100%;
    }
}

#content_div {
    .container {
        padding: 0px 15px;
        overflow: hidden;

        .content-section {
            margin-top: 20px;
        }
    }

    .container-flash-promo, .container-category, .container-my-wallet, .container-vc-filtering {
        $min-height: 377px;
        min-height: $min-height;
        // padding: 0px 30px;

        .btn-container {
            margin-top: 10px;
        }

        .no-item, .err-item {
            margin-top: calc($min-height / 2 - 5px);
        }
    }
}

a label {
    cursor: pointer;
}

.header-title {
    color: $header-title-color;
    font-weight: 800;
    font-size: 1.4em;
    text-transform: inherit;
}

.sub-header-title {
    margin-bottom: 10px;

    label {
        color: $header-font-color;
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 0;
        font-weight: 600;
    }
    .timer .num {
        background: $header-font-color;
        border-radius: 5px;
        color: $white;
        font-size: 1rem;
        margin: 0 2px;
        min-width: 2.75rem;
        padding: 0 10px;
        text-align: center;
        white-space: nowrap;
    }
}

.promocard {
    &:not(last-child) {
        margin-bottom: 10px;
    }
    border-radius: 15px;

    a {
        color: $header-font-color;

        &:hover,
        &:active,
        &:visited {
            text-decoration: underline;
        }
    }

    .promocard_wrapper {
        margin: 0px 5px;
        align-items: stretch;
        display: flex;
        box-shadow: 0 1px 5px rgba(2,15,32,.15);
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
        position: relative;
        transition: .3s ease!important;
        z-index: 0;
        border-radius: 15px;


        .promocard_copy {
            margin-top: 10px;
            margin-bottom: 5px;

            .line-clamp {
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            label {
                display: block;
                min-height: 16px;
            }

            .promocard_copy_title {
                font-weight: 800;
                font-size: 1em;
                // -webkit-line-clamp: 3;
            }

            .promocard_copy_detail {
                font-size: 0.7em;
                // -webkit-line-clamp: 5;
            }

        }

        div:not(.promocard_cta_container){
            padding: 0px 5px;
        }

        div.promocard_tnc, div.promocard_expiry_date {
            .promocard_copy_tnc, label.promocard_expiry_date_label {
                min-height: 15px;
                margin-bottom: 5px;
            }

            .promocard_copy_tnc {
                font-size: 0.7em;
                text-align: left;

                &.btn {
                    padding: 0.09rem 0.75rem;
                }
            }

            label.promocard_expiry_date_label {
                font-size: 0.8em;
            }
        }
    }
}

.imageblur {
    overflow: hidden;
    position: relative;

    .imageblur-blur, .imageblur-main {
        background-position: 50%;
        background-repeat: no-repeat;
        width: 100%;
    }

    .imageblur-main {
        background-size: contain;
        padding-top: 100% !important;
        position: relative;
        z-index: 1;
    }

    .imageblur-blur {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        background-size: cover;
        display: block;
        filter: blur(15px);
        height: 100%;
        left: 50%;
        overflow: hidden;
        -webkit-perspective: none;
        perspective: none;
        top: 50%;
        transform: translate(-50%,-50%) scale(1.25) translateZ(0);
        -webkit-transform: translate(-50%,-50%) scale(1.25) translateZ(0);
        z-index: 0;
        position: absolute;
    }
}

.promocard_cta_container {
    .promocard_cta {
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
        overflow: hidden;
        border: 0;
        padding: 5px;
        font-weight: 800;
        min-height: 33px;

        &:hover, &:focus {
            -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
            filter: alpha(opacity=80);
            -moz-opacity:0.8;
            -khtml-opacity: 0.8;
            opacity: 0.8;
        }
    }

    .claimable {
        background-color: $voucher_card-claimable_button-bg;
        color: $voucher_card-claimable_button-color;
    }

    .unclaimable {
        background-color: $voucher_card-unclaimable_button-bg;
        color: $voucher_card-unclaimable_button-color;
        cursor: not-allowed;
    }

    .redeem {
        background: linear-gradient(90deg,#ff4d67,#fa6448);
        color: $white;
    }
}

.swiper-container {
    // margin: 0 auto;
    // position: relative;
    // z-index: 1;
    // height: auto;
    // // margin-top: -25px;
    // margin-bottom: 10px;
    // list-style: none;
    // margin-left: auto;
    // margin-right: auto;
    // overflow: hidden;
    // padding: 0;
    // position: relative;
    // z-index: 1;
    margin: 0 auto;

    .swiper-wrapper {
        // position: relative;
        // width: 100%;
        // height: 100%;
        // z-index: 1;
        // -webkit-transition-property: -webkit-transform;
        // -moz-transition-property: -moz-transform;
        // -o-transition-property: -o-transform;
        // -ms-transition-property: -ms-transform;
        // transition-property: transform;
        // -webkit-box-sizing: content-box;
        // -moz-box-sizing: content-box;
        // box-sizing: content-box;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        // box-sizing: content-box;
        // display: flex;
        // height: 100%;
        // position: relative;
        // transition-property: transform;
        // width: 100%;
        // z-index: 1;

        @media screen and (max-width: 767px) {
            & {
                align-items: inherit;
                justify-content: inherit;
            }
        }
    }

    .swiper-slide {
        height: 90px;
        cursor: pointer;
        width: 100px;
        border-bottom: 2px solid #ededed;
        color: #a0aaae;

        .main-icon {
            background-position: 50%;
            background-repeat: no-repeat;
            background-size: contain;
            height: 30px;
            margin: 10px auto;
            width: 30px;
            position: absolute;
        }

        label {
            display: block;
            margin-top: 65px;
            font-size: .65rem;
        }

        &.selected{
            color: $primary;
            border-bottom: 2px solid $primary;

            .main-icon {
                filter: invert(1);
            }
        }
    }

    .swiper-slide:not(:first-of-type) {
        .main-icon {
            filter: invert(82%) sepia(6%) saturate(83%) hue-rotate(169deg) brightness(91%) contrast(92%);
        }
    }

}

.col-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-header .close {
    margin: 0;
    position: absolute;
    right: 0;
    font-size: 1.8rem;
}

.modal-content {
    border-radius: 30px;
}

$checkbox-scale: 1.5;
#register-modal, #use_voucher-modal {
    .modal-body {
        padding-top: 0;
        padding-bottom: 0;
    }

    .modal-header {
        border-bottom: none;
    }

    .modal-content {
        background-color: $register-modal-bg;
        color: $register-modal-color;
        box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);

        .info {
            margin-bottom: 10px;
        }

        .form-control {
            height: 35px;
        }

        .form-check {
            display: inline-flex;
            align-items: flex-start;
            justify-content: center;
            flex-direction: column;

            input[type=checkbox].form-check-input {
                -ms-transform: scale($checkbox-scale); /* IE */
                -moz-transform: scale($checkbox-scale); /* FF */
                -webkit-transform: scale($checkbox-scale); /* Safari and Chrome */
                -o-transform: scale($checkbox-scale); /* Opera */
                transform: scale($checkbox-scale);
                margin-bottom: 8px;
            }
        }

        .form-check-label {
            line-height: 1.2em;
        }
    }

    .modal-footer {
        border-top: none;
        justify-content: center;

        button {
            color: $register-modal-button-color;
            border-radius: 20px;
            background-color: $register-modal-button-bg;
            padding: 10px 20px;
        }
    }

    #register-modal-countrycode {
        cursor: pointer;
    }

    .form {
        .form-group {
            font-size: 14px !important;
        }

        .form-control {
            font-size: 14px;
        }

        .input-group-text {
            font-size: 14px;
        }

        input {
            box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
        }

        .form-text {
            &.error {
                color: $error-color;
            }
        }

        .form-check {
            .form-text {
                margin-left: -1.25rem;
            }

            .form-check-label {
                font-size: 14px;
            }
        }


        .form-group {
            .select2 {
                span {
                    height: 35px;
                    line-height: 35px;
                    border-radius: 0.25rem 0 0 0.25rem;
                    border-color: #ced4da;
                }
            }
        }


        a {
            color: inherit;
            text-decoration: underline;
        }

    }
}

#use_voucher-modal {
    .modal-dialog {
        // max-width: 310px;
        margin: 0px auto;
    }
    .form-row .form-group:not(first-child) {
        margin-left: 5px;
    }
    #voucher_usage {
        #code input {
            height: calc(1.9em + 0.75rem + 2px);
            width: calc(1.9em + 0.75rem + 2px);
            margin: 0 auto;
            text-align: center;
            padding: 0;
        }

        .form-group.err-display {
            flex-basis: 100%;
            text-align: center;
        }
    }
    @mixin display-flex {
        display: flex;
        flex-direction: column;
    }
    @mixin display-none {
        display: none;
    }
    @mixin display-inline-block {
        display: inline-block;
    }

    .status-claimed,
    .status-complete,
    .status-default,
    #use_voucher-modal-submit,
    #use_voucher-modal-submit-generic,
    #use_voucher-modal-next,
    #use_voucher-modal-finish,
    #use_voucher-modal-close {
        @include display-none;
    }

    &[status='default'] .status-default,
    &[status='claimed'] .status-claimed,
    &[status='scanned'] .status-claimed,
    &[status='complete'] .status-complete {
        @include display-flex;
    }

    &[status='default'] #use_voucher-modal-submit,
    &[status='default'] #use_voucher-modal-submit-generic,
    &[status='claimed'] #use_voucher-modal-next,
    &[status='scanned'] #use_voucher-modal-finish,
    &[status='complete'] #use_voucher-modal-close {
        @include display-inline-block;
    }

    .pin-container {
        flex-direction: row !important;
        justify-content: center;

        .pin-container-label {
            padding: 6px
        }
    }

    #voucher_usage-slider {
        width: 100%;
        display: block;

        .carousel-indicators{
            position: relative;
            height: 40px;
            display: flex;
            padding: 0;
            justify-content: space-between;
            align-items: center;
            width:75%;
            margin: 0 auto;

            .carousel-progress,
            &:before{
                content: "";
                position: absolute;
                right: 0;
                top: 50%;
                height: 3px;
                width: 100%;
                transform: translate(0%, -50%);
                transition: .6s ease;
            }
            &:before{
                background: $primary-black-25;
            }
            .carousel-progress{
                background: $white-font-color;
            }

            li {
                width: 40px;
                height: 40px;
                color: black;
                font-size: .9rem;
                text-indent: 0;
                text-align: center;
                line-height: 1;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50%;
                margin: 0;
                opacity: 1;
                transition: .6s ease;
                border: 0;
                z-index: 1;
            }

            li.unchecked{
                background: $white-font-color;
                color: $primary;
            }
            li.active{
                background: $blue-bright;
                color: $white-font-color;
                box-shadow: 3px 3px 20px 5px rgb(0 0 0 / 35%);
            }
            li.checked{
                background: $primary-black-25;
                color: $white-font-color;
            }

        }
        .voucher_usage-slider-item{
            display: flex;
            width: 100%;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem 1rem;
            margin: 0 auto;
        }
        .carousel-item{
            width: 90%;
            padding-left: 10%;
        }
        .carousel-inner:before{
            content: "";
            position: absolute;
            top:0;
            left: 10%;
            width: 80%;
            height: 100%;
            // background: $primary-black-25;
            transition: .3s ease;
        }
        .carousel-control-prev,
        .carousel-control-next {
            width: 8.5%;
        }

        #transaction-amount {
            height: 37px;
        }
    }
}


.placeholder, .placeholder-25, .placeholder-50, .placeholder-90 {
    animation: wave 2s linear infinite forwards;
    -webkit-animation: wave 2s linear infinite forwards;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #f6f7f8;
    background: linear-gradient(90deg,#eee 8%,#ddd 18%,#eee 33%);
    background-size: 570px 200px !important;
    color: transparent;
    display: block;
    min-height: 15px;
    background-repeat: inherit !important;
    filter: inherit !important;
}

$frame-size-0: -290px 0;
$frame-size_to: 290px 0;

@keyframes wave {
    0% {
        background-position: $frame-size-0;
    }

    to {
        background-position: $frame-size_to;
    }
}

@-webkit-keyframes wave {
    0% {
        background-position: $frame-size-0;
    }

    to {
        background-position: $frame-size_to;
    }
}

.btn-primary:hover, .btn:hover {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}

.btn-load-more {
    padding: 5px 15px;
    border-radius: 5px;
}

.see-more {
    display: inline-block;
    font-size: .8rem;
    margin-top: 5px;
    text-align: right;
    white-space: nowrap;


    &, &:hover {
        color: #a0aaae;
    }
}

.toast {
    z-index: 2 !important;
}

#voucher_single  button.promocard_cta {
    padding: 1em;
}

.alert {
    overflow: hidden;
}

.fadeIn span{
    opacity: 0;
    // transform: translateY(30px);
    animation: fadeIn 6s ease-out forwards infinite;
    -webkit-animation: fadeIn 6s ease-out forwards infinite;
    -moz-animation: fadeIn 6s ease-out forwards infinite;
    -o-animation: fadeIn 6s ease-out forwards infinite;
    // display: inline-block;
    font-weight: 800;
    font-size: 1.5em;

    &:nth-of-type(2){
        animation-delay: 0.3s;
    }

    &:nth-of-type(3){
        animation-delay: 0.6s;
    }

    &:nth-of-type(4){
        animation-delay: 0.9s;
    }

    &:nth-of-type(5){
        animation-delay: 1.2s;
    }

    &:nth-of-type(6){
        animation-delay: 1.5s;
    }
}

@keyframes fadeIn {
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeIn {
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-container,
.swiper-slider-container {
    width: 100%;
    overflow: hidden;

    .swiper-slide {
        text-align: center;

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
}

.swiper-slider-container {
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

    &.slider-footer {
        border-radius: 10px;
    }

    .swiper-wrapper {
        .swiper-slide {
            font-size: 18px;
            background: $white;

            img {
                width: 100%;
                display: none;
                cursor: grab;

                @media only screen and (max-width: 575px) {
                    &.mobile-only {
                        display: block;
                        height: 100%;
                        // -o-object-fit: contain;
                        // object-fit: contain;
                    }
                }

                @media only screen and (min-width: 576px) {
                    &.web-only {
                        display: block;
                    }
                }
            }
        }

    }

    //@media only screen and (min-width: 992px) {
    //    height: 500px;
    //}
    //@media only screen and (max-width: 991px) {
    //    height: 300px;
    //}
    //@media only screen and (max-width: 767px) {
    //    height: 250px;
    //}
    //@media only screen and (max-width: 575px) {
    //    height: calc(100vw * 650px / 575px);
    //}
}

.voucher-single-container {
    border-radius: 20px;
    margin-bottom: 3rem;

    .header {
        font-weight: 600;
    }
    .header {
        color: $header-font-color;
        display: inline-flex;
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .right-panel-info {
        border: 1px solid #f3f3f3;
        border-radius: 10px;
        overflow: hidden
    }

    .promocard_copy_detail {
        color: #8a9195;
        font-size: .7rem;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;

        svg {
            width: 12px;
            margin-bottom: 2px;
        }
    }

    .promocard_cta {
        border-radius: 10px;
        padding: 10px;
    }

}

.section {
    background: $white;
    border-radius: 20px!important;
    box-shadow: 0 1px 5px rgba(2,15,32,.05);
    margin: 1rem auto;
    overflow-x: hidden;
    padding: 5px 0;
    z-index: 0;
}


.section-header {
    align-items: center;
    display: flex;
    justify-content: space-between;

    &.flash {
        background: linear-gradient(90deg, #ff4d67, #fa6448);
        color: $white !important;
        margin: 0 !important;
        padding: 8px 0;
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .section {
        border-radius: 0 !important;
    }
}

