@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Light.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Italic.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-LightItalic.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bangers';
    src: url('../fonts/bangers/Bangers-Regular.woff2') format('woff2'),
        url('../fonts/bangers/Bangers-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    --PrimaryColor: #c40001;
    --YellowColor: #fbc817;
    --GreenColor: #8dc63c;
    --LightBg: #f3f9eb;
    --headingColor: #2b1312;
    --textcolor: #4a3938;
    --footertextcolor: #bebaba;
    --whitecolor: #ffffff;
    --borderColor: #554241;
    font-family: "Poppins", sans-serif !important;
    background: var(--whitecolor);
}

p {
    font-size: 16px;
    line-height: 28px;
    
    color: var(--textcolor);
    font-family: "Poppins", sans-serif !important;
}

.container {
    max-width: 1440px !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headingColor);
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;}

a{
	text-decoration: none;
	transition-duration: 0.3s;
}

a:hover{
	text-decoration: none;
}


/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}



/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 8px;
    height: 8px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 8px;
    height: 8px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 8px;

    position: absolute;
    top: 0;
    left: 0;

    width: 8px;
    height: 8px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}


/*----*/



.services-scroll .slick-dots,
.ourclients-scroll .slick-dots,
.testimonials-scroll .slick-dots,
.coinfeatures-scroll .slick-dots,
.package-banner .slick-dots {
	bottom: -25px !important;
}

.services-scroll .slick-dots li button,
.ourclients-scroll .slick-dots li button,
.testimonials-scroll .slick-dots li button,
.coinfeatures-scroll .slick-dots li button,
.package-banner .slick-dots li button {
	border: 2px solid var(--PrimaryColor);
	list-style: none !important;
	z-index: 990;
	border-radius: 50%;
}

.services-scroll .slick-dots li button,
.ourclients-scroll .slick-dots li button,
.testimonials-scroll .slick-dots li button,
.coinfeatures-scroll .slick-dots li button,
.package-banner .slick-dots li button {
	border: 2px solid var(--PrimaryColor);
	list-style: none !important;
	z-index: 990;
	border-radius: 50%;
}

.services-scroll li button:before,
.ourclients-scroll li button:before,
.testimonials-scroll li button:before,
.coinfeatures-scroll li button:before,
.package-banner li button:before {
	display: none;
	visibility: hidden;
}

.services-scroll .slick-dots li.slick-active button,
.ourclients-scroll .slick-dots li.slick-active button,
.testimonials-scroll .slick-dots li.slick-active button,
.coinfeatures-scroll .slick-dots li.slick-active button,
.package-banner .slick-dots li.slick-active button {
	background: var(--PrimaryColor);
}

.services-scroll .slick-dots li.slick-active button,
.ourclients-scroll .slick-dots li.slick-active button,
.testimonials-scroll .slick-dots li.slick-active button,
.coinfeatures-scroll .slick-dots li.slick-active button,
.package-banner .slick-dots li.slick-active button {
	background: var(--PrimaryColor);
}

.services-scroll .slick-dots li button,
.ourclients-scroll .slick-dots li button,
.testimonials-scroll .slick-dots li button,
.coinfeatures-scroll .slick-dots li button,
.package-banner .slick-dots li button {
	border: 2px solid var(--PrimaryColor);
	list-style: none !important;
	z-index: 990;
	border-radius: 0%;
}

::selection {
    background: var(--PrimaryColor);
    color: #fff;
}

::-moz-selection {
    background: var(--PrimaryColor);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    border-radius: 0
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: rgba(249, 187, 38, .9);
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -o-transition: .6s;
    transition: .6s
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(249, 187, 38, 1);
}

.footer-wrapper-div{
    width: 100%;
    position: relative;
    background: var(--headingColor);
    margin-top: 20px;
}

.footer-wrapper-div::before{
    width: 100%;
    height: 20px;
    content: '';
    position: absolute;
    left: 0px;
    top: -19px;
    background: url(../img/brown-curve.png) repeat-x;
    
}


.footer-wrapper-div .footer-credencials{
    width: 100%;
    border-top: 1px solid var(--borderColor);
    padding: 30px 0px;
}

.footer-wrapper-div .footer-credencials p{
    text-align: center;
    padding: 0;
    margin: 0;
    color: var(--footertextcolor);
    font-size: 13px;
    line-height: 20px;
}

.footer-wrapper-div .footer-credencials p font{
    padding: 0px 25px;
}

.footer-wrapper-div .footer-credencials p:first-child{
    margin-bottom: 15px;
}

.footermenu-section{
    padding-top: 75px;
    padding-bottom: 75px;
}

