﻿/*#region Get In Touch*/

#GetInTouch {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    #GetInTouch > div:first-of-type {
        display: flex;
        flex-direction: column;
    }



    #GetInTouch > div:last-of-type {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

        #GetInTouch > div:last-of-type > div {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

            #GetInTouch > div:last-of-type > div > div {
                display: flex;
                gap: 10px;
            }

                #GetInTouch > div:last-of-type > div > div > i {
                    background: var(--green);
                    border-radius: 50%;
                    width: 30px;
                    height: 30px;
                    display: flex;
                    font-size: 15px;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                }

                #GetInTouch > div:last-of-type > div > div > p {
                    display: flex;
                    flex-direction: column;
                    gap: 2px;
                    color: var(--gray);
                    font-size: 13px;
                }

                    #GetInTouch > div:last-of-type > div > div > p > span {
                        font-size: 20px;
                    }

    #GetInTouch form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background: var(--dark-gray);
        border-radius: 10px;
        width: 350px;
        justify-self: flex-end;
        padding: 20px;
    }

        #GetInTouch form input {
            background: 0;
            outline: 0;
            border: 0;
            padding: 6px 2px;
            border-bottom: 1px solid gray;
            transition: 300ms;
        }

            #GetInTouch form input:focus {
                border-color: var(--green);
            }

        #GetInTouch form button {
            margin-top: 5px;
            align-self: center;
        }

/*#endregion*/
main {
    width: 100%;
    margin-bottom: 4rem;
}

.contactHeader {
    width: 100%;
    padding: 20px 10px;
    background: var(--dark-gray);
    border: 1px solid gray;
    border-radius: 10px;
    font-size: 14px;
}



@media (max-width: 1200px) {
}

@media (max-width: 992px) {

    #GetInTouch > div:last-of-type {
        display: flex;
        flex-direction: column;
    }


        #GetInTouch > div:last-of-type > div {
            width: 100%;
        }

    #GetInTouch form {
        width: calc(100% - 80px);
    }

    .contactHeader {
        width: calc(100% - 60px);
    }
}

@media (max-width: 768px) {
    #GetInTouch > div:last-of-type > div > div > i {
        width: 25px;
        height: 25px;
        font-size: 11px;
    }

    #GetInTouch > div:last-of-type > div > div > p > span {
        font-size: 16px;
    }

    #GetInTouch > div:last-of-type > div {
        gap: 1rem;
    }

        #GetInTouch > div:last-of-type > div > div > p {
            font-size: 11px;
        }
}

@media (max-width: 576px) {
}
