/*** TYPOGRAPHY ***/

p {
  font-family: gopher, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

p strong {
  font-family: gopher, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

h2 {
  font-family: "zangezi-sans", sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
}

h3 {
  font-family: "zangezi-sans", sans-serif;
  font-weight: 700;
  letter-spacing: 1.4px;
}

h4 {
  font-family: gopher, sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
}

li {
  font-family: gopher, sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  list-style-type: none;
  margin-bottom: 15px;
}

a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: 0.5s ease-out;
}

a:hover {
  color: #fff;
}

/*** FORMS ***/

form {
  max-width: 100%;
}

.contact-form-wrap .fui-row {
  margin-top: 10px;
  font-family: gopher, sans-serif;
}

label,
.contact-form-wrap .fui-label {
  font-family: gopher, sans-serif;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.contact-form-wrap .fui-label {
  color: #000;
}

input,
textarea,
.fui-input-container input {
  background-color: #ff9da985;
  margin: 5px 0;
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  font-family: gopher, sans-serif;
  font-weight: 500;
  padding: 5px 0px 5px 10px;
  margin-bottom: 10px;
}

.contact-form-wrap .fui-error-message {
  color: red;
  background-color: white;
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 15px;
}

.contact-form-wrap .fui-input.fui-error,
.contact-form-wrap .fui-select.fui-error {
  border-color: red;
  color: red;
}

.contact-form-wrap .fui-error .fui-label,
.contact-form-wrap .fui-error .fui-legend {
  color: #000;
}

.contact-form-wrap .fui-field:not(.fui-type-hidden-field) {
  margin-bottom: 0px;
}

input:focus,
textarea:focus {
  background-color: #fff;
  outline: 1px solid #f2f2f2;
  transition: 0.2s ease-out;
}

textarea {
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 15px;
}

input#nothingToSeeHereJD {
  display: none;
}

input[type="submit"] {
  max-width: 100px;
  background-color: #000;
  color: #fff;
  border-bottom: none;
  padding: 10px 0;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: 0.2s ease-out;
}

input[type="submit"]:hover {
  background-color: #333;
  color: #fff;
}

input[type="submit"]:active {
  background-color: #fff;
  color: #000;
  transition: 0.2s ease-out;
}

.form-submit {
  text-align: right;
  width: 100%;
}

.fui-btn-container {
  text-align: right;
  margin-top: 10px;
  margin-right: -10px;
}

button[type="submit"] {
  font-family: gopher, sans-serif;
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 100;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: 0.2s ease-out;
  text-transform: capitalize;
}

button[type="submit"]:hover {
  background-color: #333;
  color: #fff;
}

button[type="submit"]:active {
  background-color: #fff;
  color: #000;
  transition: 0.2s ease-out;
}

.fui-alert-success {
  font-family: gopher, sans-serif;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 20px 25px;
}

/*** GENERAL STYLES ***/

img {
  max-width: 100%;
  height: auto;
}

.general-section {
  max-width: 100%;
  padding: 0px 30px 30px 30px;
  /* overflow: hidden; */
}

.first-section {
  padding-top: 30px;
}

.general-content-area-wrap {
  padding: 60px 30px;
}

.general-content-wrap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  /*   align-content: center; */
  justify-content: center;
}

.header-wrap h3 {
  font-size: 32px;
  display: inline-block;
  /*! padding-left: 0px; */
  padding-right: 30px;
  /*! margin-left: 0px; */
  text-align: center;
  max-width: 100%;
  position: relative;
  z-index: 99;
  margin-bottom: 0px;
}

.header-wrap h3::after {
  content: "";
  display: inline-block;
  position: relative;
  background-color: #fff;
  height: 25px;
  width: 100%;
  padding: 0 15px;
  transform: skewY(-2deg);
  top: -25px;
  z-index: -1;
}

.text-wrap {
  margin-left: 30px;
}

@media only screen and (max-width: 600px) {
  .general-section {
    max-width: 100%;
    padding: 0px 15px 30px 15px;
  }
}

@media only screen and (min-width: 960px) {
  .header-wrap h3 {
    font-size: 42px;
  }

  .header-wrap h3::after {
    height: 30px;
    top: -30px;
  }

  .text-wrap {
    margin-left: 100px;
  }
}

/*** INTRO SECTION ***/

