.clip {
    clip-path: polygon(48% 67%, 100% 34%, 100% 100%, 0% 100%);
    background-color: #20232A;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 50px;
    z-index: 1;
}



.main {
    background-color: #2C3444;
}

.title-wrapper {
    justify-content: center;
    text-align: center;
    font-size: 28px;
    color: white;
    border-top: 1px solid #606060;
    border-bottom: 1px solid #606060;
    padding: 15px 0 20px 0;
    font-weight: 700;
    /* font-family: Quicksand; */
    line-height: 35px;
    display: flex;
}


.platform-card-title {
    font-size: 25px;
    font-weight: bolder;
    text-align: center;
}

.pf-card-wrapper>:nth-child(1) {
    background: linear-gradient(to left top, #0270D7, rgba(2, 112, 215, 0)) !important;
}

.pf-card-wrapper>:nth-child(2) {
    background: linear-gradient(to left top, #00BFFB, rgba(0, 191, 251, 0)) !important;
}

.pf-card-wrapper>:nth-child(3) {
    background: linear-gradient(to left top, #0270D7, rgba(2, 112, 215, 0)) !important;
}

.hero-text {
    font-size: 17px;
}

.csb-2 {
    display: flex;
    flex-direction: row-reverse;
    padding: 1em 0 1em 0;
    gap: 50px;
    align-items: center;
}

.csb-2>img {
    width: 50%;
    min-width: 50%;
}

.csb-text-wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    height: 315px;
}

.csb-title {
    font-size: 22px;
    font-weight: bold;
}

.dashboard-svg {
    width: 80%;
}

.image-container {
    display: flex;
    justify-content: center;
    padding: 50px 0 50px 0;
}


/* First section */

.main-wrapper {
    z-index: 1;
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 50px;
    align-items: center;
    position: absolute;
}

.hero-image {
    max-width: 700px;
}

.left-block {
    z-index: 2;
    display: flex;
    width: 50%;
    height: 100%;
    padding-left: 10%;
    flex-direction: column;
    align-content: space-around;
    justify-content: space-evenly;
    color: white;
}

.right-block {
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
}

.button-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-section {
    min-height: 500px;
    background-color: #2C3444 !important;
    margin-top: 120px;
}

/* End first section */

/* Second section */

.evaluate-svg {
    display: flex;
    justify-content: center;
    padding: 1em 0 1em 0;
}

/* End of second section */

/* Third section */

.pf-card-wrapper {
    padding-top: 25px;
    display: flex;
    gap: 25px;
    justify-content: center;
    color: white;
    padding-bottom: 25px;
}


.platform-card-wrapper {
    width: 30%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    padding: 15px;
    align-items: center;
    gap: 25px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.image-card {
    max-width: 330px;
    border-radius: 8px;
    width: 100%;
}

/* End of Third section */

/* 4st section */

.csb-1 {
    display: flex;
    flex-direction: row;
    padding: 1em 0 1em 0;
    gap: 50px;
    align-items: center;
    color: black;
}

.csb-1>img {
    width: 50%;
    min-width: 50%;
}

/* end of 4st section */

/* Mobile */
@media (max-width: 991px) and (max-width: 1075px) {

    .right-block {
        width: 100%;
        align-items: center;
    }

    .dashboard-svg {
        width: 100%;
    }

    .csb-2 {
        padding: 15px;
        flex-direction: column;
    }

    .csb-2>img {
        width: 100%;
    }

    .csb-text-wrapper {
        height: 100%;
    }

    .csb-1 {
        padding: 15px;
        flex-direction: column;
    }

    .csb-1>img {
        width: 100%;
    }

    .image-card {
        width: 100%;
    }


    .platform-card-wrapper {
        width: 95%;
    }

    .pf-card-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .hero-section {
        margin-top: 50px;
    }

    .main-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        position: relative;
    }

    .left-block {
        padding: 0;
        width: 95%;
    }

    .hero-image {
        height: 100%;
        width: 100%;
        z-index: 2222;
        padding-bottom: 50px;
    }

    .evaluate-svg>img {
        width: 100%;
    }

}