@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

/* colors */
.white {
    color: white;
}

.black {
    color: black;
}

/* common classes*/
.section-p1 {
    padding: 10px 10%;
}

.section-p2 {
    padding: 30px 0%;
}

.section-p3 {
    padding: 10px 5%;
}

.section-p4 {
    padding: 30px 5%;
}



.section-title {
    font-size: 45px;
    font-weight: 90;
    animation-delay: 0.5s;
}

.disable {
    pointer-events: none;
    opacity: 0.5;
}

/* scrollbar */
/* width */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar:vertical {
    width: 12px;
}

::-webkit-scrollbar:horizontal {
    height: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    /* background: #f1f1f1; */
    background: #4eb8ab;
}

/* Handle */
::-webkit-scrollbar-thumb {
    /* background: #888; */
    background: #e72b43;
}

/* hero section */
.hero {
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url(images/hero-bg1.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px 10%;
    display: block;
    overflow: hidden;
}

.logo {
    width: 160px;
}


nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 5px;
    font-size: 16px;
}

nav ul li a {
    text-decoration: none;
    color:black;
}
/* nav sticky */
 .sticky {
    position: fixed;
     background-color: white;
     z-index: 9999;
  }
   

/* hammer icon */
.hammer {
    background-color: white;
    border: none;
    border-radius: 0.2rem;
    width: 50px;
    height: 40px;
    display: none;
}

.content {
    margin: 15% 0%;
    width: 700px;
    color: whitesmoke;
}

/* mobile nav */
#mobile-nav-section {
    display: none;
    margin: -5% 0 0;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 12%;
    width: 85%;
    background-color: white;
    padding: 5%;
    border-radius: 0.2rem;
}

.mobile-nav-item {
    padding: 5%;
}

.mobile-nav-item a {
    text-decoration: none;
    color: black;
}

.content h2 {
    font-size: 48px;
    animation-delay: 0.5s;
}

.content h4 {
    font-size: 25px;
    animation-delay: 0.5s;
}

.anim {
    opacity: 0;
    transform: translateY(30px);
    animation: moveup 0.5s linear forwards;
}

@keyframes moveup {
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}


/* services section */
.services {
    background-color: #00101f;
}

.services .sec-content {
    width: 45%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services .sec-content h2 {
    font-size: 45px;
    font-weight: 90;
    color: #fff;
}

.services .sec-content p {
    color: #bbb;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: .01563rem;
    margin-top: 20px;
}


.services .card-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

.services .card-container {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #00203a;
    background: linear-gradient(to top, rgba(44, 116, 214, 0), rgba(44, 116, 214, .3215686275));
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;

}

.services .card-container img {
    width: 36px;
    height: 36px;
}

.services .card-container h4 {
    margin-top: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.services .card-container p {
    margin-top: 30px;
    color: #bbb;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
}

.services .card-container a {
    margin-top: 40px;
    text-decoration: none;
    color: #2c74d6;
    font-size: 14px;
    font-weight: 700;
}



/* work section */
.work {
    width: 100%;
}

.work-hero {
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url(images/hero-products-bg.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px 10%;
    display: block;
    overflow: hidden;
}

.card-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
}

.card-container {
    width: 30%;
    min-height: 50%;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    border-bottom: 0.25rem solid #2c74d6;
    box-shadow: 0 0.25rem 0.5rem #00000014;
}

.image-container {
    width: 100%;
}

.image-container img {
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
}

.card-image {
    width: 100%;
}


.card-title {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    line-height: 120%;
    color: #111;
    letter-spacing: .5px;
}

.content-wrapper {
    padding: 5%;
}

.subtext {
    padding: 2%;
    word-wrap: break-word;
    font-style: normal;
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 140%;
    color: #111;
    letter-spacing: .25px;
}

.pills-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: row;
    flex-wrap: wrap;
}

.pills {
    font-style: normal;
    font-weight: 400;
    font-size: 0.8rem;
    color: #555;
    border: 1px solid rgb(253, 240, 240);
    border-radius: 0.8rem;
    padding: 2%;
}

/* technologies section */
.technologies {
    width: 100%;
    background-color: #00101f;
}

.circle-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-direction: row;
    margin: 4% 0;
}

