
@font-face {
    font-family: 'CabinetGrotesk';
    src: url('fonts/CabinetGrotesk-Light.woff2') format('woff2'),
         url('fonts/CabinetGrotesk-Light.woff') format('woff'),
         url('fonts/CabinetGrotesk-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: 'CabinetGrotesk';
    src: url('fonts/CabinetGrotesk-Regular.woff2') format('woff2'),
         url('fonts/CabinetGrotesk-Regular.woff') format('woff'),
         url('fonts/CabinetGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: 'CabinetGrotesk';
    src: url('fonts/CabinetGrotesk-Medium.woff2') format('woff2'),
         url('fonts/CabinetGrotesk-Medium.woff') format('woff'),
         url('fonts/CabinetGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: 'CabinetGrotesk';
    src: url('fonts/CabinetGrotesk-Bold.woff2') format('woff2'),
         url('fonts/CabinetGrotesk-Bold.woff') format('woff'),
         url('fonts/CabinetGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: 'CabinetGrotesk';
    src: url('fonts/CabinetGrotesk-Extrabold.woff2') format('woff2'),
         url('fonts/CabinetGrotesk-Extrabold.woff') format('woff'),
         url('fonts/CabinetGrotesk-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
    font-style: normal;
  }
*{
    padding: 0;
    margin: 0;
}

  body{
    font-family: 'CabinetGrotesk',sans-serif;
    font-weight: 400;
  }

  .container{
    max-width: 1000px;
  }


  .header-landing{
    padding-top: 2rem;
  }
  .container-fluid{
    max-width: 1700px;
  }

  .header-landing .logo-rts img{
    max-width: 140px;
  }
  .header-landing   .rating{
    width: 130px;
    height: 26px;
    background: url('../img/landing/clutch-rating.jpg');
    text-indent: -9999px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .inner-content-banner{
      text-align: center;
      max-width: 770px;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 80px;
    }
    .inner-content-banner .cnt{
        background-color: #ecf9f9;
        border-radius: 20px;
        font-size: 11px;
        color: #7994ac;
        padding: 4px 12px 4px 4px;
        display: flex
        ;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        margin-bottom: 0;
        font-weight: 500;
    }
    .inner-content-banner .cnt span{
      border-radius: 20px;
      width: 18px;
      height: 18px;
      overflow: hidden;
      display: flex
  ;
      align-items: center;
      justify-content: center;
    }
    .inner-content-banner h1{
        font-family: 'CabinetGrotesk',sans-serif;
        font-weight: 400;
        font-size: 45px;
        color: #272a3c;
        text-align: center;
        margin-top: 12px;
        font-size: 74px;
        line-height: 100%;
    }
    .inner-content-banner p.tx{
        color: #000;
        padding: 12px;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 12px;
        font-size: 17px;
        line-height: 1.9;
        margin-top: 12px;
        margin-bottom: 24px;
        font-family: 'CabinetGrotesk', sans-serif;
    }
    .inner-content-banner p.tx strong{
        font-weight: 700;
    }

    .btn.btn-new{
        display: inline-flex
        ;
    justify-content: space-between;
    align-items: center;
    border: none;
    background-color: #ff4539;
    color: #000;
    padding: 12px;
    font-size: 24px;
    font-weight: 800;
    font-family: 'CabinetGrotesk';
    cursor: pointer;
    border-radius: 90px;
    position: relative;
    height: 64px;
    width: 262px;
    text-align: center;
    }
    .btn.btn-new span.tx{
        flex: 1;
        text-align: center;
    }
    .btn.btn-new span.ic{
        background-color: #000;
        height: 40px;
        width: 40px;
        border-radius: 50px;
        display: flex
    ;
        align-items: center;
        justify-content: center;
        transition: transform .3s;
    }
    .btn.btn-new:hover span.ic{
        transform: rotate(45deg);
    }

    .grid-service{
        width: 90%;
        margin: 0 auto;
        display: grid
;
grid-template-columns: 1fr;
gap: 32px;
}
.grid-service .single-service{
    position: relative;
    color: #3d415f;
    text-decoration: unset;
    font-weight: 500;
}
.grid-service .single-service .inners{
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}
.grid-service .single-service .inners .bg{
    transition: all .3s;
    aspect-ratio: 432 / 536;
    background-size: cover;
}
.grid-service .single-service:hover .inners .bg{
    transform: scale(1.05);
}
.grid-service .single-service .texts{
    margin-top: 16px;
    line-height: 1.5;
    color: #3d415f;
    text-decoration: unset;
}
.grid-service .single-service .texts b{
    font-weight: 800;
}
    @media (min-width: 768px) {
        .grid-service {
            grid-template-columns: 1fr 1fr;
            max-width: 1000px;
            column-gap: 10%;
            row-gap: 5%;
            margin-bottom: 200px;
        }
        .grid-service .single-service:nth-child(2n) {
            transform: translateY(100px);
        }
    }

    
  .get-touch-form{
    padding-top:40px;
  }
  .left-content-touch h5{
    color: #ff4539;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .left-content-touch h3{
    font-size: 30px;
    color: #242323;
    font-weight: 800;
    border-bottom: 1px solid #efe4dd;
    padding-bottom: 8px;
    margin-bottom: 24px;
    line-height: 1.3;
    
  }
  .left-content-touch h4{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 8px;
  }
    .left-content-touch p{
      margin-bottom: 24px;
      line-height: 1.4;
      opacity: .8;
      color: #000;
    }
  .right-form-wrap{
    background-color: #dbff9e;
    border-radius: 30px;
    padding: 40px 32px;
    margin-top: -10px;
  }
  .right-form-wrap h5{
    color: #ff4539;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .right-form-wrap h3{
    font-size: 30px;
    color: #1d4c43;
    font-weight: 800;
    padding-bottom: 8px;
    margin-bottom: 24px;
    line-height: 1.3;
  }
  .right-form-wrap textarea,
  .right-form-wrap input{
    width: 100%;
    background: transparent !important;
    outline: 0;
    box-shadow: unset !important;
    margin-bottom: 16px;
    padding: 0;
    padding-bottom: 8px;
    border: none;
    border-bottom: 1.5px solid #1d4c43;
    outline: none;
    font-size: 14px;
    border-radius: 0;
  }
  .help-block.with-errors{
    color: red;
  }
  .right-form-wrap .btn{
    width: 100%;
    background-color: #1d4c43;
    border-radius: 50px;
    border: none;
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    padding: 16px;
  }
    .right-form-wrap .user-img{
      font-size: 12px;
      margin-top: 12px;
      text-align: center;
      display: flex
      ;
      align-items: center;
      justify-content: center;
    }
    .right-form-wrap .user-img img{
      width: 32px;
      margin-right: 8px
    }

    .divider-gap{
      padding-top: 150px;
    }
  

.testimonial-wraps    {
      transform: translateY(66.4368px);
    }
.iinner-container{
  z-index: 1;
  padding: 48px 15px;
  color: #9a92c3;
  position: relative;
  background-color:#0b042d;
}
.iinner-container:after{
  content: "";
  display: block;
  position: absolute;
  top: calc(-1* 150px + 1px);
  height: 150px;
  
  background: inherit;
  width: 150px;
  left: 0;
  transform: scale(1.5) translate(31.5%, 31.9%) rotate(45deg);
  border-radius: 20px;
}
.iinner-container:before{
  content: "";
  display: block;
  position: absolute;
  top: calc(-1* 150px + 1px);
  height: 150px;
  background-color: inherit;
  left: 150px;
  width: calc(100% - 150px);
}
  .iinner-container .container{
    margin-top: calc(-1* 120px);
    position: relative;
    z-index: 10;
    padding-bottom: 150px;
  }

  .quotes-wrap-tt figure{
    padding: 50px;
    max-width: 900px;
  }
  .quotes-wrap-tt blockquote{
    font-size: 32px;
    color: #fff;
    margin-bottom: 16px;
    font-size: 54px;
    font-weight: 700;
    line-height: 100%;
  }
  .quotes-wrap-tt figcaption{
    font-size: 14px;
  }
  .partner-images{
    display: flex
    ;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
        align-items: center;
        
        flex-direction: row;
        margin-top: 24px;
        margin-bottom: 24px;
        gap: 54px;
  }
  .partner-images .text{
    font-size: 14px;
  }
  .partner-images img{
    max-width: 150px;
    max-height: 50px;
    object-fit: contain;
  }

  .bottom-txt-wraps{
    transform: translateY(100px);
  }

  .iinner2-container{
    background-color: #f7fbf3;
    margin-top:0;
    z-index: 1;
    padding: 48px 15px;
    color: #9a92c3;
    position: relative;
  }

  .iinner2-container:before{
    content: "";
    display: block;
    position: absolute;
    top: calc(-1* 150px + 1px);
    height: 150px;
    background-color: inherit;
    left: 150px;
    width: calc(100% - 150px);
  }
  .iinner2-container:after{
    content: "";
    display: block;
    position: absolute;
    top: calc(-1* 150px + 1px);
    height: 150px;
    
    background: inherit;
    width: 150px;
    left: 0;
    transform: scale(1.5) translate(31.5%, 31.9%) rotate(45deg);
    border-radius: 20px;
  }

  .iinner2-container .container{
    margin-top: -120px;
    position: relative;
    z-index: 1;
  }

  .left-content-btm{
    max-width: 325px;
  }
  .left-content-btm h5{
    margin-bottom: 6px;
    font-size: 14px;
  }
  .left-content-btm h3{
    font-size: 34px;
    margin-bottom: 24px;
    font-weight: 800;
    color: #0b042d;
    line-height: 40px;
  }
  .left-content-btm p{
    font-size: 14px;
    color: #0b042d;
    line-height: 22px;
    margin-bottom: 24px;
    font-weight: 500;
  }
    .left-content-btm .bx{
      height: 120px;
      background-color: #29ccaa;
      width: 100%;
      display: flex
      ;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly;
      margin-bottom: 18px;
      border-radius: 5px;
      padding-top: 8px;
      padding-bottom: 8px;
      text-align: center;
      
    }
    .left-content-btm .bx p{
      color: #fff;
      font-weight: 700;
      line-height: 22px;
      font-size: 14px;
      margin-bottom: 0;
    }
      .left-content-btm .bx .btn{
        height: 42px;
        border-radius: 65px;
    background-color: #0b042d;
    border: 1px solid #0b042d;
    width: 260px;
    display: flex
    ;
    justify-content: center;
    align-items: center;
    transition: all .4s;
    font-size: 13px;
    color: #fff;
    font-weight: 700;
  }
  .left-content-btm .bx .btn span{
    height: 6px;
    width: 6px;
    background-color: #29ccaa;
    border-radius: 40px;
    margin-right: 10px;
    box-shadow: 0 0 6px #29ccaa;
    animation: ourTools-module--flash--2_c3m .7s infinite alternate;
  }
  @keyframes  ourTools-module--flash--2_c3m {
    0% {
      box-shadow: 0 0 12px 4px #29ccaa;
      opacity: .4;
    }
    100% {
      box-shadow: 0 0 20px 4px #29ccaa;
      opacity: 1;
    }
    
  }

  .left-content-btm .got-to{
    font-weight: 700;
    font-size: 13px;
    text-decoration: underline;
    color: #000;
  }

  .logo-wraps1{
    display: flex
    ;
    flex-direction: row;
    gap: 16px;
    position: relative;
    justify-content: space-around;
    padding-top: 0;
  }
  .logo-wraps1 .single-logos{
    display: flex
    ;
    flex-direction: column;
    gap: 16px;
  }
  .logo-wraps1 .single-logos:nth-child(1){
    margin-top: 80px;
  }
  .logo-wraps1 .single-logos:nth-child(2){
    margin-top: 40px;
  }
  .logo-wraps1 .single-logos .imgs{
    height: 43.5px;
    width: 87.5px;
    background-color: #f3f6f0;
    border-radius: 5px;
    display: flex
;
justify-content: center;
align-items: center;
height: 87px;
width: 175px;
}
.logo-wraps1 .single-logos .imgs img{
  max-width: 125px;
}

footer {
  margin-top: 131px;
  padding-top: 50px;
  padding-bottom: 20px;
}
footer {
  margin-top: 131px;
  padding-top: 50px;
  padding-bottom: 20px;
}

.footer-cols {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-cols  .left-col{
  display: flex
  ;
  flex-direction: column;
  justify-content: left;
  margin-bottom: 16px;
}
.footer-cols  .left-col img{
  max-height: 36px;
  max-width: 181px;
  margin-bottom: 20px;
}
.footer-cols  .left-col p{
  color: #656565;
  font-size: 12px;
  font-style: italic;
  line-height: 22px;
}

.footer-cols  .right-col{
  display: flex
  ;
      justify-content: space-between;
}
.footer-cols  .single-cl{
  margin-left: 20px;
}
.footer-cols  .single-cl h2{
  height: 16px;
    width: 81.87px;
    color: #202020;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
    margin-bottom: 8px;
    margin-bottom: 16px;
}
.footer-cols  .single-cl .links{
  display: flex
  ;
      flex-direction: column;
}
.footer-cols  .single-cl  a{
  color: #656565;
  font-size: 12px;
  font-style: italic;
  line-height: 22px;
  text-decoration: unset;
}
.footer-cols  .single-cl  a p{
  margin: 0;
}
.footer-cols  .flex-bx{
  display: flex
  ;
  margin-right: 0;
}
.footer-cols  .flex-bx .ln2{
  margin-left: 20px;
    display: flex
;
    flex-direction: column;
}

.copyright-text{
text-align: center;
padding: 0 30px;
color: #202020;
font-size: 12px;
font-style: italic;
font-weight: 300;
width: 100%;
letter-spacing: 0;
line-height: 22px;
padding-top: 20px;
}

@media (max-width:991px){
  .left-content-btm{
    max-width: 100%;
  }
  .iinner2-container .col-lg-7 {
    order: 1;
  }
  .iinner2-container .col-lg-5{
    order: 2;
  }
  .logo-wraps1{
    justify-content: center;
  }
}
@media (max-width:767px){
  .inner-content-banner h1{
    font-size: 54px;
  }
  .footer-cols .right-col,
  .footer-cols{
    flex-direction: column;
  }
  .footer-cols .single-cl{
    margin-left: 0;
  }
  .copyright-text{
    padding-top: 30px;
  }
  .logo-wraps1 .single-logos .imgs{
    height: 43.5px;
    width: 87.5px;
  }
  .logo-wraps1 .single-logos .imgs img{
    max-width: 62px;
  }
  .quotes-wrap-tt figure{
    padding: 16px 16px 50px;
  }
  .quotes-wrap-tt.d-flex img{
    height: 100%;
    width: 50px;
  }
  .quotes-wrap-tt blockquote{
    font-size: 32px;
  }
  .partner-images img{
    max-width: 100px;
  }

}
.services-area{
  padding-top: 70px;
}
body{
  background: #c7c7c7;
}

footer {
  background: #fff;
  margin-top: 100px;
  padding: 100px 0;
}
footer img{
  width: 100%;
}
ul.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
  list-style: none;
}

ul.social-links svg {
  width: 18px;
}

ul.social-links svg path {
  fill: #000;
}

.price-plan-wrap {
  background: #120552;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 1px 0px 9px 0px #626262;
}

.price-plan-wrap .name {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.price-plan-wrap .name h3 {
  color: #fff;
  font-size: 30px;
  margin: 0;
  line-height: 120%;
}

.price-plan-wrap .name p {
  color: #ff4539;
  font-size: 30px;
  margin: 0;
}

.price-plan-wrap .info p {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
}

.price-plan-wrap .info {
  padding-top: 10px;
  padding-bottom: 10px;
}

.price-plan-wrap li {
  list-style: none;
  display: block;
  width: 100%;
  margin-top: 10px;
  position: relative;
  padding-left: 30px;
  color: #fff;
  font-size: 16px;
  line-height: 140%;
  font-weight: 500;
}

.price-plan-wrap ul {
  margin: 0;
  padding: 0;
}

.price-plan-wrap li:after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z' fill='%23fff'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 4px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.price-plan-wrap .btn {
  width: 100%;
  background: #ff4539;
  color: #fff;
  margin-top: 20px;
  border-radius: 30px;
  padding: 15px;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
}