@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    color: #0E101A;
    padding-top: 100px;
    font-size: 1.15rem;
}

.img-full {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

h2 {
    font-size: 3.15rem;
    font-weight: 600;
}

h3 {
    font-size: 2.85rem;
    font-weight: 600
}

h4 {
    font-size: 1.75rem;
    font-weight: 600
}

/* --------------------
   # Primary Header
--------------------- */

.header {
    display: flex;
    align-items: center;
    min-height: 100px;
    background-color: #fff;
    position: relative;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, .1);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 99;

}

.header.nav-up {
    top: -110px;
    transition: .2s;
}

.header .logo {
    width: 260px
}

.header .menu-icon {
    display: none;
    cursor: pointer;
    margin: auto 0;
}

.header .menu-icon .bar {
    width: 24px;
    height: 2px;
    margin: 6px 0;
    background-color: #000;
    transition: transform 0.3s ease
}

.header .menu-icon .bar:nth-child(2) {
    transform: translateX(4px);
    width: 20px;
}

.rotate-down {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.rotate-up {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hide-bar {
    opacity: 0;
}

.header .header-content {
    display: flex;
    justify-content: space-between;
}

.header .header-content .nav-menu {
    display: flex;
    align-items: center;

}

.header .nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.header .nav-menu ul .nav-item {
    padding: 1rem 1.25rem;
}

.header .nav-menu ul li .nav-link {
    font-size: 1.15rem;
    font-weight: 700;
    position: relative;
    font-size: 1.15rem;
    color: #0E101A;


}

.header .nav-menu ul li .nav-link:hover,
.header .nav-menu ul li .nav-link.active {
    color: #0082a8;
}

.header .nav-menu ul li:last-child .nav-link {
    margin-right: 2rem;
}

.header .header-content .nav-btn {
    padding: .7rem 1.4rem;
    font-weight: 700;
    background-color: #fff;
    border-color: #0082a8;
    font-size: 1.15rem;
    border-radius: .35rem;
    border: solid 1px #0082a8;
    color: #0E101A;
}

.header .header-content .nav-btn:hover,
.header .header-content .nav-btn.active {
    background-color: #0082a8;
    color: #fff;
}


/* ---------------------
    # Hero Section
-----------------------*/

.hero-section {
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    overflow-y: hidden;
    position: relative;
    background-color: #0082a8;
}

.hero-section.home {
    background-image: url(../images/hero-bg.webp);
}

.hero-section.send-vouchers {
    background-image: url(../images/send-vouchers.webp);
}

.hero-section.our-work {
    background-image: url(../images/our-work-banner.webp);
}

.hero-section.receive-vouchers {
    background-image: url(../images/receive-vouchers-banner.webp);
}

.hero-section.faqs {
    background-image: url(../images/faq-banner.webp);
}

.hero-section.inner.book-meeting {
    background-image: url(../images/book-meeting-banner.webp);
    min-height: 245px;
}

.hero-section .row {
    align-items: center;
}

.hero-section .hero-content h1 {
    font-size: 5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;

}

.hero-section .hero-content p {
    font-size: 1.45rem;
    font-weight: 400;
    color: #fff;
    padding: .75rem 0 2rem 0;

}

.hero-section .hero-content .hero-btn {
    background-color: #fff;
    color: #0082a8;
    padding: 1rem 2.5rem;
    border-color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

.hero-section .hero-content .hero-btn:hover {
    background-color: transparent;
    color: #fff;
}

.hero-section .hero-image {
    position: absolute;
    right: 0%;
    bottom: 0;
    width: 44%;
}

.hero-section.home {
    min-height: 755px;
}

.hero-section.inner {
    min-height: 670px;
}

.hero-section.inner .hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.35;
    margin: 0;
}

.hero-section.inner .hero-content p {
    font-size: 1.15rem;
}

.hero-section.inner .hero-content .hero-btn {
    background-color: transparent;
    color: #fff;
    padding: 1rem 5.5rem 1rem 2.5rem;
    border-color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
}

.hero-section.inner .hero-content .hero-btn:hover {
    background-color: #fff;
    color: #0082a8;
}

.arrow-icon {
    border: solid white;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: absolute;
    right: 25px;
    top: 50%;
    margin-top: -4px;
}

.processing {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid #0082a8;;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-section.inner .hero-content .hero-btn:hover .arrow-icon {
    border-color: #0082a8;
}

.overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Positioning context */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* Semi-transparent background */
    z-index: 1000; /* Ensure it overlays everything else */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    overflow: auto;
}

/* Styles for popup */
.popup {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Shadow effect */
    width: 41%;
    text-align: center;
    max-height: 92vh;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow-y: auto;
}

/* -------------------------
    # Send Voucher Steps
---------------------------*/

.sendvoucher-steps {
    padding: 7rem 0;
    display: flex;
    align-items: center;
    position: relative;
    background: #f8f6f6;
    font-size: 1.25rem;

}

.sendvoucher-steps:before {
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/pattern-left.webp);
    content: '';
    width: 100%;
    height: 100%;
    z-index: 0;
    background-repeat: no-repeat;
}

