
body{
    height: 100%;
    margin: 0;
    padding:0;
    background-color:#f3f3f3;
    overflow-y:auto;
  }

  .main-background-color{
    background-color:#f3f3f3;
  }


/*-----------   GENERAL STYLES  -------------  */

/*general style for blocks in sidebars (left-right)*/
.sidebar-block{
   
    background-color:#fff;
    padding:20px 10px;
    box-shadow: 10px 10px 52px -52px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 52px -52px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 52px -52px rgba(0,0,0,0.75); 
    margin-bottom:30px;
   
}


.primary-button{
    background-color: #27293D;
    color:#fff;
}

.default-button{
    background-color: #fff;
    color:#000;
    border:1px solid #000;
}

.blue-border-button{
    text-align:center;
    background-color: transparent;
    border:1px solid #79cbe9; 
    white-space: nowrap;
}

.hr-seperator{
    width:50%;
    margin-top:20px;
    margin-bottom:20px;
}





/*-----------   MAIN TOP MENU -------------  */

.navbar{
    background-color: #fff;
    border-bottom:2px solid #f3f3f3;
    margin-bottom:15px;
    display:flex; 
    justify-content:space-between; 
    padding:10px 20px;
}




.navbar-logo img{
    width:150px;
}

.search-input {
    padding-right: 36px;
  }
  

.navbar-search{
    
    padding:10px 0px;
    display:flex;
    justify-content:center ;
}

.navbar-search-input{
   
    border:none;
    padding:10px;
    margin-left:10px;
    width:100%;
    display:flex;
   
}

.search-input{
    border-radius:20px;
    background-color: #f5f5f5;
    border:0px;
    padding:10px;

}

  .search-input::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('path/to/search-icon.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
   
  }


  .input-group-text{
    background-color: #f5f5f5;
    border-left:none;
    border-radius:20px;
    border-right:none;
    border:0px;

}


.navbar-icons-profile{
    display: flex; 
    flex-wrap: nowrap;  
    justify-content: space-between;
    padding:0 30px;
    
}

.navbar-icons{
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
} 

.navbar-icons > *{
    margin-right:20px; 
    
} 

.navbar-icons img{
   
    width:25px;
} 


.navbar-user-icon{
    padding: 5px 10px; 
    background-color: #000; 
    color: #fff; 
    border-radius: 50%;
    width: 50px; 
    margin-right: 3px;
}

.dropdown-menu{

    margin-top:20px!important;
    margin-left:-50px;
}


@media only screen and (min-width: 769px) and (max-width: 992px) {


        .navbar-search{
    
           margin-left:50px;
        
        }
        .dropdown-menu{

            
            margin-left:-65px;
        }
  }




@media only screen and (min-width: 577px) and (max-width: 768px) {

    
    .search-input {
        padding-right:0;
      }
      
    
    .navbar-search{
        
        padding:10px 0px;
        display:flex;
        justify-content:center ;
        margin-left:0px;
      
    
    }

    .dropdown-menu{
    
      
        margin-left:-70px;
    }
 
    
   
  }


@media only screen and (max-width: 576px) {
    .navbar{
        background-color: #fff;
        border-bottom:2px solid #f3f3f3;
        margin-bottom:15px;
        display:flex; 
        flex-direction: column;
        justify-content:center; 
        padding:15px 20px;
    }
    .navbar-logo img{
        width:180px;
    }
    .navbar-search{
        width:100%;
        display:block;
        margin:auto;
    }

    .navbar-icons-profile{
       
        width:100%; 
        padding:0 10px;
        margin-top:15px;
        /*flex-direction: row-reverse;*/
    }

    .navbar-icons{
       
        display: flex; 
        justify-content:flex-start; 
        align-items: center;        
    } 

    .navbar-icons > *{
        margin-right:25px; 
        
    } 

    .dropdown-menu{
    
      
        margin-left:-70px;
    }
    
   
  }

/*----------------------------------------------------------------------   LOGIN-SIGNUP PAGE -------------------------------------------------------------------------------  */

.login-page-background,
.signup-page-background,
.forgot-password-page-background
{

    background: #27293D;
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    z-index: -1;
    display: flex;
    justify-content: center;
    min-height: 100vh;
   
}


