/* Cost Calculator Page */
@media only screen and (min-width: 1660.68px) {
    .costcal-wrapper .container {
      max-width: 1200px;
    }
  }
  /* .cc-h1 {
      display: none;
  } */
  .cc-h1.active {
    display: block;
  }
  .costcal-wrapper {
    overflow: hidden;
    padding: 50px 0 0;
    position: relative;
    z-index: 1;
    background: url(../img/cost-calculator/corner-ellipse.png);
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .cc-element::before {
    position: absolute;
    content: "";
    top: -87px;
    left: -70px;
    width: 90px;
    height: 90px;
    pointer-events: none;
    background: url(../img/cost-calculator/ice-vector.png);
    background-repeat: no-repeat;
    -webkit-animation: slide_up_down 2s ease-in-out infinite alternate both;
    animation: slide_up_down 2s ease-in-out infinite alternate both;
  }
  @keyframes slide_up_down {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  
    100% {
      -webkit-transform: translateY(-20px);
      transform: translateY(-20px);
    }
  }
  .cc-element::after {
    position: absolute;
    content: "";
    top: -97px;
    right: -140px;
    width: 270px;
    height: 274px;
    pointer-events: none;
    background: url(../img/cost-calculator/curve-vector.png);
    background-repeat: no-repeat;
    z-index: -1;
    -webkit-animation: scale_up_down 1.5s ease-in-out infinite alternate both;
    animation: scale_up_down 1.5s ease-in-out infinite alternate both;
  }
  @keyframes scale_up_down {
    0% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
  
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  .cc-element {
    border-radius: 24px;
    border: 1px solid #eff0f6;
    background: #fff;
    position: relative;
    padding: 35px;
    box-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.06);
    margin: 0 0 90px;
  }
  .cc-h1 {
    color: #000;
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px;
  }
  .cc-h1 span {
    color: #ffa500;
  }
  
  .rs-h2 {
    color: #000;
    font-size: 37px;
    font-weight: 700;
    margin: 0 0 15px;
  }
  .rs-h2 span {
    color: #ffa500;
  }
  .cc-results {
    margin: 0 0 26px;
  }
  .cc-label {
    color: #ffa500;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin: 0 0 6px;
  }
  .cc-label span {
    color: #170f49;
  }
  .cc-amt {
    border-radius: 12px;
    border: 2px solid #ebedf8;
    background: #fff;
    height: 50px;
    padding: 5px 19px;
    font-size: 22px;
    color: #170f49;
    font-weight: 700;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    box-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.06);
  }
  
  .bluramt {
    filter: blur(4px);
    color: #999;
  }
  .chLabel {
    color: #494270;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 19px;
  }
  
  /* Steps */
  
  .form-step {
    display: none;
  }
  
  .form-step.active {
    display: block;
    transform-origin: top;
    animation: animate 0.5s;
  }
  
  /* Progress bar */
  .progress-bar2 {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    z-index: 1;
    max-width: 90%;
    margin: 0 auto 51px;
  }
  
  .progress-bar2::before,
  .progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #eff0f6;
    z-index: -1;
  }
  
  .progress {
    background-color: #ffa500;
    width: 0;
    transition: 0.5s;
  }
  
  .progress-step {
    width: 35px;
    height: 35px;
    background-color: #eff0f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6f6c90;
    font-size: 15px;
    font-weight: 500;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
  }
  
  .progress-step::before {
    counter-increment: step;
    content: counter(step);
    text-align: center;
    width: 100%;
    position: absolute;
  }
  
  .progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.2rem);
    font-size: 0.85rem;
    font-weight: 500;
    color: #170f49;
  }
  .progress-step.active::after {
    color: #ffa500;
    font-weight: 600;
  }
  .progress-step.active {
    background-color: #ffa500;
    color: white;
  }
  
  /* @keyframes animate {
      from {
          transform: scale(1, 0);
          opacity: 0;
      }
  
      to {
          transform: scale(1, 1);
          opacity: 1;
      }
  } */
  
  /* End Progress bar */
  
  /* custom cost radios */
  .select_options_element label {
    color: #170f49;
    cursor: pointer;
    display: block;
    background-color: transparent;
    margin: 0 0 10px;
  }
  .select_options_element {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
    min-height: 285px;
    align-content: flex-start;
  }
  .srv-option {
    padding-right: 5px;
    padding-left: 5px;
    width: 33.333333333%;
    -ms-flex: 0 0 33.333333333%;
    flex: 0 0 33.333333333%;
    max-width: 33.333333333%;
  }
  
  .btn-next {
    border-radius: 12px;
    background: #ffa500;
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 17px;
    padding: 8px 22px;
    border: 2px solid transparent;
  }
  .btn-next:hover {
    background: #ffa500;
    border-color: #ffa500;
    color: white;
  }
  
  .btn-prev {
    margin-right: 5px;
    border-radius: 12px;
    background: #65cac7;
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 17px;
    padding: 8px 22px;
    border: 2px solid transparent;
  }
  .btn-prev:hover {
    background: #fff;
    border-color: #65cac7;
    color: #65cac7;
  }
  
  .form-btns {
    text-align: right;
  }
  .srv-svg {
    width: 45px;
    text-align: center;
    flex: 0 0 45px;
    color: #ffa500;
  }
  .srvNm {
    flex: auto;
  }
  .select_options_element label span {
    font-size: 14px;
    font-weight: 600;
  }
  .srv-svg svg {
    height: 42px;
    width: 46px;
  }
  .select_options_element label input {
    position: absolute;
    top: -20px;
  }
  .select_options_element label .lbl-srv {
    border: 2px solid #ebedf8;
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 12px;
    box-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.06);
    padding: 19px 15px;
    align-items: center;
    gap: 13px;
    flex-wrap: nowrap;
  }
  .select_options_element input:checked + .lbl-srv {
    color: #ffa500;
    border: 2px solid #ffa500;
  }
  .label_p {
    font-weight: 400;
  }
  .custom-control-label::after {
    border-radius: 50% !important;
    width: 24px;
    height: 24px;
    top: 0px;
    color: transparent;
  }
  .form_bot_wrapper .custom-control-label::before {
    background-color: #ebebeb;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    top: 0;
  }
  .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #ebebeb;
  }
  
  /*  */
  .ccimage img {
    border-radius: 30px;
  }
  
  .ccTitle {
    font-size: 45px;
    margin: 0 0 26px;
    font-weight: 800;
  }
  .ccTitle span {
    font-weight: 800;
    color: #ffa500;
  }
  .cc-section2 {
    margin: 110px auto 75px;
  }
  .ellipseImg {
    position: absolute;
    top: 640px;
    right: 0;
    pointer-events: none;
  }
  .cc-benefits {
    background: #f9f9fb;
    padding: 76px 0;
  }
  .ccb-listing {
    padding: 0;
    margin: 0 -20px;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ccb-listing li {
    padding: 0 20px;
    margin: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    border-bottom: 1px solid #e3e3ed;
  }
  
  .ccb-listing li:nth-child(2n) {
    border-left: 1px solid #e3e3ed;
  }
  
  .ccb-listing li:last-child,
  .ccb-listing li:nth-last-child(2) {
    border-bottom: none;
  }
  .ccb-stg-pd {
    padding: 0 0 0 40px;
  }
  .cc-bft {
    color: #ffa500;
    font-size: 23px;
    font-weight: 500;
    margin: 0 0 20px;
  }
  .cbfont-lg {
    font-size: 20px;
    line-height: 33px;
  }
  .ccb-element {
    padding: 30px;
  }
  .ccb-img {
    margin: 0 0 22px;
  }
  .ccb-title {
    color: #ffa500;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
  }
  
  .ccb-text p {
    margin: 0;
  }
  
  .cc-whyobinner {
    background: url(../img/cost-calculator/ccimg-overlay.jpg);
    background-repeat: no-repeat;
    background-position: 0;
    background-size: cover;
    position: relative;
    padding: 70px 0 270px;
    color: #fff;
    z-index: 1;
  }
  .cc-whyobinner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #010123;
    opacity: 0.95;
    z-index: -1;
  }
  
  @media (min-width: 1200px) {
    .innerpagehero .costcal-wrapper .cc-whyob .container,
    .innerpagehero .cc-benefits .container,
    .innerpagehero .awards-section .container {
      max-width: 80%;
    }
  }
  
  .ccw-blocks {
    position: relative;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 3px 32px 7px rgba(0, 0, 0, 0.05);
    padding: 35px 35px 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
  }
  
  .container.m-y-150 {
    margin-top: -200px;
    z-index: 1;
    position: relative;
  }
  
  .ccw-counter {
    position: absolute;
    top: -43px;
    right: 20px;
    font-size: 38px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    width: 96px;
    height: 93px;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    color: #fff;
    line-height: 79px;
  }
  .ccw-counter.ccw-shape1 {
    background: url(../img/cost-calculator/ccw-shape1.png);
  }
  .ccw-counter.ccw-shape2 {
    background: url(../img/cost-calculator/ccw-shape2.png);
  }
  .ccw-counter.ccw-shape3 {
    background: url(../img/cost-calculator/ccw-shape3.png);
  }
  .ccw-counter.ccw-shape4 {
    background: url(../img/cost-calculator/ccw-shape4.png);
  }
  .ccwTitle {
    color: #000;
    font-size: 23px;
    font-weight: 700;
    margin: 26px 0 20px;
  }
  .awards-section {
    padding: 90px 0 42px;
    position: relative;
    z-index: 1;
    background-color: #f5f5f5;
    /* background: url(../img/cost-calculator/ellipse-3.png);
      background-repeat: no-repeat;
      background-position: top 0; */
  }
  
  .cc-whyob {
    background: #f5f5f5;
  }
  
  .cc-logoimg {
    position: relative;
    border-radius: 20px;
    background: #fff;
    /* box-shadow: 0px 3px 32px 7px rgba(0, 0, 0, 0.05); */
    padding: 30px;
    height: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cc-logoimg img {
    height: auto;
    max-height: 139px;
  }
  
  
  .cost_requst_btn {
    background-color: #ffa500;
    font-weight: 600;
    color: #fffefe;
    font-size: 17px;
    padding: 13px 25px;
    border-radius: 12px;
    text-align: center;
    margin: 10px 0 0;
    display: block;
  }
  .cost_requst_btn:hover {
    color: #fff;
    background-color: #32caca;
  }
  
  .cc-h2 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 11px 0 0;
  }
  .cc-h2 span {
    color: #ffa500;
  }
  .cc-link {
    color: #fff;
    font-size: 18px;
    /* text-decoration: underline; */
    font-weight: 600;
    background-image: linear-gradient(
      90deg,
      #fff 15%,
      #00ebcc 55.5%,
      #ff5828 80.5%
    );
    background-size: 300% !important;
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-animation: Gradient 5s ease infinite !important;
    -moz-animation: Gradient 5s ease infinite !important;
    animation: Gradient 5s ease infinite !important;
  }
  
  @-webkit-keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  @-moz-keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .cc-link:hover {
    color: #ffa500;
  }
  @media (min-width: 1400px) {
    .col-xxl-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
  }
  
  @media (min-width: 1200px) {
    .select_options_element.four-col .srv-option {
      width: 25%;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .select_options_element.two-col .srv-option {
      width: 50%;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  @media (min-width: 1200px) and (max-width: 1599.98px) {
    .cc-logoimg {
      padding: 20px;
      height: 180px;
    }
    .cc-logoimg img {
      max-height: 120px;
    }
  
    .ccw-blocks {
      padding: 35px 27px 20px;
    }
    .cc-whyobinner {
      padding: 62px 0 280px;
    }
  }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .cc-h2 {
      margin: 18px 0 0;
    }
   
    .cc-logoimg {
      padding: 20px;
      height: 170px;
    }
    .cc-logoimg img {
      max-height: 109px;
    }
  
    .ccw-blocks {
      height: calc(100% - 34px);
      margin-bottom: 27px;
    }
    .ccw-counter {
      top: -23px;
      right: 20px;
      font-size: 25px;
      width: 66px;
      height: 63px;
      line-height: 57px;
    }
    .ccb-listing {
      margin: 0 0;
    }
    .ccb-listing li {
      padding: 0;
    }
    .cc-section2 {
      margin: 60px auto;
    }
    .cc-benefits {
      padding: 36px 0;
    }
    .ccTitle {
      font-size: 34px;
    }
  
    .progress-bar2 {
      max-width: 100%;
      margin: 0 auto 35px;
    }
    .rs-h2 {
      font-size: 30px;
      margin: 8px 0 15px;
    }
    .select_options_element.two-col .srv-option {
      width: 50%;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .cc-h1 {
      font-size: 43px;
    }
    .ccb-stg-pd {
      padding: 0 0 0 20px;
    }
    .cc-whyobinner {
      padding: 60px 0 261px;
    }
  }
  
  @media (max-width: 991.98px) {
    .cc-logoimg {
      padding: 20px;
      height: 160px;
    }
    .cc-logoimg img {
      max-height: 105px;
    }
  
    .ccw-icon svg {
      height: 58px;
      width: 57px;
    }
    .ccwTitle {
      margin: 23px 0 14px;
    }
    .ccw-blocks {
      height: calc(100% - 34px);
      margin-bottom: 27px;
    }
    .ccw-counter {
      top: -23px;
      right: 20px;
      font-size: 25px;
      width: 66px;
      height: 63px;
      line-height: 57px;
    }
    .cc-element {
      margin: 0 0 67px;
    }
    .cbfont-lg {
      font-size: 19px;
      line-height: 29px;
      text-align: center;
    }
    .cc-bft {
      font-size: 20px;
      margin: 0 0 5px;
      text-align: center;
    }
    .ccTitle {
      font-size: 37px;
      text-align: center;
    }
    .ccimage {
      display: none;
    }
    .ccb-stg-pd {
      padding: 0;
    }
    .ccb-listing {
      margin: 0 0;
    }
    .ccb-listing li {
      padding: 0;
    }
    .cc-benefits {
      padding: 50px 0;
    }
    .cc-section2 {
      margin: 60px auto;
    }
    .select_options_element {
      min-height: unset;
    }
  
    .progress-bar2 {
      max-width: 100%;
      margin: 0 auto 35px;
    }
    .form-btns {
      text-align: center;
      margin: 16px auto 30px;
    }
    .chLabel {
      text-align: center;
    }
    .rs-h2 {
      font-size: 32px;
      text-align: center;
    }
    .progress-step::after {
      font-size: 0.78rem;
    }
    .cc-h1 {
      font-size: 43px;
      margin: 0 0 17px;
    }
    .cc-whyobinner {
      padding: 56px 0 250px;
    }
    .awards-section {
      padding: 55px 0 42px;
    }
    .cc-element::after {
      right: -90px;
      width: 250px;
      height: 264px;
      background-size: contain;
    }
    .cc-h2 {
      font-size: 24px;
      margin: 17px 0 3px;
      text-align: center;
    }
  }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .cc-h1 {
      font-size: 35px;
      margin: 0 0 27px;
    }
   
  }
  
  
  @media (max-width: 575.98px) {
    .cc-h1 {
      font-size: 28px;
    }
    .select_options_element.two-col .srv-option {
      width: 50%;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .srv-option {
      width: 50%;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .cc-element {
      padding: 24px 20px 20px;
    }
  }
  
  /* Calculator end */
  
@media (max-width: 767.98px) {
    .costcal-wrapper {
      padding: 27px 0 0;
    }
    .cc-logoimg {
      padding: 20px;
      height: 160px;
    }
    .cc-logoimg img {
      max-height: 105px;
    }
    .ccw-blocks {
      padding: 25px 25px 20px;
    }
    .cc-whyobinner {
      padding: 56px 0 245px;
    }
    .ccb-title {
      margin: 0;
      padding: 0 0 10px 54px;
    }
    .ccb-text {
      padding: 0 0 0 54px;
    }
    .ccb-img {
      margin: 0;
      position: absolute;
      left: 0;
      top: 0;
    }
    .ccb-img svg {
      height: 35px;
    }
    .awards-section {
      padding: 20px 0;
    }
    .ccb-listing li:nth-child(2n) {
      border-left: 0;
    }
    .cc-benefits {
      padding: 40px 0 18px;
    }
    .ccb-element {
      padding: 0 0 42px;
      position: relative;
    }
    .ccb-listing li {
      padding: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      border-bottom: 0;
    }
    .cc-section2 {
      margin: 32px auto;
    }
    .ccTitle {
      font-size: 30px;
      margin: 0 0 21px;
    }
    .app-development-cost-calculator.innerpagehero .heroContent {
      padding-bottom: 0 !important;
      padding-top: 75px !important;
    }
    .select_options_element.two-col .srv-option {
      width: 50%;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .select_options_element label {
      height: calc(100% - 10px);
    }
    .select_options_element label .lbl-srv {
      flex-direction: column;
    }
    .select_options_element label span {
      text-align: center;
    }
    .cc-h1 {
      font-size: 33px;
    }
    .progress-step::after {
      display: none;
    }
    .progress-step {
      width: 25px;
      height: 25px;
      font-size: 14px;
    }
    .progress-bar2 {
      margin: 0 auto 9px;
    }
    .rs-h2 {
      font-size: 27px;
    }
    .cc-element::before,
    .cc-element::after {
      display: none;
    }
    .costcal-wrapper {
      background-size: 480px;
    }
  }
  @media (min-width: 768px) {
    .request_popup .modal-dialog {
      max-width: 94%;
    }
  
    .formbanner-holder {
      padding: 22px;
      flex: 0 0 310px;
      width: 310px;
      margin-right: 30px;
    }
  }
  
  @media (min-width: 576px) {
    .callbackModal .modal-dialog {
      max-width: 670px;
    }
  }
  @media (min-width: 992px) {
    .request_popup .modal-dialog,
    .callbackModal .modal-dialog {
      max-width: 1020px;
    }
  }
  .request_popup .get_quote_form_right {
    display: flex;
  }
  .accordion-button,

.btn.get_quoteSubmit:hover,
.contact_us_btn:hover,
.learn_more_btn:hover,
.modal-body.modal-owe-popup
  .get_quote_form
  .form_apply
  .career_apply_now_btn:hover,
.request_quote_btn:hover,
.requestquote_header a:hover,
.theme-btn a:hover {
  background-color: #62cbc8;
  color: #fffefe;
}
.modal-body.modal-owe-popup i.fa.fa-times:hover {
    transform: rotate(90deg);
    transform-origin: 50%;
  }
  .modal-backdrop.show {
    opacity: 0.85;
  }  
  .modal-body.modal-owe-popup,
.tabing_content_inner {
  padding: 0;
}
.modal-body.modal-owe-popup .get_quote_form .field-info {
    border-bottom: 1px solid #ddd;
    background: #fff;
    border-radius: 0 !important;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    box-shadow: none;
  }
  .modal-body.modal-owe-popup .field-info {
    padding: 6px 8px;
    margin: 0 !important;
    width: 100% !important;
    height: 38px;
    background: rgba(100, 100, 100, 0.8);
    border: none;
    color: #e3e3e3;
  }
  .modal-owe-popup label.request_label {
    display: block;
    margin: 0 0 3px;
    text-align: left;
    font-size: 15px;
    line-height: normal;
    font-weight: 300;
    color: #aaa;
  }
  .modal-body.modal-owe-popup i.fa.fa-times {
    transition: 0.3s;
  }
  .modal-body.modal-owe-popup .get_quote_form .form_apply .career_apply_now_btn {
    background-color: #ffa500;
    font-weight: 400;
    text-shadow: none;
    padding: 10px 27px;
    border-radius: 50px;
    margin: 9px 0 0;
    border: 0;
    color: #fff;
    width: 100%;
  }
  .modal-header.popip-head {
    padding: 15px 0 0 8px;
    border-bottom: none !important;
  }
  .modal-header.popip-head .modal-title {
    color: #fff;
    text-align: center;
    font-size: 34px;
    line-height: normal;
    font-weight: 500;
    margin: 30px 0 20px;
  }
  .apply_now_model .modal-header.popip-head .modal-title {
    margin: 10px auto 15px;
  }
  .modal-body.modal-owe-popup .field-info:focus {
    box-shadow: unset;
  }
  .modal-body.modal-owe-popup .field-info::-webkit-input-placeholder {
    color: #969697;
    opacity: 1;
  }
  .modal-body.modal-owe-popup .field-info::-moz-placeholder {
    color: #969697;
    opacity: 1;
  }
  .modal-body.modal-owe-popup .field-info:-ms-input-placeholder {
    color: #969697;
    opacity: 1;
  }
  .modal-body.modal-owe-popup .field-info::-ms-input-placeholder {
    color: #969697;
    opacity: 1;
  }
  .modal-body.modal-owe-popup .field-info::placeholder {
    color: #969697;
    opacity: 1;
  }
  .request-a-quote .modal-content .get_quote_form_right {
    border-radius: 0;
  }
  .request-a-quote .obcontact_input label {
    margin: 0 0 7px;
    color: #fff;
  }
  .request-a-quote .modal .contactform_upload_dv .custom-file-label {
    padding-left: 41px;
    padding-top: 3px;
    height: 38px;
  }
  #getquote_modal .modal-dialog,
.get_quote_form {
  max-width: 100%;
}.close-modal {
    cursor: pointer;
    position: absolute;
    top: 20px;
    z-index: 1;
    right: 20px;
    border: 0;
    background-color: #f25d1c;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    min-width: 30px;
    min-height: 30px;
    line-height: 10px;
  }
  .close-modal:hover {
    background-color: #2cc8c5;
    color: #fff;
  }
  .get_quote_form button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
   
    opacity: 1;
    border-radius: 50%;
    line-height: 0;
  }
  
  
  .formbanner-holder {
    background: rgb(4, 73, 200);
    background: linear-gradient(
      45deg,
      rgba(4, 73, 200, 1) 0%,
      rgba(4, 73, 200, 1) 100%
    );
    border-radius: 10px;
    padding: 25px;
    color: #fff;
    position: relative;
    z-index: 1;
    flex: 0 0 350px;
    width: 350px;
    margin-right: 35px;
  }
  
  .formbanner-holder::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: url(../img/cost-bg.jpg) center no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.1;
  }
  
  
  
  .formbanner-text {
    border-left: 5px solid #ff9000;
    padding: 1px 0 9px 20px;
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 33px;
  }
  
  .formbanner-title {
    font-size: 37px;
    font-weight: 900;
    margin: -13px 0 14px;
    line-height: 56px;
  }
  
  .formbanner-title span {
    font-size: 60px;
    color: #ff9000;
  }
  
  .formbanner-img {
    text-align: center;
  }
  
  @media (max-width: 991.98px) {
    .formbanner-holder {
      display: none;
    }
  }


  .get_quote_form_right .form-group {
    margin-bottom: 25px;
  }
  
  .request-a-quote .get_quote_form_right .form-group {
    margin-bottom: 30px;
  }
  
  .request-a-quote .get_quote_form_right {
    background-color: #e0ecf3;
    max-width: 1049px;
    margin: 0;
    border-radius: 10px;
    padding: 40px 50px 50px;
  }
  
  .request-a-quote .get_quote_form_head {
    margin: 0 0 20px;
    font-size: 30px;
    color: #000;
    font-weight: 700;
    border-left: 3px solid #ff703b;
    padding-left: 14px;
  }
  .get_quote_form_head {
    font-weight: 500;
    font-size: 30px;
    line-height: normal;
    margin: 0 0 10px;
    color: #ffa500;
  }
  .tech-text {
    font-weight: 800;
  }
  .request-a-quote .get_quote_form_text {
    color: #000;
    margin: 0 0 30px;
  }
  .get_quote_form_text {
    font-size: 15px;
    line-height: 24px;
    color: #09192c;
    margin: 0 0 32px;
    font-weight: 500;
  }  
  @media (min-width: 1200px) {
    .request-a-quote .form-vector-img {
      display: block;
    }
    .request-a-quote .container {
      max-width: 1170px;
    }
    .request-a-quote .get_quote_form_right {
      padding-right: 220px;
      position: relative;
    }
  }
  
  @media (max-width: 1199.98px) {
    .request-a-quote .form-vector-img {
      display: none;
    }
  }
  @media (min-width: 1200px) and (max-width: 1439.98px) {
    .request-a-quote .get_quote_form_right {
      padding-right: 301px;
    }
    .request-a-quote .form-vector-img {
      top: 80px;
      right: -96px;
    }
    .form-vector-img img {
      max-width: 375px;
    }
  }
  
.request-a-quote .modal-content .get_quote_form_right {
    border-radius: 0;
  }
  .request-a-quote .obcontact_input label {
    margin: 0 0 7px;
    color: #fff;
  }
  .request-a-quote .modal .contactform_upload_dv .custom-file-label {
    padding-left: 41px;
    padding-top: 3px;
    height: 38px;
  }
  .request-a-quote .btn.get_quoteSubmit {
    padding: 11px 38px;
  }
  .request-a-quote .btn.get_quoteSubmit:hover {
    background-color: #f33b08 !important;
  }
  .contact-form-block span.wpcf7-form-control-wrap input.form-control {
    border-radius: 5px !important;
    border: 0;
    background: #f2f2f2;
    height: 46px;
    padding: 0 11px 2px 15px;
    box-shadow: unset;
  }
  .wpcf7-form-control.wpcf7-textarea {
    height: 130px;
    margin-bottom: 4px;
    border: 0;
    background: #f2f2f2;
    box-shadow: unset;
  }
  .wpcf7-submit.btn {
    margin: 16px 0 0;
    font-size: 20px;
    background: #f75a2f;
    font-weight: 400;
    text-shadow: none;
    padding: 9px 37px;
    height: auto !important;
    width: auto;
    border-radius: 50px;
    color: #fff;
  }
  .form_apply .career_apply_now_btn:hover,
  .wpcf7-submit.btn:hover,
  a.decline.hides {
    background: #62cbc8;
    color: #fff;
  }