#comname {
  font-weight: 700;
  color: black;
  text-transform: uppercase;
}
#comname:hover {
  color: rgb(76, 76, 76);
  transition: all 0.2s;
}

@media (min-width: 991px) {
  .dropdown-menu {
   
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    

    display: block;
    animation: fadeIn ease-in-out 0.3s;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    translate: 0 15px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}


.dropdown-item {
  transition: all ease-in-out 0.2s;
  border-radius: 3px;
  font-size: 15px;
}

.dropdown-item:hover {
  color: white;
  background-color: #bf554c;

  font-weight: 550;
}

.dropdown-menu {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding: 5px;
}

.nav-link:hover {
  transition: all 0.2s;
}

#boxes {
  margin-top: 10%;
}
.card {
  margin-top: 4%;
  background-color: white;
  letter-spacing: 0.5px;
}

.nav-link {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  word-spacing: 0px;
  color: #bf554c;
  font-weight: 600;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  text-transform: uppercase;
  /*  padding: 10px; */
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 25px;
}

@font-face {
  font-family: Poppins;
  src: url("Poppins/Poppins-Regular.ttf") format("truetype");
}

body {
 
  background: linear-gradient(to bottom, #D1E7F3, white,white);

  font-family: "Poppins";
  scroll-behavior: smooth;
}
#blackhatseo{
  height: 1px;
}



#carouselExampleCaptions {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.navbar-nav,
.mr-auto {
  flex: 1;
  margin: auto !important;
  display: flex;
  justify-content: space-between;
}

#cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card {
  padding: 5px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: smaller;
  transition: all 0.2s ease-in-out;
  z-index: 0;
}
.card-img-top {
  border-radius: 5px;
}
.card:hover {
  background-color: #388E3C;
  color: white;
  transform: translate3D(0,-5px,0) scale(1.1);
  z-index: 10;
  transition: all 0.25s ease-in-out;
  
}
.card-img-top{
  transition: all ease-in-out 300ms;
}
.card:hover .card-img-top{
  transform: scale(0.92);
}

#progcard .card {
  margin: 10px;
  max-width: 150px;
}

.section {
  background-color: #f3f4f6;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
}





@media (max-width: 1199px) {
  #progcard .card {
    font-size: smaller;
    padding: 10px;
  }
  #website .card {
    font-size: smaller;
  }
}
@media (max-width: 991px) {
  #progcard .card {
    font-size: x-small;
  }
}

@media (max-width: 768px) {
  #progcard .card {
    padding: 2px;
    max-width: 100px;
    margin: 5px;
    font-size: 8px;
  }
  #boxes {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  #boxes .card {
    max-width: 150px;
    margin: 10px;
    height: 160px;
  }
  #softcap {
    font-size: larger;
    font-weight: bold;
  }
  #backtop {
    font-size: small;
  }
  .modal-footer {
    font-size: small;
  }
  footer {
    font-size: smaller;
  }

  #embed {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  iframe {
    width: 100%;
  }
}

#backtop {
  text-decoration: none;
  font-size: x-large;
  margin-top: 3px;
  padding-left: 2px;
}

#appcard .card {
  max-width: 320px;
  max-height: 420px;
}

#appcard {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  backdrop-filter: blur(2rem);
}
#appcard .card {
  margin: 5px;
}

#website .card {
  margin: 5px;
}
#website {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: #f3f4f6;
  border-radius: 15px;
}

.progress {
  height: 1vh;
  background: orange;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  transform-origin: 0 50%;
  animation: scaleProgress auto linear;
  animation-timeline: scroll(root);
}

@keyframes scaleProgress {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