.login-component,
.signup-component,
.forgot-password-component{

    width:80%;
    background: #fff;
    border-radius: 8px;
    margin:auto;
    margin-top:100px;
    height:auto;
      
}



.login-banner,
.forgot-password-banner,
.signup-banner
{
    box-sizing: border-box;
    padding: 48px 49px 48px 48px;
    border-right:1px solid rgb(238, 238, 238);

    /* Auto layout */
  
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
    width: 100%;
    height: 100%;
}




.login-banner .logo img ,
.signup-banner .logo img,
.forgot-password-banner .logo img
{
    width: 70%;
    height: auto;
}


.signup-banner{
    box-sizing: border-box;
    flex: none;
    order: 0;
    flex-grow: 0;
    width: 100%;
    height: 100%;
    padding:0px 50px; 
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
}


.login-banner .banner img{
    width: 100%;
    height: auto;
}


.login-form,
.signup-form,
.forgot-password-form{
      
    padding:40px 55px 70px;
    width: 100%;
    height: 100%;  
    flex: none;
   
}

.banner img{
    width:100%;
}



.login-form input[type="text"],
.login-form input[type="password"],
.signup-form input[type="text"],
.signup-form input[type="password"]
{
    margin-bottom:20px;
    padding:12px;
    border-radius:2px;
    font-size:16px;
}


.password-container {
    position: relative;
  }
  
  .password-input {
    padding-right: 30px; /* Adjust this value based on your design */
  }
  
  .password-toggle {
    position: absolute;
    right: 15px; /* Adjust this value based on your design */
    top: 50%; /* Adjust this value based on your design */
    transform: translateY(-50%);
    width: 20px; /* Adjust this value based on your design */
    height: 20px; /* Adjust this value based on your design */
    background-image: url('images/fi-br-eye.png'); /* Replace with your eye icon image path */
    background-size: cover;
    cursor: pointer;
  }


.submit-login-button,
.submit-signup-button{

    width:100%;
    display:block;
    margin-top:30px;
    margin-bottom:10px;
    border-radius:5px;
    padding:10px;
    
}


.forgot-password{
    display:block;
    text-align:center;
    margin-top:-3px;

}

.forgot-password a{
    color:#000;
    text-decoration:none;
    
}

.facebook-google-login{
    margin-top:20px;
    margin-bottom:20px;
    display:flex;
    flex-direction: column;
    align-items: center;
}

.facebook-button , .google-button{
    width:70%;
    font-size:17px;
    display:flex;
    align-items: center;

}

.facebook-button{

    padding:7px 7px;
}

.facebook-button i {
    text-align:left!important;
    font-size:22px;
}

.facebook-button span {
    text-align:center;
}

.google-button{
background-color: #fff;
box-shadow: 6px 5px 15px -10px rgba(0,0,0,0.75);
-webkit-box-shadow: 6px 5px 15px -10px rgba(0,0,0,0.75);
-moz-box-shadow: 6px 5px 15px -10px rgba(0,0,0,0.75);
border: 1px solid #e8e8e8;
}


.google-button img{
   width:55px;
   text-align:left;
}

.google-icon,.facebook-icon{
    margin-right:10px;
}

.signup-section{
    margin-top:40px;
    text-align:center;
    width:100%;
}

.signup-section p{
    font-size:20px;
}


.signup-section button {
    text-align:center;
     padding:10px 0px;
     width:100%;
     background-color: transparent;
     border:1px solid #3eb3dd; 
     font-size:18px;
     white-space: nowrap;
     
 }


.signup-section a{
 
    color:#000;
    text-decoration:none;
}

.footer {

  width:80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:#fff;
  margin:auto;
  margin-top:35px;
  font-size:13px;
  letter-spacing:1px;
  font-weight:200
}

.links {
  display: flex;
  
}

.links a {
  margin-right: 10px;
  text-decoration: none;
  color:#fff;
  margin-right:20px;
}

.links a:last-child {
  margin-right: 0;
}

.copyright {
  margin-left: auto;
}

