body {
    background-color: rgb(248, 248, 248);
    background-size: 100%;
    background-position: center;
    font-family: Arial, Helvetica, sans-serif;    
    margin: 0;    
    min-height: 100vh;
    padding: 0;
}
.primary-logo {
    height: 100px;
} 
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .6s;
    padding: 40px 100px;
    z-index: 100000;
  }
  header.sticky {
    padding: 20px 100px;
    background: #fff;
  }
  header ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header ul li {
    position: relative;
    list-style: none;
  }
  header ul li a {
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    color: rgb(2, 3, 92);
    letter-spacing: 2px;
    font-weight: 500px;
    transition: .6s;
    font-size: 24px;
  }
  header.sticky .logo,
  header.sticky ul li a {
    color: rgb(2, 3, 92);
  }

@media all and (max-width: 800px) {
.navbar {
    flex-direction: column;
    position: relative;
}
.menu {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
}
.nav-list {
    list-style-type: none;
    width: 100%;
    text-align: center;
    padding-top: 10px;
    display: none;
}
.nav-list .list-items{
    display: block;
    border-top: 1px solid white;
}
.primary-logo {
    margin-top: 10px;
    margin-left: 10px;
}
.active {
    display: block;
}
}
.hero-break {
    width: 100%;
    color: white;
    margin-bottom: 100px;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 700px;
    margin-top: 50px;
}

.hero-container img {
    width: 70%;
    height: 100%;
    object-fit: fill;
}
.navbar-sep-line {
    border: 5px solid rgb(3, 3, 107);
    border-radius: 5px;
    width: 70%;
}
.contact {
    margin-top: 100px;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    min-height: 100vh;
    position: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contact .content{
    margin-top: 100px;
    padding: 0;
    box-sizing: border-box;
    max-width: 1000px;
    text-align: center;
}

.contact .content h2{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 50px;
    font-weight: 500;
    color: rgb(2, 3, 92);
}
.contact .content p{
    font-size: 22px;
    margin: 30px;
    padding: 0;
    box-sizing: border-box;
    font-weight: 300;
    color: rgb(2, 3, 92);
}
.container {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.container .contactInfo {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 50%;
    display: flex;
    flex-direction: column;
    color: rgb(2, 3, 92);
    font-size: 30px;
}
.container .contactInfo .box {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    padding: 20px 0;
    display: flex;
    font-size: 30px;
}
.container .contactInfo .box .icon {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-width: 60px;
    height: 60px;
    background: #c0bec9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
    color: black;
}
.container .contactInfo .box .text {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    margin-left: 20px;
    font-size: 20px;
    flex-direction: column;
    font-weight: 300;
}
.container .contactInfo .box .text h3 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 500;
    color: #010247;
}
.contactForm {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 40%;
    background: #c8c7cc;
    padding: 30px;
}
.contactForm h2{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 30px;
    font-weight: 500;
    color: rgb(2, 3, 92);
}
.contactForm .inputBox {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.contactForm .inputBox input, .contactForm .inputBox textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #010247;
    outline: none;
    resize: none;
}
.contactForm .inputBox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #646161;
}
/* Allows the iput box titles to float to the top*/
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span {
    color: #010247;
    font-size: 12px;
    transform: translateY(-20px);
    transition: transform 0.3s ease; /* Add transition */
}
.contactForm .inputBox input[type="submit"] {
    width: 100px;
    background: #010247;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}
@media (max-width: 991px)
{
    .contact {
        padding: 50px;
    }
    .container {
        flex-direction: column;
    }
    .container .contactInfo {
        margin-bottom: 40px;
    }
}

  /*  For footer   */ 
.container{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 1170px;
    margin: auto;
}
.row {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    width: 150%;
    justify-content: center;
}
ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}
.footer{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(1, 2, 56);
    color: white;
    padding: 70px 0;
}
.footer-col{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 25%;
    padding: 0 15px;
}
.footer-col h4{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}
.footer-col h4::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #fdfdfd;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer-col ul li:not(:last-child){
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.footer-col ul li a{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
}
.footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
}
.footer-col .social-links a{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #646161;
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
}

.footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
}

@media(max-width: 767px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media(max-width: 574px){
    .footer-col{
        width: 100%;
    }
}