/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header.scrolled .header-container .mobile-nav-toggle {
    margin-right: 0px;
  }

  .header.scrolled .header-container .mobile-nav-toggle {
    margin-left: 4px;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    /* inset: 60px 20px 20px 20px; */
    top: 0;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 0px;
    margin: 0px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #212529;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  .hero .banner-image-section .banner-image-div-section {
    padding: 12px !important;
  }

  .hero .banner-image-second-section .banner-image-div-section {
    padding: 12px !important;
  }

  .hero .contentsection {
    width: 90% !important;
  }

  .alldatasection .container-fluid {
    width: calc(100% - 40px) !important;
  }

  .alldatasection .contentsection {
    margin-bottom: 24px;
  }

  .post-slide .post-content {
    padding: 28px !important;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

@media (max-width: 1680px) {
  .hero {
    border-radius: 0 0 200px 200px;
  }
}

@media (max-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1040px;
  }

  .header {
    padding-top: 20px;
  }

  .header .header-container {
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .signinanddemobutton {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }

  .header.scrolled {
    padding-top: 0px;
    top: 0px;
  }

  .attendancedetailssection .attendancemockupimage {
    width: 100%;
  }

  .small-heading {
    font-size: 20px !important;
  }

  p {
    font-size: 16px !important;
  }

  .footer .sphere-icon-1 {
    width: 80px;
    position: absolute;
    top: 145px;
    left: 70px;
    padding: 0px;
  }

  .footer .sphere-icon-2 {
    width: 140px;
    position: absolute;
    top: -10px;
    right: -20px;
    padding: 0px;
  }

  .footer .sphere-icon-3 {
    width: 190px;
    position: absolute;
    bottom: -40px;
    left: -30px;
    top: unset;
  }

  .footer .glassmorphismrow {
    margin: 60px 0;
    margin-bottom: 100px;
  }

  .footer .footer-top {
    padding-top: 20px;
  }

  .fourstepprocess,
  .gifsection,
  .attendancedetailssection,
  .otherreportsection,
  .mobileprocesssection,
  .testimonialsection {
    padding: 100px 0;
  }

  .fourstepprocess {
    padding-top: 460px;
  }

  .secondbannersection .secondbannercontentsection {
    width: 90%;
  }

  .hero {
    border-radius: 0 0 200px 200px;
  }
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

@media (max-width: 1098px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 930px;
  }
}

@media (max-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 90%;
  }

  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }

  .mockup-zentro-image {
    width: 60%;
  }

  .testimonialsection .contentcontainer,
  .mobileprocesssection .large-heading,
  .fourstepprocess .large-heading,
  .secondbannersection .secondbannercontentsection,
  .hero .contentsection {
    width: 100%;
  }

  .container,
  .container-sm {
    max-width: calc(100% - 10%);
  }
  .hero {
    border-radius: 0px;
    padding-bottom: 40px;
  }
  .banner-image-second-section .banner-image {
    border: none;
  }

  .banner-image-section {
    margin-top: 60px;
    top: 0px;
  }

  .banner-image-second-section {
    top: 14px;
  }

  .mobileplatformadvertisementsection .arrow1-image {
    width: 20%;
  }

  .mobileplatformadvertisementsection .googlepay-image {
    left: 50%;
    bottom: -70%;
    width: 30%;
  }

  .mobileplatformadvertisementsection .appstore-image {
    right: -15%;
    top: -120%;
    width: 30%;
  }

  .mobileplatformadvertisementsection .leftcontentsection {
    left: 20px;
  }

  .mobileplatformadvertisementsection .rightcontentsection p,
  .mobileplatformadvertisementsection .leftcontentsection p {
    margin-bottom: 0px !important;
    font-size: 14px !important;
  }

  .mobileplatformadvertisementsection .rightcontentsection .small-heading,
  .mobileplatformadvertisementsection .leftcontentsection .small-heading {
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .container,
  .container-sm {
    max-width: calc(100% - 7%);
  }
  .testimonialsection .container-fluid {
    margin-top: 50px;
  }
  .testimonialsection .container-fluid .card {
    padding: 20px;
  }
  .testimonialsection .contentcontainer {
    width: 90%;
  }

  .mobileprocesssection .mobileprocessstepwiseimage {
    margin-top: 60px;
  }

  .mobileprocesssection .mobileprocessstepwiseimage {
    margin-top: 0px;
  }

  .mobileprocesssection
    .mobileprocessstepwiseimage
    .mobileprocessstepwiseimagesection {
    margin-top: 60px;
  }

  .fourstepprocess,
  .gifsection,
  .attendancedetailssection,
  .otherreportsection,
  .mobileprocesssection,
  .testimonialsection,
  .supportandguidanceformsection .leftcontentsection,
  .supportandguidanceformsection .rightcontentsection {
    padding: 60px 0;
  }

  .fourstepprocess {
    padding-top: 310px;
  }

  .maincontentsection .mockup-zentro-image {
    width: 50%;
  }

  .maincontentsection .secondbannersection {
    padding-bottom: 240px;
  }

  .maincontentsection .mockup-zentro-image {
    top: 10%;
  }

  .otherreportsection .content-wrapper {
    gap: 16px;
  }

  .attendancedetailssection .attendancemockupimage {
    margin-top: 40px;
  }

  .fourstepprocesscontainersection {
    margin-top: 60px;
  }

  .footer .appstoreandplaystorecontainersection {
    align-items: flex-start;
  }

  .footer .appstoreandplaystorecontainersection {
    flex-direction: column;
  }

  .appstoreandplaystorecontainersection .appstoreandplaystoreimagesection {
    display: flex;
    margin-top: 30px;
    justify-content: start;
  }

  .secondbannersection .underline-element-section {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 45%;
  }

  .supportandguidanceformsection .rightcontentsection .bgelementsection {
    width: 70%;
  }

  .supportandguidanceformsection .rightcontentsection .element1section {
    width: 7%;
  }

  .supportandguidanceformsection .leftcontentsection .element3section {
    width: 30%;
    right: 40px;
    left: unset;
  }

  .supportandguidanceformsection .leftcontentsection .element2section {
    width: 30%;
    right: 40px;
    left: unset;
  }

  .large-heading {
    font-size: 24px;
  }
  .underline-element-section {
    width: 80%;
  }

  .otherreportsection .short-heading {
    font-size: 18px;
  }

  .supportandguidanceformsection
    .rightcontentsection
    .buttonsection
    .btn-secondary {
    margin-right: 10px;
  }

  .supportandguidanceformsection
    .rightcontentsection
    .custom-all-div-section
    .custom-div-section {
    padding: 0px;
  }

  .fourstepprocesscontainersection {
    margin-top: 20px;
  }

  .small-heading {
    font-size: 18px !important;
  }

  .owl-carousel .owl-item img {
    width: 80% !important;
  }
}

