*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.header {
    min-height: 150vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url(images/HMIMOCK.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
    .nav1{
        display: flex;
        padding: 2% 6%;
        justify-content: space-between;
        align-items: center;
    }
    nav1 img{
        width: 150px;
    }
    .nav-links{
        flex: 1;
        text-align: right;
    }
    .nav-links ul li{
        list-style: none;
        display: inline-block;
        padding: 8px 12px;
        position: relative;

}
    .nav-links ul li a{
        color: #f0ffff;
        text-decoration: none;
        font-size: 24px;

}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition:0.5s;
}
.nav-links ul li:hover::after{
width: 100%;

}
.text-box{
    width: 90%;
    color: gold;
    position: absolute;
    top:10%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}


.text-box h1{
    font-size: 78px;
}
.text-box p{
    font-size: 36px;
    margin: 5px 0 10px;
    text-decoration: none;
    color: gold;


}


a.hero-btn{
    font-size: 30px;
    display: inline-block;
    text-decoration: none;
    color: #d21313;
    border: 1px;
    padding: 12px 34px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
a.hero-btn:hover{
    border: 1px solid #0b36ad;
    background: #194cbb;
    transition: 1s;
}


nav1 .fa{
  display: none;
}


@media (max-width: 700px) {

    .text-box h1 {
    font-size:20px;
  }
    .nav-links ul li {
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top:0;
        right: 0;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav1 .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}
/*--------About-----------------------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/
*{
    margin:0;
    padding:0;
    font-family: 'Poppins', sans-serif;

}

h1{
    font-size: 36px;
    font-weight: 600;
    padding: 0px;
    color: gold;
    text-align: center;

}

.row{
    margin-top:0%;
    display: flex;
    justify-content: space-evenly;
}
.about-row{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    padding: 20px 12px;
    /*box-sizing: border-box;*/
    transition: 0.5s;
}


h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.about-row:hover{
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.sub-header{
    min-height: 200vh;
   background-image: linear-gradient(rgba(4, 9, 30, 0.1), rgba(4, 9, 30, 0.1)), url(images/firebox2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

    nav2{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav2 img{
    width: 150px;
}

.nav-links4{
    flex: 1;
    text-align:right;
}
.nav-links4 ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;

}
.nav-links4 ul li a{
    color: #f0ffff;
    text-decoration: none;
    font-size: 24px;


}
.nav-links4 ul li a{
    color: #f0ffff;
    text-decoration: none;
    font-size: 24px;

}
.nav-links4 ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition:0.5s;

}
.nav-links4 ul li:hover::after{
    width: 100%;
}

.text-box1{
    width: 90%;
    color: gold;
    position: absolute;
    top:10%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}
.sub-header h1{
    padding: 100px;
    color: gold;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
}
.sub-header p {
    color:gold;
    position: inherit;
    text-align: center;
}
.row {
    margin-top: 0%;
    display: flex;
    justify-content: space-between;
}
.sub-header-row h3{
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    color: black;
    text-align: center;
}
.sub-header-row p{
    font-family: 'Poppins' , sans-serif;
    font-size: 20px;
    color: black;
    text-align: left;

}
  a.hero-btn1 {
    font-size: 30px;
    text-decoration: none;
    color: aqua;
    border: 1px;
    padding: 12px 34px;
    background: transparent;
    position: static;
    cursor: pointer;
}

 a.hero-btn1:hover{
    border: 1px solid #0b36ad;
    background: #194cbb;
    transition: 1s;
}
.sub-header-row{
    flex-basis: 31%;
    background: lightgrey;
    border-radius: 10px;
    padding: 15px 18px;
    box-sizing: content-box;
    transition: 0.5s;
}
.sub-header-row:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
nav2 .fa{
 display:none
}

@media (max-width: 700px) {

    .text-box1 h1 {
        font-size:20px;
    }
    .row .sub-header-row{
        max-width: 100%;
    }
    .nav-links4 ul li {
        display: block;
    }
    .nav-links4{
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top:0;
        right: 0;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav2 .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links4 ul{
        padding: 30px;
    }
    .sub-header h1{
        max-width: 50px;
        margin-bottom: auto;
        }

}



/*--------------------services--------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.services{
    min-height:150vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url(images/collage2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.nav4 {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav4 {
    width: 150px;
}
.text-box2 {
    width: 90%;
    color: gold;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}
.services h1{

    padding: 100px;
    color: gold;
    font-size: 36px;
    font-weight: 600;
    text-align: center;

}
.services p {
    color: #fff3f3;
    font-size: 30px;
    margin: 5px 0 10px;
    text-decoration: none;
    text-align: center;

}
nav .fa {
    display: none;
}
@media (max-width: 700px) {

    .text-box h1 {
        font-size:20px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top:0;
        right: 0;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}

/*--------------links-----------------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/
.Links{
    min-height:150vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url(images/firebox2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;

}
.Links h1{
    padding: 100px;
    color: gold;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
}
.Links p {

    color: #fff3f3;
    font-size: 30px;
    margin: 5px 0 10px;
    text-decoration: none;
    text-align: center;


}

@media (max-width:700px) {

    nav5 .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .text-box h1 {
        font-size:20px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top:0;
        right: 0;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    .nav-links ul{
        padding: 30px;
    }
}

/*------------------Contact-----------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/
.Location{
    width:100%;
    margin: auto;
    padding: 80px 0;
    background-image: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url(images/Gray_background.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    }
.Location iframe{
    width: 70%;
    padding-left: 10%;
    }
.contact-col{
    width: 70%;
    margin-right: 10%;
}
.contact-col{
    flex-basis: 50%;
    padding-left: 10%;
    margin-bottom: 30px;
}
.contact-col div{
    display:flex;
    align-items: normal;
    margin-bottom: 10px;
}
.contact-col div .fa{
    font-size: 28px;
    color: goldenrod;
    margin: 10px;
    margin-right: 3px;
}
.contact-col div p{
    padding: 0;
    color: aqua;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    Color: aqua;
}
.contact-col input, .contact-col textarea{
    width: 76%;
    padding: 35px;
    margin-bottom: 17px;
    margin-left: 3%;
    margin-right: auto;
    outline: none;
    border: 1px solid #d21313;
}
.Contact {
    min-height: 70vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url(images/Collage.jpg);
    background-position: inherit;
    background-size: cover;
    position: relative;
}
.text-box4 h1{
    font-size: 36px;
    font-weight: 600;
    padding: 0px;
    color: gold;
    text-align: center;

}
.text-box4 p{
    font-size: 30px;
    font-weight: 600;
    padding: 0px;
    color: gold;
    text-align: center;

}
.text-box3 div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.text-box3 div.fa{
    font-size: 28px;
    color:#f44336;
    margin: 10px;
    margin-right: 30px;
}
.text-box3 div.p{
    padding: 0;
    color: gold;
}
.text-box3 div.h5{
    font-size: 30px;
    margin-bottom: 5px;
    color: aqua;
}


nav3 .fa {
    display: none;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav3 img{
    width: 150px;
}
.nav-links1{
    flex: 1;
    text-align: right;
}
.nav-links1 ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;

}
.nav-links1 ul li a{
    color: #f0ffff;
    text-decoration: none;
    font-size: 24px;


}
 .nav-links1 ul li a{
    color: #f0ffff;
    text-decoration: none;
    font-size: 24px;

}
.nav-links1 ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition:0.5s;
}
.nav-links1 ul li:hover::after{
    width: 100%;
}

@media (max-width: 700px) {

    .text-box h1 {
        font-size:20px;
    }
    .nav-link1 ul li {
        display: block;
    }
    .nav-links1{
        position: absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top:0;
        right: 0;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav3 .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links1 ul{
        padding: 30px;
    }
}




/*----------------Links Page----------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/
*{
    margin: 0;
    padding: 0;
}
.sub-header2{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url(images/firebox2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav5 img{
    width: 150px;
}
.nav-links2{
    flex: 1;
    text-align: right;
}
.nav-links2 ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;

}
.nav-links2 ul li a{
    color: #f0ffff;
    text-decoration: none;
    font-size: 24px;


}
.nav-links2 ul li a{
    color: #f0ffff;
    text-decoration: none;
    font-size: 24px;

}
.nav-links2 ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition:0.5s;
}
.nav-links2 ul li:hover::after{
    width: 100%;}


.sub-header2 h1{
    color: gold;
    font-size: 40px;
    margin: 5px 0 10px;
    text-decoration: none;
    text-align: center;

}
.nav-links5 li a {
    color: aqua;
    font-size: 30px;
    margin-left: 46%;
   text-decoration: none;
    text-align: center;

}
.hero-btn{
    font-size: 30px;
    display: inline-block;
    text-decoration: none;
    color: #d21313;
    border: 1px;
    padding: 12px 34px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

nav5 .fa {
    display: none;
}

@media (max-width: 700px) {

    .text-box h1 {
        font-size:20px;
    }
    .nav-links2 ul li {
        display: block;
    }
    .nav-links2{
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top:0;
        right: 0;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav5 .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links2 ul{
        padding: 30px;
    }
}
/*---------------Services Page -------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/
*{
    margin: 0;
    padding: 0;
}
.sub-header3{
    min-height:  150vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url(images/collage2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav4 img{
    width: 150px;
}
.nav-links3{
    flex: 1;
    text-align:right;
}
.nav-links3 ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;

}
.nav-links3 ul li a{
    color: #f0ffff;
    text-decoration: none;
    font-size: 24px;


}
.nav-links3 ul li a{
    color: #f0ffff;
    text-decoration: none;
    font-size: 24px;

}
.nav-links3 ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition:0.5s;
}
.nav-links3 ul li:hover::after{
    width: 100%;}

.text-box2 {
    width: 90%;
    color: gold;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}
.text-box2 h1{
    color: gold;
    font-size: 40px;
    margin: 5px 0 10px;
    text-decoration: none;
    text-align: center;

}
.text-box2 p {
    color: gold;
    font-size: 30px;
    margin: 5px 0 10px;
    text-decoration: none;
    text-align: center;

}
.text-box2 b.hero-btn3{
    font-size: 30px;
    display: inline-block;
    text-decoration: none;
    color: #d21313;
    border: 1px;
    padding: 12px 34px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.text-box2 b.hero-btn3:hover{
    border: 1px solid #0b36ad;
    background: #194cbb;
    transition: 1s;
}

nav4 .fa{
    display: none;
}

@media (max-width: 700px) {
    .sub-header3 {
        min-height: 150vh;
        width: 100%;
        background-image: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url(images/collage2.jpg);
    }
    .text-box h1 {
        font-size: 20px;
    }

    .nav-links3 ul li {
        display: block;
    }

    .nav-links3 {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: 0;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    .nav-links3 ul {
        padding: 30px;
    }

    nav4  .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    
}


.privacy-container2 {
    * {
  box-sizing: border-box;
}

  max-width: 720px;     /* Limits how wide it can stretch */
  margin: 0 auto;       /* Centers it horizontally */
  padding: 1.5rem;      /* Adds space around text */
  line-height: 1.6;     /* Improves readability */
  font-size: 16px;
  word-break: break-word; /* Prevents long URLs or strings from breaking layout */
}

