.contactUs{
  padding: 50px 2vw;
  position: relative;
  background: rgb(247,247,247);
}
.contactUsTitle{
  position: relative;
  text-align: center;
  font-size: calc(1.3vw + 1.6em);
  font-weight: 400;
  color: #005598;
}
.contactUsContainer{
  position: relative;
  display: flex;
  flex-wrap:wrap-reverse;
  justify-content: center;
  width: 95vw;
  left: 50%;
  transform: translateX(-50%);
  margin-top : 60px;
}
.contactUsBox{
  position: relative;
  width: 50%;
  padding: 50px 30px;
}
.contactUsBox input{
  position: relative;
  box-sizing: border-box;
  height: 48px;
  width: 100%;
  font-size: var(--text-base);
  padding: 0 12px;
  margin: 10px 0;
}
.contactUsBox textarea {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  font-size: var(--text-base);
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-bottom: 1px solid lightgrey;
}

.contactUsBox :is(input, textarea)::placeholder {
  color: #5e6771;
  font-family: "Poppins", sans-serif;
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.4;
  opacity: 1;
}
.contactUsBox h3{
  position: relative;
  font-weight: 300;
  font-size: 1.4em;
  margin: 0px 0 10px 0;
}
#btnContactUs{
  align-items: center;
  background: #c5234a;
  border: 1px solid #c5234a;
  border-radius: 2px;
  display: inline-flex;
  justify-content: center;
  margin-top: 12px;
  min-height: 48px;
  min-width: 148px;
  padding: 0.78rem 1.25rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

#btnContactUs:hover:not(:disabled) {
  background: #a7193d;
  border-color: #a7193d;
}

#btnContactUs:disabled {
  cursor: wait;
  opacity: 0.68;
}
@media screen and (max-width: 1024px){
  .contactUsBox{
    position: relative;
    width: 100%;
    padding: 10px 30px;
  }
}
#map {
  height: 300px;
  z-index: 1;
 }

.containerTable{
  position: relative;
  max-width: 75%;
  overflow-x: scroll;
  left: 50%;
  transform: translateX(-50%);
 }
table{
  position: relative;

}
 th{
  background-color: #005598;
  color: white;
  padding: 7px;
}
 td{
  border: 1px solid black;
  background-color: rgba(210, 220, 234,1);
  padding: 4px 7px;
}
.whiter{
  background-color:  #FFFFFF;
}
.darker{
  background-color: #B0B3AF;
}

.buttonTitle{
  position: relative;
  background-color: #005598;
  cursor: pointer;
  border: 1px solid #202E52;
  padding: 5px 7px;
  width: 100px;
}
.buttonTitle:hover{
  background-color: rgb(36, 46, 77);
}
.buttonTitle :is(h3, span){
  text-align: center;
  font-size: 1.2em;
  font-weight: 200;
  color: white;
  margin: 0;
}
.comeBack {
  all: unset !important;
  color: #202E52 !important;
  font-weight: 600 !important;
  font-size: 1.1em !important;
  cursor: pointer !important;
  text-align: left !important;
  width: 100vw !important;
}
.comeBack:hover{
  text-decoration: underline !important;
}
.img-title{
  width: clamp(140px, 28vw, 240px);
  margin: 0 auto 1rem;
  transform: translate3d(0, 12px, 0);
  transition: transform .45s ease, opacity .45s ease;
}

.img-title img{
  display: block;
  width: 80%;
  height: auto;
  margin-inline: auto;
}

.covers-title{
  color: #005598;
  font-size: clamp(3rem, 4.5vw, 6rem);
  line-height: 1.1;
  font-weight: 600;
  margin: auto;
  text-align: center;
  letter-spacing: -0.02em;
  max-width: 800px;
  text-transform: none;
  z-index: 1;
}

.covers-title::after{
  content: "";
  display: block;
  width: clamp(90px, 10vw, 140px);
  height: 2px;
  margin: 18px auto 0;
  background: red;
  transform: scaleX(.6);
  transform-origin: center;
  opacity: 0;
  transition: transform .9s ease, opacity .9s ease;
}
