body{
    overflow-x: hidden;
    
    
}

.fade-up {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease-in, transform 1s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease-in, transform 1s ease-out;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s ease-in, transform 1s ease-out;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.dashboard_nav_container{
    margin-top: 30px;
    padding: 30px;
}

.num_result {
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    line-height: 50px; /* Center text vertically */
    text-align: center; /* Center text horizontally */
    border-radius: 50%; /* Makes it circular */
    background-color: #ccc; /* Background color */
    color: #555555; /* Text color */
    position: absolute;
    transition: 0.5s ease;
    
    
}

.dashboard_nav{
    margin: 0 auto;
    height: auto;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #626262;
    opacity: 0.3;
    transition: 0.5s ease;
    cursor: pointer;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.589);
    border-radius: 2%;
    padding: 30px;

}

.dashboard_nav:hover{
    opacity: 1;
    box-shadow: 0 4px 8px 0 #00df0080, 0 6px 20px 0 #d000d080;
    color: black;
}

.dashboard_nav_icon{
    background: linear-gradient(45deg, #626262 ,  #626262, #626262, #626262);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 10vw;
}

.dashboard_nav:hover .dashboard_nav_icon{
    background: linear-gradient(45deg, #00e800 ,  #00e800, #d201d2, #d201d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    opacity: 1;

}

.dashboard_nav:hover .num_result{
    background-color: #00C900;
    color:white;

}

.message_div{
    background-color: white;
    width: 25%;
    padding: 4px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    text-align: center;
    position: fixed;
    border-radius: 5px;
    z-index: 101;
    top: 5%;
    left: 38%;
    display: none;
    font-style: italic;
}


.login_body{
    background-image: url('/bgtours.gif');
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat;
    background-attachment: fixed; 
}

#login_div{
    width: auto;
    background: none;
    height: AUTO;
    border-radius: 10px;
    padding: 30px;
    color:#005500;
}


.icon{
    font-size: 25px;
    color: #00C901;
}

#btn_login{
    width: 100%;
    background-image: linear-gradient(to right, #00C901 , #AA00AB);
    border: none;
    display: block;
    border-radius: 10vw;
}

#btn_login:hover{
    background-image: linear-gradient(to left, #00C901 , #AA00AB);

}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
background: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: none; 
border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #DEDEDE; 
}

a, a:active, a:visited, a:link{
    text-decoration: none;
    color: black;
}

.bg_container {
    background-image: url('/bgtours.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 100vh; /* Full viewport height */
    position: relative;
    margin: auto;
}

.bg_container2 {
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
    padding: 30px;
}

.bg_container2::before {
    content: "";
    background-color: white;
    background-image: url('/services_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Ensure the background is behind the content and overlay */
}

.bg_container2::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.704); /* Adjust the opacity value as needed */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure the overlay is behind the content but in front of the background image */
}

.bg_content_container {
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center;
}

.bg_content_container2 {
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
}




.company_subtitle{
    color: white;
    font-size: 4vw;
    font-family: "Poppins", sans-serif;

}

.bg_content img {
    width: auto; /* Ensure the image is responsive */
    height: 18vw;
}

.up-down-icon{
    font-size: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease; 
    
}

.rotated {
    transform: rotate(180deg); /* Rotate the icon */
}

.dropdown:hover .up-down-icon{
    transform: rotate(180deg); 
}



#main_header {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    position: absolute;
    z-index: 5;
    width: 100%;
}

#main_header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#main_header ul li {
    float: right;
    margin-left: 30px;
    margin-right: 30px;
    position: relative;
}

#main_header ul li a {
    display: block;
    text-align: left;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    color: #00C900;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    padding-bottom: 15px;
}

.dropdown_menu {
    display: none;
    position: absolute;
    background-color: white;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    width: auto;
    border-radius: 3px;
    text-transform: uppercase;
    color: #00C900;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
}

.dropdown_menu a {
    margin-top: 10px;
    margin-bottom: 5px;
    text-decoration: none;
    color: #00C900;
}


#main_header ul li a:hover {
    color: #AA00AB;
}