.circle {
    border-radius: 50%;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid #4fbd9d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technologies p {
    color: whitesmoke;
    font-size: 1rem;
}

/* clients section*/
.logo-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
}
.client-logo{
    width: 15%;
}

.client-logo img{
    width: 100%;
}

/* footer section */

.footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #16786c;
    /* background-color: #00101f; */
}

.footer .section-p1 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-container .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-container .col .logo img {
    width: 180px;
}

.footer-container h4 {
    font-size: 14px;
    padding-bottom: 20px;
    color: #fff;
}

.footer-container p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

.footer-container a {
    font-size: 13px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 10px;
}

.footer-container a:hover {
    color: #4fbd9d;
}

.footer-container .col .follow {
    margin-top: 40px;
}

.footer-container .col .follow .icon i {
    color: #fff;
    padding-right: 8px;
    position: relative;
    cursor: pointer;
}

.footer-container .col .follow i:hover {
    color: #4fbd9d;
}

.footer .subfooter {
    border-top: 1px solid #fff;
}

.subfooter .copyright {
    text-align: center;
}

/* contact us section */
.contact-us {
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url(images/contactus-hero.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px 10%;
    display: block;
    overflow: hidden;
}

.form-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0.5rem;
    margin: 10px 5%;
    border: 0.5px solid black;
    border-radius: 0.2rem;
}