.intro-content-area-wrap {
  display: flex;
  background-color: #f5dd23;
  min-height: 80vh;
}

.intro-logo-wrap img {
  width: 175px;
}

.intro-header-wrap h2 {
  text-transform: uppercase;
  font-size: 42px;
  margin: 0;
  margin-top: 30px;
}

.intro-text-wrap {
  margin-left: 15px;
}

.intro-text-wrap p {
  font-size: 22px;
  line-height: 1.3;
}

.intro-photo-wrap {
  align-self: flex-end;
}

.intro-photo-wrap img {
  width: 150px;
  margin-top: 20px;
}

@media only screen and (max-width: 600px) {
  .intro-logo-wrap img {
    width: 125px;
  }

  .intro-photo-wrap img {
    width: 100px;
    margin-top: 20px;
  }
}

@media only screen and (min-width: 960px) {
  .intro-header-wrap h2 {
    font-size: 72px;
  }

  .intro-text-wrap {
    margin-left: 100px;
  }

  .intro-text-wrap p {
    font-size: 32px;
  }
}

/*** ABOUT SECTION ***/

.about-content-area-wrap {
  background-color: #aece1d;
  flex-direction: column;
  justify-content: center;
}

.about-content-area-wrap .header-wrap h3::after {
  background-color: #fff;
}

.about-bio-text-wrap {
  margin-left: 15px;
}

.services-info-text-content-wrap {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
  padding-bottom: 30px;
}

.services-list-wrap ul {
  padding-left: 0;
  width: 275px;
}

.services-text-wrap {
  margin-left: 0px;
}

.list-wrap li {
  font-size: 18px;
}

@media only screen and (min-width: 960px) {
  .services-info-text-content-wrap {
    display: flex;
    flex-direction: row;
    margin-left: 30px;
  }

  .about-bio-text-wrap {
    margin-left: 30px;
  }

  .services-text-wrap {
    margin-left: 30px;
  }
}

/*** WORK SECTION ***/

.work-content-area-wrap {
  background-color: #82ceff;
}

.swiper-container {
  max-width: 800px;
}

.work-content-area-wrap .recent-work-slider-nav-wrap {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.recent-work-slide-info {
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.recent-work-slide-info a:link,
.recent-work-slide-info a:visited {
  font-family: "zangezi-sans", sans-serif;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.8px;
  border-bottom: 3px solid #000;
}

.recent-work-slide-info a:hover,
.recent-work-slide-info a:focus {
  color: #fff;
}

.slide-caption a:link {
  font-size: 14px;
  font-family: gopher, sans-serif;
}

.slider-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.slider-nav div {
  margin-left: 10px;
  font-size: 24px;
  cursor: pointer;
}

.slider-nav div:hover {
  color: #fff;
}

ul.client-list {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  align-items: center;
  padding: 0;
}

.client-list li {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 50%;
}

.client-list p {
  font-size: 12px;
  margin-top: 5px;
}

.client-list a:link,
.client-list a:visited {
  color: #000;
}

.client-list a:hover,
.client-list a:focus {
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .client-list li {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
}

@media only screen and (min-width: 960px) {
  .client-list li {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 33%;
  }
}

/*** CONTACT SECTION ***/

.contact-content-area-wrap {
  background-color: #ff9da9;
}

.contact-info-content-wrap {
  display: flex;
  flex-direction: column;
}

.contact-info-text-wrap {
  margin-left: 15px;
}

.contact-form-wrap {
  margin-top: 40px;
  padding: 0 30px;
}

.contact-form-wrap .message {
  background-color: #fff;
  padding: 10px 15px;
  width: 100%;
}

.fa-check-circle {
  color: #aece1d;
  margin-right: 5px;
}

@media only screen and (min-width: 960px) {
  .contact-info-content-wrap {
    display: flex;
    flex-direction: row;
  }

  .contact-info-text-wrap {
    width: 100%;
    /* margin-left: 0px;
    margin-right: 20px; */
  }

  .contact-form-wrap {
    width: 55%;
    margin-left: 20px;
  }

  .contact-form-wrap {
    margin-top: 0px;
    margin-left: 20px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
  height: 15px !important;
}

/*** FOOTER ***/

.footer-area-wrap {
  background-color: #f5dd23;
  padding: 30px 30px;
}

.footer-content-wrap p {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.5px;
}
