.affiliateLandingPage section.header {
    flex-direction: column;
    justify-content: flex-start;
    height: 200px;
}

.affiliateLandingPage section.header h1 {
    font-size: 40px;
    font-weight: 800;
}

.primary {
    color: var(--primary);
}

.secondary {
    color: var(--secondary);
}

.accent {
    color: var(--accent);
}

.white {
    color: #FFFFFF;
}

.affiliateLandingPage .mainContainer .sectionTop .sectionTopImage .affiliateButton {
    display: none;
}

.affiliateLandingPage .mainContainer .sectionTop .sectionTopImage .heroImage {
    width: 186px;
}

.affiliateLandingPage .mainContainer .sectionTop .sectionTopImage .heroImage img {
    width: 100%;
}

.affiliateButton button {
    font-size: 30px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: 4px 4px 4px 0 #A67CF3;
}

.sectionTitle {
    text-align: center;
    font-size: 50px;
    font-weight: 800;
}

.aboutSection {
    margin-bottom: 120px;
}

.aboutSection p {
    font-size: 24px;
    font-weight: 400;
    text-align: right;
}

.affiliateLandingPage .mainContainer .aboutSection .affiliateButton {
    display: block;
    padding: 10px 20px;
    margin-top: 20px;
}

.winwin {
    margin-bottom: 70px;
}

.winwin img {
    width: 280px;
}

.itemsRow {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 54px;
}

.itemsRow .itemDiv {
    margin-bottom: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.itemsRow .itemDiv .itemImage {
    width: 220px;
    height: 220px;
}

.itemsRow .itemDiv .itemText {
    text-align: right;
    font-size: 28px;
    font-weight: 700;
}

.middleSection {
    margin-top: 100px;
}

.middleSection .itemsRow {
    margin-top: 48px;
}

.middleSection .itemsRow .itemDiv img {
    width: 68px;
    margin-left: 20px;
}

.middleSection .itemsRow .itemDiv .text {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
}

.stagesSection {
    background: linear-gradient(107deg, #662E87 11.53%, #027ACA 63.58%);
    padding: 80px 0px 170px 0px;
    position: relative;
    margin-bottom: 200px;
}

.stagesSection  .itemsRow {
    align-items: flex-end;
}

.stagesSection .itemsRow.fourItems .itemDiv {
    flex-direction: column;
    width: unset;
    position: relative;
    justify-content: flex-end;
}

.stagesSection  .itemsRow .itemDiv .stageImage {
    width: 170px;
    height: 170px;
}

.stagesSection  .itemsRow .itemDiv .stageImage img {
    width: 100%;
}

.stagesSection  .itemsRow .itemDiv img {
    width: 65px;
}

.stagesSection  .itemsRow .itemDiv .title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.stagesSection  .itemsRow .itemDiv .text {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    height: 60px;
}

.stagesSection  .itemsRow .itemDiv .arrowDiv {
    position: absolute;
    bottom: 120px;
    right: calc(50% + 35px);
    width: 140px;
}

.stagesSection  .itemsRow .itemDiv .arrowDiv img {
    width: 100%;
}

.stagesSection .affiliateButton {
    position: absolute;
    bottom: -40px;
    right: 0;
    left: 0;
}

.stagesSection .affiliateButton button {
    border-radius: 40px;
    border: 7px solid #FFF;
    box-shadow: 4px 4px 4px 0 #A67CF3;
}

/* responsive carousel */
.responsiveOwl .owl-stage {
    display: flex;
    align-items: stretch;
}

.responsiveOwl .owl-item {
    display: flex;
}

.responsiveOwl .owl-item > * {
    width: 100%;
    padding: 0;
}


/* Laptop Screen 1280px */
@media only screen and (min-width: 1280px) {
    .affiliateLandingPage section.header {
        flex-direction: column;
        justify-content: flex-start;
        height: 360px;
    }
    .affiliateLandingPage section.header h1 {
        font-size: 80px;
    }
    .affiliateLandingPage .mainContainer .sectionTop .sectionTopImage {
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
        width: 100%;
    }
    .affiliateLandingPage .mainContainer .sectionTop .sectionTopImage .heroImage {
        width: 400px;
    }
    .affiliateLandingPage .mainContainer .sectionTop .sectionTopImage .affiliateButton {
        display: block;
    }
    .affiliateLandingPage .mainContainer .aboutSection .affiliateButton {
        display: none;
    }
    .affiliateButton button {
        padding: 20px 100px;
    }
    .itemsRow {
        flex-direction: row;
    }
    .itemsRow.threeItems .itemDiv {
        width: calc((100% - 240px) / 3);
    }
    .itemsRow.fourItems .itemDiv {
        width: calc((100% - 240px) / 4);
    }
    .itemsRow .itemDiv {
        margin-bottom: 0;
    }
    .itemsRow .itemDiv {
        flex-direction: column;
    }
    .middleSection .itemsRow .itemDiv img {
        margin-left: 0;
    }
    .stagesSection  .itemsRow .itemDiv .arrowDiv {
        width: 170px;
    }
}