*{
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
:root{
    --gold:#baa35f;
}
h2{
    font-size: 36px;
    font-weight: 600;
    color: #333;

}
h1{
    color: #333;
    font-weight: 600;
}
h3{
    color: #333;
    font-weight: 600;
    font-size: 26px;

}
h4{
    color: #333;
    font-weight: 600;

}
p{
    color: #333;
    font-size: 20px;
}

                /* -------------------- The Header Section -------------------- */

.header{
    min-height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(Images/3.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: .5% 6%;
    justify-content: space-between;
    align-items: center;
}
.header nav{
   background: #fff;
   /* opacity: 90%; */
}
.header nav a{
    font-size: 30px;
    color: #555;
    font-weight: bolder;
    text-decoration: none;
}
.logo-sec{
    display: flex;
 }
 .logo-sec .icon{
    padding-right: 60px;
    padding-top: 3px;
 }

 .header nav .logo-text{
    color: var(--gold);
    font-size: 25px;
 }

.navigator{
    flex: 1;
    text-align: right;
}
.navigator ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.navigator ul li a{
    color: #555;
    text-decoration: none;
    font-size: 20px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.navigator ul li a:hover{
    color: var(--gold);
}
.welcome{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.welcome h1{
    font-size: 62px;
    color: #fff;
}
nav .icons{
    display: none;
}
@media(max-width:800px){
    .header nav .logo{
        font-size: 18px;
     }
    .header nav ul li a{
        font-size: 20px;
    }
    .welcome h1{
        font-size: 42px;
    }
    .navigator ul{
        padding: 30px;
    }
    .navigator ul li{
        display: block;
    }
    .navigator{
        position: fixed;
        background: #fff;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    .navigator ul li a{
        color: #333;
    }
    nav .icons{
        display: block;
        color: #fff;
        margin: 10px;
        /* font-size: 22px; */
        cursor: pointer;
    }
    .logo-sec .icon{
        padding-right: 30px;
     }
     .header nav .logo-text{
        color: var(--gold);
        font-size: 20px;
     }
     .header nav img{
        height: 35px;
     }
}

/* -------------------- location ------------------ */
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}

/* -------------------- contact us -------------------- */
.contact-us{
    width: 80%;
    margin: auto;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    text-align: left;
 }
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div img{
    font-size: 28px;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact-col div a{
    text-decoration: none;
}
.contact-col div p{
    padding: 0;
}
.contact-col .email-add{
    font-size: 14px;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.contact-col .send-btn{
    text-decoration: none;
    margin: auto;
    color: #fff;
    font-size: 25px;
    border: 1px solid #555;
    padding: 5px 5px;
    display: inline-block;
    position: relative;
    background: #555;
    border-radius: 5px;
    width: 200px;
    cursor: pointer;
}
.contact-col .send-btn:hover{
    border: 1px solid var(--gold);
    background: var(--gold);
    transition: 2s;
}

@media(max-width: 700px){
    .contact-us .row{
        flex-direction: column;
    }
    .contact-col div p{
        padding: 0;
        font-size: 16px;
    }
    .contact-col .send-btn{
        font-size: 16px;
        width: 150px;
    }
    .contact-col div img{
        font-size: 20px;
        margin: 10px;
        margin-right: 10px;
    }
}

 /* ------------------- footer ------------------- */
 .footer{
    width: 100%;
    padding: 30px 0;
    text-align: center;
 }
 .footer h4{
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
 }
 .footer .icons{
    margin: 0 13px;
    padding: 18px;
    cursor: pointer;
 }
 .footer .icons img{
    padding-left: 20px;
 }
 .footer p{
    width: 60%;
    margin: auto;
    font-size: 16px;
 }
 .credit{
    text-decoration: underline;
    font-size: 14px;
 }