
a:active, a:visited, a:focus {
  text-decoration: none;
}
h1 {
  font-weight: 400;
  font-size: 50px;
}
h4 {
  font-weight: 400;
  font-size: 20px;
}
.underscore {
  border-bottom: 1px solid rgb(83, 144, 234);
}
.underscore:hover {
  border-bottom: none;
}
#contact {
  text-align: center;
  line-height: 1.5;
  padding-left: 100px;
  padding-right: 100px;
  margin-top: 70px;
  margin-bottom: 70px;
}
.display-none {
  display: none;
  text-align: center;
  line-height: 1.5;
  padding-left: 140px;
  padding-right: 140px;
  padding-bottom: 0px;
  font-size: 20px;
  font-weight: 300;
}

/*#myVideo{
  display: none;
}*/

#thank-you-msg {
  margin-top: 15px;
}
#cross-div {

}
#contact-title {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 600;
}
#contact-first {
  font-size: 20px;
  font-weight: 300;
}
#form-wrapper {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  margin-top: 25px;
}


#form-text {
  width: 100%;
  height: 300px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 16px;
  border-color: #ccc;
  margin-top: 2%;
  padding-left: 5px;
  color: rgb(58, 58, 58);
  -webkit-appearance: none;
}

#form-disclaimer {
  font-size: 12px;
  text-align: left;
  padding-left: 0;
  margin-top: 1%;
  margin-bottom: 1%;
}
#form-button {
  padding: 10px;
  font-size: 16px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  letter-spacing: 1px;
  margin-top: 2%;
}


::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: rgb(58, 58, 58);
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgb(58, 58, 58);
  opacity: 1;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgb(58, 58, 58);
  opacity: 1;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgb(58, 58, 58);
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgb(58, 58, 58);
}
#connect {
  text-align: center;
}
#footer {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
a {
  color: rgb(58, 58, 58);
}
a:hover {
  color: rgb(83, 144, 234);
  text-decoration: none;
}
#author {
  font-weight: 600;
}
#author:hover {
  text-decoration: none;
}
#cross {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: rgba(83, 144, 234, 1.0);
}
#cross i:hover {
  color: rgba(83, 144, 234, 0.8);
}

/* Mobile and tablet configs */

@media all and (max-width:767px) {
  #contact {
    padding-left: 20px;
    padding-right: 20px;
  }
  #contact-title {
    font-size: 26px;
  }
  #contact-first {
    font-size: 16px;
  }
  #form-wrapper {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }


  #form-text {
    width: 100%;
    height: 300px;
    margin-top: 3%;
    outline: none;
  }

  

  #thank-you-div {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    height: 594px;
  }
}
@media all and (min-width: 768px) and (max-width: 992px) {
  #contact-title {
    font-size: 26px;
  }
  #contact-first {
    font-size: 16px;
  }
  #form-wrapper {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }


  #form-text {
    width: 100%;
    height: 300px;
    margin-top: 3%;
    outline: none;
  }

  #thank-you-div {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    height: 594px;
  }
  #cross-div {
    margin-right: 20px;
  }
  #cross-div-js {
    margin-top: 30px !important;
    margin-bottom: -50px !important;
    margin-right: 30px !important;
  }
}

/* EMAIL SUCCESS ICON SET UP */

.svg-success {
  stroke-width: 2px;
  stroke: rgb(83, 144, 234);
  fill: none;
}
.svg-success path {
  stroke-dasharray: 17px, 17px;
  stroke-dashoffset: 0px;
  -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
  animation: checkmark 0.25s ease-in-out 0.7s backwards;
}
.svg-success circle {
  stroke-dasharray: 76px, 76px;
  stroke-dashoffset: 0px;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  -webkit-animation: checkmark-circle 0.6s ease-in-out forwards;
  animation: checkmark-circle 0.6s ease-in-out forwards;
}
@keyframes checkmark {
  0% {
    stroke-dashoffset: 17px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 76px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}

/* EASE IN PAGE SET UP */

div {
  -webkit-animation: fadein 2s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s;
  /* Firefox < 16 */
  -ms-animation: fadein 2s;
  /* Internet Explorer */
  -o-animation: fadein 2s;
  /* Opera < 12.1 */
  animation: fadein 2s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Firefox < 16 */

@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Internet Explorer */

@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */

@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

