@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
    --primaryColor: #db4040;
    --secondryColor: #000000;
    --baseFont: 'Work Sans', sans-serif;
    --textColor: #000000;
    --bgColor: #ededed;
}
html, body {
    overflow-x: hidden;
}
body {
    line-height: 1.6;
    color: var(--textColor);
    font-family: var(--baseFont);
    font-weight: 500;
    letter-spacing: 0.6px;
    background-color: #f5f5f5;
}
.btn:focus, button:focus {
    box-shadow: none;
}
img {
    max-width: 100%;
}
li {
    list-style-type: none;
}
ul, ol {
    padding: 0;
    margin: 0;
}
a, a:hover {
    text-decoration: none;
    color: inherit;
    transition: all 300ms ease-in-out;
}
.btnStyle {
    border-radius: 5px;
    font-family: var(--baseFont);
    font-size: 16px;
    line-height: 1;
    padding: 20px 35px;
    transition: all 300ms ease-in-out;
    font-weight: 600;
}
.secondryBtn {
    background-color: #fff;
    color: var(--primaryColor);
}
.secondryBtn:hover {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}
.primaryBtn {
    background-color: var(--primaryColor);
    color: #fff;
}
.primaryBtn:hover {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.modal .modal-footer, .modal .modal-header {
    border: none;
  }
  .modal .modal-content {
    background: #fd4f4e;
    padding: 10px 30px;
  }
  .modal .modal-dialog {
    max-width: 550px;
  }
  .modal .modal-title {
    color: #fff;
    font-size: 30px;
    font-family: var(--proximaBold);
  }
  .modal-header .close span {
    filter: invert(1) brightness(4);
    font-size: 36px;
  }
  .emailCol .btnStyle {
    border-radius: 100px;
    min-height: 55px;
    font-size: 20px;
    width: 200px;
    padding: 10px;
    font-weight: bold;
  }
  .emailCol .btnStyle:focus {
    box-shadow: none;
  }
  .emailCol .form-control {
    min-height: 60px;
    border-radius: 12px;
    font-size: 20px;
    color: var(--textColor);
    padding: 10px 180px 10px 20px;
    border: none;
  }
  .form-control::-moz-placeholder {
    color: #999999;
  }
  .emailCol .form-control:focus {
    box-shadow: none;
  }
  .formSec .form-control.is-invalid, .formSec .was-validated .form-control:invalid, .form-control.is-valid, .formSec .was-validated .form-control:valid {
    background-image: none;
  }
  .formSec input.form-control.quiz-control.valid{
      background-image: none;
      background-color: #e5505f;
      border: 1px solid #ed0000;
  }
  .formSec .form-control.is-invalid, .formSec .was-validated .form-control:invalid {
    background-color: #e5505f;
    border: 1px solid #ed0000;
  }
  .was-validated textarea:required::placeholder, .was-validated input:required::placeholder {
    color: #fff;
  }
  button.close {
      padding: 0;
      background-color: transparent;
      border: 0;
  }
  .modal-header .close {
      position: absolute;
      top: 3px;
      right: 13px;
  }
  .formCol .form-control {
      border: none;
      font-size: 16px;
      padding: 14px 15px;
      border-radius: 20px;
      line-height: 1;
      margin-bottom: 25px;
      color: var(--textColor);
  }
  
  .submitBtn .btnStyle.btn {
    background-color: #172446;
      color: #fff;
      font-family: var(--proximaRegular);
      font-size: 18px;
      line-height: 1;
      padding: 14px 35px;
      border: none;
      border-radius: 50px;
      transition: all 300ms ease-in-out;
      -webkit-transition: all 300ms ease-in-out;
      -ms-transition: all 300ms ease-in-out;
  }
/** title style **/
.titleCol h1 {
    font-weight: 700;
    font-size: 68px;
    letter-spacing: 6px;
    line-height: 1.2;
}
.titleCol h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1.2;
    color: var(--primaryColor);
}
/** header start **/
.headerSection {
    background-color: var(--primaryColor);
    padding: 20px 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    transition: all 400ms ease-in-out 0s;
}
.topBar ul {
    text-align: right;
}
.topBar li {
    display: inline-block;
    position: relative;
}
.topBar span.callIcon {
    padding-right: 10px;
}
li.tbContent a {
    color: #fff;
    font-size: 16px;
}
.tbContent .callIcon img {
    height: 20px;
    width: 20px;
    animation-name: callanimation;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: all 400ms ease-in-out;
    animation-timing-function: ease-in-out;
}
.logo img {
    width: 170px;
}
.listCol li img {
    position: absolute;
    left: 0;
    top: 8px;
}
.whatsappIcon {
    padding-left: 25px;
}
.whatsappIcon img {
    width: 35px;
    animation-name: scaleup;
    animation-duration: 1.5s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: all 400ms ease-in-out;
    animation-timing-function: ease-in-out;
}
@keyframes scaleup {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
.headerBtn {
    display: flex;
    align-items: center;
}
.tbFlag img {
    height: 30px;
    width: 30px;
}
.topBar li+li {
    padding-left: 40px;
}

.topBar li+li:before {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    background: #df6868;
    width: 2px;
    content: '';
}
.addHeader .logo img {
    width: 170px;
    transition: all 400ms ease-in-out 0s;
}
.addHeader.headerSection {
    padding: 10px 0;
}
.addHeader .headerBtn .btnStyle {
    padding: 15px 30px;
}
/** header end **/
/** banner start **/
.sectionSpace {
    padding: 80px 0;
}
.bannerSection {
    background-color: var(--primaryColor);
    position: relative;
    padding-top: 160px;
}
.bannerSection::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: -220px;
    background-image: url('../assets/images/banner-shape.webp');
    background-size: cover;
    background-repeat: no-repeat;
    height: 220px;
}
.bannerContent p {
    font-size: 18px;
    padding-right: 150px;
    margin: 12px 0 30px;
    line-height: 1.3;
}

