* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


.about {
  height: 50vh;
  background: linear-gradient(rgba(21, 37, 53, 0.949), rgba(0, 0, 0, 0.80)),
    url(../image/about.png);
  width: 100%;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}

.search-bar {
  background-color: #fff;
  padding: 30px;
  display: flex;
  align-items: center;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
    -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}

.search-bar input {
  border: 0;
  outline: none;
  font-size: 16px;
}

.search-bar input:focus {
  border: 0;
  outline: none;
}

nav {
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 8vh;
  background: rgb(63, 94, 251);
  background: radial-gradient(circle, rgba(63, 94, 251, 1) 0%, rgba(202, 29, 232, 1) 18%, rgba(6, 118, 49, 1) 100%);
  list-style: none;
}



.blue-text {
  color: #013355;
  letter-spacing: 1px;
}

a {
  list-style: none;
  text-decoration: none;
}
a:visited {
  list-style: none;
  text-decoration: none;
  color: #fff;
}

.nav-bg {
  background-color: #fff;
}

.logo {
  align-items: center;
}

.nav-links {
  display: flex;
  cursor: pointer;
  align-items: center;
  list-style: none;
  text-decoration: none;
}

.nav-links li {
  list-style: none;
  text-decoration: none;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;

}

.nav-links a {
  color: #fff;
  list-style: none;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  text-align: center;
  position: relative;
}


.hover-border {
  position: relative;
  width: 100px;
  text-align: center;
  color: #57460e;
}

.hover-border:hover {

  color: #fef502;
}

.hover-border::before {
  content: "";
  width: 100%;
  background: #2f8029;
  color: #000;
  position: absolute;
  bottom: 0%;
  left: 0%;
  transform: scaleX(0);
  animation: 1s forwards ani1 linear;
  z-index: -1;
  border-radius: 5px;
}

.hover-border:hover::before,
.hover-border:focus::before {
  animation: 0.5s forwards ani2 linear;
  background: #b3c923;
  color: #000;
  height: 100%;

}

@keyframes ani2 {
  0% {
    transform: scaleX(0);
    height: 4px;
  }

  45% {
    transform: scaleX(1);
    height: 4px;
  }

  55% {
    height: 12px;
  }

  100% {
    transform: scaleX(1);
    height: 20px;
  }
}

@keyframes ani1 {
  0% {
    transform: scaleX(1);
    height: 20px;
  }

  45% {
    height: 6px;
  }

  55% {
    transform: scaleX(1);
    height: 6px;
    opacity: 1;
  }

  100% {
    transform: scaleX(0);
    height: 4px;
    opacity: 0.02;
  }
}

.burger {
  display: none;
  cursor: pointer;
  background-color: #0a4931;
  border-radius: 3px;
  padding-top: 2px;

}

.burger div {
  width: 25px;
  height: 4px;
  background-color: #ffffff;
  margin: 4px;
  transition: all 0.3s ease;
}

.burger .line2 {
  width: 13px;
}

@media screen and (max-width: 1024px) {
  .nav-links {
    width:100%;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: 0px;
    top: 8vh;
    background: linear-gradient(rgba(21, 37, 53, 0.89), #000000be),
      url(../image/bluerose2.png);
      height: 100vh;
      width: 100%;
    background-size: cover;
    background-position: contain;
    background-repeat: no-repeat;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    clip-path: circle(100px at 95% -5%);
    -webkit-clip-path: circle(100px at 95% -5%);
    transition: all 0.5s ease-out;
    transform: translateX(100%);
  }

  .nav-links li {
    opacity: 0;
    margin: 5%;
    
  }

  .burger {
    display: block;
    margin: 2%;
  }

  
  ::-webkit-scrollbar {
    width: 16px;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(transparent, #499edd);
    border-radius: 6px;
    height: 120px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(transparent, #F8F4E3);
  }

}

.nav-active {
  transform: translateX(0%);
  clip-path: circle(690px at 74% 8%);
  -webkit-clip-path: circle(690px at 74% 8%);
  pointer-events: all;
}

@keyframes navLinksFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(44deg) translate(-5px, -7.7px);
}

.burger,
.nav-links,
.logo,
nav,
a {
  z-index: 2;
}

.jumbotron {
  background: none;
  /* Transparent background */
}

.abg {
  background: linear-gradient(to right, #499edd 0%, #060c21 100%);
}

.light-blue {
  color: #499edd;


}

.bg-light-blue {
  background-color: #499edd;
}

.box-shadow {
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
    inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7),
    -0.5px -0.5px 0px rgba(255, 255, 255, 1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.box-shadow:hover {
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
    inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7),
    -0.5px -0.5px 0px rgba(255, 255, 255, 1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.light-bg {
  background-color: rgb(250, 250, 250);
}

.light-blue-bg {
  background-color: #edf4fa;

}

.container .card .face.face2 {
  position: relative;
  background: #fff;
  display: flex;
  padding: 15px;
  box-sizing: border-box;
  transform: translateY(-120px);
}

.container .card .face.face2.iwona {
  position: relative;
  background: #fff;
  display: flex;
  padding: 15px;
  box-sizing: border-box;
  transform: translateY(-1px);
}

.container .card:hover .acard {
  color: #fff;
  background-color: #fff;
  border: 1px solid #fff;

}

.container .card:hover .card-into {
  color: #fff;

}


.acard {
  background-color: #499edd;
  ;
  color: #fff;

}


.container .card:hover .face.face2 {
  transform: translateY(0);
}

.container .card:hover .face.face1 {
  background-color: #060c21;
  transform: translateY(0);
}

.container .card .face.face1 .content {

  transition: 0.3s;
}

.container .card:hover .face.face1 .content {
  opacity: 1;
}

.container .card:hover .face.face1 .content img {
  margin-top: 0%;
}

.container .card .face.face1 .content img {
  margin-top: 1%;
}

.container .card .face.face1 .content img:hover {
  margin-top: 0%;
}

.container .card:hover {
  margin-top: 0%;
}

.container .card:active {
  margin-top: 0%;
}

.container .card {
  position: relative;
  background-color: #fff;
}

.container .card .face {
  transition: 0.5s;
}

.container .card .face.face1 {
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
  z-index: 1;
  transform: translateY(90px);
}

.container .card .face.face1 h5 {
  color: #fff;
  padding: 0;
  text-align: center;
}

.container .card .face.face1 h6 {
  color: #fff;
  padding: 0;
  text-align: center;
}

.hu__hu__ {
  animation: hu__hu__ infinite 2s ease-in-out
}

@keyframes hu__hu__ {
  50% {
    transform: translateY(30px)
  }
}


::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent, #013355);
  border-radius: 6px;
  height: 120px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, #FFC700);
}