/* * {
  margin: 0;
  padding: 0;
  -webki
  -box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
} */

.landing-page {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: rgb(12,47,67);;
}

.landing-page .landing-page-pattern {
    position: absolute;
    height: 80%;
    top: 20%;
    left: 68.5%;
    z-index: 2;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.landing-page .landing-page-pattern .active {
    opacity: 0;
    -webkit-transition: all 0.5 ease;
    transition: all 0.5 ease;
}

.landing-page nav {
    position: fixed;
    width: 100%;
    background-color: rgb(12,47,67);
    padding: 0 100px;
    height: 12vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 100;
}

.landing-page nav ul {
    width: 40%;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.landing-page nav ul li {
    font-size: 18px;
    font-weight: 400;
}

.landing-page nav ul li a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.landing-page nav .hamburger {
    display: none;
}

.landing-page .vertical {
    display: block;
    top: 12%;
    right: 0;
    width: 100%;
    height: 88vh;
    background-color: rgb(11,35,52);
    z-index: 100;
    position: fixed;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.landing-page .vertical .vertical-navigation {
    height: 75%;
}

.landing-page .vertical .vertical-navigation ul {
    height: 100%;
    list-style: none;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.landing-page .vertical .vertical-navigation ul li {
    font-size: 18px;
    font-weight: 400;
}

.landing-page .vertical .vertical-navigation ul li a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.landing-page .active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.landing-page .landing-page-text {
    position: absolute;
    padding-left: 100px;
    top: 35%;
    width: 37%;
}

.landing-page .landing-page-text h1 {
    font-size: 4.1rem;
    font-weight: 800;
    color: #f0f7ca;
}

.landing-page .landing-page-text h4 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffff;
    margin: 20px 0;
}

.landing-page .landing-page-text button {
    margin: 10px 0;
    width: 180px;
    height: 60px;
    background-color: #fa7127;
    outline: none;
    border: none;
    border-radius: 0 50px 50px 50px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.landing-page .landing-page-text button a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
}

.landing-page nav ul li a:hover {
    color: #54db79;
}

.landing-page .landing-page-text button:hover {
    background-color: #0b2334;
    border: 3px solid #fa7127;
    border-radius: 50px 50px 50px 0;
}

.landing-page .vertical .vertical-navigation ul li a:hover {
    color: #54db79;
}

.landing-page .vertical .vertical-navigation ul li a:hover {
    border-bottom: 2px solid #f0f7ca;
}

.tagline-1 {
    position: relative;
    width: 100%;
    height: 50vh;
    background: #0b2334;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tagline-1 h1 {
    /* font: normal normal 900 122px/150px Poppins; */
    font: normal normal 900 151px/150px Poppins;
}

.tagline-1 .tagline-text-1 {
    color: #54db79;
    -webkit-transform: translate(-60%, 15%);
    transform: translate(-60%, 15%);
}
.tagline-1 .tagline-text-2 {
    color: #4385f8;
    -webkit-transform: translate(60%,-15%);
    transform: translate(60%, -15%);
}
.tagline-1 .tagline-text-3 {
    color: #54db79;
    -webkit-transform: translate(-60%, 15%);
    transform: translate(-60%, 15%);
}
.tagline-1 .tagline-text-4 {
    color: #4385f8;
    -webkit-transform: translate(60%,-15%);
    transform: translate(60%, -15%);
}

@media screen and (min-width: 341px) and (max-width:500px) {
    .tagline-1 .tagline-text-1 {
        font: normal normal 900 50px/50px Poppins;
        color: #54db79;
        -webkit-transform: translate(-30%, 100%);
        transform: translate(-30%, 100%);
        margin-left: 50px;
   
    }
    .tagline-1 .tagline-text-2 {
        /*margin-top: 30px;*/
        
        padding: 25px 0px;
    }
}

@media screen and (min-width: 341px) and (max-width:500px) {
    .tagline-1 .tagline-text-2 {
     font: normal normal 900 50px/150px Poppins;
  color: #4385f8;
     -webkit-transform: translate(30%,-15%);
     transform: translate(30%, -15%);
     margin-top: 30px;
     margin-bottom: 33px;

    }
}

@media screen and (min-width: 600px) and (max-width:1000px) {
    .tagline-1 .tagline-text-1 {
        font: normal normal 900 90px/70px Poppins;
        color: #54db79;
        -webkit-transform: translate(40%, 70%);
        transform: translate(40%, 70%);
   
    }
}

@media screen and (min-width: 600px) and (max-width:1000px) {
    .tagline-1 .tagline-text-2 {
     font: normal normal 900 90px/70px Poppins;
     margin-top: 80px;
     color: #4385f8;
     -webkit-transform: translate(60%,-15%);
     transform: translate(60%, -15%);

    }
}

/*@media screen and (min-width: 769px) and (max-width: 1200px) {
    .tagline-1 .tagline-text-1 {
       top:20%;
       left: 54.5%;
        color: #54db79;
    -webkit-transform: translate(-60%, 15%);
    transform: translate(-60%, 15%);
    }
}


@media screen and (max-width: 1200px) and (min-width: 769px) {
     .tagline-1 .tagline-text-2 {
         top:1%;
         left: 54.5%;
         color: #4385f8;
        -webkit-transform: translate(-26%, -40%);
         transform: translate(-26%, -40%);
        }
    }*/

.info {
    margin: 100px 0;
    position: relative;
    width: 100%;
    height: initial;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.info .pattern1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    margin: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.info .pattern1 .active {
    opacity: 0;
}

.info .info-section {
    padding: 25px 0;
    margin: 0 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.info .info-section .who-we-are {
    -webkit-transform: translateX(-80%);
    transform: translateX(-80%);
}

.info .info-section .info-section-text {
    width: 50%;
}

.info .info-section .info-section-text h2 {
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: 800;
    color: #0b2334;
    z-index: 10;
}

.info .info-section .info-section-text p {
    font-size: 1.3rem;
    font-weight: 400;
    color: #688b9b;
}

.info .info-section .info-section-text .para-1 {
    margin: 65px 0 30px 0;
}

.info .info-section .info-section-text button {
    margin: 10px 0;
    width: 180px;
    height: 60px;
    background-color: #fa7127;
    outline: none;
    border: none;
    border-radius: 0 50px 50px 50px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.info .info-section .info-section-text button a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
}

.info .info-section .info-section-text button:hover {
    background-color: #ffffff;
    color: #fa7127;
    border: 3px solid #fa7127;
    border-radius: 50px 50px 50px 0;
}

.info .info-section .info-section-text button:hover a {
    color: #fa7127;
}

.tagline-2 {
    position: relative;
    width: 100%;
    height: 50vh;
    background: #0b3044;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media screen and (min-width:341px) and (max-width:500px) {
.tagline-2 h1 {
    font: normal normal 900 px/80px Poppins;
    z-index: 10;
    

}
}

.tagline-2 .tagline-text-1 {
    color: #4385f8;
    -webkit-transform: translate(-40%, 15%);
    transform: translate(-40%, 15%);
}

.tagline-2 .tagline-text-2 {
    color: #fa7127;
    -webkit-transform: translate(40%, -15%);
    transform: translate(40%, -15%);
}
@media screen and (min-width: 341px) and (max-width:500) {
    .tagline-2 .tagline-text-1 {
        font: normal normal 700 90px/50px Poppins !important;
        color: #54db79;
        -webkit-transform: translate(-40%, 15%);
        transform: translate(-40%, 15%);
        
   
    }
}

@media screen and (min-width: 341px) and (max-width:500) {
    .tagline-2 .tagline-text-2 {
     font: normal normal 700 50px/50px Poppins !important;
  color: #4385f8;
      margin-top :-70px !important;
     -webkit-transform: translate(40%,-15%);
     transform: translate(40%, -15%);

    }




@media screen and (min-width: 600px) and (max-width:1000px) {
    .tagline-2 .tagline-text-1 {
        font: normal normal 700 50px/50px Poppins !important;
        color: #54db79;
        -webkit-transform: translate(5%, 70%);
        transform: translate(5%, 70%);
        margin-top: -70px;
   
    }
}

@media screen and (min-width: 600px) and (max-width:1000px) {
    .tagline-2 .tagline-text-2 {
     font: normal normal 700 90px/70px Poppins !important;
     margin-top: 80px;
     color: #4385f8;
     -webkit-transform: translate(90%,-35%);
     transform: translate(90%, -35%) ;

    }
}

.tagline-2 .pattern2 {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 200%;
    margin: 0;
    -webkit-transform: translateY(56.5%);
    transform: translateY(56.5%);
}

.motive {
    position: relative;
    margin: 100px 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.motive .why-us {
    margin: 0 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.motive .why-us .why-us-text {
    width: 50%;
}

.motive .why-us .why-us-text h2 {
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: 800;
    color: #0b3044;
}

.motive .why-us .why-us-text p {
    font-size: 1.3rem;
    font-weight: 400;
    color: #688b9b;
}

.motive .why-us .why-us-text .para-1 {
    margin-top: 30px;
    width: 35%;
}

.motive .why-us .link-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateX(-30%);
    transform: translateX(-30%);
}

.motive .why-us .link-logo #left {
    fill: transparent;
    stroke-width: 3;
    stroke: #54db79;
    stroke-dasharray: 770;
    stroke-dashoffset: 0;
    -webkit-animation: left_link 3s infinite linear;
    animation: left_link 3s infinite linear;
}

.motive .project-works {
    margin: 50px 100px;
    width: 90%;
}

.motive .project-works h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0b3044;
    margin-bottom: 60px;
}

.motive .project-works .numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.motive .project-works .numbers .number {
    text-align: center;
}

.motive .project-works .numbers .number h1 {
    font-size: 6rem;
    font-weight: 500;
    color: #0b3044;
}

.motive .project-works .numbers .number .line {
    width: 250px;
    height: 4px;
    background-color: #f0f7ca;
}

.motive .project-works .numbers .number h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #0b3044;
}

.motive .employees-galary {
    position: relative;
    width: 90%;
    height: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #4385f81a;
    border-radius: 0 100px 0 0;
}

.motive .employees-galary .employe-info {
    height: 600px;
    width: 45%;
    margin-left: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.motive .employees-galary .employe-info h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #0b3044;
}

.motive .employees-galary .employe-info h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0b3044;
}

.motive .employees-galary .employe-info p {
    width: 80%;
    font-size: 1.1rem;
    font-weight: 400;
    color: #688b9b;
    margin-bottom: 40px;
}

.motive .employees-galary .employe-info .circles {
    position: absolute;
    bottom: 40px;
    right: 25px;
    height: 25px;
    width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.motive .employees-galary .employe-info .circles .circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #4385f8;
}

.motive .employees-galary .employe-info .circles .circle.active {
    background-color: #4385f8;
    opacity: 0.2;
}

.motive .employees-galary .next-button {
    position: absolute;
    top: 50%;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    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;
    -webkit-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.motive .employees-galary .next-button a .arrow {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
}

.motive .brands {
    width: 90%;
    margin: 50px 100px;
}

.motive .brands h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0b3044;
    margin-bottom: 60px;
}

.motive .brands .brands-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tagline-3 {
    position: relative;
    width: 100%;
    height: 60vh;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #0b3044;
}

.tagline-3 .pattern3 {
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
}

.tagline-3 h1 {
    font: normal normal 900 122px/80px Poppins !important;
    z-index: 10;
}

.tagline-3 .tagline-text-1 {
    color: #fa7127;
    -webkit-transform: translate(-30%, 7%);
    transform: translate(-30%, 7%);
}

.tagline-3 .tagline-text-2 {
    color: #f0f7ca;
    -webkit-transform: translate(60%, -15%);
    transform: translate(60%, -15%);
}

@media screen and (min-width: 341px) and (max-width:500px) {
    .tagline-3 .tagline-text-1 {
       /* font: normal normal 900 50px/50px Poppins;*/
        color: #54db79;
        -webkit-transform: translate(-60%, 15%);
        transform: translate(-60%, 15%);
        margin-left: 50px;
   
    }
    .tagline-1 .tagline-text-2 {
        /*margin-top: 30px;*/
        
        padding: 25px 0px;
    }
}

@media screen and (min-width: 341px) and (max-width:500px) {
    .tagline-3 .tagline-text-2 {
   /*  font: normal normal 900 50px/50px Poppins;*/
  color: #4385f8;
     -webkit-transform: translate(60%,-15%);
     transform: translate(60%, -15%);
     margin-top: 30px;
     margin-bottom: 33px;

    }
}

/*@media screen and (min-width: 341px) and (max-width:500) {
    .tagline-3 .tagline-text-1 {
        font: normal normal 900 50px/50px Poppins;
        color: #54db79;
        -webkit-transform: translatex(50%, 10%);
        transform: translatex(50%, 10%);
        margin-left: 50px;
        
   
    }
}

@media screen and (min-width: 341px) and (max-width:500) {
    .tagline-3 .tagline-text-2 {
     font: normal normal 900 50px/50px Poppins !important;
  color: #4385f8;
     -webkit-transform: translatex(70%,-15%);
     transform: translatex(70%, -15%);

    }
}*/

/*@media screen and (min-width: 600px) and (max-width:1000px) {
    .tagline-2 .tagline-text-1 {
        font: normal normal 700 90px/70px Poppins;
        color: #54db79;
        -webkit-transform: translate(5%, 70%);
        transform: translate(5%, 70%);
   
    }
}

@media screen and (min-width: 600px) and (max-width:1000px) {
    .tagline-2 .tagline-text-2 {
     font: normal normal 700 90px/70px Poppins;
     color: #4385f8;
     -webkit-transform: translate(90%,-35%);
     transform: translate(90%, -35%) ;

    }
}*/
.tagline-3 p {
    padding-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffffcc;
    -webkit-transform: translate(20%, -20%);
    transform: translate(20%, -20%);
}

.tagline-3 button {
    width: 220px;
    height: 60px;
    background-color: #54db79;
    outline: none;
    border: none;
    border-radius: 0 50px 50px 50px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(160%);
    transform: translateX(160%);
}

.tagline-3 button a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
}

.tagline-3 button:hover {
    background-color: #0b3044;
    border-radius: 50px 50px 50px 0;
    border: 3px solid #54db79;
}

.tagline-3 button:hover a {
    color: #54db79;
}

.foot {
    padding: 100px;
    position: relative;
    width: 100%;
    height: 60vh;
    background-color: #0b3044;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.foot .pattern4 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
}

.foot .copyright {
    position: absolute;
    bottom: 50px;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
}

.foot h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #f0f7ca;
}

.foot .services ul {
    list-style: none;
}

.foot .services ul li {
    padding: 20px 0;
}

.foot .services ul li a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
}

