h3 {
     color: #ffffff;
}


.header__menu .btn1 {
     font-size: 16px;
     font-weight: bold;
     background-color: #5243c2;
     color: #FEFEFE;
     padding: 8px; 
     width: 100%; 
     text-align: center;
     display: inline-block;
     border-radius: 5px;
     }

 img {
     width: 100px;
     height: auto;
}

 :focus {
     outline: 0;
}

.btn-custom {
     margin-top: 20px;
     background-color: transparent !important;
     border: 2px solid #ddd;
     padding: 12px 40px;
     font-size: 16px;
}



/*-- navigation--*/

.navigation.navbar {
     float: right;
}

.navigation.navbar-dark .navbar-nav .nav-link {
     padding: 0 25px;
     color: #fff;
     font-size: 16px;
     line-height: 20px;
}

.navigation.navbar-dark .navbar-nav .nav-link:focus,
.navigation.navbar-dark .navbar-nav .nav-link:hover {
     color: #fdd430;
}

.navigation.navbar-dark .navbar-nav .active>.nav-link,
.navigation.navbar-dark .navbar-nav .nav-link.active,
.navigation.navbar-dark .navbar-nav .nav-link.show,
.navigation.navbar-dark .navbar-nav .show>.nav-link {
     color: #fdd430;
}


/*-- header area --*/


/*--------------------------------------------------------------------- top banner area ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- layout new css ---------------------------------------------------------------------*/

.header {
     background: #0c0f38;
     width: 100%;
     padding: 20px 0px 20px 0px;
}

.logo a {
     font-size: 40px;
     font-weight: bold;
     text-transform: uppercase;
     color: #fff;
     line-height: 40px;
}

.banner_main {
     background: #0c0f38;
     background-size: 100% 100%;
     background-repeat: no-repeat;
     padding-bottom: 90px;
}

.text-bg h1 {
     color: #fff;
     font-size: 40px;
     line-height: 50px;
     padding-bottom: 25px;
     font-weight: bold;
}

.text-bg span {
     color: #fdd430;
     font-size: 25px;
     line-height: 15px;
     font-weight: bold;
}

.text-bg p {
     color: #fff;
     font-size: 17px;
     line-height: 28px;
     padding: 16px 0;
}

.text-bg a {
     font-size: 16px;
     font-weight: bold;
     background-color: #D31E94;
     color: #FEFEFE;
     padding: 8px 0px;
     width: 100%;
     max-width: 190px;
     text-align: center;
     display: block;
     border-radius: 20px;
     
}




.text-img figure {
     margin: 0px;
}

.text-img figure img {
     width: 100%;
}

.titlepage {
     text-align: center;
     padding-bottom: 60px;
}

.titlepage h2 {
     font-family: 'Roboto', sans-serif;
     font-size: 45px;
     color: #0c0f38;
     line-height: 40px;
     font-weight: bold;
     padding: 0;
}









@media(max-width:750px) {
    .main-container {
        padding: 2rem 5%;
    }
    .main-container h1 {
        font-size: 30px;
        line-height: 35px;
    }
    .paragraph {
        font-size: 15px;
        margin-bottom: 25px;
    }
    .btn-sec button {
        width: 80px;
        padding: 12px 5px;
        font-size: 10px;
    }
}


   
     
   
   
   .header__inner {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 20px;
   }
   
   @media screen and (max-width: 1250px) {
     .header__inner {
       padding: 10px 15px;
     }
   }
   
   .header__logo a > img {
     width: 150px;
   }
   
   .header .toggle-menu {
     display: none;
     cursor: pointer;
     
   }
   
   @media screen and (max-width: 1250px) {

     
     .header .toggle-menu {
       display: block;
       
       
     }
   }
   
   .header .toggle-menu i {
     color: rgb(255, 255, 255);
     font-size: 40px;
   }
   
   @media screen and (max-width: 1250px) {
     .header__menu {
       display: none;
     }
   }
   
   .header__menu ul {
     list-style: none;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   
   .header__menu ul li {
     padding: 10px 15px;
   }


   
   .header__menu ul a {
     color: #ffffff;
     font-size: 18px;
     text-decoration:none;
     position: relative;
   }
   
    


   .header__menu a:hover {
     color: #ffffff;
   }


   .header__menu a::before {
     content: "";
     position: absolute;
     display: block;
     width: 100%;
     height: 3px;
     bottom: -10px;
     left: 0;
     background-color: #ffffff;
     transform: scaleX(0);
     transition: transform 0.3s ease;
    
   }


   .header__menu a:hover::before {
     transform: scaleX(1);
   }










   
   .close-sidebar {
     position: fixed;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     z-index: 99;
     display: none;
   }
   
   .close-sidebar.active {
     display: block;
   }
   
   .sidebar.active {
     transform: translateX(0px);
   }
   
   .sidebar {
     position: fixed;
     top: 0;
     left: 0;
     width: 300px;
     height: 100%;
     background: #1800ea;
     z-index: 99999;
     display: none;
     transform: translateX(-300px);
     transition: all 500ms;
     
   }
   
   @media screen and (max-width: 1250px) {
     
     
     
   .sidebar {
       display: block;
     }
   }
   
   .sidebar__inner {
     padding: 30px;
   }

   .sidebar__logo img{
     width: 100px;
   }

   .sidebar__logo {
     display: flex;
     align-items: center;
     justify-content: center;
   }
   
   .sidebar__menu {
     padding: 20px 0;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .sidebar__menu ul{
     list-style:none;
     width:100%;
     padding-left:10px;
   }
   .sidebar__menu ul li {
     margin-bottom: 10px;
   }
   
   .sidebar__menu ul li a {
     font-size: 17px;
     color: #ffffff;
     padding: 0px 0px;
     transition: all 500ms;
     text-decoration:none;
   }
   
   .sidebar__menu ul li a:hover {
     color: #01003d;
     padding-left:5px;
   }
   .sidebar__menu .btn {
   font-size: 17px;
   font-weight: bold;
   background-color: #D31E94;
   color: #FEFEFE;
   padding: 8px; 
   width: 60%; 
   text-align: center;
   display: inline-block;
   border-radius: 20px;
   }


   






 
 
 
 
 
 ul li ul.dropdown li {
     display: block;
     
     
 }
 
 ul li ul.dropdown {
     margin-top: 10px;
     width: 200px;
     background-color:#5243c2;
     position: absolute;
     z-index: 999;
     display: none;
     border-radius: 10px;
     animation: fadeIn 1s;
     
 }
 
 
 ul li:hover ul.dropdown {
     display: block;
 }


 .icon-img {
     width: 50px;
 }



















