* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

main {
    display: flex;
    flex-direction: column;
    height: auto;
}

.c1 {
    display: flex;
    justify-content: center;
    align-items: flex-end;

    
    width: 100%;
    column-gap: 5%;
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 7%;
    margin-bottom: 3.7rem;
}



.c1>#left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    width: 50%;

}

.c1>#left>h1 {
    font-size: 2rem;
    width: 100%;
    margin-bottom: 1rem;

}

.c1>#left>h1>span {
    color: #ff6a00;
}

.c1>#left>p {
    font-size: 1.13rem;
    width: 95%;
    /* text-align: center; */
    line-height: 25px;
    /* margin-bottom: 1.2rem; */
}

.c1>#left>button {
    width: 180px;
    font-size: 1.25rem;
    background-color: #ff6a00;
    padding: 15px 20px;
    cursor: pointer;
    color: white;
    border: none;
    transition: all 0.4s;

    margin-top: 10px;
    margin-bottom: 10px;
}

.c1>#left>button:hover {
    background-color: #9c4101;
}

.c1>#left>img {
    width: 100%;
    height: 30%;
}

.c1>#right {
    width: 50%;
}

@media screen and (max-width: 1180px) {

    .c1>#right {
        display: block;
    }

    .c1 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        column-gap: 5%;

        margin-top: 7%;
        margin-bottom: 3.7rem;
    }

    .c1>#left>p {
        font-size: 1.3rem;
        line-height: 30px;
    }

}

@media screen and (max-width: 1180px) {

    .c1>#left>img {

        display: none;

    }

    .c1 {

        justify-content: center;

    }
}



@media screen and (max-width: 775px) {
    .c1 {
        padding: 0 38px;
        flex-direction: column;
        align-items: center;
        height: 100%;
    }

    .c1>#left {
        align-items: center;
        justify-content: start;
        width: 100%;
        row-gap: 10%;
    }

    .c1>#left>h1 {
        text-align: center;
        font-size: 2rem;
        padding: 0;
    }

    .c1>#left>p {
        font-size: 1.34rem;
        line-height: 43px;

    }

    .c1>#left>p,
    #left>h1 {
        width: 100%;
        margin-bottom: 2rem;
    }

    .c1>#left>button {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }

    .c1>#right {
        display: none;
    }
}