@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

html, body { background: #1b1822; color: #ffffff; }
section { padding: 70px 100px;}

nav { 
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a112f;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, .1);
    width: 100%;
    padding: 16px 100px;
    z-index: 1000;
}
    
    nav ul { display: flex; }

        nav ul li a {
            padding: 10px 20px;
            color: #ffffff;
            text-transform: uppercase;
            font-size: .75rem;
            font-weight: 600;
            transition: .3s;
        }

            nav ul li a:hover { color: #fe8040; }

#home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.active-btn {
    background: #4abe85;
    color: #ffffff;
    border-radius: 2rem;
    transition: all .3s ease;
}

    .active-btn:hover {
        background: #fe8040;
        color: #ffffff;
    }

.logo {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.bx {
    font-size: 35px;
    color: #fe8040;
}

h2 {
    color: #fe8040;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-text h1 {
    font-size: 3rem;
    margin: 5px 0 10px;
}

.home-text p {
    font-size: .9rem;
    padding-bottom: 1.5rem;
    font-weight: 400;
}

.home-img {
    width: 450px;
    height: 500px;
}

    .home-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

.email-box {
    width: 400px;
    height: 50px;
    background: #ffffff;
    display: flex;
    border-radius: 40px;
}

    .email-box input {
        width: 100%;
        background-color: transparent;
        border: none;
        outline: none;
        text-align: center;
        color: #545454;
    }

.bxs-fast-forward-circle {
    font-size: 50px;
    margin: auto 4px;
    cursor: pointer;
    transition: .3s; 
}

    .bxs-fast-forward-circle:hover { color: #4abe85; }

.scroll-down {
    position: absolute;
    bottom: 2rem;
    display: flex;
    align-items: center;
    color: #fe8040;
}

.heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .heading h1 { font-size: 1.8rem; }

#services {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    margin: 50px 0 0 0;
}

.box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 20px;
}

    .box img {
        width: 20px;
        height: 20px;
        margin-bottom: 10px;
    }

    .box span {
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .box p {
        font-size: .9rem;
        font-weight: 300;
    }

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    margin: 50px 0 0 0;
}

.team-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .team-box img {
        height: 200px;
        width: 200px;
        object-fit: contain;
        border-radius: .6rem;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all .5s ease;
    }

        .team-box img:hover { transform: scale(1.1); }

    .team-box h1, .client-box h1 {
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .team-box p {
        font-size: .9rem;
        font-weight: 300;
        margin: 0.5em 0 0.5em;
    }

    .team-box a {
        color: #fe8040;
        font-size: .9rem;
        transition: .3s;
    }

        .team-box a:hover { color: #4abe85; }

.clients-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    margin: 50px 0 0 0;
    grid-gap: 2rem;
    text-align: center;
}

.client-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #dbefe4;
    color: #1a112f;
    height: 250px;
    border-radius: .5rem;
}

    .client-box img {
        width: 50px;
        height: 50px;
        border: 1px solid #1a112f;
        object-fit: contain;
        border-radius: 50%;
        margin-bottom: 0.6rem;
    }

    .client-box p {
        font-size: .9rem;
        font-weight: 400;
        margin: 0.5em 0 0.5em;
    }

