*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  text-align: center;
  background-color: #ffffff;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.7;
  font-family: "Josefin Sans", sans-serif;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 108px 0;
}

.section-title {
  position: relative;
  font-size: 36px;
  margin: 0 0 60px 0;
  font-family: "Open Sans", sans-serif;
}

.section-title::after {
  position: absolute;
  content: '';
  bottom: -25px;
  left: 50%;
  width: 50px;
  height: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #ff5e57;
}

.button {
  color: #ffffff;
  background-color: #ff5e57;
  font-family: "Josefin Sans", sans-serif;
  padding: 10px 20px;
  border: none;
  outline: none;
}

.button:hover {
  background-color: #74b9ff;
  cursor: pointer;
}

.splash {
  height: 100vh;
  position: relative;
  background-image: url("https://images.pexels.com/photos/57690/pexels-photo-57690.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.splash-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.splash i {
  font-size: 30px;
  background-color: #ff5e57;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #ffffff;
  border-radius: 50%;
}

.page-title {
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 60px;
  margin: 48px 0 0;
  text-shadow: 2px 2px 15px #000000;
}

.page-title::after {
  position: absolute;
  content: '';
  bottom: 60px;
  left: 50%;
  width: 100px;
  height: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #ff5e57;
}

.page-subtitle {
  color: #ffffff;
  font-size: 18px;
  margin: 48px 0 0 0;
  text-shadow: 1px 1px 7.5px #000000;
}

.intro {
  background-color: #ffffff;
}

.intro p {
  width: 70%;
  margin: 0 auto;
  padding: 48px 0;
  font-size: 24px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.about {
  background-color: #171717;
  color: #ffffff;
}

[class^="skill-"] {
  position: relative;
}

.skill-image {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.skill-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.skill-right .skill-image {
  right: 0;
}

.skill-right .skill-description {
  padding: 36px 55% 36px 0;
  text-align: right;
}

.skill-left .skill-description {
  padding: 36px 0 36px 55%;
  text-align: left;
}

.skill-image:hover {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.gallery {
  margin-bottom: 25px;
}

.gallery::before,
.gallery::after {
  clear: both;
  content: "";
  display: table;
}

.portfolio {
  background-color: #ffffff;
}

.image-portfolio {
  float: left;
  width: 33.3333%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background-color: #000;
}

.image-portfolio img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.image-portfolio:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.5;
}

.landscape-title {
  position: absolute;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0 auto;
  visibility: hidden;
}

.details {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0 auto;
  visibility: hidden;
}

.image-portfolio:hover > * {
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .image-portfolio {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .image-portfolio {
    width: 100%;
  }
}

.contact {
  background-color: #171717;
}

.contact .section-title {
  color: #ffffff;
}

form {
  margin: 0 auto;
  max-width: 80%;
}

form * {
  display: block;
}

.form {
  height: 40px;
}

.form,
.text-area {
  max-width: 500px;
  width: 100%;
  border: 1px solid #ff5e57;
  outline: none;
  margin: 10px auto;
  padding: 10px;
  font-family: "Open Sans", sans-serif;
}

.form:focus,
.text-area:focus {
  border: 1px solid #74b9ff;
}

.form::-webkit-input-placeholder,
.text-area::-webkit-input-placeholder {
  font-family: "Josefin Sans", sans-serif;
}

.form:-ms-input-placeholder,
.text-area:-ms-input-placeholder {
  font-family: "Josefin Sans", sans-serif;
}

.form::-ms-input-placeholder,
.text-area::-ms-input-placeholder {
  font-family: "Josefin Sans", sans-serif;
}

.form::placeholder,
.text-area::placeholder {
  font-family: "Josefin Sans", sans-serif;
}

.text-area::-webkit-input-placeholder {
  padding-top: 4px;
}

.text-area:-ms-input-placeholder {
  padding-top: 4px;
}

.text-area::-ms-input-placeholder {
  padding-top: 4px;
}

.text-area::placeholder {
  padding-top: 4px;
}

input.button {
  margin: 20px auto;
}

.footer {
  width: 100%;
  background-color: #242424;
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  color: #ffffff;
}
/*# sourceMappingURL=style.css.map */