.sendvoucher-steps:after {
    position: absolute;
    right: 0;
    top: 0;
    background: url(../images/wave-right.webp);
    content: '';
    width: 100%;
    height: 100%;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: right top;
}

.sendvoucher-steps .section-header h2 {
    padding-bottom: 1rem;
}


.section-header {
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
}

.section-header p:last-child {
    padding-top: 1rem;
}

.sendvoucher-steps .steps-wrapper {
    padding-top: 4rem;
    padding-bottom: 1rem;
}

.sendvoucher-steps .steps-wrapper .step-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.12);
}

.sendvoucher-steps .steps-wrapper .step-item img {
    max-width: 140px;
    margin: 0 auto;
}

.sendvoucher-steps .steps-wrapper .step-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 3rem 0 0 0;
    min-height: 104px;
}

.sendvoucher-steps .steps-wrapper .step-item p {
    font-size: 1rem;
    color: #444444c7;
    line-height: 1.5;
}


/* ----------------------
    # Service Category
------------------------ */
.service-category {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
}

.service-category .category-img {
    position: absolute;
    top: 0;
    background-position: center;
    background-size: cover;
    height: 100%;
}

.service-category.for-brands .category-img {
    background-image: url(../images/for-brands-img.webp);
    left: 0;
}


.service-category.for-consumers .category-img {
    background-image: url(../images/for-consumers-img.webp);
    right: 0;
}


.service-category.voucher-due .category-img {
    background-image: url(../images/vs-thumb.webp);
    left: 0;
}

.service-category.have-ques .category-img {
    background-image: url(../images/need-help-thumb.webp);
    right: 0;
}

.service-category.voucher-due ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-category.voucher-due ul li {
    padding: 0 0 1rem 2.3rem;
    position: relative;
}

.service-category.voucher-due ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 24px;
    height: 24px;
    background: url(../images/check-mark.svg);
    background-size: 100%;
}


.service-category .pleft {
    padding-left: 6rem
}


.service-category .pright {
    padding-right: 6rem
}

.service-category .category-text p {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-top: 1.5rem;
}

.service-category h3 {
    padding-bottom: 1rem;
}


.service-category .btn-primary {
    background-color: #0082a8;
    font-size: 1.15rem;
    padding: .75rem 2.5rem;
    margin-top: 1.5rem;
    border: 0;
    font-weight: 600;
}

.service-category .btn-primary:hover {
    background-color: #00b3ea;
    border-color: #00b3ea;
}