.footermenu-section .col-lg-3 h4{
    width: 100%;
    padding: 0;
    margin: 0px 0px 25px 0px;
    color: var(--whitecolor);
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

.footermenu-section .col-lg-3 ul.quicklinks{
    width: 100%;
    padding: 0;
    margin: 0;
}

.footermenu-section .col-lg-3 ul.quicklinks li{
    list-style: none;
    padding: 0;
    margin: 0px 0px 8px 0px;
    width: 100%;
    line-height: normal;
}

.footermenu-section .col-lg-3 ul.quicklinks li a{
    font-size: 14px;
    padding: 0;
    margin: 0;
    line-height: normal;
    color: var(--footertextcolor);
    width: 100%;
    display: block;
    transition-duration: 0.3s;
}

.footermenu-section .col-lg-3 ul.quicklinks li a:hover{
    color: var(--YellowColor);
}


.footermenu-section .col-lg-3 .socialmedia-icons {
    width: 100%;
    padding: 0px 0px 0px 0px;
    margin: 30px 0px 0px 0px;
    display: block;
    text-align: left;
}

.footermenu-section .col-lg-3 .socialmedia-icons li {
    list-style: none;
    padding: 0;
    margin: 0px 5px 0px 0px;
    display: inline-block;
}

.footermenu-section .col-lg-3 .socialmedia-icons li:last-child{
    margin-right: 0px;
}

.footermenu-section .col-lg-3 .socialmedia-icons li a {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

.footermenu-section .col-lg-3 .socialmedia-icons li a:hover {
    color: #fff !important;
    text-decoration: none;
}

.footermenu-section .col-lg-3 .socialmedia-icons li a.fb {
    background: #3f64ac;
}

.footermenu-section .col-lg-3 .socialmedia-icons li a.tw {
    background: #000000;
}

.footermenu-section .col-lg-3 .socialmedia-icons li a.li {
    background: #0e72a3;
}

.footermenu-section .col-lg-3 .socialmedia-icons li a.in {
    background: #f6523f;
}

.footermenu-section .col-lg-3 .socialmedia-icons li a.em{
    background: var(--PrimaryColor);
}

.footermenu-section .col-lg-9 h4{
    width: 100%;
    padding: 0px 0px 0px 70px;
    margin: 0px 0px 25px 0px;
    color: var(--whitecolor);
    font-size: 20px;
    font-weight: 500;
    position: relative;
    line-height: 26px;
}

.footermenu-section .col-lg-9 h4 img{
    width: 50px;
    height: 44px;
    position: absolute;
    left: 0px;
    top: 4px;
}

.footermenu-section .col-lg-9 p{
    font-size: 14px;
    padding: 0;
    margin: 0;
    color: var(--footertextcolor);
    line-height: 24px;
}

.footermenu-section .col-lg-9 .col-lg-6 span{
    width: 100%;
    display: block;
    margin-top: 30px;
}

.footermenu-section .col-lg-9 .col-lg-6 span img{
    width: auto;
    height: 60px;
}

.downloadapp-wrapper{
    width: 100%;
    border: 2px solid var(--PrimaryColor);
    border-radius: 15px;
    margin-bottom: 90px;
    padding: 0px 80px;
    min-height: 315px;
    display: table;
    overflow: hidden;
    background: url(../img/g-icon.svg) no-repeat center;
    background-size: auto 650px;

    box-shadow: 1px -1px 26px -10px rgba(196,0,1,0.6);
    -webkit-box-shadow: 1px -1px 26px -10px rgba(196,0,1,0.6);
    -moz-box-shadow: 1px -1px 26px -10px rgba(196,0,1,0.6);
}

.downloadapp-wrapper .downloadapp-middlealign{
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.downloadapp-wrapper .downloadapp-middlealign p{
    padding: 0;
    margin: 0;
}

.downloadapp-wrapper .downloadapp-middlealign h3{
    width: 100%;
    position: relative;
    font-size: 32px;
    font-weight: 500;
    padding: 0px 0px 0px 115px;
    margin-bottom: 25px;
}

.downloadapp-wrapper .downloadapp-middlealign h3 font{
    color: var(--PrimaryColor);
}

.downloadapp-wrapper .downloadapp-middlealign h3::before{
    width: 90px;
    height: 90px;
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -45px;
    content: '';
    background: url(../img/download-icon.png) no-repeat;
}

.downloadapp-buttonqr{
    width: 100%;
    text-align: right;
    display: block;
    padding-top: 4px;
}

.downloadapp-buttonqr .qrcode-con{
    width: auto;
    display: inline-block;
    float: right;
}

.downloadapp-buttonqr .qrcode-con img{
    width: 147px;
    height: 147px;
    object-fit: cover;
}

.downloadapp-buttonqr .playbuttons-con{
    width: auto;
    display: inline-block;
}

.downloadapp-buttonqr .playbuttons-con{
    width: 205px;
    display: inline-block;
    margin-right: 40px;
}

.downloadapp-buttonqr .playbuttons-con a{
    width: 100%;
    display: block;
}

.downloadapp-buttonqr .playbuttons-con img{
    width: 205px;
    height: auto;
}

.downloadapp-buttonqr .playbuttons-con a:last-child img{
    margin-top: 18px;
}



.scrollingtext-wrap{
    width: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
	padding: 0px 0px 0px 0px;
    margin: 0px 0px 120px 0px;
    left: 0px;
    margin-left: 0%;
}

.scrollingtext-wrap .text {
    font-size: 14px;
	text-transform: inherit;
	animation: animate_topscrolls 120s linear infinite;
}

.scrollingtext-wrap .text span{
    width: auto;
    height: auto;
    line-height: normal;
    display: inline-block;
    padding: 0px 220px 0px 0px;
    margin: 0px 0px 0px 0px;
    color: var(--headingColor);
    letter-spacing: 3px;
    font-size: 120px;
    font-weight: bold;
    position: relative;
    text-transform: uppercase;
    line-height: 100px;
}

.scrollingtext-wrap .text span div{
    height: 88px;
    background: var(--PrimaryColor);
    position: absolute;
    right: 35px;
    top: 5px;
    width: 140px;
    border-radius: 45px;
    overflow: hidden;
}

.scrollingtext-wrap .text span div img{
    width: 100%;
    float: left;
    height: 88px;
    object-fit: cover;
}

@keyframes animate_topscrolls {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-100%, 0, 0);
    }
}

.ordersmart-wrapper{
    width: 100%;
    position: relative;
    background: url(../img/ordersmart-line.png) top left no-repeat var(--headingColor);
    padding-top: 90px;
    padding-bottom: 90px;
}

.ordersmart-wrapper::after{
    width: 100%;
    height: 20px;
    content: '';
    position: absolute;
    left: 0px;
    bottom: -19px;
    background: url(../img/brown-curve.png) repeat-x;
    transform: scaleY(-1);
    z-index: 10;
    
}

.ordersmart-wrapper p{
    text-align: center;
    padding: 0;
    margin: 0;
    color: var(--footertextcolor);
}

.ordersmart-wrapper h2{
    color: var(--whitecolor);
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0px 0px 20px 0px;
    font-size: 44px;
    font-weight: 400;
}

.ordersmart-wrapper h2 font{
    color: var(--PrimaryColor);
}

.ordersmart-wrapper span{
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 30px;
}

.ordersmart-wrapper span img{
    width: auto;
    height: 140px;
    display: inline-block;
}

.godacoin-yellowwrapper{
    width: 100%;
    background: url(../img/bg.png) repeat var(--YellowColor);
    position: relative;
    margin-bottom: 120px;
}

.godacoin-yellowwrapper::after{
    width: 100%;
    height: 20px;
    content: '';
    position: absolute;
    left: 0px;
    z-index: 0;
    bottom: -1px;
    background: url(../img/white-curve.png) repeat-x;
    
}

.godacoin-yellowwrapper .col-lg-7{
    padding-top: 90px;
    padding-bottom: 90px;
}

.godacoin-yellowwrapper .col-lg-7 h2{
    color: var(--headingColor);
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0px 0px 20px 0px;
    font-size: 44px;
    font-weight: 400;
}

.godacoin-yellowwrapper .col-lg-7 ul{
    width: 100%;
    padding: 0;
    margin: 0px;
    display: table;
}

.godacoin-yellowwrapper .col-lg-7 ul li{
    width: 50%;
    position: relative;
    display: inline-table;
    font-weight: 500;
    padding: 0px 0px 0px 30px;
    margin: 15px 0px 0px 0px;
    
}   

.godacoin-yellowwrapper .col-lg-7 ul li i{
    color: var(--PrimaryColor);
    position: absolute;
    left: 0px;
    top: 3px;
    font-size: 18px;
}

.coin-placeholder-image{
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: 50px;
}

.coin-placeholder-image img{
    width: auto;
    height: 627px;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 15;
}

.godafresh-items-wrapper{
    margin-bottom: 120px;
}

.godafresh-items-wrapper .godafresh-item{
    width: 100%;
    position: relative;
    text-align: center;
    background: var(--LightBg);
    border-radius: 10px;
    padding: 35px 20px 0px 20px;
    min-height: 250px;
}

.godafresh-items-wrapper .godafresh-item p{
    font-size: 15px;
    padding: 0;
    margin: 0;
    line-height: 24px;
}

.godafresh-items-wrapper .godafresh-item h4{
    width: 100%;
    padding: 0;
    margin: 0px 0px 10px 0px;
    font-size: 18px;
    font-weight: 600;
}

.godafresh-items-wrapper .godafresh-item span{
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 25px;
}

.godafresh-items-wrapper .godafresh-item span img{
    width: auto;
    display: inline-block;
    height: 78px;
}

.godafresh-wrapper{
    width: 100%;
    border: 2px solid var(--GreenColor);
    border-radius: 15px;
    min-height: 520px;
    display: table;
    margin-bottom: 60px;
    padding: 0px 80px;
    position: relative;
}

.godafresh-wrapper .godafresh-middlealign{
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 10;
}

.godafresh-wrapper .godafresh-middlealign p{
    padding: 0;
    margin: 0;
}

.godafresh-wrapper .godafresh-middlealign h2{
    color: var(--headingColor);
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0px 0px 20px 0px;
    font-size: 44px;
    font-weight: 400;
}

.godafresh-wrapper .godafresh-middlealign span{
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.godafresh-wrapper .godafresh-middlealign span img{
    width: auto;
    height: 80px;
    display: inline-block;
}

.godafresh-wrapper .godafresh-middlealign .col-lg-4 img{
    position: absolute;
    top: -60px;
    right: -80px;
    width: 548px;
    height: 584px;
}

.godafresh-wrapper::before{
    width: 598px;
    height: 231px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(../img/godafresh-curve-top.png) no-repeat;
    content: '';
    z-index: 1;
}

.godafresh-wrapper::after{
    width: 636px;
    height: 294px;
    position: absolute;
    right:0px;
    bottom: 0px;
    background: url(../img/godafresh-curve-bottom.png) no-repeat;
    content: '';
    z-index: 1;
}

.welcome-section{
    width: 100%;
    margin-bottom: 100px;
}

.welcome-section .col-lg-5 img{
    width: 100%;
    height: auto;
}

.welcome-section .welcometext-middlealign{
    width: 100%;
    height: 100%;
    display: table;
}

.welcome-section .welcometext-middlealign span{
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.welcome-section .welcometext-middlealign h2{
    color: var(--headingColor);
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0px 0px 20px 0px;
    font-size: 44px;
    font-weight: 400;
}

.welcome-section .welcometext-middlealign a.downloadapp{
    width: auto;
    background: var(--PrimaryColor);
    color: var(--whitecolor);
    padding: 12px 35px;
    margin: 25px 0px 0px 0px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 24px;
    display: inline-block;
}

.welcome-section .welcometext-middlealign a.downloadapp:hover{
    background: var(--YellowColor);
    color: var(--headingColor);
}

.welcome-section .welcometext-middlealign ul{
    width: 100%;
    padding: 0;
    margin: 0px 0px 10px 0px;
    display: table;
}

.welcome-section .welcometext-middlealign ul li{
    width: 50%;
    position: relative;
    display: inline-table;
    font-weight: 500;
    padding: 0px 0px 0px 30px;
    margin: 15px 0px 0px 0px;
    
}   

.welcome-section .welcometext-middlealign ul li i{
    color: var(--YellowColor);
    position: absolute;
    left: 0px;
    top: 3px;
    font-size: 18px;
}

.hungerfor-more{
    width: 100%;
    position: relative;
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(250,234,234,1) 100%); 
    margin-bottom: 100px;
    padding: 100px 0px;
}

.hungerfor-more::before{
     width: 100%;
        height: 20px;
        content: '';
        position: absolute;
        left: 0px;
        top: -19px;
        background: url(../img/white-curve.png) repeat-x;
        z-index: 10;
        
}

.hungerfor-more .col-lg-8 h2{
    color: var(--headingColor);
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0px 0px 20px 0px;
    font-size: 44px;
    font-weight: 400;
}

.hungerfor-more .col-lg-8 h2 font{
    color: var(--PrimaryColor);
}

.hungerfor-more .col-lg-8 p{
    text-align: center;
    padding: 0;
    margin: 0;
}

.hungrymore-item{
    width: 100%;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    padding: 25px 10px;
}

.hungrymore-item h6{
    width: 100%;
    padding: 0;
    margin: 0px 0px 10px 0px;
    color: var(--headingColor);
    font-size: 16px;
}

.hungrymore-item p{
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
}

.hungrymore-item span{
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.hungrymore-item span img{
    width: auto;
    height: 65px;
    object-fit: cover;
    display: inline-block;
}

.hungry-scroll,
.hungry-scrolls{
    margin-left: -12px;
    margin-right: -12px;
    margin-top: 45px;
}

.hungry-scroll .col-lg-2,
.hungry-scrolls .col-lg-2{
    padding-left: 12px;
    padding-right: 12px;
}

.banner-wrapper-bg{
    width: 100%;
    position: relative;
    background: var(--YellowColor);
    background: url(../img/banner-bg.jpg) no-repeat center center fixed var(--YellowColor); 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
}

.banner-caption-con{
    width: 100%;
    min-height: 720px;
    display: table;
    padding-top: 80px;
}

.banner-caption-con .banner-caption-middlelalign{
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.banner-caption-con .banner-caption-middlelalign h1{
    font-family: "Bangers", sans-serif !important;
    font-size: 66px;
    padding: 0;
    margin: 0px 0px 0px 0px;
    line-height: 72px;
}

.banner-caption-con .banner-caption-middlelalign h1 font{
    color: var(--PrimaryColor);
}

.banner-caption-con .banner-caption-middlelalign .banner-download-btns{
    width: 100%;
    position: relative;
    display: block;
}

.banner-caption-con .banner-caption-middlelalign .banner-download-btns a{
    width: auto;
    display: inline-block;
    margin-right: 25px;
}

.banner-caption-con .banner-caption-middlelalign .banner-download-btns a img{
    width: auto;
    height: 60px;
}

.banner-caption-con .banner-caption-middlelalign .banner-subtext{
    width: 100%;
    display: inline-flex;
    position: relative;
    margin-top: 25px;
    margin-bottom: 90px;
}

.banner-caption-con .banner-caption-middlelalign .banner-subtext .banner-icon{
    border: 2px solid var(--headingColor);
    width: auto;
    display: inline-block;
    padding: 6px;
    border-radius: 45px;
    margin-right: 30px;
    height: 82px;
    margin-top: 8px;
}

.banner-caption-con .banner-caption-middlelalign .banner-subtext .banner-icon span{
    width: 125px;
    height: 65px;
    background: var(--headingColor);
    display: block;
    border-radius: 35px;
    overflow: hidden;
}

.banner-caption-con .banner-caption-middlelalign .banner-subtext .banner-icon span img{
    width: 125px;
    height: 65px;
    object-fit: cover;
}

.banner-caption-con .banner-caption-middlelalign .banner-subtext p{
    width: auto;
    display: inline-block;
    padding: 0;
    margin: 0px 0px 0px 0px;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
}

.banner-caption-con .banner-caption-middlelalign h6{
    padding: 0;
    margin: 0px 0px 5px 0px;
    font-size: 14px;
    font-weight: 500;
}

.banner-caption-con .banner-caption-middlelalign h6 span{
    background: var(--PrimaryColor);
    color: var(--whitecolor);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 15px;
    font-weight: 600;
}

.banner-caption-con .banner-caption-middlelalign h6 span font{
    color: var(--YellowColor);
}

.header-wrapper{
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1020;
    transition-duration: 0.3s;
    padding-top: 25px;
    padding-bottom: 25px;
}

.header-wrapper .godalogo img{
    width: auto;
    height: 80px;
    transition-duration: 0.3s;
}   

.header-wrapper .banner-download-btns{
    width: 100%;
    text-align: right;
    transition-duration: 0.3s;
    display: none;
    visibility: hidden;
    opacity: 0;
}

.header-wrapper .banner-download-btns a{
    display: inline-block;
    padding: 0;
    margin: 0;
}

.header-wrapper .banner-download-btns a:first-child{
    margin-right: 20px;
}

.header-wrapper .banner-download-btns a img{
    width: auto;
    height: 50px;
}

.f-nav .header-wrapper{
    background: rgba(255,255,255,0.9);
    box-shadow: -1px -1px 21px -7px rgba(0,0,0,0.3);
    -webkit-box-shadow: -1px -1px 21px -7px rgba(0,0,0,0.3);
    -moz-box-shadow: -1px -1px 21px -7px rgba(0,0,0,0.3);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding-top: 12px;
    padding-bottom: 12px;
}

.f-nav .header-wrapper .godalogo img{
    height: 50px;
}

.f-nav .header-wrapper .banner-download-btns{
    display: block;
    visibility: visible;
    opacity: 1;
}

.banner-image-wrap{
    position: relative;
}

.banner-image-wrap .brown-stripes{
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: auto;
    height: 100%;
}   


.parallax-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 720px;
}

.parallax-wrap .parallax-span {
    position: absolute;
    height: auto;
    width: 100%;
    left: auto;
    right: auto
}

.parallax-wrap .parallax-span .bannermobile-image{
    width: 100%;
}

.parallax-wrap .parallax-span  .bannermobile-leafs{
    width: 100%;
}

.godafresh-scroll{
    margin-left: -12px;
    margin-right: -12px;
}

.godafresh-scroll .col-lg-3{
    padding-left: 12px;
    padding-right: 12px;
}

.comingsoonmodal-styles{
    border-radius: 10px;
    border: none;
    outline: none;
    background: url(../img/bg.png) repeat var(--YellowColor);
}

.comingsoonmodal-styles .modal-body{
    position: relative;
    padding: 45px 45px;
}

.comingsoonmodal-styles .modal-body p{
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--headingColor);
    line-height: 24px;
}

.comingsoonmodal-styles .modal-body h4{
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0px 0px 10px 0px;
    font-weight: 600;
    font-size: 22px;
}

.comingsoonmodal-styles .modal-body .btn-close{
    background: var(--whitecolor);
    width: 38px !important;
    height: 38px !important;
    border-radius: 50%;
    opacity: 1;
    box-shadow: none;
    border: none;
    outline: none;
    padding: 0px 0px 0px 0px;
    color: var(--headingColor);
    font-size: 14px;
    position: absolute;
    top: 14px;
    right: 14px;
    transition-duration: 0.3s;
}

.comingsoonmodal-styles .modal-body .btn-close:hover{
    background: var(--PrimaryColor);
    color: var(--whitecolor);
}

.comingsoonmodal-styles .modal-body span{
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 25px;
}

.comingsoonmodal-styles .modal-body span img{
    width: auto;
    height: 80px;
}


.innerpagebanner-wrapper{
    width: 100%;
    position: relative;
    background: var(--YellowColor);
    background: url(../img/banner-bg.jpg) no-repeat center center fixed var(--YellowColor); 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 120px 0px 80px 0px;
    margin-bottom: 20px;
}

.innerpagebanner-wrapper h2{
    font-family: "Bangers", sans-serif !important;
    font-size: 62px;
    padding: 0;
    margin: 0px 0px 0px 0px;
    line-height: 72px;
    width: 100%;
    text-align: center;
}

.innerpagebanner-wrapper:after{
    width: 100%;
    height: 20px;
    content: '';
    position: absolute;
    left: 0px;
    bottom: -1px;
    background: url(../img/white-curve.png) repeat-x;
    
    z-index: 2;
}

.innerpage-content-wrap{
    margin-top: 100px;
    width: 100%;
    margin-bottom: 100px;
}

.innerpage-content-wrap p{
    font-size: 15px;
    line-height: 24px;
}

.innerpage-content-wrap p a,
.innerpage-content-wrap ul li a{
    color: var(--textcolor);
    text-decoration: none;
    font-weight: 500;
}

.innerpage-content-wrap p a:hover,
.innerpage-content-wrap ul li a:hover{
    color: var(--PrimaryColor);
}

.innerpage-content-wrap h4{
    width: 100%;
    padding: 0;
    margin: 25px 0px 6px 0px;
    font-size: 18px;
    font-weight: 600;
}

.innerpage-content-wrap h5{
    width: 100%;
    padding: 0;
    margin: 25px 0px 6px 0px;
    font-size: 16px;
    font-weight: 600;
}

.innerpage-content-wrap ul{
    width: 100%;
    padding: 0px 0px 0px 20px;
    margin: 0px;
}

.innerpage-content-wrap ul li{
    width: 100%;
    font-size: 15px;
    color: var(--textcolor);
    margin: 6px 0px;
}

.support-form .formitem-style label{
    width: 100%;
    padding: 0;
    margin: 0px 0px 0px 0px;
    line-height: normal;
    font-size: 14px;
    font-weight: 500;
    color: var(--headingColor);
}

.support-form .formitem-style input,
.support-form .formitem-style select{
    width: 100%;
    transition-duration: 0.3s;
    border: 1px solid var(--borderColor);
    height: 44px;
    border-radius: 4px;
    padding-left: 10px;
    font-size: 15px;
    color: var(--textcolor);
}

.support-form .formitem-style textarea{
    width: 100%;
    transition-duration: 0.3s;
    border: 1px solid var(--borderColor);
    height: 120px;
    border-radius: 4px;
    padding-left: 10px;
    font-size: 15px;
    color: var(--textcolor);
}

.support-form .formitem-style textarea:focus,
.support-form .formitem-style input:focus,
.support-form .formitem-style select:focus{
    border: 1px solid var(--PrimaryColor);
    outline: none;
    box-shadow: -1px 0px 11px -2px rgba(227,0,15,0.3);
    -webkit-box-shadow: -1px 0px 11px -2px rgba(227,0,15,0.3);
    -moz-box-shadow: -1px 0px 11px -2px rgba(227,0,15,0.3);
}

.support-form .formitem-style{
    margin-bottom: 15px;
}

.support-form .submit-btn{
    width: 100%;
    background: var(--PrimaryColor);
    color: var(--whitecolor);
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 44px;
    border-radius: 4px;
    transition-duration: 0.3s;
}

.support-form .submit-btn:hover{
    background: var(--YellowColor);
    color: var(--headingColor);

    
}

.support-form h2{
    color: var(--headingColor);
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0px 0px 15px 0px;
    font-size: 40px;
    font-weight: 400;
}

.report-wrap{
    width: 100%;
    text-align: center;
    display: block;
    border: 1px solid var(--PrimaryColor);
    margin-bottom: 25px;
    border-radius: 15px;
    padding: 40px 20px;
}

.report-wrap:last-child{
    margin-bottom: 0px;
}

.report-wrap p:last-child{
    margin-bottom: 0px;
}

.report-wrap h4{
    width: 100%;
    padding: 0;
    margin: 0px 0px 10px 0px;
}

.report-wrap span{
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.report-wrap span img{
    width: auto;
    display: inline-block;
    height: 60px;
}

.report-fraud-text{
    padding: 0px;
    margin: 25px 0px 0px 0px;
    font-size: 13px !important;
    line-height: 20px !important;
}


.popup-modals {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px
}

.popup-modals img {
    width: 142px;
    height: 141px;
    position: relative;
    left: 50%;
    margin-left: -71px
}

.popup-modals h2,
.popup-modals h4 {
    padding: 0;
    width: 100%;
    text-align: center
}

.popup-modals h2 {
    margin: 20px 0;
    font-weight: 700;
    font-size: 22px;
    color: #000
}

.popup-modals h4 {
    margin: 0;
    font-size: 18px;
    color: var(--textcolor)
}


.grecaptcha-badge { 
    visibility: hidden !important;
    display: none;
}

.faq-page .accordion-button:not(.collapsed){
    box-shadow: none !important;
    background: var(--YellowColor);
    color: var(--headingColor);
    font-weight: 600;
}

.faq-page .accordion-item .accordion-button.collapsed{
    font-weight: 600;
}

.faq-page h4{
    color: var(--PrimaryColor);
    padding: 0px;
    margin: 10px 0px 10px 0px;
}

.become-delivery-partner ul{
    width: 100%;
    padding: 0;
    margin: 0;
}

.become-delivery-partner ul li{
    list-style: none;
    padding: 0px 0px 8px 25px;
    margin: 0;
    line-height: normal;
    position: relative;
}

.become-delivery-partner ul li:last-child{
    margin-bottom: 0px;
}

.become-delivery-partner ul li i{
    color: var(--PrimaryColor);
    font-size: 14px;
    position: absolute;
    left: 0px;
    top: 6px;
}

.become-delivery-partner p{
    text-align: justify;
}

.become-delivery-partner h3{
    width: 100%;
    padding: 0;
    margin: 35px 0px 14px 0px;
    color: var(--headingColor);
    font-size: 24px;
}

.deliverypartner-form{
    width: 100%;
    text-align: center;
    display: block;
    border: 1px solid var(--PrimaryColor);
    border-radius: 15px;
    padding: 60px 45px;
    position: sticky;
    top: 100px;
}

.deliverypartner-form input{
    width: 100%;
    transition-duration: 0.3s;
    border: 1px solid var(--borderColor);
    height: 44px;
    border-radius: 4px;
    padding-left: 10px;
    font-size: 15px;
    color: var(--textcolor);
}

.deliverypartner-form input:focus{
    border: 1px solid var(--PrimaryColor);
    outline: none;
    box-shadow: -1px 0px 11px -2px rgba(227,0,15,0.3);
    -webkit-box-shadow: -1px 0px 11px -2px rgba(227,0,15,0.3);
    -moz-box-shadow: -1px 0px 11px -2px rgba(227,0,15,0.3);
}

.deliverypartner-form button{
    width: 100%;
    background: var(--PrimaryColor);
    color: var(--whitecolor);
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 44px;
    border-radius: 4px;
    transition-duration: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
}

.deliverypartner-form button:hover{
    background: var(--YellowColor);
    color: var(--headingColor);
}

.deliverypartner-form .col-lg-12{
    margin-top: 15px;
}

.deliverypartner-form .termstext{
    padding: 0;
    margin: 20px 0px 0px 0px;
    font-size: 14px;
    line-height: 22px;
}

.deliverypartner-form .delivery-heading h3{
    width: 100%;
    padding: 0;
    margin: 0px 0px 10px 0px;
    color: var(--headingColor);
    font-size: 24px;
}

.deliverypartner-form .delivery-heading p{
    padding: 0;
    margin: 0;
    line-height: 22px;
}

.deliverypartner-form .delivery-heading{
    width: 100%;
    margin-bottom: 15px;
}

.deliverypartner-form .col-lg-12{
    position: relative;
}

.become-delivery-partner{
    padding-right: 75px;
}



.highest-earn-wrap h3{
    width: 100%;
    padding: 0;
    margin: 0px 0px 20px 0px;
    font-size: 32px;
}

.highest-earn-wrap h3 font{
    color: var(--PrimaryColor);
}

.highest-earn-wrap ul{
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.hightestpay-items{
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    background: #faeaea;
    display: block;
}

.hungry-scrolls .hungrymore-item{
    background: #faeaea;
}


.hungry-scrolls{
    margin-top: 45px;
    margin-bottom: 45px;
}

.submit-button-div{
    position: relative;
}

.loader{
    width: 50%;
    position: absolute;
    height: 100%;
    left: 25%;
    top: 0px;
    z-index: 20;
    background: var(--PrimaryColor);
    border-radius: 10px;
    display: none;
}

.loader::before {
    width: 20px;
    height: 20px;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    top: 12px;
    z-index: 200;
    content: '';
    background: var(--PrimaryColor);
}

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 

.godacoins-item{
    width: 100%;
    border: 2px solid var(--headingColor);
    text-align: center;
    padding: 35px 15px;
    border-radius: 10px;
}

.godacoins-item h4{
    width: 100%;
    padding: 0;
    margin: 0px 0px 10px 0px;
    font-size: 17px;
    font-weight: 600;
}

.godacoins-item p{
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
}

.coinfeatures-scroll{
    margin-top: 35px;
}

.coinfeatures-scroll .col-lg-4{
    padding-left: 5px;
    padding-right: 5px;
}










@media screen and (max-width: 1190px) {
    .downloadapp-wrapper{
        padding: 0px 40px;
    }

    .coin-placeholder-image img{
        height: auto;
        width: 100%;
    }

    .downloadapp-buttonqr .playbuttons-con{
    width: 100%;
    margin: 0px 0px 0px 0px;
   }

   .downloadapp-buttonqr .playbuttons-con a{
    width: auto;
    display: inline-block;
   }

   .downloadapp-buttonqr .playbuttons-con a:last-child img{
    margin-top: 0px;
   }

   .downloadapp-buttonqr .playbuttons-con a img{
    height: 55px;
    width: auto;
   }

   .downloadapp-buttonqr .qrcode-con{
    width: 100%;
    text-align: center;
    margin-top: 25px;
   }
}

@media screen and (max-width: 1060px) {
    .downloadapp-buttonqr .playbuttons-con{
    width: 100%;
    margin: 0px 0px 0px 0px;
   }

   .downloadapp-buttonqr .playbuttons-con a{
    width: auto;
    display: inline-block;
   }

   .downloadapp-buttonqr .playbuttons-con a:last-child img{
    margin-top: 0px;
   }

   .downloadapp-buttonqr .playbuttons-con a img{
    height: 55px;
    width: auto;
   }

   .downloadapp-buttonqr .qrcode-con{
    width: 100%;
    text-align: center;
    margin-top: 25px;
   }
}


@media screen and (max-width: 1024px) {
    .banner-caption-con .banner-caption-middlelalign h1 br,
    .godacoin-yellowwrapper .col-lg-7 h2 br,
    .godafresh-wrapper .godafresh-middlealign h2 br{
        display: none;
        visibility: hidden;
    }

   .coin-placeholder-image img{
    width: 100%;
    height: auto;
   }

   .banner-caption-con .banner-caption-middlelalign h1{
    font-size: 54px;
    line-height: normal;
   }

   .banner-caption-con .banner-caption-middlelalign .banner-subtext p{
    margin-top: 8px;
   }

   .godafresh-wrapper{
    padding: 0px 45px;
   }

   .godafresh-wrapper .godafresh-middlealign .col-lg-4 img{
    width: auto;
    height: 400px;
    right: 0px;
   }

   .banner-caption-con{
    min-height: 640px;
   }

   .parallax-wrap{
    min-height: 640px;
   }

   .banner-caption-con .banner-caption-middlelalign .banner-subtext{
    margin-bottom: 60px;
   }

   .downloadapp-wrapper{
    padding: 0px 45px;
   }

   .downloadapp-buttonqr .playbuttons-con{
    width: 100%;
    margin: 0px 0px 0px 0px;
   }

   .downloadapp-buttonqr .playbuttons-con a{
    width: auto;
    display: inline-block;
   }

   .downloadapp-buttonqr .playbuttons-con a:last-child img{
    margin-top: 0px;
   }

   .downloadapp-buttonqr .playbuttons-con a img{
    height: 55px;
    width: auto;
   }

   .downloadapp-buttonqr .qrcode-con{
    width: 100%;
    text-align: center;
    margin-top: 25px;
   }

   .godafresh-wrapper .godafresh-middlealign h2{
    font-size: 38px;
   }
}

@media screen and (max-width: 980px) {
    .banner-caption-con .banner-caption-middlelalign .banner-subtext .banner-icon,
    .parallax-wrap .parallax-span .bannermobile-leafs,
    .banner-image-wrap .brown-stripes,
    .godafresh-middlealign .col-lg-4,
    .godafresh-wrapper .godafresh-middlealign h2 br,
    .godacoin-yellowwrapper .col-lg-5,
    .downloadapp-wrapper .downloadapp-middlealign h3::before{
        display: none;
        visibility: hidden;
    }

   .banner-caption-con .banner-caption-middlelalign h1{
    text-align: center;
   }

   .banner-caption-con .banner-caption-middlelalign .banner-subtext p{

    text-align: center;
   }

   .banner-caption-con .banner-caption-middlelalign .banner-download-btns{
    text-align: center;
   }

   .banner-caption-con .banner-caption-middlelalign .banner-download-btns a:last-child{
    margin-right: 0px;
   }

   .banner-caption-con{
    min-height: auto;
    padding-top: 160px;
   }

   .parallax-wrap .parallax-span .bannermobile-image{
    width: auto;
    height: 400px;
    display: inline-block;
    position: relative;
   }

   .parallax-wrap .parallax-span{
    text-align: center;
    position: relative;
    width: 100%;
    display: block;
   }

   .parallax-wrap{
    min-height: auto;
    width: 100%;
    display: block;
    margin-top: 60px;
    margin-bottom: 60px;
   }

   .welcome-section .col-lg-5 img{
    width: 60%;
    left: 20%;
    position: relative;
    margin-bottom: 45px;
   }

   .welcome-section .welcometext-middlealign h2{
    text-align: center;
   }

   .godafresh-wrapper .godafresh-middlealign h2,
   .godacoin-yellowwrapper .col-lg-7 h2{
    text-align: center;
   }

   .godafresh-wrapper .godafresh-middlealign p,
   .godacoin-yellowwrapper .col-lg-7 p{
    text-align: center;
   }

   .godafresh-wrapper .godafresh-middlealign span{
    text-align: center;
   }

   .ordersmart-wrapper{
    background-size: auto 220px;
   }

   .footermenu-section .col-lg-3{
    margin-top: 45px;
   }

   .downloadapp-wrapper .downloadapp-middlealign p{
    text-align: center;
   }

   .downloadapp-wrapper .downloadapp-middlealign h3{
    text-align: center;
    padding: 0px;
   }

   .downloadapp-buttonqr .playbuttons-con{
    text-align: center;
    margin-top: 45px;
   }

   .downloadapp-buttonqr .playbuttons-con a{
    margin: 0px 15px;
   }

   .downloadapp-buttonqr .qrcode-con{
    margin-top: 40px;
   }

   .downloadapp-wrapper{
    padding: 60px 45px;
   }

   .godafresh-wrapper::before{
    width: 100%;
   }

   .godafresh-wrapper::after{
    width: 100%;
   }

   .innerpagebanner-wrapper h2{
    font-size: 52px;
   }

   .innerpagebanner-wrapper{
    padding: 140px 0px 60px 0px;
   }

   .support-form{
    margin-bottom: 60px;
   }

   .become-delivery-partner{
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 45px;
   }

}

@media screen and (max-width: 768px) {
    
}

@media screen and (max-width: 540px) {
   .header-wrapper .col-md-7,
   .downloadapp-wrapper .downloadapp-middlealign h3 br,
   .hungerfor-more .col-lg-8 h2 br{
    display: none;
    visibility: hidden;
   }

   .header-wrapper .col-md-5{
    text-align: center;
   }

   .banner-caption-con .banner-caption-middlelalign h1{
    font-size: 38px;
   }

   .banner-caption-con .banner-caption-middlelalign .banner-subtext{
    margin-top: 10px;
    margin-bottom: 45px;
   }

   .banner-caption-con .banner-caption-middlelalign .banner-download-btns a img{
    height: 45px;
   }

   .banner-caption-con .banner-caption-middlelalign .banner-download-btns a,
   .banner-caption-con .banner-caption-middlelalign .banner-download-btns a:last-child{
    margin: 0px 10px;
   }

   .parallax-wrap .parallax-span .bannermobile-image{
    height: auto;
    width: 100%;
   }

   .banner-caption-con{
    padding-top: 145px;
   }

   .hungerfor-more .col-lg-8 h2,
   .welcome-section .welcometext-middlealign h2,
   .godafresh-wrapper .godafresh-middlealign h2,
   .ordersmart-wrapper h2,
   .godacoin-yellowwrapper .col-lg-7 h2,
   .downloadapp-wrapper .downloadapp-middlealign h3{
    font-size: 28px;
   }

   .hungerfor-more{
    padding: 70px 0px;
   }

   .hungry-scroll{
        margin-left: -12px;
        margin-right: -12px;
        margin-top: 25px;
    }

    .hungry-scroll .col-lg-2,
    .godafresh-scroll .col-lg-3{
        padding-left: 5px;
        padding-right: 5px;
    }

    .hungrymore-item h6{
        font-size: 14px;
    }

    .welcome-section .col-lg-5 img{
        width: 80%;
        left: 10%;
    }

    .hungerfor-more,
    .welcome-section,
    .godafresh-items-wrapper{
        margin-bottom: 80px;
    }

    .godafresh-wrapper{
        padding: 45px 20px;
    }

    .ordersmart-wrapper{
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .godacoin-yellowwrapper .col-lg-7 ul li{
        width: 100%;
    }

    .downloadapp-wrapper{
        padding: 45px 20px;
    }

    .downloadapp-buttonqr .playbuttons-con a img{
        height: 40px;
    }

    .downloadapp-buttonqr .playbuttons-con a{
        margin: 0px 5px;
    }

    .footermenu-section .col-lg-9 .col-lg-6:last-child{
        margin-top: 45px;
    }

    .scrollingtext-wrap .text span{
        font-size: 60px;
    }

    
    .godacoin-yellowwrapper{
        margin-bottom: 40px;
    }

    .scrollingtext-wrap{
        margin-bottom: 40px;
    }

    .scrollingtext-wrap .text span div{
        height: 50px;
        width: 80px;
        top: 25px;
        right: 20px;
    }

    .scrollingtext-wrap .text span{
        padding-right: 120px;
    }

    .footer-wrapper-div .footer-credencials p font{
        padding: 0px 10px;
    }

    .comingsoonmodal-styles .modal-body{
        padding: 45px 20px;
    }

    .innerpagebanner-wrapper h2{
        font-size: 34px;
    }

    .innerpage-content-wrap{
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .innerpagebanner-wrapper{
        padding: 120px 0px 40px 0px;
    }

    .support-form h2{
        font-size: 28px;
        text-align: center;
    }

    .innerpage-content-wrap .formheading p{
        text-align: center;
    }

    .welcometext-middlealign p{
        text-align: center;
    }

    .welcome-section .welcometext-middlealign{
        text-align: center;
    }

    .become-delivery-partner h3{
        font-size: 24px;
        text-align: center;
    }

    .deliverypartner-form{
        padding: 60px 30px;
    }

    .hungry-scrolls .col-lg-2{
        padding-left: 5px;
        padding-right: 5px;
    }

    .hungrymore-item span img{
        height: 50px;
    }

    .hungrymore-item span{
        margin-bottom: 15px;
    }

    .welcome-section .welcometext-middlealign ul li{
        width: 100%;
        text-align: left;
    }

    .banner-caption-con .banner-caption-middlelalign h6{
        text-align: center;
    }
}