.contactSec{
    width: 70%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}
.formContainer{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.iframeCont{
    width: 60%;
}
.iframe{
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
    /* DARK MODE 
    filter: grayscale(100%) invert(92%) contrast(83%);*/
}
.contactForm{
    width: 35%;
    display: flex;
    flex-direction: column;
}
.inputBox {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 15px 0;
}
.inputBox:first-of-type{
  margin-top: 20px;
}
.inputBox.active-grey .input1 {
    border: 1px solid #dadce0;
  }
  .inputBox.active-grey .inputLabel {
    color: #80868b;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
  }
  .inputBox.active-grey .inputLabel svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    transition: 250ms;
  }
  .inputBox .inputLabel {
    position: absolute;
    color: #80868b;
    font-size: 16px;
    font-weight: 500;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 8px;
    top: 15px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;
  }
  .inputBox .inputLabel svg {
    position: relative;
    width: 15px;
    height: 15px;
    top: 2px;
    transition: 250ms;
  }
  .inputBox .input1 {
    box-sizing: border-box;
    min-height: 50px;
    width: 100%;
    color: #202124;
    border: 1px solid #dadce0;
    font-size: 1rem;
    font-weight: 500;
    padding: 13px 15px;
    transition: 250ms;
    resize: none;
  }
  .inputBox .input1:focus {
    outline: none;
    border: 2px solid #000000;
    transition: 250ms;
  }
  .error .inputLabel{
    color: #f44336 ;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
  }
  .error .input1 {
    border: 2px solid #f44336;
  }
  .errorMessage{
    height: 18px;
    font-size: 0.875rem;
    color: #f44336 ;
  }
  .inputBox.focus .inputLabel,
  .inputBox.active .inputLabel {
    color: #000000;
    top: -9px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
  }
  .inputBox.focus .inputLabel svg,
  .inputBox.active .inputLabel svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    transition: 250ms;
  }
  
.inputBox.active .input1 {
  border: 2px solid #000000;
}
.pull-right {
 float: right;
}
  
.clear {
 clear: both;
}
.aboutDescBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: fit-content;
    margin-top: 40px;
    padding: 10px 30px 10px 30px;
}
.aboutDescBtn:hover{
    color: #f93839;
    border-color: #f93839;
}
/* Extra large devices (large laptops and desktops, 1200px) */
@media only screen and (max-width: 1200px) {
  .contactSec{
    width: 90%;
  }
}

/* Large devices (laptops/desktops, 992px) */
@media only screen and (max-width: 992px) {
  .formContainer{
    flex-direction: column;
  }
  .iframeCont{
    width: 100%;
  }
  .contactForm{
    width: 100%;
  }
}

/* Medium devices (landscape tablets, 768pxp) */
@media only screen and (max-width: 768px) {}

/* Small devices (portrait tablets and large phones, 600px) */
@media only screen and (max-width: 600px) {}