@media (max-width: 698px) {
  .mobileplatformadvertisementsection .leftcontentsection p,
  .mobileplatformadvertisementsection .rightcontentsection p {
    font-size: 10px;
  }

  .mobileplatformadvertisementsection .leftcontentsection .small-heading,
  .mobileplatformadvertisementsection .rightcontentsection .small-heading {
    font-size: 12px;
  }

  .mobileplatformadvertisementsection .background-image {
    display: none;
  }

  .mobileplatformadvertisementsection .mobile-background-image {
    display: block;
  }

  .mobileplatformadvertisementsection .leftcontentsection {
    left: 20px;
    top: 80px;
    transform: translate(0%, 0%);
  }

  .mobileplatformadvertisementsection .googlepay-image {
    left: 50%;
    bottom: -80%;
    transform: translate(-50%, 150%);
  }

  .mobileplatformadvertisementsection .arrow2-image {
    right: 90%;
    bottom: -280%;
    transform: rotate(180deg);
    top: unset;
    width: 25%;
  }

  .mobileplatformadvertisementsection .appstore-image {
    left: -170px;
    bottom: -230px;
    right: unset;
    top: unset;
    transform: translate(0%, 0%);
    width: 50%;
  }

  .mobileplatformadvertisementsection .rightcontentsection {
    bottom: 28%;
  }

  .mobileplatformadvertisementsection .arrow1-image {
    width: 100px;
  }
  .mobileplatformadvertisementsection .arrow1-image {
    position: absolute;
    left: 180px;
    top: 60px;
    transform: rotate(5deg);
    width: 60%;
  }

  .mobileplatformadvertisementsection .googlepay-image {
    left: 120%;
    top: 250%;
    transform: translate(-50%, 230%);
    width: 50%;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }

  .container,
  .container-sm {
    max-width: calc(100% - 5%);
  }

  .header .signinanddemobutton {
    display: none;
  }

  .maincontentsection .secondbannersection {
    padding-bottom: 140px;
  }

  .maincontentsection .mockup-zentro-image {
    top: 27%;
  }

  .alldatasection .container-fluid .banner-image-section {
    padding: 20px;
    border-radius: 15px;
  }

  .fourstepprocess .fourstepprocesscontainersection .fourstepprocess-card {
    padding: 20px;
    border-radius: 15px;
  }

  .testimonialsection .container-fluid .card,
  .footer .glassmorphism-container {
    border-radius: 15px;
  }

  .fourstepprocess .outlined-text {
    font-size: 30px;
  }

  .footer .glassmorphism-container {
    padding: 20px;
  }

  .footer .sphere-icon-3 {
    width: 120px;
    position: absolute;
    bottom: -30px;
    left: -30px;
    top: unset;
  }

  .footer .sphere-icon-2 {
    width: 90px;
    position: absolute;
    top: -30px;
    right: -20px;
    padding: 0px;
  }

  .footer .sphere-icon-1 {
    width: 60px;
    position: absolute;
    top: 210px;
    left: 50px;
    padding: 0px;
  }

  .appstoreandplaystorecontainersection {
    flex-direction: column;
  }

  .appstoreandplaystorecontainersection .appstoreandplaystoreimagesection {
    display: flex;
    margin-top: 30px;
  }

  .totalfooterlinkssection {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
  }

  .footer h4 {
    margin-bottom: 16px;
  }

  .footer .footer-links ul li {
    margin-bottom: 12px;
  }

  .totalfooterlinkssection .footer-links {
    margin-top: 40px;
  }

  .footer .footerrowsection {
    margin-bottom: 40px;
  }

  .mobileprocesssection .mobileprocessstepwiseimage,
  .mobileprocesssection
    .mobileprocessstepwiseimage
    .mobileprocessstepwiseimagesection {
    padding: 0px;
  }

  .mobileprocessstepwiseimagesection .text-section {
    width: 40%;
  }

  .mobileprocessstepwiseimagesection .text-section {
    right: 25%;
  }

  .mobileplatformadvertisementsection .leftcontentsection p,
  .mobileplatformadvertisementsection .rightcontentsection p {
    font-size: 10px;
  }

  .mobileplatformadvertisementsection .leftcontentsection .small-heading,
  .mobileplatformadvertisementsection .rightcontentsection .small-heading {
    font-size: 12px;
  }

  .mobileplatformadvertisementsection .background-image {
    display: none;
  }

  .mobileplatformadvertisementsection .mobile-background-image {
    display: block;
  }

  .mobileplatformadvertisementsection .leftcontentsection {
    left: 20px;
    top: 60px;
    transform: translate(0%, 0%);
  }

  .mobileplatformadvertisementsection .googlepay-image {
    left: 50%;
    bottom: -80%;
    transform: translate(-50%, 150%);
  }

  .mobileplatformadvertisementsection .arrow2-image {
    right: 80%;
    bottom: -200%;
    transform: rotate(180deg);
    top: unset;
    width: 20%;
  }

  .mobileplatformadvertisementsection .appstore-image {
    left: -80px;
    bottom: -180px;
    right: unset;
    top: unset;
    transform: translate(0%, 0%);
    width: 50%;
  }

  .mobileplatformadvertisementsection .rightcontentsection {
    bottom: 28%;
  }

  .mobileplatformadvertisementsection .arrow1-image {
    width: 100px;
  }
  .mobileplatformadvertisementsection .arrow1-image {
    position: absolute;
    left: 150px;
    top: 60px;
    transform: rotate(10deg);
    width: 40%;
  }

  .mobileplatformadvertisementsection .googlepay-image {
    left: 100%;
    top: 300%;
    transform: translate(-50%, 100%);
    width: 50%;
  }

  .gifsection .zenro-gif-section {
    width: 100%;
  }

  .header.scrolled .header-container {
    padding: 10px 25px;
  }

  .advertisementsection {
    display: none;
  }

  .RequestDemo .right-section {
    padding: 20px;
  }

  .RequestDemo .right-section .slice-section-image {
    top: 20px;
    left: 20px;
    width: 20px;
  }

  .RequestDemo .right-section .circle-group-image {
    display: none;
  }

  .hero {
    border-radius: 0px;
  }

  .RequestDemo .modal-content .container {
    padding: 0px;
  }

  .RequestDemo .right-section {
    background-color: #fff;
  }

  .footer .appstore-image-section {
    margin-right: 16px;
    width: 40%;
    object-fit: contain;
  }

  .footer .googleplay-image-section {
    width: 40%;
    object-fit: contain;
  }

  .autoscroll-left {
    animation: scrollLeft 5s linear infinite !important;
  }

  .autoscroll-right {
    animation: scrollRight 5s linear infinite !important;
  }

  .footer .appstoreandplaystorecontainersection {
    align-items: flex-start;
  }

  .banner-image-section {
    margin-top: 60px;
    top: 0px;
  }

  .hero p {
    margin-bottom: 40px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .secondbannersection {
    padding-top: 560px;
  }

  .mockup-zentro-image {
    position: absolute;
    bottom: -28%;
    transform: translate(-50%, 0%);
    left: 50%;
  }

  .secondbannersection {
    padding: 80px 0px;
  }

  .secondbannersection .underline-element-section {
    top: 50%;
    left: 60%;
    width: 50%;
  }

  .secondbannersection .secondbannercontentsection,
  .fourstepprocess .large-heading,
  .allservicesection .large-heading,
  .mobileprocesssection .large-heading {
    width: 100%;
  }

  .supportandguidanceformsection .rightcontentsection .bgelementsection {
    width: 50%;
  }

  .supportandguidanceformsection .rightcontentsection .element1section {
    width: 10%;
  }

  .supportandguidanceformsection .leftcontentsection .element3section {
    width: 15%;
    right: 40px;
    left: unset;
  }

  .supportandguidanceformsection .leftcontentsection .element2section {
    width: 15%;
    right: 40px;
    left: unset;
  }

  .header.scrolled .header-container {
    max-width: 100%;
  }

  .header .header-container {
    max-width: 95%;
  }

  .banner-image-second-section {
    top: -6px;
  }

  .banner-image-second-section .banner-image {
    border: none;
  }

  .zentro-text-image {
    transform: translate(-50%, -50%);
  }

  .hero .banner-image-section .banner-image-div-section,
  .hero .banner-image-second-section .banner-image-div-section {
    padding: 8px !important;
  }

  .supportandguidanceformsection .rightcontentsection .element1section {
    transform: rotate(90deg);
    top: 20px;
  }

  .container,
  .container-sm {
    max-width: calc(100% - 6%);
  }

  .footer .social-links {
    display: none !important;
  }

  #allservicesection {
    padding: 60px 0;
  }

  .allservicesection #news-slider {
    margin-top: 40px;
  }

  .footerrowsection .footer-about .logo-white {
    width: 90px;
  }
}