/** banner end **/
/** mobile solution and services start **/
.mobileSolutionSection {
    padding: 280px 0 70px;

}
.mServiceCol h3 {
    color: var(--primaryColor);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 30px;
}
.mobileDevelopService {
    background-color: var(--bgColor);
}
.secPadding {
    padding: 50px 0;
}
.mdWidth {
    max-width: 890px;
    margin: 0 auto 40px;
}
.mServiceCol p {
    line-height: 1.2;
}
/** mobile solution and services end **/
/** app process slider start **/
.sliderCardStyle h5 {
    font-weight: 700;
    color: var(--primaryColor);
    margin: 20px 0 10px;
    font-size: 24px;
}
.sliderCardStyle {
    text-align: center;
}
.sliderCardStyle .imgCard {
    background: #f0f0f0;
    padding: 80px 0;
}
.sliderCardStyle .imgCard img {
    height: 140px;
    object-fit: contain;
}
.appProcessSlider .swiper-pagination {
    bottom: -20px;
}
.swiper-button-prev, .swiper-button-next {
    background-color: #f0f0f0;
    border-radius: 50%;
    height: 90px;
    width: 90px;
    border: 10px solid #e2e2e2;
    color: #000;
}
.appProcessSection .sliderCol {
    position: relative;
}
.swiper.appProcessSlider {
    position: initial;
}
.appProcessSlider .swiper-button-prev {
    left: -110px;
}
.appProcessSlider .swiper-button-next {
    right: -110px;
}
.appProcessSlider .swiper-button-disabled {
    border: none;
    opacity: 1;
    background: transparent;
}
.appProcessSlider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primaryColor);
    height: 12px;
    width: 12px;
}
.appProcessSlider .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
}
/** app process slider end **/
/** talk Expert start **/
.talkExpertSection {
    position: relative;
    background-image: url('../assets/images/talk-expert-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 120px 0;
}
.talkExpertSection::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);  
}
.talkExpertSection .contentCol h3 {
    font-size: 30px;
    padding: 0 100px;
    margin-bottom: 40px;
    font-weight: 700;
}
/** talk Expert end **/
/** our sector start **/
.ourSectorSection .imgCol {
    margin-left: -20px;
    position: relative;
    bottom: -15px;
}
.listCol li {
    font-size: 20px;
    margin-top: 10px;
    position: relative;
    padding-left: 30px;
}
.listCol span.checkIcon {
    position: absolute;
    left: 0;
    top: 0;
}
/** our sector end **/
/** tech expertise start **/
.techExpertiseSection {
    background-color: var(--primaryColor);
    padding: 130px 0;
    position: relative;
}
.techExpertiseSection::before {
    position: absolute;
    content: '';
    right: -19%;
    top: 0;
    bottom: 0;
    background-image: url('../assets/images/tech-expertise-bg-shape.webp');
    background-repeat: no-repeat;
    background-position: right center;
    width: 100%;
}
.techExpertiseSection .titleCol h2 {
    font-size: 48px;
    margin-bottom: 15px;
}
.techExpertiseSection .titleCol p {
    font-size: 24px;
    margin-bottom: 0;
    letter-spacing: 1px;
}
.techExpertiseSection .imgCol img {
    border-radius: 50%;
    width: 450px;
    height: 450px;
    object-fit: cover;
    border: 7px solid #444444;
    padding: 20px;
}
.techExpertiseSection .imgCol {
    text-align: right;
    position: relative;
}
/** tech expertise end **/
/** why hire start **/
.whyHireSection .contentCol h5 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primaryColor);
    margin-bottom: 13px;
}
/** why hire end **/
/** faq start **/
.faqSection {
    background-color: #ececec;
}
.faqSection button.accordion-button {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    background: #ececec;
    box-shadow: none;
    border-bottom: 1px solid #000;
    border-bottom-left-radius: 0!important;
    border-bottom-right-radius: 0!important;
}
.faqSection .accordion-body {
    padding: 20px 50px 20px 20px;
    font-size: 20px;
    background: #fff;
    border-radius: 10px;
}
.faqSection .accordion-collapse {
    margin: 20px 0;
}
.faqSection .accordion-item {
    background-color: transparent;
    border: none;
}
.faqSection .accordion-button:not(.collapsed)::after {
    filter: grayscale(1) brightness(0);
}
.faqSection .accordion {
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 20px;
}
/** footer start **/
.footerSection {
    background-color: var(--primaryColor);
    padding : 35px 0;
}
/** footer end **/





