/* ### contact-banner ### */
.contact-banner {
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact-banner .content {
  max-width: 950px;
  margin: 0 auto 50px;
  text-align: center;
}

.contact-banner h2 {
  margin-bottom: 20px;
  color: var(--font-blue);
}

.contact-banner .image {
  display: flex;
  justify-content: center;
}

.formBox {
  background-color: #efefef;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 100px;
}

.formBox .form-item {
  margin-bottom: 13px;
  padding: 0 12px;
  width: 50%;
}
.formBox .form-item.large {
  width: var(--w-100);
}
.formBox .column.submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.formBox .label-text {
  margin-bottom: 3px;
  display: block;
  font-size: 14px;
  font-weight: var(--font-weight-600);
}

.formBox .form-check {
  width: 33.33%;
}

.formBox .button {
  padding: 16px;
}
.formBox .btn-item {
  padding: 0 12px;
  display: flex;
  align-items: center;
  width: var(--w-100);
}

.form-group {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.formBox ul.tabs{
  margin: 0 0 20px;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.formBox ul.tabs li{
  color: #222;
  display: inline-block;
  padding: 10px 15px;
  font-size: 24px;
  font-weight: var(--font-weight-semi-bold);
  cursor: pointer;
  width: 25%;
  text-align: center;
}

.formBox ul.tabs li.current{
  color: var(--white);
  background-color: var(--font-blue);
}

.formBox .tab-content{
  display: none;
  background: #ededed;
  padding: 15px;
}

.formBox .tab-content.current{
  display: flex;
  flex-wrap: wrap;
}

.formBox button {
  font-size: var(--font-size-base);
  padding: 15px 35px;
  background-color: var(--font-blue);
  color: var(--white);
  border-radius: 30px;
  border: none;
  cursor: pointer;
 transition: var(--transition);
}
.formBox button:hover {
  background-color: var(--weborigin-blue);
}

/* ### locationBox ### */
.locationBox {  
  background-color: #EBF4FF;
  padding-top: 100px;
  padding-bottom: 50px;
}

.locationBox .holder{
  max-width: 900px;
  margin: 0 auto;
}
.locationBox .holder-title {
  margin-bottom: 40px;
}
.locationBox h2 {
  margin-bottom: 10px;
}
.locationBox .details ul > li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.locationBox .details .image {
  width: 6%;
  margin-top: 10px;
}

.locationBox .details .content {
  width: 94%;
}

.locationBox .details .title {
  font-size: 22px;
  font-weight: 500;
}

.locationBox .details .content a {
  color: var(--font-blue);
}

.locationBox .details .content a:hover {
  text-decoration: underline;
}

.map {
  width: 100vw;
  height: 600px;
}

.message {
  color: green;
  font-weight: bold;
  font-size: 24px;
  -moz-animation: cssAnimation 0s ease-in 5s forwards;
  /* Firefox */
  -webkit-animation: cssAnimation 0s ease-in 5s forwards;
  /* Safari and Chrome */
  -o-animation: cssAnimation 0s ease-in 5s forwards;
  /* Opera */
  animation: cssAnimation 0s ease-in 5s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@keyframes cssAnimation {
  to {
      width:0;
      height:0;
      overflow:hidden;
  }
}
@-webkit-keyframes cssAnimation {
  to {
      width:0;
      height:0;
      visibility:hidden;
  }
}
/* #Media Queries
================================================== */

@media only screen and (max-width: 1500px) {
}

@media only screen and (max-width: 1199px) {
}

@media only screen and (max-width: 1024px) {
  .locationBox .details .image {
    width: 10%;
  }
  
  .locationBox .details .content {
    width: 90%;
  }

  .map {
    height: 500px;
  }
  .message {
    color: green;
    font-weight: bold;
    font-size: 24px;
    -moz-animation: cssAnimation 0s ease-in 5s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation 0s ease-in 5s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation 0s ease-in 5s forwards;
    /* Opera */
    animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        overflow:hidden;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width:0;
        height:0;
        visibility:hidden;
    }
}
}

@media only screen and (max-width: 991px) {
  .sub-service-banner p {
    max-width: var(--w-100);
  }
  .sub-service-banner .content {
    width: var(--w-100);
  }
  .sub-service-banner .image {
    width: var(--w-100);
  }

  .formBox .form-check { 
    width: 50%;
  }

  .formBox ul.tabs li {
    width: 50%;
  }
  .map {
    height: 400px;
  }
  .message {
    color: green;
    font-weight: bold;
    font-size: 24px;
    -moz-animation: cssAnimation 0s ease-in 5s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation 0s ease-in 5s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation 0s ease-in 5s forwards;
    /* Opera */
    animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        overflow:hidden;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width:0;
        height:0;
        visibility:hidden;
    }
}
}

@media only screen and (max-width: 767px) {
  .formBox{
    margin-bottom: 50px;
    padding-bottom: 30px;
  }
  .formBox .form-check { 
    width: var(--w-100);
  }

  .formBox .form-item {
    width: var(--w-100);
  }
  .formBox ul.tabs li {
    font-size: 20px;
  }

  .locationBox{
    padding-top: 50px;
  }
  .locationBox .holder-title {
    margin-bottom: 30px;
  }

  .locationBox .details ul > li {
    align-items: unset;
  }

  .locationBox .details .image {
    width: 15%;
    margin-top: 10px;
  }
  
  .locationBox .details .content {
    width: 85%;
  }
  

  .message {
    color: green;
    font-weight: bold;
    font-size: 24px;
    -moz-animation: cssAnimation 0s ease-in 5s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation 0s ease-in 5s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation 0s ease-in 5s forwards;
    /* Opera */
    animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        overflow:hidden;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width:0;
        height:0;
        visibility:hidden;
    }
}
}
