section {
    padding: 40px 70px;
}

.hero-container {
    position: relative;
    height: calc(100vh - var(--header-height));
}

.hero-container .hero-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-container .hero-banner img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.hero-container .container {
    position: relative;
    z-index: 1;
    max-width: 865px;
    width: 100%;
    padding: 0;
}

.hero-container h2 {
    color: #FFFFFF;
    font-size: 120px;
    line-height: 1.1;
    margin: 0;
    font-weight: normal;
    letter-spacing: -5px;
}

.hero-container .big-text .title-text {
    transition: all 1s;
}

.hero-container .big-text.animate .title-text:nth-child(2) {
    margin-left: 100px;
}

.hero-container .big-text.animate .title-text:nth-child(3) {
    margin-left: 200px;
}

.hero-container h2.blue {
    color: #fff;
}

.hero-container .small-text p {
    color: #fff;
    font-size: 18px;
    transition: all 1s;
}

.container .pc-button
{
    transition: all 1s;
}

.hero-container .small-text.animate p, .container .pc-button.animate
{
    margin-left:200px;
} 
.hero-container .pc-button {
    border-color: #fff;
}

.hero-container .pc-button::before {
    background-color: #fff;
}

.hero-container .pc-button span {
    color: #fff;
}

.hero-container .pc-button:hover {
    background-color: #fff;
}

.hero-container .pc-button:hover span {
    color: #000;
}

.possibilities-container {
    background-color: #fff;
}

.possibilities-container h2 {
    color: var(--main-blue);
    margin-bottom: 10px;
    letter-spacing: -2.3px;
}

.possibilities-container .cards .card h3 {
    margin-bottom: 8px;
    letter-spacing: -0.7px;
    color: var(--main-blue);
}

.possibilities-container .support.max-width > h3
{
    letter-spacing: -0.7px;
}

.possibilities-container > .cards
{
    margin: 100px 0;
}

.possibilities-container .support .types .container .description p {
    margin: 0;
    font-size: 19px;
    font-family: 'Poppins-Medium';
    letter-spacing: -0.7px;
    color: #fff;
}

.possibilities-container .cards .flex-1 {
    min-width: 350px;
}

.support {
    border-top: 1px solid #D5D5D5;
}

.support .types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: var(--gap);
}

.support .type {
    justify-content: flex-start;
    align-items: flex-start;
    background-color: var(--main-blue);
}

.support img {
    height: 41px;
    width: auto;
    margin-bottom: 30px;
}

.support .type h3 {
    font-size: 27px;
}

.support .type .description {
    font-family: 'Poppins-Medium';
    font-size: 19px;
}

.topups-container {
    background-color: var(--main-apricot);
    padding-bottom: 0;
}

.topups-container > .max-width > h2
{
    letter-spacing: -2.3px;
}
.topups-container .white {
    color: var(--main-blue);
    margin-bottom: 0;
}

.topups-container .blue {
    color: var(--main-blue);
    margin: 0 0 50px 0;
}

.topups-container .subtitle p {
    color: #000;
}

.topups-container .methods {
    padding-bottom: 0;
}

.topups-container .method .method-card
{
    position: relative;
    right: 300px;
}

.topups-container .method {
    border-left: 1px solid var(--main-blue);
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 75px;
    overflow: hidden;
    max-width: 370px;
}

.topups-container .method img {
    height: 50px;
}

.topups-container .method p {
    font-family: 'Poppins-Medium';
    font-size: 20px;
}

.solutions-container {
    background-color: #fff;
    padding-bottom: 0;
    padding-top: 80px;
}

.solutions-container h2.green {
    color: var(--main-blue);
    margin: 0;
    line-height: 1;
}


.solutions-container > .max-width .subtext > p {
    margin-bottom: 40px;
}

.solutions-container h2.gold {
    color: var(--main-blue);
    margin: 0;
}

.solutions-container .navigation .tab {
    font-size: 17px;
    font-family: 'Poppins-Regular';
    text-transform: capitalize;
    padding: 50px 0 2px;
    opacity: 40%;
    cursor: pointer;
    transition: all 300ms ease;
    border-bottom: 2px solid #FFF;
}

.solutions-container .navigation .tab.active,
.solutions-container .navigation .tab:hover {
    opacity: 1;
}

.solutions-container .navigation {
    border-top: 1px solid #D5D5D5;
    column-gap: 30px;
    position: relative;
}

.solutions-container .navigation .gold-line {
    position: absolute;
    width: auto;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--main-blue);
    transition: all 500ms ease;
}

.solutions-container .for-business {
    display: none;
    column-gap: 40px;
    grid-template:  'a a d' auto
                    'b b d' auto
                    'c c d' auto / 1fr 1fr 1fr;
}

.solutions-container .for-business.active {
    display: grid;
}

.solutions-container .for-business h3 {
    grid-area: a;
}

.solutions-container .description {
    grid-area: b;
}

.solutions-container .description {
    font-family: 'Poppins-Regular';
    font-size: 17px;
    color: var(--foreground-color);
}

.solutions-container .for-business .steps {
    grid-area: c;
    column-gap: 45px;
}

