
/* Custom CSS for styling */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: 'Arial', sans-serif;*/
     font-family: 'Inter', sans-serif;
    background-color:#060606;
    /*color:#060606;*/

}
h1, h2, h3, h4, h5, h6, p, a{
  font-family: 'Inter', sans-serif !important;

}

::-webkit-scrollbar {
    display: none;
}
    
#navbar{
    background-color:#060606;
}

.banner-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 450px;
    /* Set your desired height */
    overflow: hidden;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 5%;
    margin-top:40px;
    margin-left:120px;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
    
/* Custom CSS to make all images the same size */
.img-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.img-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*.banner-text h2{*/
    /*margin-top:10px;*/
/*    color: #FFF;*/
    /*font-style:normal;*/
    /*font-size: 64px;*/
    /*font-weight: 600;*/
    /*line-height: normal;*/
    
/*}*/

#text-description-row .para{
    color: #A4A4A4;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 136%; /* 24.48px */
    margin-top: 16px;
}

#text-description-row{
    display: flex;
    justify-content: space-between; /* Distribute space between items */
    align-items: center;
    background-color:#060606;
}

.head{
    font-size: 35px;
    font-weight: 00;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
}
   
#text-desctiption{
    margin-top: 50px;
    background-color:#060606;
}

#mid-section{
    margin-top: 100px;
}

.footer {
    margin-top: 100px;
}

.links {
    margin-top: 2rem;
    left: 3rem;
}

.modal-header img {
    z-index: 10;
}

.buttons button {
    width: 100%;
}

.text-content h4{
    color: #FFF;
    font-family: Inter;
    font-size: 52px;
    font-weight: 600;
}

.text-content p{
    width: 312px;
    color: #A4A4A4;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 171%; /* 54.72px */
}

.logo-section span{
    color: #FDFDFD;
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
}

.search-bar{
    background: #4E4F51;
    border-radius: 5px;
    border:none;
    color: #FFF;
    font-family: Inter;
    font-size: 12px;
    font-weight: 400;
    padding-left:2px;
}

.input-group-text{
    background: #4E4F51;
    border:none;
    color:#FFF;
    padding-right:2px;
}

.input-group-text i{
    font-size:12px;
}

#navbarSupportedContent ul{
    border-radius: 5px;
    background: #4E4F51;
}

.text-white{
    color:#FFF;
}

.modal-heading p, .form-check p{
    color: #878787;
    font-family: Inter;
    font-size: 11px;
    font-weight: 500;
}

.modal-content{
    padding: 25.5px;
}
    #dropdown-content{
    padding: 10px;
    width: 183px;
    border-radius: 5px;
  }
  #dropdown-content a{
    line-height: 2;
    color: white;
    text-decoration: none;
    padding: 5px;
    font-size: 16px;
      
  }
  .navbar-nav li{
    border-radius:5px;
}
.navbar-nav li a{
    color:#fff;
}
 @media all and (min-width: 992px) {
    .dropdown-menu li{
        position: relative;
    }

	.nav-item .submenu{ 
		display: none;
		position: absolute;
		left:100%; top:-7px;
	}
	.nav-item .submenu-left{ 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu{ display: block; }
}	
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {
  .dropdown-menu .dropdown-menu{
      margin-left:0.7rem; margin-right:0.7rem; margin-bottom: .5rem;
  }
}	
/*nested dropdown*/

    .dropdown-menu{
        font-size: 16px;
        padding: 5px;
        width: 150px;
        line-height: 2;
    }
    /* Custom CSS styles */
    .dropdown-content {
      display: none;
      position: absolute;
    top: 30%;
    right: 5%;
    background-color: #4E4F51;
    border-radius: 10px;
    width: 150px;
      background-color: #4E4F51;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      padding: 10px;
      z-index: 1;
    }
    .dropdown-content a{
       font-size: 15px;
    color: #fff;
    text-decoration: none;
    }

    .show-dropdown {
      display: block;
    }
    .dropdown-menu li:hover{
        background: #7c7b7b;
    }
F
