*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

nav{
    position: fixed;
    z-index: 99;
    width: 100%;
    
    background: #fff;
  }
  nav .wrapper{
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .wrapper .logo a{
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
  }
  .wrapper .nav-links{
    display: inline-flex;
  }
  .nav-links li{
    list-style: none;
  }
  .nav-links li a{
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    /* position: relative;
    color: inherit;
    text-decoration: none;
    line-height: 24px; */
  }
  a, a > span {
    position: relative;
    color: inherit;
    text-decoration: none;
    line-height: 24px;
  }
  a:before, a:after, a > span:before, a > span:after {
    content: '';
    position: absolute;
    transition: transform .5s ease;
  }
  
  .effect1 {
    padding-top: 10px;
  }
  .effect1:before {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #e60023;
    transform: scaleX(0);
  }
  .effect1:hover:before {
    transform: scaleX(1);
  }
  /* .nav-links li a:hover{
    background: #fff;
    color: #EA5670;
  } */
  /* .insideAncher {
    padding-top: 10px !important;
} */
  .nav-links .mobile-item{
    display: none;
  }
  .nav-links .drop-menu{
    position: absolute;
    background: #fff;
    width: 180px;
    line-height: 45px;
    padding-left: 0;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }
  .nav-links li:hover .drop-menu,
  .nav-links li:hover .mega-box{
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
  }
  .drop-menu li a{
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
  }
  .mega-box{
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
  }
  .mega-box .content{
    background: #fff;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
  }
  .mega-box .content .row{
    width: calc(25% - 30px);
    line-height: 45px;
  }
  .content .row img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .content .row header{
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
  }
  .content .row .mega-links{
    /* margin-left: -40px; */
    border-left: 1px solid rgba(255,255,255,0.09);
  }
  .row .mega-links li{
    padding: 0 20px;
  }
  .row .mega-links li a{
    padding: 0px;
    padding: 10px 20px;
    color: #000;
    font-size: 17px;
    /* display: block; */
  }
  .row .mega-links li a:hover{
    color: #EA5670;
  }
  .wrapper .btn{
    color: #000;
    font-size: 20px;
    cursor: pointer;
    display: none;
  }
  .wrapper .btn.close-btn{
    position: absolute;
    right: 30px;
    top: 10px;
  }
  
  @media screen and (max-width: 970px) {
    .wrapper .btn{
      display: block;
    }
    .wrapper .nav-links{
        overflow: hidden;
      position: fixed;
      height: 100vh;
      width: 100%;
      max-width: 350px;
      top: 0;
      left: -100%;
      background: #242526;
      display: block;
      padding: 50px 10px;
      line-height: 50px;
      overflow-y: auto;
      box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
      transition: all 0.3s ease;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #242526;
    }
    ::-webkit-scrollbar-thumb {
      background: #3A3B3C;
    }
    #menu-btn:checked ~ .nav-links{
      left: 0%;
    }
    #menu-btn:checked ~ .btn.menu-btn{
      display: none;
    }
    #close-btn:checked ~ .btn.menu-btn{
      display: block;
    }
    .nav-links li{
      margin: 15px 10px;
    }
    .nav-links li a{
      padding: 0 20px;
      display: block;
      font-size: 20px;
    }
   
    .nav-links .drop-menu{
      position: static;
      opacity: 1;
      top: 65px;
      visibility: visible;
      padding-left: 20px;
      width: 100%;
      max-height: 0px;
      overflow: hidden;
      box-shadow: none;
      transition: all 0.3s ease;
    }
    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box{
      max-height: 100%;
    }
    .nav-links .desktop-item{
      display: none;
    }
    .nav-links .mobile-item{
      display: block;
      color: #EA5670;
      font-size: 20px;
      font-weight: 500;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover{
      background: #3A3B3C;
    }
    .drop-menu li{
      margin: 0;
    }
    .drop-menu li a{
      border-radius: 5px;
      font-size: 18px;
    }
    .mega-box{
      position: static;
      top: 65px;
      opacity: 1;
      visibility: visible;
      padding: 0 20px;
      max-height: 0px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .mega-box .content{
      box-shadow: none;
      flex-direction: column;
      padding: 20px 20px 0 20px;
    }
    .mega-box .content .row{
      width: 100%;
      margin-bottom: 15px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2){
      border-top: 0px;
    }
    .content .row .mega-links{
      border-left: 0px;
      padding-left: 15px;
    }
    .row .mega-links li{
      margin: 0;
    }
    .content .row header{
      font-size: 19px;
    }
  }
  nav input{
    display: none;
  }
  

/* .navbar-top {
    font-size: small;
}

.navbar-top ul li a {
    display: inline-block;
    color: #444444;
    text-decoration: none;
}
nav {
    position: -webkit-sticky;
    position: sticky;
    z-index: 99;
    width: 100%;
    background: #fff;
}

nav .wrapper {
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .logo {
    color: #C00D0D;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #000;
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 15px;
    transition: all 0.3s ease;
}

.insideAncher::after {
    background-color: #fff !important;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 20px;
    left: 0;
    background-color: #C00D0D;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom center;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #2e3c50;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 16px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease-in-out;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #fff;
    padding: 25px 20px;
    height: 500px;
    overflow-y: scroll;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 16px 10px rgba(0, 0, 0, 0.15);
}

.nav-card-height {
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease-out;
    transform: translateY(-5px) scale(1.005) translateZ(0);
}

.nav-card-height:hover .overlay {
    transform: scale(4) translateZ(0);
}

.nav-card-height:hover .circle {
    border-color: #ffeeba;
    background: #ffd861;
}

.nav-card-height:hover .circle:after {
    background: #ffeeba;
}

.nav-card-height:active {
    transform: scale(1) translateZ(0);
    box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11),
        0 15px 24px var(--box-shadow-color);
}

.nav-card-height:hover {
    border: 1px solid #444444;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    color: #C00D0D;
    border-bottom: 10px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(255, 249, 34), rgba(255, 0, 128), rgba(56, 2, 155, 0));
    border-image-slice: 1;

}

.mega-box .content .row {
    line-height: 45px;
}

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
}

.content .row .mega-links {
    margin-left: -40px;
    border-radius: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .showbtn.btn {
    display: block;
}

.nav-btn {
    font-weight: 400;
    font-size: 14px !important;
}

.nav-btn:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.btn-hover:hover {
    transform: scale(1.2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.wrapper .btn {
    color: #000;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

nav input {
    display: none;
} */

/* .body-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

.body-text {
    font-size: 45px;
    font-weight: 600;
} */

.bg-Img {
    background-image: url("/assets/image/homebanner.png");
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    height: 60vh;
}
.bg-Img-contact {
    background-image: url("/assets/image/contactus.png");
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    height: 50vh;
}
.bg-Img-aboutus {
    background-image: url("/assets/image/aboutus.png");
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    height: 50vh;
}
.bg-Img-tech {
    background-image: url("/assets/image/tech.png");
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    height: 50vh;
}

.section {
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.event {
    cursor: pointer;
}

.event .card-body {
    min-height: 200px;
}

.event:hover {
    transform: scale(1.05);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.resources {
    cursor: pointer;
}

.resources:hover {
    transform: scale(1.05);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
}

/* careers software product */
.parallax-careers {
    background-image:  url("/assets/image/careers/careers.png");
    min-height: 600px;
    /* background-attachment: fixed; */
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    /* background-size: 100%; */
}
/* contactus */
.parallax-contactus {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("/assets/image/contactus.png");
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
/* custome software product */
.parallax-customsoftwareProduct {
    background-image: url("/assets/image/customsoftware/customsoftware.png");
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* software product */
.parallax-back {
    background-image:  url("/assets/image/back.png");
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.parallax-softwareProduct {
    background-image:  url("/assets/image/back.png");
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* UI/UX */
.parallax {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("/assets/image/uiux.jpg");
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

ol {
    padding-left: 20px;
}

/* ~ The Spanless List Item Styles! ~ */
ol {
    counter-reset: item;
    /* Hides default counter */
    list-style: none;
}

ol li {
    /* Non-essential list typography */
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.5;
    /* Use flex for hanging bullets */
    /* Remove 'display' for inline bullets */
    display: flex;
    /* Begin the fake counters */
}

ol li:before {
    /* Trail counter with period and a space */
    content: counter(item) ". ";
    /* Increase one for every one new item */
    counter-increment: item;
    /* Color the counter however you want! */
    color: #d81f32;
    margin-right: 14px;
    /* font-style: italic; */
}

/* about us */
.timer-section {
    min-height: 100vh;
}

.timer-section .container {
    padding-left: 15px;
    padding-right: 15px;
}

.timer-section .timer-container {
    list-style: none;
}

.timer-section .timer {
    list-style: none;
    position: relative;
    max-width: 750px;
    margin: auto;
}

.timer-section .timer::before {
    /* content: ''; */
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: #F2F2F2;
    left: 50%;
    transform: translateX(-50%);
}

.timer-section .timer .step {
    width: 50%;
    padding: 20px 15px;
    position: relative;
    background-color: #F2F2F2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .04);
}

.timer-section .timer .step:not(:first-child),
.timer-section .timer .step:not(:last-child) {
    margin: 90px 0 60px 0;
}

.timer-section .timer .step:nth-child(odd) {
    transform: translateX(100%);
    border-left: 2px solid lightblue;
    border-radius: 0 3px 3px 0;
}

.timer-section .timer .step:nth-child(even) {
    border-right: 2px solid lightsalmon;
    border-radius: 3px 0 0 3px;
}

.timer-section .timer .step>span {
    position: absolute;
    height: 26px;
    width: 25px;
    color: #333;
    background-color: #F2F2F2;
    text-align: center;
    line-height: 22px;
    border-radius: 3px;
    font-size: .8rem;
}

.timer-section .timer .step:nth-child(odd)>span {
    top: -40px;
    left: -13px;
    border: 2px solid lightblue;
}

.timer-section .timer .step:nth-child(even)>span {
    top: -40px;
    right: -13px;
    border: 2px solid lightsalmon;
}

.timer-section .timer .step h3 {
    margin-bottom: 15px;
}

.timer-section .timer .step p {
    font-weight: 300;
    font-size: .85rem;
    color: #555;
}

@media screen and (max-width: 500px) {
    .timer-section .timer .step {
        width: 100%;
        text-align: center;
        transform: translateX(0%);
        border-radius: 3px !important;
    }
    #adhanam {
        display: none;
    }

    .timer-section .timer .step:nth-child(odd) {
        transform: translateX(0%);
        border: none;
        border-top: 2px solid lightblue;
    }

    .timer-section .timer .step:nth-child(even) {
        border: none;
        border-top: 2px solid lightsalmon;
    }

    .timer-section .timer .step span {
        left: 50% !important;
        transform: translateX(-50%);
    }
    .careers-form {
        padding: 10px !important;
    }
    .parallax-careers{
        min-height: 130px !important;
    }
}

/* contact us */
input {
    outline: none;
    border: none
}

textarea {
    outline: none;
    border: none
}

textarea:focus,
input:focus {
    border-color: transparent !important
}

input:focus::-webkit-input-placeholder {
    color: transparent
}

input:focus:-moz-placeholder {
    color: transparent
}

input:focus::-moz-placeholder {
    color: transparent
}

input:focus:-ms-input-placeholder {
    color: transparent
}

textarea:focus::-webkit-input-placeholder {
    color: transparent
}

textarea:focus:-moz-placeholder {
    color: transparent
}

textarea:focus::-moz-placeholder {
    color: transparent
}

textarea:focus:-ms-input-placeholder {
    color: transparent
}

input::-webkit-input-placeholder {
    color: #adadad
}

input:-moz-placeholder {
    color: #adadad
}

input::-moz-placeholder {
    color: #adadad
}

input:-ms-input-placeholder {
    color: #adadad
}

textarea::-webkit-input-placeholder {
    color: #adadad
}

textarea:-moz-placeholder {
    color: #adadad
}

textarea::-moz-placeholder {
    color: #adadad
}

textarea:-ms-input-placeholder {
    color: #adadad
}

button {
    outline: none !important;
    border: none;
    background: 0 0
}

button:hover {
    cursor: pointer
}

iframe {
    border: none !important
}

.txt1 {
    font-family: Poppins-Regular;
    font-size: 18px;
    line-height: 1.2;
    color: #fff
}

.txt2 {
    font-family: Poppins-Regular;
    font-size: 15px;
    line-height: 1.6;
    color: #999
}

.txt3 {
    font-family: Poppins-Regular;
    font-size: 15px;
    line-height: 1.6;
    color: #00ad5f
}

.size1 {
    width: 355px;
    max-width: 100%
}

.size2 {
    width: calc(100% - 43px)
}

.container-contact100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.wrap-contact100 {
    width: 1120px;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse
}

.contact100-more {
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 30px 15px 0
}

.contact100-more::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .8)
}

.contact100-form {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 56px 55px 63px
}

.contact100-form-title {
    width: 100%;
    display: block;
    font-family: Poppins-Regular;
    font-size: 30px;
    color: #333;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 33px
}

.wrap-input100 {
    width: 100%;
    position: relative;
    border: 1px solid #e6e6e6
}

.rs1-wrap-input100,
.rs2-wrap-input100 {
    width: 50%
}

.rs2-wrap-input100 {
    border-left: none
}

.label-input100 {
    font-family: Poppins-Regular;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 55px;
    border: 1px solid #e6e6e6;
    border-bottom: none;
    padding: 10px 25px;
    margin-top: 15px;
    margin-bottom: 0
}

.input100 {
    display: block;
    width: 100%;
    background: 0 0;
    font-family: Poppins-Regular;
    font-size: 18px;
    color: #666;
    line-height: 1.2;
    padding: 0 25px
}

input.input100 {
    height: 55px
}

textarea.input100 {
    min-height: 139px;
    padding-top: 19px;
    padding-bottom: 15px
}

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #00ad5f;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3)
}

.input100:focus+.focus-input100 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.container-contact100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 23px
}

.contact100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 200px;
    height: 50px;
    border-radius: 2px;
    background: #00ad5f;
    font-family: Montserrat-Bold;
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s
}

.contact100-form-btn:hover {
    background: #333
}

@media(max-width:992px) {
    .contact100-form {
        width: 60%;
        padding: 56px 30px 63px
    }

    .contact100-more {
        width: 40%
    }
    /* .parallax-careers{
        min-height: 300px !important;
    } */
}

@media(max-width:768px) {
    .contact100-form {
        width: 100%
    }

    .contact100-more {
        width: 100%
    }
    .careers-form {
        padding: 10px !important;
    }
    /* .parallax-careers{
        min-height: 250px !important;
    } */
}

@media(max-width:576px) {
    .contact100-form {
        padding: 56px 15px 63px
    }

    .rs1-wrap-input100,
    .rs2-wrap-input100 {
        width: 100%
    }

    .rs2-wrap-input100 {
        border-left: 1px solid #e6e6e6;
        border-top: none
    }
    .careers-form {
        padding: 10px !important;
    }
    .bg-Img-contact {
        height: 130px !important;
    }
    .bg-Img-aboutus {
        height: 130px !important;
    }
    .bg-Img-tech {
        height: 130px !important;
    }
}

.validate-input {
    position: relative
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 2px;
    pointer-events: none;
    font-family: Poppins-Regular;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    -moz-transition: opacity .4s;
    transition: opacity .4s
}

.alert-validate::after {
    content: "\f12a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 8px
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1
}

@media(max-width:992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1
    }
    
}

/*Media Query*/
@media screen and (max-width: 1010px) {
    .navbar-top {
        display: none;
    }

    .wrapper .logo {
        font-size: 28px;
    }

    .wrapper .btn {
        /* color: #fff; */
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #fff;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }

    /*Custom Scroll bar*/
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3a3b3c;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    #close-btn:checked~.btn.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        padding: 10px 20px;
        display: block;
        font-size: 20px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #000;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links .mobile-item:hover {
        background: #d9d9d9;
    }

    .drop-menu li {
        margin: 0;
    }

    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-box .content {
        box-shadow: none;
        height: unset;
        overflow-y: unset;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }

    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content .row header {
        font-size: 19px;
    }
}

::-webkit-scrollbar {
    width: 0.4em;
    height: 0.6em;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #00000000;
}

::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: #0000006b;
}