.contact-form-section1 {
    width: 70%;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-form-section2 {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

label {
    font-size: 1rem;
    font-weight: 600;
}

.form-input {
    width: 45%;
    display: flex;
    flex-direction: column;
}

.form-text-area {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.input-field {
    width: 100%;
    padding: 5%;
    border: 1px solid grey;
    border-radius: 2%;
}

.text-area-field {
    width: 100%;
    padding: 5%;
    border: 1px solid grey;
    border-radius: 2%;
}

.button-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
}

.button-container button {
    padding: 5%;
    border-radius: 0.3rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
}


/* About us  section*/
.about-us-hero {
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url(images/about-us-hero.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px 10%;
    display: block;
    overflow: hidden;
}
.who-are-we {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.who-are-we .about-content {
    width: 50%;
}

.about-content h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 300;
    font-size: 2.8rem;
    line-height: 120%;
    color: #111;
    letter-spacing: .03125rem;
}

.about-content p {
    line-height: 150%;
}

.teamwork {
    width: 50%;
}

.teamwork img {
    width: 100%;
}




.vision {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.vision .about-content {
    width: 50%;
}




/* media queries */
@media screen and (min-width: 361px) and (max-width: 480px) {

    /* common classes*/
    .section-title {
        font-size: 38px;
    }

    /* hero section */


    .logo {
        width: 140px;
    }

    nav ul {
        display: none;
    }

    /* hammer icon */

    .hammer {
        display: block;
    }

    .hammer i {
        font-size: 2rem;
    }

    /* mobile nav */
    #mobile-nav-section {
        display: block;
    }


    .content {
        margin: 35% 0%;
        width: auto;
    }

    .content h2 {
        font-size: 25px;
    }

    .content h4 {
        font-size: 15px;
    }

     /* services section */
     .services .card-container {
        width: 100%;
    }

    .services .sec-content {
        width: 100%;
    }

    .services .sec-content h2 {
        font-size: 45px;
    }

    .services .sec-content p {
        font-size: 1.2rem;
    }

    .services .card-container h4 {
        font-size: 1.4rem;
    }

    .services .card-container p {
        font-size: 1.2rem;
    }

    .services .card-container a {
        font-size: 14px;
    }


    /* work section */
    .card-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .card-container {
        width: 100%;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .subtext {
        font-size: 1.2rem;
    }

    .pills {
        font-size: 1.2rem;
    }



    /* technologies section */

    .technologies p {
        font-size: 1.2rem;
    }

    .circle-wrapper {
        flex-wrap: wrap;
    }


    .circle img {
        width: 50px;
        height: 50px;
    }


    /* clients section*/
    .logo-wrapper {
        flex-direction: column;
        gap:2rem;
    }
    .client-logo{
        width: 100%;
    }


    /* contact us section */

    .form-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-form-section1 {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form-section2 {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .form-input {
        width: 100%;
    }

    .form-text-area {
        width: 100%;
    }

    .button-container {
        justify-content: center;
    }

    .button-container button {
        width: -webkit-fill-available;
    }

     /* footer section */

     .footer-container .col .logo img {
        width: 180px;
    }

    .footer .footer-container {
        flex-direction: column;
    }

    .footer-container h4 {
        font-size: 1.2rem;
    }

    .footer-container p {
        font-size: 1.2rem;
    }

    .footer-container a {
        font-size: 1.2rem;
    }

    .footer-container .col .follow .icon i {
        font-size: 1.2rem;
    }

    /* about us section */

    .who-are-we{
        flex-direction: column;
    }
    .teamwork{
        width: 100%;
    }
    .who-are-we .about-content {
        width: 100%;
    }

    
}

@media (min-width:600px) and (max-width: 1000px) {
    /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */

    /* common classes*/
    .section-title {
        font-size: 3rem;
    }

    /* hero section */


    .logo {
        width: 200px;
    }

    nav ul {
        display: none;
    }

    /* hammer icon */

    .hammer {
        display: block;
        width: 70px;
        height: 60px;
    }

    .hammer i {
        font-size: 3rem;
    }

    /* mobile nav */
    #mobile-nav-section {
        display: block;
    }

    .mobile-nav {
        top:12%
    }
    .mobile-nav-item  {
        font-size: 1.5rem;
    }


    .content {
        margin: 35% 0%;
        width: auto;
    }

    .content h2 {
        font-size: 50px;
    }

    .content h4 {
        font-size: 30px;
    }

    /* services section */
    .services .card-container {
        width: 46%;
    }

    .services .sec-content {
        width: 100%;
    }

    .services .sec-content h2 {
        font-size: 45px;
    }

    .services .sec-content p {
        font-size: 1.6rem;
    }

    .services .card-container h4 {
        font-size: 1.6rem;
    }

    .services .card-container p {
        font-size: 1.2rem;
    }

    .services .card-container a {
        font-size: 14px;
    }


    /* work section */
    .card-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .card-container {
        width: 100%;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .subtext {
        font-size: 1.4rem;
    }

    .pills {
        font-size: 1.4rem;
    }



    /* technologies section */

    .technologies p {
        font-size: 1.6rem;
    }

    .circle-wrapper {
        flex-wrap: wrap;
    }

    .circle {
        width: 100px;
        height: 100px;
    }

    .circle img {
        width: 50px;
        height: 50px;
    }

     /* clients section*/
     .logo-wrapper {
       flex-wrap: wrap;
       gap: 2rem;
    }
    .client-logo{
        width: 30%;
    }

    /* contact us section */

    .form-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-form-section1 {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form-section2 {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .form-input {
        width: 100%;
    }

    .form-text-area {
        width: 100%;
    }

    .button-container {
        justify-content: center;
    }

    .button-container button {
        width: -webkit-fill-available;
        font-size: 2rem;
    }

    .input-field,.text-area-field {
        font-size: 1.5rem;
    }

    label {
        font-size: 2rem;
        font-weight: 600;
    }

    /* footer section */

    .footer-container .col .logo img {
        width: 200px;
    }


    .footer .footer-container {
        flex-direction: column;
    }

    .footer-container h4 {
        font-size: 1.4rem;
    }

    .footer-container p {
        font-size: 1.4rem;
    }

    .footer-container a {
        font-size: 1.4rem;
    }

    .footer-container .col .follow .icon i {
        font-size: 1.4rem;
    }

}

@media (min-width:1020px) and (max-width: 1200px) {

    /* common classes*/
    .section-title {
        font-size: 4rem;
    }

    /* hero section */


    .logo {
        width: 350px;
    }

    nav ul {
        display: none;
    }

    /* hammer icon */

    .hammer {
        display: block;
        width: 150px;
        height: 100px;
    }

    .hammer i {
        font-size: 5rem;
    }

    /* mobile nav */
    #mobile-nav-section {
        display: block;
    }

    .mobile-nav  {
        top:12%
    }
    .mobile-nav-item  {
        font-size: 2.5rem;
    }

    .content {
        margin: 35% 0%;
        width: auto;
    }

    .content h2 {
        font-size: 65px;
    }

    .content h4 {
        font-size: 40px;
    }

     /* services section */
     .services .card-container {
        width: 100%;
    }

    .services .sec-content {
        width: 100%;
    }

    .services .sec-content h2 {
        font-size: 4rem;
    }

    .services .sec-content p {
        font-size: 2.5rem;
    }

    .services .card-container  {
       padding: 30px 30px;
    }
    .services .card-container img {
        width: 100px;
        height: 100px;
    }

    .services .card-container h4 {
        font-size: 3rem;
    }

    .services .card-container p {
        font-size: 2.5rem;
    }

    .services .card-container a {
        font-size: 14px;
    }


    /* work section */
    .card-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .card-container {
        width: 100%;
    }

    .card-title {
        font-size: 3rem;
    }

    .subtext {
        font-size: 2.5rem;
    }

    .pills {
        font-size: 2.5rem;
    }



    /* technologies section */

    .technologies p {
        font-size: 2.5rem;
    }

    .circle-wrapper {
        flex-wrap: wrap;
    }

    .circle {
        width: 200px;
        height: 200px;
    }

    .circle img {
        width: 100px;
        height: 100px;
    }

     /* clients section*/
     .logo-wrapper {
        flex-direction: column;
        gap:2rem;
    }
    .client-logo{
        width: 100%;
    }


    /* contact us section */
  
    .section-p1 {
        padding: 50px 10%;
    }

    .form-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-form-section1 {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form-section2 {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .form-input {
        width: 100%;
    }

    .form-text-area {
        width: 100%;
    }

    .button-container {
        justify-content: center;
    }

    .button-container button {
        width: -webkit-fill-available;
        font-size: 2.5rem;
    }

    .input-field,.text-area-field {
        font-size: 2rem;
    }

    label {
        font-size: 2.5rem;
        font-weight: 600;
    }

     /* footer section */

     .footer-container .col .logo img {
        width: 350px;
    }

    .footer .footer-container {
        flex-direction: column;
    }

    .footer-container h4 {
        font-size: 2.4rem;
    }

    .footer-container p {
        font-size: 2.4rem;
    }

    .footer-container a {
        font-size: 2.4rem;
    }

    .footer-container .col .follow .icon i {
        font-size: 2.4rem;
    }
}

@media (min-width:2000px) and (max-width: 2600px) {
    .logo {
        width: 300px;
    }
    nav ul li {
        font-size: 1.8rem;
     
    }
    .section-title {
        font-size: 4rem;
    }

    /* hero section */
    .content  {
        width: 100%;    
    }

    .content h2 {
        font-size: 5rem;
    }
    
    .content h4 {
        font-size: 2.5rem;
    }

    /* services */
    .services .sec-content h2 {
        font-size: 4rem;
    }
    .services .sec-content {
        width: 100%;
    }
    .services .sec-content p {
        font-size: 2rem;
    }
    .services .card-container {
        padding: 20px 20px;
    }

    .services .card-container h4 {
        font-size: 2.4rem;
    }
    .services .card-container p {
        font-size: 2rem;
    }

    .services .card-container img {
        width: 50px;
        height: 50px;
    }
    /* work */
    .card-title {
        font-size: 2rem;
    }
    .subtext {
        font-size: 1.6rem;
    }
    .pills{
        font-size: 1.6rem;
    }
    /* technologies */
    .technologies p {
        font-size: 2rem;
    }
    .circle{
        width: 150px;
        height: 150px;
    }
    .circle img{
        width: 80px;
        height: 80px;
    }

    /* footer section */
    .footer-container .col .logo img {
        width: 300px;
    }

    .footer-container h4 {
        font-size: 2rem;
    }

    .footer-container p {
        font-size:  2rem;
    }

    .footer-container a {
        font-size:  2rem;
    }

    .footer-container .col .follow .icon i {
        font-size:  2rem;
    }

    /* contact us section */


    label {
        font-size: 1.8rem;
    }

    .input-field ,.text-area-field {
        font-size: 1.8rem;
    }

    .button-container button {
        font-size: 1.8rem;
    }
}