



.radrow{
    display: flex;
    justify-content: space-around;
}
.logo{
    /*background: #ffffff;*/
    border-radius: 10px;
}
.bg-image {
    /* The image used */
    background-image: url("../img/home.png");
  
    /* Add the blur effect */
    filter: blur(2px);
    /* -webkit-filter: blur(2px); */
  
    /* Full height */
    height: 100%;
    background-attachment: fixed;
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: -13%;
    position: relative;
  }
  
  /* Position text in the middle of the page/image */
  .bg-text {
    background-color: rgb(0,0,0);
    background-color: rgb(6 6 6 / 74%);
    color: white;
    font-weight: bold;
    /* border: 3px solid #f1f1f1; */
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 70%;
    padding: 20px;
    text-align: center;
  }
  .rad-content-header{
    /* display: flex; */
    padding: 30px 5%;
    justify-content: space-between;
    background: linear-gradient(180deg, #009688, #142f20);
    height: 100vh;
  }

 .rad-right{
     
    float: right;
    
}
.rad-left{
     
    float: left;
    
}
.rad-center{
justify-content: center;
align-items: center;
display: flex;

}
.rad-bg{
    background-color: green;
}
.rad-badge{
    color: aliceblue;
    background-color: rgb(0,0,0);
    background-color: rgb(6 6 6 / 74%);
    padding: 50px;
    margin: 60px;
    position: relative;
}
.rad-img{
    border: solid;
    border-radius: 10px;
    width: 100px;
    height: 60px;
}
.rad-block{
    display: flex;
    justify-content: space-evenly;
}
.rad-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* margin-right: -15px;
    margin-left: -15px;  */
  }
.card-small{
    margin: 20px;
    height: 200px;
    padding: 20px;
    border-radius: 10px;
}
.card-circle{
    border-radius: 50% !important;
    background: #07613c;
    width: 120px;
    height: 120px;
    margin: auto;
    align-items: center;
    text-align: center;      
              

}
.card-small a{
    margin-top: 50px;
}
.content-head{
    display: flex;
    padding: 5%;
    justify-content: space-between;
    background: linear-gradient(180deg, #129330, #142f20);
}
.content-img{
    width: 33%;
}
.rad-container{
    padding: 50px;
}
.rad-center{
    justify-content: center;
    display: flex;
    align-items: center;
}
.rad-title{
    text-align: center;
}
.rad-align{
    align-items: center;
}
.icons{
    color: rgb(0 0 0 / 62%);

}
.icons i{
    font-size: 60px;
    margin-top: 30px;

}
.text{
    width: 100%;
    justify-content: center;
    height: 100%;
    align-items: center;
    margin: auto;
    text-align: center;
}
.text-light{
    color: white;
}
.text-dark{
    color: rgb(0, 0, 0);
}
.text-gray{
    color: rgb(80, 79, 79);
}
.text-danger{
    color: rgb(184, 43, 43);
}
.rad-text-center{
    text-align: center;
    justify-content: center;
    display: flex;
}

/* color */
.bg-danger{
    background-color: #dc3545;
}
.bg-warning{
    background-color: #fecd08;
}
.bg-success{
    background-color: #129330;
}
.bg-primary{
    background-color: #007bff;
}
.blue-dark{
    background-color:#10677c;
}
.bg-dark{
    background-color: #000000;
}
.bg-danger-contrast{
    background-color: #ff6161;
}
.bg-warning-contrast{
    background-color: #fffc66;
}
.bg-success-contrast{
    background-color: #5aad49;
}
.bg-primary-contrast{
    background-color: #03a84ebf;
}
.bg-dark-contrast{
    background-color: #615f5f;
}

/* drop down */

.dropbtn{
  background-color:#21252900; ;
  /* color: rgb(255, 255, 255); */
  padding: 16px;
  font-size: 16px;
  border: none;
  font-weight: bold;

}

.dropdown {
  position: relative;
  display: inline-block;
}


.dropdown-content {

  display: none;
  position: absolute;
  background-color: green;
  min-width: 160px;
  max-width: 500px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropbtn:before {
  position: absolute;
  width: 0;
  height: 5px;
  bottom: 0;
  left: 0;
  color: white; 
  background-color: red;
  visibility: hidden;
  transition: width 0.9s ease 0s, left 0.9s ease 0s;
  width: 0;}
  .dropbtn:hover:before {
  visibility: visible;
  width: 100%;
}
.dropbtn-item a:hover:before {
  visibility: visible;
  width: 100%;
}
.dropbtn-item a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 5px;
  bottom: 0;
  left: 0;
  background-color: green;
  visibility: hidden;
  transition: width 0.9s ease 0s, left 0.9s ease 0s;
  width: 0;}


.dropdown-content a:hover {background-color: rgb(83, 247, 96);}

.dropdown-content1 a:hover {background-color: white;}
.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color:   #01751117}