#contactWelcome{
    height: 250px;
    width: 100%;
    position: relative;
}

#contactWelcome img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%) contrast(120%);
}

#welcomeDetails{
    padding: 0 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#welcomeDetails h1{
    font-size: 35px;
    font-weight: 600;
    line-height: 35px;
    color: var(--white-color);
}

#welcomeDetails p{
    font-size: 15px;
    color: var(--white-color);
    width: 500px;
    line-height: 20px;
    max-width: 100%;
}

/* this is the mid section of the website */
#midContact{
    width: 1200px;
    max-width: 100%;
    padding: 0 20px;
    margin: 60px auto 200px;
}

#midContact #googleMap iframe{
    height: 250px;
    border-radius: 20px;
    width: 100%;
}

/* contact details */
#contactDetails{
    display: flex;
    margin-top: 80px;
    justify-content: space-around;
    align-items: center;
    /* flex-wrap: wrap; */
}

#contactDetails #contactInfoBox{
    width: 40%;
}

#contactInfoBox .cInfo1{
    background: #F5F5F5;
}
#contactInfoBox .cInfo2{
    background: #E3F4F4;
    
}
#contactInfoBox .cInfo3{
    background: #F9F5EB;
}

#contactDetails #contactInfoBox .cInfo{
    margin-bottom: 10px;
    width: 400px;
    padding: 30px;
    border-radius: 30px;
    transition: all ease 0.2s;
}

#contactDetails #contactInfoBox .cInfo:hover{
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

#contactDetails #contactInfoBox .cInfo1 p:first-child{
    margin-bottom: 4px;
}

#contactDetails #contactInfoBox .cInfo3 .cDetails p{
    font-size: 17px;
}

#contactDetails #contactInfoBox .cInfo p{
    font-size: 20px;
    color: #666666;
}

#contactDetails #contactInfoBox .cInfo .cHeading{
    align-items: center;
    display: flex;
    margin-bottom: 10px;
}

#contactInfoBox .cInfo .cHeading h2{
    font-size: 25px;
    margin-left: 20px;
    color: #333333;
}

#contactInfoBox .cInfo .cHeading i{
    font-size: 23px;
    color: #333333;
}

#contactDetails #contactForm h2{
    font-size: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #777777;
}

#contactDetails #contactForm h2 span{
    color: var(--main-color);
}

#contactForm{
    width: 600px;
    background: #F7F1E5;
    padding: 30px;
    border-radius: 20px;
}

#contactDetails #contactForm form input, #contactForm form textarea{
    width: 100%;
    height: 45px;
    margin-bottom: 10px;
    padding-left: 20px;
    border: 1px solid lightgray;
    border-radius: 5px;
    font-size: 18px;
    outline: none;
    -ms-overflow-style: none;  
    scrollbar-width: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#contactForm form textarea{
    height: 100px;
    padding: 20px;
    border: 1px solid lightgray;
    width: 100%;
    resize: none;
}

#contactDetails #contactForm form button{
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    font-size: 18px;
    background: var(--main-color);
    color: var(--white-color);
    border-radius: 50px;
    cursor: pointer;
}


/* make contact massage */
#contactMsgBox{
    display: block;
    background: green;
    color: white;
    margin: 0 10px 10px 10px;
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    display: none;
}

@media (max-width: 1080px) {
    #contactForm{
        width: 500px;
    }
    bdoy{
        background: red;
    }
}
@media (max-width: 980px) {
    #contactForm{
        width: 400px;
    }
    bdoy{
        background: blue;
    }
}

@media (max-width: 880px) {
    #contactForm{
        width: 400px;
    }
    #contactDetails #contactInfoBox .cInfo{
        width: 300px;
    }
    bdoy{
        background: blue;
    }
}

@media (max-width: 880px) {
    #contactDetails{
        flex-direction: column;
    }   
    #contactDetails #contactInfoBox{
        width: 100%;
    }
    #contactDetails #contactInfoBox .cInfo{
        width: 100%;
    }
    #contactForm{
        width: 100%;
        margin-top: 20px;
    }
    #contactDetails #contactForm h2{
        font-size: 30px;
    }
}