/* variables for text */
/* Main Color Palet */
/*
Green Dark: #5bbd80, rgb(91 189 128)
Green light: #c0d72f, rgb(192 215 47)

*/
/* variables for bg */
/* variables for fonts */
/* ================================ Global Mixins =========================== */
/*
** Transition use **
    .foo {
        @include transition(all 0.35s ease-in-out);
    }
*/
/*
** Position use **
    .foo {
        @include position(both);
    }
*/
/*
**clearfix use **
    .foo {
        @include clearfix;
    }
*/
/*
** center-auto **
    .foo {
        @include center-auto;
    }
*/
/*
** placeholder use **
    input,
    textarea {
        @include input-placeholder {
            color: $grey;
        }
    }
*/
/*
** pseudo use **
    div::after {
        @include pseudo;
        top: -1rem; left: -1rem;
        width: 1rem; height: 1rem;
    }
*/
/*
** prefix use **
    div {
       @include css3-prefix(transform, scale3d(2.5, 2, 1.5));
    }
}*/
/* Animation use
**
    @include keyframes(fade-out) {
        0% { opacity: 1; }
        90% { opacity: 0; }
    }
*/
.lets-connect {
  position: relative;
  background: url(../images/banner-overlay.svg) rgba(185, 213, 54, 0.1294117647) repeat center center;
  padding: 80px 0 120px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect {
    padding: 5.333vw 0 8vw;
  }
}
@media only screen and (max-width: 767px) {
  .lets-connect {
    padding: 40px 0 80px;
  }
}
.lets-connect:before {
  position: absolute;
  content: " ";
  bottom: 0;
  left: 0;
  right: 0;
  height: 137px;
  width: 100%;
  background: linear-gradient(180deg, rgba(240, 220, 173, 0) 0%, rgba(185, 213, 54, 0.1294117647) 100%), url("../images/banner-branding.svg") repeat-x bottom center;
  z-index: -1;
  pointer-events: none;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect:before {
    height: 9.133vw;
  }
}
.lets-connect .ln-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.lets-connect__content {
  width: 100%;
  max-width: 40%;
  padding-right: 50px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__content {
    padding-right: 3.333vw;
  }
}
@media only screen and (max-width: 991px) {
  .lets-connect__content {
    max-width: 100%;
    padding-right: 0;
  }
}
.lets-connect__content p {
  line-height: 1.5;
  font-size: 22px;
  margin-top: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__content p {
    font-size: 1.467vw;
    margin-top: 1.333vw;
  }
}
.lets-connect__contact-info {
  margin-top: 30px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__contact-info {
    margin-top: 2vw;
  }
}
.lets-connect__contact-info .wrap {
  position: relative;
  z-index: 1;
}
.lets-connect__contact-info .wrap .info-detail {
  margin-top: 30px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__contact-info .wrap .info-detail {
    margin-top: 2vw;
  }
}
@media only screen and (max-width: 767px) {
  .lets-connect__contact-info .wrap .info-detail {
    margin-top: 20px;
  }
}
.lets-connect__contact-info .wrap .info-detail .contact-info {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 18px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__contact-info .wrap .info-detail .contact-info {
    font-size: 1.2vw;
  }
}
.lets-connect__contact-info .wrap .info-detail .contact-info:nth-child(n+2) {
  margin-top: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__contact-info .wrap .info-detail .contact-info:nth-child(n+2) {
    margin-top: 1.333vw;
  }
}
.lets-connect__contact-info .wrap .info-detail .contact-info svg {
  width: 25px;
  min-width: 25px;
  height: 25px;
  margin-right: 15px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__contact-info .wrap .info-detail .contact-info svg {
    width: 1.667vw;
    min-width: 1.667vw;
    height: 1.667vw;
    margin-right: 1vw;
  }
}
.lets-connect__contact-info .wrap .info-detail a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.lets-connect__contact-info .wrap .info-detail a:hover {
  color: #c0d72f;
}
.lets-connect__contact-info .wrap .info-detail .social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__contact-info .wrap .info-detail .social-icons {
    margin-top: 2vw;
  }
}
.lets-connect__contact-info .wrap .info-detail .social-icons li {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__contact-info .wrap .info-detail .social-icons li {
    margin-top: 0.667vw;
    margin-right: 0.667vw;
  }
}
.lets-connect__contact-info .wrap .info-detail .social-icons li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #28282B;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__contact-info .wrap .info-detail .social-icons li a {
    width: 2.667vw;
    height: 2.667vw;
  }
}
.lets-connect__contact-info .wrap .info-detail .social-icons li a svg {
  width: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__contact-info .wrap .info-detail .social-icons li a svg {
    width: 1.333vw;
  }
}
.lets-connect__contact-info .wrap .info-detail .social-icons li a svg * {
  fill: #28282B;
}
.lets-connect__contact-info .wrap .info-detail .social-icons li a:hover {
  border-color: #c0d72f;
}
.lets-connect__form {
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 991px) {
  .lets-connect__form {
    max-width: 100%;
    margin-top: 30px;
  }
}
.lets-connect__form .contact-form {
  background: #28282B;
  padding: 40px 30px;
  border-radius: 24px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__form .contact-form {
    padding: 2.667vw 2vw;
    border-radius: 1.6vw;
  }
}
@media only screen and (max-width: 767px) {
  .lets-connect__form .contact-form {
    padding: 40px 25px;
    border-radius: 12px;
  }
}
.lets-connect__form .contact-form .input-wrap:nth-child(n+2) {
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__form .contact-form .input-wrap:nth-child(n+2) {
    margin-top: 0.667vw;
  }
}
.lets-connect__form .contact-form .input-wrap input, .lets-connect__form .contact-form .input-wrap textarea, .lets-connect__form .contact-form .input-wrap select {
  background-color: #fff;
  border: 1px solid #c0d72f;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  font-size: 16px;
  padding: 15px 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__form .contact-form .input-wrap input, .lets-connect__form .contact-form .input-wrap textarea, .lets-connect__form .contact-form .input-wrap select {
    border-radius: 0.8vw;
    font-size: 1.067vw;
    padding: 1vw 1.333vw;
  }
}
.lets-connect__form .contact-form .input-wrap input:focus, .lets-connect__form .contact-form .input-wrap textarea:focus, .lets-connect__form .contact-form .input-wrap select:focus {
  border-color: #5bbd80;
  outline: none;
  box-shadow: none;
}
.lets-connect__form .contact-form .input-wrap select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 128 128' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cpath d='M64 88a3.988 3.988 0 0 1-2.828-1.172l-40-40c-1.563-1.563-1.563-4.094 0-5.656s4.094-1.563 5.656 0L64 78.344l37.172-37.172c1.563-1.563 4.094-1.563 5.656 0s1.563 4.094 0 5.656l-40 40A3.988 3.988 0 0 1 64 88z' fill='%2328282b' opacity='1' data-original='%23000000' class=''%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}
.lets-connect__form .contact-form .input-wrap .ln-row {
  align-items: flex-start;
}
.lets-connect__form .contact-form .input-wrap.input-file {
  width: 100%;
  max-width: calc(100% - 150px);
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__form .contact-form .input-wrap.input-file {
    max-width: calc(100% - 10vw);
  }
}
@media only screen and (max-width: 767px) {
  .lets-connect__form .contact-form .input-wrap.input-file {
    max-width: 100%;
  }
}
.lets-connect__form .contact-form .input-wrap.input-file input[type=file] {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.lets-connect__form .contact-form .input-wrap.input-file label {
  border: 1px dashed #c0d72f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  line-height: 1.5;
  padding: 15px 15px;
  font-size: 16px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__form .contact-form .input-wrap.input-file label {
    padding: 1vw 1vw;
    font-size: 1.067vw;
  }
}
.lets-connect__form .contact-form .input-wrap.input-file label svg {
  width: 20px;
  margin-right: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__form .contact-form .input-wrap.input-file label svg {
    width: 1.333vw;
    margin-right: 0.667vw;
  }
}
.lets-connect__form .contact-form .input-wrap.input-file label svg * {
  fill: #c0d72f;
}
.lets-connect__form .contact-form .input-wrap.input-file .info-text {
  display: block;
  text-align: center;
  line-height: 1.5;
  font-size: 12px;
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__form .contact-form .input-wrap.input-file .info-text {
    font-size: 0.8vw;
    margin-top: 0.667vw;
  }
}
.lets-connect__form .contact-form .input-wrap button {
  text-transform: capitalize;
  padding-top: 17px;
  padding-bottom: 17px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__form .contact-form .input-wrap button {
    padding-top: 1.133vw;
    padding-bottom: 1.133vw;
  }
}
@media only screen and (max-width: 767px) {
  .lets-connect__form .contact-form .input-wrap button {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
.lets-connect__form .contact-form .input-wrap .form-error {
  border-color: red !important;
  color: red;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-top: 5px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .lets-connect__form .contact-form .input-wrap .form-error {
    font-size: 0.933vw;
    margin-top: 0.333vw;
  }
}