/* Contact */
body{
    overflow-x: hidden;
}
.section{
    padding: 6rem 0;
}
.pt-8{
    padding-top: 8rem; 
}
#section2{
    background: #F9F9F9;
}
#section2 .container{
  max-width: 980px !important;
}
#section2 .heading-para{
    color: #000000;
}
#section2 label{
    font-family: SFProDisplayRegular;
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    letter-spacing: .71px;
    line-height: 25px;
}
#section2 .container-margin{
    margin-top: 3.5rem;
}
.block-input{
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #BBBBBB;
    margin-top: 2.6rem;
    padding-bottom: .46rem; 
    font-family: SFProDisplaySemiBold;
    font-size: 23px;
    line-height: 39px;
    letter-spacing: .96px;
    color: #5B5B5B;
    opacity: 1;
}
.block-input:placeholder-shown{
    font-family: SFProDisplaySemiBold;
    font-size: 23px;
    line-height: 39px;
    letter-spacing: .96px;
    color: #5B5B5B;
    opacity: .39;
}
.btn-contact{
    background: #FFC71D;
    color: #fff;
    padding: .75rem 2rem;
    font-family: SFProDisplayRegular;
    font-size: 20px;
    letter-spacing: .96px;
    margin-top: 3rem;
}
#section6{
  background: #000000;
}
.mt-aus{
  margin-top: 2.2rem;
}
.vertical-line{
  display: inline-block;
  background: #fff;
  width: 2px;
  height: 90px;
  align-self: center;
  margin-top: 3.6rem;
}




/* Media Queries */


/* xs */
@media (max-width: 575px){
  #section1 .container{
      overflow: hidden;
  }
  #section6 .container{
    text-align: center;
  }
  #section6 .pl-3, #section6 .pl-4{
    padding: 0 !important;
  }
  #section6 .vertical-line{
    height: 2px;
    width: 90px;
    margin: 0 auto 1rem auto  !important;
  }
}
/* sm */
@media (min-width: 576px) and (max-width: 767px){

}
/* md */
@media (min-width: 768px) and (max-width: 991px){

}
/* lg */
@media (min-width: 992px) and (max-width: 1199px){

}
/* xl */
@media(min-width: 1200px){

}
/* xxl */
@media(min-width: 1600px){

}







/* The container */
.checkbox {
    display: block;
    position: relative;
    padding-left: 42px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: -3px;
    left: 0;
    height: 28px;
    width: 28px;
    background-color: #fff;
    border: 2px solid #FFC71D;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color
  .checkbox:hover input ~ .checkmark {
    background-color: rgb(255, 227, 145);
  } */
  
  /* When the checkbox is checked, add a blue background */
  .checkbox input:checked ~ .checkmark {
    /* background-color: #FFC71D; */
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkbox .checkmark:after {
    left: 2px;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: #FFC71D;
    border-radius: 50%;
    /* border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); */
  }