*{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Roboto', sans-serif;
}

.parent{
    display: flex;
    justify-content: center;
}

.top-left{
    display: flex;
    width: 50%;
    justify-content: center;
}

.top-left img{
    padding: 1%;
    height: 89px;
}

.top-left div {
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #c0504e;
    margin-top: auto;
    margin-bottom: auto;
}

.top-left div p{
    font-size: 13px !important;
    color: #4f81bc;
    line-height: normal;
}

.top-right{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.top-right_mail{
    display: flex;
    padding: auto;
}

.top-right_phone{
    display: flex;
    padding: auto;
}

.top-right_mail i{
     padding: 0 10px;
}

.top-right_phone i{
     padding: 0 10px;
}

#vertical-line{
    width: 0.5px;
    background: rgb(134, 115, 115);
    height: 50%;
}

@media(max-width: 800px){
    .parent{
        display: block;
    }
    .top-left{
        width: 100%;
        justify-content: center;
    }
    .top-left div{
        font-size: 1.5rem;
    }
    .top-left div p{
        font-size: 1.5rem;
    }
    .top-right{
        width: 100%;
        align-items: center;
        justify-content: center;
    }
}

@media(max-width: 800px){
    .top-right{
        display: none;
    }

}

/* let's start nav bar  */

/* laptop nab bar css */
.nav-lap{
    background: #c0504e;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-lap ul{
    display: flex;
    height: 45px;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
}

.nav-lap a{
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-lap a:hover{
    color: #b7b7c2;
}

/* phone nav bar css start  */

.header-mob{
    background-color: #c0504e;
    text-align: left;
    /* position: fixed; */
    width: 100%;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after{
    display: block;
    background: white;
    height: 2px;
    width: 2em;
    border-radius: 2px;
    position: relative;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after{
    content: '';
    position: absolute;
}

.nav-toggle-label span::before{
    bottom: 7px;
}

.nav-toggle-label span::after{
    top: 7px;
}

.nav-mob {
    position: relative;
    text-align: left;
    left: 0;
    display: none;
    /* transform: scale(1,0);
    transform-origin: top;
    transition: transform 400ms ease-in-out; */
}

.nav-mob ul{
    margin: 0;padding: 0;
    list-style: none;
}

.nav-mob li{
    /* margin-bottom: 1em; */
    padding-bottom: 1em;
    margin-left: 1em;
}

.nav-mob a{
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    /* text-transform: uppercase; */
}

.nav-mob a:hover{
    color: rgb(163, 158, 157);
}

.nav-toggle:checked ~ nav {
    display: block;
    /* transform: scale(1,1); */
}

.nav-toggle{
    display: none;
}

.nav-toggle-label{
    position: relative;
    left: 0;
    margin-left: 1em;
    height: 40px;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 800px) {
    .header-mob{
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .header-lap{
        display: none;
    }
}
/* nav bar end here  */

/* contact-us start here  */

.contact-box{
    width: 85%;
    margin: 100px auto 100px auto;
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    
}

.sub-box{
    margin: 50px 10px 5px 10px;
    min-width: 300px;
}

.sub-box h2{
    font-family: 'Raleway', sans-serif;
    margin: 0 0 10px 0;
    line-height: 1.3;
    color: #c0504e;
    font-size: 30px;
    padding-bottom: 30px;
}

.form input[type="text"] {
    display: block;
    height: 46px;
    margin-bottom: 32px;
    width: 100%;
    font-size: 14px;
    padding: 0 15px;
    border: 1px solid #e5e5e5;
    color: #878787;
    background: transparent;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-btn{
    border-color: #c0504e;
    background: #c0504e;
    font-size: 13px;
    color: #fff;
    line-height: 32px;
    border: 2px solid #c0504e;
    padding: 4px 10px;
    margin: 0 5px;
    display: inline-block;
    letter-spacing: 1px;
    min-width: 150px;
    height: 44px;
    text-align: center;
    transition: all 0.2s linear 0s;
    text-transform: uppercase;
    border-radius: 8px;
    margin-top: 30px;
}

.form-btn:hover{
    color:  #c0504e;
    background-color: white;
}

textarea{
    border-radius: 0px;
    color: #202020;
    width: 100%;
    outline: none;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 0px 15px;
    border: 1px solid #e5e5e5;
    color: #878787;
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    line-height: inherit;
    overflow: auto;
    margin: 0;
    font: inherit;
    text-align: start;
    appearance: auto;
    -webkit-rtl-ordering: logical;
    resize: auto;
    cursor: text;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    background-color: -internal-light-dark(rgb(255, 255, 255), rgb(59, 59, 59));
    column-count: initial !important;
}

.message{
    height: 100px;
}

.sub-ad ul{
    padding: 0;
}

.sub-ad li{
    display: flex;
    align-items: flex-start;
    padding: 10px;
}

.icon{
    padding-right: 15px;
}

.sub-ad ul li span p{
    padding: 0px;
    margin-bottom: 10px;
    display: block;
    font-family: 'Roboto', sans-serif;
    color: #696969;
    font-size: 14px;
    font-weight: 500;
}

.text{
    color: #696969;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;

}

.sub-ad ul li img{
    padding: 7px 7px 0px 0px;
}

small {
    color: red;
  }

/* contact-us end here  */

/* Footer section start here  */

.footer{
    width: 100%;
    height: auto;
    background: #2d3740;
    /* border: 2px solid red; */
    padding-top: 25px;
    /* margin-top: 100px; */
}

.FT{
    width: 90%;
    margin: 0 auto;
    height: 80%;
    background-color: #2d3740;
    display: flex;
    justify-content: space-around;
}

.f-item{
    width: 325px;
    height: 90%;
    background-color: #2d3740;
    /* border: 2px solid red; */
}

.f-item h3{
    text-transform: uppercase;
    padding-bottom: 10px;
    color: white;
    /* border: 2px solid blue; */
}

.f-item ul{
    list-style: none;
    padding-left: 0px ;
}

.f-item li{
    padding-bottom: 15px;
    color: white;
    opacity: 0.8;
    /* padding-left: 10px; */
    /* padding-top: 5px; */
}

.f-item ul div {
    display: flex;
}

.f-item ul div span{
    padding-right: 5px;
}

.last ul div li a{
    text-decoration: none;
    color: white;
}

.material-icons.orange600 { color: #c0504e; }

@media (max-width:800px){
    .FT{
        flex-direction: column;
    }
    .f-item{
        width: 100%;
    }
}

.FB{
    width: 100%;
    height: 20%;
    background: #29333c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
