/*-----------------------------------------------------------------------------------*/
/*  BASE CLASSES
/*-----------------------------------------------------------------------------------*/
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
  background-color: #333;
}
::-webkit-scrollbar-thumb {
  background-color: #0061b1;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
*, *::after, *before:: {
  box-sizing: border-box;
}
html, body {
  max-width: 100%;
  background-color:#101014;
  color:#fff;
}
body {
	font-family: 'Interface',Arial,sans-serif;
	padding-bottom: env(safe-area-inset-bottom);
	color: #fff;
	overflow-x: hidden;
}
h1, h2, h3 {
	font-weight: 700;
	line-height: 0.8;
}

.responsive {
	max-width: 100%;
	height: auto;
	border-radius: 25px;
}

.outer {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

.inner {
  margin-left: 10%;
  margin-right: 10%;
  width: 100%;
}

.cta {
position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  width: 80%;
  top: 18%
  color:#fff;
  border-radius: 25px;
}

.undercta{
  background-color: #000;
  opacity: 100%;
}

.container {
    text-align: center;
	position: relative;
	height: 100%;
	width: 100%;
}


.thumbnail:hover {
    transform: scale(1.1);
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-image {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff5f5f;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 16px;
    transition: background 0.3s;
}

.close-btn:hover {
    background: #ff2d2d;
}
.corner-image {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    cursor: pointer;
    z-index: 1000; /* Ensure it stays on top */
    transition: transform 0.2s ease-in-out;
}

.corner-image:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}
