@import url('https://fonts.googleapis.com/css2?family=Jost&family=Manrope&family=Merriweather+Sans&family=Merriweather:wght@300&family=Montserrat:wght@200&family=Open+Sans:wght@300&family=Oswald:wght@200&family=PT+Sans&family=Playfair+Display&family=Roboto+Condensed:wght@300&family=Rubik&display=swap');

body {
  margin: 0;
  padding: 0;
}

.top-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #272699;
  padding: 10px 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: #afc6f9;
  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%;
}

.navbar {
  background-color: #7992e8;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.heading {
  flex: 1;
  display: flex;
  align-items: center;
}

.heading h2 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin-left: 60px;
  font-family: Merriweather Sans;

}

/* Hero styles */
.hero {
  display: flex;
  align-items: center;
  padding: 40px;
  background-color: white;
}

.hero-content {
  flex: 1;
}

.hero-text {
  margin-top: 20px;
  padding-left: 30px;
}

.hero-text h1 {
  font-size: 32px;
  font-weight: bold;
  color: #26219f;
  font-family: Merriweather Sans;

}

.hero-text p {
  font-size: 20px;
  color: #666;
  line-height: 35px;
}

.hero-text span {
  display: block;
  margin-top: 10px;
  color: #7992e8;


}

.hero-search {
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding-left: 30px;
}

.search-input {
  width: 300px;
  height: 40px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  margin-right: 10px;
}

.search-button {
  background-color: #7992e8;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

/* Hero image styles */
.hero-image {
  text-align: right;
  /* Align the image to the right side */
  margin-right: 100px;
  margin-top: -300px;
  /* max-width: 720px; */
  width: 100%;
  height: auto;

}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
  position: fixed;
  bottom: 0px;
  font-size: 13px;
  /* margin: 0rem 2rem; */
  padding: 5px 5px;
  letter-spacing: 0.5px;
  background-color: #dae4ff;

}

footer a {
  text-decoration: none;
  color: rgb(4, 79, 253);

}

footer .copyright {
  font-weight: 600;
  text-align: end;
  margin-top: 1rem;
  font-family: Merriweather Sans;

}

footer .policy {
  text-align: justify;
  width: 70%;
  margin-top: 1rem;
  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;
}

/* 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;
  font-family: Merriweather Sans;

}

/* 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: 820px;
  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;
} */