@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins';
}

a:link {
  color: yellowgreen;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

.navbar .container {
  position: fixed;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
}

.navbar .container .navtop {
  padding: 0.5em 0.2em;
  font-size: 0.8rem;
  text-align: center;
  background: #2f2f35;
  color: white;
}

.navbar .container nav {
  background: rgba(0, 0, 0, 0.6);
}

.navbar .container nav .logo {
  padding: 0.2em 0;
  margin-left: 1em;
}

.navbar .container nav .logo img {
  height: 50px;
}

.navbar .container nav .hide-nav {
  display: none;
}

/* ------------- MAIN PAGE --------------- */
.mainframe {
  height: 120vh;
  background-image: url(../images/bg-5.jpg);
  background-size: cover;
  background-position: center;
}

.mainframe h1 {
  font-size: 2rem;
  text-transform: uppercase;
  color: white;
  margin-top: 50vh;
  margin-left: 10vw;
  position: absolute;
}

/************ ------------ SECTION 1 ---------------------*/
.sec-1 {
  background-image: url(../images/blur-1.jpg);
  background-size: cover;
  background-position: center;
  border-top: 2px solid yellow;
  border-bottom: 2px solid yellow;
}

.sec-1 .container {
  padding: 0px;
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-1 .left-box {
  width: 100%;
  max-width: 500px;
  background: #080808;
  color: white;
  padding: 1em;
}

.sec-1 .left-box h1, h2 {
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 4rem;
}

.sec-1 .left-box p {
  font-size: 1rem;
  color: #FFF;
}

.sec-1 .right-box {
  width: 100%;
  max-width: 500px;
  background: white;
  padding: 1em;
}

.sec-1 .right-box h1 {
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 4rem;
}

.sec-1 .header-1 {
  font-weight: bold;
  margin-top: 1em;
}

.sec-1 .right-box .bem {
  text-align: right;
}

.sec-1 .right-box .bem img {
  width: 100px;
}

.sec-1 .container:after {
  content: '';
  clear: both;
}

/* --------------- SECTION 2 - OUR EXPERTISE --------------- */
.sec-2 {
  background: white;
}

.sec-2 .container {
  width: 100%;
  padding: 2em 0;
  margin: auto;
}

.sec-2 .container .header {
  text-align: center;
  max-width: 1000px;
  margin: auto;
  padding: 1em;
  border-bottom: 1px solid #d0d0d0;
}

.sec-2 .container .header h1 {
  text-transform: uppercase;
}

.sec-2 .container .photo {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 1em 0;
}

.row-1, .row-2, .row-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-2 .card {
  width: 400px;
  height: 280px;
  font-size: 1rem;
  border: 1px solid white;
  margin: auto;
  margin-bottom: 30px;
  padding: 0;
  background: #fff;
  background-size: cover;
  -webkit-box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  text-align: center;
  position: relative;
}

.sec-2 .card img {
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec-2 .card:hover {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.sec-2 .card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 176, 155, 0.5)), to(#232422));
  background: linear-gradient(to bottom, rgba(0, 176, 155, 0.5), #232422);
  z-index: 2;
  -webkit-transition: .5s all;
  transition: .5s all;
  opacity: 0;
}

.sec-2 .card:hover:before {
  opacity: 1;
}

.sec-2 .card .info {
  margin: 0;
  top: 0px;
  left: 0;
  padding: 20px 35px;
  position: absolute;
  color: #fff;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: .5s all;
  transition: .5s all;
  z-index: 3;
}

.sec-2 .card:hover .info {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.sec-2 .card .info h1 {
  margin: 0;
  margin-top: 10px;
  color: #bcfd7a;
}

.sec-2 .card .info p {
  letter-spacing: 1px;
  line-height: 20px;
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 20px;
}

.sec-2 .info .btn {
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  padding: 0.5em 2em;
}

.sec-2 .info .btn:hover {
  -webkit-box-shadow: 0px 7px 10px rgba(154, 204, 3, 0.904);
          box-shadow: 0px 7px 10px rgba(154, 204, 3, 0.904);
}

/* ----------------------- SECTION 3 - CLIENTS ------------------------ */
.sec-3 {
  background: #1b1b1b;
}

.sec-3 .container {
  width: 95%;
  padding: 2em 0;
  margin: auto;
  text-align: center;
}

.sec-3 .header {
  padding: 0.5em;
  color: white;
  text-align: center;
  border-bottom: 1px solid #535353;
}

.sec-3 .header h1 {
  text-transform: uppercase;
}

.sec-3 .content {
  max-width: 1000px;
  margin: auto;
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: center;
}

.sec-3 .content ul {
  padding: 0;
  margin: 0;
}

.sec-3 .content ul li {
  list-style: none;
  display: inline-block;
  width: 150px;
  height: 100px;
  overflow: hidden;
  cursor: pointer;
  margin: 1em;
  -webkit-box-shadow: 0px 0px 0px 0.1px #555;
          box-shadow: 0px 0px 0px 0.1px #555;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sec-3 .content ul li img {
  width: 150px;
  height: 100px;
}

.sec-3 img:nth-child(1) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: .5s;
  transition: .5s;
}

.sec-3 img:nth-child(2) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: .5s;
  transition: .5s;
}

.sec-3 img:nth-child(3) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: .5s;
  transition: .5s;
}

.sec-3 li:hover img:nth-child(1) {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sec-3 li:hover img:nth-child(2) {
  -webkit-transform: translateY(-106%);
          transform: translateY(-106%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sec-3 .btn {
  padding: 0.5em 2em;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.sec-3 .btn:hover {
  -webkit-box-shadow: 0px 7px 10px rgba(154, 204, 3, 0.904);
          box-shadow: 0px 7px 10px rgba(154, 204, 3, 0.904);
}

/* -------------------- SECTION 4 - PROJECT (CARD EFFECT) --------------- */
.sec-4 {
  background: #89A617;
}

.sec-4 .container {
  width: 95%;
  padding: 2em 0;
  margin: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-4 .header {
  width: 100%;
  padding: 1em;
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 3em;
}

.sec-4 .header h1 {
  text-transform: uppercase;
}

.sec-4 .card {
  max-width: 300px;
  height: 200px;
  background: #fff;
  margin: 2em 1em;
  padding: 0.8em 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  text-align: center;
}

.sec-4 .card h1 {
  font-size: 1.2rem;
  margin-top: -2.3em;
}

.sec-4 .card:hover {
  height: 20em;
  background: #999998;
}

.sec-4 img {
  width: 300px;
  height: 200px;
  top: -3.5em;
  left: 0;
  position: relative;
}

.sec-4 .img-card {
  max-width: 100%;
  border-radius: 4px;
}

.sec-4 .cont {
  margin-top: 1em;
  padding: 1em 1em;
  color: #111;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.sec-4 .card:hover .cont {
  color: #111;
  margin-top: -0.5em;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
  opacity: 1;
  visibility: visible;
}

.sec-4 .readmore {
  width: 100%;
  text-align: center;
}

.sec-4 .btn {
  padding: 0.5em 2em;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.sec-4 .btn:hover {
  -webkit-box-shadow: 0px 7px 10px rgba(28, 56, 0, 0.904);
          box-shadow: 0px 7px 10px rgba(28, 56, 0, 0.904);
}

/* ---------------------- SECTION 5 - CONTACT ----------------------- */
.sec-5 {
  background-image: url(../images/bg-contact-us-8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.sec-5 .container {
  width: 100%;
  padding: 2em 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-5 .contact-us {
  width: 100%;
  max-width: 500px;
  padding: 1em 0;
  color: rgba(248, 250, 160, 0.904);
  background: rgba(31, 31, 31, 0.2);
}

.sec-5 .contact-us h1 {
  margin-left: 1.7em;
}

.sec-5 .address {
  width: 100%;
  max-width: 500px;
}

.sec-5 .contact-form {
  max-width: 400px;
  margin: auto;
  padding: 0 0.5em;
  overflow: hidden;
}

.sec-5 .contact-form-text {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0.5em 0 1em 0;
  border: 0;
  background: #111;
  padding: 1.5em 1.5em;
  outline: none;
  color: #ddd;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sec-5 .textarea.contact-form-text {
  resize: none;
  height: 300px;
}

.sec-5 .contact-form-btn {
  float: right;
  border: 0;
  background: #34495e;
  color: #fff;
  padding: 1em 4em;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sec-5 .contact-form-btn:hover {
  background: #59a700;
}

.sec-5 .address iframe {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.sec-5 .address .box-1 {
  color: white;
  margin: auto;
  max-width: 500px;
  padding: 1em;
}

.sec-5 .address .box-1 h1 {
  font-size: 4rem;
}

.sec-5 .address .title {
  font-size: 1.2rem;
  color: yellowgreen;
  margin-bottom: 14px;
}

.sec-5 .box-1 p {
  line-height: 1.2rem;
  font-size: 0.9rem;
}

/* -------------------- FOOTER -------------------- */
footer {
  background: #303030;
  color: #7a7a7a;
}

footer .container {
  padding: 1em 0;
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .copyrights {
  padding: 1em;
  width: 360px;
  margin: auto;
  font-size: 12px;
  font-weight: bold;
  display: block;
  text-align: center;
}

footer .container .social {
  width: 360px;
  margin: auto;
  display: block;
  text-align: center;
}

footer .container .social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .container .social ul li {
  position: relative;
  display: block;
  color: #666;
  font-size: 30px;
  height: 60px;
  width: 60px;
  background: #171515;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 15px;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

footer .container .social ul li:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background: red;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: -1;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: .5s;
  transition: .5s;
}

footer .container .social ul li:hover:before {
  -webkit-filter: blur(3px);
          filter: blur(3px);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-box-shadow: 0 0 15px #d35400;
          box-shadow: 0 0 15px #d35400;
  z-index: -1;
}

footer .container .social ul li:hover {
  color: #ffa502;
  -webkit-box-shadow: 0 0 15px #d35400;
          box-shadow: 0 0 15px #d35400;
  text-shadow: 0 0 15px #d35400;
}

/*------------------------------------------- MEDIA SCREEN ------------------------------ */
@media screen and (min-width: 1100px) {
  .navbar .container .navtop {
    text-align: right;
    padding: 0.5em 15em;
  }
  .navbar .container nav {
    padding: 0.5em 0.1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: center;
  }
  .navbar .container nav {
    background: none;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 2;
  }
  .navbar .container nav.black {
    background: rgba(0, 0, 0, 0.8);
    height: 100px;
    padding: 0.8em 1.5em;
  }
  .navbar .container nav .logo {
    float: left;
    margin-left: 5em;
  }
  .navbar .container nav .logo img {
    height: 70px;
    -webkit-transition: .5s;
    transition: .5s;
  }
  .navbar .container nav.black .logo img {
    height: 60px;
  }
  .navbar .container nav ul {
    float: right;
    margin-right: 10em;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar .container nav .hide-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar .container nav ul li {
    list-style: none;
    padding: 0.2em;
  }
  .navbar .container nav ul li a {
    line-height: 80px;
    font-weight: bold;
    font-size: 0.9rem;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .5s;
    transition: .5s;
  }
  .navbar .container nav.black ul li a {
    color: #fff;
    line-height: 60px;
  }
  .navbar .container nav ul li a.active, nav ul li a:hover {
    color: #fff;
    background: #f00;
  }
  .mainframe h1 {
    font-size: 4rem;
    text-transform: uppercase;
    color: white;
    margin-top: 50vh;
    margin-left: 10vw;
    position: absolute;
  }
}
/*# sourceMappingURL=style.css.map */