*{
    margin:0px;
    padding: 0;
    box-sizing: border-box;
    /* colors */
    --font-color:#ff6900;
    --font-hover-color:#ff7454;
    --navigation-background:#f9f9f4;
    --font-color-navigation:#c21c20;
    --nav-hover-background-light:#d0dae6;
    --black:black;
    --white:white;
    --font-color:#ff6900;
    --body-background-color:  rgb(232, 237, 242);
    --background-color-contactform: #fcfcfc;
    --icons-buttons-h6-color: #0099ff;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--body-background-color);
}
.part1{
    margin: 0 10% 0 10%;
    display: flex;
}
.col1-part1 {
    flex: 1;
    padding: 0 3% 0 3%;
    margin-right: 5%;
    display: flex;
    align-self: stretch;
    flex-direction: column;
    border-radius: 15px;
}
.social-media-flex-3{
    display: flex;
    width: 100%;
    height: 100%;
    margin-top: 5%;
    position: relative;
    flex-direction: column;
    justify-content: space-around;
}
.social-media-flex-3 p{
    text-align: left;
    margin: 0;
}
.social-media-flex-3 h6{
    text-align: left;
    margin-top: 0;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: var(--icons-buttons-h6-color);
}
.col2-part1 {
    flex: 1;
    background-color: var(--background-color-contactform);
    padding: 0 3% 3% 3%;
    margin-left: 10px;
    display: flex;
    align-self: stretch;
    flex-direction: column;
    border-radius: 15px;
}
/*styles of icons part*/
h1{
    margin: auto;
    font-size: 60px;
}
.gmail-container,
.social-container,
.contact-container {
    display: flex;
    margin: 80px 0 0 0;
    width: 100%;
    height: 20%;
    background-color: var(--white);
    border-radius: 15px;
    align-items: center;
    font-size: large;
    padding: 15px;
}
.gmail-icon-container,
.follow-icon-container,
.phone-icon-container {
    background-color: var(--icons-buttons-h6-color);
    padding: 15px;
    box-sizing: content-box;
    display: flex;
    max-height: 25px;
    align-items: center;
    justify-content: center;
    border-radius: 25%;
}
.fa-facebook,.fa-instagram,.fa-square-x-twitter,.fa-youtube{
  color: var(--black);
  font-size: 25px;
}
.fa-envelope,
.fa-plus,
.fa-phone{
    color: var(--white);
    font-size: 35px;
}
.contact-info {
    margin-left: 3%;
    flex:80;
    display: flex;
    flex-direction: column;
}
.icons-row-flex{
    display:flex;
}
.flex-icon{
    margin-right: 7%;
}
/* end */
label.required::after {
    content: " *";
    color: red;
}
.contact-form{
    margin-top: 10%;
}
.contact-form form {
    display: grid;
    grid-gap: 20px;
}
h2{
    font-size: 30px;
    margin-top: 7%;
    text-align: center;
}
input {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    border: 1px solid var(--black);
    border-radius: 5px;
}
textarea{
    height: 150px;
}
.submit-button{
    margin-top: 5%;
    height: 40%;
    align-items: center;
    text-align: center;
}
button{
    background-color: var(--background-color-contactform);
    width: 100px;
    height:fit-content;
    padding: 10px 20px;
    border: none;
    font-size:medium;
    color: var(--icons-buttons-h6-color);
    border-color: var(--icons-buttons-h6-color);
    border-style:solid;
    border-width: 1px;
    border-radius: 25px;
    cursor: pointer;
}
button:hover{
    background-color: var(--icons-buttons-h6-color);
    color: white;
}
/* map section styles */
.sect2{
    height: 800px;
}
.maps{
    margin-top: 5%;
    padding: 5% 5% 2%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.maps-window{
    width: 80%;
    margin:0 5% 0 5%;
    border-radius: 15px;
    background-color:var(--white);
    display: flex;
    justify-content: center;
    box-shadow: 0 0 20px 0px rgb(0,0,0,0.2); 
}
.maps-window2{
    flex: 1;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    padding:3%;
}
.maps-window2 h2{
    margin: 3% 0 3% 0;
    font-size: 40px;
    text-align: center;
}
.address-map-location iframe{
    width: 100%;
}
.footer h4{
    text-align: center;
}

@media (max-width: 1000px){
    .part1{
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding:0;
    }
    .col2-part1{
        margin-top: 3%;
        align-items: center;
        margin-left: 3%;
    }
    .social-media-flex-3{
        width: 100%;
    }
    .social-media-flex-3 p{
        text-align: center;
    }
    .social-media-flex-3 h6{
        text-align: center;
    }
    .gmail-container,
    .social-container,
    .contact-container{
            flex-direction: column;
            text-align: center;
            margin-top: 20px;
    }
    .gmail-icon-container,
    .follow-icon-container,
    .phone-icon-container{
        margin-top: 3%;
        margin-left: 0;
        align-items: center;
    }
    .icons-row-flex{
        text-align: center;
    }
    .heading2{
        width: 100%;
    }
    h1{
        font-size: 30px;
    }
    h2{
        font-size: 15px;
    }
    .sect2 h2{
        font-size: 20px;
    }
    .contact-info {
        margin-left: 0;
    } 
}
