body{ 
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0; 
  padding:0;
  background-color: rgba(122, 122, 122, 0.1); 
} 


h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
} 

body, p{
    font-weight: 500;
    font-family: "Segoe UI", sans-serif;
}

main{
  min-height: 100vh;
}

.defaultSecBox{  
  padding: 0 20px; 
}  

img{
    object-fit: cover;
}   

span{ font-size: 22px;}

h1{
  font-size: 38px; 
  font-weight: 900;
  line-height: 2.5rem;
}
h2{
  font-size: 33px;
  font-weight: bolder;
  line-height: 2.2rem;
}
h3{
  font-size: 22px;
  font-weight: 600;
}

p{ font-size: 16px;}

/*-__ Removing Default Property Behaviour __-*/ 
*{
    margin: 0;
    padding: 0;
 }  
  
ul {
    list-style-type: none;
}

a{
    text-decoration: none;  
    color: var(--brand-color-gray);
    cursor: pointer;
} 

textarea{
    font-size: 15px;
    color: var(--brand-color-gray-dark); 
    border-radius: 5px;
    width: 100%; 
    height: 100px;
    padding: 5px 10px;
    border: none;
    background-color: var(--brand-color-light);
}
textarea:focus{ 
    outline: none; 
} 

.trans-divider{
  height: 10px;
  width: 100%;
  margin-top: -6px;
  border-radius: 10px 10px 0 0;
  background-color: rgba(0, 0, 0, 0.166);
}

label{
  font-size: 17px;   
}

.dynamic-inputDiv{
  box-sizing: border-box; 
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border: 1px solid #000000; 
  height: 55px;
  border-radius: 3px;
}
.dynamic-inputDiv:hover{
  border: 1px solid #00008B;
  .dynamic-inputP{
    color: #00008B;
  }
}

.dynamic-inputP{ 
  margin-left: 30px;
  font-size: 13px; 
  width: 40px;
  background-color: rgb(241, 241, 241); 
  margin-top: -10px;
  text-align: center;
} 

input{
    font-size: 18px; 
    color: var(--brand-color-gray-dark); 
    width: 100%; 
    height: 30px;
    border-radius: 2px; 
    padding: 5px 10px; 
    outline: none;
    border: none;
    background-color: rgb(241, 241, 241); 
} 
input:focus{
    outline: none;
}
 
select{
    font-size: 15px;
    box-sizing: border-box;
    color: var(--brand-color-white);  
    width: 100%; 
    height: 40px;
    border-radius: 5px; 
    padding: 5px 10px;
    border: 1px; 
    border-top-style: groove;
    border-right-style: groove;
    border-left-style: groove;
    border-bottom-style: groove;
    background-color: var(--brand-color-light);
}  
select:focus {
    outline: none;
}
.dyna-select{  
  border-radius: 0;  
  border: none;  
  background-color: var(--brand-color-white);
} 

button{
  height: 40px;
  font-size: 16.5px;
  background-color: black;
  color: #F9F9F9;
  border-radius: 50px;
  width: auto;
  border: none;
}

.btn-light{
  height: 50px;
  font-size: 20px;
  background-color: white; 
  color: black;
  border-radius: 50px;
  border: 2.5px solid black; 
}  
 

/*___________Animation On Text___________*/
/*---For Floating Text----*/
@keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  .floating {
    animation: float 2s infinite;
  }

/*---For Blinking Text----*/ 
@keyframes blink {
    0%, 50%, 100% {
      opacity: 1;
    }
    25%, 75% {
      opacity: 0;
    }
  }

  .blinking {
    animation: blink 1s infinite;
  } 

/*___________Animation on text________CLOSED___*/ 
 
  
 /*_____POP-UP PROPERTY_______________*/
.generalPopUp{
  display: none;
  position: fixed;
  top: 0; bottom: 0; left: 0; right: 0;
  background-color: var(--transparent-dark);
  height: 100%;
  width: 100%;
  z-index: 2;
}

