body {
  background-color: white;
}

.top-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: black;
  padding: 15px 30px;
}

.connect-button {
  background-color: white;
  border-radius: 5px;
  box-shadow: #dae4ff 0px 4px 0px 0px;
  padding: 15px 10px;
  background-repeat: no-repeat;
  /* box-sizing: border-box; */
  width: 150px;
  height: 40px;
  color: #000;
  border: none;
  font-size: 15px;
  transition: all .3s ease-in-out;
  z-index: 1;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  outline: none;
  margin-left: 30px;
}

.connect-button::before {
  content: "";
  background-color: whitesmoke;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 700ms ease-in-out;
  display: inline-block;
}

.connect-button:hover::before {
  width: 100%;
}

.logo-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.logo-center img {
  width: 12%;
}

.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: rgb(48, 45, 45);
  height: 60px;
  color: white;
}

.heading h1 {
  margin-left: 10%;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-weight: 300;
}

.heading a {
  margin-right: 150px;
}

.containers {
  padding: 0 20px;
  /* Add space on both sides (adjust the padding as needed) */
  display: flex;
  justify-content: center;
  /* Center the content horizontally */
  margin-top: 40px;
}

.carousel {
  max-height: 560px;
  /* Set a fixed height for the carousel */
  overflow: hidden;
  max-width: 70%;
  display: block;
  margin: 0 auto;
  /* Center the carousel */
}

.carousel-inner {
  max-height: 100%;
  /* Ensure the carousel occupies the full height of the container */
}

.carousel-item {
  height: 100%;
  /* Make each carousel item take the full height of the carousel */
  position: relative;
}

.carousel-caption {
  position: absolute;
  /* Set the captions to absolute position */
  bottom: 0;
  /* Position captions at the bottom of the carousel items */
  left: 0;
  width: 100%;
  padding: 50px;
  /* Add some padding to the captions */
  padding-top: 10px;
  background-color: rgba(0,
      0,
      0,
      0.7);
  /* Optional: Add a background color for the captions */
  color: white;
  /* Optional: Set text color for the captions */
}

.button1 {
  position: absolute;
  bottom: 20px;
  /* Adjust the bottom spacing as needed */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.carousel-item img {
  object-fit: cover;
  /* Scale images to cover the entire slide, maintaining aspect ratio */
  width: 100%;
  height: 100%;
}

/* popup form styles */
/* Popup container styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  overflow-y: auto;

}

/* Popup content styles */
.popup-content {
  background-color: #fff;
  margin: 1% auto;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 850px;
}

.close {
  position: relative;
  top: -10px;
  left: 800px;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  font-size: 30px;
}

.close:hover {
  color: #000;
}

/* Form styles (you can customize these further) */
#contactForm {
  display: grid;
  gap: 15px;
  margin-left: 50px;
  margin-top: 20px;
}

.flex {
  display: flex;
  width: 93%;
  gap: 30px;
}

#input-text,
input[type="email"] {
  width: 90%;
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ccc;
}

#input-text,
input[type="email"]:focus {
  outline: none;
}

input::placeholder {
  /* color: #04AA6D;  */
}

label {
  font-size: 12px;
}

select {
  height: 40px;
}

option {
  border-radius: 0px;
}

.message-textarea {
  resize: none;
  height: 100px;
  overflow-y: auto;
  width: 91%;
  padding: 5px;
  border-radius: 5px;
}

.message-textarea:focus {
  outline: none;
}

.form-submit-button {
  background-color: #000;
  color: #fff;
  padding: 10px 11px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  width: 90%;
}

.form-submit-button:hover {
  background-color: rgb(37, 36, 36);
}

.container {
  display: block;
  position: relative;
  padding-left: 28px;
  padding-right: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container a {
  text-decoration: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

.container:hover input~.checkmark {
  background-color: #ccc;
}

.container input:checked~.checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked~.checkmark:after {
  display: block;
}

.container .checkmark:after {
  left: 7px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* 
.scribble {
  margin-top: -12px;
} */

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  color: black;
  bottom: 0;
  font-size: 13px;
  /* margin: 0rem 2rem; */
  padding: 5px 5px;
  letter-spacing: 0.5px;
  background-color: whitesmoke;
}

footer a {
  text-decoration: none;
  color: rgb(4, 79, 253);

}

footer .copyright {
  font-weight: 600;
  text-align: end;
  margin-top: 1rem;

}

footer .policy {
  text-align: justify;
  width: 70%;
  margin-top: 2rem;
  margin-left: 20px;
  line-height: 1.2rem;
  font-size: 15px;
}
#openFooterPopup{
  border: none;
  background-color: transparent;
  font-weight: 600;
  color: rgb(4, 79, 253);
  cursor: pointer;
}