/* :root {
    --gradient: linear-gradient(rgb(235, 223, 223),rgb(151, 204, 151));
    --brand-color: #21dfe9;
    --brand-hover-color:rgb(25, 183, 25);
    --primary-heading-color:black;
    --secondary-heading-color:red;
    --header-footer-backround-color: #343734;
    --primary-text-color: #444;
    --secondary-text-color: #ccc;
    --secondary2-text-color: #fff;
    --table-baground-color:#1a1a1a; 
  } */
.contact-home{
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: url(../img/ratebanner.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}
.contact-home .text p{
    text-align: justify;
}
.text h1{
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 700;
}
.text span{
    color: var(--brand-hover-color);
}
.text p{
    margin: 00.rem;
}
.app-store{
    display: flex;
}
.app-stores img{
    width: 100px;
    margin-right: 1rem;
    cursor: pointer;
}

/*Making Responsive*/
@media (max-width: 881px){
    .contact-home{
        background-position: left;
    }
}
@media (max-width: 871px){
    .contact-home{
        grid-template-columns:1fr
    }
    .text h1{
        font-size: 1.5rem;
        margin-top: 10px;
    }  
}

/* Start Contact page*/
.location{
    width: 90%;
    margin: auto;
    padding: 80px 0;
}
.row{
    display: flex;
}
.location iframe{
    width: 100%;
}
.contact-us{
    margin: auto;
}
.contact-us h1{
    color: var(--secondary-heading-color);
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px; 
    margin-top: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px; 
}
.contact-col div .bx{
    font-size: 28px;
    color: #004B93;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--secondary-heading-color);
    font-weight: 600;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    background-color: rgb(233, 233, 233);
    border-radius: 6px;
    border-color: var(--primary-heading-color);
}
.contact-col button[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px;
    border-radius: 90px;
    background-color: var(--brand-color);
    color: var(--secondary2-text-color);
    font-weight: 900;
    font-size: 1rem;
  }
  .contact-col button[type="submit"]:hover {
    background-color: var(--brand-hover-color);
}
@media (max-width: 700px) {
    .contact-col div h5{
        font-size: 16px;
    }
    .contact-col input, .contact-col textarea{
        width: 100%;
        padding: 5px;
        margin-bottom: 18px;
    }
    .row{
        display: inline-block;
    }
}
/* End Contact page */