@media(min-width: 1200px) {
    .container {
        max-width: 1160px;
    }
}
@media(max-width:1440px) {
   
    .addHeader .logo img {
        width: 150px;
    }
    .mobileSolutionSection {
        padding: 240px 0 70px;
    }
    .titleCol h1 {
        font-size: 62px;
    }
    .bannerSection::before {
        bottom: -170px;
        height: 170px;
    }
    .appProcessSlider .swiper-button-next:after, .appProcessSlider .swiper-button-prev:after {
        font-size: 40px;
    }
    .swiper-button-prev, .swiper-button-next {
        height: 75px;
        width: 75px;
        border: 8px solid #e2e2e2;
    }
    .techExpertiseSection::before {
        right: -27%;
    }
    .techExpertiseSection, .talkExpertSection {
        padding: 90px 0;
    }
}
@media(max-width:1340px) {
    .appProcessSlider .swiper-button-next {
        right: -80px;
    }
    .appProcessSlider .swiper-button-prev {
        left: -80px;
    }
}
@media(max-width:1299px) {
    .titleCol h1 {
        font-size: 58px;
    }
    .btnStyle {
        padding: 18px 30px;
    }
    .titleCol h2 {
        font-size: 35px;
    }
    .mServiceCol h3 {
        font-size: 28px;
    }
    .sliderCardStyle h5 {
        font-size: 22px;
    }
    .techExpertiseSection .titleCol h2 {
        font-size: 45px;
        margin-bottom: 10px;
    }
    .appProcessSlider .swiper-button-next:after, .appProcessSlider .swiper-button-prev:after {
        font-size: 30px;
    }
    .swiper-button-prev, .swiper-button-next {
        height: 60px;
        width: 60px;
        border: 7px solid #e2e2e2;
    }
    .appProcessSlider .swiper-button-next {
        right: -30px;
    }
    .appProcessSlider .swiper-button-prev {
        left: -30px;
    }
    .listCol li {
        font-size: 18px;
        margin-top: 8px;
    }
    .sectionSpace {
        padding: 60px 0;
    }
    .talkExpertSection .contentCol h3 {
        padding: 0 30px;
        margin-bottom: 30px;
    }
    .techExpertiseSection, .talkExpertSection {
        padding: 80px 0;
    }
    .whyHireSection .contentCol p {
        font-size: 15px;
    }
    .mobileSolutionSection {
        padding: 220px 0 50px;
    }
}
@media(max-width:1199px) {
    .logo img {
        width: 150px;
    }
    .headerBtn .btnStyle {
        padding: 15px 25px;
    }
    .addHeader .logo img {
        width: 130px;
    }
    .addHeader .headerBtn .btnStyle {
        padding: 13px 22px;
    }
    .titleCol h1 {
        font-size: 55px;
    }
    .bannerSection {
        padding-top: 140px
    }
    .bannerSection::before {
        bottom: -140px;
        height: 140px;
    }
    .titleCol h2 {
        font-size: 32px;
    }
    .mobileSolutionSection {
        padding: 190px 0 40px;
    }
    .bannerContent p {
        padding-right: 30px;
    }
    .techExpertiseSection .titleCol p {
        font-size: 20px;
    }
    .techExpertiseSection .titleCol h2 {
        font-size: 40px;
    }
    .techExpertiseSection, .talkExpertSection {
        padding: 60px 0;
    }
    .techExpertiseSection::before {
        right: -33%;
    }
    .whyHireSection .contentCol h5 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .faqSection .accordion-body, .faqSection button.accordion-button {
        font-size: 18px;
    }
    .footerSection {
        padding: 25px 0;
    }
    .talkExpertSection .contentCol h3 {
        font-size: 28px;
    }
    .btnStyle {
        padding: 15px 30px;
    }
    .techExpertiseSection .imgCol img {
        width: 400px;
        height: 400px;
    }
}
@media(max-width:991px) {
    .ourSectorSection .imgCol {
        margin-left: 0px;
        bottom: 0px;
    }
    .bannerImgCol {
        text-align: center;
    }
    .imgCol, .techExpertiseSection .imgCol {
        text-align: center;
    }
    .mServiceCol h3 {
        font-size: 25px;
    }
    .talkExpertSection .contentCol h3 {
        font-size: 25px;
        padding: 0;
    }
    .techExpertiseSection::before {
        background-position: top center;
    }
}
@media(max-width:767px) {
    .swiper-button-prev, .swiper-button-next {
        height: 50px;
        width: 50px;
        border: 5px solid #e2e2e2;
    }
    .appProcessSlider .swiper-button-next:after, .appProcessSlider .swiper-button-prev:after {
        font-size: 25px;
    }
    .appProcessSlider .swiper-button-next {
        right: -10px;
    }
    .appProcessSlider .swiper-button-prev {
        left: -10px;
    }
    .headerBtn .btnStyle {
        padding: 12px 20px;
    }
    .logo img {
        width: 130px;
    }
    .addHeader .logo img {
        width: 110px;
    }
    .addHeader .headerBtn .btnStyle {
        padding: 10px 17px;
        font-size: 15px;
    }
    .titleCol h1 {
        font-size: 45px;
    }
    .titleCol h2 {
        font-size: 28px;
    }
    .mServiceCol h3 {
        font-size: 22px;
    }
    body {
        font-size: 15px;
    }
    .sectionSpace {
        padding: 50px 0;
    }
    .listCol li {
        font-size: 17px;
    }
    .techExpertiseSection .titleCol h2 {
        font-size: 35px;
    }
    .techExpertiseSection .titleCol p {
        font-size: 18px;
    }
    .faqSection .accordion-body {
        padding: 20px 20px 20px 20px;
    }
    .footerSection {
        padding: 20px 0;
    }
}
@media(max-width:480px) {
    .faqSection .accordion-body, .faqSection button.accordion-button {
        font-size: 16px;
    }
    .logo img {
        width: 110px;
    }
    .headerBtn .btnStyle {
        padding: 10px 17px;
        font-size: 14px;
    }
    .techExpertiseSection .imgCol img {
        width: 340px;
        height: 340px;
        border: 5px solid #444444;
        padding: 15px;
    }
    .addHeader .headerBtn .btnStyle {
        font-size: 13px;
        padding: 8px 15px;
    }
    .addHeader .logo img {
        width: 90px;
    }
    .techExpertiseSection .titleCol h2 {
        font-size: 30px;
    }
    .techExpertiseSection .titleCol p {
        font-size: 16px;
    }
    .talkExpertSection .contentCol h3 {
        font-size: 22px;
    }
    .btnStyle {
        padding: 12px 25px;
    }
    .techExpertiseSection, .talkExpertSection {
        padding: 50px 0;
    }
    .titleCol h2 {
        font-size: 25px;
    }
    .titleCol h1 {
        font-size: 38px;
        letter-spacing: 4px;
    }
    .bannerContent p {
        padding-right: 0px;
    }
}
@media(max-width: 375px) {
    .titleCol h1 {
        font-size: 32px;
        letter-spacing: 3px;
    }
    .bannerContent p {
        font-size: 16px;
    }
    .btnStyle {
        padding: 12px 25px;
        font-size: 14px;
    }
    body, .whyHireSection .contentCol p{
        font-size: 14px;
    }
    .bannerSection::before {
        bottom: -70px;
        height: 70px;
    }
    .bannerSection {
        padding-top: 110px;
    }
    .logo img {
        width: 90px;
    }
    .addHeader .logo img {
        width: 80px;
    }
    .headerBtn .btnStyle {
        padding: 9px 15px;
        font-size: 13px;
    }
    .addHeader .headerBtn .btnStyle {
        font-size: 12px;
        padding: 8px 12px;
    }
    .mobileSolutionSection {
        padding: 90px 0 30px;
    }
    .secPadding {
        padding: 30px 0;
    }
    .titleCol h2 {
        font-size: 22px;
        letter-spacing: 1.5px;
    }
    .mServiceCol h3 {
        font-size: 20px;
    }
    .sectionSpace {
        padding: 40px 0;
    }
    .sliderCardStyle h5, .whyHireSection .contentCol h5 {
        font-size: 20px;
    }
    .talkExpertSection .contentCol h3 {
        font-size: 19px;
        margin-bottom: 20px;
    }
    .listCol li {
        font-size: 16px;
    }
    .techExpertiseSection .imgCol img {
        width: 260px;
        height: 260px;
    }
    .techExpertiseSection .titleCol h2 {
        font-size: 25px;
    }
    .techExpertiseSection .titleCol p {
        font-size: 15px;
    }
    .techExpertiseSection, .talkExpertSection {
        padding: 40px 0;
    }
    .faqSection .accordion-body, .faqSection button.accordion-button {
        font-size: 14px;
    }
}