.cooperation  {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    position: relative;
    background-color: var(--wp--preset--color--grey);
    z-index: 1;

    .container {
        max-width: 1920px !important;
    }

    .cooperation__content {
        margin-left: 0 !important;
        max-width: 940px;

        h2 {
            mark {
                background: var(--wp--preset--gradient--red-gradient);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }

        .coop__form {
            padding-top: 24px;
        }

        .coop__form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            padding-bottom: 32px;

            p {
                margin: 0;

                label {
                    font-weight: 600;
                }
                            
                input,
                select {
                    margin-top: 8px;
                    width: calc(100% - 24px);
                    padding: 12px;
                    border-radius: 8px;
                    border: 1px solid #CAD2DA;
                }

                select {
                    width: 100%;
                }
            }
        }

        .wpcf7-acceptance {
            
            span {
                margin-left: 0;
            }

            input {
                accent-color: var(--wp--preset--color--dark-text);
                min-width: 18px;
                min-height: 18px;
            }
        }


        .btn {
            display: flex;
            align-items: center;
            background: var(--wp--preset--gradient--red-gradient);
            color: white;
            padding: 4px;
            padding-right: 24px;
            border-radius: 64px;
            border: none;
            width: fit-content;
            gap: 2px;
            margin-top: 36px;

            p {
                margin: 0;
                width: 230px;
                display: flex;
                align-items: center;
                gap: 16px;
                width: 240px;

                input {
                    background-color: transparent;
                    color: white;
                    border: none;
                    font-size: 16px;
                    font-family: "Poppins", sans-serif;
                    padding: 12px 14px;
                }

            }

            &::before {
                display: block;
                content: "";
                background-image: url(../../../images/white-circle-arrow.svg);
                width: 48px;
                height: 48px;
                background-size: contain;
                background-position: center;
                background-repeat: no-repeat;
                transition: all .4s ease-in-out;
            }

            .wpcf7-submit {
                font-size: 16px;
            }
        }
       
    }
}

@media only screen and (max-width: 1400px) {
    .cooperation {
        .cooperation__content {
            max-width: 840px;
        }
    }
}

@media only screen and (max-width: 1100px) {
    .cooperation {
        .cooperation__content {
            max-width: 100%;

            p {
                margin-right: 0 !important;
                width: 100% !important;

                br {
                    display: none;
                }
            }

            .coop__form {
                .coop__form-grid {
                    grid-template-columns: repeat(1, 1fr);
                }

                .wpcf7-spinner {
                    position: absolute;
                    left: 380px;
                }
            }

 
        }
    }
}

@media only screen and (max-width: 576px) {
    .cooperation {
        padding: 24px !important;

        .container  {
            padding: 0 !important;
        }

        .cooperation__content {
            max-width: 100%;
            padding: 16px !important;

            p {
                margin-right: 0 !important;
                width: 100% !important;

                br {
                    display: none;
                }
            }

            .coop__form {
                .coop__form-grid {
                    grid-template-columns: repeat(1, 1fr);
                }

                .wpcf7-spinner {
                    position: relative;
                    left: 0;
                }
            }

            .btn {
                width: 260px !important;
                padding-right: 4px !important;
                
                &::before {
                    display: none;
                }

                p {
                    width: 100% !important;
                }
            }
 
        }
    }
}