.header{
    padding: 10px;
    padding-left: 40px;
    padding-right: 20px;
    color: black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(to right, #00C901 , #700070);

}

.sidenav {
    height: 100%;
    width: 25%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    display: block;
}



.main_nav_btn{
    float: right;
    color: #00C900;
    display: none;
}

.sidenav ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.sidenav ul li{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.sidenav ul li a{
    display: block;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    color: #818181;
}

.sidenav ul li a:hover{
    background-color: #555;
    color: white;
    text-decoration: none;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    display: none;
}

#mySidenav{
    z-index: 5;
    display: none;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
}


#mySidenav ul li a{
    display: block;
    padding: 20px 30px;
    text-decoration: none;
    font-size: 18px;
    color: #00C900;
    font-size: 3vw;

}

#mySidenav ul .dropdown2 .dropdown_menu2 {
    display: none;
    width: auto;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    padding-left: 30px;

}


#mySidenav ul .dropdown2 .dropdown_menu2 a {
    text-decoration: none;  
    font-size: 2vw;
    
}

#mySidenav ul li a:hover{
    color:#AA00AB;
    background-color: transparent;
}

.index_content{
    padding: 100px;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
    background-color: black;
    font-family: "Poppins", sans-serif;
    position: relative;
    color: white;
    
}

.content_title{
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 1000;
    /* color: white; */
    background: linear-gradient(45deg, #00e800 ,  #d201d2, #d201d2, #d201d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 4vw;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
                 -2px -2px 4px rgba(255, 255, 255, 0.3);
}

.dashboard_title{
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 1000;
    /* color: white; */
    color: black;
    font-size: 3vw;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
                 -2px -2px 4px rgba(255, 255, 255, 0.3);
}

.plain_title{
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 1000;
    color: white;
    font-size: 4vw;
}

.plain_subtitle{
    font-family: "Poppins", sans-serif;
    color: white;
    font-size: 1vw;
}

.content_subtitle{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: white; 
    
}

.content_title_center{
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 1000;
    /* color: white; */
    background: linear-gradient(45deg, #00e800 ,  #00e800, #d201d2, #d201d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 4vw;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
                 -2px -2px 4px rgba(255, 255, 255, 0.3);
}

.new_package_row{
    display: flex;
    flex-wrap: wrap;
}

.new_package_col{
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    text-align: left;
}



.new_package{
    padding: 10px;
    width:100%;
    font-size: 2vw;
    font-family: "Poppins", sans-serif;
    border-radius: 10vw;
    background-image: linear-gradient(to right, #00C901 , #AA00AB);
    color: white;
    border: none;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
                 -2px -2px 4px rgba(255, 255, 255, 0.3);
}



.new_package_content{
    padding-top: 10px;
    color: white;
    font-family: "Poppins", sans-serif;
    flex-grow: 1;
}

.package_content{
    line-height: 2;
    padding-top: 10px;
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 25px;

}

.package_content table tr td{
 
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 23px;


}


.new_package_category{
    font-size: 3vw;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}

.new_package_imgcontainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.new_package_imgcontainer img {
    width: 40vw;
    height: 350px;
    object-fit: cover; /* Preserve the aspect ratio and ensure the image fits within its container */
    border-radius: 2%;
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.258), 0 6px 20px 0 rgba(255, 255, 255, 0.258);

}



.new_package_content_container {
    display: flex;
    justify-content: center;
    align-items: center;
    
    height: 100%; /* Ensure the container has height */
}


.admin_name a{
    position: absolute;
    top: 20px;
    font-size: 25px;
    color: white;
    text-transform: uppercase;
    
}

.navbar-btn {
    font-size: 30px;
    cursor: pointer;
    top: 15px;
    left: 15px;
    z-index: 1;
}

.content_container{
    padding: 30px;
    margin: 20px;
    margin-top: 30px;
    background-color: white;
    border-radius: 10px;
    width: 72%;
    float: right;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);


}

#company_logo{
    height: 5vw;
    width: auto;
}

#company_logo2{
    height: 10vw;
    width: auto;
}


label{
    font-weight: lighter;
}


.n_item:hover{
    background-color: rgb(229, 229, 229);
    cursor: pointer;
}

.records{
    overflow-x: auto;
}

.btn_closemodal, .btn_closemodal2{
    cursor: pointer;
}

.modal{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(128, 128, 128, 0.5);
    z-index: 5;
    justify-content: center;
    align-items: center;
}

