﻿

/* google maps  */

.MapsContainer {
    margin-top :  15px ; 
    width: 100%;
}

#map {
    height: 500px; /* The height is 400 pixels */
    width: 100%; /* The width is the width of the web page */
}



/* grid container contact */
.ContactGridContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 20px;
    width: 60%;
    margin: auto;
    margin-top: 60px;
    justify-items: center;
}


.ContactEE {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    justify-items: baseline;
    margin-bottom : 50px ; 
}



.ContactLogos {
    margin-bottom: 30px;
}

.SameLine {
    display: flex;
    align-items: center;
    justify-items: center;
    margin-bottom: 30px;
}

.SameLine i {
    margin-right: 30px;
    color: #f2b430;
    /* align-self: center; */
    width: 35px;
}

.SameLine p {
    /* display: inline-block; */
    /* margin-bottom: 30px; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.SameLineEP i {
    margin-right: 30px;
    color: #D62325;
    /* align-self: center; */
}

.SameLineEEOI i {
    margin-right: 30px;
    color: #22b3b2;
    /* align-self: center; */
}


/* Devider  */
.ContactDivider {
    padding-bottom: 10px;
}

.divider {
    position: relative;
    margin-top: 10px;
    height: 1px;
}

.div-transparent:before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    width: 90%;
    height: 1px;
    background-image: linear-gradient( to right, transparent, rgb(48, 49, 51), transparent );
}






/* social media  */


.SocialMediaContainer {
    margin: auto;
    width: 50%;
}

.social-links {
    display: flex;
    padding-bottom: 20px;
    align-items: center;
    justify-content: space-between;
    width: 140px;
    margin: auto;
}

    .social-links a {
        font-size: 18px;
        background: #B9B9BB;
        color: #fff;
        line-height: 1;
        padding: 8px 0;
        border-radius: 50%;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

        .social-links a:hover {
            background: #f2b430;
            color: #fff;
        }


@media (max-width:1470px) {
    .ContactGridContainer {
        width: 95%;
    }
}

@media (max-width:970px) {
    .ContactGridContainer {
        grid-template-columns: 1fr;
    }
}



/* send messsage section */



.container {
    /* background-image: */
    /* linear-gradient(90deg, rgba(242,207,8,0.4) 38%, rgba(238,238,230,0.6)),url('steetView.png'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: initial;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 1em;
    /* max-width:1170px; */
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
}

ul {
    list-style: none;
    padding: 0;
}

.brand {
    text-align: center;
}

    .brand span {
        color: #f2b430;
    }

.wrapper {
    /* box-shadow: 0 0 20px 0 rgba(72,94,116,0.7); */
}

    .wrapper > * {
        padding: 1em;
    }

.company-info {
    background: #c9e6ff;
}

    .company-info h3, .company-info ul {
        text-align: center;
        margin: 0 0 1rem 0;
    }

.contact {
    background: transparent;
}

    /* FORM STYLES */
    .contact form {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

        .contact form label {
            display: block;
        }

        .contact form p {
            margin: 0;
        }

        .contact form .full {
            grid-column: 1 / 2;
        }

        .contact form button, .contact form input, .contact form textarea {
            width: 100%;
            padding: 1em;
            border: 1px solid black;
        }

        .contact form button {
            background: #f2b700;
            border: 0;
            text-transform: uppercase;
        }

            .contact form button:hover, .contact form button:focus {
                color: #fff;
           
            }

/* LARGE SCREENS */
@media(min-width:700px) {
    /* .wrapper{
      display: grid;
      grid-template-columns: 1fr ;
    } */

    .wrapper > * {
        padding: 2em;
    }

    .contact {
        width: 60%;
        margin: auto;
    }


        .contact form {
            grid-template-columns: 1fr 1fr;
        }

            .contact form .full {
                grid-column: 1 / span 2;
            }

    .company-info h3, .company-info ul, .brand {
        text-align: center;
    }
}





/* end send message section */



