html, body{
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 12px;
    animation: fadeInAnimation 1s ease-in-out forwards;
}

.container-fluid{
    padding: 0;
    margin: 0;
    width: 100%;
    height: 750px;
}

.img1{
    height: 750px;
    width: 100%;
     padding: 0;
    margin: 0;
}

.img2{
    height: 750px;
    width: 100%;
    margin: 0;
    padding: 0;       
}

.header{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 70px;
    background-color: #1078ca;
    box-shadow: 0px 4px 4px #0660a5;
}

.header .imgLogo{
    height: 50px;    
}

.rowSlide{
    position: absolute;
    justify-content: center;
    align-items: center;
    text-align: center;   
    width: 100%;
    height: 300px;
    background-image: url(/img/bg-blue-.png);
    z-index: -1;
}

.rowSlide h6{
    margin-left: 20px;
    margin-top: 10px;
    text-align: left;
    font-weight: bold;
    color: white;
}

.rowSlide p{
    margin-left: 20px;
    text-align: left;
    font-weight: bold;
    color: white;
    font-size: 10px;
}

.carousel {
  width: 100%;
  overflow: hidden;
  border: 5px solid transparent; 
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.wrap {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 250px;
  justify-items: stretch;
  animation: slide 15s linear infinite;
  animation-play-state: running;
}


.wrap img {
  width: 240px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.wrap img:hover {
  transform: scale(1.1); 
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.8), 0 4px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.8); 
}

.wrap:hover {
  animation-play-state: paused;
}

@keyframes slide {
  to {
    translate: calc(-4 * 250px);
  }
}

.rowData1{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;  
}

.card{
    background-color: white;
    top: 210px;
    margin: 20px;
    margin-top: 10px;
    padding-bottom: 20px;
    border: 1px solid #0660a5;
    border-radius: 5px;
    box-shadow: 0px 4px 2px 1px #bbbbbb;
}

.card h6{
    margin: 10px;
    padding: 10px;
    font-weight: bold;
    color:#0660a5;
    border-bottom: 2px solid #0660a5;
}

.form-check{
    justify-content: left;
    text-align: left;
    margin-left: 20px;
    margin-right: 10px;
    font-weight: bold;
    font-size: 16px;
}

.card p{
    text-align: left;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 10px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    background-color:#1078ca;
    border-radius: 10px;
}

.mb-3{
    justify-content: left;
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
}

.mb-3 .form-label{
    font-size: 14px;
    font-weight: bold;
}

.mb-3 .form-control{
    border: 1px solid #0660a5;
    border-radius: 5px;  
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
}

.btn{
    margin-left: 20px;
    margin-right: 20px;
    font-weight: bold;
}

.rowData2{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;  
}

.rowData3{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;  
}

.rowData3 img{
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    width: 100px;
    height: 70px;
    margin-top: 30px;
    z-index: 1;

}

.rowData3 .card{
    background-color: white;
    top: -50px;
    margin: 20px;
    margin-top: 10px;
    padding-bottom: 20px;
    padding-top: 30px;
    border: 1px solid #0660a5;
    border-radius: 5px;
    box-shadow: 0px 4px 2px 1px #bbbbbb;
}

.rowData3 .card p{
    justify-content: center;
    text-align: center;
    background-color: transparent;
    font-size: 14px;
    color: #1078ca;
    font-weight: bold;
    margin: 0;
}

.rowData3 .card .mb-3 .form-control{
    margin-top: 0;
    text-align: center;
}

.rowFooter{
    margin: 0;
    padding: 0;
    position: absolute;
    justify-content: center;
    align-items: center;
    text-align: center;
    bottom: 0;
    width: 100%;
    background-color: #1078ca;
    font-weight: bold;
    font-size: 12px;
    padding-top: 10px;
    color: white;
}

 
.load{
    width: 100%;
    display: flex;
    top: 50%;
    text-indent: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1; 
    position: absolute; 
    background-color: transparent; 
    visibility: hidden;
}

.spinner{
    height: 70px;
    width: 70px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 1s linear infinite;   

}    

.imglogo{
   position: absolute;
   height: 40px;
   width: 40px;
}  

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.rowModal{
  display: block; 
  position: absolute;
  z-index: 1;
  top: 40%;
  width: 100%;
  height: 300px;
  overflow: auto;  
  border: none;
  background-color: transparent;
  border-radius: 0;  
}

.modal-content{
   padding: 20px;
  text-align: center;
  background-color: #fefefe;
  margin: auto; 
  border: 1px solid #888;
  width: 80%;
  border: none;
  border-radius: 10px;  
  box-shadow: 0px 4px #0f78cb;
}

.modal-content h6{
    font-size: 20px;
    color: red;
    font-weight: bold;
    border: 2px solid #0f78cb;
    border: none;
    border-bottom: 1px solid #0f78cb;
    padding: 10px;
}

.modal-content p{
    font-size: 14px;
    font-weight: bold;

}