* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Poppins, sans-serif;
    line-height: 1.6;
    background-color: #FFF;
    font-size: 14PX;
}
.bg-blue{
    background-color: #016A70;
}
.bg-yellow{
    background-color: yellow;
}
.mg-top-10{
margin-top:10px;
}
.mg-top-20{
    margin-top:20px;
    }
.mg-top-30{
        margin-top:30px;
        }
.txt-yellow{
    color: yellow;
}
.txt-white{
    color: #FFF;
}
.txt-blue{
    color: #016A70;
}
.txt-wheat{
    color: rgb(241, 193, 103);
}
.bg-img1{
    background-image:url(../images/bg-img1.jpg) ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.brdr-1{
    border: 1px solid #016A70;
}
.brdr-2{
    border: 2px solid #016A70;
}
.gap-5{
    gap: 5px;
}

header {
    background-color: #016A70;
    max-width: 100%;
}

.top-header {
    max-width: 100%;
    height: auto;
}

.calendar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    min-width: 150px;
    background-color: white;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    cursor: pointer;
}

.month-name {
    margin: 0;
    background-color: #016A70;
    color: white;
    padding: 2px;
    font-size:16px;
    font-weight: bold;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.day-name {
    font-size: 16px;
    color: rgb(175, 175, 13);
}

.day-number {
    font-size: 20px;
    margin: 0;
    font-weight: bold;
}

.year {
    margin: 0px;
    font-size: 16px;
    color: rgb(175, 175, 13);
    font-weight: 500;
}

.row {

    max-width: 100%;
    display: flex;
    justify-content: space-between;
    padding:10px 50px;
}

.align-center {
    align-items: center;
}

.gradient {
    background: linear-gradient(to right, #016A70, yellow);
}

.col {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.col-2 {
    width: 200px;
    padding: 10px;
    text-align: justify;
    padding: 10px;
}


.col-3 {
    width: 30%;
    padding: 10px;
    text-align: justify;
    padding: 10px;
}

.col-4 {
    width: 40%;
    padding: 10px;
    text-align: justify;
    padding: 10px;
}

.col-5 {
    width: 50%;
    padding: 10px;
    text-align: justify;
    padding: 10px;
}

.col-6 {
    width: 60%;
    padding: 10px;
    text-align: justify;
    padding: 10px;
}

figure {
    position: relative;
    width: 100%;
}

figure img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

p {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    text-align: justify;
}

.logo {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    height: auto;
    line-height: 1.2;
}

.logo>h1 {
    display: flex;
    justify-content: flex-end;
    color: yellow;
    font-size: 40px;
}

.logo>h3 {
    display: flex;
    justify-content: flex-end;
    color: yellow;
    font-size: 30px;
}
h1 {
    display: flex;
    justify-content: center;
    color: yellow;
    font-size: 30px;
}

.col a {
    padding: 10px;
    font-size: 16px;
    text-decoration: none;
    color: yellow;
    cursor: pointer;
}

button {
    padding: 10px 15px;
    background-color: yellow;
    color: #016A70;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
}

button:hover {
    padding: 10px 15px;
    background-color: #099441;
    color: yellow;
    font: 14px;
    font-weight: 600;
    cursor: pointer;
}
.button-2 {
    padding: 10px 15px;
    background-color: #016A70;
    color: yellow;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
}

.button-2:hover {
    padding: 10px 15px;
    background-color: #099441;
    color: yellow;
    font: 14px;
    font-weight: 600;
    cursor: pointer;
}

nav {
    width: 100%;
    height: auto;
}

.container {
    width: 100%;
}

ul {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: yellow;
    list-style: none;
}

ul li {
    position: relative;
    padding: 10px;
    margin-right: 10px;
}

li a {
    font-family: Poppins, sans-serif;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #016A70;
    padding: 5px 5px;
    display: block;
}

ul>li:hover {
    background-color: #016A70;
    color: yellow;
    cursor: pointer;
}

ul>li:hover>a {
    color: yellow;
}



ul li ul {
    display: none;
    position: absolute;
    min-width: 250px;
    white-space: nowrap;
    top: 100%;
    left: 0;
    z-index: 1000;
}

ul li ul li {
    margin-right: 0px;
}

ul li:hover ul {
    display: block;
}

ul li ul li {
    background-color: yellow;

}

ul li ul li a {
    color: #016A70;
}

ul li ul li:hover {
    background-color: #016A70;
}

ul li ul li:hover a {
    color: yellow;

}




/*Footer CSS*/

.footer {
    background-color: #016A70;
    color: yellow;
    padding: 30px 5px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
}

.footer-column>ol {
    background-color: transparent;
    display: flex;
    align-items: flex-start;
    padding: 0px;
    margin: 0px;
    flex-direction: column;
    flex-grow: 1;
    min-width: 200px;
}

ol li {
    list-style: none;
}

ol li a {
    color: yellow;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background-color: #f5a225;
    margin-top: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: yellow;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f5a225;
}

.footer-column p {
    line-height: 1.6;
    margin: 5px 0;
}

.footer-column p a {
    color: yellow;
    text-decoration: none;
    font-size: 14px;
}

.footer-column p a:hover {
    color: #f5a225;
}

.footer-social {
    text-align: center;
    margin-top: 5px;
    padding: 10px 0px;
}

.footer-social a {
    color: white;
    margin: 0 10px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #016A70;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: auto;
    padding: 10px;
    background-color: #012c12;
    color: yellow;
}

.footer-bottom a {
    color: #f5a225;
}


.widgets {
    position: absolute;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
input, select{
    width: 95%;
    padding: 10px 5px;
    border: none;
    border-radius: 3px;
    line-height: 1.5;
}
label{
    display: inline-block;
    text-align: right;
    margin-top:20px;
    font-size: 16px;
    font-weight: 600;
    color: #016A70;
}
.questions {
    width: 100%;
  }

.section-center {
    width: 100%;
   padding:0px;
  }

  .question {
    background: #016A70;
    border-radius: 0.2rem;
    border: 1px solid yellow;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding:0px 10px;
    margin-bottom:3px;


  }
  .question-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: capitalize;
    
  }
  
  .question-title p {
    letter-spacing: 0.1rem;
    color: yellow;
    font-weight: bolder;
  }
  .question-btn {
    font-size: 1.5rem;
    background: transparent;
    border-color: transparent;
    cursor: pointer;
    color: yellowgreen;
  }
  
  .question-text {
    padding: 1rem 0 1.5rem 0;
    border-top: 1px solid grey;
  }
  
  /* hide text */
  .question-text {
    display: none;
  }
  .show-text .question-text {
    display: block;
  }
  .minus-icon {
    display: none;
  }
  .show-text .minus-icon {
    display: inline;
  }
  .show-text .plus-icon {
    display: none;
  }


  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: center;
}
th,td {
    padding: 5px 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

th {
    background-color:  yellow;
    color: #016A70;
    font-weight: bold;
    text-transform: uppercase;
}

tbody tr {
    background-color: #f2f2f2;
}

tbody tr:hover {
    background-color: #ddd;
}

  /*home slider css*/

.swiper {
    width: 100%;
    height: 400px;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.swiper-button-next, .swiper-button-prev{
    color: #FFF !important;
    background-color: rgba(0, 0, 0, 0.473);
    padding:2px;
    
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 20px !important;
    font-weight: 900 !important;
}
.hero-txt{
    position: absolute;
    height: 100%;
    width: 100%;
    top:0;
    left: 0;
    z-index: 1;
    background-color: #012c1265;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.hero-txt h1{
    color: white !important;
    font-size: 50px;
    align-items: center;
}