#have-read-terms-checkbox{
    font-size:15px;
}

@media only screen and (min-width: 993px) and (max-width: 1280px) {

    .facebook-button , 
    .google-button{

        width:100%;
        
    }


    .login-form,
    .signup-form,
    .forgot-password-form{

        padding:40px 35px 70px;
        border-left:none;
    }

    .footer{
        padding-bottom:50px;
    }
  }

@media only screen and (min-width: 767px) and (max-width: 992px) {

    .login-page-background,
    .signup-page-background,
    .forgot-password-page-background
    {
        overflow: hidden;
       padding-bottom:30px;
       
    }

    
    .login-form,
    .signup-form,
    .forgot-password-form{

        padding:40px 35px 70px;
        border-left:none;
    }


    .facebook-button , .google-button{
        width:100%;
        
    
    }
   
}




@media only screen and (max-width: 575px) {

    .login-page-background,
    .signup-page-background,
    .forgot-password-page-background
    {
        overflow: hidden;
        padding:15px;
    }

    .login-component,
    .signup-component,
    .forgot-password-component{

        width:100%;
        margin-top:50px;
         
    }


    .login-form{
        padding:0px;
    }


   
    .signup-form
   {

        padding:40px 35px 70px;
        border-left:none;
    }

    .login-form,
    .forgot-password-form
   {

        padding:0px 35px 70px;
        border-left:none;
    }


    .login-banner .logo img ,
    .signup-banner .logo img,
    .forgot-password-banner .logo img
    {
        width: 80%;
        height: auto;
        margin-top:20px;
        margin-left:25px;
      
    }

    .facebook-button , .google-button{
        width:100%;
        
    }

    .footer {
  
        display: block;
        font-size:15px;
      }

      .links{
        display:flex;
        justify-content: space-between;
        
      }

      .copyright{
        margin-top:30px;
        text-align: center;
      }


}










/*----------------------------------------------------------------------------------------------   FEED PAGE ------------------------------------------------------------------------------------  */



.side-menu{

    background-color:#fff;
     padding:20px 10px; 
}

.side-menu-list{

    list-style: none;
}

.side-menu-list-item .image-container {
    display: inline-block;
    background-color: #f3f3f3;
    border-radius: 50%;
    padding: 5px 8px;
    margin-right:20px;
  }

.side-menu-list-item img{

    width:20px;
   
}

.side-menu-list-item{

    margin-bottom:25px;
    font-size:14px;
    cursor:pointer;
}

  /*-----------*/

.important-announcements{

    background-color:#27293D ;
    margin:25px 0 ;
    color:#fff;
    padding:20px 25px;
    border-radius:10px;

}

.important-announcements-title{
    margin-bottom:20px;

}
.announcement{
    
    margin-bottom:40px;
   
    
}

.announcement-title{

    font-weight:500;
    
}

.announcement-text{
    font-size:14px;
    font-weight: 200;
    
}


.latest-news{
    background-color:#fff;
    padding:20px 10px;
}

.news-item-image img{
    width:80px;
    height:80px;
    border-radius:50%;

}

.letest-news-title{

    margin-bottom:30px;

}

.single-news-item{
    display:flex;
    flex-direction: row;
    border-radius:50px;
    padding:7px 7px;
    border:1px solid #eaeaea;
    margin:auto;
    justify-content:center;
    align-items: center;
    margin-bottom:15px;
}
.news-item-info{
    margin-left:10px;
}
.news-item-title{
    font-size:15px;
}

.news-item-text{
    font-size:14px;
    margin-bottom:-1px;
}

.news-source-date{
   
    font-size:10px;
    color:grey;
    font-weight:bold;
}


/*---------------------MIDDLE COLUMN-----------------------*/

.share-new-bar{
    background-color:#fff;
    padding:10px 30px;
    display:flex;
    justify-content:center ;
}

.share-new-bar-add-icon{
   width:25px;
   margin-top:3px;
}
.share-new-bar-button{
    border:0;
    background-color: transparent;
}


.share-new-post-form{
    width:70%;
}


.share-new-post-input{
    border-radius:20px;
    background-color: #f5f5f5;
    border:none;
    padding:10px;
    margin-left:10px;
    width:70%;
}


