*{
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: roboto;
    src: url(fonts/RobotoCondensed-Regular.ttf);
}

@font-face {
    font-family: cambria;
    src: url(fonts/Cambria-Font-For-Windows.ttf);
}

body{
    font-family: roboto;
    text-align: center;
}

header{
    height: 131px;
    width: 100%;
}

header .nav1{
    height: 41px;
    width: 100%;
    display: flex;
    background: #FF8A00;
}

.nav1 h1{
    color: white;
    display: none;
}

.nav1 img{
    width: 3%;
    display: none;
}

header .nav2{
    height: 90px;
    width: 90%;
    margin: 0PX AUTO;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav2 .logo{
    display: flex;
    align-items: center;
    width: 30%;
    gap: 5px;
}

.nav2 img{
    width: 18%;
}

.nav2 h1{
    color: #FF8A00;
    font-weight: 400;
    font-family: roboto;
}

.nav2 .navbar{
    /* background: #121526; */
    width: 70%;
}

.nav2 ul{
    display: flex;
    list-style-type: none;
    gap: 25px;
    font-size: 16px;
}

.nav2 ul li a{
    text-decoration: none;
    color: black;
    font-family: roboto;
}

.nav2 ul li a:hover{
    color: #FF8A00;
    transition: 0.5s;
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
}

/* responsiveness  */

@media (max-width: 768px){

    header .nav1{
        height: 41px;
        width: 100%;
        display: flex;
        background: #FF8A00;
        align-items: center;
    }
    
    .nav1 h1{
        color: white;
        display: flex;
        font-size: 20px;
        display: none;
    }
    
    .nav1 img{
        width: 10%;
        display: flex;
        display: none;
    }
    
    header .nav2{
        height: 90px;
        width: 90%;
        margin: 0PX AUTO;
        background: white;
        display: flex;
        justify-content: space-between;
        /* gap: 100px; */
        align-items: center;
        position: relative;
    }
    
    .nav2 .logo{
        display: flex;
        align-items: center;
        width: 70%;
        gap: 5px;
        /* background: red; */
        /* display: none; */
    }
    
    .nav2 img{
        width: 30%;
    }
    
    .nav2 h1{
        color: #FF8A00;
        font-weight: 400;
        font-size: 150%;
        /* display: none; */
    }
    
    .nav2 .navbar{
        /* background: #121526; */
        width: 30%;
    }
    
    .nav2 ul{
        display: none;
        list-style-type: none;
        /* gap: 25px; */
        /* font-size: 16px; */
    }
    
    .nav-links{
        display: none;
    }
    
    .nav2 ul li a{
        text-decoration: none;
        color: black;
    }
    
    .nav2 ul li a:hover{
        color: #FF8A00;
        transition: 0.5s;
    }
    
    .nav2 .navbar .hamburger-menu{
        display: flex;
        position: absolute;
        right: 10px;
        top: 32px;
    }
    
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 64%;
        background: white;
        z-index: 999;
        padding: 20px;
        padding-right: 0px;
        transition: transform 0.5s ease-in-out;
        transform: translateX(0);
        text-align: left;
    }
    
    .nav-links.active a {
        text-align: center;
        padding: 10px 0;
        font-size: 18px;
        color: black;
        text-decoration: none;
        transition: color 0.3s ease-in-out;
    }
    
    .nav-links.active a:hover {
        color: #FF8A00;
    }
    
    .nav-links.active .close-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        color: #333;
    }
    
    .nav-links.active .close-icon img {
        width: 20px;
        height: 20px;
    }
    

}


/* responsiveness  */


.hero{
    width: 100%;
    height: 701px;
    background: url(images/bg-image.png);

    /* background-blend-mode: lighten; */
    /* position: absolute; */
}

/* her0 */

/*.hero{*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    color: #ffffff;*/
/*}*/

.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 701px;
    
}

.hero .content h1{
    font-family: cambria;
    font-size: 104px;
    font-weight: 700;
    color: white;
}

.hero .content h2{
    font-family: cambria;
    font-size: 60px;
    font-weight: 700;
    color: white;
}


.about{
    width: 45%;
    line-height: 30px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
@media (max-width: 767px) {
    .about {
        width: 100%;
    }
}

.hero .content h3{
    background: white;
    color: #FF8A00;
    text-transform: uppercase;
    padding: 17px 39px 17px 39px;
    border-radius: 5px;
    margin-top: 60px;
}

.hero .content a{
    text-decoration: none;
}

/* hero  */

footer{
    width: 100%;
    height: 110px;
    background: #FF8A00;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
footer {
    width: 100%;
    height: 50px;
    background: #FF8A00;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    align-items: center;
}
footer p{
   margin-bottom: 0px;
}
.mb-0{
    margin-bottom: 0px;
}
 @media screen and (max-width: 480px) {
          
            .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  .navbar .nav-links .dropdown:hover .dropdown-menu {
    display: block;
    max-height: 100%;
}
        }
 @media screen and (max-width: 480px) {
   .payment-image{
    width: 50% !important;
    }
} 