.foot .company ul {
    list-style: none;
}

.foot .company ul li {
    padding: 20px 0;
}

.foot .company ul li a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
}

.foot .contact-links {
    padding: 39px 0;
}

.foot .contact-links ul {
    list-style: none;
}

.foot .contact-links ul li {
    padding: 20px 0;
}

.foot .contact-links ul li img {
    -webkit-transform: translate(-50%, 20%);
    transform: translate(-50%, 20%);
}

.foot .contact-links ul li a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
}

.foot .get-in-touch {
    position: relative;
    width: 400px;
    overflow: hidden;
}

.foot .get-in-touch .form-email,
.foot .get-in-touch .form-message {
    margin: 40px 0;
    position: relative;
    height: 50px;
    color: #0b3044;
}

.foot .get-in-touch .form-email input,
.foot .get-in-touch .form-message input {
    width: 400px;
    height: 50px;
    background-color: #0b3044;
    color: #ffffff;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    border: none;
    outline: none;
    padding-top: 10px;
}

.foot .get-in-touch .form-email label,
.foot .get-in-touch .form-message label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
    border-bottom: 1px solid #f0f7ca;
}

.foot .get-in-touch .form-email label ::after,
.foot .get-in-touch .form-message label ::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 50px;
    width: 100%;
    border-bottom: 3px solid #54db79;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.foot .get-in-touch .form-email label h4,
