.contacts {
    hgroup {
        h3 {
            margin: 0;
            color: var(--red);
        }

        h2 {
            margin: 0;
        }

        h2 a {
            text-decoration: none;
            line-height: 60px;
        }
    }
    
    section.f3 > div {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        background-color: var(--white);
        padding: 30px;
        text-align: center;

        picture {
            display: inline-block;
            border: 1px solid var(--blue);
            border-radius: 50%;
            padding: 20px;
            margin-bottom: 20px;
            background: linear-gradient(to bottom, var(--white), var(--sl-blue));
        }

        picture img {
            width: 40px;
            height: 40px;
            margin: 5px;
        }

        h3 {
            margin: 0;
            color: var(--dgray);
        }

        p {
            margin-bottom: 0;
        }
    }
    
    .map {
        margin-top: 20px;
    
        iframe {
            width: 100%;
            aspect-ratio: 3/1;
            margin: 0;
        }
    }
    
    .lred{
        background-color: var(--sl-red);
        color: var(--dgray);
        padding: 20px 0 0 0;
        text-align: center;
    }
    
    form {
        input[type=text],
        textarea {
            font-family: var(--font-text);
            font-weight: 400;
            font-size: 16px;
            width: 100%;
            margin: 0;
            padding: 6px 12px;
            line-height: 24px;
            border: 1px solid var(--border);
            border-radius: 2px;
            background-color: var(--white);
            color: var(--text);
            box-sizing: border-box;
    
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }
    
        textarea { 
            display: block;
            margin: 20px 0;
        }
    
        button[type=submit] {
            border: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }
    
        button[type=submit] {
            display: inline-block;
            padding: 1px 30px 0 30px;
            background-color: var(--blue);
            color: var(--white);
            font-size: 16px;
            line-height: 40px;
            cursor: pointer;
            font-family: inherit;
            font-weight: 400;
            text-decoration: none;
            text-transform: uppercase;
            transition: background-color .5s ease;
        }
    
        button[type=submit]:hover { background-color: var(--d-blue); }
    
        /* Checkbox */
        label.checkbox {
            line-height: 19px;
            /*white-space: nowrap;*/
            padding: 5px 20px 5px 30px;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            vertical-align: bottom;
            display: inline-block;
        }
    
        label.checkbox input { display: none;}
    
        label.checkbox span {
            display: inline-block;
            width: 18px;
            height: 18px;
            background-color: var(--white);
            border: 1px solid var(--border);
            content: ' ';
            vertical-align: bottom;
            margin-right: 6px;
            margin-left: -30px;
        }
    
        label.checkbox:hover span { border-color: var(--blue); }
    
        label.checkbox input:checked + span {
            position: relative;
            background-color: var(--blue);
            border-color: var(--blue);
        }
    
        label.checkbox input:checked + span::before {
            position: absolute;
            display: block;
            content: ' ';
            border-bottom: 2px solid var(--white);
            border-right: 2px solid var(--white);
            width: 4px;
            height: 8px;
            top: 3px;
            left: 6px;
            transform: rotate(45deg);
        }
    }
}