body {
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  margin: 0;
  background-color: #d3d3d3 !important;
}

.logo {
  width: 30% ;
}

@media (max-width: 768px){
  .logo{
    width: 80%;
  }
}

.logo-banner {
  width: 30%;
  margin-top: 10px;
}

.logo-story {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* NAVBAR */

.navbar {
  background-color: #000 !important ;
}

.nav-link {
  padding: 0.2rem 1rem;
  color: #fff !important;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.fa-bars {
  color: #fff;
}

/* --- */
.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #000;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
/* --- */

/* BANNER */

.banner {
  height: 80vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.595)
    url(./images/photo-1486406146926-c627a92ad1ab.jpg);
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  background-blend-mode: darken;
}

.bannerdiv {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 120px;
  width: 60%;
  background-color: transparent ;
  color: white;
}

.bannerdiv h1 {
  margin-top: 5px;
  margin-bottom: 10px;
}

.bannerdiv h1,
.bannerdiv p {
  transform: scale(0.5);
  animation: scale 1.25s forwards cubic-bezier(0.5, 1, 0.89, 1);
}

@keyframes scale {
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .bannerdiv {
    height: 280px;
    width: 80%;
  }
}

/* CARDS PART */

.cards {
  display: flex;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  margin: 7%;
}

.card1,
.card2,
.card3,
.card4 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 25%;
  padding: 20px 35px;
  border-radius: 5px;
  box-shadow: 5px 5px 8px 4px rgba(50, 50, 50, 0.3);
}

.card2,
.card3,
.card4 {
  margin-left: 5%;
}

.num {
  font-size: 40px;
}

.card1 {
  /* background-color: rgb(255, 84, 68); */
  background-color: #fff;
  color: #000;
}

.card2 {
  /* background-color: rgb(170, 45, 182); */
  background-color: #fff;
  color: #000;
}

.card3 {
  /* background-color: rgb(30, 194, 164); */
  background-color: #fff;
  color: #000;
}

.card4 {
  /* background-color: rgb(39, 139, 224); */
  background-color: #fff;
  color: #000;
}

@media (max-width: 500px) {
  .cards {
    flex-flow: column;
    margin: 10% 10%;
    padding: 5%;
  }

  .card1 {
    margin-left: 5%;
  }

  .card1,
  .card2,
  .card3,
  .card4 {
    margin-bottom: 5%;
  }
}

/* FOOTER */
footer {
  position: absolute;
  width: 100%;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background-color: #000;
  color: white;
  padding: 50px;
}

footer a {
  color: white;
  text-decoration: underline;
}

footer a:hover {
  color: white;
}

hr {
  background-color: white;
  width: 100%;
}

/* CONTACT FORM */

.get-in-touch {
  max-width: 60%;
  margin: 100px auto;
  position: relative;
}

.get-in-touch .title {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-align: center;
  letter-spacing: 1px;
  padding-bottom: 30px;
  color: black;
  transform: scale(0.5);
  animation: scale 1.25s forwards cubic-bezier(0.5, 1, 0.89, 1);
}

.contact-form .form-field {
  position: relative;
  margin: 32px 0;
}

.contact-form .input-text {
  display: block;
  width: 100%;
  height: 36px;
  border-width: 0 0 2px 0;
  background-color: #d3d3d3;
}

.contact-form .input-text:focus {
  outline: none;
}

.contact-form .input-text:focus + .label,
.contact-form .input-text.not-empty + .label {
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px);
}

.contact-form .label {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  position: absolute;
  left: 20px;
  bottom: 11px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  cursor: text;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.contact-form .submit-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px;
  border: none;
  width: 200px;
  cursor: pointer;
}

/* ABOUTUS */

.bannerstory {
  height: 80vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.595) url(./images/url-1024x512.PNG);
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  background-blend-mode: darken;
}

.bannerstorydiv {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background-color: transparent;
  color: white;
  width: 40%;
  height: 250px;
  position: absolute;
  top: 35%;
  left: 1%;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
}

.bannerstorydiv h2,
.bannerstorydiv p {
  transform: scale(0.5);
  animation: scale 1.25s forwards cubic-bezier(0.5, 1, 0.89, 1);
}

.offering {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.wearent {
  background-color: #000;
}

.weoffer {
  background-color: #fff;
  color: #000;
}

.titles {
  font-size: 20px;
  font-weight: bold;
}

.offering li {
  list-style-type: none;
}

.offering li::before {
  content: "\25BA \0020";
}

@media (max-width: 768px) {
  .bannerstorydiv {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: transparent;
    color: white;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 68vh;
    position: absolute;
    top: 13%;
    left: 3%;
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* SERVICES PART */

.bannerservices {
  height: 80vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.595)
    url(./images/depositphotos_69108385-stock-photo-services-text-on-folder-register.jpg);
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  background-blend-mode: darken;
}

.bannerserdiv {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 120px;
  width: 60%;
  background-color: transparent;
  color: white;
}

.bannerserdiv h1,
.bannerserdiv p {
  transform: scale(0.5);
  animation: scale 1.25s forwards cubic-bezier(0.5, 1, 0.89, 1);
}

.services {
  width: 100%;
  height: 60vh;
}

.servicesfont {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.linktopage {
  text-decoration: none;
  cursor: pointer;
  color: black;
}

.linktopage:hover {
  cursor: pointer;
  color: black;
}

@media (max-width: 768px) {
  .bannerserdiv {
    height: 150px;
    width: 80%;
  }
}


