* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #446a4a;
  line-height: 1.8rem;
  font-size: 1.1rem;
  font-family: "FreeSerif";
}
html {
  height: 100%;
}

div {
  box-sizing: border-box;
  /*border: 1px solid #000;*/
}

body {
  background-color: #21892d;
  background: linear-gradient(
    90deg,
    #6cc9fb 0%,
    #74aafb 16.667%,
    #7f87f9 33.333%,
    #4fd7ac 50%,
    #1cb657 66.667%,
    #86da97 83.333%,
    #8df18d 100%
  );
}

.container {
  min-height: 100vh;
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  margin: 0 auto;
  padding:0;
  font-weight: 500;
  box-shadow: 2px 4px 8px rgba(144, 162, 143, 0.5);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
}

h1 {
  font-size:1.2rem;
  font-style:italic;
}

.two-logo {
  margin: 10px auto;
  width: 250px;
  height: 178px;
}

.two-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/************ section three hero image css on home page****************/

.main {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}

.banner {
  position: relative;
  margin: 10px 0;
  text-align: center;
  background-color: rgb(238, 49, 49);
  height: 60px;
  width: 100%;
}

.overlay-text-box {
  position: absolute;
  width:90%;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers text */
  z-index: 2;
  color:#fff;
  pborder:2px solid rgb(125, 202, 10);
}

.full-width-text {
  display: block; /* Essential for inline elements like <span> */
  width: 100%;
  box-sizing: border-box; /* Ensures padding doesn't cause overflow */
  color: #fff;
    font-size: 1.6rem;
  font-weight: bold;
  font-style: italic;
}

.hide {
  display: none;
}

/*---------------------*/
.four-nav .nav {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #258433;
  font-weight: 600;
  text-align: left;
  font-size: 1.3rem;
  margin-top:14px;
}
.menubox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.menubox .curr {
  color: #294db8;
}
.curr::after {
  content: " ~";
}



/*---------------------*/

.five-content {
  margin: 20px 60px;
}

.inner-text-box {
  padding: 20px;
  border: 2px solid #12951b;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #eefff4;
  background-color: #f3fff3;
  background-color: #fff;
}

/* ------------- */

.email-icon::after {
  color: red;
  content: "\1F4E9";
  font-weight: bold;
  font-size: 1.3rem;
  vertical-align: baseline;
  line-height: 1;
}

.e-mail:before {
  content: attr(data-website) "\0040"attr(data-user);
  unicode-bidi: bidi-override;
  direction: rtl;
}

span.rev {
  unicode-bidi: bidi-override;
  direction: rtl;
}

span.rev.bli:before {
  content: "3483";
}

span.rev.bli:after {
  content: " 605";
}

.seven-footer {
  text-align: center;
  color: #4b5763;
  min-height: 50px;
}

/* list items for service page */

ul {
  padding-left: 20px;
}

li {
  padding: 4px;
  line-height: 2rem;
}

/* for contact page */

table {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.center {
  text-align: center;
}
.italic {
  font-style: italic;
}
@media only screen and (max-width: 600px) {
  * {
    font-size: 1.1rem;
  }
  .full-width-text{
    font-size: 1.3rem;
  }

.five-content {
  margin: 10px 20px;
}

.inner-text-box {
  padding: 20px;
}
}
