#contacts .divider {
    display: flex;
    flex-direction: row;
}

#contacts .divider .info {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    padding-top: 100px;
    padding-bottom: 100px;
}

#contacts .divider .info .title {
    margin-left: 198px;
    margin-right: 50px;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-primary);
}

#contacts .divider .info .heading {
    font-weight: 600;
    font-size: 36px;
    margin: 0;
    margin-left: 198px;
    margin-right: 50px;
    margin-top: 20px;
}

#contacts .divider .info .description {
    margin-top: 24px;
    margin-left: 198px;
    margin-right: 50px;
    opacity: 0.8;
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
}

#contacts .divider .info .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 198px;
    margin-right: 50px;
    padding-top: 48px;
}

#contacts .divider .info .content .item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#contacts .divider .info .content .item .title {
    margin: 0;
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
    color: black;
    opacity: 0.8;
} 

#contacts .divider .info .content .item .text {
    font-family: "Roboto";
    font-weight: 500;
    font-size: 20px;
    margin: 0;
    color: var(--color-near-black);
} 

#contacts .divider .form {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

#contacts .divider .form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 338px;
}

#contacts .divider .form input,
#contacts .divider .form textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px white solid;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 16px;
    color: white;
}

#contacts .divider .form input {
    height: 40px;
}

#contacts .divider .form textarea {
    min-height: 64px;
}

#contacts .divider .form input::placeholder,
#contacts .divider .form textarea::placeholder {
    color: rgba(255, 255, 255, .5);
}

#contacts .divider .form .send {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#contacts .divider .form button {
    width: 100%;
    height: 54px;
    background-color: white;
    border-radius: 16px;
    border: none;
    color: var(--color-primary);
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
    box-shadow: 0 8px 6px rgba(0, 0, 0, .15), 0 4px 2px rgba(0, 0, 0, .3);
    transition:
        background-color .18s ease,
        color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
    cursor: pointer;
}

#contacts .divider .form button:hover {
    border-color: var(--teal);
    box-shadow: 0 4px 10px rgba(12, 12, 13, .15);
}

#contacts .divider .form .agreement {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#contacts .divider .form .agreement a.checkbox {
    color: white;
}

#contacts .divider .form .agreement p {
    padding: 0;
    margin: 0;
    font-family: "Roboto";
    font-weight: 200;
    font-size: 10px;
    color: white;
}