html {
  scroll-behavior: smooth;

}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3a4268;
  color: white;
  padding: 10px 20px;
}
.bottombar {
  align-items: center;
  background-color: #333;
  color: white;
  padding: 10px 20px;
  height:30px;
}
.topbar-section {
  flex: 1;
  text-align: center;
}

.topbar-section:first-child {
  text-align: left;
}

.topbar-section:last-child {
  text-align: right;
}
.top-bar2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  padding: 10px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.top-item2 {
  color: white;
  font-size: 18px;
  margin: 0 20px;
  text-align: center;
  text-decoration:none;
}

.top-item2:hover {
  text-decoration: underline;
}

.top-link {
  color:white;
}
.bh2 {
  color: black;
  font-weight: bold;
}
.logo {
  left:5px;
  position: absolute;
}
.top-image {
  width:100%
}

.row {display: table-row}
.cell {display: table-cell;}
.table {display: table;    width: 100%;}
.cell1 {
display: inline-block;
width:45%;
}
.cell2 {
display: inline-block;

}
.container1 {
width: 80%;
margin: 0 auto;
padding: 20px;
position: relative;
z-index: 1;
}
.container2 {
width: 50%;
margin: 0 auto;
padding: 20px;
}
.container4 {
  display:block;
  position: relative;
  max-width: 50%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
  background-color: rgba(245, 245, 220, 0.5);
  border-radius: 20px;
}
.w-half {width:50%;}
.innertxt {
text-align: justify;
padding-right : 25px;
line-height: 20px;
max-width: 600px;
}
h1, .h1 {
text-align: left;
font-size: 3em;
font-style: italic;
text-decoration: underline;
font-weight:bold;
color:black;
}
h2, .h2 {
text-align: left;
font-size: 1.5em;
font-style: italic;
text-decoration: underline;
font-weight:bold;
color:black;
}
h3, .h3 {
text-align: left;
font-size: 1.5em;
font-weight:bold;
color:black;
}
.li1 {
position: relative;
padding-left: 25px;
line-height: 25px;
}
.li1::before {
content: '\2713';
position: absolute;
left: 0;
color: green;
font-size: 20px;
top: 50%;
transform: translateY(-50%);
}
.ul1 {
list-style-type: none;
padding-left: 0;
}
.mid-image {
width: 100%;
}
.bgb {
position: relative;
width: 100%;
overflow: hidden;
color: black;
}

.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: black;

background-size: cover;
background-position: center;
background-repeat: no-repeat;
opacity: 0.5;
z-index: 1;
}

.container3 {
position: relative;
z-index: 2;
padding-top: 100px;
padding-left:25px;
}
.bcell {
vertical-align: text-top;
padding-bottom:15px;
text-align: justify;
}
.submit-btn {
background-color: #007bff;
color: #fff;
border: none;
padding: 12px 24px;
font-size: 16px;
font-weight: 600;
border-radius: 6px;
cursor: pointer;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
background-color: #0056b3;
transform: translateY(-2px);
}

.submit-btn:active {
background-color: #004080;
transform: translateY(0);
}
.bh3 {
    font-weight: bold;
    font-size: 1.2em;
}
.bh4 {
    font-size: 1em;
}
.divider {
    width: 100%;
    height: 50px;
    background: #333;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: #fff;
    transform: skewY(-4deg);
}
@media (max-width: 768px) {
  .topbar-section {
  display: none;
  }
  .topbar {
  display: none;
  }
  .container1 {
  /* width:100%; */
  text-align: center;
  }
  .mid-image {
  width:100%;
  }
  .cell1{
  width:80%;
  }
  .innertxt {
  text-align: left;
  }
  .bcell {
  text-align: left;
  }
}
.warning {
	background-color: inherit;
  -webkit-animation-name: warning;
  -webkit-animation-duration: 1s;
  animation-name: warning;
  animation-duration: 1s;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes warning {
	20% { background-color: inherit; }
	40% { background-color: red; }
	60% { background-color: inherit; }
	80% { background-color: red; }
	99% { background-color: inherit; }
}

/* Standard syntax */
@keyframes warning {
	20% { background-color: inherit; }
	40% { background-color: red; }
	60% { background-color: inherit; }
	80% { background-color: red; }
	99% { background-color: inherit; }
}

.inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 150px;
  background: #3a4268;
  transform: translate(-50%, -50%);
  color: white;
  border-color: white;
  border: 5px solid;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  font-size: large;
}
