
.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.interregular-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}




/* Smooth scrolling for the entire HTML document */
html {
    scroll-behavior: smooth;
}

/* BACKGROUND LBUR */
/* Container for the background image with blur effect */
.background-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Adding a blurred background image */
.background-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('photos/background-1.jpg') no-repeat center center/cover;
    filter: blur(8px);
    z-index: -1;
}

/* Styling for the content inside the background container */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

/* BACKGROUND LBUR */

/* Fade-in animation for elements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Show class to trigger the fade-in effect */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Background container with a different background image */
.background-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    background: url('/photos/background2.JPEG') no-repeat center center;
    background-size: cover;
}

/* Semi-transparent overlay with blur effect */
.blur-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent layer */
    backdrop-filter: blur(10px); /* Blur effect */
}



.logo img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Hero section with overflow hidden */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Adding a wave SVG at the bottom of the hero section */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('wave.svg') no-repeat center bottom; /* Add a wave SVG */
    background-size: cover;
}

/* Carousel padding */
.carousel {
    padding: 0 50px; /* 50px padding on left and right */
}

/* Footer styling */
.footer {
    background-color: #198754;
}

/* Footer content heading styling */
.footer-content h2 {
    color: #fff;
}

/* Footer content text and links styling */
.footer-content h5,
.footer-content p,
.footer-links a {
    color: #fff;
}

/* Footer links hover effect */
.footer-links a:hover {
    text-decoration: underline;
}

/* Footer horizontal rule styling */
.footer hr {
    background-color: #fff;
}

.succes {
    font-size: 18px;
    color: green;
    text-align: center;
    margin-top: 30px;
}

.disp{
    display: none;
}


@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700|Open+Sans:400,300,600);
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'open sans', helvetica, arial, sans;
  background-size: cover;
}

.log-form {
  width: 40%;
  min-width: 320px;
  max-width: 475px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
}

.log-form form {
  display: block;
  width: 100%;
  padding: 2em;
}

.log-form h2 {
  width: 100%;
  color: #5d5d5d;
  font-family: 'open sans condensed';
  font-size: 1.35em;
  display: block;
  background: #2a2a2a;
  width: 100%;
  text-transform: uppercase;
  padding: .75em 1em .75em 1.5em;
  -webkit-box-shadow: inset 0px 1px 1px fadeout(white, 95%);
          box-shadow: inset 0px 1px 1px fadeout(white, 95%);
  border: 1px solid #1d1d1d;
  margin: 0;
  font-weight: 200;
}

.log-form input {
  display: block;
  margin: auto auto;
  width: 100%;
  margin-bottom: 2em;
  padding: .5em 0;
  border: none;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 1.25em;
  color: #757575;
}

.log-form input:focus {
  outline: none;
}

.log-form .btn {
  display: inline-block;
  background: #1fb5bf;
  border: 1px solid #1ba0a9;
  padding: .5em 2em;
  color: white;
  margin-right: .5em;
  -webkit-box-shadow: inset 0px 1px 0px fadeout(white, 80%);
          box-shadow: inset 0px 1px 0px fadeout(white, 80%);
}

.log-form .btn:hover {
  background: #23cad5;
}

.log-form .btn:active {
  background: #1fb5bf;
  -webkit-box-shadow: inset 0px 1px 1px fadeout(black, 90%);
          box-shadow: inset 0px 1px 1px fadeout(black, 90%);
}

.log-form .btn:focus {
  outline: none;
}

.log-form .forgot {
  color: #33d3de;
  line-height: .5em;
  position: relative;
  top: 2.5em;
  text-decoration: none;
  font-size: .75em;
  margin: 0;
  padding: 0;
  float: right;
}

.log-form .forgot:hover {
  color: #1ba0a9;
}

/* TELEGRAM FORM */




.alert {
  position: relative;
}

.alert > span {
  position: absolute;
  cursor: pointer;
  top: -5px;
  right: 5px;
  font-size: 22px;
}

.hidden {
  display: none;
}



/* END OF TELEGRAM FORM CSS */
.callus {
  text-align: center;
}