.background {
  color: rgb(0, 0, 0);
  font-size: 75px;

}

.header {
  font-family: Times New Roman;
  font-size: 20px;
}

@media screen and (min-width: 1030px) {
  .header {
    font-family: Times New Roman;
    font-size: 36px;
  }
}

.container {
  width: 100%;

}


@media screen and (min-width: 1030px) {
  .container {
    display: flex;
  }
}

.childContainer {
  text-align: justify;
  width: 100%;
  font-family: Lucida Sans;
  font-size: 24x;
  /* border: 2px solid yellow; */
  /* padding: 20px 20px 5px 5px; */
  /* padding: 20px; */

}

@media screen and (min-width: 1030px) {
  .childContainer {
    width: 50%;
    text-align: justify;
    font-family: Lucida Sans;
    font-size: 36px;
    flex: 1;
    /* padding: 50px 50px 20px 20px; */
    /* float: left; */

  }
}

.childContainer:first-child {
  margin-right: 20px;
}

@media screen and (min-width: 1030px) {
  .childContainer:first-child {
    margin-right: 20px;
  }
}

.imagecontainer {
  max-height: 100%;

}

@media screen and (min-width: 1030px) {
  .imagecontainer {
    height: 100%;
    width: 100PX
  }
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 1030px) {
  img {
    max-width: 100%;
    height: 450px;
    padding: 0px 0px 00px 0px;
    display: block;
    /* border: 2px solid yellow; */

  }
}


/* The container for the left half */
.left-half {
  padding: 20px;
  box-sizing: border-box;
  /* Ensures padding is included in the 50% width */
  /* overflow-y: auto; */
  /* Adds a scrollbar if text is longer than the screen height */
}

/* The container for the right half (optional, for demonstration) */

.contactbutton {
  font-family: lato;
  color: #111111;
  font-size: 24px;
  padding: 6px 12px 6px 16px;
  border-radius: 50px;
  display: inline-block;
  gap: 30PX;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: auto;
  cursor: pointer;
  text-decoration: none;
}

footer {
  padding-top: 50px;
  /* position: fixed; */
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 24Px;
}

/* 
col {
  text-align: center;
  margin: 35px 0 20px 0 !important;
} */

h2 {
  text-align: left;
  margin: 35px 0 20px 0 !important;
  padding-bottom: 1px;

}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.name_input {
  margin-bottom: 1rem;
  /* display: block; */
  width: 100%;
  align-content: center;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
  color: #fff;

  /* background-color: #343a40;
    border-color: #343a40; */
}

@media screen and (min-width: 1030px) {
  .name_input {
    margin-bottom: 1rem;
    /* display: block; */
    width: 50%;
    align-content: center;
    padding: .5rem .1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
    color: #fff;
    /* background-color: #343a40;
    border-color: #343a40; */
  }

}

textarea {
  width: 99%;
  padding: 10px 10px 0px 0px
}

.btn-block {
  width: 100%;
  align-content: center;
  padding: 10px 10px;
  font-size: 24px;
  /* color: white;
   background: blue; */
}


.form-control {

  font-size: 1rem;
  font-weight: 600;
  line-height: 2.5;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media screen and (min-width: 1030px) {
  .form-control {
    font-size: 1rem;
    font-weight: 600;
    line-height: 2.5;

    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  }

}

    .carouselbody {
        font-family: Arial, sans-serif;
        /* background: #f4f4f4; */
        display: flex;
        justify-content: center;
        align-items: center;
        height:100;
        width: auto;
        margin: 10px 0px 10px 0px
    } 

    .carousel {
        position: relative;
        width: 100%;
        max-width: 600px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .carousel-images {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%
    }

    .carousel-images img {
        width: 100%;
        flex-shrink: 0;
        flex-basis: 100%;
        /* height:auto */
       
    }

    /* Navigation buttons */
    .prev, .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        border-radius: 50%;
    }

    .prev { left: 10px; }
    .next { right: 10px; }

    .prev:hover, .next:hover {
        background: rgba(0,0,0,0.8);
    }
