.main-header {
  background-image: linear-gradient(rgb(38, 70, 83), rgb(173, 216, 230));
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 80px;
  z-index: 10;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.header-info {
  text-align: left;
  color: rgb(0, 0, 0);
  position: absolute;
  left: 0;
  padding: 0;
  margin: 19.5px 23px;
  padding: 0px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.blob-image {
  /* position: absolute; */
  width: 300px;
  height: auto;
  /* left: 50%; */
  transform: rotate(-90deg);
  border: none;
}

.blob-image:hover {
  opacity: 1;

}

.blogger-image {
  /* display: block; */
  position: absolute;
  width: 200px;
  height: auto;
  left: 43%;
  top: 200px;
  border: none;
}

.illustration-img {
  margin: 0px;
  width: 800px;
}

.contact {
  display: inline-block;
  margin: 10px 30px;
  text-align: center;
}

.profile-contact-img {
  width: 200px;
}

.form-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.icon {
  margin-right: 6px;
}

.fa-user,
.fa-map-marker-alt,
.fa-envelope-open,
.fa-comment {
  font-size: 27px;
}

.form-label {
  position: absolute;
  left: 10px;
  top: 10px;
}

.form-input {
  position: relative;
  width: 100%;
  border-bottom: 1px solid grey;
  outline: none;
  height: 48px;
  margin-bottom: 15px;
  padding: 0;
}

.input-item {
  position: absolute;
  top: 0;
  left: 0;
  border-style: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  font-size: 15px;
  height: 100%;
}

.textarea-container {
  display: flex;
  justify-content: center;
}

.form-textarea {
  position: relative;
}

.textarea {
  border-style: none;
  border-bottom: 1px solid grey;
  outline: none;
  margin-top: 10px;
}

.submit {
  border-style: none;
  border-radius: 25px;
  color: aliceblue;
  background-color: rgb(38, 70, 83);
  margin: 5px;
  cursor: pointer;
}

.input-item:focus + .form-label {
  top: -5px;
  left: -2px;
  font-size: 10px;
}

.textarea:focus + .form-label {
  top: -5px;
  left: -2px;
  font-size: 10px;
}

.input-item:not(:placeholder-shown).input-item:not(:focus) + .form-label {
  top: -2px;
  left: -2px;
  font-size: 10px;
  color: rgb(138, 130, 130);
}

.textarea:not(:placeholder-shown).textarea:not(:focus) + .form-label {
  top: -2px;
  left: -2px;
  font-size: 10px;
  color: rgb(138, 130, 130);
}

.contact-container {
  display: flex;
  justify-content: flex-start;
}

.illustration-img {
  margin: 0px;
  width: 800px;
  border: none;
}

.illustration-img:hover {
  opacity: 1;
  border: none;
}

.profile-contact-img:hover {
  opacity: 1;
  border: none;
}

.submit {
  border-style: none;
  border-radius: 25px;
  color: aliceblue;
  background-color: rgb(38, 70, 83);
  margin: 5px;
  cursor: pointer;
}

.modal-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.411);
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.show {
  visibility: visible;
  opacity: 1;
}

.modal {
  width: 600px;
  height: 400px;
  position: relative;
  background-color: white;
  padding: 35px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modal h3 {
  margin: 0;
  padding: 0;
  font-size: 30px;
}

.modal p {
  margin: 20px 0;
  padding: 0;
  font-size: 15px;
}

.splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: cadetblue;
  z-index: 200;
  margin: 0;
  padding: 0;
  top: 0;
  border: none;
}

.splash:hover {
  opacity: 1;
  border: none;
}

.splash h1 {
  position: absolute;
  top: 60%;
  left: 40%;
  font-size: 50px;
}

.astronaut-dabbing {
  position: absolute;
  top: 40%;
  left: 18%;
  width: 400px;
  animation: hide 0.5s 1s forwards;
  opacity: 1;
  border: none;
}

.astronaut-takeoff {
  position: absolute;
  top: 93%;
  left: 18%;
  opacity: 1;
  border: none;
}

.animation {
  animation: glide 3s ease-out forwards;
}

@keyframes hide {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  75% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

@keyframes glide {
  50% {
    transform: scale(0.8);
  }

  100% {
    transform: translateY(-900px) scale(0.1);
    /* width: 5px; */
  }
}

.splash h1 {
  font-size: 3vw;
}

.astronaut-dabbing {
  top: 56%;
  left: 18%;
  width: 200px;
  opacity: 1;
  border: none;
}

.astronaut-takeoff {
  top: 96%;
  left: 7%;
  opacity: 1;
  border: none;
}
@media (max-width: 900px) {
  * {
      font-size: 2.5vw;
    }
}

.modal img {
  display: block;
  margin: 0 auto 0 auto;
  padding: 0;
  width: 300px;
  border: none;
}

.modal img:hover {
  opacity: 1;
  border: none;
}

.close-modal {
  position: absolute;
  top: 0;
  right: 10px;
  cursor: pointer;
} 

.blogger-image:hover {
  opacity: 1;
}

.skills-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 50px;
}

.skill-item {
  box-shadow: 0 0 3px gainsboro;
  border-radius: 10px;
  padding: 15px;
  background-color: white;
}

.skill-item img {
  width: 200px;
  height: 180px;
}

.skill-item p {
  padding: 5px;
  box-shadow: 0 0 10px gainsboro;
  border-radius: 5px;
  background-color: rgb(243, 199, 117);
}

.activity-flex {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}

.activity-item {
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 3px gainsboro;
  border-radius: 5px;
  margin: 10px;
}

.activity-item img {
  width: 350px;
  height: auto;
}




.imageBest {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 60%;
  max-height: 60%;
  border-radius: 20px;
  opacity: 1;
  border-color: black;
  border-width: 10px;
  border-style: solid;
}
.imageBest:hover {
  opacity: 1;
}

.imgCar {
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.items {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

p {
  text-align: center;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: thin;
}

table,
tr,
th,
td {
  border: 5px solid lightblue;
  border-collapse: collapse;
  padding: 15px;
}
th {
  color: rgb(255, 255, 255);
  font-size: 23px;
  background-color: lightblue;
}
tr,
th {
  height: 50px;
  text-align: center; 
  vertical-align: center; 
}
td {
  background-color: white;
} 
.item {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: 10px;
  background-color: lightblue;
  border-radius: 50px;
  box-shadow: 15px 15px 15px black;
}

img.imgProduct2 {
  border: none;
  opacity: 1;
}
img.imgProduct2:hover {
  border: none;
  opacity: 1;
  z-index: 2;
}

.header-info a {
  padding: 15;
  margin: -7px;
  margin-left: 50px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.header-info a:hover {
  background-color: black;
  font-size: 26px;
  text-shadow: 3px 5px 2px rgb(121, 121, 121);
  border-radius: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.header-info2 a:hover {
  background-color: black;
  border-radius: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* .header-info {
    text-align: left;
    color: rgb(0, 0, 0);
    position: absolute;
    left: 0;
    padding: 20;
    margin: 12px 20px;
    padding: 0px;
  }
  .header-info a {
    padding: 14;
    margin: -10px;
    margin-left: 50px;
    text-decoration: none;
  }
  .header-info a:hover {
    background-color: black;
    font-size: 23px;
    text-shadow: 3px 5px 2px rgb(121, 121, 121);
    border-radius: 40px;
  }
  .header-info2 a:hover {
    background-color: black;
    border-radius: 40px;
  } */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* bottom: 0; */
  height: 60px;
  background-color: rgb(38, 70, 83);
  /* add s-index after adding slider to see the difference*/
  z-index: 100;
  /* box-shadow: 0px 0px 50px gainsboro; */
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.header-icon {
  width: 40px;
  margin: 8px 15px;
  position: absolute;
}

nav {
  position: absolute;
  right: 0;
  display: flex;
}

a {
  text-decoration: none;
  color: rgb(244, 162, 97);
  padding: 15px;
  float: left;
  font-size: 22px;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 10px;
}

a:hover {
  font-size: 26px;
  background-color: black;
}

.logo {
  width: 40px;
  margin: 18px 25px;
  position: absolute;
  border-color: transparent
}

.dropdown-item:hover {
  background-color: rgb(38, 70, 83);
  cursor: pointer;
}

.title {
  text-align: center;
}

.form {
  padding: 15px;
  background-color: rgb(159, 231, 174);
  box-shadow: 0 0 5px rgb(116, 240, 142);
  border-radius: 5px;
  width: 30%;
}

.formContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

label {
  display: inline-block;
  margin-bottom: 5px;
}

input,
textarea {
  display: inline-block;
  margin-bottom: 10px;
  border: none;
  padding: 5px;
  border-radius: 3px;
  width: 100%;
}

.center {
  text-align: center;
}

a.dropdown-item {
  min-width: 160px;
  text-align: left;
}

div.dropdown-item:hover a.dropdown-item {
  text-align: left;
  color: rgb(244, 162, 97);
}

.dropdown-content {
  display: none;
  padding: 10px;
  border: 5px black solid;
  border-radius: 5px;
}

.dropdown:hover .dropdown-content {
  display: block;
  position: absolute;
  top: 100%;
  background-color: rgb(38, 70, 83);
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

* {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#jumbotron {
  width: 100%;
}

.jumbotron {
  padding: 20px;
  text-align: center;
  background-color: rgb(38, 70, 83);
}

div.center {
  display: flex;
  justify-content: center;
}

img {
  border: 5px solid black;
  margin: 10px;
}
img {
  border-radius: 50px;
}

img:hover {
  opacity: 0.5;
  z-index: 1;
}

.section-slider {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 30px;
}

.image-slider {
  position: relative;
  width: 640px;
  height: 426px;
  z-index: 5;
}

.slide {
  width: 100%;
  position: absolute;
}

.slide img {
  width: 100%;
  border-radius: 15px;
}

.slide-text {
  position: absolute;
  bottom: 50px;
  left: 30px;
  background-color: rgba(220, 220, 220, 0.609);
  padding: 15px ;
  border-radius: 10px;
}

.slide-text h2 {
  font-size: 30px;
  padding: 0;
  margin: 0;
}

.slide-text p {
  font-size: 15px;
  padding: 0;
  margin: 0;
}

.navigation {
  position: absolute;
  display: flex;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.slider-btn {
  background-color: rgb(151, 151, 151);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 5px;
}

.slide {
  /* add the code below*/
  clip-path: circle(0% at 0 50%);
}

.slide.active {
  clip-path: circle(150% at 0 50%);
  transition: 2s;
  transition-property: clip-path;
}



.slider-btn.active {
  background-color: rgb(38, 70, 83);
}

.tab {
  background-color: lightblue;
  width: 250px;
  padding: 40px;
  margin: 20px;
  border-radius: 20px;
  border-style: solid;
  border-color: black;
}
h1.name {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: black;
}
h2.price {
  font-size: 38px;
  color: black;
  text-align: center;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: thin;
}
button.price {
  font-size: 38px;
  color: black;
  text-align: center;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: thin;
}

.list {
  list-style-type: disc;
  margin-bottom: 50px;
  text-align: left;
}

.list li {
  margin-top: 20px;
  color: black;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: thin;
}

hr {
  height: 7px;
  width: 80%;
  margin: auto;
  background-color: rgb(0, 0, 0);
  border: none;
  border-radius: 50px;
  margin-top: 20px;
}
button {
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  color: rgb(0, 0, 0);
  padding: 8px;
  border-color: black;
  font-size: 20pt;
}
button:hover {
  transform: scale(1.2, 1.2);
  background-color: rgb(255, 255, 255);
  cursor: pointer;
}

h1 {
  font-size: 50px;
  text-align: center;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.header-flex {
  display: flex;
  justify-content: space-around;
  padding: 0;
}

.jumbotron-title {
  color: rgb(224, 251, 252);
  font-size: 30px;
  padding-bottom: 20px;
}

.jumbotron-text {
  color: rgb(224, 251, 252);
  text-align: left;
  padding-bottom: 20px;
  border-bottom: 8px solid rgb(244, 162, 97);
}

/* you may add other styles */
.jumbotron-img {
  height: 300px;
  width: auto;
  /* Maintain aspect ratio */
  transition: all 0.3s ease;
  /* Optional: Smooth transition */
}

.mini-text-flex {
  display: flex;
  justify-content: flex-start;
  margin: 0%;
  padding: 0%;
}

.mini-text {
  color: rgb(224, 251, 252);
  text-align: left;
  margin-right: 4px;
}

.fa-hand-point-down {
  color: aliceblue;
  font-size: 20px;
}

button {
  background-color: rgb(38, 70, 83);
  border-style: none;
}

button:hover {
  cursor: pointer;
  transform: translateY(5px);
}

.button{
  padding: 10px;
  justify-content: center;
  margin-left: 685px;
  margin-bottom: 1px;
  border-radius: 10px;
  size-adjust: 50px;
  height: 75px;
  width: 125px;
  font-size: 20px;
  border: 5px solid black;
}

.button1:hover{
  background-color: transparent;
}

body {
  margin: 0% 0% 0% 0%;
  padding: 0;
  font-family: "Oxygen", sans-serif;
}

main {
  margin-top: 60px;
}

* {
  box-sizing: border-box;
}

.fa-hand-point-up {
  color: aliceblue;
  font-size: 20px;
}

.icon-down {
  display: none;
}

.section-container {
  text-align: center;
  padding: 10px;
}

.section-title {
  font-size: 40px;
  margin: 30px 0 0;
}

.section-subtitle {
  font-size: 15px;
  color: gray;
  margin: 10px 0 0;
}

.section-slider {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 30px;
}

.image-slider {
  position: relative;
  width: 640px;
  height: 426px;
  z-index: 5;
}

.slide {
  width: 100%;
  position: absolute;
}

.slide img {
  width: 100%;
  border-radius: 15px;
}

.slide-text {
  position: absolute;
  bottom: 50px;
  left: 30px;
  background-color: rgba(220, 220, 220, 0.609);
  padding: 15px;
  border-radius: 10px;
}

.slide-text h2 {
  font-size: 30px;
  padding: 0;
  margin: 0;
}

.slide-text p {
  font-size: 15px;
  padding: 0;
  margin: 0;
}

.navigation {
  position: absolute;
  display: flex;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.slider-btn {
  background-color: rgb(151, 151, 151);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 5px;
}

.slide {
  /* add the code below*/
  clip-path: circle(0% at 0 50%);
}

.slide.active {
  clip-path: circle(150% at 0 50%);
  transition: 2s;
  transition-property: clip-path;
}

.slider-btn.active {
  background-color: rgb(38, 70, 83);
}

.wave1 {
  position: absolute;
  top: 410px;
  z-index: 2;
}

.wave2 {
  position: absolute;
  top: 430px;
  z-index: 3;
}

.wave1 {
  position: absolute;
  top: 315px;
  z-index: 2;
}

.wave2 {
  position: absolute;
  top: 330px;
  z-index: 3;
}

.all-projects {
  margin: 5%;
}

.project-detail {
  margin: 50px 30px 100px;
  padding: 20px;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 2px 5px grey;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.project-img {
  margin: 5px;
}

.project-img img {
  width: 350px;
  height: auto;
  border-radius: 5px;
}

.project-description {
  margin: 5px;
}

.project-description h3 {
  margin: 0 5px 5px;
  padding: 0;
  font-size: 23px;
}

.project-description p {
  margin: 20px 5px;
  padding: 0;
  line-height: 1.8;
  text-indent: 40px;
  text-align: justify;
}

p.project-link {
  text-indent: 0px;
}

.project-link a {
  color: cadetblue;
  text-decoration: underline;
  margin: 0;
  padding: 0;
}

.project-container {
  display: flex;
  justify-content: space-around;
}
.project {
  margin: 10px 30px;
  border-bottom: 10px solid black;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px black;
}

.project-title {
  color: black;
  font-weight: bold;
}

.video-content {
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 40px gainsboro;
}
.article-title {
  text-align: center;
  font-size: 30px;
  margin: 50px 0 30px;
}

.video-content {
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 40px gainsboro;
}

.maps {
  padding: 10px;
}

iframe {
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 40px gainsboro;
}

.center {
  text-align: center;
}
/* stylefooter */


footer {
  background-image: linear-gradient(rgb(173, 216, 230), rgb(38, 70, 83));
}

.main-footer { 
  display: flex;
  justify-content: center;
  width: 100%;
}

.left-footer {
  margin-right: auto; 
  margin-left: 40px;
}

.right-footer {
  margin-left: auto;
  margin-right: 40px;
  border-radius: 50px;
}

.center-footer {
  margin-left: 20px;
  margin-right: 20px;
}

.info-left {
  color: white;
  text-align: left;
  width: 100%;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: thin;
}
.info-right {
  color: white;
  text-align: right;
  width: 100%;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: thin;
  border-radius: 50px;
}

.info-center {
  color: white;
  text-align: center;
  width: 100%;
  padding-top: 5px;
  border-top: 1px solid rgb(146, 168, 133);
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: thin;
}

body {
  margin: 0;
}

.fa-map-marked-alt, .fa-map-pin, .fa-address-book, .fa-phone-alt, .fa-instagram {
  margin: 6px;
  color: gray;
  border-radius: 50px;
} 

.illustration-img {
  margin: 0px;
  width: 800px;
}

@keyframes hide {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  75% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

@keyframes glide {
  50% {
    transform: scale(0.8);
  }

  100% {
    transform: translateY(-900px) scale(0.1);
    /* width: 5px; */
  }
}

.contact {
  display: inline-block;
  margin: 10px 30px;
  text-align: center;
}

.profile-contact-img {
  width: 200px;
  border: none;
}

.toggle {
  display: flex;
  justify-content: center;
  margin: 10px;
}

.btn {
  background-color: transparent;
}

.button:hover {
  cursor: pointer;
}

.green {
  color: green;
}

.red {
  color: red;
}

.contact-container {
  display: flex;
  justify-content: flex-start;
}

.space {
  margin-top: 7%;
  text-align: center;
  font-family: sans-serif;
}

.item2 {
  display: flex;
  flex-direction: column;
  width: 1480px;
  margin: 10px;
  background-color: lightblue, rgb(38, 70, 83);
  border-radius: 50px;
  box-shadow: 7px 7px 7px gray;
  border: 10px solid black;
}

.title-activity {
  display: flex;
  justify-content: center;
  padding: 3px;
  background-color: white;
  border: 7px solid black;
  padding: 10px;
  border-radius: 100px;
  margin: 0px 20px;
}

.activity-flex {
  display: flex;
  justify-content: center;
  padding: 3px;
  background-color: white;
  border: 7px solid black;
  padding: 10px;
  border-radius: 100px;
  margin:30px 20px;
}

.activity-flex img {
  padding: 2px;
}

aside {
  max-width: 25%;
  max-height: 800px;
  border-radius: 10px;
  box-shadow: 0px 0px 30px gainsboro;
  padding: 20px;
  text-align: center;
  margin-top: 50px;
  background-color: white;
}

.aside-title {
  margin-top: 50px;
  font-size: 25px;
  /* border-bottom: 5px solid slateblue; */
  border-top: 5px solid rgb(38, 70, 83);
  border-radius: 5px;
}

.profile-picture {
  border-style: solid;
  border-radius: 50%;
  padding: 3px;
  box-shadow: 0 0 20px gainsboro;
}

ul,
li {
  position: relative;
}

.inputSearch {
  width: 70%;
  border: none;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(38, 70, 83);
  height: 40px;
  margin: 0;
  padding: 5px;
}

.addBtn {
  /* height: 30px; */
  width: 30%;
  padding: 6px;
  background-color: rgb(38, 70, 83);
  margin: 0;
  cursor: pointer;
  color: snow;
  height: 40px;
  border-radius: 5px;
  font-size: 10px;
}

.search-tags-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.search-tags-item {
  margin: 5px;
  padding: 10px;
  background-color: rgb(38, 70, 83);
  color: snow;
  text-align: left;
}

.mini-text-flex {
  display: flex;
  justify-content: flex-start;
}

.mini-text {
  color: rgb(224, 251, 252);
  text-align: left;
  margin-right: 5px;
}

.fa-hand-point-up {
  color: aliceblue;
  font-size: 20px;
}

.icon-down {
  display: none;
}

.fa-hand-point-down {
  color: aliceblue;
  font-size: 20px;
}

.close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 5px;
  color: tomato;
  font-family: "Fredoka One", cursive;
  cursor: pointer;
  font-size: 20px;
}

.main-content {
  margin: 0;
  justify-content: center;
}

.main-content {
  margin: 10%;
}

.main-content {
  display: flex;
  justify-content: flex-start;
  margin: 20px;
}

ul,
li {
  position: relative;
}

.inputSearch {
  width: 70%;
  border: none;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(38, 70, 83);
  height: 40px;
  margin: 0;
  padding: 5px;
}

.search-tags-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.search-tags-item {
  margin: 5px;
  padding: 10px;
  background-color: rgb(38, 70, 83);
  color: snow;
  text-align: left;
}

ul,
li {
  position: relative;
}

input {
  width: 70%;
  border: none;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(38, 70, 83);
  height: 40px;
  margin: 0;
  padding: 5px;
}

.addBtn {
  /* height: 30px; */
  width: 30%;
  padding: 6px;
  background-color: rgb(38, 70, 83);
  margin: 0;
  cursor: pointer;
  color: snow;
  height: 40px;
  border-radius: 5px;
  font-size: 10px;
}

.search-tags-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.search-tags-item {
  margin: 5px;
  padding: 10px;
  background-color: rgb(38, 70, 83);
  color: snow;
  text-align: left;
}

.close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 5px;
  color: tomato;
  font-family: "Fredoka One", cursive;
  cursor: pointer;
  font-size: 20px;
}

.icon-down {
  display: none;
}

.title {
  text-align: center;
}

.form-container {
  display: flex;
  /* justify-content: center; */
  flex-direction: column;
}

.input-container {
  display: flex;
  /* justify-content: center; */
  align-items: flex-start;
}

.icon {
  margin-right: 6px;
}

.fa-user,
.fa-map-marker-alt,
.fa-envelope-open,
.fa-comment {
  font-size: 27px;
}

.form-label {
  position: absolute;
  left: 10px;
  top: 10px;
}

.form-input {
  position: relative;
  width: 100%;
  border-bottom: 1px solid grey;
  outline: none;
  height: 48px;
  margin-bottom: 15px;
  padding: 0;
}

.input-item {
  position: absolute;
  top: 0;
  left: 0;
  border-style: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  font-size: 15px;
  height: 100%;
}

.textarea-container {
  display: flex;
  justify-content: center;
}

.form-textarea {
  position: relative;
}

.textarea {
  border-style: none;
  border-bottom: 1px solid grey;
  outline: none;
  margin-top: 10px;
}

.submit {
  border-style: none;
  border-radius: 25px;
  color: aliceblue;
  background-color: rgb(38, 70, 83);
  margin: 5px;
  cursor: pointer;
}

.input-item:focus + .form-label {
  top: -5px;
  left: -2px;
  font-size: 10px;
}

.textarea:focus + .form-label {
  top: -5px;
  left: -2px;
  font-size: 10px;
}

.input-item:not(:placeholder-shown).input-item:not(:focus) + .form-label {
  top: -2px;
  left: -2px;
  font-size: 10px;
  color: rgb(138, 130, 130);
}

.textarea:not(:placeholder-shown).textarea:not(:focus) + .form-label {
  top: -2px;
  left: -2px;
  font-size: 10px;
  color: rgb(138, 130, 130);
}

.contact-container {
  display: flex;
  justify-content: flex-start;
}

.illustration-img {
  margin: 0px;
  width: 800px;
}

.submit {
  border-style: none;
  border-radius: 25px;
  color: aliceblue;
  background-color: rgb(38, 70, 83);
  margin: 5px;
  cursor: pointer;
}

.title {
  text-align: center;
}

.form {
  padding: 15px;
  background-color: rgb(159, 231, 174);
  box-shadow: 0 0 5px rgb(116, 240, 142);
  border-radius: 5px;
  width: 30%;
  font-family: Poppins, Verdana, sans-serif;
}

label {
  display: inline-block;
  margin-bottom: 5px;
}

input, textarea {
  display: inline-block;
  margin-bottom: 10px;
  border: none;
  padding: 5px;
  border-radius: 3px;
  width: 100%;
}
.check {
  width : 10%
}

