@charset "UTF-8";
Body {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "RobotoCondensed-Bold";
  src: url("/fonts/RobotoCondensed-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "RobotoCondensed-BoldItalic";
  src: url("/fonts/RobotoCondensed-BoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "RobotoCondensed-Italic";
  src: url("/fonts/RobotoCondensed-Italic.tff") format("truetype");
}
@font-face {
  font-family: "RobotoCondensed-Light";
  src: url("/fonts/RobotoCondensed-Light.ttf") format("truetype");
}
@font-face {
  font-family: "RobotoCondensed-LightItalic";
  src: url("/fonts/RobotoCondensed-LightItalic.ttf") format("truetype");
}
@font-face {
  font-family: "RobotoCondensed-Regular";
  src: url("/fonts/RobotoCondensed-Regular.ttf") format("truetype");
}
i {
  font-size: 20px;
  margin-top: 10px;
}

h1 {
  font-family: "RobotoCondensed-Bold", sans-serif;
  font-size: 46px;
}

h3 {
  font-family: "RobotoCondensed-Bold", sans-serif;
  font-size: 28px;
}

h4 {
  font-size: 26px;
  font-family: "RobotoCondensed-Regular", sans-serif;
}

@media (max-width: 767px) {
  h4 {
    font-size: 22px;
  }
}
h5 {
  font-family: "RobotoCondensed-Regular", sans-serif;
}

.logo {
  height: 60px;
  margin: 20px;
}

@media (max-width: 767px) {
  .logo {
    height: 40px; /* sau o valoare specifică, cum ar fi 400px */
  }
}
.custom_label {
  font-size: 24px;
  font-weight: bold;
}

label {
  font-family: "RobotoCondensed-Regular", sans-serif;
  font-size: 20px;
}

.green_color {
  color: #047638;
}

.blue_color {
  color: #003C74;
}

.btn_custom {
  background-color: #fecc00;
  border-radius: 5px;
  padding: 10px 50px;
  font-weight: bold;
  color: #013265;
  font-size: 22px;
  font-family: "RobotoCondensed-Regular", sans-serif;
  text-decoration: none;
}

.btn_custom:hover {
  background-color: #e8ba02;
  color: #013265;
}

.banner img {
  margin: 0;
  padding: 0;
}

.hero-image {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), transparent, transparent, rgba(255, 255, 255, 0.5)), url("/images/close.jpg");
  height: 18vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

@media (max-width: 767px) {
  .hero-image .hero-text {
    max-width: 100%;
    transform: translate(-50%, -80%);
    height: 10vh; /* sau o valoare specifică, cum ar fi 400px */
  }
}
@media (max-width: 767px) {
  .hero-image {
    height: 10vh; /* sau o valoare specifică, cum ar fi 400px */
  }
}
.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: black;
  background-color: #ddd;
  text-align: center;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: #555;
  color: white;
}

.rounded-corners {
  border-radius: 0;
  background-color: #fff;
  height: 60px;
}

.custom_checkbox {
  border-radius: 0 !important;
  background-color: #fff;
  height: 20px;
  width: 20px;
}

@media only screen and (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .mobile-hidden {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .mobile-button {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .mobile-heading {
    font-size: 32px;
  }
}
.alert-success {
  background-color: #C8E6C9;
}

.alert-warning {
  background-color: #e8ba02;
}

.alert-error {
  background-color: #ff5b5b;
}

i:hover {
  display: block;
}

.border-rounded {
  border: 8px solid #EAEAEA;
  border-radius: 30px;
  padding: 10px;
}

@media (max-width: 767px) {
  .border-rounded {
    border: 0;
    border-radius: 0;
    padding: 0px;
  }
}
.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-body img {
  max-width: 100%;
  height: auto;
  margin: 10px auto;
  display: block;
}
