@font-face {
    font-family: 'Source-Sans-Pro';
    src: url(Fonts/source-sans-pro/SourceSansPro-Regular.ttf);
    font-style: normal;
    font-weight: 100;
}

@font-face {
    font-family: 'roboto';
    src: url(Fonts/roboto/Roboto-Regular.ttf);
    font-style: normal;
    font-weight: 100;
}

@font-face {
    font-family: 'overpass';
    src: url(Fonts/overpass/Overpass_Regular.ttf);
    font-style: normal;
    font-weight: 100;
}


html, body{
    margin: 0; 
    padding: 0;
}

header{
    font-family: "Source-Sans-Pro";
    /* border: 5px dotted red; */
}

.header-logo{
    width: 150px;
    height: 150px;
    text-align: left;
    margin-right: 50%;
}

.logo-container{
    /* border: 1px solid rgb(157, 255, 0); */
    display: inline-block;
    margin-right: 20%;
}

.navbar {
    overflow: hidden;
    /* padding: 20px; */
    margin: 0px 0 50px 50px;
    width: 40%;
    display: inline-block;
    /* border: 1px solid red; */
}

.navbar a {
    float: left;
    font-size: 24px;
    color: black;
    text-align: center;
    padding: 14px 30px; /* Spacing between menu items */
    text-decoration: none;
    /* border: 1px solid green; */
}

.navbar a:hover{
    border-radius: 10px;
}
  
.dropdown {
    float: left;
    overflow: hidden;
    border-radius: 10px;
}
  
.dropdown .dropbtn {
    font-size: 20px;  
    border: none;
    outline: none;
    color: black;
    /* padding: 14px 16px; */
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}
  
.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: black;
    color: white;
    transition: 0.3s ease;
    transform: scale(1.1);
    border-radius: 10px;
}

.dropbtn:hover{
    cursor: pointer;
    /* transition: 0.3s ease;
    transform: scale(1.1);
    border-radius: 10px; */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100px; /* Space between main menu and dropdown*/ 
    background-color: #4b4b4eaa;
    min-width: 165px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 10px;
    z-index: 3;
}
  
.dropdown-content a {
    float: none;
    color: white;
    /* padding: 12px 16px; */
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 18px;
}
  
.dropdown-content a:hover {
    background-color: #000000;
    color: white;
}
  
.dropdown:hover .dropdown-content {
    display: block;
}







footer{
    position: relative;
    background-color: black;
    text-align: center;
    /* z-index: 1; */
}

.mainftrdiv{
    display: flex;
    justify-content: space-evenly;
    margin-top: 30px;
    /* border: 5px dotted rgb(144, 97, 10); */
}

.section{
    display: inline-block;
    /* border: 2px solid yellow; */
    color: white;
}

.map{
    width: 300px;
    height: 200px;
}

.ftr-details{
    /* border: 5px dotted red; */
    width: 260px;
    height: 200px;
    margin-left: 30px;
    margin-top: 30px;
}

.ftr-icon{
    width: 30px;
    /* border: 2px solid red; */
    vertical-align: middle;
    margin-right: 20px;
}

.ftr-address{
    /* border: 2px dotted violet; */
    display: flex;
    align-items: center;
}

.street{
    /* border: 1px solid lime; */
    text-align: left;
    margin: 0;
}

.txtpobox{
    /* border: 1px solid blue; */
    display: inline-block;
}

.ftr-phone{
    /* border: 2px dotted violet; */
    text-align: left;
}

.txtphone{
    /* border: 1px solid blue; */
    display: inline-block;
}

.ftr-email{
    /* border: 2px dotted violet; */
    text-align: left;
}

.txtemail{
    /* border: 1px solid blue; */
    display: inline-block;
}

.ftr-hr{
    width: 200px;
    margin-top: 0;
    margin-bottom: 50px;
    height: 3px;
    background-color: whitesmoke;
}

.ftr-heading{
    margin-bottom: 5px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    padding-top: 20px;
    font-family: 'Libre Baskerville';
}

.copyright{
    color: white;
    padding-bottom: 10px;
}

.contact{
    /* border: 3px solid white; */
    padding: 30px;
    margin-top: -30px;
}

.input-field{
    margin-bottom: 10px;
    width: 370px;
    height: 30px;
    padding-left: 10px;
    font-family: "Source Sans Pro";
}

#Message{
    width: 365px;
    height: 150px;
    margin-bottom: 20px;
    padding: 10px;
    font-family: "Source Sans Pro";
}

.frmButton{
    padding: 10px;
    width: 150px;
    font-size: 20px;
    border: 0;
    background-color: gray;
    color: white;
    font-family: "Source Sans Pro";
}

.frmButton:hover{
    border: 2px solid white;
    background-color: black;
    color: white;
    cursor: pointer;
    font-family: "Libre Baskerville";
}

#Contact-Us{
    padding-bottom: 10px;
    padding-top: 10px;
    margin-top: 80px;
}

/* TEXT & HEADINGS */
.heading{
    padding-top: 50px;
    color: white;
    font-size: 100px;
    text-align: center;
    font-family: 'Source-Sans-Pro';
    /* font-family: var(--font_300); */
    /* font-family: Montserrat; */
}

.sub-heading{
    font-family: 'overpass';
    font-size: 28px;
    font-weight: bold;
}

.ss-heading{
    font-family: 'overpass';
    font-size: 24px;
    font-weight: bold;
}

.sss-heading{
    font-size: 20px;
    font-family: 'overpass';
    font-weight: bold;
}

.text{
    font-family: 'roboto';
    font-size: 20px;
}

.sub-text{
    font-family: 'roboto';
    font-size: 16px;
}