@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: magic;
  src: url(f1.otf);
}
/* global styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "League Spartan", sans-serif;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}
h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}
h4 {
  font-size: 20px;
  color: #222;
}
h6 {
  font-weight: 700;
  font-size: 12px;
}
p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}
.section-p1 {
  padding: 40px 0;
}
.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600px;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}
button.normal:hover {
  background-color: #088178;
  color: #fff;
}
body {
  width: 100%;
}
a{
  display: inline;
}
/* header styles */

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color:  #013220;
  padding: 20px 80px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position:fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-list-nav ul {
  display: flex;
}
.header-list-nav ul li {
  list-style-type: none;
  padding: 0 20px;
  position: relative;
}
.header-list-nav ul a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: 0.3s ease;
}
.header-list-nav ul a:hover,
.header-list-nav ul a.active {
  color: #FFD700;
  content: "";
}
.header-list-icon a {
  color: #FFD700;
  padding-left: 20px;
  transition: 0.3s ease;
}
.header-list-icon a:hover,
.header-list-nav ul a.active {
  color: #FFD700;
}
.header-list-nav ul li a:hover::after,
.header-list-nav ul li a.active::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #FFD700;
  position: absolute;
  bottom: -4px;
  left: 20px;
}
.aboutus{
  width: 98%;
  height: auto;
}
.main{
  font-family: magic;
  color: gold;
  text-align: center;
  margin-top: 80px;
}
.main-text{
  color: darkblue;
  text-align: center;
  margin-top: 20px;
}
.sem-main{
  font-family: magic;
  color: gold;
  text-align: justify;
  margin-top: 80px;
  font-size: 30px;
  margin-left: 30px;
  line-height: 30px;
}
.sem-main-text{
  color: darkblue;
  text-align: justify;
  margin-top: 20px;
  margin-left: 20px;
}