.solutions-container .for-business .step {
    text-align: center;
    position: relative;
    width: 20%;
}

.solutions-container .for-business .step .image {
    position: relative;
    z-index: 2;
}

.solutions-container .for-business .step .image img {
    position: relative;
    z-index: 2;
}

.solutions-container .for-business .step:not(:last-child) .image::after {
    content: '';
    border-bottom: 1px solid #000;
    width: 120px;
    position: absolute;
    top: 50%;
    left: 90%;
    transform: translateY(-50%);
    z-index: 1;
}

.solutions-container .for-business .step:last-child::after {
    display: none;
}

.solutions-container .for-business .benefits {
    grid-area: d;
    position: relative;
}

.solutions-container .benefit {
    position: relative;
    overflow: hidden;
}

.solutions-container .for-business .benefit .benefit-text
{
    position: relative;
    right: 400px;
}
.solutions-container .benefits img {
    position: absolute;
    top: 0;
}

.solutions-container .benefits h4 {
    font-size: 19px;
    margin: 0;
    line-height: 1.2;
    padding-bottom: 10px;
    padding-left: 34px;
    margin-left: 6px;
    border-left: 1px solid var(--main-blue);
}

.solutions-container .benefits .description {
    padding-left: 34px;
    margin-left: 6px;
    border-left: 1px solid var(--main-blue);
    padding-bottom: 20px;
}

.benefit:last-child .description {
    padding-bottom: 60px;
}

.solutions-container .for-customer {
    display: none;
    column-gap: 40px;
    grid-template:  'a a c' 15%
                    'b b c' auto
                    'b b c' auto / 1fr 1fr 1fr;
}

.solutions-container .for-customer.active {
    display: grid;
}

.solutions-container .for-customer h3 {
    grid-area: a
}

.solutions-container .for-customer .description {
    grid-area: b;
}

.solutions-container .for-customer .benefits {
    grid-area: c;
}

.solutions-container > div:nth-child(2) {
    padding-bottom: 0;
}

.contact-container {
    position: relative;
    background-color: var(--main-blue);
}

.contact-container > div {
    position: relative;
}

.contact-container h2.gold-header {
    color: #fff;
    margin: 0;
}

.contact-container h2.blue-header {
    color: #fff;
    margin: 0 0 50px 0;
}

.contact-container .contact-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-container .contact-banner img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.contact-container .inner {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 100px;
}

.contact-container .pc-button {
    border-color: #fff;
}

.contact-container .pc-button span {
    color: #fff;
}

.contact-container .pc-button::before {
    background-color: #fff;
}

.contact-container .pc-button:hover {
    background-color: #fff;
}

.contact-container .pc-button:hover span {
    color: #000;
}


.browse-series .swiper-slide:hover {
    opacity: 1;
}

.possibilities-container > h2.active,
.possibilities-container > p.active,
.possibilities-container .cards .card h3.active,
.possibilities-container .cards .card > div.active {
    transform: translateY(0);
    opacity: 1;
}

.possibilities-container > h2,
.possibilities-container > p,
.possibilities-container .cards .card h3,
.possibilities-container .cards .card > div {
    transform: translateY(60px);
    opacity: 0;
}

.possibilities-container > h2,
.possibilities-container > p,
.possibilities-container .cards .card:first-child h3,
.possibilities-container .cards .card:first-child > div {
    transition: opacity 400ms, transform 400ms;
}

.possibilities-container .cards .card:nth-child(2) h3,
.possibilities-container .cards .card:nth-child(2) > div {
    transition: opacity 800ms, transform 800ms;
}