.modal2{
    
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(128, 128, 128, 0.5);
    z-index: 6;
    justify-content: center;
    align-items: center;

}

#packages_item_modal{
    z-index: 15;
    background: rgba(45, 45, 45, 0.542);

}

#n_item_div{
    background-color: black;
    width: 90%;
    max-height: 90%;
    padding: 30px;
    padding-top: 50px;
    padding-bottom: 0;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: auto;


}



.bg_modal{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 5;
    justify-content: center;
    align-items: center;
}

#package_items_div{
    width: 90%;
    height: 90%;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    overflow: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 20px;
}

#item_itinerary_div{
    width: 50%;
    max-height: 90%;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    overflow: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 20px;
}

.row{
    padding-top: 5px;
    padding-bottom: 5px;
}

.services_container{
    padding-top: 30px;
    padding-bottom: 80px;
    margin-bottom: 50px;
    border-radius: 10%;
}

.service_row{
    
    padding-top: 200px;
    overflow: auto;
}

.package_row{
    
    padding-top: 125px;
    overflow: auto;
}

.shortcutsdiv{
    width: 20vw;
    height: 20vw;
    margin: 0 auto;
    
}

.mainImage{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2%;
    box-shadow: 0 4px 8px 0 #00c90080, 0 6px 20px 0 #ab00ab80;
    
}

.services_title{
    font-size: 1vw;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    color: white;
    margin-top: 25px;
    margin-bottom: 25px;
}

.centeredtxt{
    text-align: center;
}


.btn_services, .btn_packages, #btn_submit{
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 50px;
    background-image: linear-gradient(to right, #02ab02 ,  #9a029a);

    color: white;
    transition: ease 0.5s;
    font-family: "Poppins", sans-serif;

}

/* .btn_services:hover{
    border: 2px solid #d201d2;

} */



.packages_nav_div{
    width: 100%;
    height: auto;
    overflow: none;
}

.packages_nav{
    width: 100%;
    height: auto;
    margin: 0 auto;
      
}

.package_shortcutsdiv{
    position: relative;
  text-align: center;
  color: white;
  margin-bottom: 20px;
  height: 250px;
  width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btn_package_shortcuts{
    height: 100%;
    width: 100%;
   object-fit: cover; 
   margin: 0 auto;
    
}

.package_row_index{
    padding: 0;
}

.indexgallery_col{
    padding-right: 0;
}


.package_shortcutsdiv:hover .package_overlay{
    opacity: 1;
}


.package_overlay{
    position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transition: .5s ease;
  background: rgba(0, 0, 0, 0.463);
  display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.package_centeredtxt {
color: white;
font-weight: bold;
  font-size: 30px;
  text-shadow: 2px 2px 4px black;
  
}

.slidediv{
    width:100%;
    text-align: center;
}

.btn_slide{
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid #00C900;
    color: white;
    transition: ease 0.5s;
    font-family: "Poppins", sans-serif;

}

.btn_slide:hover{
    border: 1px solid #d201d2;

}

.how_div{
    background-color: black;
    border-radius: 10%;
    padding: 50px;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 8px 0 #00c90080, 0 6px 20px 0 #ab00ab80;
    color: white;
    text-align: center;
    font-family: "Poppins", sans-serif;
    

}

.how_icon{
    font-size: 7vw;
}

.footer{
    z-index: 5;
    
}


.footer a{
    text-decoration: none;
    color: white;
}

.footer a:hover{
    text-decoration: none;
    color: #00C900;
}

.footer p{
    line-height: 1.6;
}

p{
    color: white;
}

.plain_content{
    font-family: "Poppins", sans-serif;
    color: white;
    font-size: 25px;
    padding-right: 30px;
}



.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
}

.mySlides {
    display: none;
    top: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    min-height: 100vh;
    animation-name: fade;
    animation-duration: 1.5s;
   
}

.uploaded_images {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.overlay_slideimages {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
}

/* Fading animation */
@keyframes fade {
  from {opacity: .5} 
  to {opacity: 1}
}

.file-item a{
    color: white;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    cursor: pointer;

}


.file-item a:hover{
    color: #00C900;

}

.image_grid_row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}
  
.image_grid_column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}
  