.input-group-prepend{
    background-color: #f5f5f5;
    border-left:none;
    border-radius:20px;
    border:none;

}


/*---------------------RIGHT COLUMN-----------------------*/
.open-job-positions{
    background-color: #fff;
   
    
}

.single-job-position{
    margin-bottom:25px;
}

.open-job-positions-title{
    margin-bottom:30px;
}

.job-title-type{
    font-size:14px;
}

.job-description{
    font-size:13px;
    margin-top:-10px;
}

.all-job-positions-link{
    color:#000;
    text-decoration: none;
    
}



.cv-related-lessons{

    background-color: #fff;           
}

.cv-related-lessons-title{

    margin-bottom:30px;
       
}

.single-lesson {
    padding:25px;
}

.single-lesson img{
    width:100%;
    height:auto;
}

.single-lesson-description{
    font-size:14px;
}


@media only screen and (max-width: 575px) {

}
/*----------------------------------------------------------------------------------------------   USER PROFILE PAGE ------------------------------------------------------------------------------------  */


/*--cover photo---*/
.profile-cover-photo{
    height:35vh;
}

.profile-cover-photo img{
    width:100%;
    height:100%;
    object-fit: cover;
}


/*--progile header (contains user profile photo, name, title 1 , and add,message and the more (3 dots) buttons) --*/
.user-profile-header{
    display:flex;
    justify-content:space-between;
    padding:20px 30px;
    align-items:center;
    background-color: #fff;
}


.profile-user-info{
    display:flex;
    justify-content:flex-start;
    padding:0px 30px;
    align-items:center;
    background-color: #fff;
}


.user-profile-photo{
    
    margin-top:-100px;
}

.user-profile-photo img{
    width:180px;
    height:180px;
    object-fit: cover;
    border-radius:50%;
    border:5px solid #fff;

}

.user-name-title1{
    
    width:auto;
}

.title-1{
    font-size:17px;
}

.participating-points{
    text-align:right; 
    margin-top:5px; 
    font-size:15px; 
    font-weight:500;
}

.participating-points img{
    width:17px; 
    border-radius:50%; 
    margin-top:-5px;
    
}

/*-- tabs section --*/


.profile-info-tabs{

    width:100%;
    margin-top:5px;
    background-color: #fff;
    padding:5px 0px;
    border:none;
    text-align: center;
    display:flex;
    align-items: center;
   
}

.profile-info-tabs-navbar{
    overflow-y: auto;
    overflow-x: none;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;
}

.profile-info-tabs-navbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
  }


.nav-tabs{
    border:none;
}

.nav-tabs .nav-link {
    border:none;
}

.tab-item {
    border:none;
    display:table-cell;
 }

 .tab-item a:hover {
    color: black;
 }


.tab-item a {
    
   color: rgb(139, 138, 138);
   font-weight: 500;
   border:none;
   margin-right:10px;
   width:100%;
   font-size:15px;
   font-weight:bold;
   white-space: nowrap;   
}

 .tab-item .nav-link.active {
    position: relative;
    border:none;
    border-bottom: 2px solid black;
  }

  .tab-item .nav-link.active {
    position: relative;
    border:none;
    border-bottom: 3px solid black;
  }
  
  .nav-tabs .nav-item .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: black;
  }



/*--post section--*/

.single-post-header, .single-post-footer{
  
    padding:15px;
}

.pinned-post{
    margin-bottom:10px;
}

.pinned-post img{
    width:20px;
}

.single-post-user-and-actions{
    display:flex;
    justify-content: space-between;  
}

.user-single-post{

    background-color:#fff;
    margin-top:20px;
    margin-bottom:20px;
}

.single-post-user{
    display:flex;
    justify-content: space-between;
    
}
.singe-post-user-name{
    margin-top:110px;
}


.single-post-user img{

    width:60px;
    height:60px;
    object-fit: cover;
    border-radius:50%;
    border:5px solid #fff;
    margin-right:10px;
}

.post-posted-date img{
    width:22px!important;
    height: 22px;
}

