
h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #717070;
  }

.dot1 {
	position: absolute;
	display: grid;
	margin-top: 30px;
	margin-left: 8px;
	height: 20px;
	width: 20px;
	background-color: black;
	border-radius: 100px;
}

.dot1 p {
	display: inline;
	margin-top: 55px;
	margin-left: -10px;
	width: 200px;
	color:#717070;
}

.dot2 {
	position: absolute;
	display: grid;
	margin-top: 20px;
	margin-left: 130px;
	height: 40px;
	width: 40px;
	background-color: plum;
	border-radius: 100px;
}

.dot2 p {
	display: inline;
	margin-top: 65px;
	margin-left: -30px;
	width: 200px;
	color:#717070;
}

.dot3 {
	position: absolute;
	display: grid;
	margin-left: 270px;
	height: 80px;
	width: 80px;
	background-color: white;
	border: 1px solid #717070;
	border-radius: 100px;
}

.dot3 p {
	display: inline;
	margin-top: 83px;
	margin-left: 18px;
	width: 200px;
	color:#717070;
}

.carousel {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.panel {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;
	height: 100%;
	transition: transform 0.5s ease;
}

.left-panel {
	left: 0;
	background-color: white;
}

.right-panel {
	right: 0;
	background-color: powderblue;
}

.carousel-panel {
	height: 100vh;
}

.text-container {
	padding: 50px;
    height: 90vh;
	color: #333;
    background-color: white;
}

.circle-container {
    position: relative;
    width: 300px;
    height: 100px;
}

.arrow {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 30px;
	height: 30px;
	border-bottom: 5px solid #333;
	border-right: 5px solid #333;
	transition: all 0.3s ease;
	z-index: 10;
}

.down-arrow {
	transform: translateX(-50%) rotate(45deg);
	border-bottom: 5px solid white;
	border-right: 5px solid white ;
}

.down-arrow-main {
	transform: translateX(-50%) rotate(45deg);
	border-bottom: 5px solid #333;
	border-right: 5px solid #333;
}

.up-arrow {
	transform: translateX(-50%) rotate(45deg);
	top: 5%;
	border-top: 5px solid #333;
	border-left: 5px solid #333;
	border-right: none;
	border-bottom: none;
	transition: all 0.3s ease;
}

.arrow:hover {
	/* transform: translateY(50px); */
	border-color: plum;
}
  

.active .left-panel {
	transform: translateX(-100%);
}

.active .right-panel {
	transform: translateX(100%);
}

#three-container {
    /* background-color: #000; */
    /* width: 200px; */
    height: 85vh;
    /* border: 1px solid black; */
    margin: 50px;
    padding: 0px;
    /* position: static; fixed or static */
    /* top: 100px; */
    /* left: 100px; */
}

/* Style for the pop-up message */
#popup-message {
	/* background-color: #fff; */
	/* background-color: rgba(105, 167, 147, 0.2); */
	background-color: rgba(255, 255, 255, 0.2);
	/* background-color: rgba(165, 23, 255, 0.2); */
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(197, 97, 174, 0.846);
	color: plum;
	font-size: 1.2rem;
	padding: 20px;
	text-align: center;
  }
  
  /* Style for the close button */
  .close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 1.5rem;
	font-weight: bold;
	/* color: #333; */
	color: plum;
  }
  
  /* Style for the overlay background */
  .modal-content {
	/* background-color: (0, 0, 0, 0.5); */
	background-color: rgba(105, 167, 147, 0.2);
  }
  