@media (max-width: 450px) {
  .btn-navigation,
  .btn-navigation:focus {
    padding: 8px;
  }

  .maincontentsection .mockup-zentro-image {
    top: 38%;
  }

  .secondbannersection {
    /* position: static; */
    padding-top: 60px;
  }

  .fourstepprocess {
    padding-top: 200px;
  }

  .mockup-zentro-image {
    bottom: -25%;
  }

  .secondbannersection .underline-element-section {
    width: 65%;
  }

  .testimonialsection .blur-layer {
    width: 100%;
    height: 35%;
    transform: translate(-50%, 10%);
  }

  .mobileplatformadvertisementsection .leftcontentsection p,
  .mobileplatformadvertisementsection .rightcontentsection p {
    font-size: 10px;
  }

  .mobileplatformadvertisementsection .leftcontentsection .small-heading,
  .mobileplatformadvertisementsection .rightcontentsection .small-heading {
    font-size: 12px;
  }

  .mobileplatformadvertisementsection .background-image {
    display: none;
  }

  .mobileplatformadvertisementsection .mobile-background-image {
    display: block;
  }

  .mobileplatformadvertisementsection .leftcontentsection {
    left: 20px;
    top: 30px;
    transform: translate(0%, 0%);
  }

  .mobileplatformadvertisementsection .googlepay-image {
    left: 50%;
    bottom: -80%;
    transform: translate(-50%, 150%);
  }

  .mobileplatformadvertisementsection .arrow2-image {
    right: 60%;
    bottom: -220%;
    transform: rotate(180deg);
    top: unset;
    width: 20%;
  }

  .mobileplatformadvertisementsection .appstore-image {
    left: -50px;
    bottom: -180px;
    right: unset;
    top: unset;
    transform: translate(0%, 0%);
    width: 50%;
  }

  .mobileplatformadvertisementsection .rightcontentsection {
    bottom: 30%;
  }

  .mobileplatformadvertisementsection .arrow1-image {
    width: 100px;
  }
  .mobileplatformadvertisementsection .arrow1-image {
    position: absolute;
    left: 40px;
    top: 70px;
    transform: rotate(10deg);
    width: 40%;
  }

  .mobileplatformadvertisementsection .googlepay-image {
    left: 80%;
    top: 300%;
    transform: translate(-50%, 100%);
    width: 45%;
  }
}

@media (max-width: 398px) {
  .mockup-zentro-image {
    bottom: -23%;
  }

  .mobileplatformadvertisementsection .small-heading {
    font-size: 18px !important;
  }

  .mobileplatformadvertisementsection .arrow1-image {
    width: 30%;
  }

  .mobileplatformadvertisementsection .googlepay-image {
    left: 60%;
    top: 260%;
    transform: translate(-50%, 100%);
    width: 40%;
  }

  .mobileplatformadvertisementsection .arrow2-image {
    bottom: -150%;
    width: 15%;
  }

  .mobileplatformadvertisementsection .appstore-image {
    bottom: -130px;
    width: 40%;
    left: 0px;
  }

  .mobileplatformadvertisementsection .leftcontentsection {
    top: 30px;
  }
}

@media (max-width: 350px) {
  .mobileplatformadvertisementsection .googlepay-image {
    top: 150%;
    width: 35%;
  }
}
