@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,300;0,400;0,900;1,100&display=swap');
* {
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}
body {
    overflow-x: hidden;
}
.header {
    background-image: url(../../assets/backgrounds/h_img.jpg);
    background-color: black;
    font-family: 'Raleway', sans-serif;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* min-height: 100vh; */
    text-align: center;
    color: #fff;
    font-stretch: extra-expanded;
    padding: 10em;
}
.logo > h1 {
    font-weight: 400;
    font-size: 2em;
}
.mouse {
    padding-top: 10em;
}

.header h1 {
    font-size: 2em;
}
.header p {
    font-size: 1em;
    line-height: .9em;
}

h2 {
    text-align: center;
}

.about-us {
    text-align: center;
    padding: 5em 0;
}

.services {
    padding: 10em 2em;
    text-align: center;
    color: #fff;
    background-image: url(../../assets/backgrounds/s_image.jpg);
    width: 100%;
    /* min-width: 100%; */
    height: auto;
    background-position: center;
    background-size: cover;
}

.what-we-do {
    text-align: center;
    padding: 5em 0;
}

.d-flex {
    padding: 3em;
}

.portfolio {
    text-align: center;
}

.formspree {
    /* margin: 5em; */
    /* padding: 5em; */
    background-image: url(../../assets/backgrounds/c_image.jpg);
    background-position: center;
    background-size: cover;
}

.form-head{
    color: #fff;
    font-weight: bolder;
    font-stretch: extra-expanded;
}
.cont-form {
    padding-top: 3em;
    margin: 0;
}

::placeholder {
    color: white;
}

#name, #email{
    color: white;
    background: rgba(0, 0, 0, 0.363);
    border: 1px solid #fff;
}
#text-area {
    background: rgba(0, 0, 0, 0.363);
    /* width: 100%; */
    border: 1px solid #fff;
    /* width: auto; */
}

.icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    height: 10vh;
}
.media{
    padding: .1em;
}

.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hovereffect:hover .overlay {
  background-color: rgba(236, 221, 221, 0.055);
}


.hovereffect a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  border: 1px solid #fff;
  margin: 50px 0 0 0;
  background-color: transparent;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: bold;
  height: 85%;
  width: 85%;
  position: absolute;
  top: -20%;
  left: 8%;
  padding: 10em;
}

.hovereffect:hover a.info {
  opacity: 1;
  filter: alpha(opacity=100);
  background-color: rgba(236, 221, 221, 0.527);
}
@media (min-width: 992px) {
        .header {
          height: 66.9em;
          max-height: 100%;
          line-height: 8em;
          background-position: fixed;
        }
        .logo {
            padding: 5em;
        }
        .mouse {
            padding-top: 15em;
        }
        .services {
            background-image: url(../../assets/backgrounds/s_image.jpg);
            background-position: center;
            background-size: cover;
            width: 100%;
        }
        .form {
            width: 100%;
            padding: 1em;
            margin-bottom:1em
        }
        #text-area {
            height: 10em;
        }
      }