.possibilities-container .cards .card:last-child h3,
.possibilities-container .cards .card:last-child > div {
    transition: opacity 1200ms, transform 1200ms;
}

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

    .hero-container .big-text.animate .title-text:nth-child(2) {
        margin-left: 10px;
    }
    
    .hero-container .big-text.animate .title-text:nth-child(3) {
        margin-left: 20px;
    }

    .hero-container .small-text.animate p, .container .pc-button.animate {
        margin-left: 20px;
    } 

    .solutions-container .for-business,
    .solutions-container .for-customer {
        grid-template:  'a a'
                        'b b'
                        'c c'
                        'd d';
    }

    .support .types {
        grid-template-columns: 1fr;
        row-gap: var(--gap);
    }
}

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

    section {
        padding: 40px 20px;
    }

    section h2 {
        font-size: 35px;
        line-height: 1.2;
    }

    .hero-container {
        display: flex;
        align-items: center;
    }

    .hero-container .container {
        width: 100%;
        max-width: unset;
        top: 4%;
    }

    .hero-container h2 {
        font-size: 50px;
    }

    .hero-container .small-text {
        margin: 0;
        
    }

    .hero-container .small-text p{
        font-size: 14px;
    }

    .hero-container .pc-button {
        background-color: var(--main-blue);
        padding: 10px 35px; 
    }

    .hero-container .pc-button span {
        color: #fff;
        font-size: 10px;
    }

    .possibilities-container h2 {
        font-size: 35px;
        letter-spacing: -0.7px;
    }

    .possibilities-container p {
        font-size: 14px;
    }

    .possibilities-container .cards .flex-1 {
        flex: auto;
        min-width: unset;
    }

    .possibilities-container .left-side img {
        width: 40%;
        margin: 40% auto 0 auto;
        padding: 50px 0;
    }

    .possibilities-container .support .types .container {
        padding: 30px 15px;
        margin-bottom: 15px;
    }

    .possibilities-container .support .types .container .description p {
        font-size: 12px;
    }

    .possibilities-container .support img {
        width: 30px;
        margin-bottom: 0;
    }
    
    .possibilities-container h2 {
        margin: 0;
    }

    .possibilities-container > .container {
        padding: 0;
    }

    .possibilities-container .right-side {
        padding: 95px 0 45px 0;
        max-width: 100%;
        overflow: hidden;
    }

    .possibilities-container .right-side::-webkit-scrollbar {
        display: none;
    }

    .possibilities-container .card h3 {
        font-size: 20px;
        text-align: center;
    }

    .possibilities-container .card p {
        font-size: 14px;
        text-align: center;
    }

    .possibilities-container .support {
        padding-top: 60px;
    }

    .support.container {
        padding: 50px 0;
    }

    .support h3 {
        margin: 0;
        padding: 0 0 15px;
        font-size: 20px;
    }

    .support .type {
        flex-direction: row;
        column-gap: var(--gap);
    }

    .support .types {
        padding-bottom: 45px;
    }

    .support img {
        height: 20px;
    }

    .support .type {
        justify-content: flex-start;
        align-items: center;
    }


    .topups-container .max-width:first-child {
        margin-top: 50%;
        margin-bottom: 20%;
    }

    .topups-container .max-width > h2 {
        letter-spacing: -0.7px;
        margin-bottom: 0;
    }

    .topups-container .max-width .subtitle p {
        margin-top: 5px;
        line-height: normal;
        font-size: 14px;
    }

    .topups-container .blue {
        margin-left: 0;
    }

    .topups-container .method {
        transform: translateX(calc(-100% - 50px));
        transition: all 450ms ease;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .topups-container .method img {
        height: 30px;
    }
    
    .topups-container .method:nth-child(2) {
        transition-delay: 450ms;
    }

    .topups-container .method:nth-child(3) {
        transition-delay: 900ms;
    }

    .topups-container .method.active {
        transform: translateX(0);
    }

    .topups-container .method:last-child {
        padding-bottom: 50px;
    }

    .topups-container .method p {
        font-size: 20px;
        margin-top: 0;
        letter-spacing: -0.1px;
    }

    .topups-container .method .method-card {
        padding-left: 15px;
    }

    .solutions-container .for-business .steps {
        max-width: 100%;
        overflow: auto;
        flex-direction: column;
        row-gap: 40px;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    .solutions-container .for-business .step:not(:last-child) .image::after {
        display: none;
    }

    .solutions-container .for-business .steps::-webkit-scrollbar {
        display: none;
    }

    .solutions-container .for-business .step {
        width: 100%;
    }

    .solutions-container .for-business .step .image::after {
        transform: translateX(60px);
    }

    .solutions-container .max-width:first-child {
        padding-top: 30px;
    }

    .solutions-container .max-width:first-child h2 {
        letter-spacing: -1.7px;
    }

    .solutions-container .max-width:first-child .subtext p {
        font-size: 14px;
        letter-spacing: -0.1px;
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .solutions-container .navigation {
        column-gap: 20px;
    }

    .solutions-container .navigation .tab {
        padding: 20px 0 0px;
        font-size: 14px;
    }

    .solutions-container .for-business h3, .solutions-container .for-customer h3 {
        font-size: 20px;
        margin-top: 50px;
        margin-bottom: 25px;
        letter-spacing: -0.7px;
    }

    .solutions-container .for-business > .description p, .solutions-container .for-customer > .description p {
        margin-top: 0;
        font-size: 14px;
        letter-spacing: 0.1px;
    }

    .solutions-container .for-business .steps .step .description p {
        font-family: 'Poppins-Regular';
        font-size: 11px;
        
    }

    .solutions-container .benefits .description {
        font-size: 14px;
        padding-left: 25px;
        padding-bottom: 40px;
    }

    .solutions-container .benefits .benefit h4 {
        padding-left: 25px;
        padding-bottom: 5px;
    }
    .contact-container {
        padding-top: 50%;
        padding-bottom: 35%;
    }

    .contact-container h2 {
        font-size: 35px;
        letter-spacing: -2px;
    }

    .contact-container h2.blue-header {
        margin: 0 0 10px 0;
    }

    .contact-container .pc-button {
        background-color: var(--accent-color);
        padding: 10px 30px;
    }

    .contact-container .pc-button span {
        color: #F6F3EB;
        font-size: 10px;
    }

    .possibilities-container > .cards {
        margin: 0;
    }


    .topups-container .methods {
        flex-wrap: wrap;
    }

    .possibilities-container > h2,
    .possibilities-container > p,
    .possibilities-container .cards .card h3,
    .possibilities-container .cards .card > div {
        transform: translateY(0);
        opacity: 1;
    }
}