/* ------------------
    # Get-In-Touch
--------------------- */
.get-in-touch {
    display: flex;
    align-items: center;
    min-height: 600px;
    background-image: url(../images/get-in-touch-bg.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.get-in-touch .section-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.get-in-touch .section-content h2 {
    color: #fff;
    font-weight: 600;
}

.get-in-touch .section-content p {
    font-size: 1.35rem;
    color: #fff;
    line-height: 1.5;
    padding: 2rem 0 3rem 0;
}

.get-in-touch .section-content .btn-white {
    padding: 1rem 3rem;
    color: #0082a8;
    background-color: #fff;
    font-size: 1.25rem;
    border-color: #fff;
    font-weight: 600;
}

.get-in-touch .section-content .btn-white:hover {
    background-color: transparent;
    color: #fff;
}


/* ------------------
  # Our Customer 
------------------- */
.our-customers {
    padding: 7rem 0 5rem 0;
    background-color: #f8f6f6;
}

.our-customers .customers-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;
}

.our-customers .customers-row:last-child {
    padding-top: 16px;
}

.our-customers .customer-item {
    flex-basis: 100%;
    padding: 2rem .75rem;
    max-width: 200px;
    text-align: center;
}

.our-customers h2 {
    padding-bottom: 4rem;
}

.our-customers .santander-logo {
    width: 266px;
}

.our-customers .hastings-logo {
    width: 156px;
}

.our-customers .lv-logo {
    width: 121px;
}

.our-customers .gocompare-logo {
    width: 220px;
}

.our-customers .uswitch-logo {
    width: 160px;
}

.our-customers .nerdwallet-logo {
    width: 266px;
}

.our-customers .first-direct-logo {
    width: 220px;
}

.our-customers .confused-logo {
    width: 220px;
}

.our-customers .swinton-logo {
    width: 148px;
}

.our-customers .firstcentral-logo {
    width: 205px;
}



/* ----------------
  # Footer CSS 
------------------*/

.footer {
    background-color: #0082a8;
    padding: 7rem 0 0 0;
}


.footer .footer-logo {
    width: 260px;
    height: auto;
}


.footer p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.5;
    padding-top: 1.5rem;
}

.footer .footer-menu h5 {
    font-size: 1.5rem;
    color: #ffffffcc;
    font-weight: bold;
    line-height: 1.2;
    position: relative;
}

.footer .footer-menu h5::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 24px;
    height: 2px;
    background-color: #80c1d4;
}

.footer .footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 2.5rem;
}

.footer-menu ul li {
    padding-bottom: 1rem;
}

.footer-menu ul li a {

    color: rgba(255, 255, 255, .75);
    position: relative;
}

.footer-menu ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: #80c1d4;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) .5s;
}

.footer-menu ul li a:hover:before {
    width: 100%;
}

/* FOOTER MIDDLE BLOCK */
.footer .copy-block {
    background-color: #1a8fb1;
    padding: 1.25rem 0;
    margin-top: 5rem;
}

.footer .copy-block .row {
    display: flex;
    align-items: center;
}

.footer .copy-block a {
    color: rgba(255, 255, 255, .7);

}

.footer .copy-block a:hover {
    text-decoration: underline;
}

.footer .copy-block span {
    color: #50b0cc;
    padding: 0 .5rem;
}

/* Social Links Block */
.footer .social-links {
    display: flex;
    justify-content: end;
}

.footer .social-links ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .social-links ul li a {
    color: #0082a8;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100px;
    font-size: 1.25rem;
    margin-left: .5rem;
    position: relative;
    transition: .3s;
    z-index: 2;
}

.footer .social-links ul li img {
    width: 24px;
}

.footer .social-links ul li a:hover {
    background-color: rgba(255, 255, 255, .5)
}

.footer .copyright {

    color: rgba(255, 255, 255, .7)
}

.subtitle {
    color: #00b3ea;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 1rem;
    display: block;
    letter-spacing: .02rem;
}


/* ---------------------------
    VoucherSent Work Section
------------------------------*/
.vouchersent-work {
    min-height: 930px;
}

.vouchersent-work .section-header {
    max-width: 900px;
}

.vouchersent-work .section-header p {
    font-size: 21px;
}


/* ------------------------------
    VoucherSent Delivers Section
---------------------------------*/

.vouchersent-delivers {
    padding: 7.5rem 0;
}

.vouchersent-delivers h2 {
    padding-bottom: 1rem;
}

.vouchersent-delivers .section-header p {
    padding: 0;
}

.vouchersent-delivers .deliver-item-wrapper {
    padding-top: 70px;
}

.deliver-item-wrapper .deliver-item .item-text {
    padding: 24px 16px 0
}

.deliver-item-wrapper .deliver-item .img-full {
    border-radius: 10px;
}

.deliver-item-wrapper .deliver-item .item-text h3 {
    font-size: 20px;
    color: #0082a8;
    font-weight: bold;
    line-height: 1.2;

}

.deliver-item-wrapper .deliver-item .item-text p {
    font-size: 1rem;
}