.single-post-actions-icon{
    display:flex; 
    align-items:center;
}

.single-post-actions-icon img{
    width:20px;
}

.single-post-description{
    font-size:14px;
    width:95%;
}

.add-user-button img , .send-user-message-button img{
   width:22px;
}

.single-post-footer img{
  
    width:18px;
    margin-right:10px;
}

.single-post-actions{
    display: flex;
    flex-direction:row;
    justify-content: space-between;
}

.sort-post-comments-dropdown{
    
    border: none;
    background-color: transparent;
    padding: 5px;
    font-size: 14px;
}

.sort-post-comments-dropdown:focus{
    outline: none;
}

.post-like-comment-share{
    width:50%;
}

.post-like-comment-share-button{
    border:none;
    background-color: transparent;
}
.post-like-comment-share-text{
    display:none;
}

.post-like-comment-share img{

    width:25px;
}


.post-likes-comments-count{
    width:85%;
    display: flex;
    flex-direction:row;
    justify-content: flex-end; 
    align-items: center;    
}


.post-likes-shares {
    display: flex;
    align-items: flex-start;
    gap: 15px; /* Adjust this value to your preference */
    cursor:pointer;
  }

  .post-likes{

    display:flex; 
    justify-content:flex-start;
    margin-top:2px;
  }
  
  .post-likes-count{
    margin-left:5px;
  }

  .post-likes img{
   
    width:20px;
    height:auto;
    margin:0;
  }

  .post-comments{
    margin-left:20px;
    cursor:pointer;

  }

  #like-icon,#comment-icon ,#share-icon {
    cursor:pointer;
  }


.comments-sort{
    margin: 20px 0px;
}

.post-single-comment{
    display:flex;
    margin-bottom:15px;
   
}

.post-single-comment-user-image img{

    width:40px; 
    height:40px; 
    border-radius:50%;  
    object-fit: cover;
}

.post-single-comment-comment{
    margin-top:-10px;
     font-size:15px;
}

.comment-user-name{
    font-weight:500;
}

.comment-posted-date{
    font-size:13px;
}

.like-reply-to-post-comment{
    margin-top:-10px; 
    font-weight:500; 
    font-size:14px;
}

.add-new-comment-form{
     width:100%;
}

.add-new-comment-bar{
    display:flex;
    justify-content: flex-start;
    align-items: center;
}

.comment-to-post{
    margin-top:30px;
}

.add-new-comment-input-group{
    width:100%!important;
}

.add-new-comment-input{
   
    border-radius:15px 0px 0px 15px; 
    margin-left:10px;
    background-color: #f5f5f5; 
    border:0;
    padding-left:20px;
}


.add-comment-actions-icons{
    display:flex!important;
    justify-content: flex-end!important;
    
}

.add-comment-action-button{
    padding:0;
    border:0;
}



.tab-content{
    font-size:15px;
}


.tab-title{
    display:flex;
    justify-content:space-between;
}

.tab-title a{

    color:#000;
    text-decoration:none;

}

.user-basic-info{

    margin-top:20px;
}
.user-basic-info-title{
    margin-bottom:15px;
}

.user-files-title{

    display:flex; 
    justify-content: space-between;

}
.user-files-title a{

    text-decoration:none;
    color:#000;
    margin-bottom:15px;

}

.user-files{
    display:grid; 
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap:5px;   
 }


.single-user-file{  
    margin-bottom:5px;
    height:auto;
    background-color: #3eb3dd;
}

.single-user-file img{
    width:100%;
    height:100%;
    
}


.user-friends-list-title{

    display:flex; 
    justify-content: space-between;

}
.user-friends-list-title a{

    text-decoration:none;
    color:#000;
    margin-bottom:15px;

}

.single-friend{
    display:flex;
    margin-bottom:15px;
    margin-top:15px;
    justify-content: flex-start;

}

.single-friend img{
    width:45px; 
    height:45px; 
    border-radius:50%;  
    object-fit: cover;
}

#like-comment, 
#comment-to-comment{
    cursor:pointer;
}

.user-profile-info-tab{
    background-color: #fff;
    margin-top:30px;
    padding:30px;
    border-radius:15px;
}