.flex-left-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* .wrapper {
    display: flex;
    width: 90%;
    justify-content: space-around;
} */

.card-animation {
    height: 100vh;
    padding: 1.5rem;
    background: white;
    position: relative;
    transition: 0.4s ease-out;
}

.card-animation:hover {
    transform: translateY(20px);
    border: 5px solid rgba(0, 0, 0, 0.6);
}

.card-animation:hover:before {
    opacity: 1;
}

.card-animation:hover .info {
    opacity: 1;
    transform: translateY(0px);
}

.card-animation:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    /* border-radius: 15px; */
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: 0.5s;
    opacity: 0;
}

.card-animation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.card-animation .info {
    position: relative;
    z-index: 3;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end;
    height: 100%;
}

.card-animation .info h1 {
    margin: 0px;
    font-size: 24px;
}

.card-animation .info p {
    letter-spacing: 1px;
    font-size: 12px;
    margin-top: 8px;
    text-align: justify;
}

.card-animation .info button {
    padding: 0.6rem;
    outline: none;
    border: none;
    border-radius: 3px;
    background: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s ease;
}

.card-animation .info button:hover {
    background: dodgerblue;
    color: white;
}
.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
 }
 .sticky .active{
    color: #d81f32;
    /* background: linear-gradient(to right, #d81f32,
                    #ff6b08, #cf23cf, #eedd44);
            -webkit-text-fill-color: transparent;
            -webkit-background-clip: text; */
 }
 /* .text-danger {
    background: linear-gradient(to right, #d81f32,
                    #ff6b08, #cf23cf, #eedd44);
            -webkit-text-fill-color: transparent;
            -webkit-background-clip: text;
 } */

 /* nav */
 /* .nav-1 {
    color: #fff;
    background: #73A9AD;

 }
 .nav-2 {
    color: #fff;
    background: #7F7FD5;  


 }
 .nav-3 {
    color: #fff;
    background: #90C8AC;  
 }
 .nav-4 {
    color: #fff;
    background: #C4DFAA;
 }
 .nav-5 {
    color: #fff;
    background: #F5F0BB;
 } */
 .lato {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
 }
 .services {
    /* background-color: rgba(153,255,153,.3); */
    background-color: #eeeeee96;
    padding: 0 40px;
    
 }
 .service-border {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #9d9c9c;
    height: 100%;
 }
 .service-border-1 {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #9d9c9c;
    height: 100%;
 }
 .service-border-2 {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #9d9c9c;
    height: 100%;
 }
 .service-border-3 {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #9d9c9c;
    height: 100%;
 }
 .service-border-4 {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #9d9c9c;
    height: 100%;
 }
 .service-border-5 {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #9d9c9c;
    height: 100%;
 }
 .service-border-6 {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #9d9c9c;
    height: 100%;
 }
 .service-border-7 {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #9d9c9c;
    height: 100%;
 }
 .service-border-8 {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #9d9c9c;
    height: 100%;
 }
 .service-border-9 {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #9d9c9c;
    height: 100%;
 }
 .service-border-10 {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #9d9c9c;
    height: 100%;
 }
 .service-border-11 {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #9d9c9c;
    height: 100%;
 }
 .service-border:hover {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 5px solid #ff7777;
    height: 100%;
 }
 .service-border-1:hover {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 5px solid #D8CCA3;
    height: 100%;
 }
 
 .service-border-2:hover {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 5px solid #6CC4A1;
    height: 100%;
 }
 .service-border-3:hover {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 5px solid #A8A4CE;
    height: 100%;
 }
 .service-border-4:hover {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 5px solid #4CACBC;
    height: 100%;
 }
 .service-border-5:hover {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 5px solid #DAE2B6;
    height: 100%;
 }
 .service-border-6:hover {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 5px solid #18978F;
    height: 100%;
 }
 .service-border-7:hover {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 5px solid #54BAB9;
    height: 100%;
 }
 .service-border-8:hover {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 5px solid #1A4D2E;
    height: 100%;
 }
 .service-border-9:hover {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 5px solid #DEBA9D;
    height: 100%;
 }
 .service-border-10:hover {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 5px solid #9E7777;
    height: 100%;
 }
 .service-border-11:hover {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 5px solid #BFA2DB;
    height: 100%;
 }
 .services-body {
    background-color: rgba(136,136,136,.05);
    border-left: 1px solid salmon;
    /* padding: 5px 0; */
 }
 .heading-service {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
 }
 .para-service {
    font-size: 16px;
 }
 .mt-7 {
    margin-top: 50px;
 }
 .mb-7 {
    margin-bottom: 70px;
 }
 .logo-btn-color {
    background-color: #ff7777;
    border: none;
    color: #fff;
 }
 .text-justify{
    text-align: justify;
 }
 /* @keyframes wave {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(90deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

#wave {
    height: 100%;
    overflow: hidden
}

#wave:before {
    content: '';
    overflow: hidden;
    position: absolute;
    bottom: 12%;
    left: -250vw;
    width: 600vw;
    height: 600vw;
    background: rgba(0, 0, 0, .375);
    border-radius: 48% 52% 52% 48% / 48% 52% 48% 52%;
    animation: wave 9s ease-in-out infinite;
    animation-delay: -3s
}

#wave:after {
    content: '';
    overflow: hidden;
    position: absolute;
    bottom: 12%;
    left: -250vw;
    width: 600vw;
    height: 600vw;
    background: rgba(0, 0, 0, .375);
    border-radius: 48% 52% 52% 48% / 48% 52% 48% 52%;
    animation: wave 9s linear infinite
} */
.wave-container{
    position: relative;
}
.wave {
    background: url(../assets/image/navbar/wave.svg) repeat-x; 
    position: absolute;
    bottom: 0px;
    /* padding: 25px 20px; */
    width: 6400px;
    height: 100px;
    animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
  }
  
  .wave:nth-of-type(2) {
    top: -175px;
    animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
  }
  
  @keyframes wave {
    0% {
      margin-left: 0;
    }
    100% {
      margin-left: -1600px;
    }
  }
  
  @keyframes swell {
    0%, 100% {
      transform: translate3d(0,-25px,0);
    }
    50% {
      transform: translate3d(0,5px,0);
    }
  }
  .footer {
    background-color: #3e4551; 
    font-size: 10px; 
    font-weight: none;
  }
  .careers-form {
    padding: 50px 300px;
  }
  .service-header {
    font-size: 40px;
  }
  .csp-bg {
    background-image: url('../assets/image/bg-img.png');
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: right bottom;
    background-size: 600px;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo Thambi 2', cursive !important;
  }
  .techCard{
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
      transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
  padding: 8px 70px 8px 8px;
  cursor: pointer;
}

