/* epilogue-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/epilogue-v17-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* epilogue-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/epilogue-v17-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* epilogue-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/epilogue-v17-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* epilogue-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/epilogue-v17-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* epilogue-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/epilogue-v17-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* epilogue-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/epilogue-v17-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* normal require css for all web pages */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
}

ul {
  list-style: none;
}

html,
body {
  min-height: 100%;
  height: auto;
}

html {
  min-height: 100vh;
  position: relative;
  scroll-behavior: initial;
  font-size: calc(100vw / 1920 * 10);
}

@media only screen and (max-width: 820px) {
  html {
    font-size: calc(100vw / 390 * 10);
  }
}

body {
  font-family: "Epilogue", sans-serif;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  z-index: 9;
}

/* preloader */
body::after {
  position: absolute;
  content: attr(data-loader-text);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  font-size: 5rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 10;
  transition: all 0.5s ease;
}

body.loaded::after {
  opacity: 0;
  visibility: hidden;
}

*::before,
*::after {
  box-sizing: border-box;
}

    .login-container {
      position: fixed;
      top: 10px;
      right: 10px;
      backdrop-filter: blur(15px);
      border-radius: 5px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      cursor: move;
      max-width: 300px;
      width: 100%;
  z-index: 5; /* Setting a higher z-index value to position the element in the foreground */
}

    .login-container input {
      display: block;
      width: 100%;
      margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px 8px 8px 8px;
     padding: 10px;
      box-sizing: border-box;
  cursor: text; /* Text cursor for the input field */
    }

    .login-container button {
      background: linear-gradient(to right, #46d4ff, #38affe, #765efd, #3a6dfe);
      color: #fff;
      border: none;
  border-radius: 8px 8px 8px 8px;
      padding: 10px;
      cursor: pointer;
      width: 100%;
      box-sizing: border-box;
    }




    .popup {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(255, 255, 255, 0.9);
      padding: 40px;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      z-index: 7;
    }

    .popup p {
      margin: 0;
    }

    .popup button {
      background-color: #46d4ff;
      color: #fff;
      border: none;
      padding: 10px;
      cursor: pointer;
      border-radius: 5px;
      position: absolute;
      right: 5px;
      top: 50px;
    }

    .popup button:hover {
      background-color: #3a6dfe;
    }


.logo-container {
  position: fixed;
  top: 90%;
  left: 20px;
  backdrop-filter: blur(15px);
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: move;
  max-width: 120px;
  width: 100%;
  z-index: 5; /* Setting a higher z-index value to position the element in the foreground */
}

.logo-container img {
  max-width: 100%;
  height: auto;
}

.logo-container2 {
  position: fixed;
  top: 90%;
  left: 160px;
  backdrop-filter: blur(15px);
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: move;
  max-width: 130px;
  width: 100%;
  z-index: 5; /* Setting a higher z-index value to position the element in the foreground */
}

.logo-container2 img {
  max-width: 100%;
  height: auto;
}

.logo-container3 {
  position: fixed;
  top: 90%;
  left: 310px;
  backdrop-filter: blur(15px);
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: move;
  max-width: 130px;
  width: 100%;
  z-index: 5; /* Setting a higher z-index value to position the element in the foreground */
}

.logo-container3 img {
  max-width: 100%;
  height: auto;
}

.logo img {
  transition: transform 0.3s ease-in-out;
}

.logo:hover img {
  transform: scale(1.5);
}

img {
  object-fit: cover !important;
  user-select: none;
}

/* custom scrollbar */

::-webkit-scrollbar {
  width: 10px;
  background-color: #f4f4f4;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(15, 23, 42, 1);
  border-radius: 10px;
}

/* utilities classes */
.container {
  max-width: 70%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}
.big-container {
  max-width: 90%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}

/* text sizes */
.title {
  font-size: 10rem;
  font-weight: 400;
  line-height: 13rem;
}

.sub-title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.medium-title {
  font-size: 4rem;
  font-weight: 400;
  line-height: 4rem;
}

.paragraph {
  font-size: 2rem;
  font-weight: 400;
  line-height: 4rem;
}

.btn {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 500;
  background: #ffffff;
  color: #000000;
  padding: 3rem 4rem;
  border-radius: 5px;
  transition: all 0.5s ease;
}

.btn:hover {
  color: #ffffff;
  background: #0f0f0f;
}

/* navigation */
nav {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  mix-blend-mode: normal;
  pointer-events: none;
}

nav .nav-container {
  max-width: 90%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 0;
  pointer-events: none;
}

nav .nav-container a.logo,
nav .nav-container a.logo svg {
  width: 5rem;
  height: 5rem;
}

nav .nav-container a.logo svg {
  pointer-events: none;
}

nav .nav-container a.logo {
  pointer-events: all;
}

/* about */
.about {
  width: 100%;
  height: auto;
}

.about .big-container,
.about .container {
  padding: 10rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.about .big-container p,
.about .container p {
  margin-top: 2rem;
  width: 80%;
}

.about .big-container p:nth-of-type(2),
.about .container p:nth-of-type(2) {
  font-weight: bold;
  color: #f4f4f4;
}

.copyright-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
}   

/* footer */
footer {
  width: 100%;
  height: auto;
}

footer .big-container,
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

footer .big-container img,
footer .container img {
  width: 4rem;
  height: 4rem;
  animation: rotate 5s linear infinite;
  margin-bottom: 2rem;
}

.fixed-container {
  position: fixed;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px; /* Increased padding for larger size */
  backdrop-filter: blur(15px);
  border-radius: 8px; /* Increased border radius for rounded corners */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Shadow */
  text-align: center;
  z-index: 5; /* Setting a higher z-index value to position the element in the foreground */
  cursor: move; /* Custom cursor */
  transition: padding 0.3s; /* Add a smooth transition for the padding property */
}

.fixed-container:hover {
   padding: 60px; /* Increased padding for larger size on hover */
}

.fixed-container input {
  width: 400px; /* Increased width for a larger text field */
  padding: 20px; /* Increased padding for more height */
  margin-bottom: 5px; /* Added margin for spacing between input and button */
  border: 1px solid #ccc;
  cursor: text; /* Text cursor for the input field */
}

.fixed-container button {
  padding: 20px 30px; /* Increased padding for a larger button */
  background: linear-gradient(to right, #46d4ff, #38affe, #765efd, #3a6dfe);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}



.fixed-container p {
  margin-top: 10px; /* Added margin for spacing between button and text */
  font-size: 16px; /* Adjust the font size as needed */
  color: #3a6dfe; /* Adjust the text color as needed */
}

.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-container p {
  margin-top: 10px; /* Added margin for spacing between button and text */
  font-size: 16px; /* Adjust the font size as needed */
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 50px;
  color: #555;
}


.ripple {
	/*background: #79b928;
	color: #fff;*/
	padding: 20px 23px;
	position: relative;
	overflow: hidden;
}

.ripple::before {
	content: "";
	position: absolute;
	background-color: rgba(0,0,0,.1);
	width: 10%;
	height: 25%;
	border-radius: 50%;
	z-index: 1;
	top: 35%;
	left: 45%;
	-webkit-transform: scale(0);
	transform: scale(0);
}

/*.ripple:hover {
	background: #74b126;
	color: #fff;
}*/

.ripple:hover::before {
	-webkit-transform: scale(12);
	transform: scale(12);
	-webkit-transition: border-radius .5s .5s,-webkit-transform .5s;
	transition: border-radius .5s .5s,-webkit-transform .5s;
	transition: transform .5s,border-radius .5s .5s;
	transition: transform .5s,border-radius .5s .5s,-webkit-transform .5s;
}

.ripple:hover::after {
	content: "";
	position: absolute;
	z-index: 2;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

/* media query */
@media only screen and (max-width: 820px) {
  .title {
    font-size: 3rem;
    line-height: 5rem;
  }

  .paragraph {
    font-size: 1rem;
    line-height: 2rem;
  }

  .sub-title {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .btn {
    font-size: 1rem;
    line-height: 1rem;
    padding: 1rem 2rem;
  }

  .container {
    max-width: 90%;
  }

  nav .nav-container {
    padding: 2rem 0;
  }

  nav .nav-container a.logo,
  nav .nav-container a.logo svg {
    width: 2.5rem;
    height: 2.5rem;
  }

  .about .big-container,
  .about .container {
    padding: 5rem 0;
  }

  .about .big-container p,
  .about .container p {
    width: 100%;
  }

  footer .big-container,
  footer .container {
    padding: 2rem 0;
  }

  footer .big-container img,
  footer .container img {
    width: 2rem;
    height: 2rem;
  }
}