.generalPopUp-child{
  background-color: var(--brand-black);
  text-align: center;
  position: absolute;
  width:70%;
  height: 40%;
  top: 25%;
  left: 15%; 
  right: 15%; 
  padding-top: 40px;
  border-radius:10px; 
}

.generalPopUp-child > p{
  text-align: center;
  font-size: 20px;
  padding: 0 10px;
  margin-bottom: 50px;
  color: var(--brand-white);

} 
/*____________________________________*/ 


/*____________________________________*/ 
.fadingNotifier{
  padding:10px;
  background-color: #ff868684;
  margin: 20px 0;
  margin-left: 5%;
  margin-right: 5%;
  text-align: center;
  border-radius: 20px;
  font-size: 15px;
  width: 90%;
  -webkit-animation-name: example; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  animation-name: example;
  animation-duration: 2s;
} 

/* Safari 4.0 - 8.0 */ 
@-webkit-keyframes example {
  from {margin-left: -92%;}
  to {margin-left: 5%;}
}

/* Standard syntax*/  
@keyframes example {
  from {margin-left: -92%;}
  to {margin-left: 5%;}
} 
/*____________________________________*/ 

.hideShowPass{
  width: 25px;
  height: 25px;
  margin-right: 5px;
  margin-top: 5px;
}
 
.overFlow-x-noBar{ 
  overflow-x: auto; 
  scrollbar-width: none;  
  -ms-overflow-style: none;  
}
.overFlow-x-noBar::-webkit-scrollbar{ 
  display: none;
} 

.breakArticle3{  
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
} 

.txt-nowarp{
  text-wrap: nowrap
}

.card-container{ 
    text-align: center;
    margin-top: 40px;
}
.card{ 
    border-radius: 8px;
    box-shadow: 2px 21px 18px -11px rgba(128,128,128,0.15);
    -webkit-box-shadow: 2px 21px 18px -11px rgba(128,128,128,0.15);
    -moz-box-shadow: 2px 21px 18px -11px rgba(128,128,128,0.15);
    text-align: left;
    box-sizing: border-box;
    padding: 20px 50px;
    margin: 30px 10px;
}
.card:hover{
    box-shadow: 2px 21px 18px 0px rgba(128,128,128,0.2);
    -webkit-box-shadow: 2px 21px 18px 0px rgba(128,128,128,0.2);
    -moz-box-shadow: 2px 21px 18px 0px rgba(128,128,128,0.2);
}

.section-card{
  background-color: white;
  border-radius: 10px;
  padding: 8px 16px;
  margin: 8px 16px;
}
 
.brand-sec-p{
    width: 85%;
    margin: 0 7.5%;
} 

.pd-none{
    padding: 0;
}

.boldText{
    font-weight: bold;
}

 
.msg-success{
    font-size: 15px;
    text-align: left;
    color: var(--brand-white);
    background-color: var(--brand-success); 
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
}

.msg-normal{
    font-size: 15px;
    text-align: left;
    color: var(--brand-black);
    background-color: var(--brand-info); 
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
}

.msg-warning{
    font-size: 15px;
    text-align: left;
    color: var(--brand-black);
    background-color: var(--brand-danger); 
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
} 

.boxShadow{
  box-shadow: 0 15px 20px rgba(0,0,0,0.2);
} 

/*_____Advanced table |PROPERTY_______________*/  
.brandTable{ 
  table-layout: fixed; 
}

.brandTable td { 
  background-color: #C0C0C0;
  text-align: center;
}
.brandTable th {
  background-color: #464D77;
  color: #ffffff;
}
 /* Set fixed widths for specific columns in the custom table */
 .brandTable th:nth-child(1), .brandTable td:nth-child(1) { width: 100px;}
 .brandTable th:nth-child(2), .brandTable td:nth-child(2) { width: 100px;}
 .brandTable th:nth-child(3), .brandTable td:nth-child(3) { width: 100px;}
/*_____Advanced table |CLOSED_______________*/ 