.personal-info-list{
    list-style:none;
}

.personal-info-list-item{
    margin-bottom:10px;
}

.single-team{
    margin-bottom:50px;
}

.single-team-image img{
    width:100%;
    height:150px; 
    border-radius:15px 15px 0px 0px; 
    object-fit: cover;
}

.single-team-title-info{
    margin-top:15px;
    padding:0px 20px;
}

.single-team-title{
    margin-bottom:0;
}

.single-team-info{
    font-size:13px;
    font-weight:500;
}

.single-team-button{
  
    border:1px solid rgb(0, 174, 255);
    background-color: transparent;
    padding:10px 20px;
    width:100%;
    
}

.single-education-block,
.single-job-block{
    margin-bottom:20px;
    font-size:15px;
    border-bottom:2px solid #f5f5f5;

}

.single-education-block > * ,
.single-job-block > *
{
    margin-bottom:10px;
    

}

@media only screen and (max-width: 992px) {


    .profile-cover-photo{
        height:25vh;
    }
    
    .profile-cover-photo img{
        width:100%;
        height:100%;
        object-fit: cover;
    }
    

    .user-profile-header{
        display:flex;
        justify-content:space-between;
        padding:20px 10px;
        align-items:space-between;
        background-color: #fff;
    }

    .user-profile-photo img{
        width:140px;
        height:140px;
    }
  
    .profile-user-info{
        padding:0px 5px;
        flex-direction:column;
        background-color: #fff;
        text-align:center;
        margin-bottom:-15px;
        
    }

    .user-profile-header{
        display:block;
        justify-content: center;
    }

    .user-profile-actions{
        
       width:100%;
       display: flex;
       flex-direction: column;
       justify-content: flex-end;
       align-items: center;
       margin: auto;
       margin-top:20px;
         
    }

    .user-profile-actions > * {
        margin-left: 5px;
        margin-right: 5px;
    }

    .profile-info-tabs-navbar {
        flex-wrap: nowrap;
        overflow-x: scroll;
      }
      
      .profile-info-tabs-navbar .nav-tabs .nav-item {
        white-space: nowrap;
      }
      
      .profile-info-tabs-navbar .nav-tabs .nav-link {
        padding: 0.5rem 1rem;
      }

  }

  @media only screen and (max-width: 575px) {


    .share-new-bar{
        padding:10px 0px;
    }

    .single-post-actions{
        flex-direction: column-reverse;
      
    }

    .post-like-comment-share{

        width:100%;
        padding:0px;
        display: flex;
        justify-content: space-between;
        margin-top:15px;
    }

    .post-like-comment-share-button{
            
            display:flex;
    }

    .post-like-comment-share >*{
       margin:auto;
    }

    .post-likes-comments-count{
        width:100%;
        padding:0px;
        justify-content: space-between;
    }



    .post-like-comment-share-text{
        display:flex;
    }
    

  
    #add-new-comment-input::placeholder{
        font-size:13px;
    }

}


  /*----------------------------------------------------------------------------------------------   GROUPS ADD NEW PAGE ------------------------------------------------------------------------------------  */
    .add-new-group-form{

        width:50%;
        margin:auto;
        margin-top:5%;
       
        
        background-color:#fff;
        padding:30px 40px;
        border-radius:10px;
        box-shadow: 41px 43px 55px -76px rgba(0,0,0,0.75);
        -webkit-box-shadow: 41px 43px 55px -76px rgba(0,0,0,0.75);
        -moz-box-shadow: 41px 43px 55px -76px rgba(0,0,0,0.75);
    }

    @media only screen and (min-width: 1024px) and (max-width: 1200px) {

        .add-new-group-form{

          margin-bottom:50px;
          
         
           
        }
    }
 
    @media only screen and (min-width: 577px) and (max-width: 992px) {

        .add-new-group-form{
            width:85%;
        }

    }

    @media only screen and (max-width: 576px) {
        
        .add-new-group-form{

            width:90%;
            padding:30px 20px;
            margin-top:10%;
         
           
        }

        #exampleFormControlFile1{
            font-size:13px;
        }
      }
    