.techCard:hover{
    transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  transform: scale(1.2);
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  z-index: 1000;
}

.techCard h3{
  font-weight: 600;
}
.techCard p{
  font-size: 12px;
}

.techCard img{
  position: absolute;
  top: 20px;
  right: 15px;
  max-height: 120px;
}

.reactNative{
  background-image: url('/assets/image/technologies/reactNative.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.swift{
  background-image: url('/assets/image/technologies/swift.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.objectiveC{
  background-image: url('/assets/image/technologies/objective-c.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.ionic{
  background-image: url('/assets/image/technologies/ionic.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.java{
  background-image: url('/assets/image/technologies/java.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.flutter{
  background-image: url('/assets/image/technologies/flutter.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.javaScript{
  background-image: url('/assets/image/technologies/javascript.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.react{
  background-image: url('/assets/image/technologies/react.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.angular{
  background-image: url('/assets/image/technologies/angular.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.vue{
  background-image: url('/assets/image/technologies/vue.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.redux{
  background-image: url('/assets/image/technologies/redux.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.python{
  background-image: url('/assets/image/technologies/python.png');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.node{
  background-image: url('/assets/image/technologies/node.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.express{
  background-image: url('/assets/image/technologies/express.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.django{
  background-image: url('/assets/image/technologies/django.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.spring{
  background-image: url('/assets/image/technologies/spring.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.ruby{
  background-image: url('/assets/image/technologies/ruby.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.gitLab{
  background-image: url('/assets/image/technologies/Gitlab.svg');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.jenkins{
  background-image: url('/assets/image/technologies/jenkins.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.nginx{
  background-image: url('/assets/image/technologies/nginx.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.aws{
  background-image: url('/assets/image/technologies/aws.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.googleCloud{
  background-image: url('/assets/image/technologies/googleCloud.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.azure{
  background-image: url('/assets/image/technologies/azure.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.docker{
  background-image: url('/assets/image/technologies/docker.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.kubernetes{
  background-image: url('/assets/image/technologies/kubernetes.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.digitalOcean{
  background-image: url('/assets/image/technologies/digitalOcean.webp');
      background-repeat: no-repeat;
    background-position: right;
    background-size: 70px;
    min-height: 125px;
}
.backgroundTwo {
background-color: #eeeeee96;
}
@media(max-width: 990px){
    .techCard{
      margin: 20px;
    }
  } 
  .baloo {
    font-family: 'Baloo Thambi 2', cursive;
  }