
.finance{
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    color: var(--primary-fade);
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
    color: rgb(1,148,78);
}

.finance h1{
  color: hsl(151, 99%, 22%);
  text-align: center;
}

.finance h3{
  color: hsl(151, 99%, 22%);
  text-align: center;
}
.finance h4{
  color: hsl(151, 99%, 22%);
  text-align: center;
}

.finance .intro{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.finance .intro span{

}

.finance .intro .underline{
    width: 220px;
    margin-top: -10px;
    height: 2px;
    background-color: rgb(1,148,78);
}

.finance .body{
    width: 100%;
    max-width: 1140px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: hsl(151, 99%, 22%);
    padding-top: 60px;
}


.finance .body .left{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.finance .body .right{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 22px;
    font-size: 20px;
    font-weight: 100;
    line-height: 1.5;
    color: rgb(1,148,78);
}

.finance .body .left form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
.finance .body .left form .title{
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: rgb(1,148,78);
}
.finance .body .left form .input{
    font-size: 20px;
    font-weight: 500;
    background-color: var(--white-fadest);
    border-radius: 4px;
    margin-bottom: 14px;
    padding: 6px 0px 6px 10px;
    outline: 2px solid rgba(0,0,0,0);
    border: 0px solid var(--mid);
    color: var(--primary-fade);
    transition: all 0.4s ease-in-out;
}

.finance .body .left form textarea{
    height: 200px;
}
.finance .body .left form .input:hover{
    outline: 2px solid var(--primary-clearest);
}
.finance .body .left form .input:focus{
    outline: 2px solid var(--primary-fadest);
}

.finance .body .left form .input::placeholder {
    font-weight: 100;
    color: var(--grey);
}

.finance .body .left form btn{
    font-weight: 900;
}

.finance .body .right .top{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;

}

.finance .body .right .top img{
  width: 100%;
  border-radius: 3px;
}

.finance .body .right .top .split span{
  font-size: 32px;
  font-weight: 700;
  color: hsl(151, 99%, 22%);
}
.finance .body .right .top .split{
  /* width: 50%; */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.finance .body .right .bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 22px;
  gap: 10px;
}

.finance .body .right .bottom a {
  min-width: 200px;
  max-width: calc(50% - 10px);
  flex-grow: 1;
  height: 25px;
  border: 3px solid green;
  background-color: hsl(151, 99%, 22%);
  color: white;
  margin-bottom: 8px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.1px;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.finance .body .right .bottom a:hover {
  cursor: pointer;
  background-color: hsl(151, 99%, 18%);
}

.finance .body .right .font-normal{
    font-weight: 600;
}

.mapContainer{
    width: 100%;
    background-color: var(--primary-fade);
    aspect-ratio: 3 / 1;
}

.mapContainer .map{
    height: 100%;
    width: 100%;
}




/* Media query for screens less than 1216px wide */
@media screen and (max-width: 1215px) {



  .finance .body {
    width: 100%;
    max-width: 1140px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    color: hsl(151, 99%, 22%);
    padding-top: 60px;

  }

  
  .finance .body .left{
    width: 100%;
    margin-bottom: 80px;

  }

  .finance .body .right{
    width: 100%;

  }

  
  .finance .body .right .bottom a {
    min-width: calc(200px);
    flex-grow: 1;
    max-width: calc(100% - 0px);
    height: 30px;
  }


}