.image_grid_column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    border-radius: 10px;
}


.social_icon{
    font-size: 20px;
}

#about_us_info{
    font-size: 20px;
    line-height: 2;
    text-align: justify;
    margin-top: 100px;
}

.teams_container .row .col-md-4{
    text-align: center;
}

.teams_container .row .col-md-2{
    text-align: center;
}


.teams_container .row .col-md-3{
    text-align: center;
    margin-bottom: 30px;
}

.teams_container .row .col-md-6{
    text-align: center;
    margin-bottom: 30px;
}

.team_pics{
    height: 15vw;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 #00df0080, 0 6px 20px 0 #d000d080;
    margin-bottom: 20px;
}

.contact_content{
    padding-top: 150px;
}

.contact_div{
    margin-top: 80px;

}

.contact_div_left_col{
    font-size: 18px;
}

.contact_col{
    padding-left: 50px;
    padding-right: 50px;
}

.contact_col a{
    color: white;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    cursor: pointer;

}

.contact_col a:hover{
    color: #00C900;

}

.contact_label{
    font-size: 16px;
    
}

.contact_inpt{
    margin-top: 10px;
    background-color: black;
    padding: 5px;
    color: white;
}

.map{
    width: 100%;
    height: 450px;
    border-radius: 15px;
}

.pagination{
    width: 100%;
    text-align: center;
    
}

.page-link{
    font-size: 15px;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
}

.btn_pagination{
    font-weight: bold;
    color:white;
    text-transform: uppercase;
    cursor: pointer;
}

.otherinfo_content{
    padding-left: 3.5vw;
    padding-right: 3.5vw;
}

.service_content{
    padding-right: 60px;
}


@media (max-width: 900px){
    #n_item_div{
        padding: 10px;
        padding-top: 50px;
        padding-bottom: 0;
    
    
    }    
    
    .otherinfo_content{
        padding-left: 0;
        padding-right: 0;
    }

    .service_content{
        padding-left: 30px;
        padding-right: 30px;
    }

    .map{
        height: 225px;
    }
    .dashboard_nav{
        margin-bottom: 30px;
    width: 90%;
    }
    
    .dashboard_nav_icon{
        font-size: 20vw;
    }
    
    .contact_div_right_col{
        margin-top: 50px;
    }

  
    .team_pics{
        height: 50vw;

    }

    .image_grid_column {
        flex: 100%;
        max-width: 100%;
      }
    
    .service_row{
        padding-top: 150px;
    }

   
    
    .content_title, .content_title_center, .dashboard_title{
        font-size: 10vw;
        
    }
    
    .plain_title{
        font-size: 8vw;
    }

    .new_package_category{
        font-size: 7vw;
    }

    .new_package{
        font-size: 5vw;
    }

    .shortcutsdiv{
        width: 100%;
        height: 100%;
        margin: 0 auto;
        text-align: center;
        
    }

    .mainImage{
        width: 100%;
        height: 250px;
    }

    .services_container{
        padding-bottom: 30px;
        margin-bottom: 0;
    }

    .services_title{
        font-size: 6vw;
    }
    
    .btn_services, .btn_packages{
        width: 80%;
    }
    .new_package_imgcontainer img {
        width: 90vw;
        height: 350px;
        object-fit: cover; /* Preserve the aspect ratio and ensure the image fits within its container */
        border-radius: 2%;
        box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.258), 0 6px 20px 0 rgba(255, 255, 255, 0.258);
    
    }

    #package_mainimage{
        width: 70vw;
        height: 300px;


    }

    .main_nav_btn{
        display: block;
    }

    #max_nav{
        display: none;
    }

    #login_div{
        width: 90%;
    }

    #company_logo{
        height: 10vw;
        width: auto;
    }

    .sidenav{
        width: 80%;
        display: none;
    }

    #mySidenav{
        width: 50%;
        display: none;
    }

    .content_container{
        width: auto;
        float:none;
        box-shadow: none;
        padding: 20px;

    }

    .btn{
        margin: 2px;
        margin-top: 10px;
        float: right;
    }

    .sidenav .closebtn{
        display: block;
    }

    .message_div{
        width: 80%;
        left: 10%;
    }

    .packages_nav_div{
        width: 95%;
    
    }

}