h1 {
    font-size: 50px;
    font-weight: bold;
    text-align: left;
    padding: 50px 0%;
}

.content {
    padding: 100px 0;
    background-color: #F5F5F5;
}

.poradna {
    padding: 0 10%;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.poradna-text {
    width: 40%;
}

.poradna-subtitle {
    font-size: 25px;
    font-weight: bold;
}

.poradna p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

form .field input, textarea{
    width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
    border: solid 1px #707070;
    font-size: 20px;
    padding: 15px 25px;
    margin-bottom: 10px;
    font-family: Poppins;
    outline: none;
}

form input::placeholder, textarea::placeholder {
    font-family: Poppins;
}

form textarea {
    padding: 30px;
    resize: none;
    height: 250px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.feedback-title {
    font-size: 35px;
    font-family: PoppinsBold;
    color: white;
    margin-bottom: 40px;
}

input[type="submit"] {
    background-color: #219EFF;
    color: white;
    cursor: pointer;
    border: none;
}

.poradna-services {
    padding: 100px 0;
}

.poradna-service-text {
    width: 50%;
    color: white;
    box-sizing: border-box;
    padding: 50px 10%;
    margin: auto 0;
}

.poradna-service-image {
    width: 50%;
}

.poradna-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.poradna-service {
    display: flex;
    flex-direction: row;
    background-color: #262626;
}

.poradna-service-title {
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 25px;
    font-weight: bold;
}

.poradna-service p {
    font-size: 21px;
}

.poradna-service-reverse {
    flex-direction: row-reverse;
    background-color: white;
}

.poradna-service-reverse .poradna-service-text {
    color: black;
}

.poradna-service-reverse .poradna-service-title {
    margin-bottom: 5px;
    margin-top: 30px;
}

@media (max-width: 1024px) {

    .content {
        padding: 0;
    }

    h1 {
        padding: 25px 5%;
    }

    .poradna {
        flex-direction: column;
        padding: 0 5%;
        gap: 25px;
    }

    .poradna-text {
        width: 100%;
    }

    .poradna-service {
        flex-direction: column;
    }

    .poradna-service-text {
        width: 100%;
        padding: 25px 5%;
    }

    .poradna-service-image {
        width: 100%;
    }
}

.errormsg {
 margin-bottom: 20px;
}