* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-image: url("../assets/t2b3-bg-1b.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;

  @media(max-width: 880px) {
    /* height: auto; */
  }
}

.main_cont {
  display: flex;
  justify-content: center;
}
.main_cont i {
  font-size: 200px;
}
.main_cont img {
  margin-top: 100px;
  border-radius: 10px;
}

.topnav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  background-color: #4197bf;
  transition: 0.5s;
  padding: 15px 0;
  min-height: 48px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 5;
  border-bottom-right-radius: 15px;
}
@media (max-width: 880px) {
  .topnav {
    padding: 2px 0;
    width: 100%;
  }
}
.topnav #topnav1 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: 15px;
  margin-right: 10px;
}
.topnav #topnav1 img {
  height: 40px;
  width: 40px;
  margin-right: 5px;
  border-radius: 50%;
  border: 1px solid white;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.topnav #topnav1 p {
  text-transform: capitalize;
}
.topnav #topnav1 p a {
  color: white;
  text-decoration: none;
  font-family: "Aclonica", sans-serif;
  filter: drop-shadow(0 0 1px black);
  font-size: 16px;
}
.topnav .topnav2 {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 880px) {
  .topnav .topnav2 {
    visibility: hidden;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}
.topnav .topnav3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: flex-end;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-left: 10px;
  margin-right: 10px;
  margin-top: -1.5px;
  height: 46px;
  width: 46px;
  border-radius: 3px;
  cursor: pointer;
  visibility: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 880px) {
  .topnav .topnav3 {
    visibility: visible;
    -webkit-user-select: auto;
       -moz-user-select: auto;
            user-select: auto;
  }
}
.topnav .topnav3:hover span {
  opacity: 1;
}
.topnav .topnav3 span {
  position: absolute;
  height: 3px;
  background-color: white;
  width: calc(100% - 8px);
  filter: drop-shadow(0 0 1px black);
  border-radius: 3px;
  transition: 0.5s;
  opacity: 0.75;
}
@media (min-width: 880px) {
  .topnav .topnav3 span {
    transition: 0s;
  }
}
.topnav .topnav3 span:nth-child(1) {
  margin-bottom: 20px;
  width: calc(100% - 20px);
}
.topnav .topnav3 span:nth-child(3) {
  margin-top: 20px;
  width: calc(100% - 20px);
}

.img-p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  padding: 5px;
}
.img-p img {
  height: 20px;
  width: 20px;
  margin-right: 5px;
  filter: invert(1);
}
@media (max-width: 880px) {
  .img-p img {
    display: none;
  }
}
.img-p p {
  text-transform: capitalize;
}
.img-p p a {
  color: white;
  text-decoration: none;
  font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
  /* filter: drop-shadow(0 0 1px black); */
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 880px) {
  .img-p p a {
    font-size: 26px;
  }
}
@media (max-width: 370px) {
  .img-p p a {
    font-size: 23px;
  }
}
.img-p p a:hover {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-color: white;
  border: none;
}
.burger-topnav {
  height: 100%;
  width: 100%;
  position: fixed;
}

.intro-banner {
  text-align: center;
  padding-top: 50px;
}

.services-container {
  max-width: 800px;
  margin: auto;
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.services-container .scc {
  border: 2px solid rgba(162, 162, 162, 0.846);
  height: 80px;
  width: 150px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
}
.services-container .scc:hover {
  background-color: #2D394C;
  border-color: white;
}
.services-container .scc:hover > p {
  color: white;
}
.services-container .scc div {
  padding-top: 8px;
  display: flex;
  justify-content: center;
}
.services-container .scc div img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 30px;
  width: 30px;
}
.services-container .scc p {
  color: rgb(41, 41, 41);
  font-size: 18px;
  margin-top: 5px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
}

#tagline {
  color: rgba(45, 45, 45, 0.911);
}/*# sourceMappingURL=main.css.map */