/* --------------------------
    Voucher-Sent Features
--------------------------- */
.vouchersent-features {
    background-image: url(../images/vouchersent-feature-bg.webp);
    background-size: cover;
    background-position: center;
    padding: 8rem 0 7rem 0;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
}

.vouchersent-features .feature-text p {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.vouchersent-features .feature-text .feature-btn {
    padding: 1rem 5rem 1rem 2rem;
    background-color: #0082a8;
    font-size: 21px;
    display: flex;
    align-items: center;
    max-width: fit-content;
    margin-top: 60px;
    color: #fff;
    font-weight: 600;
    position: relative;
}

.vouchersent-features .feature-text .feature-btn:hover {
    background-color: #01607c
}

.vouchersent-features .feature-box {
    padding: 2.5rem 1.5rem;
    margin-bottom: 1.5rem;
    min-height: 360px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.12);
}

.feature-box-wrapper .feature-box img {
    width: 48px;
    height: auto;
}

.vouchersent-features .feature-box h4 {
    padding: 1rem 0;
}

/* ---------------------------
    Customer Work Section 
---------------------------- */

.customers-work-section {
    padding: 100px 0;
}

.customers-work-section .customer-detail {
    margin-bottom: 100px;
}

.customers-work-section .customer-detail:last-child {
    margin-bottom: 0;
}

.customers-work-section .customer-detail .row {
    align-items: center;
}

.customers-work-section .customer-detail .img-full {
    max-width: 270px;
}

.customers-work-section .customer-detail h2 {
    font-size: 36px;
    color: #222222;
    font-weight: bold;
    padding-bottom: 16px;
}

.customers-work-section .customer-detail .full-text {
    max-height: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 16px;
    color: #222222cc;
    line-height: 1.5;
}

.customers-work-section .customer-detail .full-text.expanded {
    max-height: none;
    -webkit-line-clamp: initial;
}

.customers-work-section .customer-detail .view-more-btn {
    font-size: 16px;
    font-weight: 600;
    color: #00b3ea;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: 0;
    background-color: transparent;
    transition: .3s;
}

.customers-work-section .customer-detail .view-more-btn:hover {
    color: #1a8fb1;
}

.casestudy-section {
    background-color: #f6f6f6;
    padding: 5rem 0;
}

.casestudy-section .cs-block {
    background-color: #fff;
}


/* ------------------
    FAQ SECTION 
--------------------*/

.faq-section {
    padding: 60px 0 100px 0;
}