.color { background: #fdeed8; }

.connect {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right bottom, #fee6de, #fdeed8);
    padding: 40px 0;
}

    .connect h1 {
        font-size: 1.8rem;
        color: #1a112f;
        margin-bottom: 1rem;
    }

.social {
    margin-top: 2rem;
    display: flex;
    align-items: center;
}

    .social i {
        color: #1a112f;
        font-size: 1.4rem;
        margin-right: 1rem;
        transition: .3s;
    }

        .social i:hover { color: #fe8040; }

.copyright {
    padding: 20px 50px;
    background: #fff;
    color: #1a112f;
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    font-weight: 400;
}

@media (max-width: 991px) {
    .menu {
        position: fixed;
        top: 68px;
        right: -100%;
        display: block;
        padding: 50px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #fe8040;
        transition: .5s ease;
        z-index: 999;
    }

        .menu.active { right: 0; }

    nav ul li a { font-size: 35px; line-height: 3em; }
        nav ul li a:hover { color: #1a112f; }
        ul .active-btn { background: none; }

    .toggle {
        width: 40px;
        height: 40px;
        background: url('https://i.postimg.cc/mkFvyH7n/menu.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor: pointer;
    }

        .toggle.active {
            background: url('https://i.postimg.cc/QCG3PmND/close.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: 30px;
            cursor: pointer;
        }

    nav { padding: 10px 70px; }
    section { padding: 64px 70px; }
    .home-text h1 { font-size: 2.5rem; }
    .email-box { width: 370px; }
    .home-img { width: 350px; height: 400px; }
}

@media (max-width: 810px) {

    section { padding: 60px 40px; }
    nav { padding: 7px 40px; }
    .home-text h1 { font-size: 2rem; }
    .home-text p { max-width: 320px; }
    .email-box { width: 304px; }
}

@media (max-width: 696px) {
    .menu { top: 54px; }
    #home { flex-direction: column-reverse; }
    .email-box { margin-bottom: 2rem; }
    .services-content { grid-template-columns: 1fr; }
    .team-content { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
    .team-box { margin: 15px; }
    .clients-content { grid-template-columns: 1fr; }
}

@media (max-width: 516px) {
    #home { justify-content: center; }
    .home-img { display: none; }
    nav ul li a { font-size: 20px; }
    .heading h1 { font-size: 1.2rem; }
    section { padding: 60px 15px; }
    .team-content { grid-template-columns: 1fr; }

    .copyright {
        padding: 12px 50px;
        justify-content: center;
        flex-direction: column-reverse;
        text-align: center;
    }
}

@media (max-width: 360px) {
    section { padding: 60px 6px; }
    .email-box { width: 270px; }
    .home-text h1 { font-size: 1.8rem; }
}


.other-content {
    margin: 0;
    padding: 0;
    width: 99vw;
    height: 85vh;
    background-color: seashell;
    text-align: center;
  }
  .other-content h1 {
    font-size: 8rem;
    font-size: 8vw;
    line-height: 8rem;
    padding-top: 200px;
    color: #444;
    text-shadow: 5px 5px 5px lightgray;
  }
  
  /* FOOTER CODE START */
  .footer {
    width: 100%;
    background-color: navajowhite;
    margin: 0 auto;
    padding-top: 24px;
  }
  .footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
  .footer .row.main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px 0 16px;
  }
  .footer .col {
    flex: 1;
    max-width: 100%;
    transition: all 0.5s;
    border: 1px solid transparent;
  }
  .footer .site-info {
    display: flex;
    flex-direction: row;
  }
  .footer .footer-disclaimer {
    width: 65%;
    border-right: 1px dashed black;
    margin: 0;
  }
  .footer .footer-disclaimer .logo img {
    width: 50%;
  }
  .footer .footer-disclaimer p {
    padding-right: 24px;
    padding-bottom: 8px;
    margin-top: 16px;
  }
  .footer .footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .footer .footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding-left: 16px;
  }
  .footer .footer-links li {
    margin: 4px 0px;
  }
  .footer .footer-links a {
    color: black;
    text-decoration: none;
    display: block;
  }
  .footer .footer-links a:hover {
    background-color: #facada;
  }
  .footer .social-icons {
    width: 100%;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px dashed black;
  }
  .footer .social-icons ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .footer .social-icons li a {
    color: black;
    font-size: 1.5rem;
    padding: 0 8px;
  }
  .footer .ending-note {
    background-color: #facada;
    background-image: linear-gradient(
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.2) 20%,
      rgba(0, 0, 0, 0) 50%
    );
    font-size: 0.8rem;
    margin: 16px 0 0 0;
    padding: 16px;
  }
  .footer .ending-note p {
    width: 80%;
    text-align: center;
    margin: 0 auto;
  }
  .footer .contactform {
    padding: 16px 48px;
  }
  .footer .contactform p {
    margin: 0 0 24px 0;
    padding: 16px 0 0 0;
    text-align: center;
    font-weight: bold;
  }
  .footer .contactform form {
    display: flex;
    flex-direction: column;
  }
  .footer .contactform form label {
    font-size: 0.6rem;
    color: black;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .footer .contactform form input[type="text"],
  .footer .contactform form textarea {
    background-color: transparent;
    color: black;
    margin-bottom: 16px;
    border: 0;
    border-bottom: 1px solid darkgray;
    font-size: 1rem;
  }
  .footer .contactform form input[type="text"]:focus,
  .footer .contactform form textarea:focus {
    outline: 0;
  }
  .footer .contactform form button {
    max-width: 30%;
    max-width: fit-content;
    max-width: max-content;
    background-color: transparent;
    padding: 8px 16px;
    color: black;
    border: 1px solid black;
    margin: 0 auto;
  }
  
  .footer .col.maps {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px dashed black;
    border-bottom: 1px dashed black;
    margin-top: 16px;
  }
  .footer .place {
    flex: 1;
    display: flex;
    margin: 16px 0px;
  }
  .footer .place .address {
    margin-left: 8px;
    padding: 0;
  }
  .footer .place .address p {
    margin: 4px 0 0 0;
    padding: 0;
  }
  .footer .place .mapcontainer {
    height: 100%;
    padding-bottom: 33.5%;
  }
  .footer .place .map {
    background-color: deepskyblue;
    background-image: url("https://drive.google.com/uc?id=19AvvHDuvH92ytl9fPxKx--T0MtLRpibq");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100px;
    height: 100px;
    text-align: center;
    border: 3px solid white;
  }
  
  @media (min-width: 960px) {
    .footer {
      width: 100%;
      background-color: navajowhite;
      margin: 0 auto;
      padding-top: 24px;
    }
    .footer .row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      flex-direction: row;
    }
    .footer .row.main {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 16px 0 16px;
    }
    .footer .col {
      flex: 1;
      max-width: 33%;
      transition: all 0.5s;
      border: 1px solid transparent;
    }
    .footer .col.site-info {
      flex-direction: column;
    }
    .footer .footer-disclaimer,
    .footer .footer-links ul {
      border: none;
      margin: 0;
      padding: 0;
      width: 100%;
    }
    .footer .col:hover {
      background-color: rgba(255, 255, 255, 0.25);
      transition: all 0.5s;
      border: 1px solid white;
    }
    .footer .place,
    .footer .footer-links,
    .footer .contactform,
    .footer .footer-disclaimer {
      margin: 8px;
    }
    .footer .logo img {
      width: 50%;
    }
    .footer .col.maps {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding-top: 0;
      overflow: hidden;
      border: 1px solid transparent;
      margin: 0;
      padding: 8px;
    }
    .footer .col.maps:hover {
      border: 1px solid white;
    }
    .footer .place {
      display: flex;
      flex-direction: row;
      justify-content: center;
      width: 100%;
      margin: 0;
      padding: 0;
    }
    .footer .place .map-container {
      height: 0;
      padding-bottom: 25.5%;
      margin: 0;
    }
    .footer .place .address {
      margin-left: 8px;
      width: 100%;
      overflow: hidden;
      padding-bottom: 0;
    }
    .footer .place .address p {
      font-size: 1rem;
      margin: 0 0 4px 0;
      color: #333333;
    }
    .footer .place .address p:first-child {
      margin-bottom: 16px;
      color: black;
    }
  
    .footer .social-icons {
      width: 100%;
      padding-top: 8px;
      margin-top: 8px;
      border-top: none;
    }
    .footer .social-icons li a {
      font-size: 2rem;
    }
  
    .footer .contactform p {
      text-align: left;
      border-top: none;
      padding-top: 0;
    }
    .footer .contactform {
      margin: 0 16px;
      padding: 8px;
    }
    .footer .contactform form button {
      margin: 0;
    }
  }