
@font-face {
    font-family: 'MADEOkineSans';
    src: url('fonts/MADEOkineSansPERSONALUSE-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


*{
    box-sizing: border-box;
}

 h2, h3, h4, h5, h6 {
    font-weight: 600;
}
h1{
    font-size: 36px;
    font-weight: 800;
}
/* .container-fluid{
    padding: 0 30px 0 30px;
} */

body {
    font-family: 'MADEOkineSans', sans-serif;
    background-color: #fcfcfb;
}

.logo_container img{
    width: 210px;
}

.img-hero {
    position: relative;
    background: #080808;
    background-size: cover;
    background-position: center;
    /* height: 75vh; */
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}
.main-row {
    position: relative;
    z-index: 50;
    padding: 100px 0px;
    /* padding-top: 200px; */
    color: white;
    display: flex;
}
.logo1{
    width: 90%;
    height: auto;
    /* margin-left: 142px; */
    float: left;
    background: #fffffff5;
    padding: 50px;
    border-radius: 50px;
}
.logo2{
    width: 90%;
    height: auto;
    /* margin-left: 100px; */
    float: right;
    background: #fffffff5;
    padding: 50px;
    border-radius: 50px;
}
.menu-item{
    padding-left: 600px;
}
.nav-item a{
    font-size: 20px;
    font-weight: 600;
}
.nav-item a:hover{
    background-color: rgb(187, 187, 255);
    border-radius: 8px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;;
}
.contant{
    font-size: 16px;
    text-align: left;
    justify-items: left;
    margin-top: 10px;
}
.contant-2{
    font-size: 16px;
    text-align: left;
    justify-items: left;
    margin-top: 10px;
}
.menu1 {
    padding-inline-start: 40px;
}
.button{
    font-size: 20px;
    font-weight: 600;
}
.h2{
    text-align: center;
    font-size: 37px;
    font-weight: 600;
    line-height: 45px;
    color: #004085;
    padding-bottom: 10px;
}
.form-control {
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #464141;
}
.form-control:hover{
    border-color: #007bff;
}


.contact{
    margin-top: 120px;
    color: #fff;
    
}
.content{
    color: #fff;
    margin-top: 50px;
}
.last-p{
    margin-bottom: 50px;
}


  @media (orientation: landscape) {
    body {
      grid-auto-flow: column;
    }
  }
@media (max-width: 992px) {
    .img-hero {
        height: auto; /* Adjust height for smaller screens */
    }
    .logo1 {
        width: 100%;
        /* margin-left: 89px; */
    }
    .logo2 {
        width: 100%;
        /* margin-left: 59px; */
    }
}
@media (max-width: 768px) {
    h2.my-4.h2 {
        font-size: 25px;
    }
    .my-4 {
        margin: 10px 0px !important;
    }
    .mb-5 {
        margin-bottom: 10px !important;
    }
    .mt-5 {
        margin-top: 15px !important;
    }
    /* .img-hero {
        height: 50vh; 
    } */
    .main-row {
        padding: 50px 0px;
    }
    .logo1 {
        width: 100%;
        /* margin-left: 88px; */
    }
    .logo2 {
        width: 100%;
        /* margin-left: 72px; */
    }
    h1 {
        font-size: 26px;
    }
    h2, h3, h4, h5, h6 {
        font-size: 20px;
    }
    /* .container-fluid{
        padding: 0 5px 0 5px;
    } */
  
}
/* @media (max-width: 577px) {
    .img-hero {
        height: 50vh; 
    }
} */
@media (max-width:576px) {
    .img-hero
    {
        margin-bottom: 15px;
    }
    .logo2, .logo1 {
        width: 100%;
        float: left;
        padding: 25px;
        border-radius: 10px;
    }
    .logo1 {
        margin-bottom: 30px;
    }
    .contact {
        margin-top: 41px;
    }
    

}
@media (max-width: 430px) {
    h1 {
        font-size: 20px;
    }
    h2, h3, h4, h5, h6 {
        font-size: 16px;
    }
    /* .contact {
        margin-top: 15px;
    } */
    .last-p {
        margin-bottom: 0px;
    }

}


/* Keyframes for the animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animation to logo1 */
.logo1 {
    animation: fadeIn 2s ease-in-out;
    transition: transform 0.5s ease-in-out;
}

.logo1:hover {
    transform: scale(1.1);
}

/* Apply animation to logo2 */
.logo2 {
    animation: fadeIn 2s ease-in-out;
    transition: transform 0.5s ease-in-out;
}

.logo2:hover {
    transform: scale(1.1);
}


/* Keyframes for the button animation ===============================*/
@keyframes buttonHover {
    from {
        background-color: #007bff; /* initial color */
        transform: scale(1);
    }
    to {
        background-color: #454545; /* hover color */
        transform: scale(1.1);
    }
}

/* Apply animation to the button */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* Hover effect */
.button:hover {
    animation: buttonHover 0.3s forwards;
}

/* Optional: active state */
.button:active {
    transform: scale(1.05);
    background-color: #004085;
}
input.button.width-btn {
    width: 250px;
    text-transform: uppercase;
}
.mt-50
{
    margin-top: 50px;
}













