* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: red;
}
.black {
  background: #111;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
  width: 100%;
  height: 60px;
  position: sticky;
  top: 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  margin-top: 100px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.navbar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.navbar ul li {
  list-style: none;
}
.navbar ul li a {
  text-decoration: none;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.685);
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  transition: 0.4s;
  padding: 18px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.navbar ul li a:hover {
  background: red;
  color: #fff;
}
.navbar ul li a.active {
  background-color: red;
  color: white;
}
.menu {
  display: none;
  position: absolute;
  top: 18px;
  left: 85%;
}
.menu span {
  background-color: red;
  font-size: 30px;
}
.navbar.active {
  display: block;
}

@media screen and (max-width: 768px) {
  .navbar {
    display: none;
    width: 100%;
    margin-top: 200px;
    background: #111;
  }
  .navbar ul {
    flex-direction: column;
    margin-top: 300px;
    margin-left: 80px;
    height: 100vh;
  }
  .menu {
    display: block;
  }
}

.hero-section {
  width: 100%;
  height: 100%;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 100px;
}
.hero-content-1 {
  padding-top: 100px;
}
.hero-content-1 .hero-heading-1 h2 a {
  font-size: 35px;
  color: white;
}
.hero {
  text-align: center;
}
.hero-para-1 p {
  color: white;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  padding: 30px;
  line-height: 1.5;
  font-size: 23px;
  text-align: center;
}
.hero-heading-2 h4 {
  margin-top: 50px;
  font-size: 30px;
  text-decoration: underline;
  color: #fff;
}
.hero-para-2 {
  color: white;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  padding: 30px;
  line-height: 1.5;
  font-size: 23px;
  text-align: center;
}
.hero-heading-3 h4 {
  margin-top: 50px;
  font-size: 30px;
  text-decoration: underline;
  color: white;
}
.mail {
  text-align: center;
}
.mail a {
  font-size: 40px;
  color: white;
}
.mail a:hover {
  color: black;
}
@media screen and (max-width: 768px) {
  .hero-section {
    padding-left: 40px;
    padding-right: 40px;
  }
  .footer-links {
    margin-right: 100px;
  }
}
.row {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.site-footer {
  background-color: black;
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: #737373;
}

.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  color: white;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  display: block;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.671);
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block;
}

.site-footer .social-icons {
  text-align: right;
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #33353d;
}

@media (max-width: 991px) {
  .site-footer [class^="col-"] {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }

  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
}