.faq-section .faq-item {
    padding: 2rem 0 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.faq-section .faq-item:last-child {
    border-bottom: 0;
}

.faq-section .faq-item h5 {
    font-size: 1.5rem;
    color: #0082a8;
    font-weight: bold;
    line-height: 1.2;
}

.faq-section .faq-item p {
    font-size: 1rem;

}

.faq-section .faq-item p>a {
    color: rgba(0, 129, 168, 0.8);
    font-weight: 600;
}

/* ------------------
    BOOK-A-MEETING SECTION 
--------------------*/

.book-meeting-section {
    padding: 100px 0 160px 0;
}


.book-meeting-section .book-meeting-left h2 {
    font-size: 50px;
    color: #2e1515;
    font-weight: bold;
    line-height: 1.2;
}

.book-meeting-section .book-meeting-left p {
    font-size: 18px;
    color: #555555;
    line-height: 1.5;
    padding-top: 16px;
}

.looking-voucher-section {
    border: 1px solid #ccc;
    margin-top: 10px;
    padding: 10px;
}

.book-meeting-section .looking-voucher-section h4 {
    font-size: 20px;
    color: #2e1515;
    font-weight: bold;
    line-height: 1.2;
}

.book-meeting-section .looking-voucher-section p {
    font-size: 16px;
    color: #555555;
    line-height: 1.5;
    padding-top: 16px;
    font-weight: 500;
}

.book-meeting-section .book-meeting-right {
    padding: 0px 60px 0 90px;
    border-left: 1px solid #e0e0e0;
    margin-left: 70px;
}

.book-meeting-right form p {
    font-size: 24px;
    color: #2e1515;
    font-weight: 500;
    padding-bottom: 6px;
}
.book-meeting-right form .form-control {
    color: #333;
    padding: 16px 20px;
    border: 1px solid #0082a8;
    background-color: #f8f8f8;
}

.book-meeting-right form .form-check>label {
    font-size: 16px;
    color: #666;
    margin-left: 8px;
}

.book-meeting-right form .form-check>label>a {
    text-decoration: underline;
    color: #0082a8;
}

.book-meeting-right form .form-check .form-check-input {
    border-radius: 3px;
    border: 2px solid #010101;
    background-color: #fff;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.book-meeting-right form .form-check .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}


.book-meeting-section .book-meeting-right .btn.form-btn {
    background-color: #0082a8;
    padding: 12px 46px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-top: 60px;
}


.book-meeting-section .book-meeting-right .btn.form-btn:hover {
    background-color: #01607c;
}


.privacy-section {
    padding: 4rem 0;
    font-size: 1rem;
}

.privacy-header {
    padding: 1rem 0;
    background-color: #0082a8;
}

.privacy-header h1 {
    padding: 3rem 0;
    font-size: 3rem;
    font-weight: 600;
    padding-bottom: 1.5rem;
    color: #fff;
}

.privacy-section h2 {
    font-size: 2.5rem;
    padding-bottom: 1rem;
    padding-top: 1.5rem
}

.privacy-section h3 {
    font-size: 2rem;
    padding-bottom: 1rem;
    padding-top: 1.5rem
}

.privacy-section ul li {
    padding-bottom: .35rem;
}


@media screen and (max-width:1199px) {

    .hero-section.home {
        min-height: auto;
    }

    .header .nav-menu ul li .nav-link {
        margin-right: 2rem;
    }

    .header .nav-menu ul li:last-child .nav-link {
        margin-right: 1.5rem;
    }

    .sendvoucher-steps .steps-wrapper {
        padding-top: 3.75rem;
    }

    .sendvoucher-steps .steps-wrapper .step-item {
        margin: .75rem 0;
    }

    .service-category.for-brands .category-text {
        padding-left: 3.75rem;
    }

    .service-category.for-consumers .category-text {
        padding-right: 3.75rem;
    }

    .header .header-content .nav-menu.show-menu {
        opacity: 1;
        visibility: visible;
        border-top: 1px solid #ccc;
        transition: .3s;
    }

    .header .header-content .nav-menu {
        display: block;
        position: absolute;
        right: 0;
        left: 0;
        top: 100%;
        background-color: #fff;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0px 10px 5px 5px rgba(0, 0, 0, 0.12);
    }

    .header-content .nav-menu ul {
        display: block;
        margin: 0;
        padding: 0;
        text-align: left;
    }

    .header .nav-menu ul li .nav-link {
        margin-right: 0;
    }

    .header .nav-menu ul li:last-child .nav-link {
        margin-right: 0;
    }

    .header .menu-icon {
        display: block;
    }

    .hero-section {

        min-height: auto;
        padding: 4rem 0;
        height: auto;
    }

    .sendvoucher-steps {
        padding: 3.75rem 0;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .sendvoucher-steps .steps-wrapper {
        padding-top: 2.5rem;
    }

    .sendvoucher-steps .steps-wrapper .step-item h3 {
        min-height: auto;
    }

    .sendvoucher-steps {
        overflow: hidden;
    }

    .sendvoucher-steps:after {
        right: -50%;
        top: 0;
        background-position: -110px -60px;
    }

    .sendvoucher-steps:before {
        left: -50%;
        top: 0;
        background-position: 100px -10px;
    }


    .hero-section .hero-content h1 {
        font-size: 4rem;
    }

    .hero-section .hero-image {
        position: absolute;
        right: 0%;
        bottom: 0;
        width: 450px;
    }

    .header .nav-menu ul .nav-item {
        border-bottom: solid 1px #eee;
    }

    .service-category .pleft {
        padding-left: 4rem;
    }

    .service-category .pright {
        padding-right: 4rem;
    }


    .service-category.voucher-due .category-img {
        background-position: right;
    }
}


@media(max-width:991px) {

    .service-category .category-img {
        position: relative;
        max-width: 100%;
        min-height: 600px;
        margin-bottom: 1.5rem;
    }

    .service-category.for-brands .category-text,
    .service-category.for-consumers .category-text {
        padding: 3rem 0;
    }

    .service-category {
        display: block;
        padding-bottom: 3.5rem;
    }

    .service-category .category-img {
        min-height: 450px;
    }

    h2 {
        font-size: 2.15rem;
    }

    h3 {
        font-size: 1.85rem;
    }

    .get-in-touch .section-content {
        padding: 1rem;
    }

    .footer-menu {
        padding-top: 2rem;
    }

    .hero-section .hero-content h1 {
        font-size: 3rem;
    }

    .hero-section .hero-image {

        width: 350px;
    }

    .hero-section .hero-content p {
        font-size: 1rem;
    }

    .hero-section.inner .hero-content h1 {
        font-size: 3rem;
    }

    .vouchersent-delivers .deliver-item {
        padding-bottom: 2rem;
    }

    .vouchersent-features .feature-box {
        min-height: auto;
    }

    .book-meeting-section .book-meeting-right {
        padding: 0;
        margin-left: 0;
        margin-top: 32px;
        border-left: 0;
    }

    .service-category .pleft {
        padding-left: 0;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .service-category .pright {
        padding-right: 0;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .vouchersent-delivers,
    .vouchersent-features {
        padding: 3.5rem 0;
    }

    .hero-section.inner {
        min-height: auto;
    }
    .popup {
        width: 80%;
    }
}


@media(max-width:767px) {
    .our-customers .santander-logo,
    .our-customers .hastings-logo,
    .our-customers .hastings-logo,
    .our-customers .lv-logo,
    .our-customers .gocompare-logo,
    .our-customers .uswitch-logo,
    .our-customers .nerdwallet-logo,
    .our-customers .first-direct-logo,
    .our-customers .confused-logo,
    .our-customers .swinton-logo,
    .our-customers .firstcentral-logo {
        width: 100%;
    }

    .hero-section .hero-content h1 {
        font-size: 3rem;
    }

    .sendvoucher-steps:after {
        display: none;
    }

    .service-category .category-img {
        min-height: 550px;
    }

    .block-left {
        text-align: center;
        padding-top: 2rem;
    }

    .hero-section .hero-image {
        width: 280px;
    }

    .footer .social-links {
        justify-content: center;
    }

    .hero-section .hero-content h1 {
        font-size: 2rem;
    }

    .service-category h3 {
        font-size: 2.5rem;
    }

    .footer .copy-block {

        text-align: center;
    }

    .footer .copyright {
        color: rgba(255, 255, 255, .7);
        padding-top: 3rem;
        text-align: center;
        padding-bottom: 2rem;
    }
    .popup {
        width: 80%;
    }
}


@media (max-width: 575px) {
    .hero-section .hero-content h1 {
        font-size: 3rem;
    }

    .hero-section .hero-content p {
        font-size: 1.25rem;
    }

    .service-category .category-img {
        min-height: 250px;

    }


    .hero-section .hero-image {
        display: none;
    }

    .our-customers {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .faq-section .faq-item {
        padding: 32px 0;
    }

    .book-meeting-section {
        padding: 70px 0 100px 0;
    }

    .book-meeting-section .book-meeting-left h2 {
        font-size: 30px;
    }

    .book-meeting-section .book-meeting-left p {
        font-size: 16px;
        padding-top: 8px;
    }

     .book-meeting-section .looking-voucher-section h4 {
        font-size: 20px;
    }

    .book-meeting-section .looking-voucher-section p {
        font-size: 14px;
        padding-top: 8px;
    }

    .book-meeting-right form p {
        font-size: 20px;
    }

    .book-meeting-section .book-meeting-right {
        margin-top: 24px;
    }

    .book-meeting-section .book-meeting-right .btn.form-btn {
        margin-top: 40px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-section.inner.book-meeting {
        padding: 0;
        background-position: 630px 0;
    }

    .hero-section.send-vouchers {
        background-position: 1000px 0;
    }

    .hero-section.receive-vouchers {
        background-position: 680px 0;
    }

    .hero-section.inner .hero-content .hero-btn {
        padding: 1rem 3.25rem 1rem 1rem;
        font-size: 1.15rem;

    }

    .privacy-section h2 {
        font-size: 1.75rem;
    }
    .popup {
        width: 80%;
    }
}