.foot .get-in-touch .form-message label h4 {
    position: absolute;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    bottom: 5px;
    left: 0px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.foot .get-in-touch .form-email input:focus+.label-name h4,
.foot .get-in-touch .form-email input:valid+.label-name h4,
.foot .get-in-touch .form-message input:focus+.label-name h4,
.foot .get-in-touch .form-message input:valid+.label-name h4 {
    -webkit-transform: translateY(-90%);
    transform: translateY(-90%);
    color: #54db79;
}

.foot .get-in-touch .form-email input:focus+.label-name::after,
.foot .get-in-touch .form-email input:valid+.label-name::after,
.foot .get-in-touch .form-message input:focus+.label-name::after,
.foot .get-in-touch .form-message input:valid+.label-name::after {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.foot .get-in-touch button {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 10px 0;
    width: 135px;
    height: 60px;
    background-color: #0b3044;
    outline: none;
    border: 2px solid #f0f7ca;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    border-radius: 0 50px 50px 50px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.foot .get-in-touch button:hover {
    color: #0b3044;
    background-color: #f0f7ca;
    border-radius: 50px 50px 50px 0;
}

@-webkit-keyframes left_link {
    0% {
        stroke-dashoffset: 0;
    }
    40% {
        stroke-dashoffset: 770;
    }
    80% {
        fill: transparent;
        stroke-dashoffset: 1540;
    }
    100% {
        fill: #54db79;
        stroke-dashoffset: 1540;
    }
}

@keyframes left_link {
    0% {
        stroke-dashoffset: 0;
    }
    40% {
        stroke-dashoffset: 770;
    }
    80% {
        fill: transparent;
        stroke-dashoffset: 1540;
    }
    100% {
        fill: #54db79;
        stroke-dashoffset: 1540;
    }
}

@media screen and (max-width: 1780px) {
    .motive .employees-galary .employe-info h3 {
        font-size: 1.6rem;
        font-weight: 500;
        color: #0b3044;
    }
    .motive .employees-galary .employe-info h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0b3044;
    }
    .motive .employees-galary .employe-info p {
        width: 80%;
        font-size: 1rem;
        font-weight: 400;
        color: #688b9b;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1470px) {
    .landing-page .landing-page-text {
        width: 45%;
    }
    .landing-page .landing-page-text h1 {
        font-size: 4.1rem;
        font-weight: 800;
        color: #f0f7ca;
    }
    .landing-page .landing-page-text h4 {
        font-size: 1.3rem;
        font-weight: 400;
        color: #ffffff;
        margin: 20px 0;
    }
}

@media screen and (max-width: 1360px) {
    .motive .employees-galary .employe-info h3 {
        font-size: 1.4rem;
        font-weight: 500;
        color: #0b3044;
    }
    .motive .employees-galary .employe-info h2 {
        font-size: 2.1rem;
        font-weight: 800;
        color: #0b3044;
    }
    .motive .employees-galary .employe-info p {
        width: 80%;
        font-size: 1rem;
        font-weight: 400;
        color: #688b9b;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1280px) {
    .landing-page .landing-page-pattern {
        position: absolute;
        height: 80%;
        top: 20%;
        left: 54.5%;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    .landing-page .landing-page-pattern .active {
        opacity: 0;
        -webkit-transition: all 0.5 ease;
        transition: all 0.5 ease;
    }
    .landing-page nav {
        z-index: 10;
    }
    .landing-page nav ul {
        width: 40%;
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .landing-page nav ul li {
        font-size: 18px;
        font-weight: 400;
    }
    .landing-page nav ul li a {
        color: #fff;
        text-decoration: none;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .landing-page .landing-page-text {
        position: absolute;
        padding-left: 100px;
        top: 35%;
        width: 45%;
    }
    .tagline-1 h1 {
        font-size: 7.4rem;
        font-weight: 800;
    }
    .info {
        margin: 40px 0;
        position: relative;
        width: 100%;
        height: initial;
    }
    .info .pattern1 {
        -webkit-transform: translateY(-44%);
        transform: translateY(-44%);
    }
    .info .pattern1 .active {
        opacity: 0;
    }
    .info .info-section img {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    .info .info-section .who-we-are {
        -webkit-transform: translateX(-35%);
        transform: translateX(-35%);
    }
    .info .info-section .info-section-text {
        width: 50%;
    }
    .info .info-section .info-section-text h2 {
        font-size: 2.8rem;
    }
    .info .info-section .info-section-text p {
        font-size: 1.1rem;
    }
    .info .info-section .info-section-text .para-1 {
        margin: 65px 0 30px 0;
    }
    .tagline-2 h1 {
        font-size: 5.4rem;
    }
    .tagline-2 .pattern2 {
        height: 200%;
        margin: 0;
        -webkit-transform: scale(0.9) translateY(63.5%);
        transform: scale(0.9) translateY(63.5%);
    }
    .motive {
        margin: 100px 0;
        position: relative;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .motive .why-us {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .motive .why-us .why-us-text {
        width: 50%;
    }
    .motive .why-us .why-us-text h2 {
        font-size: 2.8rem;
    }
    .motive .why-us .why-us-text p {
        font-size: 1.1rem;
    }
    .motive .why-us .link-logo {
        -webkit-transform: scale(0.9) translateX(-15%);
        transform: scale(0.9) translateX(-15%);
    }
    .motive .project-works {
        margin: 50px 100px;
        width: 85%;
    }
    .motive .project-works h2 {
        font-size: 2.8rem;
    }
    .motive .project-works .numbers .number h1 {
        font-size: 5.5rem;
    }
    .motive .project-works .numbers .number .line {
        width: 225px;
    }
    .motive .project-works .numbers .number h2 {
        font-size: 1.8rem;
        color: #0b3044;
    }
    .motive .employees-galary {
        height: 500px;
    }
    .motive .employees-galary .ankush {
        height: 500px;
    }
    .motive .employees-galary .employe-info {
        height: 500px;
    }
    .motive .employees-galary .employe-info h3 {
        font-size: 1.4rem;
    }
    .motive .employees-galary .employe-info h2 {
        font-size: 2.1rem;
    }
    .motive .employees-galary .employe-info p {
        font-size: 1rem;
    }
    .motive .employees-galary .employe-info .circles .circle {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    .motive .brands {
        width: 90%;
        margin: 50px 100px;
    }
    .motive .brands h2 {
        font-size: 2.8rem;
    }
    .motive .brands .brands-logo img {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    .tagline-3 {
        position: relative;
        width: 100%;
        height: 60vh;
        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-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #0b3044;
    }
    .tagline-3 .pattern3 {
        position: absolute;
        height: 100%;
        bottom: 0;
        left: 0;
        -webkit-transform: scale(0.9) translateY(8%);
        transform: scale(0.9) translateY(8%);
    }
    .tagline-3 h1 {
        font-size: 7.4rem;
        font-weight: 800;
        z-index: 10;
    }
    .tagline-3 .tagline-text-1 {
        color: #fa7127;
        -webkit-transform: translate(-60%, 15%);
        transform: translate(-60%, 15%);
    }
    .tagline-3 .tagline-text-2 {
        color: #f0f7ca;
        -webkit-transform: translate(60%, -15%);
        transform: translate(60%, -15%);
    }
    .tagline-3 p {
        padding-bottom: 20px;
        font-size: 1.1rem;
        font-weight: 400;
        color: #ffffffcc;
        -webkit-transform: translate(20%, -20%);
        transform: translate(20%, -20%);
    }
    .foot {
        padding: 100px;
        position: relative;
        width: 100%;
        height: 60vh;
        background-color: #0b3044;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .foot .pattern4 {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        -webkit-transform: scale(0.9) translateY(-10%);
        transform: scale(0.9) translateY(-10%);
    }
    .foot .copyright {
        position: absolute;
        bottom: 50px;
        font-size: 0.9rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot h3 {
        font-size: 1.4rem;
        font-weight: 500;
        color: #f0f7ca;
    }
    .foot .services ul {
        list-style: none;
    }
    .foot .services ul li {
        padding: 13px 0;
    }
    .foot .services ul li a {
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot .company ul {
        list-style: none;
    }
    .foot .company ul li {
        padding: 13px 0;
    }
    .foot .company ul li a {
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot .contact-links {
        padding: 39px 0;
    }
    .foot .contact-links ul {
        list-style: none;
    }
    .foot .contact-links ul li {
        padding: 13px 0;
    }
    .foot .contact-links ul li img {
        -webkit-transform: translate(-50%, 20%);
        transform: translate(-50%, 20%);
    }
    .foot .contact-links ul li a {
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot .get-in-touch {
        width: 350px;
    }
    .foot .get-in-touch .form-email,
    .foot .get-in-touch .form-message {
        margin: 40px 0;
        height: 40px;
    }
    .foot .get-in-touch .form-email input,
    .foot .get-in-touch .form-message input {
        width: 350px;
        height: 40px;
        font-size: 0.9rem;
        padding-top: 10px;
    }
    .foot .get-in-touch .form-email label,
    .foot .get-in-touch .form-message label {
        height: 40px;
    }
    .foot .get-in-touch .form-email label ::after,
    .foot .get-in-touch .form-message label ::after {
        bottom: -1px;
        height: 40px;
    }
    .foot .get-in-touch .form-email label h4,
    .foot .get-in-touch .form-message label h4 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1080px) {
    .landing-page .landing-page-pattern {
        position: absolute;
        height: 87%;
        top: 13%;
        left: 54.5%;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    .landing-page .landing-page-pattern .active {
        opacity: 0;
        -webkit-transition: all 0.5 ease;
        transition: all 0.5 ease;
    }
    .landing-page nav {
        z-index: 100;
    }
    .landing-page nav ul {
        display: none;
    }
    .landing-page nav .hamburger {
        display: inline-block;
    }
    .landing-page .landing-page-text {
        position: absolute;
        padding-left: 100px;
        top: 35%;
        width: 45%;
    }
    .landing-page .landing-page-text h1 {
        font-size: 3rem;
    }
    .landing-page .landing-page-text h4 {
        font-size: 1rem;
    }
    .landing-page .landing-page-text button a {
        font-size: 1.2rem;
    }
    .tagline-1 h1 {
        font-size: 7.4rem;
        font-weight: 800;
    }
    .info {
        position: relative;
        margin: 50px 0;
        width: 100%;
        height: initial;
    }
    .info .pattern1 {
        -webkit-transform: translateY(-44%);
        transform: translateY(-44%);
    }
    .info .pattern1 .active {
        opacity: 0;
    }
    .info .info-section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 10px 0;
    }
    .info .info-section img {
        padding-bottom: 20px;
        -webkit-transform: scale(1);
        transform: scale(1);
        border-radius: 20%;
    }
    .info .info-section .who-we-are {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .info .info-section .info-section-text {
        width: 50%;
    }
    .info .info-section .info-section-text h2 {
        margin: 10px 0;
        font-size: 2.5rem;
    }
    .info .info-section .info-section-text p {
        font-size: 1rem;
        padding: 10px 0;
    }
    .info .info-section .info-section-text .para-1 {
        margin: 50px 0 30px 0;
    }
    .info .info-section .info-section-text button a {
        font-size: 1.2rem;
    }
    .tagline-2 h1 {
        font-size: 7.4rem;
    }
    .tagline-2 .pattern2 {
        height: 200%;
        margin: 0;
        -webkit-transform: scale(0.9) translateY(63.5%);
        transform: scale(0.9) translateY(63.5%);
    }
    .motive {
        margin: 100px 0;
        position: relative;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .motive .why-us {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .motive .why-us .why-us-text {
        width: 50%;
    }
    .motive .why-us .why-us-text h2 {
        font-size: 2.5rem;
    }
    .motive .why-us .why-us-text p {
        font-size: 1rem;
    }
    .motive .why-us .link-logo {
        -webkit-transform: scale(0.9) translateX(-15%);
        transform: scale(0.9) translateX(-15%);
    }
    .motive .project-works {
        margin: 50px 100px;
        width: 85%;
    }
    .motive .project-works h2 {
        font-size: 2.5rem;
    }
    .motive .project-works .numbers .number h1 {
        font-size: 4.5rem;
    }
    .motive .project-works .numbers .number .line {
        width: 175px;
    }
    .motive .project-works .numbers .number h2 {
        font-size: 1.5rem;
        color: #0b3044;
    }
    .motive .employees-galary {
        height: 500px;
    }
    .motive .employees-galary .ankush {
        height: 500px;
    }
    .motive .employees-galary .employe-info {
        height: 500px;
    }
    .motive .employees-galary .employe-info h3 {
        font-size: 1.2rem;
    }
    .motive .employees-galary .employe-info h2 {
        font-size: 1.4rem;
    }
    .motive .employees-galary .employe-info p {
        font-size: 0.8rem;
    }
    .motive .employees-galary .employe-info .circles .circle {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    .motive .brands {
        width: 90%;
        margin: 50px 100px;
    }
    .motive .brands h2 {
        font-size: 2.5rem;
    }
    .motive .brands .brands-logo img {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    .tagline-3 {
        position: relative;
        width: 100%;
        height: 60vh;
        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-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #0b3044;
    }
    .tagline-3 .pattern3 {
        position: absolute;
        height: 100%;
        bottom: 0;
        left: 0;
        -webkit-transform: scale(0.9) translateY(8%);
        transform: scale(0.9) translateY(8%);
    }
    .tagline-3 h1 {
        font-size: 7.4rem;
        font-weight: 800;
        z-index: 10;
    }
    .tagline-3 .tagline-text-1 {
        color: #fa7127;
        -webkit-transform: translate(-60%, 15%);
        transform: translate(-60%, 15%);
    }
    .tagline-3 .tagline-text-2 {
        color: #f0f7ca;
        -webkit-transform: translate(60%, -15%);
        transform: translate(60%, -15%);
    }
    .tagline-3 p {
        padding-bottom: 20px;
        font-size: 1rem;
        font-weight: 400;
        color: #ffffffcc;
        -webkit-transform: translate(20%, -20%);
        transform: translate(20%, -20%);
    }
    .tagline-3 button a {
        font-size: 1.2rem;
    }
    .foot {
        padding: 100px;
        position: relative;
        width: 100%;
        background-color: #0b3044;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .foot .pattern4 {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        -webkit-transform: scale(0.9) translateY(-10%);
        transform: scale(0.9) translateY(-10%);
    }
    .foot .copyright {
        position: absolute;
        bottom: 50px;
        font-size: 0.9rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot h3 {
        font-size: 1.2rem;
        font-weight: 500;
        color: #f0f7ca;
    }
    .foot .services ul {
        list-style: none;
    }
    .foot .services ul li {
        padding: 13px 0;
    }
    .foot .services ul li a {
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot .company ul {
        list-style: none;
    }
    .foot .company ul li {
        padding: 13px 0;
    }
    .foot .company ul li a {
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot .contact-links {
        padding: 39px 0;
    }
    .foot .contact-links ul {
        list-style: none;
    }
    .foot .contact-links ul li {
        padding: 13px 0;
    }
    .foot .contact-links ul li img {
        -webkit-transform: translate(-50%, 20%);
        transform: translate(-50%, 20%);
    }
    .foot .contact-links ul li a {
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot .get-in-touch {
        width: 250px;
    }
    .foot .get-in-touch .form-email,
    .foot .get-in-touch .form-message {
        margin: 40px 0;
        height: 40px;
    }
    .foot .get-in-touch .form-email input,
    .foot .get-in-touch .form-message input {
        width: 300px;
        height: 30px;
        font-size: 0.9rem;
        padding-top: 10px;
    }
    .foot .get-in-touch .form-email label,
    .foot .get-in-touch .form-message label {
        height: 30px;
    }
    .foot .get-in-touch .form-email label ::after,
    .foot .get-in-touch .form-message label ::after {
        bottom: -1px;
        height: 30px;
    }
    .foot .get-in-touch .form-email label h4,
    .foot .get-in-touch .form-message label h4 {
        font-size: 1.2rem;
    }
    .foot .get-in-touch button {
        font-size: 1.2rem;
    }
}

/* @media screen and (max-width: 768px) { */
    .landing-page .landing-page-pattern {
        position: absolute;
        height: 87%;
        top: 13%;
        left: 40.5%;
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
    }
    .landing-page .landing-page-pattern .active {
        opacity: 0;
        -webkit-transition: all 0.5 ease;
        transition: all 0.5 ease;
    }
    .landing-page nav {
        z-index: 100;
    }
    .landing-page nav ul {
        display: none;
    }
    .landing-page nav .hamburger {
        display: inline-block;
    }
    .landing-page .landing-page-text {
        position: absolute;
        padding-left: 100px;
        top: 35%;
        width: 50%;
    }
    .landing-page .landing-page-text h1 {
        font-size: 2.5rem;
    }
    .landing-page .landing-page-text h4 {
        font-size: 1rem;
    }
    .landing-page .landing-page-text button a {
        font-size: 1rem;
    }
    .tagline-1 {
        height: 40vh;
    }
    .tagline-1 h1 {
        font-size: 6rem;
        font-weight: 800;
    }
    .info {
        position: relative;
        margin: 50px 0;
        width: 100%;
        height: initial;
    }
    .info .pattern1 {
        -webkit-transform: translateY(-44%);
        transform: translateY(-44%);
    }
    .info .pattern1 .active {
        opacity: 0;
    }
    .info .info-section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 10px 0;
    }
    .info .info-section img {
        width: 480px;
        padding-bottom: 20px;
        border-radius: 20%;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    .info .info-section .who-we-are {
        -webkit-transform: scale(0.8) translateX(0);
        transform: scale(0.8) translateX(0);
    }
    .info .info-section .info-section-text {
        width: 60%;
    }
    .info .info-section .info-section-text h2 {
        margin: 10px 0;
        font-size: 2.5rem;
    }
    .info .info-section .info-section-text p {
        font-size: 1rem;
        padding: 10px 0;
    }
    .info .info-section .info-section-text .para-1 {
        margin: 50px 0 30px 0;
    }
    .info .info-section .info-section-text button a {
        font-size: 1rem;
    }
    .tagline-2 {
        height: 40vh;
    }
    .tagline-2 h1 {
        font-size: 6rem;
    }
    .tagline-2 .pattern2 {
        height: 200%;
        margin: 0;
        -webkit-transform: scale(0.9) translateY(63.5%);
        transform: scale(0.9) translateY(63.5%);
    }
    .motive {
        margin: 100px 0;
        position: relative;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .motive .why-us {
        margin: 0 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .motive .why-us .why-us-text {
        width: 60%;
    }
    .motive .why-us .why-us-text h2 {
        font-size: 2rem;
    }
    .motive .why-us .why-us-text p {
        font-size: 1rem;
    }
    .motive .why-us .link-logo {
        -webkit-transform: scale(0.8) translateX(20%);
        transform: scale(0.8) translateX(20%);
    }
    .motive .project-works {
        margin: 50px 50px;
        width: 85%;
    }
    .motive .project-works h2 {
        font-size: 2rem;
    }
    .motive .project-works .numbers .number h1 {
        font-size: 2.5rem;
    }
    .motive .project-works .numbers .number .line {
        width: 100px;
    }
    .motive .project-works .numbers .number h2 {
        font-size: 1rem;
        color: #0b3044;
    }
    .motive .employees-galary {
        height: 300px;
    }
    .motive .employees-galary .ankush {
        height: 300px;
    }
    .motive .employees-galary .employe-info {
        height: 300px;
    }
    .motive .employees-galary .employe-info h3 {
        font-size: 0.9rem;
    }
    .motive .employees-galary .employe-info h2 {
        font-size: 1rem;
    }
    .motive .employees-galary .employe-info p {
        font-size: 0.6rem;
    }
    .motive .employees-galary .employe-info .circles {
        bottom: 10px;
        width: 15%;
    }
    .motive .employees-galary .employe-info .circles .circle {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    .motive .brands {
        width: 90%;
        margin: 50px;
    }
    .motive .brands h2 {
        font-size: 2rem;
    }
    .motive .brands .brands-logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        width: 90%;
    }
    .motive .brands .brands-logo img {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
    .tagline-3 {
        position: relative;
        width: 100%;
        height: 50vh;
        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-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #0b3044;
    }
    .tagline-3 .pattern3 {
        position: absolute;
        height: 100%;
        bottom: 0;
        left: 0;
        -webkit-transform: scale(0.9) translateY(8%);
        transform: scale(0.9) translateY(8%);
    }
    .tagline-3 h1 {
        font-size: 6.5rem;
        font-weight: 800;
        z-index: 10;
    }
    .tagline-3 .tagline-text-1 {
        color: #fa7127;
        -webkit-transform: translate(-60%, 15%);
        transform: translate(-60%, 15%);
    }
    .tagline-3 .tagline-text-2 {
        color: #f0f7ca;
        -webkit-transform: translate(60%, -15%);
        transform: translate(60%, -15%);
    }
    .tagline-3 p {
        padding-bottom: 20px;
        font-size: 0.9rem;
        font-weight: 400;
        color: #ffffffcc;
        -webkit-transform: translate(24%, -20%);
        transform: translate(24%, -20%);
    }
    .tagline-3 button {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .tagline-3 button a {
        font-size: 1rem;
    }
    .foot {
        padding: 50px;
        position: relative;
        width: 100%;
        height: 40vh;
        background-color: #0b3044;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .foot .pattern4 {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        -webkit-transform: scale(0.9) translateY(-10%);
        transform: scale(0.9) translateY(-10%);
    }
    .foot .copyright {
        position: absolute;
        bottom: 50px;
        font-size: 0.7rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot h3 {
        font-size: 1rem;
        font-weight: 500;
        color: #f0f7ca;
    }
    .foot .services {
        width: 20%;
    }
    .foot .services ul {
        list-style: none;
    }
    .foot .services ul li {
        padding: 10px 0;
    }
    .foot .services ul li a {
        text-decoration: none;
        font-size: 0.7rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot .company {
        width: 20%;
    }
    .foot .company ul {
        list-style: none;
    }
    .foot .company ul li {
        padding: 10px 0;
    }
    .foot .company ul li a {
        text-decoration: none;
        font-size: 0.7rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot .contact-links {
        width: 20%;
        padding: 24px 0;
    }
    .foot .contact-links ul {
        list-style: none;
    }
    .foot .contact-links ul li {
        padding: 10px 0;
    }
    .foot .contact-links ul li img {
        -webkit-transform: translate(-50%, 20%);
        transform: translate(-50%, 20%);
    }
    .foot .contact-links ul li a {
        text-decoration: none;
        font-size: 0.7rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot .get-in-touch {
        width: 30%;
    }
    .foot .get-in-touch .form-email,
    .foot .get-in-touch .form-message {
        width: 100%;
        margin: 40px 0;
        height: 30px;
    }
    .foot .get-in-touch .form-email input,
    .foot .get-in-touch .form-message input {
        width: 100%;
        height: 30px;
        font-size: 0.9rem;
        padding-top: 10px;
    }
    .foot .get-in-touch .form-email label,
    .foot .get-in-touch .form-message label {
        height: 30px;
    }
    .foot .get-in-touch .form-email label ::after,
    .foot .get-in-touch .form-message label ::after {
        bottom: -1px;
        height: 30px;
    }
    .foot .get-in-touch .form-email label h4,
    .foot .get-in-touch .form-message label h4 {
        font-size: 1rem;
    }
    .foot .get-in-touch button {
        bottom: 10%;
        font-size: 1rem;
    }
/* } */

@media screen and (max-width: 680px) {
    .landing-page .landing-page-pattern {
        position: absolute;
        height: 100%;
        top: 0%;
        left: 20%;
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .landing-page .landing-page-pattern .active {
        opacity: 0;
        -webkit-transition: all 0.5 ease;
        transition: all 0.5 ease;
    }
    .landing-page nav {
        padding: 0 25px;
        width: 100%;
        z-index: 100;
    }
    .landing-page nav ul {
        display: none;
    }
    .landing-page nav .hamburger {
        display: inline-block;
    }
    .landing-page nav img {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    .landing-page .landing-page-text {
        position: absolute;
        padding-left: 25px;
        top: 35%;
        width: 75%;
        z-index: 10;
    }
    .landing-page .landing-page-text h1 {
        font-size: 2rem;
        padding: 10px 0;
    }
    .landing-page .landing-page-text h4 {
        font-size: 0.9rem;
    }
    .landing-page .landing-page-text button {
        width: 150px;
        height: 55px;
    }
    .landing-page .landing-page-text button a {
        font-size: 0.8rem;
    }
    .tagline-1 {
        height: 20vh;
    }
    .tagline-1 h1 {
        font-size: 2.5rem;
        font-weight: 800;
        z-index: 10;
    }
    .info {
        position: relative;
        margin: 50px 0;
        width: 100%;
        height: initial;
    }
    .info .pattern1 {
        display: none;
        -webkit-transform: scale(0.75) translate(-12%, -64%);
        transform: scale(0.75) translate(-12%, -64%);
    }
    .info .pattern1 .active {
        opacity: 0;
    }
    .info .info-section {
        width: 90%;
        margin: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .info .info-section img {
        width: 337.5px;
        padding-bottom: 20px;
        border-radius: 20%;
        -webkit-transform: scale(1);
        transform: scale(1);
        z-index: 10;
    }
    .info .info-section .who-we-are {
        -webkit-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0);
    }
    .info .info-section .info-section-text {
        width: 100%;
    }
    .info .info-section .info-section-text h2 {
        margin: 10px 0;
        font-size: 1.5rem;
    }
    .info .info-section .info-section-text p {
        font-size: 0.8rem;
        padding: 10px 0;
    }
    .info .info-section .info-section-text .para-1 {
        margin: 10px 0 0px 0;
    }
    .info .info-section .info-section-text button {
        width: 150px;
        height: 55px;
    }
    .info .info-section .info-section-text button a {
        font-size: 0.8rem;
    }
    .tagline-2 {
        height: 25vh;
    }
    .tagline-2 h1 {
        /* font-size: 2.5rem; */
        font: normal normal 900 122px/80px Poppins;
        z-index: 10;
    }
    /*.tagline-2 .tagline-text-1 {
        color: #4385f8;
        -webkit-transform: translate(-20%, 15%);
        transform: translate(-20%, 15%);
    }
    .tagline-2 .tagline-text-2 {
        color: #fa7127;
        margin-top: -70px;
        -webkit-transform: translate(20%, -15%);
        transform: translate(20%, -15%);
    }*/
    .tagline-2 .pattern2 {
        display: none;
        -webkit-transform: scale(1.5) translate(17%, 49.5%);
        transform: scale(1.5) translate(17%, 49.5%);
    }
    .motive {
        margin: 50px 0;
        position: relative;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .motive .why-us {
        margin: 0 25px;
        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-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .motive .why-us .why-us-text {
        width: 100%;
    }
    .motive .why-us .why-us-text h2 {
        font-size: 1.5rem;
    }
    .motive .why-us .why-us-text p {
        font-size: 0.8rem;
    }
    .motive .why-us .why-us-text .para-1 {
        margin: 10px 0;
        width: 100%;
    }
    .motive .why-us .link-logo {
        -webkit-transform: scale(0.5) translateX(0%);
        transform: scale(0.5) translateX(0%);
    }
    .motive .project-works {
        margin: 50px 25px;
        width: 85%;
    }
    .motive .project-works h2 {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    .motive .project-works .numbers {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .motive .project-works .numbers .number h1 {
        font-size: 2rem;
    }
    .motive .project-works .numbers .number .line {
        width: 100px;
    }
    .motive .project-works .numbers .number h2 {
        font-size: 0.9rem;
        color: #0b3044;
    }
    .motive .employees-galary {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 600px;
        width: 300px;
        border-radius: 0 0 50px 0;
        margin: 0;
    }
    .motive .employees-galary .ankush {
        width: 300px;
        height: 300px;
        margin-bottom: 20px;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .motive .employees-galary .employe-info {
        margin: 0;
        height: 300px;
        padding: 10px;
        width: 100%;
    }
    .motive .employees-galary .employe-info h3 {
        font-size: 0.8rem;
        margin: 10px 0;
    }
    .motive .employees-galary .employe-info h2 {
        font-size: 1rem;
        padding: 10px 0;
    }
    .motive .employees-galary .employe-info p {
        font-size: 0.65rem;
        padding: 10px 0;
        margin: 0 0 20px 0;
    }
    .motive .employees-galary .employe-info .circles {
        right: 15%;
        bottom: 0;
        width: 15%;
    }
    .motive .employees-galary .employe-info .circles .circle {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }
    .motive .employees-galary .next-button {
        -webkit-transform: scale(0.5) translate(100%, 0%);
        transform: scale(0.5) translate(100%, 0%);
    }
    .motive .brands {
        width: 90%;
        margin: 25px;
    }
    .motive .brands h2 {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    .motive .brands .brands-logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        width: 100%;
    }
    .motive .brands .brands-logo img {
        width: 40%;
        margin: 0;
        padding: 10px 0;
    }
    .tagline-3 {
        position: relative;
        width: 100%;
        height: 40vh;
        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-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #0b3044;
    }
    .tagline-3 .pattern3 {
        display: none;
        position: absolute;
        height: 100%;
        bottom: 0;
        left: 0;
        -webkit-transform: scale(0.75) translate(-20%, -7%);
        transform: scale(0.75) translate(-20%, -7%);
    }
    .tagline-3 h1 {
        font-size: 2.5rem;
        font-weight: 800;
        z-index: 10;
    }
    .tagline-3 .tagline-text-1 {
        color: #fa7127;
        -webkit-transform: translate(-30%, 15%);
        transform: translate(-30%, 15%);
    }
    .tagline-3 .tagline-text-2 {
        color: #f0f7ca;
        -webkit-transform: translate(30%, -15%);
        transform: translate(30%, -15%);
        margin-top: -70px;
    }
    .tagline-3 p {
        padding-bottom: 20px;
        font-size: 0.6rem;
        font-weight: 400;
        color: #ffffffcc;
        -webkit-transform: translate(10%, -20%);
        transform: translate(10%, -20%);
    }
    .tagline-3 button {
        -webkit-transform: translateX(30%);
        transform: translateX(30%);
        height: 46px;
        width: 120px;
    }
    .tagline-3 button a {
        font-size: 0.8rem;
    }
    .foot {
        padding: 25px;
        position: relative;
        width: 100%;
        height: 40vh;
        background-color: #0b3044;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .foot .pattern4 {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        -webkit-transform: scale(0.8) translate(-18%, -30%);
        transform: scale(0.8) translate(-18%, -30%);
    }
    .foot .copyright {
        position: absolute;
        bottom: 25px;
        font-size: 0.5rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot h3 {
        font-size: 0.6rem;
        font-weight: 500;
        color: #f0f7ca;
    }
    .foot .services {
        width: 20%;
        z-index: 10;
    }
    .foot .services ul {
        list-style: none;
    }
    .foot .services ul li {
        padding: 5px 0;
    }
    .foot .services ul li a {
        text-decoration: none;
        font-size: 0.3rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot .company {
        width: 20%;
        z-index: 10;
    }
    .foot .company ul {
        list-style: none;
    }
    .foot .company ul li {
        padding: 5px 0;
    }
    .foot .company ul li a {
        text-decoration: none;
        font-size: 0.3rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot .contact-links {
        z-index: 10;
        width: 20%;
        padding: 24px 0;
    }
    .foot .contact-links ul {
        list-style: none;
    }
    .foot .contact-links ul li {
        padding: 5px 0;
    }
    .foot .contact-links ul li img {
        -webkit-transform: scale(0.4) translate(-50%, 100%);
        transform: scale(0.4) translate(-50%, 100%);
    }
    .foot .contact-links ul li a {
        text-decoration: none;
        font-size: 0.3rem;
        font-weight: 400;
        color: #ffffff;
    }
    .foot .get-in-touch {
        z-index: 10;
        width: 30%;
    }
    .foot .get-in-touch .form-email,
    .foot .get-in-touch .form-message {
        width: 100%;
        margin: 10px 0;
        height: 30px;
    }
    .foot .get-in-touch .form-email input,
    .foot .get-in-touch .form-message input {
        width: 100%;
        height: 15px;
        font-size: 0.4rem;
        padding-top: 5px;
    }
    .foot .get-in-touch .form-email label,
    .foot .get-in-touch .form-message label {
        height: 15px;
    }
    .foot .get-in-touch .form-email label ::after,
    .foot .get-in-touch .form-message label ::after {
        bottom: -1px;
        height: 15px;
    }
    .foot .get-in-touch .form-email label h4,
    .foot .get-in-touch .form-message label h4 {
        font-size: 0.6rem;
    }
    .foot .get-in-touch button {
        width: 75px;
        height: 40px;
        bottom: 30%;
        font-size: 0.8rem;
    }
}
.test_para{
height: auto;}
@media screen and (max-width: 1200px) and (min-width:600px) {
    p.test_para {
      font-size: 20px !important; 
      padding: 30px 0px 0px 0px;
      
    
    }
}

@media screen and (min-width: 2500px) and (max-width:3000px){
    p.test_para {
      font-size: 45px !important; 
      padding: 80px 0px 0px 0px;
      

    
    }
}

/*@media screen and (max-width: 2000px) {
    p.test_para {
      font-size: 30px !important;
      padding: 34px 0px 0px 0px;
      letter-spacing: 3px;
 
    
    }
}*/
@media screen and (max-width: 1200px) and (min-width:500px){
    .img-fluid1{
        margin-right: 100px;
    }
}
@media screen and (max-width: 1200px) and (min-width:600px){
    .slick-dots{
        margin-top: 30px;
    }
}
@media screen and (min-width: 341px) and (max-width:500px){
    .slick-dots{
        margin-top: -30px;
    }
}

    

.test_head{
    height: auto;
}
@media screen and (max-width: 1200px) and (min-width:600px){
    .test_head {
      font-size: 3px !important; 
      padding: 60px 0px 0px 0px;
    
    }
}

@media screen and (min-width: 2000px) and (max-width:3000px){
    .test_head {
      font-size: 40px !important; 

      padding: 50px 0px 0px 0px;
        
    }
}

@media screen and (min-width: 2000px) and (max-width:3000px){
    .test_name {
      font-size: 35px !important; 
      padding: 0px 0px 0px 0px;
        
    }
}
@media screen and (min-width:1900px){
    .test_name {
      font-size: 40px !important; 
      padding: 0px 0px 0px 0px;
        
    }
}
@media screen and (min-width:1900px){
    .test_head {
      font-size: 45px !important; 
      padding: 30pxpx 0px 0px 0px;
        
    }
}
@media screen and (min-width:1900px){
    .test_para {
      font-size: 3040px !important; 
      padding: 40pxpx 0px 0px 0px;
        
    }
}
.join-our-team{
    height: auto;
}

@media screen and (min-width: 341px) and (max-width:500px){
    join-our-team {
        margin-top: -80px;
        margin-left: 400px;
        
    }
}

/*Is Strength..*/

/*.train5{ 
    transform: translateX(3%) !important;
}

@media screen and (min-width:360px) and (max-width:600px){
    .train5{ 
        transform: translateX(33%);
        -webkit-transform: translate(60%,-5%);
        transform: translate(60%, -5%);}
}

@media screen and (min-width:360px) and (max-width:600px){
    .train55{ 
        -webkit-transform: translate(60%,-15%);
        transform: translate(60%, -15%);}
}
.train55{ 
    transform: translateX(35%);
}
@media screen and (max-width: 2000px) {
    p.test_head {
      font-size: 40px !important; 
      padding: 34px 0px 0px 0px;
      letter-spacing: 3px;

    }
}*/

/*# sourceMappingURL=style.css.map */