
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
    scroll-behavior: smooth;
}
::placeholder {
    color: #002854;
}

body {
  writing-mode: horizontal-tb;
  direction: ltr;
  text-orientation: mixed;
  font-family: "El Messiri", serif, "Baloo Bhaijaan 2", "Rakkas", "Figtree",
    sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

img {
  object-fit: cover;
}


.button_btn {
  position: relative;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  outline: none;
  transition: 0.1s cubic-bezier(0.47, 0, 0.745, 0.715);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}


.cards .card:hover img {
  filter: grayscale(100%);
  transform: scale(1.05);

  transition: 0.3s;
}

.cards .card {
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.cards .card::before {
  content: "";
  position: absolute;
  background-color: #e4e4e4;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 10px;
  transition: 0.3s;
  z-index: -1;
}

.cards .card:hover::before {
  width: 100%;
  z-index: -2;
}

.login {
  box-shadow: 0px 15px 33px 0px #00000005, 0px 60px 60px 0px #00000005,
    0px 136px 81px 0px #00000003, 0px 241px 97px 0px #00000000,
    0px 377px 106px 0px #00000000;
  background-image: url(./images/2ab18007fd84e2c105b5.png);
  background-repeat: no-repeat;

}

#overlay.now {
  opacity: 1;
  visibility: visible;
}

.sowpopup.open {
  opacity: 1;
  visibility: visible;
}


select:invalid {
  color: #00000080;
}

