/* Basic reset */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face  {
 font-family: "DM Sans", serif !important;
	color: #6d6f72 !important;
	line-height: 1.6em !important;
	font-style: normal !important;
	font-weight: 400 !important;
}
@font-face {
    font-family: stolzl;
    src: url('../css/fonts/stolzl_regular.otf');
}

.Acumin-pro {
    font-family: stolzl;
    color: #36454F;
}
body
{
	font-family: "DM Sans", serif !important;
	color: #6d6f72 !important;
	line-height: 2.23em !important;
	font-style: normal !important;
	font-size: 1.5rem !important;
	font-weight: 400 !important;
    overflow-x: hidden;
  
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  z-index: 1001;
  color: white;
  background: transparent; /* Start transparent over the banner */
  transition: transform 0.3s ease;
}
.a:hover{
	color: #EE7F51 !important;
}

.main-header.scrolled {
  background-color: black; /* Change to black when scrolled */
}

.main-header .logo {
  font-size: 1.5em;
  font-weight: bold;
}

.main-header nav {
  flex-grow: 1;
  text-align: right; /* Centering the navigation */
	 margin-left: -40px; 
	margin-top: 15px;
	font-weight: 700;
}

.main-header nav ul {
  display: inline-flex; /* Change display to inline-flex to center the list */
  list-style: none;
}

.main-header nav ul li {
  margin: 0 20px; /* Space between menu items */
}

.main-header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.0em;
}

/* Icons and button on the right side */
.header-icons {
  display: flex;
  align-items: center;
}

.header-icons i {
  margin-left: 40px; /* Increased spacing between icons */
  color: white;
  font-size: 1.2em;
  cursor: pointer;
	margin-right: 20px;
}

.header-icons i:first-child {
  margin-left: 0; /* Remove margin-left for the first icon */
}

.header-icons i:hover {
  color: #ff9800; /* Change color on hover */
}

/* Button next to the user icon */
.header-btn {
  margin-left: 40px; /* Spacing between the last icon and button */
  padding: 12px 30px;
  background-color: #E66EB1;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
	border-radius: 50px;	margin-right: 20px;

}

.header-btn:hover {
  background-color: #E66EB1; /* Darken on hover */
}

.btnx {
   padding: 8px 30px;
  background-color: #EE7F51;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
	border-radius: 50px;	 

}


/* Full-screen fixed banner */


@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* Zoom to 1.2 scale */
  }
}

.bannermainText {
  position: relative;
  z-index: 1; /* Ensures text is above the background */
}

.banner-content {
  text-align: center;
  color: white;
   padding: 40px;
  border-radius: 8px;
}

.banner h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.banner p {
  font-size: 1.5em;
}

/* Regular content below the banner */
.content {
  /*height: 2000px;*/ /* To allow scrolling */
  padding: 20px;
}
.underline
{
	border-bottom:2px solid #EE7F51;
	color: #EE7F51 !important;
	margin-top: 10px;
	margin-bottom: 10px;
	display: block;
	height: 2px;
	background-color: #EE7F51;
	content: "";
	width:150px; 
 
}

.underline_center
{
	border-bottom:2px solid #EE7F51;
	position: absolute !important;
	align-items: center !important;
	color: #EE7F51 !important;
	margin-top: 20px;
	margin-bottom: 20px;
	height: 2px;
	background-color: #EE7F51;
	width:150px; 
	content: "";
	left: 50%;
  transform: translate(-50%, -50%);
 
}
.content
{
	padding: 80px !important;
 }

.subtitle {
  align-content: center !important;
	text-align: center !important;
  line-height: 18px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  opacity: 0.9;
	font-size: 30px !important;
	font-family: stolzl,sans-serif !important;
	
}
.subtitlebig {
align-content: center;
font-family: stolzl,sans-serif;
  font-size: 4.153em;
  font-weight: bold;
  font-style: normal;
  line-height: 1.09em;
  text-decoration: none;
  text-transform: none;
  letter-spacing: -1.8px;
  margin-top: 1.04em;
}
.subtitlebold {

font-family: stolzl,sans-serif;
  font-size: 1.753em;
  font-weight: bold;
  font-style: normal;
  line-height: 1.09em;
  text-decoration: none;
  text-transform: none;
  }

/* Accordion container */
.accordion-container {
  max-width: 600px;
  margin: 20px auto;
  border-radius: 5px;
  
}

/* Accordion item */
.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
  border-bottom: none;
}

/* Accordion header */
.accordion-header {
  /* background-color: #f4f4f4; */
  cursor: pointer;
  padding: 15px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.accordion-header h3 {
  margin: 0;
  font-size: 2rem;
}

/* Accordion content */
.accordion-content {
  padding: 0 15px;
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  font-size: 1.2em;
}

.accordion-content.show {
  height: auto; /* This is set via JavaScript to trigger height calculation */
}

/* Accordion icon (plus/minus) */
.accordion-icon {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
  margin-right: 10px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .accordion-header.active {
  background-color: #e0e0e0;
} */

/* Rotate icon when active (showing content) */
.accordion-header.active .accordion-icon {
  content: '-';
  transform: rotate(180deg);
}

/* Style for the cursor dot */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  transition: transform 0.1s ease-out;
  /* Optional: smooth trailing effect */
}
.cursor-dot-big-working {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: black;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  transition: transform 0.1s ease-out;
}
.cursor-dot-big { 
  position: fixed;
  width: 60px;
  height: 60px;
  background-color: black;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  transition: transform 0.1s ease-out;
  display: flex;
  justify-content: space-between; /* Space between arrows */
  align-items: center; /* Center arrows vertically */
  padding: 0 10px; /* Add some padding to the sides */
  color: rgba(255, 255, 255, 0.836); /* Arrow color */
  font-size: 20px; /* Arrow size */
  transform: translate(-50%, -50%); /* Center the big dot */
  display: none; /* Hide by default */
}
.fade-up-heading {
  white-space: nowrap; /* Prevent line breaks for letters */
  margin: 0; /* Remove default margins */
  padding: 0; /* Remove default padding */
  display: flex; /* Use flexbox for centering */
}
.fade-up-heading span {
  display: inline-block; /* Each letter will be treated as a block element */
  opacity: 0; /* Initially hidden */
  transform: translateY(30px); /* Start slightly lower */
  transition: opacity 0.5s ease, transform 0.5s ease; /* Transition for opacity and position */
}

.fade-up-heading span.show {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Move to original position */
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #EE7451;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: #333;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid #d2d3d5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  color: #f39c12;
  transform: scale(1.1);
}

.footer p {
  font-size: 16px;
}

.footer {
  padding-bottom: 10px;
}
:focus {
  outline: none;
}
input[type="text"] {
  font: 15px/24px "Lato", Arial, sans-serif;
  color: #333 !important;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: transparent;
}

.effect-1,
.effect-2,
.effect-3 {
  border: 0;
  padding: 7px 0;
  border-bottom: 1px solid #ccc;
}

.effect-1 ~ .focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: 0.4s;
}
.effect-1:focus ~ .focus-border {
  width: 100%;
  transition: 0.4s;
}
.scroll-to {
  cursor: pointer;
  animation: float 5s ease-in-out infinite; /* Add floating animation */
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0); /* Starting position */
  }
  50% {
    transform: translateY(-10px); /* Move up by 10px */
  }
}

